]> git.sur5r.net Git - i3/i3/blob - src/xcb.c
Merge branch 'next' (3.β is stable now)
[i3/i3] / src / xcb.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 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 #include <stdint.h>
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17
18 #include <xcb/xcb.h>
19 #include <xcb/xcb_keysyms.h>
20
21 #include "util.h"
22 #include "xcb.h"
23
24 TAILQ_HEAD(cached_fonts_head, Font) cached_fonts = TAILQ_HEAD_INITIALIZER(cached_fonts);
25 unsigned int xcb_numlock_mask;
26
27 /*
28  * Loads a font for usage, getting its height. This function is used very often, so it
29  * maintains a cache.
30  *
31  */
32 i3Font *load_font(xcb_connection_t *conn, const char *pattern) {
33         /* Check if we got the font cached */
34         i3Font *font;
35         TAILQ_FOREACH(font, &cached_fonts, fonts)
36                 if (strcmp(font->pattern, pattern) == 0)
37                         return font;
38
39         i3Font *new = smalloc(sizeof(i3Font));
40         xcb_void_cookie_t font_cookie;
41         xcb_list_fonts_with_info_cookie_t info_cookie;
42
43         /* Send all our requests first */
44         new->id = xcb_generate_id(conn);
45         font_cookie = xcb_open_font_checked(conn, new->id, strlen(pattern), pattern);
46         info_cookie = xcb_list_fonts_with_info(conn, 1, strlen(pattern), pattern);
47
48         check_error(conn, font_cookie, "Could not open font");
49
50         /* Get information (height/name) for this font */
51         xcb_list_fonts_with_info_reply_t *reply = xcb_list_fonts_with_info_reply(conn, info_cookie, NULL);
52         exit_if_null(reply, "Could not load font \"%s\"\n", pattern);
53
54         if (asprintf(&(new->name), "%.*s", xcb_list_fonts_with_info_name_length(reply),
55                                            xcb_list_fonts_with_info_name(reply)) == -1)
56                 die("asprintf() failed\n");
57         new->pattern = sstrdup(pattern);
58         new->height = reply->font_ascent + reply->font_descent;
59
60         /* Insert into cache */
61         TAILQ_INSERT_TAIL(&cached_fonts, new, fonts);
62
63         return new;
64 }
65
66 /*
67  * Returns the colorpixel to use for the given hex color (think of HTML).
68  *
69  * The hex_color has to start with #, for example #FF00FF.
70  *
71  * NOTE that get_colorpixel() does _NOT_ check the given color code for validity.
72  * This has to be done by the caller.
73  *
74  */
75 uint32_t get_colorpixel(xcb_connection_t *conn, char *hex) {
76         char strgroups[3][3] = {{hex[1], hex[2], '\0'},
77                                 {hex[3], hex[4], '\0'},
78                                 {hex[5], hex[6], '\0'}};
79         uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
80                              (strtol(strgroups[1], NULL, 16)),
81                              (strtol(strgroups[2], NULL, 16))};
82
83         return (rgb16[0] << 16) + (rgb16[1] << 8) + rgb16[2];
84 }
85
86 /*
87  * Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking
88  * for errors.
89  *
90  */
91 xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t window_class, int cursor,
92                            uint32_t mask, uint32_t *values) {
93         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
94         xcb_window_t result = xcb_generate_id(conn);
95         xcb_cursor_t cursor_id = xcb_generate_id(conn);
96
97         /* If the window class is XCB_WINDOW_CLASS_INPUT_ONLY, depth has to be 0 */
98         uint16_t depth = (window_class == XCB_WINDOW_CLASS_INPUT_ONLY ? 0 : XCB_COPY_FROM_PARENT);
99
100         /* Use the default cursor (left pointer) */
101         if (cursor > -1) {
102                 i3Font *cursor_font = load_font(conn, "cursor");
103                 xcb_create_glyph_cursor(conn, cursor_id, cursor_font->id, cursor_font->id,
104                                 XCB_CURSOR_LEFT_PTR, XCB_CURSOR_LEFT_PTR + 1,
105                                 0, 0, 0, 65535, 65535, 65535);
106         }
107
108         xcb_create_window(conn,
109                           depth,
110                           result, /* the window id */
111                           root, /* parent == root */
112                           dims.x, dims.y, dims.width, dims.height, /* dimensions */
113                           0, /* border = 0, we draw our own */
114                           window_class,
115                           XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
116                           mask,
117                           values);
118
119         if (cursor > -1)
120                 xcb_change_window_attributes(conn, result, XCB_CW_CURSOR, &cursor_id);
121
122         /* Map the window (= make it visible) */
123         xcb_map_window(conn, result);
124
125         return result;
126 }
127
128 /*
129  * Changes a single value in the graphic context (so one doesn’t have to define an array of values)
130  *
131  */
132 void xcb_change_gc_single(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t mask, uint32_t value) {
133         xcb_change_gc(conn, gc, mask, &value);
134 }
135
136 /*
137  * Draws a line from x,y to to_x,to_y using the given color
138  *
139  */
140 void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
141                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y) {
142         xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
143         xcb_point_t points[] = {{x, y}, {to_x, to_y}};
144         xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2, points);
145 }
146
147 /*
148  * Draws a rectangle from x,y with width,height using the given color
149  *
150  */
151 void xcb_draw_rect(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
152                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t width, uint32_t height) {
153         xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
154         xcb_rectangle_t rect = {x, y, width, height};
155         xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
156 }
157
158 /*
159  * Generates a configure_notify event and sends it to the given window
160  * Applications need this to think they’ve configured themselves correctly.
161  * The truth is, however, that we will manage them.
162  *
163  */
164 void fake_configure_notify(xcb_connection_t *conn, Rect r, xcb_window_t window) {
165         xcb_configure_notify_event_t generated_event;
166
167         generated_event.event = window;
168         generated_event.window = window;
169         generated_event.response_type = XCB_CONFIGURE_NOTIFY;
170
171         generated_event.x = r.x;
172         generated_event.y = r.y;
173         generated_event.width = r.width;
174         generated_event.height = r.height;
175
176         generated_event.border_width = 0;
177         generated_event.above_sibling = XCB_NONE;
178         generated_event.override_redirect = false;
179
180         xcb_send_event(conn, false, window, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char*)&generated_event);
181         xcb_flush(conn);
182
183         LOG("Told the client it is at %dx%d with %dx%d\n", r.x, r.y, r.width, r.height);
184 }
185
186 /*
187  * Generates a configure_notify_event with absolute coordinates (relative to the X root
188  * window, not to the client’s frame) for the given client.
189  *
190  */
191 void fake_absolute_configure_notify(xcb_connection_t *conn, Client *client) {
192         Rect absolute;
193
194         absolute.x = client->rect.x + client->child_rect.x;
195         absolute.y = client->rect.y + client->child_rect.y;
196         absolute.width = client->rect.width - (2 * client->child_rect.x);
197         absolute.height = client->rect.height - client->child_rect.y - 1;
198
199         fake_configure_notify(conn, absolute, client->child);
200 }
201
202 /*
203  * Finds out which modifier mask is the one for numlock, as the user may change this.
204  *
205  */
206 void xcb_get_numlock_mask(xcb_connection_t *conn) {
207         xcb_key_symbols_t *keysyms;
208         xcb_get_modifier_mapping_cookie_t cookie;
209         xcb_get_modifier_mapping_reply_t *reply;
210         xcb_keycode_t *modmap;
211         int mask, i;
212         const int masks[8] = { XCB_MOD_MASK_SHIFT,
213                                XCB_MOD_MASK_LOCK,
214                                XCB_MOD_MASK_CONTROL,
215                                XCB_MOD_MASK_1,
216                                XCB_MOD_MASK_2,
217                                XCB_MOD_MASK_3,
218                                XCB_MOD_MASK_4,
219                                XCB_MOD_MASK_5 };
220
221         /* Request the modifier map */
222         cookie = xcb_get_modifier_mapping_unchecked(conn);
223
224         /* Get the keysymbols */
225         keysyms = xcb_key_symbols_alloc(conn);
226
227         if ((reply = xcb_get_modifier_mapping_reply(conn, cookie, NULL)) == NULL) {
228                 xcb_key_symbols_free(keysyms);
229                 return;
230         }
231
232         modmap = xcb_get_modifier_mapping_keycodes(reply);
233
234         /* Get the keycode for numlock */
235 #ifdef OLD_XCB_KEYSYMS_API
236         xcb_keycode_t numlock = xcb_key_symbols_get_keycode(keysyms, XCB_NUM_LOCK);
237 #else
238         /* For now, we only use the first keysymbol. */
239         xcb_keycode_t *numlock_syms = xcb_key_symbols_get_keycode(keysyms, XCB_NUM_LOCK);
240         xcb_keycode_t numlock = *numlock_syms;
241         free(numlock_syms);
242 #endif
243
244         /* Check all modifiers (Mod1-Mod5, Shift, Control, Lock) */
245         for (mask = 0; mask < 8; mask++)
246                 for (i = 0; i < reply->keycodes_per_modifier; i++)
247                         if (modmap[(mask * reply->keycodes_per_modifier) + i] == numlock)
248                                 xcb_numlock_mask = masks[mask];
249
250         xcb_key_symbols_free(keysyms);
251         free(reply);
252 }
253
254 /*
255  * Raises the given window (typically client->frame) above all other windows
256  *
257  */
258 void xcb_raise_window(xcb_connection_t *conn, xcb_window_t window) {
259         uint32_t values[] = { XCB_STACK_MODE_ABOVE };
260         xcb_configure_window(conn, window, XCB_CONFIG_WINDOW_STACK_MODE, values);
261 }