Go to the source code of this file.
Data Structures | |
struct | DMXDesktopAttributes |
struct | DMXInputAttributes |
struct | DMXScreenAttributes |
struct | DMXWindowAttributes |
Enumerations | |
enum | DMXInputEnum |
Functions | |
_XFUNCPROTOBEGIN Bool | DMXQueryExtension (Display *dpy, int *event_basep, int *error_basep) |
Bool | DMXQueryVersion (Display *dpy, int *major_version, int *minor_version, int *patch_version) |
Bool | DMXSync (Display *dpy) |
Bool | DMXForceWindowCreation (Display *dpy, Window window) |
Bool | DMXGetScreenCount (Display *dpy, int *screen_count) |
Bool | DMXGetScreenAttributes (Display *dpy, int screen, DMXScreenAttributes *attr) |
int | DMXChangeScreensAttributes (Display *dpy, int screen_count, int *screens, int mask_count, unsigned int *masks, DMXScreenAttributes *attr, int *error_screen) |
Bool | DMXAddScreen (Display *dpy, const char *displayName, unsigned int mask, DMXScreenAttributes *attr, int *screen) |
Bool | DMXRemoveScreen (Display *dpy, int screen) |
Bool | DMXGetWindowAttributes (Display *dpy, Window window, int *screen_count, int available_count, DMXWindowAttributes *attr) |
Bool | DMXGetDesktopAttributes (Display *dpy, DMXDesktopAttributes *attr) |
int | DMXChangeDesktopAttributes (Display *dpy, unsigned int mask, DMXDesktopAttributes *attr) |
Bool | DMXGetInputCount (Display *dpy, int *input_count) |
Bool | DMXGetInputAttributes (Display *dpy, int id, DMXInputAttributes *attr) |
Bool | DMXAddInput (Display *dpy, unsigned int mask, DMXInputAttributes *attr, int *id) |
Bool | DMXRemoveInput (Display *dpy, int id) |
Bool | DMXAddBackendInput (Display *dpy, int screen, int sendsCore, int *newId) |
Bool | DMXAddConsoleInput (Display *dpy, const char *name, int sendsCore, int *newId) |
|
Enumeration for the #inputType field in the DMXInputAttributes structure. |
|
Add backend input (a helper function that calls DMXAddInput). |
|
Add console input (a helper function that calls DMXAddInput). |
|
Add input. |
|
Add a screen. |
|
Change the global bounding box and origin offset. Available in DMX Protocol Version 2.0 |
|
Change geometries and positions of the DMX screen and root windows on the back-end X server. |
|
The creation of the specified window will be forced. Available in DMX Protocol Version 1.2 Reply added in DMX Protocol Version 2.0 |
|
If the DMXGetDesktopAttributes protocol request returns information correctly, the information will be placed in attr, and True will be returned. Otherwise, False will be returned. Available in DMX Protocol Version 2.0 |
|
If the DMXGetInputAttributes protocol request returns information about the input device with the specified id, information about the input device will be placed in inf, and True will be returned. Otherwise, False will be returned. Available in DMX Protocol Version 1.1 |
|
If the DMXGetInputCount protocol request returns the input count, the value will be placed in input_count, and True will be returned. Otherwise, False will be returned. Available in DMX Protocol Version 1.1 |
|
If the DMXGetScreenAttributes protocol request returns information for the specified physical_screen, information about the screen will be placed in attr, and True will be returned. Otherwise, False will be returned. Available in DMX Protocol Version 1.0; Modified in Version 2.0 |
|
If the DMXGetScreenCount protocol request returns the screen count, the value will be placed in screen_count, and True will be returned. Otherwise, False will be returned. Available in DMX Protocol Version 1.0 |
|
If the DMXGetWindowAttributes protocol request returns information about the specified window, the number of screens for which information is available will be returned in screen_count and information about the first available_count of those screens will be placed in inf. Because this call transports a great deal of information over the wire, please call DMXGetScreenCount first, and make sure inf is that large. Note that if the specified window has not yet been mapped when DMXGetWindowAttributes is called, then a subsequent XMapWindow call might be buffered in xlib while requests directly to the back-end X servers are processed. This race condition can be solved by calling DMXSync before talking directly to the back-end X servers. Available in DMX Protocol Version 1.0, but not working correctly until DMX Protocol Version 1.4 |
|
If the server has the DMX extension, the event and error bases will be placed in event_basep and error_basep, and True will be returned. Otherwise, False will be returned. Available in DMX Protocol Version 1.0 |
|
If the DMXQueryVersion protocol request returns version information from the server, majorVersion, minorVersion, and patchVersion are filled in with the appropriate information and True is returned. Otherwise, False will be returned. Available in DMX Protocol Version 1.0 |
|
Remove an input. |
|
Remove a screen. |
|
Flush all pending dmxSync requests in DMX server. Available in DMX Protocol Version 1.5 |