diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-18 19:51:56 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-18 19:51:56 +0000 |
| commit | 598c5d6c07118517b47d7c416a79dc9743271aa8 (patch) | |
| tree | 66e56ab23f40c9bbf894c337bec7b8bd8a0950d7 /openbox/grab.h | |
| parent | 3dfe9f4ebeb7abd8446c52db0232b9f610a78846 (diff) | |
provide functions for grabbing and ungrabbing the keyboard and pointer
Diffstat (limited to 'openbox/grab.h')
| -rw-r--r-- | openbox/grab.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/openbox/grab.h b/openbox/grab.h new file mode 100644 index 00000000..49c6a436 --- /dev/null +++ b/openbox/grab.h @@ -0,0 +1,13 @@ +#ifndef __grab_h +#define __grab_h + +#include <glib.h> +#include <X11/Xlib.h> + +void grab_startup(); +void grab_shutdown(); + +void grab_keyboard(gboolean grab); +void grab_pointer(gboolean grab, Cursor cur); + +#endif |
