]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/focus.h
rm debug prints
[mikachu/openbox.git] / openbox / focus.h
1 #ifndef __focus_h
2 #define __focus_h
3
4 #include <X11/Xlib.h>
5 #include <glib.h>
6
7 struct Client;
8
9 /*! The window which gets focus when nothing else will be focused */
10 extern Window focus_backup;
11
12 /*! The client which is currently focused */
13 extern struct Client *focus_client;
14
15 /*! The recent focus order on each desktop */
16 extern GList **focus_order;
17
18 void focus_startup();
19 void focus_shutdown();
20
21 /*! Specify which client is currently focused, this doesn't actually
22   send focus anywhere, its called by the Focus event handlers */
23 void focus_set_client(struct Client *client);
24
25 #endif