14 #ifdef I3_ASAN_ENABLED 15 #include <sanitizer/lsan_interface.h> 38 static xcb_connection_t *restore_conn;
40 static struct ev_io *xcb_watcher;
42 static struct ev_prepare *xcb_prepare;
47 static void restore_xcb_got_event(EV_P_
struct ev_io *w,
int revents) {
51 xcb_flush(restore_conn);
55 xcb_generic_event_t *event;
57 if (xcb_connection_has_error(restore_conn)) {
58 DLOG(
"restore X11 connection has an error, reconnecting\n");
63 while ((event = xcb_poll_for_event(restore_conn)) != NULL) {
64 if (event->response_type == 0) {
65 xcb_generic_error_t *error = (xcb_generic_error_t *)event;
66 DLOG(
"X11 Error received (probably harmless)! sequence 0x%x, error_code = %d\n",
67 error->sequence, error->error_code);
73 int type = (
event->response_type & 0x7F);
89 if (restore_conn != NULL) {
107 xcb_disconnect(restore_conn);
114 restore_conn = xcb_connect(NULL, &screen);
115 if (restore_conn == NULL || xcb_connection_has_error(restore_conn)) {
116 if (restore_conn != NULL) {
117 xcb_disconnect(restore_conn);
119 #ifdef I3_ASAN_ENABLED 120 __lsan_do_leak_check();
122 errx(EXIT_FAILURE,
"Cannot open display\n");
125 xcb_watcher =
scalloc(1,
sizeof(
struct ev_io));
127 xcb_prepare =
scalloc(1,
sizeof(
struct ev_prepare));
129 ev_io_init(xcb_watcher, restore_xcb_got_event, xcb_get_file_descriptor(restore_conn), EV_READ);
136 ev_prepare_start(
main_loop, xcb_prepare);
140 xcb_change_gc(restore_conn, state->
gc, XCB_GC_FOREGROUND,
141 (uint32_t[]){config.client.placeholder.background.colorpixel});
142 xcb_poly_fill_rectangle(restore_conn, state->
pixmap, state->
gc, 1,
143 (xcb_rectangle_t[]){{0, 0, state->rect.width, state->rect.height}});
146 xcb_flush(restore_conn);
147 xcb_aux_sync(restore_conn);
154 char *serialized = NULL;
156 #define APPEND_REGEX(re_name) \ 158 if (swallows->re_name != NULL) { \ 159 sasprintf(&serialized, "%s%s" #re_name "=\"%s\"", (serialized ? serialized : "["), (serialized ? " " : ""), swallows->re_name->pattern); \ 168 if (serialized == NULL) {
169 DLOG(
"This swallows specification is not serializable?!\n");
173 sasprintf(&serialized,
"%s]", serialized);
174 DLOG(
"con %p (placeholder 0x%08x) line %d: %s\n",
state->con,
state->window, n, serialized);
186 int x = (
state->rect.width / 2) - (text_width / 2);
198 con->
type == CT_CON) {
202 XCB_COPY_FROM_PARENT,
203 XCB_COPY_FROM_PARENT,
204 XCB_WINDOW_CLASS_INPUT_OUTPUT,
207 XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK,
209 config.client.placeholder.background.colorpixel,
210 XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_STRUCTURE_NOTIFY,
213 xcb_icccm_wm_hints_t hints;
214 xcb_icccm_wm_hints_set_none(&hints);
215 xcb_icccm_wm_hints_set_input(&hints, 0);
216 xcb_icccm_set_wm_hints(restore_conn, placeholder, &hints);
220 if (con->
name != NULL)
221 xcb_change_property(restore_conn, XCB_PROP_MODE_REPLACE, placeholder,
222 A__NET_WM_NAME, A_UTF8_STRING, 8, strlen(con->
name), con->
name);
223 DLOG(
"Created placeholder window 0x%08x for leaf container %p / %s\n",
224 placeholder, con, con->
name);
227 state->
window = placeholder;
230 state->
pixmap = xcb_generate_id(restore_conn);
233 state->
gc = xcb_generate_id(restore_conn);
234 xcb_create_gc(restore_conn, state->
gc, state->
pixmap, XCB_GC_GRAPHICS_EXPOSURES, (uint32_t[]){0});
241 temp_id->
dock = M_DONTCHECK;
242 temp_id->
id = placeholder;
250 TAILQ_FOREACH(child, &(con->floating_head), floating_windows) {
267 TAILQ_FOREACH(child, &(parent->floating_head), floating_windows) {
271 xcb_flush(restore_conn);
284 if (state->
window != placeholder)
287 xcb_destroy_window(restore_conn, state->
window);
288 xcb_free_pixmap(restore_conn, state->
pixmap);
289 xcb_free_gc(restore_conn, state->
gc);
292 DLOG(
"placeholder window 0x%08x destroyed.\n", placeholder);
296 DLOG(
"0x%08x is not a placeholder window, ignoring.\n", placeholder);
303 if (state->
window != event->window)
306 DLOG(
"refreshing window 0x%08x contents (con %p)\n", state->
window, state->
con);
312 xcb_copy_area(restore_conn, state->
pixmap, state->
window, state->
gc,
313 event->x, event->y, event->x, event->y,
314 event->width, event->height);
315 xcb_flush(restore_conn);
319 ELOG(
"Received ExposeEvent for unknown window 0x%08x\n", event->window);
331 if (state->
window != event->window)
334 DLOG(
"ConfigureNotify: window 0x%08x has now width=%d, height=%d (con %p)\n",
335 state->
window, event->width, event->height, state->
con);
340 xcb_free_pixmap(restore_conn, state->
pixmap);
341 xcb_free_gc(restore_conn, state->
gc);
343 state->
pixmap = xcb_generate_id(restore_conn);
346 state->
gc = xcb_generate_id(restore_conn);
347 xcb_create_gc(restore_conn, state->
gc, state->
pixmap, XCB_GC_GRAPHICS_EXPOSURES, (uint32_t[]){0});
350 xcb_copy_area(restore_conn, state->
pixmap, state->
window, state->
gc,
352 xcb_flush(restore_conn);
356 ELOG(
"Received ConfigureNotify for unknown window 0x%08x\n", event->window);
364 case XCB_CONFIGURE_NOTIFY:
368 DLOG(
"Received unhandled X11 event of type %d\n", type);
void draw_text(i3String *text, xcb_drawable_t drawable, xcb_gcontext_t gc, xcb_visualtype_t *visual, int x, int y, int max_width)
Draws text onto the specified X drawable (normally a pixmap) at the specified coordinates (from the t...
void i3string_free(i3String *str)
Free an i3String.
xcb_window_t window
The X11 placeholder window.
static void restore_xcb_prepare_cb(EV_P_ ev_prepare *w, int revents)
#define TAILQ_ENTRY(type)
static void configure_notify(xcb_configure_notify_event_t *event)
static struct ev_check * xcb_check
Rect rect
Current size of the placeholder window (to detect size changes).
void set_font_colors(xcb_gcontext_t gc, color_t foreground, color_t background)
Defines the colors to be used for the forthcoming draw_text calls.
int height
The height of the font, built from font_ascent + font_descent.
xcb_gcontext_t gc
The graphics context for “pixmap”.
struct Config::config_client client
static void update_placeholder_contents(placeholder_state *state)
void restore_connect(void)
Opens a separate connection to X11 for placeholder windows when restoring layouts.
static void open_placeholder_window(Con *con)
bool con_is_leaf(Con *con)
Returns true when this node is a leaf node (has no children)
void restore_open_placeholder_windows(Con *parent)
Open placeholder windows for all children of parent.
static void restore_xcb_check_cb(EV_P_ ev_check *w, int revents)
static void expose_event(xcb_expose_event_t *event)
i3String * i3string_from_utf8(const char *from_utf8)
Build an i3String from an UTF-8 encoded string.
Stores a rectangle, for example the size of a window, the child window etc.
#define TAILQ_INSERT_TAIL(head, elm, field)
static TAILQ_HEAD(state_head, placeholder_state)
xcb_connection_t * conn
XCB connection and root screen.
#define TAILQ_HEAD_INITIALIZER(head)
#define TAILQ_FOREACH(var, head, field)
int sasprintf(char **strp, const char *fmt,...)
Safe-wrapper around asprintf which exits if it returns -1 (meaning that there is no more memory avail...
#define TAILQ_FIRST(head)
void * scalloc(size_t num, size_t size)
Safe-wrapper around calloc which exits if malloc returns NULL (meaning that there is no more memory a...
A "match" is a data structure which acts like a mask or expression to match certain windows or not...
#define TAILQ_REMOVE(head, elm, field)
void match_init(Match *match)
struct Colortriple placeholder
int predict_text_width(i3String *text)
Predict the text width in pixels for the given text.
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
A 'Con' represents everything from the X11 root window down to a single X11 window.
Con * con
The container to which this placeholder window belongs.
struct _i3String i3String
Opaque data structure for storing strings.
#define TAILQ_EMPTY(head)
#define APPEND_REGEX(re_name)
static void restore_handle_event(int type, xcb_generic_event_t *event)
struct placeholder_state placeholder_state
bool restore_kill_placeholder(xcb_window_t placeholder)
Kill the placeholder window, if placeholder refers to a placeholder window.
xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t depth, xcb_visualid_t visual, uint16_t window_class, enum xcursor_cursor_t cursor, bool map, uint32_t mask, uint32_t *values)
Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking...
#define TAILQ_INSERT_HEAD(head, elm, field)
xcb_pixmap_t pixmap
The pixmap to render on (back buffer).
struct ev_loop * main_loop