1 | /*
|
---|
2 | * synergy -- mouse and keyboard sharing utility
|
---|
3 | * Copyright (C) 2004 Chris Schoeneman
|
---|
4 | *
|
---|
5 | * This package is free software; you can redistribute it and/or
|
---|
6 | * modify it under the terms of the GNU General Public License
|
---|
7 | * found in the file COPYING that should have accompanied this file.
|
---|
8 | *
|
---|
9 | * This package is distributed in the hope that it will be useful,
|
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
12 | * GNU General Public License for more details.
|
---|
13 | */
|
---|
14 |
|
---|
15 | #ifndef CXWINDOWSEVENTQUEUEBUFFER_H
|
---|
16 | #define CXWINDOWSEVENTQUEUEBUFFER_H
|
---|
17 |
|
---|
18 | #include "IEventQueueBuffer.h"
|
---|
19 | #include "CMutex.h"
|
---|
20 | #include "stdvector.h"
|
---|
21 | #if X_DISPLAY_MISSING
|
---|
22 | # error X11 is required to build synergy
|
---|
23 | #else
|
---|
24 | # include <X11/Xlib.h>
|
---|
25 | #endif
|
---|
26 |
|
---|
27 | //! Event queue buffer for X11
|
---|
28 | class CXWindowsEventQueueBuffer : public IEventQueueBuffer {
|
---|
29 | public:
|
---|
30 | CXWindowsEventQueueBuffer(Display*, Window);
|
---|
31 | virtual ~CXWindowsEventQueueBuffer();
|
---|
32 |
|
---|
33 | // IEventQueueBuffer overrides
|
---|
34 | virtual void waitForEvent(double timeout);
|
---|
35 | virtual Type getEvent(CEvent& event, UInt32& dataID);
|
---|
36 | virtual bool addEvent(UInt32 dataID);
|
---|
37 | virtual bool isEmpty() const;
|
---|
38 | virtual CEventQueueTimer*
|
---|
39 | newTimer(double duration, bool oneShot) const;
|
---|
40 | virtual void deleteTimer(CEventQueueTimer*) const;
|
---|
41 |
|
---|
42 | private:
|
---|
43 | void flush();
|
---|
44 |
|
---|
45 | private:
|
---|
46 | typedef std::vector<XEvent> CEventList;
|
---|
47 |
|
---|
48 | CMutex m_mutex;
|
---|
49 | Display* m_display;
|
---|
50 | Window m_window;
|
---|
51 | Atom m_userEvent;
|
---|
52 | XEvent m_event;
|
---|
53 | CEventList m_postedEvents;
|
---|
54 | bool m_waiting;
|
---|
55 | };
|
---|
56 |
|
---|
57 | #endif
|
---|