]> git.sur5r.net Git - i3/i3/blob - include/floating.h
Implement clients going automatically into floating
[i3/i3] / include / floating.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #ifndef _FLOATING_H
12 #define _FLOATING_H
13
14 /**
15  * Enters floating mode for the given client.
16  * Correctly takes care of the position/size (separately stored for tiling/floating mode)
17  * and repositions/resizes/redecorates the client.
18  *
19  * If the automatic flag is set to true, this was an automatic update by a change of the
20  * window class from the application which can be overwritten by the user.
21  *
22  */
23 void toggle_floating_mode(xcb_connection_t *conn, Client *client, bool automatic);
24
25 /**
26  * Called whenever the user clicks on a border (not the titlebar!) of a floating window.
27  * Determines on which border the user clicked and launches the drag_pointer function
28  * with the resize_callback.
29  *
30  */
31 int floating_border_click(xcb_connection_t *conn, Client *client, xcb_button_press_event_t *event);
32
33 /**
34  * Called when the user clicked on the titlebar of a floating window.
35  * Calls the drag_pointer function with the drag_window callback
36  *
37  */
38 void floating_drag_window(xcb_connection_t *conn, Client *client, xcb_button_press_event_t *event);
39
40 #endif