]> git.sur5r.net Git - i3/i3/blob - src/ewmh.c
afc4eb905864abf8b5086cdbaad1d493de48680f
[i3/i3] / src / ewmh.c
1 #line 2 "ewmh.c"
2 /*
3  * vim:ts=4:sw=4:expandtab
4  *
5  * i3 - an improved dynamic tiling window manager
6  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
7  *
8  * ewmh.c: Get/set certain EWMH properties easily.
9  *
10  */
11 #include "all.h"
12
13 /*
14  * Updates _NET_CURRENT_DESKTOP with the current desktop number.
15  *
16  * EWMH: The index of the current desktop. This is always an integer between 0
17  * and _NET_NUMBER_OF_DESKTOPS - 1.
18  *
19  */
20 void ewmh_update_current_desktop(void) {
21     Con *focused_ws = con_get_workspace(focused);
22     Con *output;
23     uint32_t idx = 0;
24     /* We count to get the index of this workspace because named workspaces
25      * don’t have the ->num property */
26     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
27         Con *ws;
28         TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
29             if (ws == focused_ws) {
30                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
31                         A__NET_CURRENT_DESKTOP, XCB_ATOM_CARDINAL, 32, 1, &idx);
32                 return;
33             }
34             ++idx;
35         }
36     }
37 }
38
39 /*
40  * Updates _NET_ACTIVE_WINDOW with the currently focused window.
41  *
42  * EWMH: The window ID of the currently active window or None if no window has
43  * the focus.
44  *
45  */
46 void ewmh_update_active_window(xcb_window_t window) {
47     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
48             A__NET_ACTIVE_WINDOW, XCB_ATOM_WINDOW, 32, 1, &window);
49 }
50
51 /*
52  * Updates the workarea for each desktop.
53  *
54  * This function is not called at the moment due to:
55  * http://bugs.i3wm.org/539
56  * http://bugs.i3wm.org/301
57  *
58  * EWMH: Contains a geometry for each desktop. These geometries specify an area
59  * that is completely contained within the viewport. Work area SHOULD be used by
60  * desktop applications to place desktop icons appropriately.
61  *
62  */
63 void ewmh_update_workarea(void) {
64     int num_workspaces = 0, count = 0;
65     Rect last_rect = {0, 0, 0, 0};
66     Con *output;
67
68     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
69         Con *ws;
70         TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
71             /* Check if we need to initialize last_rect. The case that the
72              * first workspace is all-zero may happen when the user
73              * assigned workspace 2 for his first screen, for example. Thus
74              * we need an initialized last_rect in the very first run of
75              * the following loop. */
76             if (last_rect.width == 0 && last_rect.height == 0 &&
77                     ws->rect.width != 0 && ws->rect.height != 0) {
78                 memcpy(&last_rect, &(ws->rect), sizeof(Rect));
79             }
80             num_workspaces++;
81         }
82     }
83
84     DLOG("Got %d workspaces\n", num_workspaces);
85     uint8_t *workarea = smalloc(sizeof(Rect) * num_workspaces);
86     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
87         Con *ws;
88         TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
89             DLOG("storing %d: %dx%d with %d x %d\n", count, ws->rect.x,
90                  ws->rect.y, ws->rect.width, ws->rect.height);
91             /* If a workspace is not yet initialized and thus its
92              * dimensions are zero, we will instead put the dimensions
93              * of the last workspace in the list. For example firefox
94              * intersects all workspaces and does not cope so well with
95              * an all-zero workspace. */
96             if (ws->rect.width == 0 || ws->rect.height == 0) {
97                 DLOG("re-using last_rect (%dx%d, %d, %d)\n",
98                      last_rect.x, last_rect.y, last_rect.width,
99                      last_rect.height);
100                 memcpy(workarea + (sizeof(Rect) * count++), &last_rect, sizeof(Rect));
101                 continue;
102             }
103             memcpy(workarea + (sizeof(Rect) * count++), &(ws->rect), sizeof(Rect));
104             memcpy(&last_rect, &(ws->rect), sizeof(Rect));
105         }
106     }
107     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
108             A__NET_WORKAREA, XCB_ATOM_CARDINAL, 32,
109             num_workspaces * (sizeof(Rect) / sizeof(uint32_t)),
110             workarea);
111     free(workarea);
112     xcb_flush(conn);
113 }
114
115 /*
116  * Updates the _NET_CLIENT_LIST_STACKING hint.
117  *
118  */
119 void ewmh_update_client_list_stacking(xcb_window_t *stack, int num_windows) {
120     xcb_change_property(
121         conn,
122         XCB_PROP_MODE_REPLACE,
123         root,
124         A__NET_CLIENT_LIST_STACKING,
125         XCB_ATOM_WINDOW,
126         32,
127         num_windows,
128         stack);
129 }
130
131 /*
132  * Set up the EWMH hints on the root window.
133  *
134  */
135 void ewmh_setup_hints(void) {
136     xcb_atom_t supported_atoms[] = {
137 #define xmacro(atom) A_ ## atom,
138 #include "atoms.xmacro"
139 #undef xmacro
140     };
141
142     /* Set up the window manager’s name. According to EWMH, section "Root Window
143      * Properties", to indicate that an EWMH-compliant window manager is
144      * present, a child window has to be created (and kept alive as long as the
145      * window manager is running) which has the _NET_SUPPORTING_WM_CHECK and
146      * _NET_WM_ATOMS. */
147     xcb_window_t child_window = xcb_generate_id(conn);
148     xcb_create_window(
149         conn,
150         XCB_COPY_FROM_PARENT, /* depth */
151         child_window, /* window id */
152         root, /* parent */
153         0, 0, 1, 1, /* dimensions (x, y, w, h) */
154         0, /* border */
155         XCB_WINDOW_CLASS_INPUT_ONLY, /* window class */
156         XCB_COPY_FROM_PARENT, /* visual */
157         0,
158         NULL);
159     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, child_window, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &child_window);
160     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, child_window, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
161     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &child_window);
162
163     /* I’m not entirely sure if we need to keep _NET_WM_NAME on root. */
164     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
165
166     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, XCB_ATOM_ATOM, 32, 16, supported_atoms);
167 }