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