merge the C branch into HEAD
[openbox.git] / c / focus.c
blob329a4a9d658795141824c11c2c3feb2d8768728b
1 #include "openbox.h"
2 #include "client.h"
3 #include "screen.h"
4 #include "prop.h"
5 #include "hooks.h"
6 #include <X11/Xlib.h>
8 Client *focus_client = NULL;
10 Window focus_backup = None;
12 void focus_set_client(Client *client);
14 void focus_startup()
16 /* create the window which gets focus when no clients get it. Have to
17 make it override-redirect so we don't try manage it, since it is
18 mapped. */
19 XSetWindowAttributes attrib;
21 attrib.override_redirect = TRUE;
22 focus_backup = XCreateWindow(ob_display, ob_root,
23 -100, -100, 1, 1, 0, 0, InputOnly,
24 CopyFromParent, CWOverrideRedirect, &attrib);
25 XMapRaised(ob_display, focus_backup);
27 /* start with nothing focused */
28 focus_set_client(NULL);
31 void focus_set_client(Client *client)
33 Window active;
35 /* sometimes this is called with the already-focused window, this is
36 important for the python scripts to work (eg, c = 0 twice). don't just
37 return if _focused_client == c */
39 /* uninstall the old colormap, and install the new one */
40 screen_install_colormap(focus_client, FALSE);
41 screen_install_colormap(client, TRUE);
44 if (client == NULL) {
45 /* when nothing will be focused, send focus to the backup target */
46 XSetInputFocus(ob_display, focus_backup, RevertToNone, CurrentTime);
49 focus_client = client;
51 /* set the NET_ACTIVE_WINDOW hint */
52 active = client ? client->window : None;
53 PROP_SET32(ob_root, net_active_window, window, active);
55 LOGICALHOOK(Focus, g_quark_try_string("client"), client);