]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/dispatch.h
fix comments
[mikachu/openbox.git] / openbox / dispatch.h
1 #ifndef __dispatch_h
2 #define __dispatch_h
3
4 #include "client.h"
5 #include <X11/Xlib.h>
6
7 void dispatch_startup();
8 void dispatch_shutdown();
9
10 typedef enum {
11     Event_X_EnterNotify   = 1 << 0, /* pointer entered a window */
12     Event_X_LeaveNotify   = 1 << 1, /* pointer left a window */
13     Event_X_KeyPress      = 1 << 2, /* key pressed */
14     Event_X_KeyRelease    = 1 << 3, /* key released */
15     Event_X_ButtonPress   = 1 << 4, /* mouse button pressed */
16     Event_X_ButtonRelease = 1 << 5, /* mouse button released */
17     Event_X_MotionNotify  = 1 << 6, /* mouse motion */
18     Event_X_Bell          = 1 << 7, /* an XKB bell event
19
20     Event_Client_New      = 1 << 8, /* new window, before mapping */
21     Event_Client_Mapped   = 1 << 9, /* new window, after mapping */
22     Event_Client_Destroy  = 1 << 10, /* unmanaged */
23     Event_Client_Focus    = 1 << 11, /* focused */
24     Event_Client_Unfocus  = 1 << 12, /* unfocused */
25     Event_Client_Urgent   = 1 << 13, /* entered/left urgent state */
26     Event_Client_Visible  = 1 << 14, /* shown/hidden (not on a workspace or
27                                         show-the-desktop change though) */
28
29     Event_Ob_Desktop      = 1 << 15, /* changed desktops */
30     Event_Ob_NumDesktops  = 1 << 16, /* changed the number of desktops */
31     Event_Ob_ShowDesktop  = 1 << 17, /* entered/left show-the-desktop mode */
32     Event_Ob_Startup      = 1 << 18, /* startup under way */
33     Event_Ob_Shutdown     = 1 << 19, /* shutdown under way */
34
35     Event_Signal          = 1 << 20, /* a signal from the OS */
36
37     EVENT_RANGE           = 1 << 21
38 } EventType;
39
40 typedef struct {
41     XEvent *e;
42     Client *client;
43 } EventData_X;
44
45 typedef union {
46     EventData_X x; /* for Event_X_* event types */
47     Client *client; /* for Event_Client_* event types */
48     int signal;
49 } EventData;
50
51 typedef struct {
52     EventType type;
53     EventData data;
54 } ObEvent;
55
56 typedef void (*EventHandler)(const ObEvent *e);
57
58 typedef unsigned int EventMask;
59
60 void dispatch_register(EventHandler h, EventMask mask);
61
62 void dispatch_x(XEvent *e, Client *c);
63 void dispatch_client(EventType e, Client *c);
64 void dispatch_ob(EventType e);
65 void dispatch_signal(int signal);
66
67 #endif