2001-10-06 14:13:28 +00:00
|
|
|
#ifndef CXWINDOWSPRIMARYSCREEN_H
|
|
|
|
#define CXWINDOWSPRIMARYSCREEN_H
|
|
|
|
|
|
|
|
#include "KeyTypes.h"
|
|
|
|
#include "MouseTypes.h"
|
2001-11-11 21:15:30 +00:00
|
|
|
#include "CXWindowsScreen.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "IPrimaryScreen.h"
|
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
class CXWindowsPrimaryScreen : public CXWindowsScreen, public IPrimaryScreen {
|
2001-10-06 14:13:28 +00:00
|
|
|
public:
|
|
|
|
CXWindowsPrimaryScreen();
|
|
|
|
virtual ~CXWindowsPrimaryScreen();
|
|
|
|
|
|
|
|
// IPrimaryScreen overrides
|
2001-11-19 00:33:36 +00:00
|
|
|
virtual void run();
|
|
|
|
virtual void stop();
|
2001-10-06 14:13:28 +00:00
|
|
|
virtual void open(CServer*);
|
|
|
|
virtual void close();
|
|
|
|
virtual void enter(SInt32 xAbsolute, SInt32 yAbsolute);
|
|
|
|
virtual void leave();
|
|
|
|
virtual void warpCursor(SInt32 xAbsolute, SInt32 yAbsolute);
|
2002-04-27 14:19:53 +00:00
|
|
|
virtual void setClipboard(ClipboardID, const IClipboard*);
|
|
|
|
virtual void grabClipboard(ClipboardID);
|
2001-10-06 14:13:28 +00:00
|
|
|
virtual void getSize(SInt32* width, SInt32* height) const;
|
|
|
|
virtual SInt32 getJumpZoneSize() const;
|
2002-04-27 14:19:53 +00:00
|
|
|
virtual void getClipboard(ClipboardID, IClipboard*) const;
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
protected:
|
|
|
|
// CXWindowsScreen overrides
|
|
|
|
virtual void onOpenDisplay();
|
|
|
|
virtual void onCloseDisplay();
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
private:
|
2001-11-11 21:15:30 +00:00
|
|
|
void selectEvents(Display*, Window) const;
|
|
|
|
void warpCursorNoLock(Display*,
|
|
|
|
SInt32 xAbsolute, SInt32 yAbsolute);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
KeyModifierMask mapModifier(unsigned int state) const;
|
2002-04-26 17:38:01 +00:00
|
|
|
KeyID mapKey(XKeyEvent*) const;
|
2001-10-06 14:13:28 +00:00
|
|
|
ButtonID mapButton(unsigned int button) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CServer* m_server;
|
|
|
|
bool m_active;
|
2001-11-11 21:15:30 +00:00
|
|
|
Window m_window;
|
2002-04-26 20:12:55 +00:00
|
|
|
|
|
|
|
bool m_capsLockHalfDuplex;
|
2001-10-06 14:13:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|