add missing include, pass right args to font_draw
[openbox.git] / c / focus.h
blob9db5202696f806fbf63d97ff24196b7b41ae04e3
1 #ifndef __focus_h
2 #define __focus_h
4 #include <X11/Xlib.h>
6 struct Client;
8 /*! The window which gets focus when nothing else will be focused */
9 extern Window focus_backup;
11 /*! The client which is currently focused */
12 extern struct Client *focus_client;
14 void focus_startup();
16 /*! Specify which client is currently focused, this doesn't actually
17 send focus anywhere, its called by the Focus event handlers */
18 void focus_set_client(struct Client *client);
20 #endif