]> git.sur5r.net Git - i3/i3/blob - include/manage.h
first step of the big refactoring ("tree" branch).
[i3/i3] / include / manage.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <xcb/xcb.h>
12
13 #include "data.h"
14
15 #ifndef _MANAGE_H
16 #define _MANAGE_H
17
18 /**
19  * Go through all existing windows (if the window manager is restarted) and
20  * manage them
21  *
22  */
23 void manage_existing_windows(xcb_window_t root);
24
25 /**
26  * Restores the geometry of each window by reparenting it to the root window
27  * at the position of its frame.
28  *
29  * This is to be called *only* before exiting/restarting i3 because of evil
30  * side-effects which are to be expected when continuing to run i3.
31  *
32  */
33 void restore_geometry();
34
35 /**
36  * Do some sanity checks and then reparent the window.
37  *
38  */
39 void manage_window(xcb_window_t window,
40                    xcb_get_window_attributes_cookie_t cookie,
41                    bool needs_to_be_mapped);
42
43 #if 0
44 /**
45  * reparent_window() gets called when a new window was opened and becomes a
46  * child of the root window, or it gets called by us when we manage the
47  * already existing windows at startup.
48  *
49  * Essentially, this is the point where we take over control.
50  *
51  */
52 void reparent_window(xcb_connection_t *conn, xcb_window_t child,
53                      xcb_visualid_t visual, xcb_window_t root, uint8_t depth,
54                      int16_t x, int16_t y, uint16_t width, uint16_t height,
55                      uint32_t border_width);
56
57 #endif
58 #endif