2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
7 * floating.c: Floating windows.
14 /** Callback for dragging */
15 typedef void (*callback_t)(Con *, Rect *, uint32_t, uint32_t, const void *);
17 /** Macro to create a callback function for dragging */
18 #define DRAGGING_CB(name) \
19 static void name(Con *con, Rect *old_rect, uint32_t new_x, \
20 uint32_t new_y, const void *extra)
22 /** On which border was the dragging initiated? */
23 typedef enum { BORDER_LEFT = (1 << 0),
24 BORDER_RIGHT = (1 << 1),
25 BORDER_TOP = (1 << 2),
26 BORDER_BOTTOM = (1 << 3) } border_t;
29 * Enables floating mode for the given container by detaching it from its
30 * parent, creating a new container around it and storing this container in the
31 * floating_windows list of the workspace.
34 void floating_enable(Con *con, bool automatic);
37 * Disables floating mode for the given container by re-attaching the container
41 void floating_disable(Con *con, bool automatic);
44 * Calls floating_enable() for tiling containers and floating_disable() for
45 * floating containers.
47 * If the automatic flag is set to true, this was an automatic update by a
48 * change of the window class from the application which can be overwritten by
52 void toggle_floating_mode(Con *con, bool automatic);
55 * Raises the given container in the list of floating containers
58 void floating_raise_con(Con *con);
61 * Checks if con’s coordinates are within its workspace and re-assigns it to
62 * the actual workspace if not.
65 bool floating_maybe_reassign_ws(Con *con);
69 * Removes the floating client from its workspace and attaches it to the new
70 * workspace. This is centralized here because it may happen if you move it
71 * via keyboard and if you move it using your mouse.
74 void floating_assign_to_workspace(Client *client, Workspace *new_workspace);
77 * Called whenever the user clicks on a border (not the titlebar!) of a
78 * floating window. Determines on which border the user clicked and launches
79 * the drag_pointer function with the resize_callback.
82 int floating_border_click(xcb_connection_t *conn, Client *client,
83 xcb_button_press_event_t *event);
87 * Called when the user clicked on the titlebar of a floating window.
88 * Calls the drag_pointer function with the drag_window callback
91 void floating_drag_window(Con *con, const xcb_button_press_event_t *event);
94 * Called when the user clicked on a floating window while holding the
95 * floating_modifier and the right mouse button.
96 * Calls the drag_pointer function with the resize_window callback
99 void floating_resize_window(Con *con, const bool proportional, const xcb_button_press_event_t *event);
102 * Called when a floating window is created or resized.
103 * This function resizes the window if its size is higher or lower than the
104 * configured maximum/minimum size, respectively.
107 void floating_check_size(Con *floating_con);
111 * Changes focus in the given direction for floating clients.
113 * Changing to the left/right means going to the previous/next floating client,
114 * changing to top/bottom means cycling through the Z-index.
117 void floating_focus_direction(xcb_connection_t *conn, Client *currently_focused,
118 direction_t direction);
121 * Moves the client 10px to the specified direction.
124 void floating_move(xcb_connection_t *conn, Client *currently_focused,
125 direction_t direction);
128 * Hides all floating clients (or show them if they are currently hidden) on
129 * the specified workspace.
132 void floating_toggle_hide(xcb_connection_t *conn, Workspace *workspace);
136 * This is the return value of a drag operation like drag_pointer.
138 * DRAGGING will indicate the drag action is still in progress and can be
139 * continued or resolved.
141 * DRAG_SUCCESS will indicate the intention of the drag action should be
144 * DRAG_REVERT will indicate an attempt should be made to restore the state of
145 * the involved windows to their condition before the drag.
147 * DRAG_ABORT will indicate that the intention of the drag action cannot be
148 * carried out (e.g. because the window has been unmapped).
159 * This function grabs your pointer and keyboard and lets you drag stuff around
160 * (borders). Every time you move your mouse, an XCB_MOTION_NOTIFY event will
161 * be received and the given callback will be called with the parameters
162 * specified (client, border on which the click originally was), the original
163 * rect of the client, the event and the new coordinates (x, y).
166 drag_result_t drag_pointer(Con *con, const xcb_button_press_event_t *event,
167 xcb_window_t confine_to, border_t border, int cursor,
168 callback_t callback, const void *extra);
171 * Repositions the CT_FLOATING_CON to have the coordinates specified by
172 * newrect, but only if the coordinates are not out-of-bounds. Also reassigns
173 * the floating con to a different workspace if this move was across different
177 void floating_reposition(Con *con, Rect newrect);
180 * Fixes the coordinates of the floating window whenever the window gets
181 * reassigned to a different output (or when the output’s rect changes).
184 void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect);