2 * vim:ts=4:sw=4:expandtab
8 /** Stores the X11 window ID of the currently focused window */
9 extern xcb_window_t focused_id;
12 * Initializes the X11 part for the given container. Called exactly once for
13 * every container from con_new().
16 void x_con_init(Con *con);
19 * Moves a child window from Container src to Container dest.
22 void x_move_win(Con *src, Con *dest);
25 * Reparents the child window of the given container (necessary for sticky
26 * containers). The reparenting happens in the next call of x_push_changes().
29 void x_reparent_child(Con *con, Con *old);
32 * Re-initializes the associated X window state for this container. You have
33 * to call this when you assign a client to an empty container to ensure that
34 * its state gets updated correctly.
37 void x_reinit(Con *con);
40 * Kills the window decoration associated with the given container.
43 void x_con_kill(Con *con);
46 * Returns true if the client supports the given protocol atom (like WM_DELETE_WINDOW)
49 bool window_supports_protocol(xcb_window_t window, xcb_atom_t atom);
52 * Kills the given X11 window using WM_DELETE_WINDOW (if supported).
55 void x_window_kill(xcb_window_t window);
58 * Draws the decoration of the given container onto its parent.
61 void x_draw_decoration(Con *con);
64 * This function pushes the properties of each node of the layout tree to
65 * X11 if they have changed (like the map state, position of the window, …).
66 * It recursively traverses all children of the given node.
69 void x_push_node(Con *con);
72 * Pushes all changes (state of each node, see x_push_node() and the window
76 void x_push_changes(Con *con);
79 * Raises the specified container in the internal stack of X windows. The
80 * next call to x_push_changes() will make the change visible in X11.
83 void x_raise_con(Con *con);
86 * Sets the WM_NAME property (so, no UTF8, but used only for debugging anyways)
87 * of the given name. Used for properly tagging the windows for easily spotting
88 * i3 windows in xwininfo -root -all.
91 void x_set_name(Con *con, const char *name);
94 * Sets up i3 specific atoms (I3_SOCKET_PATH and I3_CONFIG_PATH)
97 void x_set_i3_atoms();