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 CCLIENTPROXY_H
|
|
|
|
#define CCLIENTPROXY_H
|
|
|
|
|
|
|
|
#include "IClient.h"
|
2004-02-14 14:04:36 +00:00
|
|
|
#include "CEvent.h"
|
2002-07-09 21:22:31 +00:00
|
|
|
#include "CString.h"
|
|
|
|
|
2004-02-01 21:09:22 +00:00
|
|
|
class IStream;
|
2002-07-09 21:22:31 +00:00
|
|
|
|
2002-07-30 14:59:36 +00:00
|
|
|
//! Generic proxy for client
|
2002-07-09 21:22:31 +00:00
|
|
|
class CClientProxy : public IClient {
|
|
|
|
public:
|
2002-07-30 14:59:36 +00:00
|
|
|
/*!
|
|
|
|
\c name is the name of the client.
|
|
|
|
*/
|
2004-02-14 14:04:36 +00:00
|
|
|
CClientProxy(const CString& name, IStream* adoptedStream);
|
2002-07-09 21:22:31 +00:00
|
|
|
~CClientProxy();
|
|
|
|
|
2004-02-14 14:04:36 +00:00
|
|
|
//! @name manipulators
|
2002-07-30 14:59:36 +00:00
|
|
|
//@{
|
2002-07-09 21:22:31 +00:00
|
|
|
|
2004-02-14 14:04:36 +00:00
|
|
|
//! Disconnect
|
2002-07-30 14:59:36 +00:00
|
|
|
/*!
|
2004-02-14 14:04:36 +00:00
|
|
|
Ask the client to disconnect, using \p msg as the reason.
|
2002-07-30 14:59:36 +00:00
|
|
|
*/
|
2004-02-14 14:04:36 +00:00
|
|
|
void close(const char* msg);
|
|
|
|
|
|
|
|
//@}
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
2002-07-09 21:22:31 +00:00
|
|
|
|
2004-02-01 21:09:22 +00:00
|
|
|
//! Get stream
|
2002-07-30 14:59:36 +00:00
|
|
|
/*!
|
2004-02-01 21:09:22 +00:00
|
|
|
Returns the stream passed to the c'tor.
|
2002-07-30 14:59:36 +00:00
|
|
|
*/
|
2004-02-01 21:09:22 +00:00
|
|
|
IStream* getStream() const;
|
2002-07-09 21:22:31 +00:00
|
|
|
|
2004-02-14 14:04:36 +00:00
|
|
|
//! Get ready event type
|
|
|
|
/*!
|
|
|
|
Returns the ready event type. This is sent when the client has
|
|
|
|
completed the initial handshake. Until it is sent, the client is
|
|
|
|
not fully connected.
|
|
|
|
*/
|
|
|
|
static CEvent::Type getReadyEvent();
|
|
|
|
|
|
|
|
//! Get disconnect event type
|
|
|
|
/*!
|
|
|
|
Returns the disconnect event type. This is sent when the client
|
|
|
|
disconnects or is disconnected. The target is getEventTarget().
|
|
|
|
*/
|
|
|
|
static CEvent::Type getDisconnectedEvent();
|
|
|
|
|
2002-07-30 14:59:36 +00:00
|
|
|
//@}
|
|
|
|
|
2004-02-14 14:04:36 +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;
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// IClient overrides
|
|
|
|
virtual void enter(SInt32 xAbs, SInt32 yAbs,
|
|
|
|
UInt32 seqNum, KeyModifierMask mask,
|
2002-07-13 22:00:38 +00:00
|
|
|
bool forScreensaver) = 0;
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual bool leave() = 0;
|
2004-02-15 17:32:11 +00:00
|
|
|
virtual void setClipboard(ClipboardID, const IClipboard*) = 0;
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual void grabClipboard(ClipboardID) = 0;
|
|
|
|
virtual void setClipboardDirty(ClipboardID, bool) = 0;
|
2003-04-27 17:01:14 +00:00
|
|
|
virtual void keyDown(KeyID, KeyModifierMask, KeyButton) = 0;
|
|
|
|
virtual void keyRepeat(KeyID, KeyModifierMask,
|
|
|
|
SInt32 count, KeyButton) = 0;
|
|
|
|
virtual void keyUp(KeyID, KeyModifierMask, KeyButton) = 0;
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual void mouseDown(ButtonID) = 0;
|
|
|
|
virtual void mouseUp(ButtonID) = 0;
|
|
|
|
virtual void mouseMove(SInt32 xAbs, SInt32 yAbs) = 0;
|
|
|
|
virtual void mouseWheel(SInt32 delta) = 0;
|
2002-07-13 22:00:38 +00:00
|
|
|
virtual void screensaver(bool activate) = 0;
|
2002-12-23 13:55:21 +00:00
|
|
|
virtual void resetOptions() = 0;
|
|
|
|
virtual void setOptions(const COptionsList& options) = 0;
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual CString getName() const;
|
2003-02-22 16:20:23 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
private:
|
|
|
|
CString m_name;
|
2004-02-01 21:09:22 +00:00
|
|
|
IStream* m_stream;
|
2004-02-14 14:04:36 +00:00
|
|
|
|
|
|
|
static CEvent::Type s_readyEvent;
|
|
|
|
static CEvent::Type s_disconnectedEvent;
|
2002-07-09 21:22:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|