2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2014-11-02 12:12:05 +00:00
|
|
|
* Copyright (C) 2012 Synergy Si Ltd.
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2011 Chris Schoeneman
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "server/ClientProxy1_3.h"
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class Server;
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//! Proxy for client implementing protocol version 1.4
|
2014-11-11 13:51:47 +00:00
|
|
|
class ClientProxy1_4 : public ClientProxy1_3 {
|
2012-06-10 16:50:54 +00:00
|
|
|
public:
|
2014-11-11 13:51:47 +00:00
|
|
|
ClientProxy1_4(const String& name, synergy::IStream* adoptedStream, Server* server, IEventQueue* events);
|
|
|
|
~ClientProxy1_4();
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2013-07-24 16:41:12 +00:00
|
|
|
//! @name accessors
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! get server pointer
|
2014-11-11 13:51:47 +00:00
|
|
|
Server* getServer() { return m_server; }
|
2013-07-24 16:41:12 +00:00
|
|
|
|
|
|
|
//@}
|
|
|
|
|
2012-06-10 16:50:54 +00:00
|
|
|
// IClient overrides
|
2013-04-09 18:56:19 +00:00
|
|
|
virtual void keyDown(KeyID key, KeyModifierMask mask, KeyButton button);
|
|
|
|
virtual void keyRepeat(KeyID key, KeyModifierMask mask, SInt32 count, KeyButton button);
|
|
|
|
virtual void keyUp(KeyID key, KeyModifierMask mask, KeyButton button);
|
2013-08-16 18:06:30 +00:00
|
|
|
virtual void keepAlive();
|
2013-04-09 18:56:19 +00:00
|
|
|
|
|
|
|
//! Send IV to make
|
|
|
|
void cryptoIv();
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
Server* m_server;
|
2012-06-10 16:50:54 +00:00
|
|
|
};
|