]> git.sur5r.net Git - i3/i3/blob - include/restore_layout.h
Merge branch 'release-4.16.1'
[i3/i3] / include / restore_layout.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * restore_layout.c: Everything for restored containers that is not pure state
8  *                   parsing (which can be found in load_layout.c).
9  *
10  */
11 #pragma once
12
13 #include <config.h>
14
15 /**
16  * Opens a separate connection to X11 for placeholder windows when restoring
17  * layouts. This is done as a safety measure (users can xkill a placeholder
18  * window without killing their window manager) and for better isolation, both
19  * on the wire to X11 and thus also in the code.
20  *
21  */
22 void restore_connect(void);
23
24 /**
25  * Open placeholder windows for all children of parent. The placeholder window
26  * will vanish as soon as a real window is swallowed by the container. Until
27  * then, it exposes the criteria that must be fulfilled for a window to be
28  * swallowed by this container.
29  *
30  */
31 void restore_open_placeholder_windows(Con *con);
32
33 /**
34  * Kill the placeholder window, if placeholder refers to a placeholder window.
35  * This function is called when manage.c puts a window into an existing
36  * container. In order not to leak resources, we need to destroy the window and
37  * all associated X11 objects (pixmap/gc).
38  *
39  */
40 bool restore_kill_placeholder(xcb_window_t placeholder);