2 * vim:ts=4:sw=4:expandtab
9 * Initializes the X11 part for the given container. Called exactly once for
10 * every container from con_new().
13 void x_con_init(Con *con);
16 * Re-initializes the associated X window state for this container. You have
17 * to call this when you assign a client to an empty container to ensure that
18 * its state gets updated correctly.
21 void x_reinit(Con *con);
24 * Kills the window decoration associated with the given container.
27 void x_con_kill(Con *con);
30 * Kills the given X11 window using WM_DELETE_WINDOW (if supported).
33 void x_window_kill(xcb_window_t window);
36 * Draws the decoration of the given container onto its parent.
39 void x_draw_decoration(Con *con);
42 * Pushes all changes (state of each node, see x_push_node() and the window
46 void x_push_changes(Con *con);
49 * Raises the specified container in the internal stack of X windows. The
50 * next call to x_push_changes() will make the change visible in X11.
53 void x_raise_con(Con *con);