]> git.sur5r.net Git - i3/i3/blob - src/xcb.c
3fd0bfcde2f5d87cf62f421f56f0dfe5d2ac932a
[i3/i3] / src / xcb.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * xcb.c: Helper functions for easier usage of XCB
11  *
12  */
13
14 #include "all.h"
15
16 TAILQ_HEAD(cached_fonts_head, Font) cached_fonts = TAILQ_HEAD_INITIALIZER(cached_fonts);
17 unsigned int xcb_numlock_mask;
18
19 /*
20  * Loads a font for usage, also getting its height. If fallback is true,
21  * i3 loads 'fixed' or '-misc-*' if the font cannot be found instead of
22  * exiting.
23  *
24  */
25 i3Font load_font(const char *pattern, bool fallback) {
26     i3Font new;
27     xcb_void_cookie_t font_cookie;
28     xcb_list_fonts_with_info_cookie_t info_cookie;
29
30     /* Send all our requests first */
31     new.id = xcb_generate_id(conn);
32     font_cookie = xcb_open_font_checked(conn, new.id, strlen(pattern), pattern);
33     info_cookie = xcb_list_fonts_with_info(conn, 1, strlen(pattern), pattern);
34
35     /* Check for errors. If errors, fall back to default font. */
36     xcb_generic_error_t *error = xcb_request_check(conn, font_cookie);
37
38     /* If we fail to open font, fall back to 'fixed'. If opening 'fixed' fails fall back to '-misc-*' */
39     if (error != NULL) {
40         ELOG("Could not open font %s (X error %d). Reverting to backup font.\n", pattern, error->error_code);
41         pattern = "fixed";
42         font_cookie = xcb_open_font_checked(conn, new.id, strlen(pattern), pattern);
43         info_cookie = xcb_list_fonts_with_info(conn, 1, strlen(pattern), pattern);
44
45         /* Check if we managed to open 'fixed' */
46         xcb_generic_error_t *error = xcb_request_check(conn, font_cookie);
47
48         /* Fall back to '-misc-*' if opening 'fixed' fails. */
49         if (error != NULL) {
50             ELOG("Could not open fallback font '%s', trying with '-misc-*'\n",pattern);
51             pattern = "-misc-*";
52             font_cookie = xcb_open_font_checked(conn, new.id, strlen(pattern), pattern);
53             info_cookie = xcb_list_fonts_with_info(conn, 1, strlen(pattern), pattern);
54
55             check_error(conn, font_cookie, "Could open neither requested font nor fallback (fixed or -misc-*");
56         }
57     }
58
59     /* Get information (height/name) for this font */
60     xcb_list_fonts_with_info_reply_t *reply = xcb_list_fonts_with_info_reply(conn, info_cookie, NULL);
61     exit_if_null(reply, "Could not load font \"%s\"\n", pattern);
62
63     new.height = reply->font_ascent + reply->font_descent;
64
65     return new;
66 }
67
68 /*
69  * Returns the colorpixel to use for the given hex color (think of HTML).
70  *
71  * The hex_color has to start with #, for example #FF00FF.
72  *
73  * NOTE that get_colorpixel() does _NOT_ check the given color code for validity.
74  * This has to be done by the caller.
75  *
76  */
77 uint32_t get_colorpixel(char *hex) {
78     char strgroups[3][3] = {{hex[1], hex[2], '\0'},
79                             {hex[3], hex[4], '\0'},
80                             {hex[5], hex[6], '\0'}};
81     uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
82                          (strtol(strgroups[1], NULL, 16)),
83                          (strtol(strgroups[2], NULL, 16))};
84
85     return (rgb16[0] << 16) + (rgb16[1] << 8) + rgb16[2];
86 }
87
88 /*
89  * Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking
90  * for errors.
91  *
92  */
93 xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t window_class,
94         enum xcursor_cursor_t cursor, bool map, uint32_t mask, uint32_t *values) {
95     xcb_window_t result = xcb_generate_id(conn);
96     xcb_cursor_t cursor_id = xcb_generate_id(conn);
97
98     /* If the window class is XCB_WINDOW_CLASS_INPUT_ONLY, depth has to be 0 */
99     uint16_t depth = (window_class == XCB_WINDOW_CLASS_INPUT_ONLY ? 0 : XCB_COPY_FROM_PARENT);
100
101     xcb_create_window(conn,
102             depth,
103             result, /* the window id */
104             root, /* parent == root */
105             dims.x, dims.y, dims.width, dims.height, /* dimensions */
106             0, /* border = 0, we draw our own */
107             window_class,
108             XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
109             mask,
110             values);
111
112     /* Set the cursor */
113     if (xcursor_supported) {
114         mask = XCB_CW_CURSOR;
115         values[0] = xcursor_get_cursor(cursor);
116         xcb_change_window_attributes(conn, result, mask, values);
117     } else {
118         i3Font cursor_font = load_font("cursor", false);
119         int xcb_cursor = xcursor_get_xcb_cursor(cursor);
120         xcb_create_glyph_cursor(conn, cursor_id, cursor_font.id, cursor_font.id,
121                 xcb_cursor, xcb_cursor + 1, 0, 0, 0, 65535, 65535, 65535);
122         xcb_change_window_attributes(conn, result, XCB_CW_CURSOR, &cursor_id);
123         xcb_free_cursor(conn, cursor_id);
124     }
125
126     /* Map the window (= make it visible) */
127     if (map)
128         xcb_map_window(conn, result);
129
130     return result;
131 }
132
133 /*
134  * Changes a single value in the graphic context (so one doesn’t have to define an array of values)
135  *
136  */
137 void xcb_change_gc_single(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t mask, uint32_t value) {
138     xcb_change_gc(conn, gc, mask, &value);
139 }
140
141 /*
142  * Draws a line from x,y to to_x,to_y using the given color
143  *
144  */
145 void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
146                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y) {
147     xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
148     xcb_point_t points[] = {{x, y}, {to_x, to_y}};
149     xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2, points);
150 }
151
152 /*
153  * Draws a rectangle from x,y with width,height using the given color
154  *
155  */
156 void xcb_draw_rect(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
157                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t width, uint32_t height) {
158     xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
159     xcb_rectangle_t rect = {x, y, width, height};
160     xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
161 }
162
163 /*
164  * Generates a configure_notify event and sends it to the given window
165  * Applications need this to think they’ve configured themselves correctly.
166  * The truth is, however, that we will manage them.
167  *
168  */
169 void fake_configure_notify(xcb_connection_t *conn, Rect r, xcb_window_t window) {
170     xcb_configure_notify_event_t generated_event;
171
172     generated_event.event = window;
173     generated_event.window = window;
174     generated_event.response_type = XCB_CONFIGURE_NOTIFY;
175
176     generated_event.x = r.x;
177     generated_event.y = r.y;
178     generated_event.width = r.width;
179     generated_event.height = r.height;
180
181     generated_event.border_width = 0;
182     generated_event.above_sibling = XCB_NONE;
183     generated_event.override_redirect = false;
184
185     xcb_send_event(conn, false, window, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char*)&generated_event);
186     xcb_flush(conn);
187 }
188
189 /*
190  * Generates a configure_notify_event with absolute coordinates (relative to the X root
191  * window, not to the client’s frame) for the given client.
192  *
193  */
194 void fake_absolute_configure_notify(Con *con) {
195     Rect absolute;
196     if (con->window == NULL)
197         return;
198
199     absolute.x = con->rect.x + con->window_rect.x;
200     absolute.y = con->rect.y + con->window_rect.y;
201     absolute.width = con->window_rect.width;
202     absolute.height = con->window_rect.height;
203
204     DLOG("fake rect = (%d, %d, %d, %d)\n", absolute.x, absolute.y, absolute.width, absolute.height);
205
206     fake_configure_notify(conn, absolute, con->window->id);
207 }
208
209 /*
210  * Sends the WM_TAKE_FOCUS ClientMessage to the given window
211  *
212  */
213 void send_take_focus(xcb_window_t window) {
214     xcb_client_message_event_t ev;
215
216     memset(&ev, 0, sizeof(xcb_client_message_event_t));
217
218     ev.response_type = XCB_CLIENT_MESSAGE;
219     ev.window = window;
220     ev.type = A_WM_PROTOCOLS;
221     ev.format = 32;
222     ev.data.data32[0] = A_WM_TAKE_FOCUS;
223     ev.data.data32[1] = XCB_CURRENT_TIME;
224
225     DLOG("Sending WM_TAKE_FOCUS to the client\n");
226     xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)&ev);
227 }
228
229 /*
230  * Finds out which modifier mask is the one for numlock, as the user may change this.
231  *
232  */
233 void xcb_get_numlock_mask(xcb_connection_t *conn) {
234     xcb_key_symbols_t *keysyms;
235     xcb_get_modifier_mapping_cookie_t cookie;
236     xcb_get_modifier_mapping_reply_t *reply;
237     xcb_keycode_t *modmap;
238     int mask, i;
239     const int masks[8] = { XCB_MOD_MASK_SHIFT,
240                            XCB_MOD_MASK_LOCK,
241                            XCB_MOD_MASK_CONTROL,
242                            XCB_MOD_MASK_1,
243                            XCB_MOD_MASK_2,
244                            XCB_MOD_MASK_3,
245                            XCB_MOD_MASK_4,
246                            XCB_MOD_MASK_5 };
247
248     /* Request the modifier map */
249     cookie = xcb_get_modifier_mapping_unchecked(conn);
250
251     /* Get the keysymbols */
252     keysyms = xcb_key_symbols_alloc(conn);
253
254     if ((reply = xcb_get_modifier_mapping_reply(conn, cookie, NULL)) == NULL) {
255         xcb_key_symbols_free(keysyms);
256         return;
257     }
258
259     modmap = xcb_get_modifier_mapping_keycodes(reply);
260
261     /* Get the keycode for numlock */
262 #ifdef OLD_XCB_KEYSYMS_API
263     xcb_keycode_t numlock = xcb_key_symbols_get_keycode(keysyms, XCB_NUM_LOCK);
264 #else
265     /* For now, we only use the first keysymbol. */
266     xcb_keycode_t *numlock_syms = xcb_key_symbols_get_keycode(keysyms, XCB_NUM_LOCK);
267     if (numlock_syms == NULL)
268         return;
269     xcb_keycode_t numlock = *numlock_syms;
270     free(numlock_syms);
271 #endif
272
273     /* Check all modifiers (Mod1-Mod5, Shift, Control, Lock) */
274     for (mask = 0; mask < 8; mask++)
275         for (i = 0; i < reply->keycodes_per_modifier; i++)
276             if (modmap[(mask * reply->keycodes_per_modifier) + i] == numlock)
277                 xcb_numlock_mask = masks[mask];
278
279     xcb_key_symbols_free(keysyms);
280     free(reply);
281 }
282
283 /*
284  * Raises the given window (typically client->frame) above all other windows
285  *
286  */
287 void xcb_raise_window(xcb_connection_t *conn, xcb_window_t window) {
288     uint32_t values[] = { XCB_STACK_MODE_ABOVE };
289     xcb_configure_window(conn, window, XCB_CONFIG_WINDOW_STACK_MODE, values);
290 }
291
292 /*
293  * Query the width of the given text (16-bit characters, UCS) with given real
294  * length (amount of glyphs) using the given font.
295  *
296  */
297 int predict_text_width(char *text, int length) {
298     xcb_query_text_extents_cookie_t cookie;
299     xcb_query_text_extents_reply_t *reply;
300     xcb_generic_error_t *error;
301     int width;
302
303     cookie = xcb_query_text_extents(conn, config.font.id, length, (xcb_char2b_t*)text);
304     if ((reply = xcb_query_text_extents_reply(conn, cookie, &error)) == NULL) {
305         ELOG("Could not get text extents (X error code %d)\n",
306              error->error_code);
307         /* We return the rather safe guess of 7 pixels, because a
308          * rendering error is better than a crash. Plus, the user will
309          * see the error in his log. */
310         return 7;
311     }
312
313     width = reply->overall_width;
314     free(reply);
315     return width;
316 }
317
318 /*
319  * Configures the given window to have the size/position specified by given rect
320  *
321  */
322 void xcb_set_window_rect(xcb_connection_t *conn, xcb_window_t window, Rect r) {
323     xcb_void_cookie_t cookie;
324     cookie = xcb_configure_window(conn, window,
325                          XCB_CONFIG_WINDOW_X |
326                          XCB_CONFIG_WINDOW_Y |
327                          XCB_CONFIG_WINDOW_WIDTH |
328                          XCB_CONFIG_WINDOW_HEIGHT,
329                          &(r.x));
330     /* ignore events which are generated because we configured a window */
331     add_ignore_event(cookie.sequence, 0);
332 }
333
334 /*
335  * Returns true if the given reply contains the given atom.
336  *
337  */
338 bool xcb_reply_contains_atom(xcb_get_property_reply_t *prop, xcb_atom_t atom) {
339     if (prop == NULL || xcb_get_property_value_length(prop) == 0)
340         return false;
341
342     xcb_atom_t *atoms;
343     if ((atoms = xcb_get_property_value(prop)) == NULL)
344         return false;
345
346     for (int i = 0; i < xcb_get_property_value_length(prop) / (prop->format / 8); i++)
347         if (atoms[i] == atom)
348             return true;
349
350     return false;
351
352 }