2002-07-09 21:22:31 +00:00
|
|
|
#ifndef CPRIMARYCLIENT_H
|
|
|
|
#define CPRIMARYCLIENT_H
|
|
|
|
|
|
|
|
#include "IClient.h"
|
2002-07-10 21:22:28 +00:00
|
|
|
#include "IScreenReceiver.h"
|
2002-07-10 14:15:17 +00:00
|
|
|
#include "ProtocolTypes.h"
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
class IClipboard;
|
2002-07-13 22:00:38 +00:00
|
|
|
class CPrimaryScreen;
|
|
|
|
class IPrimaryScreenReceiver;
|
2002-07-09 21:22:31 +00:00
|
|
|
class IServer;
|
|
|
|
|
2002-07-10 21:22:28 +00:00
|
|
|
class CPrimaryClient : public IScreenReceiver, public IClient {
|
2002-07-09 21:22:31 +00:00
|
|
|
public:
|
2002-07-13 22:00:38 +00:00
|
|
|
CPrimaryClient(IServer*, IPrimaryScreenReceiver*, const CString& name);
|
2002-07-09 21:22:31 +00:00
|
|
|
~CPrimaryClient();
|
|
|
|
|
|
|
|
// manipulators
|
|
|
|
|
|
|
|
// cause run() to return
|
|
|
|
void stop();
|
|
|
|
|
|
|
|
// called by server when the configuration changes
|
2002-07-11 13:13:37 +00:00
|
|
|
void reconfigure(UInt32 activeSides);
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// accessors
|
|
|
|
|
|
|
|
// return the contents of the given clipboard.
|
|
|
|
void getClipboard(ClipboardID, CString&) const;
|
|
|
|
|
|
|
|
// returns true iff the user is locked to the primary screen
|
|
|
|
bool isLockedToScreen() const;
|
|
|
|
|
|
|
|
// returns the state of the toggle keys on the primary screen
|
|
|
|
KeyModifierMask getToggleMask() const;
|
|
|
|
|
2002-07-10 21:22:28 +00:00
|
|
|
// IScreenReceiver overrides
|
2002-07-16 16:52:26 +00:00
|
|
|
virtual void onError();
|
2002-07-10 21:22:28 +00:00
|
|
|
virtual void onInfoChanged(const CClientInfo&);
|
|
|
|
virtual bool onGrabClipboard(ClipboardID);
|
|
|
|
virtual void onClipboardChanged(ClipboardID, const CString&);
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// IClient overrides
|
2002-07-10 20:18:32 +00:00
|
|
|
virtual bool open();
|
2002-07-09 21:22:31 +00:00
|
|
|
virtual void run();
|
|
|
|
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);
|
|
|
|
virtual void keyDown(KeyID, KeyModifierMask);
|
|
|
|
virtual void keyRepeat(KeyID, KeyModifierMask, SInt32 count);
|
|
|
|
virtual void keyUp(KeyID, KeyModifierMask);
|
|
|
|
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-07-09 21:22:31 +00:00
|
|
|
virtual CString getName() const;
|
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:
|
|
|
|
IServer* m_server;
|
2002-07-13 22:00:38 +00:00
|
|
|
CPrimaryScreen* m_screen;
|
2002-07-09 21:22:31 +00:00
|
|
|
CString m_name;
|
|
|
|
UInt32 m_seqNum;
|
2002-07-10 14:15:17 +00:00
|
|
|
CClientInfo m_info;
|
2002-07-09 21:22:31 +00:00
|
|
|
bool m_clipboardDirty[kClipboardEnd];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|