]> git.sur5r.net Git - i3/i3/blob - src/mainx.c
b8a8da19fbda6ebd6165e4aca366fe93dd3fef85
[i3/i3] / src / mainx.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  */
11 #include <stdio.h>
12 #include <assert.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <sys/types.h>
16 #include <unistd.h>
17 #include <stdbool.h>
18 #include <assert.h>
19 #include <limits.h>
20
21 #include <xcb/xcb.h>
22
23 #include <X11/XKBlib.h>
24 #include <X11/extensions/XKB.h>
25
26 #include <xcb/xcb_wm.h>
27 #include <xcb/xcb_aux.h>
28 #include <xcb/xcb_event.h>
29 #include <xcb/xcb_property.h>
30 #include <xcb/xcb_keysyms.h>
31 #include <xcb/xcb_icccm.h>
32 #include <xcb/xinerama.h>
33 #include "data.h"
34
35 #include "queue.h"
36 #include "table.h"
37 #include "font.h"
38 #include "layout.h"
39 #include "debug.h"
40 #include "handlers.h"
41 #include "util.h"
42 #include "xcb.h"
43 #include "xinerama.h"
44
45 #define TERMINAL "/usr/pkg/bin/urxvt"
46
47 Display *xkbdpy;
48
49 TAILQ_HEAD(bindings_head, Binding) bindings = TAILQ_HEAD_INITIALIZER(bindings);
50 xcb_event_handlers_t evenths;
51
52 xcb_window_t root_win;
53 xcb_atom_t atoms[6];
54
55
56 char *pattern = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso8859-1";
57 int num_screens = 0;
58
59 /*
60  *
61  * TODO: what exactly does this, what happens if we leave stuff out?
62  *
63  */
64 void manage_window(xcb_property_handlers_t *prophs, xcb_connection_t *c, xcb_window_t window, window_attributes_t wa)
65 {
66         printf("managing window.\n");
67         xcb_drawable_t d = { window };
68         xcb_get_geometry_cookie_t geomc;
69         xcb_get_geometry_reply_t *geom;
70         xcb_get_window_attributes_reply_t *attr = 0;
71         if(wa.tag == TAG_COOKIE)
72         {
73                 attr = xcb_get_window_attributes_reply(c, wa.u.cookie, 0);
74                 if(!attr)
75                         return;
76                 if(attr->map_state != XCB_MAP_STATE_VIEWABLE)
77                 {
78                         printf("Window 0x%08x is not mapped. Ignoring.\n", window);
79                         free(attr);
80                         return;
81                 }
82                 wa.tag = TAG_VALUE;
83                 wa.u.override_redirect = attr->override_redirect;
84         }
85         if(!wa.u.override_redirect && table_get(byChild, window))
86         {
87                 printf("Window 0x%08x already managed. Ignoring.\n", window);
88                 free(attr);
89                 return;
90         }
91         if(wa.u.override_redirect)
92         {
93                 printf("Window 0x%08x has override-redirect set. Ignoring.\n", window);
94                 free(attr);
95                 return;
96         }
97         geomc = xcb_get_geometry(c, d);
98         if(!attr)
99         {
100                 wa.tag = TAG_COOKIE;
101                 wa.u.cookie = xcb_get_window_attributes(c, window);
102                 attr = xcb_get_window_attributes_reply(c, wa.u.cookie, 0);
103         }
104         geom = xcb_get_geometry_reply(c, geomc, 0);
105         if(attr && geom)
106         {
107                 reparent_window(c, window, attr->visual, geom->root, geom->depth, geom->x, geom->y, geom->width, geom->height);
108                 xcb_property_changed(prophs, XCB_PROPERTY_NEW_VALUE, window, WM_NAME);
109         }
110         free(attr);
111         free(geom);
112 }
113
114 /*
115  * reparent_window() gets called when a new window was opened and becomes a child of the root
116  * window, or it gets called by us when we manage the already existing windows at startup.
117  *
118  * Essentially, this is the point, where we take over control.
119  *
120  */
121 void reparent_window(xcb_connection_t *conn, xcb_window_t child,
122                 xcb_visualid_t visual, xcb_window_t root, uint8_t depth,
123                 int16_t x, int16_t y, uint16_t width, uint16_t height) {
124
125         Client *new = table_get(byChild, child);
126         if (new == NULL) {
127                 /* TODO: When does this happen for existing clients? Is that a bug? */
128                 printf("oh, it's new\n");
129                 new = calloc(sizeof(Client), 1);
130                 /* We initialize x and y with the invalid coordinates -1 so that they will
131                    get updated at the next render_layout() at any case */
132                 new->rect.x = -1;
133                 new->rect.y = -1;
134         }
135         uint32_t mask = 0;
136         uint32_t values[3];
137
138         /* Insert into the currently active container */
139         CIRCLEQ_INSERT_TAIL(&(CUR_CELL->clients), new, clients);
140
141         /* Update the data structures */
142         CUR_CELL->currently_focused = new;
143         new->container = CUR_CELL;
144
145         new->frame = xcb_generate_id(conn);
146         new->child = child;
147         new->rect.width = width;
148         new->rect.height = height;
149
150         /* Don’t generate events for our new window, it should *not* be managed */
151         mask |= XCB_CW_OVERRIDE_REDIRECT;
152         values[0] = 1;
153
154         /* We want to know when… */
155         mask |= XCB_CW_EVENT_MASK;
156         values[1] =     XCB_EVENT_MASK_BUTTON_PRESS |   /* …mouse is pressed/released */
157                         XCB_EVENT_MASK_BUTTON_RELEASE |
158                         XCB_EVENT_MASK_EXPOSURE |       /* …our window needs to be redrawn */
159                         XCB_EVENT_MASK_ENTER_WINDOW;    /* …user moves cursor inside our window */
160
161         printf("Reparenting 0x%08x under 0x%08x.\n", child, new->frame);
162
163         i3Font *font = load_font(conn, pattern);
164         width = min(width, c_ws->rect.x + c_ws->rect.width);
165         height = min(height, c_ws->rect.y + c_ws->rect.height);
166
167         Rect framerect = {x, y,
168                           width + 2 + 2,                  /* 2 px border at each side */
169                           height + 2 + 2 + font->height}; /* 2 px border plus font’s height */
170
171         /* Yo dawg, I heard you like windows, so I create a window around your window… */
172         new->frame = create_window(conn, framerect, XCB_WINDOW_CLASS_INPUT_OUTPUT, mask, values);
173
174         /* TODO: document */
175         xcb_change_save_set(conn, XCB_SET_MODE_INSERT, child);
176
177         /* Generate a graphics context for the titlebar */
178         new->titlegc = xcb_generate_id(conn);
179         xcb_create_gc(conn, new->titlegc, new->frame, 0, 0);
180
181         /* Put our data structure (Client) into the table */
182         table_put(byParent, new->frame, new);
183         table_put(byChild, child, new);
184
185         /* Moves the original window into the new frame we've created for it */
186         new->awaiting_useless_unmap = true;
187         xcb_void_cookie_t cookie = xcb_reparent_window_checked(conn, child, new->frame, 0, font->height);
188         check_error(conn, cookie, "Could not reparent window");
189
190         /* We are interested in property changes */
191         mask = XCB_CW_EVENT_MASK;
192         values[0] =     XCB_EVENT_MASK_PROPERTY_CHANGE |
193                         XCB_EVENT_MASK_STRUCTURE_NOTIFY |
194                         XCB_EVENT_MASK_ENTER_WINDOW;
195         cookie = xcb_change_window_attributes_checked(conn, child, mask, values);
196         check_error(conn, cookie, "Could not change window attributes");
197
198         /* We need to grab the mouse buttons for click to focus */
199         xcb_grab_button(conn, false, child, XCB_EVENT_MASK_BUTTON_PRESS,
200                         XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
201                         1 /* left mouse button */,
202                         XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
203
204         /* Focus the new window */
205         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, new->child, XCB_CURRENT_TIME);
206
207         render_layout(conn);
208 }
209
210 void manage_existing_windows(xcb_connection_t *c, xcb_property_handlers_t *prophs, xcb_window_t root) {
211         xcb_query_tree_cookie_t wintree;
212         xcb_query_tree_reply_t *rep;
213         int i, len;
214         xcb_window_t *children;
215         xcb_get_window_attributes_cookie_t *cookies;
216
217         wintree = xcb_query_tree(c, root);
218         rep = xcb_query_tree_reply(c, wintree, 0);
219         if(!rep)
220                 return;
221         len = xcb_query_tree_children_length(rep);
222         cookies = malloc(len * sizeof(*cookies));
223         if(!cookies)
224         {
225                 free(rep);
226                 return;
227         }
228         children = xcb_query_tree_children(rep);
229         for(i = 0; i < len; ++i)
230                 cookies[i] = xcb_get_window_attributes(c, children[i]);
231         for(i = 0; i < len; ++i)
232         {
233                 window_attributes_t wa = { TAG_COOKIE, { cookies[i] } };
234                 manage_window(prophs, c, children[i], wa);
235         }
236         free(rep);
237 }
238
239 int main(int argc, char *argv[], char *env[]) {
240         int i, screens;
241         xcb_connection_t *c;
242         xcb_property_handlers_t prophs;
243         xcb_window_t root;
244
245         /* Initialize the table data structures for each workspace */
246         init_table();
247
248         memset(&evenths, 0, sizeof(xcb_event_handlers_t));
249         memset(&prophs, 0, sizeof(xcb_property_handlers_t));
250
251         byChild = alloc_table();
252         byParent = alloc_table();
253
254         c = xcb_connect(NULL, &screens);
255
256         /* TODO: this has to be more beautiful somewhen */
257         int major, minor, error;
258
259         major = XkbMajorVersion;
260         minor = XkbMinorVersion;
261
262         int evBase, errBase;
263
264         if ((xkbdpy = XkbOpenDisplay(getenv("DISPLAY"), &evBase, &errBase, &major, &minor, &error)) == NULL) {
265                 fprintf(stderr, "XkbOpenDisplay() failed\n");
266                 return 1;
267         }
268
269         int i1;
270         if (!XkbQueryExtension(xkbdpy,&i1,&evBase,&errBase,&major,&minor)) {
271                 fprintf(stderr, "XKB not supported by X-server\n");
272                 return 1;
273         }
274         /* end of ugliness */
275
276         xcb_event_handlers_init(c, &evenths);
277         for(i = 2; i < 128; ++i)
278                 xcb_event_set_handler(&evenths, i, handle_event, 0);
279
280         for(i = 0; i < 256; ++i)
281                 xcb_event_set_error_handler(&evenths, i, (xcb_generic_error_handler_t)handle_event, 0);
282
283         /* Expose = an Application should redraw itself. That is, we have to redraw our
284          * contents (= top/bottom bar, titlebars for each window) */
285         xcb_event_set_expose_handler(&evenths, handle_expose_event, 0);
286
287         /* Key presses/releases are pretty obvious, I think */
288         xcb_event_set_key_press_handler(&evenths, handle_key_press, 0);
289         xcb_event_set_key_release_handler(&evenths, handle_key_release, 0);
290
291         /* Enter window = user moved his mouse over the window */
292         xcb_event_set_enter_notify_handler(&evenths, handle_enter_notify, 0);
293
294         /* Button press = user pushed a mouse button over one of our windows */
295         xcb_event_set_button_press_handler(&evenths, handle_button_press, 0);
296
297         xcb_event_set_unmap_notify_handler(&evenths, handle_unmap_notify_event, 0);
298
299         xcb_property_handlers_init(&prophs, &evenths);
300         xcb_event_set_map_notify_handler(&evenths, handle_map_notify_event, &prophs);
301
302         xcb_event_set_client_message_handler(&evenths, handle_client_message, 0);
303
304         xcb_watch_wm_name(&prophs, 128, handle_windowname_change, 0);
305
306         root = xcb_aux_get_screen(c, screens)->root;
307         root_win = root;
308
309         uint32_t mask = XCB_CW_EVENT_MASK;
310         uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_ENTER_WINDOW};
311         xcb_change_window_attributes(c, root, mask, values);
312
313         /* Setup NetWM atoms */
314         /* TODO: needs cleanup, needs more xcb (asynchronous), needs more error checking */
315 #define GET_ATOM(name) { \
316         xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(c, xcb_intern_atom(c, 0, strlen(#name), #name), NULL); \
317         if (!reply) { \
318                 printf("Could not get atom " #name "\n"); \
319                 exit(-1); \
320         } \
321         atoms[name] = reply->atom; \
322         free(reply); \
323 }
324
325         GET_ATOM(_NET_SUPPORTED);
326         GET_ATOM(_NET_WM_STATE_FULLSCREEN);
327         GET_ATOM(_NET_SUPPORTING_WM_CHECK);
328         GET_ATOM(_NET_WM_NAME);
329         GET_ATOM(UTF8_STRING);
330         GET_ATOM(_NET_WM_STATE);
331
332         check_error(c, xcb_change_property_checked(c, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTED], ATOM, 32, 5, atoms), "Could not set _NET_SUPPORTED");
333
334         xcb_change_property(c, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTING_WM_CHECK], WINDOW, 32, 1, &root);
335
336         xcb_change_property(c, XCB_PROP_MODE_REPLACE, root, atoms[_NET_WM_NAME] , atoms[UTF8_STRING], 8, strlen("i3"), "i3");
337
338         #define BIND(key, modifier, cmd) { \
339                 Binding *new = malloc(sizeof(Binding)); \
340                 new->keycode = key; \
341                 new->mods = modifier; \
342                 new->command = cmd; \
343                 TAILQ_INSERT_TAIL(&bindings, new, bindings); \
344         }
345
346         /* 38 = 'a' */
347         BIND(38, BIND_MODE_SWITCH, "foo");
348
349         BIND(30, 0, "exec /usr/pkg/bin/urxvt");
350
351         BIND(41, BIND_MOD_1, "f");
352
353         BIND(44, BIND_MOD_1, "h");
354         BIND(45, BIND_MOD_1, "j");
355         BIND(46, BIND_MOD_1, "k");
356         BIND(47, BIND_MOD_1, "l");
357
358         BIND(44, BIND_MOD_1 | BIND_CONTROL, "sh");
359         BIND(45, BIND_MOD_1 | BIND_CONTROL, "sj");
360         BIND(46, BIND_MOD_1 | BIND_CONTROL, "sk");
361         BIND(47, BIND_MOD_1 | BIND_CONTROL, "sl");
362
363         BIND(44, BIND_MOD_1 | BIND_SHIFT, "mh");
364         BIND(45, BIND_MOD_1 | BIND_SHIFT, "mj");
365         BIND(46, BIND_MOD_1 | BIND_SHIFT, "mk");
366         BIND(47, BIND_MOD_1 | BIND_SHIFT, "ml");
367
368         BIND(10, BIND_MOD_1 , "1");
369         BIND(11, BIND_MOD_1 , "2");
370         BIND(12, BIND_MOD_1 , "3");
371         BIND(13, BIND_MOD_1 , "4");
372         BIND(14, BIND_MOD_1 , "5");
373         BIND(15, BIND_MOD_1 , "6");
374         BIND(16, BIND_MOD_1 , "7");
375         BIND(17, BIND_MOD_1 , "8");
376         BIND(18, BIND_MOD_1 , "9");
377         BIND(19, BIND_MOD_1 , "0");
378
379         Binding *bind;
380         TAILQ_FOREACH(bind, &bindings, bindings) {
381                 printf("Grabbing %d\n", bind->keycode);
382                 if (bind->mods & BIND_MODE_SWITCH)
383                         xcb_grab_key(c, 0, root, 0, bind->keycode, XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_SYNC);
384                 else xcb_grab_key(c, 0, root, bind->mods, bind->keycode, XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC);
385         }
386
387         /* check for Xinerama */
388         printf("Checking for Xinerama...\n");
389         initialize_xinerama(c);
390
391         start_application(TERMINAL);
392
393         xcb_flush(c);
394
395         manage_existing_windows(c, &prophs, root);
396
397         /* Get pointer position to see on which screen we’re starting */
398         xcb_query_pointer_cookie_t pointer_cookie = xcb_query_pointer(c, root);
399         xcb_query_pointer_reply_t *reply = xcb_query_pointer_reply(c, pointer_cookie, NULL);
400         if (reply == NULL) {
401                 printf("Could not get pointer position\n");
402                 return 1;
403         }
404
405         i3Screen *screen = get_screen_containing(reply->root_x, reply->root_y);
406         if (screen == NULL) {
407                 printf("ERROR: No such screen\n");
408                 return 0;
409         }
410         if (screen->current_workspace != 0) {
411                 printf("Ok, I need to go to the other workspace\n");
412                 c_ws = &workspaces[screen->current_workspace];
413         }
414
415         xcb_event_wait_for_event_loop(&evenths);
416
417         /* not reached */
418         return 0;
419 }