mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-19 08:51:41 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
104 lines
2.4 KiB
C++
104 lines
2.4 KiB
C++
#ifndef CXWINDOWSUTIL_H
|
|
#define CXWINDOWSUTIL_H
|
|
|
|
#include "CString.h"
|
|
#include "BasicTypes.h"
|
|
#if defined(X_DISPLAY_MISSING)
|
|
# error X11 is required to build synergy
|
|
#else
|
|
# include <X11/Xlib.h>
|
|
#endif
|
|
|
|
//! X11 utility functions
|
|
class CXWindowsUtil {
|
|
public:
|
|
//! Get property
|
|
/*!
|
|
Gets property \c property on \c window. \b Appends the data to
|
|
\c *data if \c data is not NULL, saves the property type in \c *type
|
|
if \c type is not NULL, and saves the property format in \c *format
|
|
if \c format is not NULL. If \c deleteProperty is true then the
|
|
property is deleted after being read.
|
|
*/
|
|
static bool getWindowProperty(Display*,
|
|
Window window, Atom property,
|
|
CString* data, Atom* type,
|
|
SInt32* format, bool deleteProperty);
|
|
|
|
//! Set property
|
|
/*!
|
|
Sets property \c property on \c window to \c size bytes of data from
|
|
\c data.
|
|
*/
|
|
static bool setWindowProperty(Display*,
|
|
Window window, Atom property,
|
|
const void* data, UInt32 size,
|
|
Atom type, SInt32 format);
|
|
|
|
//! Get X server time
|
|
/*!
|
|
Returns the current X server time.
|
|
*/
|
|
static Time getCurrentTime(Display*, Window);
|
|
|
|
//! X11 error handler
|
|
/*!
|
|
This class sets an X error handler in the c'tor and restores the
|
|
previous error handler in the d'tor. A lock should only be
|
|
installed while the display is locked by the thread.
|
|
|
|
CErrorLock() ignores errors
|
|
CErrorLock(bool* flag) sets *flag to true if any error occurs
|
|
*/
|
|
class CErrorLock {
|
|
public:
|
|
//! Error handler type
|
|
typedef void (*ErrorHandler)(Display*, XErrorEvent*, void* userData);
|
|
|
|
/*!
|
|
Ignore X11 errors.
|
|
*/
|
|
CErrorLock(Display*);
|
|
|
|
/*!
|
|
Set \c *errorFlag if any error occurs.
|
|
*/
|
|
CErrorLock(Display*, bool* errorFlag);
|
|
|
|
/*!
|
|
Call \c handler on each error.
|
|
*/
|
|
CErrorLock(Display*, ErrorHandler handler, void* userData);
|
|
|
|
~CErrorLock();
|
|
|
|
private:
|
|
void install(ErrorHandler, void*);
|
|
static int internalHandler(Display*, XErrorEvent*);
|
|
static void ignoreHandler(Display*, XErrorEvent*, void*);
|
|
static void saveHandler(Display*, XErrorEvent*, void*);
|
|
|
|
private:
|
|
typedef int (*XErrorHandler)(Display*, XErrorEvent*);
|
|
|
|
Display* m_display;
|
|
ErrorHandler m_handler;
|
|
void* m_userData;
|
|
XErrorHandler m_oldXHandler;
|
|
CErrorLock* m_next;
|
|
static CErrorLock* s_top;
|
|
};
|
|
|
|
private:
|
|
class CPropertyNotifyPredicateInfo {
|
|
public:
|
|
Window m_window;
|
|
Atom m_property;
|
|
};
|
|
|
|
static Bool propertyNotifyPredicate(Display*,
|
|
XEvent* xevent, XPointer arg);
|
|
};
|
|
|
|
#endif
|