2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
#ifndef CCLIENTPROXY1_0_H
|
|
|
|
#define CCLIENTPROXY1_0_H
|
|
|
|
|
|
|
|
#include "CClientProxy.h"
|
2002-07-10 14:15:17 +00:00
|
|
|
#include "ProtocolTypes.h"
|
2002-07-09 21:22:31 +00:00
|
|
|
|
2002-07-30 14:59:36 +00:00
|
|
|
//! Proxy for client implementing protocol version 1.0
|
2002-07-09 21:22:31 +00:00
|
|
|
class CClientProxy1_0 : public CClientProxy {
|
|
|
|
public:
|
|
|
|
CClientProxy1_0(IServer* server, const CString& name,
|
|
|
|
IInputStream* adoptedInput,
|
|
|
|
IOutputStream* adoptedOutput);
|
|
|
|
~CClientProxy1_0();
|
|
|
|
|
|
|
|
// IClient overrides
|
2002-07-31 12:39:34 +00:00
|
|
|
virtual void open();
|
2002-07-30 15:17:44 +00:00
|
|
|
virtual void mainLoop();
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual void close();
|
|
|
|
virtual void enter(SInt32 xAbs, SInt32 yAbs,
|
|
|
|
UInt32 seqNum, KeyModifierMask mask,
|
2002-07-13 22:00:38 +00:00
|
|
|
bool forScreensaver);
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual bool leave();
|
|
|
|
virtual void setClipboard(ClipboardID, const CString&);
|
|
|
|
virtual void grabClipboard(ClipboardID);
|
|
|
|
virtual void setClipboardDirty(ClipboardID, bool);
|
2003-04-27 17:01:14 +00:00
|
|
|
virtual void keyDown(KeyID, KeyModifierMask, KeyButton);
|
|
|
|
virtual void keyRepeat(KeyID, KeyModifierMask,
|
|
|
|
SInt32 count, KeyButton);
|
|
|
|
virtual void keyUp(KeyID, KeyModifierMask, KeyButton);
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual void mouseDown(ButtonID);
|
|
|
|
virtual void mouseUp(ButtonID);
|
|
|
|
virtual void mouseMove(SInt32 xAbs, SInt32 yAbs);
|
|
|
|
virtual void mouseWheel(SInt32 delta);
|
2002-07-13 22:00:38 +00:00
|
|
|
virtual void screensaver(bool activate);
|
2002-12-23 13:55:21 +00:00
|
|
|
virtual void resetOptions();
|
|
|
|
virtual void setOptions(const COptionsList& options);
|
2002-07-13 22:00:38 +00:00
|
|
|
virtual SInt32 getJumpZoneSize() const;
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual void getShape(SInt32& x, SInt32& y,
|
|
|
|
SInt32& width, SInt32& height) const;
|
2002-07-13 22:00:38 +00:00
|
|
|
virtual void getCursorPos(SInt32& x, SInt32& y) const;
|
|
|
|
virtual void getCursorCenter(SInt32& x, SInt32& y) const;
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void recvInfo(bool notify);
|
|
|
|
void recvClipboard();
|
|
|
|
void recvGrabClipboard();
|
|
|
|
|
|
|
|
private:
|
2002-07-10 14:15:17 +00:00
|
|
|
CClientInfo m_info;
|
2002-07-09 21:22:31 +00:00
|
|
|
bool m_clipboardDirty[kClipboardEnd];
|
2003-02-22 16:20:23 +00:00
|
|
|
double m_heartRate;
|
|
|
|
double m_heartDeath;
|
2002-07-09 21:22:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|