barrier/client/CClient.h

69 lines
1.3 KiB
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef CCLIENT_H
#define CCLIENT_H
#include "CMutex.h"
2001-10-06 14:13:28 +00:00
#include "CString.h"
#include "BasicTypes.h"
#include "ClipboardTypes.h"
#include "IClipboard.h"
2001-10-06 14:13:28 +00:00
class CNetworkAddress;
class IInputStream;
class IOutputStream;
class ISecondaryScreen;
2001-10-06 14:13:28 +00:00
class CClient {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
CClient(const CString& clientName);
~CClient();
// manipulators
void run(const CNetworkAddress& serverAddress);
// handle events on client's screen
void onClipboardChanged(ClipboardID);
2001-10-06 14:13:28 +00:00
// accessors
2002-04-29 14:40:01 +00:00
private:
void runSession(void*);
// open/close the primary screen
void openSecondaryScreen();
void closeSecondaryScreen();
2001-10-06 14:13:28 +00:00
// message handlers
void onEnter();
void onLeave();
void onGrabClipboard();
void onScreenSaver();
void onQueryInfo();
void onSetClipboard();
void onKeyDown();
void onKeyRepeat();
void onKeyUp();
void onMouseDown();
void onMouseUp();
void onMouseMove();
void onMouseWheel();
void onErrorIncompatible();
void onErrorBusy();
void onErrorBad();
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
private:
CMutex m_mutex;
2001-10-06 14:13:28 +00:00
CString m_name;
IInputStream* m_input;
2001-10-06 14:13:28 +00:00
IOutputStream* m_output;
ISecondaryScreen* m_screen;
const CNetworkAddress* m_serverAddress;
bool m_active;
UInt32 m_seqNum;
bool m_ownClipboard[kClipboardEnd];
IClipboard::Time m_timeClipboard[kClipboardEnd];
2001-10-06 14:13:28 +00:00
};
#endif