]> git.sur5r.net Git - i3/i3/blob - src/xcb.c
Use c99
[i3/i3] / src / xcb.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <stdint.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14
15 #include <xcb/xcb.h>
16 /* All the helper functions needed for efficiently using XCB */
17 #include "util.h"
18
19 /*
20  * Returns the colorpixel to use for the given hex color (think of HTML).
21  *
22  * The hex_color has to start with #, for example #FF00FF.
23  *
24  * NOTE that get_colorpixel() does _NOT_ check the given color code for validity.
25  * This has to be done by the caller.
26  *
27  */
28 uint32_t get_colorpixel(xcb_connection_t *conn, xcb_window_t window, char *hex) {
29         /* TODO: We need to store the colorpixels per child to remove these unnecessary requests every time */
30         #define RGB_8_TO_16(i) (65535 * ((i) & 0xFF) / 255)
31         char strgroups[3][3] = {{hex[1], hex[2], '\0'},
32                                 {hex[3], hex[4], '\0'},
33                                 {hex[5], hex[6], '\0'}};
34         int rgb16[3] = {RGB_8_TO_16(strtol(strgroups[0], NULL, 16)),
35                         RGB_8_TO_16(strtol(strgroups[1], NULL, 16)),
36                         RGB_8_TO_16(strtol(strgroups[2], NULL, 16))};
37
38         xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
39
40         xcb_colormap_t colormap_id = xcb_generate_id(conn);
41         xcb_void_cookie_t cookie = xcb_create_colormap_checked(conn, XCB_COLORMAP_ALLOC_NONE,
42                                    colormap_id, window, root_screen->root_visual);
43         check_error(conn, cookie, "Could not create colormap");
44         xcb_alloc_color_reply_t *reply = xcb_alloc_color_reply(conn,
45                         xcb_alloc_color(conn, colormap_id, rgb16[0], rgb16[1], rgb16[2]), NULL);
46
47         if (!reply) {
48                 printf("Could not allocate color\n");
49                 exit(1);
50         }
51
52         uint32_t pixel = reply->pixel;
53         free(reply);
54         xcb_free_colormap(conn, colormap_id);
55         return pixel;
56 }