2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2012 Bolton Software Ltd.
|
|
|
|
* Copyright (C) 2002 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CCLIENTPROXY_H
|
|
|
|
#define CCLIENTPROXY_H
|
|
|
|
|
|
|
|
#include "CBaseClientProxy.h"
|
|
|
|
#include "CEvent.h"
|
|
|
|
#include "CString.h"
|
2013-06-29 14:17:49 +00:00
|
|
|
#include "CEventTypes.h"
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2012-07-05 18:05:35 +00:00
|
|
|
namespace synergy { class IStream; }
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//! Generic proxy for client
|
|
|
|
class CClientProxy : public CBaseClientProxy {
|
|
|
|
public:
|
|
|
|
/*!
|
|
|
|
\c name is the name of the client.
|
|
|
|
*/
|
2012-07-05 18:05:35 +00:00
|
|
|
CClientProxy(const CString& name, synergy::IStream* adoptedStream);
|
2012-06-10 16:50:54 +00:00
|
|
|
~CClientProxy();
|
|
|
|
|
|
|
|
//! @name manipulators
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Disconnect
|
|
|
|
/*!
|
|
|
|
Ask the client to disconnect, using \p msg as the reason.
|
|
|
|
*/
|
|
|
|
void close(const char* msg);
|
|
|
|
|
|
|
|
//@}
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Get stream
|
|
|
|
/*!
|
2013-04-05 16:33:48 +00:00
|
|
|
Returns a crypto stream if the user has this enabled,
|
|
|
|
otherwise returns the original stream passed to the c'tor.
|
2012-06-10 16:50:54 +00:00
|
|
|
*/
|
2012-07-05 18:05:35 +00:00
|
|
|
synergy::IStream* getStream() const;
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
// IScreen
|
|
|
|
virtual void* getEventTarget() const;
|
|
|
|
virtual bool getClipboard(ClipboardID id, IClipboard*) const = 0;
|
|
|
|
virtual void getShape(SInt32& x, SInt32& y,
|
|
|
|
SInt32& width, SInt32& height) const = 0;
|
|
|
|
virtual void getCursorPos(SInt32& x, SInt32& y) const = 0;
|
|
|
|
|
|
|
|
// IClient overrides
|
|
|
|
virtual void enter(SInt32 xAbs, SInt32 yAbs,
|
|
|
|
UInt32 seqNum, KeyModifierMask mask,
|
|
|
|
bool forScreensaver) = 0;
|
|
|
|
virtual bool leave() = 0;
|
|
|
|
virtual void setClipboard(ClipboardID, const IClipboard*) = 0;
|
|
|
|
virtual void grabClipboard(ClipboardID) = 0;
|
|
|
|
virtual void setClipboardDirty(ClipboardID, bool) = 0;
|
|
|
|
virtual void keyDown(KeyID, KeyModifierMask, KeyButton) = 0;
|
|
|
|
virtual void keyRepeat(KeyID, KeyModifierMask,
|
|
|
|
SInt32 count, KeyButton) = 0;
|
|
|
|
virtual void keyUp(KeyID, KeyModifierMask, KeyButton) = 0;
|
|
|
|
virtual void mouseDown(ButtonID) = 0;
|
|
|
|
virtual void mouseUp(ButtonID) = 0;
|
|
|
|
virtual void mouseMove(SInt32 xAbs, SInt32 yAbs) = 0;
|
|
|
|
virtual void mouseRelativeMove(SInt32 xRel, SInt32 yRel) = 0;
|
|
|
|
virtual void mouseWheel(SInt32 xDelta, SInt32 yDelta) = 0;
|
|
|
|
virtual void screensaver(bool activate) = 0;
|
|
|
|
virtual void resetOptions() = 0;
|
|
|
|
virtual void setOptions(const COptionsList& options) = 0;
|
2013-04-09 18:56:19 +00:00
|
|
|
virtual void cryptoIv(const UInt8* iv) = 0;
|
2013-07-24 16:41:12 +00:00
|
|
|
virtual void fileChunkSending(UInt8 mark, char* data, size_t dataSize) = 0;
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
private:
|
2012-07-05 18:05:35 +00:00
|
|
|
synergy::IStream* m_stream;
|
2012-06-10 16:50:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|