diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-10 06:18:47 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-10 06:18:47 +0000 |
| commit | 276b2be581c6cb138b439537761ff2ca42201805 (patch) | |
| tree | 753038e7990b881a2bc0e525fab1ebc45b2523e3 /openbox/grab.h | |
| parent | 6357583c396382dd6ed8ac42004177f204fabe62 (diff) | |
add misc.h with some standard enumerations with proper prefixing and capitalizations.
use the new enums throughout.
provide keycodes and cursors through ob_cursor and ob_keycode functions, which use the new misc.h enums for picking the cursor and keycode.
Diffstat (limited to 'openbox/grab.h')
| -rw-r--r-- | openbox/grab.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openbox/grab.h b/openbox/grab.h index 78d7d264..39489ed2 100644 --- a/openbox/grab.h +++ b/openbox/grab.h @@ -1,6 +1,8 @@ #ifndef __grab_h #define __grab_h +#include "misc.h" + #include <glib.h> #include <X11/Xlib.h> @@ -8,13 +10,13 @@ void grab_startup(); void grab_shutdown(); gboolean grab_keyboard(gboolean grab); -gboolean grab_pointer(gboolean grab, Cursor cur); -gboolean grab_pointer_window(gboolean grab, Cursor cur, Window win); +gboolean grab_pointer(gboolean grab, ObCursor cur); +gboolean grab_pointer_window(gboolean grab, ObCursor cur, Window win); void grab_server(gboolean grab); void grab_button(guint button, guint state, Window win, guint mask); void grab_button_full(guint button, guint state, Window win, guint mask, - int pointer_mode, Cursor cursor); + int pointer_mode, ObCursor cursor); void ungrab_button(guint button, guint state, Window win); void grab_key(guint keycode, guint state, Window win, int keyboard_mode); |
