]> git.sur5r.net Git - i3/i3/blob - src/xcb.c
Fake more configure notifies (makes xpdf work better)
[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
20 #include "util.h"
21 #include "xcb.h"
22
23 TAILQ_HEAD(cached_fonts_head, Font) cached_fonts = TAILQ_HEAD_INITIALIZER(cached_fonts);
24 SLIST_HEAD(colorpixel_head, Colorpixel) colorpixels;
25
26 /*
27  * Loads a font for usage, getting its height. This function is used very often, so it
28  * maintains a cache.
29  *
30  */
31 i3Font *load_font(xcb_connection_t *conn, const char *pattern) {
32         /* Check if we got the font cached */
33         i3Font *font;
34         TAILQ_FOREACH(font, &cached_fonts, fonts)
35                 if (strcmp(font->pattern, pattern) == 0)
36                         return font;
37
38         i3Font *new = smalloc(sizeof(i3Font));
39         xcb_void_cookie_t font_cookie;
40         xcb_list_fonts_with_info_cookie_t info_cookie;
41
42         /* Send all our requests first */
43         new->id = xcb_generate_id(conn);
44         font_cookie = xcb_open_font_checked(conn, new->id, strlen(pattern), pattern);
45         info_cookie = xcb_list_fonts_with_info(conn, 1, strlen(pattern), pattern);
46
47         check_error(conn, font_cookie, "Could not open font");
48
49         /* Get information (height/name) for this font */
50         xcb_list_fonts_with_info_reply_t *reply = xcb_list_fonts_with_info_reply(conn, info_cookie, NULL);
51         exit_if_null(reply, "Could not load font \"%s\"\n", pattern);
52
53         if (asprintf(&(new->name), "%.*s", xcb_list_fonts_with_info_name_length(reply),
54                                            xcb_list_fonts_with_info_name(reply)) == -1)
55                 die("asprintf() failed\n");
56         new->pattern = sstrdup(pattern);
57         new->height = reply->font_ascent + reply->font_descent;
58
59         /* Insert into cache */
60         TAILQ_INSERT_TAIL(&cached_fonts, new, fonts);
61
62         return new;
63 }
64
65 /*
66  * Returns the colorpixel to use for the given hex color (think of HTML).
67  *
68  * The hex_color has to start with #, for example #FF00FF.
69  *
70  * NOTE that get_colorpixel() does _NOT_ check the given color code for validity.
71  * This has to be done by the caller.
72  *
73  */
74 uint32_t get_colorpixel(xcb_connection_t *conn, char *hex) {
75         /* Lookup this colorpixel in the cache */
76         struct Colorpixel *colorpixel;
77         SLIST_FOREACH(colorpixel, &(colorpixels), colorpixels)
78                 if (strcmp(colorpixel->hex, hex) == 0)
79                         return colorpixel->pixel;
80
81         #define RGB_8_TO_16(i) (65535 * ((i) & 0xFF) / 255)
82         char strgroups[3][3] = {{hex[1], hex[2], '\0'},
83                                 {hex[3], hex[4], '\0'},
84                                 {hex[5], hex[6], '\0'}};
85         int rgb16[3] = {RGB_8_TO_16(strtol(strgroups[0], NULL, 16)),
86                         RGB_8_TO_16(strtol(strgroups[1], NULL, 16)),
87                         RGB_8_TO_16(strtol(strgroups[2], NULL, 16))};
88
89         xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
90         xcb_alloc_color_reply_t *reply;
91         
92         reply = xcb_alloc_color_reply(conn, xcb_alloc_color(conn, root_screen->default_colormap,
93                                                             rgb16[0], rgb16[1], rgb16[2]), NULL);
94
95         if (!reply) {
96                 printf("Could not allocate color\n");
97                 exit(1);
98         }
99
100         uint32_t pixel = reply->pixel;
101         free(reply);
102
103         /* Store the result in the cache */
104         struct Colorpixel *cache_pixel = scalloc(sizeof(struct Colorpixel));
105         cache_pixel->hex = sstrdup(hex);
106         cache_pixel->pixel = pixel;
107
108         SLIST_INSERT_HEAD(&(colorpixels), cache_pixel, colorpixels);
109
110         return pixel;
111 }
112
113 /*
114  * Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking
115  * for errors.
116  *
117  */
118 xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t window_class, int cursor,
119                            uint32_t mask, uint32_t *values) {
120         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
121         xcb_window_t result = xcb_generate_id(conn);
122         xcb_cursor_t cursor_id = xcb_generate_id(conn);
123
124         /* If the window class is XCB_WINDOW_CLASS_INPUT_ONLY, depth has to be 0 */
125         uint16_t depth = (window_class == XCB_WINDOW_CLASS_INPUT_ONLY ? 0 : XCB_COPY_FROM_PARENT);
126
127         /* Use the default cursor (left pointer) */
128         if (cursor > -1) {
129                 i3Font *cursor_font = load_font(conn, "cursor");
130                 xcb_create_glyph_cursor(conn, cursor_id, cursor_font->id, cursor_font->id,
131                                 XCB_CURSOR_LEFT_PTR, XCB_CURSOR_LEFT_PTR + 1,
132                                 0, 0, 0, 65535, 65535, 65535);
133         }
134
135         xcb_create_window(conn,
136                           depth,
137                           result, /* the window id */
138                           root, /* parent == root */
139                           dims.x, dims.y, dims.width, dims.height, /* dimensions */
140                           0, /* border = 0, we draw our own */
141                           window_class,
142                           XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
143                           mask,
144                           values);
145
146         if (cursor > -1)
147                 xcb_change_window_attributes(conn, result, XCB_CW_CURSOR, &cursor_id);
148
149         /* Map the window (= make it visible) */
150         xcb_map_window(conn, result);
151
152         return result;
153 }
154
155 /*
156  * Changes a single value in the graphic context (so one doesn’t have to define an array of values)
157  *
158  */
159 void xcb_change_gc_single(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t mask, uint32_t value) {
160         xcb_change_gc(conn, gc, mask, &value);
161 }
162
163 /*
164  * Draws a line from x,y to to_x,to_y using the given color
165  *
166  */
167 void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
168                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y) {
169         xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
170         xcb_point_t points[] = {{x, y}, {to_x, to_y}};
171         xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2, points);
172 }
173
174 /*
175  * Draws a rectangle from x,y with width,height using the given color
176  *
177  */
178 void xcb_draw_rect(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
179                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t width, uint32_t height) {
180         xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
181         xcb_rectangle_t rect = {x, y, width, height};
182         xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
183 }
184
185 /*
186  * Generates a configure_notify event and sends it to the given window
187  * Applications need this to think they’ve configured themselves correctly.
188  * The truth is, however, that we will manage them.
189  *
190  */
191 void fake_configure_notify(xcb_connection_t *conn, Rect r, xcb_window_t window) {
192         xcb_configure_notify_event_t generated_event;
193
194         generated_event.event = window;
195         generated_event.window = window;
196         generated_event.response_type = XCB_CONFIGURE_NOTIFY;
197
198         generated_event.x = r.x;
199         generated_event.y = r.y;
200         generated_event.width = r.width;
201         generated_event.height = r.height;
202
203         generated_event.border_width = 0;
204         generated_event.above_sibling = XCB_NONE;
205         generated_event.override_redirect = false;
206
207         xcb_send_event(conn, false, window, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char*)&generated_event);
208         xcb_flush(conn);
209 }