]> git.sur5r.net Git - i3/i3/blob - src/ewmh.c
bugfix: don't set input focus if not accepted
[i3/i3] / src / ewmh.c
1 #undef I3__FILE__
2 #define I3__FILE__ "ewmh.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * ewmh.c: Get/set certain EWMH properties easily.
10  *
11  */
12 #include "all.h"
13
14 /*
15  * Updates _NET_CURRENT_DESKTOP with the current desktop number.
16  *
17  * EWMH: The index of the current desktop. This is always an integer between 0
18  * and _NET_NUMBER_OF_DESKTOPS - 1.
19  *
20  */
21 void ewmh_update_current_desktop(void) {
22     Con *focused_ws = con_get_workspace(focused);
23     Con *output;
24     uint32_t idx = 0;
25     /* We count to get the index of this workspace because named workspaces
26      * don’t have the ->num property */
27     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
28         Con *ws;
29         TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
30             if (STARTS_WITH(ws->name, "__"))
31                 continue;
32
33             if (ws == focused_ws) {
34                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
35                                     A__NET_CURRENT_DESKTOP, XCB_ATOM_CARDINAL, 32, 1, &idx);
36                 return;
37             }
38             ++idx;
39         }
40     }
41 }
42
43 /*
44  * Updates _NET_NUMBER_OF_DESKTOPS which we interpret as the number of
45  * noninternal workspaces.
46  */
47 void ewmh_update_number_of_desktops(void) {
48     Con *output;
49     uint32_t idx = 0;
50
51     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
52         Con *ws;
53         TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
54             if (STARTS_WITH(ws->name, "__"))
55                 continue;
56             ++idx;
57         }
58     }
59
60     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
61                         A__NET_NUMBER_OF_DESKTOPS, XCB_ATOM_CARDINAL, 32, 1, &idx);
62 }
63
64 /*
65  * Updates _NET_ACTIVE_WINDOW with the currently focused window.
66  *
67  * EWMH: The window ID of the currently active window or None if no window has
68  * the focus.
69  *
70  */
71 void ewmh_update_active_window(xcb_window_t window) {
72     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
73                         A__NET_ACTIVE_WINDOW, XCB_ATOM_WINDOW, 32, 1, &window);
74 }
75
76 /*
77  * i3 currently does not support _NET_WORKAREA, because it does not correspond
78  * to i3’s concept of workspaces. See also:
79  * http://bugs.i3wm.org/539
80  * http://bugs.i3wm.org/301
81  * http://bugs.i3wm.org/1038
82  *
83  * We need to actively delete this property because some display managers (e.g.
84  * LightDM) set it.
85  *
86  * EWMH: Contains a geometry for each desktop. These geometries specify an area
87  * that is completely contained within the viewport. Work area SHOULD be used by
88  * desktop applications to place desktop icons appropriately.
89  *
90  */
91 void ewmh_update_workarea(void) {
92     xcb_delete_property(conn, root, A__NET_WORKAREA);
93 }
94
95 /*
96  * Updates the _NET_CLIENT_LIST hint.
97  *
98  */
99 void ewmh_update_client_list(xcb_window_t *list, int num_windows) {
100     xcb_change_property(
101         conn,
102         XCB_PROP_MODE_REPLACE,
103         root,
104         A__NET_CLIENT_LIST,
105         XCB_ATOM_WINDOW,
106         32,
107         num_windows,
108         list);
109 }
110
111 /*
112  * Updates the _NET_CLIENT_LIST_STACKING hint.
113  *
114  */
115 void ewmh_update_client_list_stacking(xcb_window_t *stack, int num_windows) {
116     xcb_change_property(
117         conn,
118         XCB_PROP_MODE_REPLACE,
119         root,
120         A__NET_CLIENT_LIST_STACKING,
121         XCB_ATOM_WINDOW,
122         32,
123         num_windows,
124         stack);
125 }
126
127 /*
128  * Set up the EWMH hints on the root window.
129  *
130  */
131 void ewmh_setup_hints(void) {
132     xcb_atom_t supported_atoms[] = {
133 #define xmacro(atom) A_##atom,
134 #include "atoms.xmacro"
135 #undef xmacro
136     };
137
138     /* Set up the window manager’s name. According to EWMH, section "Root Window
139      * Properties", to indicate that an EWMH-compliant window manager is
140      * present, a child window has to be created (and kept alive as long as the
141      * window manager is running) which has the _NET_SUPPORTING_WM_CHECK and
142      * _NET_WM_ATOMS. */
143     xcb_window_t child_window = xcb_generate_id(conn);
144     xcb_create_window(
145         conn,
146         XCB_COPY_FROM_PARENT,        /* depth */
147         child_window,                /* window id */
148         root,                        /* parent */
149         0, 0, 1, 1,                  /* dimensions (x, y, w, h) */
150         0,                           /* border */
151         XCB_WINDOW_CLASS_INPUT_ONLY, /* window class */
152         XCB_COPY_FROM_PARENT,        /* visual */
153         0,
154         NULL);
155     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, child_window, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &child_window);
156     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, child_window, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
157     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 33, 1, &child_window);
158
159     /* I’m not entirely sure if we need to keep _NET_WM_NAME on root. */
160     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
161
162     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, XCB_ATOM_ATOM, 32, 19, supported_atoms);
163 }