2009-02-14 02:33:31 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
2009-02-15 03:07:29 +01:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-06 17:49:45 +01:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2009-02-07 21:08:30 +01:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <unistd.h>
|
2009-02-08 00:24:02 +01:00
|
|
|
|
#include <stdbool.h>
|
2009-02-08 02:39:56 +01:00
|
|
|
|
#include <assert.h>
|
2009-02-14 08:38:07 +01:00
|
|
|
|
#include <limits.h>
|
2009-03-08 00:49:11 +01:00
|
|
|
|
#include <locale.h>
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-10 05:50:35 +01:00
|
|
|
|
#include <X11/XKBlib.h>
|
|
|
|
|
#include <X11/extensions/XKB.h>
|
|
|
|
|
|
2009-03-04 16:06:39 +01:00
|
|
|
|
#include <xcb/xcb.h>
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include <xcb/xcb_wm.h>
|
|
|
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
|
#include <xcb/xcb_event.h>
|
|
|
|
|
#include <xcb/xcb_property.h>
|
|
|
|
|
#include <xcb/xcb_keysyms.h>
|
|
|
|
|
#include <xcb/xcb_icccm.h>
|
|
|
|
|
#include <xcb/xinerama.h>
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
|
#include "config.h"
|
2009-03-04 16:06:39 +01:00
|
|
|
|
#include "data.h"
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "handlers.h"
|
2009-03-04 16:06:39 +01:00
|
|
|
|
#include "i3.h"
|
|
|
|
|
#include "layout.h"
|
|
|
|
|
#include "queue.h"
|
|
|
|
|
#include "table.h"
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include "util.h"
|
2009-02-14 08:38:07 +01:00
|
|
|
|
#include "xcb.h"
|
2009-02-15 01:58:09 +01:00
|
|
|
|
#include "xinerama.h"
|
2009-02-07 02:43:28 +01:00
|
|
|
|
|
2009-02-27 22:40:48 +01:00
|
|
|
|
/* This is the path to i3, copied from argv[0] when starting up */
|
|
|
|
|
char *application_path;
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* This is our connection to X11 for use with XKB */
|
2009-02-10 05:50:35 +01:00
|
|
|
|
Display *xkbdpy;
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* The list of key bindings */
|
|
|
|
|
struct bindings_head bindings = TAILQ_HEAD_INITIALIZER(bindings);
|
|
|
|
|
|
|
|
|
|
/* This is a list of Stack_Windows, global, for easier/faster access on expose events */
|
|
|
|
|
struct stack_wins_head stack_wins = SLIST_HEAD_INITIALIZER(stack_wins);
|
2009-02-10 20:49:47 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* The event handlers need to be global because they are accessed by our custom event handler
|
|
|
|
|
in handle_button_press(), needed for graphical resizing */
|
|
|
|
|
xcb_event_handlers_t evenths;
|
|
|
|
|
xcb_atom_t atoms[NUM_ATOMS];
|
2009-02-14 08:38:07 +01:00
|
|
|
|
|
2009-02-13 18:15:10 +01:00
|
|
|
|
int num_screens = 0;
|
2009-02-08 04:04:35 +01:00
|
|
|
|
|
2009-02-06 17:49:45 +01:00
|
|
|
|
/*
|
2009-02-24 01:24:28 +01:00
|
|
|
|
* Do some sanity checks and then reparent the window.
|
2009-02-06 17:49:45 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 15:45:12 +01:00
|
|
|
|
void manage_window(xcb_property_handlers_t *prophs, xcb_connection_t *conn, xcb_window_t window, window_attributes_t wa) {
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("managing window.\n");
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_drawable_t d = { window };
|
|
|
|
|
xcb_get_geometry_cookie_t geomc;
|
|
|
|
|
xcb_get_geometry_reply_t *geom;
|
|
|
|
|
xcb_get_window_attributes_reply_t *attr = 0;
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
if (wa.tag == TAG_COOKIE) {
|
|
|
|
|
/* Check if the window is mapped (it could be not mapped when intializing and
|
|
|
|
|
calling manage_window() for every window) */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
if ((attr = xcb_get_window_attributes_reply(conn, wa.u.cookie, 0)) == NULL)
|
2009-02-14 02:33:31 +01:00
|
|
|
|
return;
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
if (attr->map_state != XCB_MAP_STATE_VIEWABLE)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
wa.tag = TAG_VALUE;
|
|
|
|
|
wa.u.override_redirect = attr->override_redirect;
|
|
|
|
|
}
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
/* Don’t manage clients with the override_redirect flag */
|
|
|
|
|
if (wa.u.override_redirect)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2009-02-28 22:11:48 +01:00
|
|
|
|
/* Check if the window is already managed */
|
|
|
|
|
if (table_get(byChild, window))
|
|
|
|
|
goto out;
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Get the initial geometry (position, size, …) */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
geomc = xcb_get_geometry(conn, d);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
if (!attr) {
|
2009-02-14 02:33:31 +01:00
|
|
|
|
wa.tag = TAG_COOKIE;
|
2009-03-04 15:45:12 +01:00
|
|
|
|
wa.u.cookie = xcb_get_window_attributes(conn, window);
|
|
|
|
|
attr = xcb_get_window_attributes_reply(conn, wa.u.cookie, 0);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-03-04 15:45:12 +01:00
|
|
|
|
geom = xcb_get_geometry_reply(conn, geomc, 0);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
if (attr && geom) {
|
2009-03-04 15:45:12 +01:00
|
|
|
|
reparent_window(conn, window, attr->visual, geom->root, geom->depth,
|
2009-02-24 01:24:28 +01:00
|
|
|
|
geom->x, geom->y, geom->width, geom->height);
|
2009-03-11 21:31:54 +01:00
|
|
|
|
xcb_property_changed(prophs, XCB_PROPERTY_NEW_VALUE, window, WM_NAME);
|
2009-03-15 12:24:49 +01:00
|
|
|
|
xcb_property_changed(prophs, XCB_PROPERTY_NEW_VALUE, window, WM_NORMAL_HINTS);
|
2009-03-08 19:07:33 +01:00
|
|
|
|
xcb_property_changed(prophs, XCB_PROPERTY_NEW_VALUE, window, atoms[_NET_WM_NAME]);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
free(geom);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
out:
|
|
|
|
|
free(attr);
|
|
|
|
|
return;
|
2009-02-06 17:49:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-07 01:38:51 +01:00
|
|
|
|
/*
|
2009-02-14 02:19:04 +01:00
|
|
|
|
* reparent_window() gets called when a new window was opened and becomes a child of the root
|
|
|
|
|
* window, or it gets called by us when we manage the already existing windows at startup.
|
|
|
|
|
*
|
2009-02-28 02:24:38 +01:00
|
|
|
|
* Essentially, this is the point where we take over control.
|
2009-02-07 01:38:51 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-06 17:49:45 +01:00
|
|
|
|
void reparent_window(xcb_connection_t *conn, xcb_window_t child,
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_visualid_t visual, xcb_window_t root, uint8_t depth,
|
|
|
|
|
int16_t x, int16_t y, uint16_t width, uint16_t height) {
|
|
|
|
|
|
2009-03-13 04:51:17 +01:00
|
|
|
|
xcb_get_property_cookie_t wm_type_cookie, strut_cookie, state_cookie;
|
2009-03-10 20:56:25 +01:00
|
|
|
|
uint32_t mask = 0;
|
|
|
|
|
uint32_t values[3];
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
2009-03-10 20:56:25 +01:00
|
|
|
|
/* We are interested in property changes */
|
|
|
|
|
mask = XCB_CW_EVENT_MASK;
|
2009-03-11 00:20:56 +01:00
|
|
|
|
values[0] = CHILD_EVENT_MASK;
|
2009-03-10 20:56:25 +01:00
|
|
|
|
xcb_change_window_attributes(conn, child, mask, values);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
2009-03-10 00:51:15 +01:00
|
|
|
|
/* Map the window first to avoid flickering */
|
|
|
|
|
xcb_map_window(conn, child);
|
|
|
|
|
|
2009-03-10 20:56:25 +01:00
|
|
|
|
/* Place requests for properties ASAP */
|
|
|
|
|
wm_type_cookie = xcb_get_any_property_unchecked(conn, false, child, atoms[_NET_WM_WINDOW_TYPE], UINT32_MAX);
|
|
|
|
|
strut_cookie = xcb_get_any_property_unchecked(conn, false, child, atoms[_NET_WM_STRUT_PARTIAL], UINT32_MAX);
|
2009-03-13 04:51:17 +01:00
|
|
|
|
state_cookie = xcb_get_any_property_unchecked(conn, false, child, atoms[_NET_WM_STATE], UINT32_MAX);
|
2009-03-10 20:56:25 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
Client *new = table_get(byChild, child);
|
2009-02-28 22:11:48 +01:00
|
|
|
|
|
|
|
|
|
/* Events for already managed windows should already be filtered in manage_window() */
|
|
|
|
|
assert(new == NULL);
|
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("reparenting new client\n");
|
2009-02-28 22:11:48 +01:00
|
|
|
|
new = calloc(sizeof(Client), 1);
|
|
|
|
|
new->force_reconfigure = true;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* Update the data structures */
|
2009-02-28 02:24:38 +01:00
|
|
|
|
Client *old_focused = CUR_CELL->currently_focused;
|
2009-03-07 02:44:46 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
new->container = CUR_CELL;
|
2009-03-10 20:56:25 +01:00
|
|
|
|
new->workspace = new->container->workspace;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
new->frame = xcb_generate_id(conn);
|
|
|
|
|
new->child = child;
|
2009-02-15 01:58:09 +01:00
|
|
|
|
new->rect.width = width;
|
|
|
|
|
new->rect.height = height;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-03-10 20:56:25 +01:00
|
|
|
|
mask = 0;
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Don’t generate events for our new window, it should *not* be managed */
|
|
|
|
|
mask |= XCB_CW_OVERRIDE_REDIRECT;
|
|
|
|
|
values[0] = 1;
|
|
|
|
|
|
|
|
|
|
/* We want to know when… */
|
|
|
|
|
mask |= XCB_CW_EVENT_MASK;
|
2009-03-11 00:20:56 +01:00
|
|
|
|
values[1] = FRAME_EVENT_MASK;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("Reparenting 0x%08x under 0x%08x.\n", child, new->frame);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
2009-02-15 01:58:09 +01:00
|
|
|
|
width = min(width, c_ws->rect.x + c_ws->rect.width);
|
2009-02-16 03:28:07 +01:00
|
|
|
|
height = min(height, c_ws->rect.y + c_ws->rect.height);
|
|
|
|
|
|
|
|
|
|
Rect framerect = {x, y,
|
|
|
|
|
width + 2 + 2, /* 2 px border at each side */
|
|
|
|
|
height + 2 + 2 + font->height}; /* 2 px border plus font’s height */
|
2009-02-15 01:58:09 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Yo dawg, I heard you like windows, so I create a window around your window… */
|
2009-03-04 15:28:50 +01:00
|
|
|
|
new->frame = create_window(conn, framerect, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_CURSOR_LEFT_PTR, mask, values);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-18 22:44:14 +01:00
|
|
|
|
/* Put the client inside the save set. Upon termination (whether killed or normal exit
|
|
|
|
|
does not matter) of the window manager, these clients will be correctly reparented
|
|
|
|
|
to their most closest living ancestor (= cleanup) */
|
2009-02-16 03:28:07 +01:00
|
|
|
|
xcb_change_save_set(conn, XCB_SET_MODE_INSERT, child);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* Generate a graphics context for the titlebar */
|
|
|
|
|
new->titlegc = xcb_generate_id(conn);
|
|
|
|
|
xcb_create_gc(conn, new->titlegc, new->frame, 0, 0);
|
|
|
|
|
|
|
|
|
|
/* Moves the original window into the new frame we've created for it */
|
2009-02-14 19:55:18 +01:00
|
|
|
|
new->awaiting_useless_unmap = true;
|
2009-02-16 03:28:07 +01:00
|
|
|
|
xcb_void_cookie_t cookie = xcb_reparent_window_checked(conn, child, new->frame, 0, font->height);
|
2009-03-07 02:44:46 +01:00
|
|
|
|
if (xcb_request_check(conn, cookie) != NULL) {
|
|
|
|
|
LOG("Could not reparent the window, aborting\n");
|
|
|
|
|
xcb_destroy_window(conn, new->frame);
|
|
|
|
|
free(new);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-03-07 02:44:46 +01:00
|
|
|
|
/* Put our data structure (Client) into the table */
|
|
|
|
|
table_put(byParent, new->frame, new);
|
|
|
|
|
table_put(byChild, child, new);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* We need to grab the mouse buttons for click to focus */
|
|
|
|
|
xcb_grab_button(conn, false, child, XCB_EVENT_MASK_BUTTON_PRESS,
|
2009-02-25 19:11:49 +01:00
|
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
|
2009-02-14 02:33:31 +01:00
|
|
|
|
1 /* left mouse button */,
|
|
|
|
|
XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
|
|
|
|
|
|
2009-02-23 00:18:13 +01:00
|
|
|
|
/* Get _NET_WM_WINDOW_TYPE (to see if it’s a dock) */
|
|
|
|
|
xcb_atom_t *atom;
|
|
|
|
|
xcb_get_property_reply_t *preply = xcb_get_property_reply(conn, wm_type_cookie, NULL);
|
|
|
|
|
if (preply != NULL && preply->value_len > 0 && (atom = xcb_get_property_value(preply))) {
|
|
|
|
|
for (int i = 0; i < xcb_get_property_value_length(preply); i++)
|
|
|
|
|
if (atom[i] == atoms[_NET_WM_WINDOW_TYPE_DOCK]) {
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("Window is a dock.\n");
|
2009-02-23 00:18:13 +01:00
|
|
|
|
new->dock = true;
|
|
|
|
|
new->titlebar_position = TITLEBAR_OFF;
|
|
|
|
|
new->force_reconfigure = true;
|
2009-02-23 03:44:10 +01:00
|
|
|
|
new->container = NULL;
|
|
|
|
|
SLIST_INSERT_HEAD(&(c_ws->dock_clients), new, dock_clients);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-10 20:56:25 +01:00
|
|
|
|
if (new->dock) {
|
|
|
|
|
/* Get _NET_WM_STRUT_PARTIAL to determine the client’s requested height */
|
|
|
|
|
uint32_t *strut;
|
|
|
|
|
preply = xcb_get_property_reply(conn, strut_cookie, NULL);
|
|
|
|
|
if (preply != NULL && preply->value_len > 0 && (strut = xcb_get_property_value(preply))) {
|
|
|
|
|
/* We only use a subset of the provided values, namely the reserved space at the top/bottom
|
|
|
|
|
of the screen. This is because the only possibility for bars is at to be at the top/bottom
|
|
|
|
|
with maximum horizontal size.
|
|
|
|
|
TODO: bars at the top */
|
|
|
|
|
new->desired_height = strut[3];
|
|
|
|
|
if (new->desired_height == 0) {
|
|
|
|
|
LOG("Client wanted to be 0 pixels high, using the window's height (%d)\n", height);
|
|
|
|
|
new->desired_height = height;
|
|
|
|
|
}
|
|
|
|
|
LOG("the client wants to be %d pixels high\n", new->desired_height);
|
|
|
|
|
} else {
|
|
|
|
|
LOG("The client didn't specify space to reserve at the screen edge, using its height (%d)\n", height);
|
|
|
|
|
new->desired_height = height;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Focus the new window if we’re not in fullscreen mode and if it is not a dock window */
|
|
|
|
|
if (CUR_CELL->workspace->fullscreen_client == NULL) {
|
|
|
|
|
if (!new->dock) {
|
|
|
|
|
CUR_CELL->currently_focused = new;
|
|
|
|
|
xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, new->child, XCB_CURRENT_TIME);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* If we are in fullscreen, we should lower the window to not be annoying */
|
|
|
|
|
uint32_t values[] = { XCB_STACK_MODE_BELOW };
|
|
|
|
|
xcb_configure_window(conn, new->frame, XCB_CONFIG_WINDOW_STACK_MODE, values);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-23 03:44:10 +01:00
|
|
|
|
/* Insert into the currently active container, if it’s not a dock window */
|
2009-02-28 02:24:38 +01:00
|
|
|
|
if (!new->dock) {
|
|
|
|
|
/* Insert after the old active client, if existing. If it does not exist, the
|
|
|
|
|
container is empty and it does not matter, where we insert it */
|
2009-03-10 20:56:25 +01:00
|
|
|
|
if (old_focused != NULL && !old_focused->dock)
|
2009-02-28 02:24:38 +01:00
|
|
|
|
CIRCLEQ_INSERT_AFTER(&(CUR_CELL->clients), old_focused, new, clients);
|
|
|
|
|
else CIRCLEQ_INSERT_TAIL(&(CUR_CELL->clients), new, clients);
|
2009-03-05 01:20:13 +01:00
|
|
|
|
|
|
|
|
|
SLIST_INSERT_HEAD(&(new->container->workspace->focus_stack), new, focus_clients);
|
2009-02-28 02:24:38 +01:00
|
|
|
|
}
|
2009-02-23 03:44:10 +01:00
|
|
|
|
|
2009-03-13 04:51:17 +01:00
|
|
|
|
/* Check if the window already got the fullscreen hint set */
|
|
|
|
|
xcb_atom_t *state;
|
|
|
|
|
if ((preply = xcb_get_property_reply(conn, state_cookie, NULL)) != NULL &&
|
|
|
|
|
(state = xcb_get_property_value(preply)) != NULL)
|
|
|
|
|
/* Check all set _NET_WM_STATEs */
|
|
|
|
|
for (int i = 0; i < xcb_get_property_value_length(preply); i++)
|
|
|
|
|
if (state[i] == atoms[_NET_WM_STATE_FULLSCREEN]) {
|
|
|
|
|
/* If the window got the fullscreen state, we just toggle fullscreen
|
|
|
|
|
and don’t event bother to redraw the layout – that would not change
|
|
|
|
|
anything anyways */
|
|
|
|
|
toggle_fullscreen(conn, new);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
render_layout(conn);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/*
|
|
|
|
|
* Go through all existing windows (if the window manager is restarted) and manage them
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 15:45:12 +01:00
|
|
|
|
void manage_existing_windows(xcb_connection_t *conn, xcb_property_handlers_t *prophs, xcb_window_t root) {
|
2009-02-24 01:24:28 +01:00
|
|
|
|
xcb_query_tree_reply_t *reply;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
int i, len;
|
|
|
|
|
xcb_window_t *children;
|
|
|
|
|
xcb_get_window_attributes_cookie_t *cookies;
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Get the tree of windows whose parent is the root window (= all) */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
if ((reply = xcb_query_tree_reply(conn, xcb_query_tree(conn, root), 0)) == NULL)
|
2009-02-14 02:33:31 +01:00
|
|
|
|
return;
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
len = xcb_query_tree_children_length(reply);
|
|
|
|
|
cookies = smalloc(len * sizeof(*cookies));
|
|
|
|
|
|
|
|
|
|
/* Request the window attributes for every window */
|
|
|
|
|
children = xcb_query_tree_children(reply);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
for(i = 0; i < len; ++i)
|
2009-03-04 15:45:12 +01:00
|
|
|
|
cookies[i] = xcb_get_window_attributes(conn, children[i]);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
/* Call manage_window with the attributes for every window */
|
|
|
|
|
for(i = 0; i < len; ++i) {
|
2009-02-14 02:33:31 +01:00
|
|
|
|
window_attributes_t wa = { TAG_COOKIE, { cookies[i] } };
|
2009-03-04 15:45:12 +01:00
|
|
|
|
manage_window(prophs, conn, children[i], wa);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
free(reply);
|
2009-03-05 01:48:30 +01:00
|
|
|
|
free(cookies);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-09 20:51:52 +01:00
|
|
|
|
int main(int argc, char *argv[], char *env[]) {
|
2009-03-04 16:06:39 +01:00
|
|
|
|
int i, screens, opt;
|
|
|
|
|
char *override_configpath = NULL;
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_connection_t *conn;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_property_handlers_t prophs;
|
|
|
|
|
xcb_window_t root;
|
2009-02-24 01:24:28 +01:00
|
|
|
|
xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-03-08 00:49:11 +01:00
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
|
2009-02-28 02:17:55 +01:00
|
|
|
|
/* Disable output buffering to make redirects in .xsession actually useful for debugging */
|
|
|
|
|
if (!isatty(fileno(stdout)))
|
2009-02-28 02:15:14 +01:00
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
|
|
2009-02-27 22:40:48 +01:00
|
|
|
|
application_path = sstrdup(argv[0]);
|
|
|
|
|
|
2009-03-15 23:15:16 +01:00
|
|
|
|
while ((opt = getopt(argc, argv, "c:v")) != -1) {
|
2009-03-04 16:06:39 +01:00
|
|
|
|
switch (opt) {
|
|
|
|
|
case 'c':
|
|
|
|
|
override_configpath = sstrdup(optarg);
|
|
|
|
|
break;
|
2009-03-15 23:15:16 +01:00
|
|
|
|
case 'v':
|
|
|
|
|
printf("i3 version " I3_VERSION " © 2009 Michael Stapelberg and contributors\n");
|
|
|
|
|
exit(EXIT_SUCCESS);
|
2009-03-04 16:06:39 +01:00
|
|
|
|
default:
|
|
|
|
|
fprintf(stderr, "Usage: %s [-c configfile]\n", argv[0]);
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-15 23:15:16 +01:00
|
|
|
|
LOG("i3 version " I3_VERSION " starting\n");
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Initialize the table data structures for each workspace */
|
|
|
|
|
init_table();
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
memset(&evenths, 0, sizeof(xcb_event_handlers_t));
|
|
|
|
|
memset(&prophs, 0, sizeof(xcb_property_handlers_t));
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
byChild = alloc_table();
|
|
|
|
|
byParent = alloc_table();
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-03-04 16:06:39 +01:00
|
|
|
|
load_configuration(override_configpath);
|
2009-02-25 00:50:30 +01:00
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
conn = xcb_connect(NULL, &screens);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Place requests for the atoms we need as soon as possible */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
#define REQUEST_ATOM(name) atom_cookies[name] = xcb_intern_atom(conn, 0, strlen(#name), #name);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
REQUEST_ATOM(_NET_SUPPORTED);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_STATE_FULLSCREEN);
|
|
|
|
|
REQUEST_ATOM(_NET_SUPPORTING_WM_CHECK);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_NAME);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_STATE);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_WINDOW_TYPE);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_DESKTOP);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_STRUT_PARTIAL);
|
2009-03-14 22:09:36 +01:00
|
|
|
|
REQUEST_ATOM(WM_PROTOCOLS);
|
|
|
|
|
REQUEST_ATOM(WM_DELETE_WINDOW);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
REQUEST_ATOM(UTF8_STRING);
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* TODO: this has to be more beautiful somewhen */
|
|
|
|
|
int major, minor, error;
|
2009-02-10 05:50:35 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
major = XkbMajorVersion;
|
|
|
|
|
minor = XkbMinorVersion;
|
2009-02-10 05:50:35 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
int evBase, errBase;
|
2009-02-10 05:50:35 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
if ((xkbdpy = XkbOpenDisplay(getenv("DISPLAY"), &evBase, &errBase, &major, &minor, &error)) == NULL) {
|
|
|
|
|
fprintf(stderr, "XkbOpenDisplay() failed\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2009-02-10 05:50:35 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
int i1;
|
|
|
|
|
if (!XkbQueryExtension(xkbdpy,&i1,&evBase,&errBase,&major,&minor)) {
|
|
|
|
|
fprintf(stderr, "XKB not supported by X-server\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
/* end of ugliness */
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_event_handlers_init(conn, &evenths);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
|
|
|
|
/* DEBUG: Trap all events and print them */
|
|
|
|
|
for (i = 2; i < 128; ++i)
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_event_set_handler(&evenths, i, handle_event, 0);
|
2009-02-06 18:23:37 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
for (i = 0; i < 256; ++i)
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_event_set_error_handler(&evenths, i, (xcb_generic_error_handler_t)handle_event, 0);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Expose = an Application should redraw itself, in this case it’s our titlebars. */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_expose_handler(&evenths, handle_expose_event, NULL);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Key presses/releases are pretty obvious, I think */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_key_press_handler(&evenths, handle_key_press, NULL);
|
|
|
|
|
xcb_event_set_key_release_handler(&evenths, handle_key_release, NULL);
|
2009-02-08 02:39:56 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Enter window = user moved his mouse over the window */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_enter_notify_handler(&evenths, handle_enter_notify, NULL);
|
2009-02-08 01:02:55 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Button press = user pushed a mouse button over one of our windows */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_button_press_handler(&evenths, handle_button_press, NULL);
|
2009-02-11 17:47:42 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Map notify = there is a new window */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_map_request_handler(&evenths, handle_map_request, &prophs);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Unmap notify = window disappeared. When sent from a client, we don’t manage
|
|
|
|
|
it any longer. Usually, the client destroys the window shortly afterwards. */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_unmap_notify_handler(&evenths, handle_unmap_notify_event, NULL);
|
|
|
|
|
|
2009-02-28 22:11:48 +01:00
|
|
|
|
/* Configure notify = window’s configuration (geometry, stacking, …). We only need
|
|
|
|
|
it to set up ignore the following enter_notify events */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_configure_notify_handler(&evenths, handle_configure_event, NULL);
|
|
|
|
|
|
|
|
|
|
/* Configure request = window tried to change size on its own */
|
|
|
|
|
xcb_event_set_configure_request_handler(&evenths, handle_configure_request, NULL);
|
2009-02-28 22:11:48 +01:00
|
|
|
|
|
2009-03-11 19:39:32 +01:00
|
|
|
|
/* Client message are sent to the root window. The only interesting client message
|
|
|
|
|
for us is _NET_WM_STATE, we honour _NET_WM_STATE_FULLSCREEN */
|
2009-03-10 00:51:15 +01:00
|
|
|
|
xcb_event_set_client_message_handler(&evenths, handle_client_message, NULL);
|
2009-02-14 08:38:07 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Initialize the property handlers */
|
|
|
|
|
xcb_property_handlers_init(&prophs, &evenths);
|
|
|
|
|
|
2009-03-06 06:06:19 +01:00
|
|
|
|
/* Watch size hints (to obey correct aspect ratio) */
|
|
|
|
|
xcb_property_set_handler(&prophs, WM_NORMAL_HINTS, UINT_MAX, handle_normal_hints, NULL);
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Get the root window and set the event mask */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
root = xcb_aux_get_screen(conn, screens)->root;
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
uint32_t mask = XCB_CW_EVENT_MASK;
|
2009-03-10 00:51:15 +01:00
|
|
|
|
uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
|
2009-03-03 23:51:02 +01:00
|
|
|
|
XCB_EVENT_MASK_STRUCTURE_NOTIFY | /* when the user adds a screen (e.g. video
|
|
|
|
|
projector), the root window gets a
|
|
|
|
|
ConfigureNotify */
|
2009-02-24 01:24:28 +01:00
|
|
|
|
XCB_EVENT_MASK_PROPERTY_CHANGE |
|
|
|
|
|
XCB_EVENT_MASK_ENTER_WINDOW };
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_change_window_attributes(conn, root, mask, values);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-14 08:38:07 +01:00
|
|
|
|
/* Setup NetWM atoms */
|
2009-02-24 01:24:28 +01:00
|
|
|
|
#define GET_ATOM(name) { \
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, atom_cookies[name], NULL); \
|
2009-02-24 01:24:28 +01:00
|
|
|
|
if (!reply) { \
|
|
|
|
|
printf("Could not get atom " #name "\n"); \
|
|
|
|
|
exit(-1); \
|
|
|
|
|
} \
|
|
|
|
|
atoms[name] = reply->atom; \
|
|
|
|
|
free(reply); \
|
|
|
|
|
}
|
2009-02-14 08:38:07 +01:00
|
|
|
|
|
|
|
|
|
GET_ATOM(_NET_SUPPORTED);
|
|
|
|
|
GET_ATOM(_NET_WM_STATE_FULLSCREEN);
|
|
|
|
|
GET_ATOM(_NET_SUPPORTING_WM_CHECK);
|
|
|
|
|
GET_ATOM(_NET_WM_NAME);
|
|
|
|
|
GET_ATOM(_NET_WM_STATE);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
GET_ATOM(_NET_WM_WINDOW_TYPE);
|
|
|
|
|
GET_ATOM(_NET_WM_DESKTOP);
|
|
|
|
|
GET_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
|
|
|
|
|
GET_ATOM(_NET_WM_STRUT_PARTIAL);
|
2009-03-14 22:09:36 +01:00
|
|
|
|
GET_ATOM(WM_PROTOCOLS);
|
|
|
|
|
GET_ATOM(WM_DELETE_WINDOW);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
GET_ATOM(UTF8_STRING);
|
|
|
|
|
|
2009-03-11 19:39:32 +01:00
|
|
|
|
xcb_property_set_handler(&prophs, atoms[_NET_WM_WINDOW_TYPE], UINT_MAX, handle_window_type, NULL);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
/* TODO: In order to comply with EWMH, we have to watch _NET_WM_STRUT_PARTIAL */
|
2009-02-14 08:38:07 +01:00
|
|
|
|
|
2009-03-08 19:07:33 +01:00
|
|
|
|
/* Watch _NET_WM_NAME (= title of the window in UTF-8) property */
|
|
|
|
|
xcb_property_set_handler(&prophs, atoms[_NET_WM_NAME], 128, handle_windowname_change, NULL);
|
2009-03-11 21:31:54 +01:00
|
|
|
|
|
|
|
|
|
/* Watch WM_NAME (= title of the window in compound text) property for legacy applications */
|
|
|
|
|
xcb_watch_wm_name(&prophs, 128, handle_windowname_change_legacy, NULL);
|
2009-03-08 19:07:33 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Set up the atoms we support */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
check_error(conn, xcb_change_property_checked(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTED],
|
2009-02-24 01:24:28 +01:00
|
|
|
|
ATOM, 32, 7, atoms), "Could not set _NET_SUPPORTED");
|
|
|
|
|
/* Set up the window manager’s name */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTING_WM_CHECK], WINDOW, 32, 1, &root);
|
|
|
|
|
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_WM_NAME], atoms[UTF8_STRING], 8, strlen("i3"), "i3");
|
2009-02-14 08:38:07 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Grab the bound keys */
|
2009-02-14 02:33:31 +01:00
|
|
|
|
Binding *bind;
|
|
|
|
|
TAILQ_FOREACH(bind, &bindings, bindings) {
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("Grabbing %d\n", bind->keycode);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
if (bind->mods & BIND_MODE_SWITCH)
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_grab_key(conn, 0, root, 0, bind->keycode, XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_SYNC);
|
|
|
|
|
else xcb_grab_key(conn, 0, root, bind->mods, bind->keycode, XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-02-07 01:38:51 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* check for Xinerama */
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("Checking for Xinerama...\n");
|
2009-03-04 15:45:12 +01:00
|
|
|
|
initialize_xinerama(conn);
|
2009-02-13 18:15:10 +01:00
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_flush(conn);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
manage_existing_windows(conn, &prophs, root);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
|
/* Get pointer position to see on which screen we’re starting */
|
2009-02-24 01:24:28 +01:00
|
|
|
|
xcb_query_pointer_reply_t *reply;
|
2009-03-04 15:45:12 +01:00
|
|
|
|
if ((reply = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, root), NULL)) == NULL) {
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("Could not get pointer position\n");
|
2009-02-15 01:58:09 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i3Screen *screen = get_screen_containing(reply->root_x, reply->root_y);
|
|
|
|
|
if (screen == NULL) {
|
2009-03-03 23:51:02 +01:00
|
|
|
|
printf("ERROR: No screen at %d x %d\n", reply->root_x, reply->root_y);
|
2009-02-15 01:58:09 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (screen->current_workspace != 0) {
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("Ok, I need to go to the other workspace\n");
|
2009-02-15 01:58:09 +01:00
|
|
|
|
c_ws = &workspaces[screen->current_workspace];
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* Enter xcb’s event handler */
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_event_wait_for_event_loop(&evenths);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* not reached */
|
|
|
|
|
return 0;
|
2009-02-06 17:49:45 +01:00
|
|
|
|
}
|