]> git.sur5r.net Git - i3/i3/blob - src/xcb.c
Merge branch 'master' into next
[i3/i3] / src / xcb.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * xcb.c: Helper functions for easier usage of XCB
8  *
9  */
10 #include "all.h"
11
12 unsigned int xcb_numlock_mask;
13
14 /*
15  * Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking
16  * for errors.
17  *
18  */
19 xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t window_class,
20         enum xcursor_cursor_t cursor, bool map, uint32_t mask, uint32_t *values) {
21     xcb_window_t result = xcb_generate_id(conn);
22
23     /* If the window class is XCB_WINDOW_CLASS_INPUT_ONLY, depth has to be 0 */
24     uint16_t depth = (window_class == XCB_WINDOW_CLASS_INPUT_ONLY ? 0 : XCB_COPY_FROM_PARENT);
25
26     xcb_create_window(conn,
27             depth,
28             result, /* the window id */
29             root, /* parent == root */
30             dims.x, dims.y, dims.width, dims.height, /* dimensions */
31             0, /* border = 0, we draw our own */
32             window_class,
33             XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
34             mask,
35             values);
36
37     /* Set the cursor */
38     if (xcursor_supported) {
39         mask = XCB_CW_CURSOR;
40         values[0] = xcursor_get_cursor(cursor);
41         xcb_change_window_attributes(conn, result, mask, values);
42     } else {
43         xcb_cursor_t cursor_id = xcb_generate_id(conn);
44         i3Font cursor_font = load_font("cursor", false);
45         int xcb_cursor = xcursor_get_xcb_cursor(cursor);
46         xcb_create_glyph_cursor(conn, cursor_id, cursor_font.id, cursor_font.id,
47                 xcb_cursor, xcb_cursor + 1, 0, 0, 0, 65535, 65535, 65535);
48         xcb_change_window_attributes(conn, result, XCB_CW_CURSOR, &cursor_id);
49         xcb_free_cursor(conn, cursor_id);
50     }
51
52     /* Map the window (= make it visible) */
53     if (map)
54         xcb_map_window(conn, result);
55
56     return result;
57 }
58
59 /*
60  * Draws a line from x,y to to_x,to_y using the given color
61  *
62  */
63 void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
64                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y) {
65     xcb_change_gc(conn, gc, XCB_GC_FOREGROUND, (uint32_t[]){ colorpixel });
66     xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2,
67                   (xcb_point_t[]) { {x, y}, {to_x, to_y} });
68 }
69
70 /*
71  * Draws a rectangle from x,y with width,height using the given color
72  *
73  */
74 void xcb_draw_rect(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
75                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t width, uint32_t height) {
76     xcb_change_gc(conn, gc, XCB_GC_FOREGROUND, (uint32_t[]){ colorpixel });
77     xcb_rectangle_t rect = {x, y, width, height};
78     xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
79 }
80
81 /*
82  * Generates a configure_notify_event with absolute coordinates (relative to the X root
83  * window, not to the client’s frame) for the given client.
84  *
85  */
86 void fake_absolute_configure_notify(Con *con) {
87     xcb_rectangle_t absolute;
88     if (con->window == NULL)
89         return;
90
91     absolute.x = con->rect.x + con->window_rect.x;
92     absolute.y = con->rect.y + con->window_rect.y;
93     absolute.width = con->window_rect.width;
94     absolute.height = con->window_rect.height;
95
96     DLOG("fake rect = (%d, %d, %d, %d)\n", absolute.x, absolute.y, absolute.width, absolute.height);
97
98     fake_configure_notify(conn, absolute, con->window->id, con->border_width);
99 }
100
101 /*
102  * Sends the WM_TAKE_FOCUS ClientMessage to the given window
103  *
104  */
105 void send_take_focus(xcb_window_t window) {
106     /* Every X11 event is 32 bytes long. Therefore, XCB will copy 32 bytes.
107      * In order to properly initialize these bytes, we allocate 32 bytes even
108      * though we only need less for an xcb_configure_notify_event_t */
109     void *event = scalloc(32);
110     xcb_client_message_event_t *ev = event;
111
112     ev->response_type = XCB_CLIENT_MESSAGE;
113     ev->window = window;
114     ev->type = A_WM_PROTOCOLS;
115     ev->format = 32;
116     ev->data.data32[0] = A_WM_TAKE_FOCUS;
117     ev->data.data32[1] = XCB_CURRENT_TIME;
118
119     DLOG("Sending WM_TAKE_FOCUS to the client\n");
120     xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)ev);
121     free(event);
122 }
123
124 /*
125  * Raises the given window (typically client->frame) above all other windows
126  *
127  */
128 void xcb_raise_window(xcb_connection_t *conn, xcb_window_t window) {
129     uint32_t values[] = { XCB_STACK_MODE_ABOVE };
130     xcb_configure_window(conn, window, XCB_CONFIG_WINDOW_STACK_MODE, values);
131 }
132
133 /*
134  * Configures the given window to have the size/position specified by given rect
135  *
136  */
137 void xcb_set_window_rect(xcb_connection_t *conn, xcb_window_t window, Rect r) {
138     xcb_void_cookie_t cookie;
139     cookie = xcb_configure_window(conn, window,
140                          XCB_CONFIG_WINDOW_X |
141                          XCB_CONFIG_WINDOW_Y |
142                          XCB_CONFIG_WINDOW_WIDTH |
143                          XCB_CONFIG_WINDOW_HEIGHT,
144                          &(r.x));
145     /* ignore events which are generated because we configured a window */
146     add_ignore_event(cookie.sequence, -1);
147 }
148
149 /*
150  * Returns true if the given reply contains the given atom.
151  *
152  */
153 bool xcb_reply_contains_atom(xcb_get_property_reply_t *prop, xcb_atom_t atom) {
154     if (prop == NULL || xcb_get_property_value_length(prop) == 0)
155         return false;
156
157     xcb_atom_t *atoms;
158     if ((atoms = xcb_get_property_value(prop)) == NULL)
159         return false;
160
161     for (int i = 0; i < xcb_get_property_value_length(prop) / (prop->format / 8); i++)
162         if (atoms[i] == atom)
163             return true;
164
165     return false;
166
167 }
168
169 /**
170  * Moves the mouse pointer into the middle of rect.
171  *
172  */
173 void xcb_warp_pointer_rect(xcb_connection_t *conn, Rect *rect) {
174     int mid_x = rect->x + (rect->width / 2);
175     int mid_y = rect->y + (rect->height / 2);
176
177     LOG("warp pointer to: %d %d\n", mid_x, mid_y);
178     xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0, mid_x, mid_y);
179 }
180
181 /*
182  * Set the cursor of the root window to the given cursor id.
183  * This function should only be used if xcursor_supported == false.
184  * Otherwise, use xcursor_set_root_cursor().
185  *
186  */
187 void xcb_set_root_cursor(int cursor) {
188     xcb_cursor_t cursor_id = xcb_generate_id(conn);
189     i3Font cursor_font = load_font("cursor", false);
190     int xcb_cursor = xcursor_get_xcb_cursor(cursor);
191     xcb_create_glyph_cursor(conn, cursor_id, cursor_font.id, cursor_font.id,
192             xcb_cursor, xcb_cursor + 1, 0, 0, 0, 65535, 65535, 65535);
193     xcb_change_window_attributes(conn, root, XCB_CW_CURSOR, &cursor_id);
194     xcb_free_cursor(conn, cursor_id);
195     xcb_flush(conn);
196 }