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-08-07 15:35:12 +02:00
|
|
|
|
#include <fcntl.h>
|
2009-09-02 22:14:09 +02:00
|
|
|
|
#include <getopt.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-04-19 20:44:34 +02:00
|
|
|
|
#include <xcb/xcb_atom.h>
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#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-06-01 20:59:40 +02:00
|
|
|
|
#include <ev.h>
|
|
|
|
|
|
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-09-22 18:07:59 +02:00
|
|
|
|
#include "click.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-05-16 18:25:04 +02:00
|
|
|
|
#include "manage.h"
|
2009-07-28 20:51:29 +02:00
|
|
|
|
#include "ipc.h"
|
|
|
|
|
|
|
|
|
|
xcb_connection_t *global_conn;
|
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 */
|
2009-05-01 16:10:02 +02:00
|
|
|
|
char **start_argv;
|
2009-02-27 22:40:48 +01:00
|
|
|
|
|
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-08-07 15:35:12 +02:00
|
|
|
|
xcb_key_symbols_t *keysyms;
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* The list of key bindings */
|
2009-09-27 18:45:39 +02:00
|
|
|
|
struct bindings_head *bindings;
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
2009-03-29 14:53:48 +02:00
|
|
|
|
/* The list of exec-lines */
|
|
|
|
|
struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
|
|
|
|
|
|
2009-05-16 17:32:36 +02:00
|
|
|
|
/* The list of assignments */
|
|
|
|
|
struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
|
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
/* 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-07-23 18:14:24 +02:00
|
|
|
|
xcb_window_t root;
|
2009-02-13 18:15:10 +01:00
|
|
|
|
int num_screens = 0;
|
2009-02-08 04:04:35 +01:00
|
|
|
|
|
2009-07-17 18:32:40 +02:00
|
|
|
|
/* The depth of the root screen (used e.g. for creating new pixmaps later) */
|
|
|
|
|
uint8_t root_depth;
|
|
|
|
|
|
2009-06-01 20:59:40 +02:00
|
|
|
|
/*
|
2009-06-21 13:05:54 +02:00
|
|
|
|
* This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
|
|
|
|
|
* See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
|
2009-06-01 20:59:40 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
|
2009-06-21 13:05:54 +02:00
|
|
|
|
/* empty, because xcb_prepare_cb and xcb_check_cb are used */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Flush before blocking (and waiting for new events)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
|
|
|
|
|
xcb_flush(evenths.c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Instead of polling the X connection socket we leave this to
|
|
|
|
|
* xcb_poll_for_event() which knows better than we can ever know.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
|
2009-06-01 20:59:40 +02:00
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
|
|
|
|
|
|
while ((event = xcb_poll_for_event(evenths.c)) != NULL) {
|
2009-06-21 13:05:54 +02:00
|
|
|
|
xcb_event_handle(&evenths, event);
|
|
|
|
|
free(event);
|
2009-06-01 20:59:40 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-07 15:35:12 +02:00
|
|
|
|
/*
|
|
|
|
|
* When using xmodmap to change the keyboard mapping, this event
|
|
|
|
|
* is only sent via XKB. Therefore, we need this special handler.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
|
|
|
|
|
LOG("got xkb event, yay\n");
|
|
|
|
|
XEvent ev;
|
|
|
|
|
/* When using xmodmap, every change (!) gets an own event.
|
|
|
|
|
* Therefore, we just read all events and only handle the
|
|
|
|
|
* mapping_notify once (we do not receive any other XKB
|
|
|
|
|
* events anyway). */
|
|
|
|
|
while (XPending(xkbdpy))
|
|
|
|
|
XNextEvent(xkbdpy, &ev);
|
|
|
|
|
|
|
|
|
|
xcb_key_symbols_free(keysyms);
|
|
|
|
|
keysyms = xcb_key_symbols_alloc(global_conn);
|
|
|
|
|
|
|
|
|
|
xcb_get_numlock_mask(global_conn);
|
|
|
|
|
|
|
|
|
|
ungrab_all_keys(global_conn);
|
|
|
|
|
LOG("Re-grabbing...\n");
|
|
|
|
|
grab_all_keys(global_conn);
|
|
|
|
|
LOG("Done\n");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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-05-26 17:09:34 +02:00
|
|
|
|
bool autostart = true;
|
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;
|
2009-02-24 01:24:28 +01:00
|
|
|
|
xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
|
2009-09-02 22:14:09 +02:00
|
|
|
|
static struct option long_options[] = {
|
|
|
|
|
{"no-autostart", no_argument, 0, 'a'},
|
|
|
|
|
{"config", required_argument, 0, 'c'},
|
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
|
{0, 0, 0, 0}
|
|
|
|
|
};
|
|
|
|
|
int option_index = 0;
|
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-05-01 16:10:02 +02:00
|
|
|
|
start_argv = argv;
|
2009-02-27 22:40:48 +01:00
|
|
|
|
|
2009-09-19 19:05:15 +02:00
|
|
|
|
while ((opt = getopt_long(argc, argv, "c:vahl", long_options, &option_index)) != -1) {
|
2009-03-04 16:06:39 +01:00
|
|
|
|
switch (opt) {
|
2009-05-26 17:09:34 +02:00
|
|
|
|
case 'a':
|
|
|
|
|
LOG("Autostart disabled using -a\n");
|
|
|
|
|
autostart = false;
|
|
|
|
|
break;
|
2009-03-04 16:06:39 +01:00
|
|
|
|
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-09-19 19:05:15 +02:00
|
|
|
|
case 'l':
|
|
|
|
|
config_use_lexer = true;
|
|
|
|
|
break;
|
2009-03-04 16:06:39 +01:00
|
|
|
|
default:
|
2009-09-02 22:14:09 +02:00
|
|
|
|
fprintf(stderr, "Usage: %s [-c configfile] [-a] [-v]\n", argv[0]);
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
fprintf(stderr, "-a: disable autostart\n");
|
|
|
|
|
fprintf(stderr, "-v: display version and exit\n");
|
|
|
|
|
fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
|
2009-03-04 16:06:39 +01:00
|
|
|
|
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-07-28 20:51:29 +02:00
|
|
|
|
conn = global_conn = xcb_connect(NULL, &screens);
|
2009-02-06 17:49:45 +01:00
|
|
|
|
|
2009-06-11 03:30:26 +02:00
|
|
|
|
if (xcb_connection_has_error(conn))
|
|
|
|
|
die("Cannot open display\n");
|
|
|
|
|
|
2009-07-23 20:36:48 +02:00
|
|
|
|
load_configuration(conn, override_configpath, false);
|
2009-06-01 15:14:45 +02:00
|
|
|
|
|
2009-09-27 23:08:27 +02:00
|
|
|
|
/* Create the initial container on the first workspace. This used to
|
|
|
|
|
* be part of init_table, but since it possibly requires an X
|
|
|
|
|
* connection and a loaded configuration (default mode for new
|
|
|
|
|
* containers may be stacking, which requires a new window to be
|
|
|
|
|
* created), it had to be delayed. */
|
|
|
|
|
expand_table_cols(&(workspaces[0]));
|
|
|
|
|
expand_table_rows(&(workspaces[0]));
|
|
|
|
|
|
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);
|
2009-06-13 12:18:16 +02:00
|
|
|
|
REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
|
2009-06-19 12:05:55 +02:00
|
|
|
|
REQUEST_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
|
|
|
|
|
REQUEST_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
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-05-02 20:51:55 +02:00
|
|
|
|
REQUEST_ATOM(WM_STATE);
|
2009-08-05 00:39:55 +02:00
|
|
|
|
REQUEST_ATOM(WM_CLIENT_LEADER);
|
2009-02-24 01:24:28 +01:00
|
|
|
|
|
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-08-07 15:35:12 +02:00
|
|
|
|
if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
|
|
|
|
|
fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
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-08-07 15:35:12 +02:00
|
|
|
|
if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd, XkbMapNotifyMask, XkbMapNotifyMask)) {
|
|
|
|
|
fprintf(stderr, "Could not set XKB event mask\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-21 13:05:54 +02:00
|
|
|
|
/* Initialize event loop using libev */
|
|
|
|
|
struct ev_loop *loop = ev_default_loop(0);
|
|
|
|
|
if (loop == NULL)
|
|
|
|
|
die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
|
|
|
|
|
|
|
|
|
|
struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
|
2009-08-07 15:35:12 +02:00
|
|
|
|
struct ev_io *xkb = scalloc(sizeof(struct ev_io));
|
2009-06-21 13:05:54 +02:00
|
|
|
|
struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
|
|
|
|
|
struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
|
|
|
|
|
|
|
|
|
|
ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
|
|
|
|
|
ev_io_start(loop, xcb_watcher);
|
|
|
|
|
|
2009-08-07 15:35:12 +02:00
|
|
|
|
ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
|
|
|
|
|
ev_io_start(loop, xkb);
|
|
|
|
|
|
|
|
|
|
/* Flush the buffer so that libev can properly get new events */
|
|
|
|
|
XFlush(xkbdpy);
|
|
|
|
|
|
2009-06-21 13:05:54 +02:00
|
|
|
|
ev_check_init(xcb_check, xcb_check_cb);
|
|
|
|
|
ev_check_start(loop, xcb_check);
|
|
|
|
|
|
|
|
|
|
ev_prepare_init(xcb_prepare, xcb_prepare_cb);
|
|
|
|
|
ev_prepare_start(loop, xcb_prepare);
|
|
|
|
|
|
|
|
|
|
/* Grab the server to delay any events until we enter the eventloop */
|
|
|
|
|
xcb_grab_server(conn);
|
|
|
|
|
|
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-08-06 00:59:48 +02:00
|
|
|
|
/* Motion notify = user moved his cursor (over the root window and may
|
|
|
|
|
* cross virtual screen boundaries doing that) */
|
|
|
|
|
xcb_event_set_motion_notify_handler(&evenths, handle_motion_notify, NULL);
|
|
|
|
|
|
2009-08-07 15:35:12 +02:00
|
|
|
|
/* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
|
|
|
|
|
xcb_event_set_mapping_notify_handler(&evenths, handle_mapping_notify, NULL);
|
|
|
|
|
|
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-07-17 18:32:40 +02:00
|
|
|
|
xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
|
|
|
|
|
root = root_screen->root;
|
|
|
|
|
root_depth = root_screen->root_depth;
|
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-08-06 00:59:48 +02:00
|
|
|
|
XCB_EVENT_MASK_POINTER_MOTION |
|
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) { \
|
2009-04-11 14:08:19 +02:00
|
|
|
|
LOG("Could not get atom " #name "\n"); \
|
2009-02-24 01:24:28 +01:00
|
|
|
|
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);
|
2009-06-13 12:18:16 +02:00
|
|
|
|
GET_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
|
2009-06-19 12:05:55 +02:00
|
|
|
|
GET_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
|
|
|
|
|
GET_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
|
|
|
|
|
GET_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
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-05-02 20:51:55 +02:00
|
|
|
|
GET_ATOM(WM_STATE);
|
2009-08-05 00:39:55 +02:00
|
|
|
|
GET_ATOM(WM_CLIENT_LEADER);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
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
|
|
|
|
|
2009-06-12 22:59:23 +02:00
|
|
|
|
/* Watch WM_TRANSIENT_FOR property (to which client this popup window belongs) */
|
|
|
|
|
xcb_property_set_handler(&prophs, WM_TRANSIENT_FOR, UINT_MAX, handle_transient_for, 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-03-30 09:39:35 +02:00
|
|
|
|
/* Watch WM_CLASS (= class of the window) */
|
|
|
|
|
xcb_property_set_handler(&prophs, WM_CLASS, 128, handle_windowclass_change, NULL);
|
|
|
|
|
|
2009-08-05 00:39:55 +02:00
|
|
|
|
/* Watch WM_CLIENT_LEADER (= logical parent window for toolbars etc.) */
|
|
|
|
|
xcb_property_set_handler(&prophs, atoms[WM_CLIENT_LEADER], UINT_MAX, handle_clientleader_change, NULL);
|
|
|
|
|
|
2009-09-06 22:40:11 +02:00
|
|
|
|
/* Watch WM_HINTS (contains the urgent property) */
|
|
|
|
|
xcb_property_set_handler(&prophs, WM_HINTS, UINT_MAX, handle_hints, NULL);
|
|
|
|
|
|
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-08-07 15:35:12 +02:00
|
|
|
|
keysyms = xcb_key_symbols_alloc(conn);
|
|
|
|
|
|
2009-03-27 15:24:52 +01:00
|
|
|
|
xcb_get_numlock_mask(conn);
|
|
|
|
|
|
2009-07-23 18:14:24 +02:00
|
|
|
|
grab_all_keys(conn);
|
2009-02-07 01:38:51 +01:00
|
|
|
|
|
2009-03-29 14:53:48 +02:00
|
|
|
|
/* Autostarting exec-lines */
|
2009-05-16 17:32:36 +02:00
|
|
|
|
struct Autostart *exec;
|
2009-05-26 17:09:34 +02:00
|
|
|
|
if (autostart) {
|
|
|
|
|
TAILQ_FOREACH(exec, &autostarts, autostarts) {
|
|
|
|
|
LOG("auto-starting %s\n", exec->command);
|
|
|
|
|
start_application(exec->command);
|
|
|
|
|
}
|
2009-03-29 14:53:48 +02: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-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-08-31 20:27:44 +02:00
|
|
|
|
LOG("ERROR: No screen at %d x %d, starting on the first screen\n",
|
|
|
|
|
reply->root_x, reply->root_y);
|
|
|
|
|
screen = TAILQ_FIRST(virtual_screens);
|
2009-02-15 01:58:09 +01:00
|
|
|
|
}
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
|
|
|
|
LOG("Starting on %d\n", screen->current_workspace);
|
|
|
|
|
c_ws = &workspaces[screen->current_workspace];
|
|
|
|
|
|
|
|
|
|
manage_existing_windows(conn, &prophs, root);
|
2009-02-15 01:58:09 +01:00
|
|
|
|
|
2009-07-28 20:51:29 +02:00
|
|
|
|
/* Create the UNIX domain socket for IPC */
|
2009-07-28 22:09:53 +02:00
|
|
|
|
if (config.ipc_socket_path != NULL) {
|
|
|
|
|
int ipc_socket = ipc_create_socket(config.ipc_socket_path);
|
|
|
|
|
if (ipc_socket == -1) {
|
|
|
|
|
LOG("Could not create the IPC socket, IPC disabled\n");
|
|
|
|
|
} else {
|
|
|
|
|
struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
|
|
|
|
|
ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
|
|
|
|
|
ev_io_start(loop, ipc_io);
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-21 16:14:15 +02:00
|
|
|
|
/* Handle the events which arrived until now */
|
|
|
|
|
xcb_check_cb(NULL, NULL, 0);
|
|
|
|
|
|
2009-06-21 13:05:54 +02:00
|
|
|
|
/* Ungrab the server to receive events and enter libev’s eventloop */
|
|
|
|
|
xcb_ungrab_server(conn);
|
2009-06-01 20:59:40 +02:00
|
|
|
|
ev_loop(loop, 0);
|
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
|
|
|
|
}
|