2001-10-08 19:24:46 +00:00
|
|
|
#ifndef CXWINDOWSSECONDARYSCREEN_H
|
|
|
|
#define CXWINDOWSSECONDARYSCREEN_H
|
|
|
|
|
2001-10-24 22:33:24 +00:00
|
|
|
#include "CMutex.h"
|
2001-10-08 19:24:46 +00:00
|
|
|
#include "ISecondaryScreen.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
class CThread;
|
|
|
|
|
|
|
|
class CXWindowsSecondaryScreen : public ISecondaryScreen {
|
|
|
|
public:
|
|
|
|
CXWindowsSecondaryScreen();
|
|
|
|
virtual ~CXWindowsSecondaryScreen();
|
|
|
|
|
|
|
|
// ISecondaryScreen overrides
|
|
|
|
virtual void open(CClient*);
|
|
|
|
virtual void close();
|
|
|
|
virtual void enter(SInt32 xAbsolute, SInt32 yAbsolute);
|
|
|
|
virtual void leave();
|
|
|
|
virtual void warpCursor(SInt32 xAbsolute, SInt32 yAbsolute);
|
|
|
|
virtual void onKeyDown(KeyID, KeyModifierMask);
|
|
|
|
virtual void onKeyRepeat(KeyID, KeyModifierMask, SInt32 count);
|
|
|
|
virtual void onKeyUp(KeyID, KeyModifierMask);
|
|
|
|
virtual void onMouseDown(ButtonID);
|
|
|
|
virtual void onMouseUp(ButtonID);
|
|
|
|
virtual void onMouseMove(SInt32 xAbsolute, SInt32 yAbsolute);
|
|
|
|
virtual void onMouseWheel(SInt32 delta);
|
|
|
|
virtual void getSize(SInt32* width, SInt32* height) const;
|
|
|
|
virtual SInt32 getJumpZoneSize() const;
|
|
|
|
|
|
|
|
private:
|
2001-10-23 22:41:46 +00:00
|
|
|
Cursor createBlankCursor();
|
2001-10-24 22:33:24 +00:00
|
|
|
void warpCursorNoLock(SInt32 xAbsolute, SInt32 yAbsolute);
|
2001-10-08 19:24:46 +00:00
|
|
|
void eventThread(void*);
|
|
|
|
KeyCode mapKey(KeyID, KeyModifierMask) const;
|
|
|
|
unsigned int mapButton(ButtonID button) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CClient* m_client;
|
|
|
|
CThread* m_eventThread;
|
|
|
|
Display* m_display;
|
|
|
|
int m_screen;
|
2001-10-23 22:41:46 +00:00
|
|
|
Window m_root;
|
2001-10-08 19:24:46 +00:00
|
|
|
Window m_window;
|
|
|
|
SInt32 m_w, m_h;
|
2001-10-24 22:33:24 +00:00
|
|
|
|
|
|
|
// X is not thread safe
|
|
|
|
CMutex m_mutex;
|
2001-10-08 19:24:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|