]> git.sur5r.net Git - i3/i3/blob - src/ewmh.c
Merge branch 'master' into next
[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_ACTIVE_WINDOW with the currently focused window.
45  *
46  * EWMH: The window ID of the currently active window or None if no window has
47  * the focus.
48  *
49  */
50 void ewmh_update_active_window(xcb_window_t window) {
51     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
52             A__NET_ACTIVE_WINDOW, XCB_ATOM_WINDOW, 32, 1, &window);
53 }
54
55 /*
56  * i3 currently does not support _NET_WORKAREA, because it does not correspond
57  * to i3’s concept of workspaces. See also:
58  * http://bugs.i3wm.org/539
59  * http://bugs.i3wm.org/301
60  * http://bugs.i3wm.org/1038
61  *
62  * We need to actively delete this property because some display managers (e.g.
63  * LightDM) set it.
64  *
65  * EWMH: Contains a geometry for each desktop. These geometries specify an area
66  * that is completely contained within the viewport. Work area SHOULD be used by
67  * desktop applications to place desktop icons appropriately.
68  *
69  */
70 void ewmh_update_workarea(void) {
71     xcb_delete_property(conn, root, A__NET_WORKAREA);
72 }
73
74 /*
75  * Updates the _NET_CLIENT_LIST_STACKING hint.
76  *
77  */
78 void ewmh_update_client_list_stacking(xcb_window_t *stack, int num_windows) {
79     xcb_change_property(
80         conn,
81         XCB_PROP_MODE_REPLACE,
82         root,
83         A__NET_CLIENT_LIST_STACKING,
84         XCB_ATOM_WINDOW,
85         32,
86         num_windows,
87         stack);
88 }
89
90 /*
91  * Set up the EWMH hints on the root window.
92  *
93  */
94 void ewmh_setup_hints(void) {
95     xcb_atom_t supported_atoms[] = {
96 #define xmacro(atom) A_ ## atom,
97 #include "atoms.xmacro"
98 #undef xmacro
99     };
100
101     /* Set up the window manager’s name. According to EWMH, section "Root Window
102      * Properties", to indicate that an EWMH-compliant window manager is
103      * present, a child window has to be created (and kept alive as long as the
104      * window manager is running) which has the _NET_SUPPORTING_WM_CHECK and
105      * _NET_WM_ATOMS. */
106     xcb_window_t child_window = xcb_generate_id(conn);
107     xcb_create_window(
108         conn,
109         XCB_COPY_FROM_PARENT, /* depth */
110         child_window, /* window id */
111         root, /* parent */
112         0, 0, 1, 1, /* dimensions (x, y, w, h) */
113         0, /* border */
114         XCB_WINDOW_CLASS_INPUT_ONLY, /* window class */
115         XCB_COPY_FROM_PARENT, /* visual */
116         0,
117         NULL);
118     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, child_window, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &child_window);
119     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, child_window, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
120     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &child_window);
121
122     /* I’m not entirely sure if we need to keep _NET_WM_NAME on root. */
123     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
124
125     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, XCB_ATOM_ATOM, 32, 18, supported_atoms);
126 }