276b2be581
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.
26 lines
712 B
C
26 lines
712 B
C
#ifndef __grab_h
|
|
#define __grab_h
|
|
|
|
#include "misc.h"
|
|
|
|
#include <glib.h>
|
|
#include <X11/Xlib.h>
|
|
|
|
void grab_startup();
|
|
void grab_shutdown();
|
|
|
|
gboolean grab_keyboard(gboolean grab);
|
|
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, ObCursor cursor);
|
|
void ungrab_button(guint button, guint state, Window win);
|
|
|
|
void grab_key(guint keycode, guint state, Window win, int keyboard_mode);
|
|
|
|
void ungrab_all_keys(Window win);
|
|
|
|
#endif
|