2009-02-14 02:33:31 +01:00
|
|
|
|
/*
|
2010-04-13 17:52:23 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*
|
2009-02-24 14:18:08 +01:00
|
|
|
|
* include/data.h: This file defines all data structures used by i3
|
|
|
|
|
*
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
|
#pragma once
|
2011-10-10 16:21:08 +02:00
|
|
|
|
|
2016-10-11 09:13:35 +02:00
|
|
|
|
#include "libi3.h"
|
|
|
|
|
|
2011-10-10 16:30:07 +02:00
|
|
|
|
#define SN_API_NOT_YET_FROZEN 1
|
|
|
|
|
#include <libsn/sn-launcher.h>
|
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
#include <xcb/randr.h>
|
2009-02-14 08:38:07 +01:00
|
|
|
|
#include <stdbool.h>
|
2011-09-11 00:53:11 +02:00
|
|
|
|
#include <pcre.h>
|
2012-02-21 13:38:49 +01:00
|
|
|
|
#include <sys/time.h>
|
2009-02-08 04:04:35 +01:00
|
|
|
|
|
2009-02-24 14:18:08 +01:00
|
|
|
|
#include "queue.h"
|
|
|
|
|
|
2009-02-06 17:49:45 +01:00
|
|
|
|
/*
|
2011-12-30 11:23:15 +01:00
|
|
|
|
* To get the big concept: There are helper structures like struct
|
|
|
|
|
* Workspace_Assignment. Every struct which is also defined as type (see
|
2009-06-29 21:54:51 +02:00
|
|
|
|
* forward definitions) is considered to be a major structure, thus important.
|
2009-02-24 14:18:08 +01:00
|
|
|
|
*
|
2011-12-30 11:23:15 +01:00
|
|
|
|
* The following things are all stored in a 'Con', from very high level (the
|
|
|
|
|
* biggest Cons) to very small (a single window):
|
2009-02-24 14:18:08 +01:00
|
|
|
|
*
|
2011-12-30 11:23:15 +01:00
|
|
|
|
* 1) X11 root window (as big as all your outputs combined)
|
|
|
|
|
* 2) output (like LVDS1)
|
|
|
|
|
* 3) content container, dockarea containers
|
|
|
|
|
* 4) workspaces
|
|
|
|
|
* 5) split containers
|
|
|
|
|
* ... (you can arbitrarily nest split containers)
|
|
|
|
|
* 6) X11 window containers
|
2009-02-06 17:49:45 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2009-02-08 02:39:56 +01:00
|
|
|
|
/* Forward definitions */
|
2009-02-10 20:49:47 +01:00
|
|
|
|
typedef struct Binding Binding;
|
2009-02-15 01:58:09 +01:00
|
|
|
|
typedef struct Rect Rect;
|
2010-03-02 12:47:21 +01:00
|
|
|
|
typedef struct xoutput Output;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
typedef struct Con Con;
|
|
|
|
|
typedef struct Match Match;
|
2011-05-15 20:10:25 +02:00
|
|
|
|
typedef struct Assignment Assignment;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
typedef struct Window i3Window;
|
2015-10-19 18:10:20 +02:00
|
|
|
|
typedef struct mark_t mark_t;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2009-02-24 14:18:08 +01:00
|
|
|
|
/******************************************************************************
|
|
|
|
|
* Helper types
|
|
|
|
|
*****************************************************************************/
|
2014-06-19 11:20:32 +02:00
|
|
|
|
typedef enum { D_LEFT,
|
|
|
|
|
D_RIGHT,
|
|
|
|
|
D_UP,
|
|
|
|
|
D_DOWN } direction_t;
|
|
|
|
|
typedef enum { NO_ORIENTATION = 0,
|
|
|
|
|
HORIZ,
|
|
|
|
|
VERT } orientation_t;
|
|
|
|
|
typedef enum { BS_NORMAL = 0,
|
|
|
|
|
BS_NONE = 1,
|
|
|
|
|
BS_PIXEL = 2 } border_style_t;
|
2009-02-10 20:49:47 +01:00
|
|
|
|
|
2015-12-28 02:58:35 +01:00
|
|
|
|
/** parameter to specify whether tree_close_internal() and x_window_kill() should kill
|
2011-05-13 20:41:03 +02:00
|
|
|
|
* only this specific window or the whole X11 client */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
typedef enum { DONT_KILL_WINDOW = 0,
|
|
|
|
|
KILL_WINDOW = 1,
|
|
|
|
|
KILL_CLIENT = 2 } kill_window_t;
|
2011-05-13 20:41:03 +02:00
|
|
|
|
|
2012-07-22 11:57:07 +02:00
|
|
|
|
/** describes if the window is adjacent to the output (physical screen) edges. */
|
|
|
|
|
typedef enum { ADJ_NONE = 0,
|
2012-08-05 21:41:36 +02:00
|
|
|
|
ADJ_LEFT_SCREEN_EDGE = (1 << 0),
|
|
|
|
|
ADJ_RIGHT_SCREEN_EDGE = (1 << 1),
|
|
|
|
|
ADJ_UPPER_SCREEN_EDGE = (1 << 2),
|
2014-06-19 11:20:32 +02:00
|
|
|
|
ADJ_LOWER_SCREEN_EDGE = (1 << 4) } adjacent_t;
|
2012-07-22 11:57:07 +02:00
|
|
|
|
|
2016-05-10 20:27:20 +02:00
|
|
|
|
typedef enum { HEBM_NONE = ADJ_NONE,
|
|
|
|
|
HEBM_VERTICAL = ADJ_LEFT_SCREEN_EDGE | ADJ_RIGHT_SCREEN_EDGE,
|
|
|
|
|
HEBM_HORIZONTAL = ADJ_UPPER_SCREEN_EDGE | ADJ_LOWER_SCREEN_EDGE,
|
|
|
|
|
HEBM_BOTH = HEBM_VERTICAL | HEBM_HORIZONTAL,
|
|
|
|
|
HEBM_SMART = (1 << 5) } hide_edge_borders_mode_t;
|
|
|
|
|
|
2015-10-19 18:31:21 +02:00
|
|
|
|
typedef enum { MM_REPLACE,
|
|
|
|
|
MM_ADD } mark_mode_t;
|
|
|
|
|
|
2013-05-22 06:28:13 +02:00
|
|
|
|
/**
|
|
|
|
|
* Container layouts. See Con::layout.
|
|
|
|
|
*/
|
|
|
|
|
typedef enum {
|
|
|
|
|
L_DEFAULT = 0,
|
|
|
|
|
L_STACKED = 1,
|
|
|
|
|
L_TABBED = 2,
|
|
|
|
|
L_DOCKAREA = 3,
|
|
|
|
|
L_OUTPUT = 4,
|
|
|
|
|
L_SPLITV = 5,
|
|
|
|
|
L_SPLITH = 6
|
|
|
|
|
} layout_t;
|
|
|
|
|
|
2014-05-02 16:22:40 +02:00
|
|
|
|
/**
|
|
|
|
|
* Binding input types. See Binding::input_type.
|
|
|
|
|
*/
|
|
|
|
|
typedef enum {
|
|
|
|
|
B_KEYBOARD = 0,
|
|
|
|
|
B_MOUSE = 1
|
|
|
|
|
} input_type_t;
|
|
|
|
|
|
Use libxkbcommon for translating keysyms, support all XKB groups.
fixes #1835
This commit improves the translation of keysyms to keycodes by loading
keymaps using libxkbcommon-x11 and using libxkbcommon for figuring out
the keymap, depending on each keybinding’s modifiers. This way, the
upper layers of complex layouts are now usable with i3’s bindsym
directive, such as de_neo’s layer 3 and higher.
Furthermore, the commit generalizes the handling of different XKB
groups. We formerly had support only for two separate groups, the
default group 1, and group 2. While Mode_switch is only one way to
switch to group 2, we called the binding option Mode_switch. With this
commit, the new names Group1, Group2 (an alias for Mode_switch), Group3
and Group4 are introduced for configuring bindings. This is only useful
for advanced keyboard layouts, such as people loading two keyboard
layouts and switching between them (us, ru seems to be a popular
combination).
When grabbing keys, one can only specify the modifier mask, but not an
XKB state mask (or value), so we still dynamically unbind and re-bind
keys whenever the XKB group changes.
The commit was manually tested using the following i3 config:
bindsym Group4+n nop heya from group 4
bindsym Group3+n nop heya from group 3
bindsym Group2+n nop heya from group 2
bindsym n nop heya
bindsym shift+N nop explicit shift binding
bindsym shift+r nop implicit shift binding
bindcode Group2+38 nop fallback overwritten in group 2 only
bindcode 38 nop fallback
…with the following layout:
setxkbmap -layout "us,ua,ru,de" -variant ",winkeys,,neo" \
-option "grp:shift_caps_toggle,grp_led:scroll" \
-model pc104 -rules evdev
By default (xkb group 1, us layout), pressing “n” will result in the
“heya” message appearing. Pressing “a” will result in the “fallback”
message appearing. “j” is not triggered.
By pressing Shift+CapsLock you switch to the next group (xkb group 2, ua
layout). Pressing “a” will result in the “fallback overwritten in group
2 only” message, pressing “n” will still result in “heya”. “j” is not
triggered.
In the next group (xkb group 3, ru layout), pressing “a” will result in
the “fallback” message again, pressing “n” will result in “heya”,
“j” is not triggered.
In the last group (xkb group 4, de_neo layout), pressing “a” will still
result in “fallback”, pressing “n” will result in “heya”, pressing “j”
will result in “heya from group 4”.
Pressing shift+n results in “explicit shift binding”, pressing shift+r
results in “implicit shift binding”. This ensures that keysym
translation falls back to looking at non-shift keys (“r” can be used
instead of ”R”) and that the order of keybindings doesn’t play a role
(“bindsym n” does not override “bindsym shift+n”, even though it’s
specified earlier in the config).
The fallback behavior ensures use-cases such as ticket #1775 are still
covered.
Only binding keys when the X server is in the corresponding XKB group
ensures use-cases such as ticket #585 are still covered.
2015-08-23 22:49:32 +02:00
|
|
|
|
/**
|
|
|
|
|
* Bitmask for matching XCB_XKB_GROUP_1 to XCB_XKB_GROUP_4.
|
|
|
|
|
*/
|
|
|
|
|
typedef enum {
|
|
|
|
|
I3_XKB_GROUP_MASK_ANY = 0,
|
|
|
|
|
I3_XKB_GROUP_MASK_1 = (1 << 0),
|
|
|
|
|
I3_XKB_GROUP_MASK_2 = (1 << 1),
|
|
|
|
|
I3_XKB_GROUP_MASK_3 = (1 << 2),
|
|
|
|
|
I3_XKB_GROUP_MASK_4 = (1 << 3)
|
|
|
|
|
} i3_xkb_group_mask_t;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The lower 16 bits contain a xcb_key_but_mask_t, the higher 16 bits contain
|
|
|
|
|
* an i3_xkb_group_mask_t. This type is necessary for the fallback logic to
|
|
|
|
|
* work when handling XKB groups (see ticket #1775) and makes the code which
|
|
|
|
|
* locates keybindings upon KeyPress/KeyRelease events simpler.
|
|
|
|
|
*/
|
|
|
|
|
typedef uint32_t i3_event_state_mask_t;
|
|
|
|
|
|
2014-03-24 18:03:05 +01:00
|
|
|
|
/**
|
|
|
|
|
* Mouse pointer warping modes.
|
|
|
|
|
*/
|
|
|
|
|
typedef enum {
|
|
|
|
|
POINTER_WARPING_OUTPUT = 0,
|
|
|
|
|
POINTER_WARPING_NONE = 1
|
|
|
|
|
} warping_t;
|
|
|
|
|
|
2009-06-29 21:54:51 +02:00
|
|
|
|
/**
|
2009-06-29 22:15:37 +02:00
|
|
|
|
* Stores a rectangle, for example the size of a window, the child window etc.
|
2009-12-31 17:48:41 +01:00
|
|
|
|
* It needs to be packed so that the compiler will not add any padding bytes.
|
|
|
|
|
* (it is used in src/ewmh.c for example)
|
2009-06-29 21:54:51 +02:00
|
|
|
|
*
|
2010-02-12 13:06:59 +01:00
|
|
|
|
* Note that x and y can contain signed values in some cases (for example when
|
|
|
|
|
* used for the coordinates of a window, which can be set outside of the
|
|
|
|
|
* visible area, but not when specifying the position of a workspace for the
|
|
|
|
|
* _NET_WM_WORKAREA hint). Not declaring x/y as int32_t saves us a lot of
|
|
|
|
|
* typecasts.
|
|
|
|
|
*
|
2009-06-29 21:54:51 +02:00
|
|
|
|
*/
|
2009-02-15 01:58:09 +01:00
|
|
|
|
struct Rect {
|
2010-04-13 17:52:23 +02:00
|
|
|
|
uint32_t x;
|
|
|
|
|
uint32_t y;
|
|
|
|
|
uint32_t width;
|
|
|
|
|
uint32_t height;
|
2009-12-31 17:48:41 +01:00
|
|
|
|
} __attribute__((packed));
|
2009-02-15 01:58:09 +01:00
|
|
|
|
|
2011-02-21 14:27:32 +01:00
|
|
|
|
/**
|
|
|
|
|
* Stores the reserved pixels on each screen edge read from a
|
|
|
|
|
* _NET_WM_STRUT_PARTIAL.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct reservedpx {
|
|
|
|
|
uint32_t left;
|
|
|
|
|
uint32_t right;
|
|
|
|
|
uint32_t top;
|
|
|
|
|
uint32_t bottom;
|
|
|
|
|
};
|
|
|
|
|
|
2011-03-20 14:07:16 +01:00
|
|
|
|
/**
|
|
|
|
|
* Stores a width/height pair, used as part of deco_render_params to check
|
|
|
|
|
* whether the rects width/height have changed.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct width_height {
|
|
|
|
|
uint32_t w;
|
|
|
|
|
uint32_t h;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Stores the parameters for rendering a window decoration. This structure is
|
|
|
|
|
* cached in every Con and no re-rendering will be done if the parameters have
|
|
|
|
|
* not changed (only the pixmaps will be copied).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct deco_render_params {
|
|
|
|
|
struct Colortriple *color;
|
|
|
|
|
int border_style;
|
|
|
|
|
struct width_height con_rect;
|
|
|
|
|
struct width_height con_window_rect;
|
2011-03-20 18:07:07 +01:00
|
|
|
|
Rect con_deco_rect;
|
2015-11-16 23:03:39 +01:00
|
|
|
|
color_t background;
|
2013-04-29 10:14:11 +02:00
|
|
|
|
layout_t parent_layout;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
bool con_is_leaf;
|
2011-03-20 14:07:16 +01:00
|
|
|
|
};
|
|
|
|
|
|
2011-05-14 22:13:29 +02:00
|
|
|
|
/**
|
2014-05-18 05:36:58 +02:00
|
|
|
|
* Stores which workspace (by name or number) goes to which output.
|
2011-05-14 22:13:29 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct Workspace_Assignment {
|
|
|
|
|
char *name;
|
|
|
|
|
char *output;
|
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(Workspace_Assignment)
|
|
|
|
|
ws_assignments;
|
2011-05-14 22:13:29 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-03-10 00:51:15 +01:00
|
|
|
|
struct Ignore_Event {
|
2010-04-13 17:52:23 +02:00
|
|
|
|
int sequence;
|
Bugfix: Ignore EnterNotifies generated by UnmapNotifies
Actually, commit 1c5adc6c35cffaedc08c7d1dd1b03a3269d1367c commented out code
without ever fixing it. I think this was responsible for the 'workspace
switching sometimes does not work' bug. My observations:
Had it again today and analyzed a log of it. Looks like after unmapping the
windows on one workspace (in my case: chromium, eclipse, urxvt, focus on
eclipse) we get UnmapNotify events for chromium and eclipse, but then we get an
EnterNotify for the terminal (due to unmapping the other windows and therefore
mapping the terminal under the cursor), only afterwards the UnmapNotify
follows.
So, there are two things wrong with that:
• We handle EnterNotifys for unmapped windows
• Unmapping windows sometimes works in a sequence, sometimes the sequence gets
split. Not sure why (if unmapping can take longer for some windows or if our
syncing is wrong -- but i checked the latter briefly and it looks correct).
Maybe GrabServer helps?
• We don’t ignore EnterNotify events caused by UnmapNotifies. We used to, but
then there was a different problem and we decided to solve the EnterNotify
problem in another way, which actually never happened (commit
1c5adc6c35cffaedc08c7d1dd1b03a3269d1367c).
2011-04-19 21:50:56 +02:00
|
|
|
|
int response_type;
|
2010-04-13 17:52:23 +02:00
|
|
|
|
time_t added;
|
2009-02-24 14:18:08 +01:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
SLIST_ENTRY(Ignore_Event)
|
|
|
|
|
ignore_events;
|
2009-04-19 20:44:34 +02:00
|
|
|
|
};
|
|
|
|
|
|
2011-10-10 13:47:56 +02:00
|
|
|
|
/**
|
|
|
|
|
* Stores internal information about a startup sequence, like the workspace it
|
|
|
|
|
* was initiated on.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct Startup_Sequence {
|
|
|
|
|
/** startup ID for this sequence, generated by libstartup-notification */
|
|
|
|
|
char *id;
|
|
|
|
|
/** workspace on which this startup was initiated */
|
|
|
|
|
char *workspace;
|
2011-10-10 16:30:07 +02:00
|
|
|
|
/** libstartup-notification context for this launch */
|
|
|
|
|
SnLauncherContext *context;
|
2012-09-05 21:00:08 +02:00
|
|
|
|
/** time at which this sequence should be deleted (after it was marked as
|
|
|
|
|
* completed) */
|
|
|
|
|
time_t delete_at;
|
2011-10-10 13:47:56 +02:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(Startup_Sequence)
|
|
|
|
|
sequences;
|
2011-10-10 13:47:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
2011-09-11 00:53:11 +02:00
|
|
|
|
/**
|
|
|
|
|
* Regular expression wrapper. It contains the pattern itself as a string (like
|
|
|
|
|
* ^foo[0-9]$) as well as a pointer to the compiled PCRE expression and the
|
|
|
|
|
* pcre_extra data returned by pcre_study().
|
|
|
|
|
*
|
|
|
|
|
* This makes it easier to have a useful logfile, including the matching or
|
|
|
|
|
* non-matching pattern.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct regex {
|
2011-09-12 00:41:46 +02:00
|
|
|
|
char *pattern;
|
2011-09-11 00:53:11 +02:00
|
|
|
|
pcre *regex;
|
|
|
|
|
pcre_extra *extra;
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-02 20:10:26 +02:00
|
|
|
|
/**
|
|
|
|
|
* Stores a resolved keycode (from a keysym), including the modifier mask. Will
|
|
|
|
|
* be passed to xcb_grab_key().
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct Binding_Keycode {
|
|
|
|
|
xcb_keycode_t keycode;
|
|
|
|
|
i3_event_state_mask_t modifiers;
|
2016-11-08 22:46:43 +01:00
|
|
|
|
|
|
|
|
|
TAILQ_ENTRY(Binding_Keycode)
|
|
|
|
|
keycodes;
|
2016-08-02 20:10:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-02-24 14:18:08 +01:00
|
|
|
|
/******************************************************************************
|
|
|
|
|
* Major types
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
2009-06-29 21:54:51 +02:00
|
|
|
|
/**
|
|
|
|
|
* Holds a keybinding, consisting of a keycode combined with modifiers and the
|
2012-12-24 15:57:02 +01:00
|
|
|
|
* command which is executed as soon as the key is pressed (see
|
|
|
|
|
* src/config_parser.c)
|
2009-02-06 18:23:37 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-10 20:49:47 +01:00
|
|
|
|
struct Binding {
|
2014-01-09 17:59:21 +01:00
|
|
|
|
/* The type of input this binding is for. (Mouse bindings are not yet
|
|
|
|
|
* implemented. All bindings are currently assumed to be keyboard bindings.) */
|
2014-05-02 16:22:40 +02:00
|
|
|
|
input_type_t input_type;
|
2014-01-09 17:59:21 +01:00
|
|
|
|
|
2012-09-06 17:04:31 +02:00
|
|
|
|
/** If true, the binding should be executed upon a KeyRelease event, not a
|
|
|
|
|
* KeyPress (the default). */
|
2012-09-06 17:24:30 +02:00
|
|
|
|
enum {
|
|
|
|
|
/* This binding will only be executed upon KeyPress events */
|
|
|
|
|
B_UPON_KEYPRESS = 0,
|
|
|
|
|
/* This binding will be executed either upon a KeyRelease event, or… */
|
|
|
|
|
B_UPON_KEYRELEASE = 1,
|
|
|
|
|
/* …upon a KeyRelease event, even if the modifiers don’t match. This
|
|
|
|
|
* state is triggered from get_binding() when the corresponding
|
|
|
|
|
* KeyPress (!) happens, so that users can release the modifier keys
|
|
|
|
|
* before releasing the actual key. */
|
|
|
|
|
B_UPON_KEYRELEASE_IGNORE_MODS = 2,
|
|
|
|
|
} release;
|
2012-09-06 17:04:31 +02:00
|
|
|
|
|
2015-04-02 03:43:46 +02:00
|
|
|
|
/** If this is true for a mouse binding, the binding should be executed
|
|
|
|
|
* when the button is pressed over the window border. */
|
|
|
|
|
bool border;
|
|
|
|
|
|
2015-01-30 02:52:52 +01:00
|
|
|
|
/** If this is true for a mouse binding, the binding should be executed
|
|
|
|
|
* when the button is pressed over any part of the window, not just the
|
|
|
|
|
* title bar (default). */
|
|
|
|
|
bool whole_window;
|
|
|
|
|
|
2017-05-02 09:08:42 +02:00
|
|
|
|
/** If this is true for a mouse binding, the binding should only be
|
|
|
|
|
* executed if the button press was not on the titlebar. */
|
|
|
|
|
bool exclude_titlebar;
|
|
|
|
|
|
2013-06-08 15:37:41 +02:00
|
|
|
|
/** Keycode to bind */
|
|
|
|
|
uint32_t keycode;
|
|
|
|
|
|
Use libxkbcommon for translating keysyms, support all XKB groups.
fixes #1835
This commit improves the translation of keysyms to keycodes by loading
keymaps using libxkbcommon-x11 and using libxkbcommon for figuring out
the keymap, depending on each keybinding’s modifiers. This way, the
upper layers of complex layouts are now usable with i3’s bindsym
directive, such as de_neo’s layer 3 and higher.
Furthermore, the commit generalizes the handling of different XKB
groups. We formerly had support only for two separate groups, the
default group 1, and group 2. While Mode_switch is only one way to
switch to group 2, we called the binding option Mode_switch. With this
commit, the new names Group1, Group2 (an alias for Mode_switch), Group3
and Group4 are introduced for configuring bindings. This is only useful
for advanced keyboard layouts, such as people loading two keyboard
layouts and switching between them (us, ru seems to be a popular
combination).
When grabbing keys, one can only specify the modifier mask, but not an
XKB state mask (or value), so we still dynamically unbind and re-bind
keys whenever the XKB group changes.
The commit was manually tested using the following i3 config:
bindsym Group4+n nop heya from group 4
bindsym Group3+n nop heya from group 3
bindsym Group2+n nop heya from group 2
bindsym n nop heya
bindsym shift+N nop explicit shift binding
bindsym shift+r nop implicit shift binding
bindcode Group2+38 nop fallback overwritten in group 2 only
bindcode 38 nop fallback
…with the following layout:
setxkbmap -layout "us,ua,ru,de" -variant ",winkeys,,neo" \
-option "grp:shift_caps_toggle,grp_led:scroll" \
-model pc104 -rules evdev
By default (xkb group 1, us layout), pressing “n” will result in the
“heya” message appearing. Pressing “a” will result in the “fallback”
message appearing. “j” is not triggered.
By pressing Shift+CapsLock you switch to the next group (xkb group 2, ua
layout). Pressing “a” will result in the “fallback overwritten in group
2 only” message, pressing “n” will still result in “heya”. “j” is not
triggered.
In the next group (xkb group 3, ru layout), pressing “a” will result in
the “fallback” message again, pressing “n” will result in “heya”,
“j” is not triggered.
In the last group (xkb group 4, de_neo layout), pressing “a” will still
result in “fallback”, pressing “n” will result in “heya”, pressing “j”
will result in “heya from group 4”.
Pressing shift+n results in “explicit shift binding”, pressing shift+r
results in “implicit shift binding”. This ensures that keysym
translation falls back to looking at non-shift keys (“r” can be used
instead of ”R”) and that the order of keybindings doesn’t play a role
(“bindsym n” does not override “bindsym shift+n”, even though it’s
specified earlier in the config).
The fallback behavior ensures use-cases such as ticket #1775 are still
covered.
Only binding keys when the X server is in the corresponding XKB group
ensures use-cases such as ticket #585 are still covered.
2015-08-23 22:49:32 +02:00
|
|
|
|
/** Bitmask which is applied against event->state for KeyPress and
|
|
|
|
|
* KeyRelease events to determine whether this binding applies to the
|
|
|
|
|
* current state. */
|
|
|
|
|
i3_event_state_mask_t event_state_mask;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** Symbol the user specified in configfile, if any. This needs to be
|
|
|
|
|
* stored with the binding to be able to re-convert it into a keycode
|
|
|
|
|
* if the keyboard mapping changes (using Xmodmap for example) */
|
|
|
|
|
char *symbol;
|
2009-08-07 15:35:12 +02:00
|
|
|
|
|
2016-08-02 20:10:26 +02:00
|
|
|
|
/** Only in use if symbol != NULL. Contains keycodes which generate the
|
|
|
|
|
* specified symbol. Useful for unbinding and checking which binding was
|
|
|
|
|
* used when a key press event comes in. */
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_HEAD(keycodes_head, Binding_Keycode)
|
|
|
|
|
keycodes_head;
|
2009-08-07 15:35:12 +02:00
|
|
|
|
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** Command, like in command mode */
|
|
|
|
|
char *command;
|
2009-08-07 15:35:12 +02:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(Binding)
|
|
|
|
|
bindings;
|
2009-02-10 20:49:47 +01:00
|
|
|
|
};
|
|
|
|
|
|
2009-06-29 21:54:51 +02:00
|
|
|
|
/**
|
2011-07-12 12:24:01 +02:00
|
|
|
|
* Holds a command specified by either an:
|
|
|
|
|
* - exec-line
|
|
|
|
|
* - exec_always-line
|
|
|
|
|
* in the config (see src/config.c)
|
2009-03-29 14:53:48 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
struct Autostart {
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** Command, like in command mode */
|
|
|
|
|
char *command;
|
2011-10-25 23:18:17 +02:00
|
|
|
|
/** no_startup_id flag for start_application(). Determines whether a
|
|
|
|
|
* startup notification context/ID should be created. */
|
|
|
|
|
bool no_startup_id;
|
2016-11-08 22:46:43 +01:00
|
|
|
|
|
|
|
|
|
TAILQ_ENTRY(Autostart)
|
|
|
|
|
autostarts;
|
|
|
|
|
|
|
|
|
|
TAILQ_ENTRY(Autostart)
|
|
|
|
|
autostarts_always;
|
2009-05-16 17:32:36 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-06-29 21:54:51 +02:00
|
|
|
|
/**
|
2010-03-02 12:47:21 +01:00
|
|
|
|
* An Output is a physical output on your graphics driver. Outputs which
|
|
|
|
|
* are currently in use have (output->active == true). Each output has a
|
|
|
|
|
* position and a mode. An output usually corresponds to one connected
|
|
|
|
|
* screen (except if you are running multiple screens in clone mode).
|
2009-02-24 14:18:08 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-02 12:47:21 +01:00
|
|
|
|
struct xoutput {
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** Output id, so that we can requery the output directly later */
|
|
|
|
|
xcb_randr_output_t id;
|
2010-11-21 22:12:34 +01:00
|
|
|
|
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** Whether the output is currently active (has a CRTC attached with a
|
|
|
|
|
* valid mode) */
|
|
|
|
|
bool active;
|
2009-02-15 01:58:09 +01:00
|
|
|
|
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** Internal flags, necessary for querying RandR screens (happens in
|
|
|
|
|
* two stages) */
|
|
|
|
|
bool changed;
|
|
|
|
|
bool to_be_disabled;
|
2011-01-27 15:40:02 +01:00
|
|
|
|
bool primary;
|
2010-03-05 14:32:48 +01:00
|
|
|
|
|
2013-06-08 15:37:41 +02:00
|
|
|
|
/** Name of the output */
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
/** Pointer to the Con which represents this output */
|
|
|
|
|
Con *con;
|
|
|
|
|
|
2010-04-13 17:52:23 +02:00
|
|
|
|
/** x, y, width, height */
|
|
|
|
|
Rect rect;
|
2009-02-15 01:58:09 +01:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(xoutput)
|
|
|
|
|
outputs;
|
2009-02-15 01:58:09 +01:00
|
|
|
|
};
|
|
|
|
|
|
2011-12-30 11:23:15 +01:00
|
|
|
|
/**
|
|
|
|
|
* A 'Window' is a type which contains an xcb_window_t and all the related
|
|
|
|
|
* information (hints like _NET_WM_NAME for that window).
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Window {
|
|
|
|
|
xcb_window_t id;
|
|
|
|
|
|
2010-11-12 23:46:03 +01:00
|
|
|
|
/** Holds the xcb_window_t (just an ID) for the leader window (logical
|
|
|
|
|
* parent for toolwindows and similar floating windows) */
|
|
|
|
|
xcb_window_t leader;
|
2010-11-13 01:19:21 +01:00
|
|
|
|
xcb_window_t transient_for;
|
2010-11-12 23:46:03 +01:00
|
|
|
|
|
2013-06-08 15:37:41 +02:00
|
|
|
|
/** Pointers to the Assignments which were already ran for this Window
|
|
|
|
|
* (assignments run only once) */
|
|
|
|
|
uint32_t nr_assignments;
|
|
|
|
|
Assignment **ran_assignments;
|
|
|
|
|
|
2010-04-13 17:46:54 +02:00
|
|
|
|
char *class_class;
|
|
|
|
|
char *class_instance;
|
|
|
|
|
|
2012-08-07 21:23:06 +02:00
|
|
|
|
/** The name of the window. */
|
|
|
|
|
i3String *name;
|
2010-04-13 17:46:54 +02:00
|
|
|
|
|
2011-09-18 17:05:10 +02:00
|
|
|
|
/** The WM_WINDOW_ROLE of this window (for example, the pidgin buddy window
|
|
|
|
|
* sets "buddy list"). Useful to match specific windows in assignments or
|
|
|
|
|
* for_window. */
|
|
|
|
|
char *role;
|
|
|
|
|
|
2011-03-20 14:07:16 +01:00
|
|
|
|
/** Flag to force re-rendering the decoration upon changes */
|
|
|
|
|
bool name_x_changed;
|
|
|
|
|
|
2010-04-13 17:46:54 +02:00
|
|
|
|
/** Whether the application used _NET_WM_NAME */
|
2010-04-13 17:22:34 +02:00
|
|
|
|
bool uses_net_wm_name;
|
2010-08-15 12:18:27 +02:00
|
|
|
|
|
2011-03-18 17:07:56 +01:00
|
|
|
|
/** Whether the application needs to receive WM_TAKE_FOCUS */
|
|
|
|
|
bool needs_take_focus;
|
|
|
|
|
|
2012-01-18 20:16:57 +01:00
|
|
|
|
/** Whether this window accepts focus. We store this inverted so that the
|
|
|
|
|
* default will be 'accepts focus'. */
|
|
|
|
|
bool doesnt_accept_focus;
|
|
|
|
|
|
2015-04-18 21:09:03 +02:00
|
|
|
|
/** The _NET_WM_WINDOW_TYPE for this window. */
|
|
|
|
|
xcb_atom_t window_type;
|
|
|
|
|
|
Handle the EWMH atom _NET_WM_DESKTOP.
We already claim _NET_WM_DESKTOP support in _NET_SUPPORTED since around 2009,
but haven't actually done anything with it. However, especially pagers like
gnome-panel rely on this property to be updated and many tools, like GTK, want
to use the corresponding client messages to make a window sticky, move it
around etc.
This patch implements full support according to the EWMH spec. This means:
* We set the property on all windows when managing it.
* We keep the property updated on all windows at all times.
* We read and respect the property upon managing a window if it was set before
mapping the window.
* We react to client messages for it.
* We remove the property on withdrawn windows.
Note that the special value 0xFFFFFFFF, according to the spec, means that the
window shall be shown on all workspaces. We do this by making it sticky and
float it. This shows it on all workspaces at least on the output it is on.
Furthermore, the spec gives us the freedom to ignore _NET_WM_DESKTOP when
managing a window if we have good reason to. In our case, we give window
swallowing a higher priority since the user would likely expect that and we
want to keep placeholder windows only around for as long as we have to.
However, we do prioritize this property over, for example, startup
notifications.
fixes #2153
fixes #1507
fixes #938
2016-01-11 20:53:26 +01:00
|
|
|
|
/** The _NET_WM_DESKTOP for this window. */
|
|
|
|
|
uint32_t wm_desktop;
|
|
|
|
|
|
2010-08-15 12:18:27 +02:00
|
|
|
|
/** Whether the window says it is a dock window */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
enum { W_NODOCK = 0,
|
|
|
|
|
W_DOCK_TOP = 1,
|
|
|
|
|
W_DOCK_BOTTOM = 2 } dock;
|
2011-02-21 14:27:32 +01:00
|
|
|
|
|
2013-06-08 15:37:41 +02:00
|
|
|
|
/** When this window was marked urgent. 0 means not urgent */
|
|
|
|
|
struct timeval urgent;
|
|
|
|
|
|
2011-02-21 14:27:32 +01:00
|
|
|
|
/** Pixels the window reserves. left/right/top/bottom */
|
|
|
|
|
struct reservedpx reserved;
|
2011-05-15 20:10:25 +02:00
|
|
|
|
|
2012-03-01 06:53:06 +01:00
|
|
|
|
/** Depth of the window */
|
|
|
|
|
uint16_t depth;
|
2015-08-30 22:48:37 +02:00
|
|
|
|
|
|
|
|
|
/* the wanted size of the window, used in combination with size
|
|
|
|
|
* increments (see below). */
|
|
|
|
|
int base_width;
|
|
|
|
|
int base_height;
|
2015-08-30 23:04:20 +02:00
|
|
|
|
|
|
|
|
|
/* minimum increment size specified for the window (in pixels) */
|
|
|
|
|
int width_increment;
|
|
|
|
|
int height_increment;
|
2015-08-30 23:07:25 +02:00
|
|
|
|
|
2016-11-28 22:09:39 +01:00
|
|
|
|
/* Minimum size specified for the window. */
|
|
|
|
|
int min_width;
|
|
|
|
|
int min_height;
|
|
|
|
|
|
2015-08-30 23:07:25 +02:00
|
|
|
|
/* aspect ratio from WM_NORMAL_HINTS (MPlayer uses this for example) */
|
|
|
|
|
double aspect_ratio;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
};
|
|
|
|
|
|
2011-12-30 11:23:15 +01:00
|
|
|
|
/**
|
|
|
|
|
* A "match" is a data structure which acts like a mask or expression to match
|
|
|
|
|
* certain windows or not. For example, when using commands, you can specify a
|
|
|
|
|
* command like this: [title="*Firefox*"] kill. The title member of the match
|
|
|
|
|
* data structure will then be filled and i3 will check each window using
|
|
|
|
|
* match_matches_window() to find the windows affected by this command.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Match {
|
2015-12-09 13:39:08 +01:00
|
|
|
|
/* Set if a criterion was specified incorrectly. */
|
|
|
|
|
char *error;
|
|
|
|
|
|
2011-09-11 00:53:11 +02:00
|
|
|
|
struct regex *title;
|
|
|
|
|
struct regex *application;
|
|
|
|
|
struct regex *class;
|
|
|
|
|
struct regex *instance;
|
|
|
|
|
struct regex *mark;
|
2013-12-15 11:25:58 +01:00
|
|
|
|
struct regex *window_role;
|
2015-06-29 23:58:48 +02:00
|
|
|
|
struct regex *workspace;
|
2015-04-18 21:09:03 +02:00
|
|
|
|
xcb_atom_t window_type;
|
2012-01-25 00:00:27 +01:00
|
|
|
|
enum {
|
|
|
|
|
U_DONTCHECK = -1,
|
|
|
|
|
U_LATEST = 0,
|
|
|
|
|
U_OLDEST = 1
|
|
|
|
|
} urgent;
|
2011-02-21 14:27:32 +01:00
|
|
|
|
enum {
|
|
|
|
|
M_DONTCHECK = -1,
|
|
|
|
|
M_NODOCK = 0,
|
|
|
|
|
M_DOCK_ANY = 1,
|
|
|
|
|
M_DOCK_TOP = 2,
|
|
|
|
|
M_DOCK_BOTTOM = 3
|
|
|
|
|
} dock;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
xcb_window_t id;
|
2016-09-28 04:04:00 +02:00
|
|
|
|
enum { WM_ANY = 0,
|
|
|
|
|
WM_TILING,
|
|
|
|
|
WM_FLOATING } window_mode;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
Con *con_id;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2011-02-20 23:43:03 +01:00
|
|
|
|
/* Where the window looking for a match should be inserted:
|
|
|
|
|
*
|
|
|
|
|
* M_HERE = the matched container will be replaced by the window
|
|
|
|
|
* (layout saving)
|
2011-05-02 23:29:26 +02:00
|
|
|
|
* M_ASSIGN_WS = the matched container will be inserted in the target_ws.
|
2011-02-20 23:43:03 +01:00
|
|
|
|
* M_BELOW = the window will be inserted as a child of the matched container
|
|
|
|
|
* (dockareas)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2014-06-19 11:20:32 +02:00
|
|
|
|
enum { M_HERE = 0,
|
|
|
|
|
M_ASSIGN_WS,
|
|
|
|
|
M_BELOW } insert_where;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(Match)
|
|
|
|
|
matches;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
|
2012-01-21 19:35:15 +01:00
|
|
|
|
/* Whether this match was generated when restarting i3 inplace.
|
|
|
|
|
* Leads to not setting focus when managing a new window, because the old
|
|
|
|
|
* focus stack should be restored. */
|
|
|
|
|
bool restart_mode;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
};
|
|
|
|
|
|
2011-05-23 18:41:17 +02:00
|
|
|
|
/**
|
|
|
|
|
* An Assignment makes specific windows go to a specific workspace/output or
|
|
|
|
|
* run a command for that window. With this mechanism, the user can -- for
|
2015-03-12 05:41:43 +01:00
|
|
|
|
* example -- assign their browser to workspace "www". Checking if a window is
|
2011-12-30 11:23:15 +01:00
|
|
|
|
* assigned works by comparing the Match data structure with the window (see
|
|
|
|
|
* match_matches_window()).
|
2011-05-23 18:41:17 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
|
struct Assignment {
|
|
|
|
|
/** type of this assignment:
|
|
|
|
|
*
|
|
|
|
|
* A_COMMAND = run the specified command for the matching window
|
|
|
|
|
* A_TO_WORKSPACE = assign the matching window to the specified workspace
|
2015-03-29 17:29:21 +02:00
|
|
|
|
* A_NO_FOCUS = don't focus matched window when it is managed
|
2011-05-15 20:10:25 +02:00
|
|
|
|
*
|
2011-05-23 18:41:17 +02:00
|
|
|
|
* While the type is a bitmask, only one value can be set at a time. It is
|
|
|
|
|
* a bitmask to allow filtering for multiple types, for example in the
|
|
|
|
|
* assignment_for() function.
|
|
|
|
|
*
|
2011-05-15 20:10:25 +02:00
|
|
|
|
*/
|
2011-05-23 18:41:17 +02:00
|
|
|
|
enum {
|
2014-06-19 11:20:32 +02:00
|
|
|
|
A_ANY = 0,
|
|
|
|
|
A_COMMAND = (1 << 0),
|
2015-03-29 17:29:21 +02:00
|
|
|
|
A_TO_WORKSPACE = (1 << 1),
|
|
|
|
|
A_NO_FOCUS = (1 << 2)
|
2011-05-23 18:41:17 +02:00
|
|
|
|
} type;
|
2011-05-15 20:10:25 +02:00
|
|
|
|
|
|
|
|
|
/** the criteria to check if a window matches */
|
|
|
|
|
Match match;
|
|
|
|
|
|
2015-03-16 20:18:03 +01:00
|
|
|
|
/** destination workspace/command, depending on the type */
|
2011-05-15 20:10:25 +02:00
|
|
|
|
union {
|
|
|
|
|
char *command;
|
|
|
|
|
char *workspace;
|
|
|
|
|
} dest;
|
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(Assignment)
|
|
|
|
|
assignments;
|
2011-05-15 20:10:25 +02:00
|
|
|
|
};
|
|
|
|
|
|
2014-01-04 13:18:38 +01:00
|
|
|
|
/** Fullscreen modes. Used by Con.fullscreen_mode. */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
typedef enum { CF_NONE = 0,
|
|
|
|
|
CF_OUTPUT = 1,
|
|
|
|
|
CF_GLOBAL = 2 } fullscreen_mode_t;
|
2014-01-04 13:18:38 +01:00
|
|
|
|
|
2015-10-19 18:10:20 +02:00
|
|
|
|
struct mark_t {
|
|
|
|
|
char *name;
|
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(mark_t)
|
|
|
|
|
marks;
|
2015-10-19 18:10:20 +02:00
|
|
|
|
};
|
|
|
|
|
|
2011-12-30 11:23:15 +01:00
|
|
|
|
/**
|
|
|
|
|
* A 'Con' represents everything from the X11 root window down to a single X11 window.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Con {
|
|
|
|
|
bool mapped;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
|
|
|
|
|
/* Should this container be marked urgent? This gets set when the window
|
|
|
|
|
* inside this container (if any) sets the urgency hint, for example. */
|
|
|
|
|
bool urgent;
|
|
|
|
|
|
|
|
|
|
/** This counter contains the number of UnmapNotify events for this
|
|
|
|
|
* container (or, more precisely, for its ->frame) which should be ignored.
|
|
|
|
|
* UnmapNotify events need to be ignored when they are caused by i3 itself,
|
|
|
|
|
* for example when reparenting or when unmapping the window on a workspace
|
|
|
|
|
* change. */
|
|
|
|
|
uint8_t ignore_unmap;
|
|
|
|
|
|
Migrate i3 rendering to cairo.
This patch migrates all decoration rendering of i3 to cairo. Using the
compile switch CAIRO_SUPPORT, rendering can be switched back to the
previous XCB behavior, just like with the previous migration to cairo
in i3bar.
This patch also fixes a bug in draw_util.c where copying one surface
to another would use incorrect coordinates if the source coordinates
are not 0, 0.
Furthermore, this patch implicitly fixes some minor issues in the
decoration rendering which would be ignored previously due to the fact
that errors would only show up in the event queue, but not cause the
rendering code path to crash. One example is zero-height pixmaps which
are not allowed. Using cairo, these would cause i3 to instantly segfault,
so this patch avoids this.
Lastly, this patch annotates other issues found but not fixed in this patch
using TODO comments, e.g., the zero-height check not working correctly
and the comment that it should probably work the same way for zero-width
pixmaps.
relates to #1278
2015-11-16 21:26:06 +01:00
|
|
|
|
/* The surface used for the frame window. */
|
|
|
|
|
surface_t frame;
|
|
|
|
|
surface_t frame_buffer;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
bool pixmap_recreated;
|
|
|
|
|
|
2011-02-20 23:43:03 +01:00
|
|
|
|
enum {
|
|
|
|
|
CT_ROOT = 0,
|
|
|
|
|
CT_OUTPUT = 1,
|
|
|
|
|
CT_CON = 2,
|
|
|
|
|
CT_FLOATING_CON = 3,
|
|
|
|
|
CT_WORKSPACE = 4,
|
|
|
|
|
CT_DOCKAREA = 5
|
|
|
|
|
} type;
|
2013-06-08 15:37:41 +02:00
|
|
|
|
|
|
|
|
|
/** the workspace number, if this Con is of type CT_WORKSPACE and the
|
|
|
|
|
* workspace is not a named workspace (for named workspaces, num == -1) */
|
|
|
|
|
int num;
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Con *parent;
|
|
|
|
|
|
2015-11-21 21:52:43 +01:00
|
|
|
|
/* The position and size for this con. These coordinates are absolute. Note
|
|
|
|
|
* that the rect of a container does not include the decoration. */
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Rect rect;
|
2015-11-21 21:52:43 +01:00
|
|
|
|
/* The position and size of the actual client window. These coordinates are
|
|
|
|
|
* relative to the container's rect. */
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Rect window_rect;
|
2015-11-21 21:52:43 +01:00
|
|
|
|
/* The position and size of the container's decoration. These coordinates
|
|
|
|
|
* are relative to the container's parent's rect. */
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Rect deco_rect;
|
2011-02-20 23:43:03 +01:00
|
|
|
|
/** the geometry this window requested when getting mapped */
|
|
|
|
|
struct Rect geometry;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
|
|
2015-12-29 18:01:51 +01:00
|
|
|
|
/** The format with which the window's name should be displayed. */
|
|
|
|
|
char *title_format;
|
|
|
|
|
|
2010-09-01 18:11:01 +02:00
|
|
|
|
/* a sticky-group is an identifier which bundles several containers to a
|
|
|
|
|
* group. The contents are shared between all of them, that is they are
|
|
|
|
|
* displayed on whichever of the containers is currently visible */
|
|
|
|
|
char *sticky_group;
|
|
|
|
|
|
2015-10-19 18:10:20 +02:00
|
|
|
|
/* user-definable marks to jump to this container later */
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_HEAD(marks_head, mark_t)
|
|
|
|
|
marks_head;
|
2015-03-29 00:13:44 +01:00
|
|
|
|
/* cached to decide whether a redraw is needed */
|
|
|
|
|
bool mark_changed;
|
2010-06-02 23:32:05 +02:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
double percent;
|
|
|
|
|
|
2010-11-14 23:44:13 +01:00
|
|
|
|
/* the x11 border pixel attribute */
|
|
|
|
|
int border_width;
|
2012-09-24 01:14:00 +02:00
|
|
|
|
int current_border_width;
|
2010-11-14 23:44:13 +01:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct Window *window;
|
|
|
|
|
|
2012-09-22 13:48:22 +02:00
|
|
|
|
/* timer used for disabling urgency */
|
|
|
|
|
struct ev_timer *urgency_timer;
|
|
|
|
|
|
2011-03-20 14:07:16 +01:00
|
|
|
|
/** Cache for the decoration rendering */
|
|
|
|
|
struct deco_render_params *deco_render_params;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
|
|
/* Only workspace-containers can have floating clients */
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_HEAD(floating_head, Con)
|
|
|
|
|
floating_head;
|
|
|
|
|
|
|
|
|
|
TAILQ_HEAD(nodes_head, Con)
|
|
|
|
|
nodes_head;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_HEAD(focus_head, Con)
|
|
|
|
|
focus_head;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_HEAD(swallow_head, Match)
|
|
|
|
|
swallow_head;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2014-01-04 13:18:38 +01:00
|
|
|
|
fullscreen_mode_t fullscreen_mode;
|
2015-08-23 13:36:12 +02:00
|
|
|
|
|
|
|
|
|
/* Whether this window should stick to the glass. This corresponds to
|
|
|
|
|
* the _NET_WM_STATE_STICKY atom and will only be respected if the
|
|
|
|
|
* window is floating. */
|
|
|
|
|
bool sticky;
|
|
|
|
|
|
2012-09-16 22:53:41 +02:00
|
|
|
|
/* layout is the layout of this container: one of split[v|h], stacked or
|
|
|
|
|
* tabbed. Special containers in the tree (above workspaces) have special
|
|
|
|
|
* layouts like dockarea or output.
|
|
|
|
|
*
|
|
|
|
|
* last_split_layout is one of splitv or splith to support the old "layout
|
|
|
|
|
* default" command which by now should be "layout splitv" or "layout
|
|
|
|
|
* splith" explicitly.
|
|
|
|
|
*
|
|
|
|
|
* workspace_layout is only for type == CT_WORKSPACE cons. When you change
|
|
|
|
|
* the layout of a workspace without any children, i3 cannot just set the
|
|
|
|
|
* layout (because workspaces need to be splitv/splith to allow focus
|
|
|
|
|
* parent and opening new containers). Instead, it stores the requested
|
|
|
|
|
* layout in workspace_layout and creates a new split container with that
|
|
|
|
|
* layout whenever a new container is attached to the workspace. */
|
2013-05-22 06:28:13 +02:00
|
|
|
|
layout_t layout, last_split_layout, workspace_layout;
|
2010-12-08 00:32:04 +01:00
|
|
|
|
border_style_t border_style;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/** floating? (= not in tiling layout) This cannot be simply a bool
|
|
|
|
|
* because we want to keep track of whether the status was set by the
|
|
|
|
|
* application (by setting _NET_WM_WINDOW_TYPE appropriately) or by the
|
|
|
|
|
* user. The user’s choice overwrites automatic mode, of course. The
|
|
|
|
|
* order of the values is important because we check with >=
|
|
|
|
|
* FLOATING_AUTO_ON if a client is floating. */
|
|
|
|
|
enum {
|
|
|
|
|
FLOATING_AUTO_OFF = 0,
|
|
|
|
|
FLOATING_USER_OFF = 1,
|
|
|
|
|
FLOATING_AUTO_ON = 2,
|
|
|
|
|
FLOATING_USER_ON = 3
|
|
|
|
|
} floating;
|
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(Con)
|
|
|
|
|
nodes;
|
|
|
|
|
|
|
|
|
|
TAILQ_ENTRY(Con)
|
|
|
|
|
focused;
|
|
|
|
|
|
|
|
|
|
TAILQ_ENTRY(Con)
|
|
|
|
|
all_cons;
|
|
|
|
|
|
|
|
|
|
TAILQ_ENTRY(Con)
|
|
|
|
|
floating_windows;
|
2011-02-14 18:08:36 +01:00
|
|
|
|
|
|
|
|
|
/** callbacks */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
void (*on_remove_child)(Con *);
|
2011-12-22 00:15:32 +01:00
|
|
|
|
|
|
|
|
|
enum {
|
2013-02-18 10:41:34 +01:00
|
|
|
|
/* Not a scratchpad window. */
|
2011-12-22 00:15:32 +01:00
|
|
|
|
SCRATCHPAD_NONE = 0,
|
2013-02-18 10:41:34 +01:00
|
|
|
|
|
|
|
|
|
/* Just moved to scratchpad, not resized by the user yet.
|
|
|
|
|
* Window will be auto-centered and sized appropriately. */
|
2011-12-22 00:15:32 +01:00
|
|
|
|
SCRATCHPAD_FRESH = 1,
|
2013-02-18 10:41:34 +01:00
|
|
|
|
|
|
|
|
|
/* The user changed position/size of the scratchpad window. */
|
2011-12-22 00:15:32 +01:00
|
|
|
|
SCRATCHPAD_CHANGED = 2
|
|
|
|
|
} scratchpad_state;
|
2012-01-21 19:35:15 +01:00
|
|
|
|
|
|
|
|
|
/* The ID of this container before restarting. Necessary to correctly
|
|
|
|
|
* interpret back-references in the JSON (such as the focus stack). */
|
|
|
|
|
int old_id;
|
2013-03-15 15:40:26 +01:00
|
|
|
|
|
|
|
|
|
/* Depth of the container window */
|
|
|
|
|
uint16_t depth;
|
2016-09-14 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
/* The colormap for this con if a custom one is used. */
|
|
|
|
|
xcb_colormap_t colormap;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
};
|