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