mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
build files and documentation: MIT images / sources: GPL-2.0-only breeze icons: LGPL-2.0-only Microsoft MSM file, vc redist license
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
|
|
* SPDX-FileCopyrightText: (C) 2011 Chris Schoeneman
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "server/ClientProxy1_3.h"
|
|
|
|
class Server;
|
|
|
|
//! Proxy for client implementing protocol version 1.4
|
|
class ClientProxy1_4 : public ClientProxy1_3
|
|
{
|
|
public:
|
|
ClientProxy1_4(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
|
|
~ClientProxy1_4();
|
|
|
|
//! @name accessors
|
|
//@{
|
|
|
|
//! get server pointer
|
|
Server *getServer()
|
|
{
|
|
return m_server;
|
|
}
|
|
|
|
//@}
|
|
|
|
// IClient overrides
|
|
virtual void keyDown(KeyID key, KeyModifierMask mask, KeyButton button, const std::string &);
|
|
virtual void keyRepeat(KeyID key, KeyModifierMask mask, int32_t count, KeyButton button, const std::string &lang);
|
|
virtual void keyUp(KeyID key, KeyModifierMask mask, KeyButton button);
|
|
virtual void keepAlive();
|
|
|
|
Server *m_server;
|
|
};
|