]> git.sur5r.net Git - i3/i3/blob - src/xcb.c
bcef608617dd4afc36ad9feb52e7c44131f5c655
[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
22 TAILQ_HEAD(cached_fonts_head, Font) cached_fonts = TAILQ_HEAD_INITIALIZER(cached_fonts);
23
24 /*
25  * Loads a font for usage, getting its height. This function is used very often, so it
26  * maintains a cache.
27  *
28  */
29 i3Font *load_font(xcb_connection_t *connection, const char *pattern) {
30         /* Check if we got the font cached */
31         i3Font *font;
32         TAILQ_FOREACH(font, &cached_fonts, fonts)
33                 if (strcmp(font->pattern, pattern) == 0)
34                         return font;
35
36         i3Font *new = smalloc(sizeof(i3Font));
37         xcb_void_cookie_t font_cookie;
38         xcb_list_fonts_with_info_cookie_t info_cookie;
39
40         /* Send all our requests first */
41         new->id = xcb_generate_id(connection);
42         font_cookie = xcb_open_font_checked(connection, new->id, strlen(pattern), pattern);
43         info_cookie = xcb_list_fonts_with_info(connection, 1, strlen(pattern), pattern);
44
45         check_error(connection, font_cookie, "Could not open font");
46
47         /* Get information (height/name) for this font */
48         xcb_list_fonts_with_info_reply_t *reply = xcb_list_fonts_with_info_reply(connection, info_cookie, NULL);
49         exit_if_null(reply, "Could not load font \"%s\"\n", pattern);
50
51         if (asprintf(&(new->name), "%.*s", xcb_list_fonts_with_info_name_length(reply),
52                                            xcb_list_fonts_with_info_name(reply)) == -1)
53                 die("asprintf() failed\n");
54         new->pattern = sstrdup(pattern);
55         new->height = reply->font_ascent + reply->font_descent;
56
57         /* Insert into cache */
58         TAILQ_INSERT_TAIL(&cached_fonts, new, fonts);
59
60         return new;
61 }
62
63 /*
64  * Returns the colorpixel to use for the given hex color (think of HTML).
65  *
66  * The hex_color has to start with #, for example #FF00FF.
67  *
68  * The client argument is optional. If it is given, the colorpixel will be cached.
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, Client *client, xcb_window_t window, char *hex) {
75         /* Lookup this colorpixel in the cache if a client was specified */
76         if (client != NULL) {
77                 struct Colorpixel *pixel;
78                 SLIST_FOREACH(pixel, &(client->colorpixels), colorpixels)
79                         if (strcmp(pixel->hex, hex) == 0)
80                                 return pixel->pixel;
81         }
82         #define RGB_8_TO_16(i) (65535 * ((i) & 0xFF) / 255)
83         char strgroups[3][3] = {{hex[1], hex[2], '\0'},
84                                 {hex[3], hex[4], '\0'},
85                                 {hex[5], hex[6], '\0'}};
86         int rgb16[3] = {RGB_8_TO_16(strtol(strgroups[0], NULL, 16)),
87                         RGB_8_TO_16(strtol(strgroups[1], NULL, 16)),
88                         RGB_8_TO_16(strtol(strgroups[2], NULL, 16))};
89
90         xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
91
92         xcb_colormap_t colormap_id = xcb_generate_id(conn);
93         xcb_void_cookie_t cookie = xcb_create_colormap_checked(conn, XCB_COLORMAP_ALLOC_NONE,
94                                    colormap_id, window, root_screen->root_visual);
95         check_error(conn, cookie, "Could not create colormap");
96         xcb_alloc_color_reply_t *reply = xcb_alloc_color_reply(conn,
97                         xcb_alloc_color(conn, colormap_id, rgb16[0], rgb16[1], rgb16[2]), NULL);
98
99         if (!reply) {
100                 printf("Could not allocate color\n");
101                 exit(1);
102         }
103
104         uint32_t pixel = reply->pixel;
105         free(reply);
106         xcb_free_colormap(conn, colormap_id);
107
108         /* Store the result in the cache if a client was specified */
109         if (client != NULL) {
110                 struct Colorpixel *cache_pixel = scalloc(sizeof(struct Colorpixel));
111                 cache_pixel->hex = sstrdup(hex);
112                 cache_pixel->pixel = pixel;
113
114                 SLIST_INSERT_HEAD(&(client->colorpixels), cache_pixel, colorpixels);
115         }
116
117         return pixel;
118 }
119
120 /*
121  * Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking
122  * for errors.
123  *
124  */
125 xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t window_class, uint32_t mask, uint32_t *values) {
126         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
127         xcb_window_t result = xcb_generate_id(conn);
128         xcb_void_cookie_t cookie;
129
130         /* If the window class is XCB_WINDOW_CLASS_INPUT_ONLY, depth has to be 0 */
131         uint16_t depth = (window_class == XCB_WINDOW_CLASS_INPUT_ONLY ? 0 : XCB_COPY_FROM_PARENT);
132
133         cookie = xcb_create_window_checked(conn,
134                                            depth,
135                                            result, /* the window id */
136                                            root, /* parent == root */
137                                            dims.x, dims.y, dims.width, dims.height, /* dimensions */
138                                            0, /* border = 0, we draw our own */
139                                            window_class,
140                                            XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
141                                            mask,
142                                            values);
143         check_error(conn, cookie, "Could not create window");
144
145         /* Map the window (= make it visible) */
146         xcb_map_window(conn, result);
147
148         return result;
149 }
150
151 /*
152  * Changes a single value in the graphic context (so one doesn’t have to define an array of values)
153  *
154  */
155 void xcb_change_gc_single(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t mask, uint32_t value) {
156         xcb_change_gc(conn, gc, mask, &value);
157 }
158
159 /*
160  * Draws a line from x,y to to_x,to_y using the given color
161  *
162  */
163 void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
164                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y) {
165         xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
166         xcb_point_t points[] = {{x, y}, {to_x, to_y}};
167         xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2, points);
168 }
169
170 /*
171  * Draws a rectangle from x,y with width,height using the given color
172  *
173  */
174 void xcb_draw_rect(xcb_connection_t *connection, xcb_drawable_t drawable, xcb_gcontext_t gc,
175                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t width, uint32_t height) {
176         xcb_change_gc_single(connection, gc, XCB_GC_FOREGROUND, colorpixel);
177         xcb_rectangle_t rect = {x, y, width, height};
178         xcb_poly_fill_rectangle(connection, drawable, gc, 1, &rect);
179 }