9 /*! The window which gets focus when nothing else will be focused */
10 extern Window focus_backup;
12 /*! The client which is currently focused */
13 extern struct Client *focus_client;
15 /*! The recent focus order on each desktop */
16 extern GList **focus_order;
19 void focus_shutdown();
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);
25 /*! Call this when you need to focus something! */
26 void focus_fallback(gboolean switching_desks);