2009-05-23 16:34:03 +02:00
|
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-05-23 16:34:03 +02:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2009-05-23 16:34:03 +02:00
|
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* floating.c: Floating windows.
|
2009-05-23 16:34:03 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
|
#pragma once
|
2009-05-23 16:34:03 +02:00
|
|
|
|
|
2016-10-11 09:13:35 +02:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#include "tree.h"
|
|
|
|
|
|
2009-06-24 17:40:34 +02:00
|
|
|
|
/** Callback for dragging */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
typedef void (*callback_t)(Con *, Rect *, uint32_t, uint32_t, const void *);
|
2010-03-07 19:00:34 +01:00
|
|
|
|
|
|
|
|
|
/** Macro to create a callback function for dragging */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
#define DRAGGING_CB(name) \
|
|
|
|
|
static void name(Con *con, Rect *old_rect, uint32_t new_x, \
|
|
|
|
|
uint32_t new_y, const void *extra)
|
2009-06-24 17:40:34 +02:00
|
|
|
|
|
|
|
|
|
/** On which border was the dragging initiated? */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
typedef enum { BORDER_LEFT = (1 << 0),
|
|
|
|
|
BORDER_RIGHT = (1 << 1),
|
|
|
|
|
BORDER_TOP = (1 << 2),
|
|
|
|
|
BORDER_BOTTOM = (1 << 3) } border_t;
|
2009-06-24 17:40:34 +02:00
|
|
|
|
|
2009-05-23 16:34:03 +02:00
|
|
|
|
/**
|
2010-06-28 21:40:17 +02:00
|
|
|
|
* Enables floating mode for the given container by detaching it from its
|
|
|
|
|
* parent, creating a new container around it and storing this container in the
|
|
|
|
|
* floating_windows list of the workspace.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_enable(Con *con, bool automatic);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Disables floating mode for the given container by re-attaching the container
|
|
|
|
|
* to its old parent.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_disable(Con *con, bool automatic);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Calls floating_enable() for tiling containers and floating_disable() for
|
|
|
|
|
* floating containers.
|
2009-05-23 16:34:03 +02:00
|
|
|
|
*
|
2009-06-29 21:54:51 +02:00
|
|
|
|
* If the automatic flag is set to true, this was an automatic update by a
|
|
|
|
|
* change of the window class from the application which can be overwritten by
|
|
|
|
|
* the user.
|
2009-05-31 00:31:18 +02:00
|
|
|
|
*
|
2009-05-23 16:34:03 +02:00
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
|
void toggle_floating_mode(Con *con, bool automatic);
|
2009-05-23 16:34:03 +02:00
|
|
|
|
|
2010-12-31 01:38:17 +01:00
|
|
|
|
/**
|
|
|
|
|
* Raises the given container in the list of floating containers
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_raise_con(Con *con);
|
|
|
|
|
|
2011-04-18 19:28:03 +02:00
|
|
|
|
/**
|
|
|
|
|
* Checks if con’s coordinates are within its workspace and re-assigns it to
|
|
|
|
|
* the actual workspace if not.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
bool floating_maybe_reassign_ws(Con *con);
|
|
|
|
|
|
2015-03-30 09:10:40 +02:00
|
|
|
|
/**
|
|
|
|
|
* Centers a floating con above the specified rect.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_center(Con *con, Rect rect);
|
|
|
|
|
|
2015-05-03 00:19:26 +02:00
|
|
|
|
/**
|
|
|
|
|
* Moves the given floating con to the current pointer position.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_move_to_pointer(Con *con);
|
|
|
|
|
|
2009-05-23 16:34:03 +02:00
|
|
|
|
/**
|
|
|
|
|
* Called when the user clicked on the titlebar of a floating window.
|
|
|
|
|
* Calls the drag_pointer function with the drag_window callback
|
|
|
|
|
*
|
|
|
|
|
*/
|
2011-11-10 20:17:36 +01:00
|
|
|
|
void floating_drag_window(Con *con, const xcb_button_press_event_t *event);
|
2009-05-23 16:34:03 +02:00
|
|
|
|
|
2009-08-22 07:49:28 +02:00
|
|
|
|
/**
|
2010-03-12 02:59:16 +01:00
|
|
|
|
* Called when the user clicked on a floating window while holding the
|
|
|
|
|
* floating_modifier and the right mouse button.
|
2009-08-22 07:49:28 +02:00
|
|
|
|
* Calls the drag_pointer function with the resize_window callback
|
|
|
|
|
*
|
|
|
|
|
*/
|
2011-11-10 20:17:36 +01:00
|
|
|
|
void floating_resize_window(Con *con, const bool proportional, const xcb_button_press_event_t *event);
|
2009-08-22 07:49:28 +02:00
|
|
|
|
|
2012-11-22 05:15:49 +01:00
|
|
|
|
/**
|
2012-11-25 20:55:49 +01:00
|
|
|
|
* Called when a floating window is created or resized.
|
|
|
|
|
* This function resizes the window if its size is higher or lower than the
|
|
|
|
|
* configured maximum/minimum size, respectively.
|
2012-11-22 05:15:49 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2012-11-25 20:55:49 +01:00
|
|
|
|
void floating_check_size(Con *floating_con);
|
2012-11-22 05:15:49 +01:00
|
|
|
|
|
2009-06-24 17:40:34 +02:00
|
|
|
|
/**
|
2013-11-01 01:36:31 +01:00
|
|
|
|
* This is the return value of a drag operation like drag_pointer.
|
|
|
|
|
*
|
|
|
|
|
* DRAGGING will indicate the drag action is still in progress and can be
|
|
|
|
|
* continued or resolved.
|
|
|
|
|
*
|
|
|
|
|
* DRAG_SUCCESS will indicate the intention of the drag action should be
|
|
|
|
|
* carried out.
|
|
|
|
|
*
|
|
|
|
|
* DRAG_REVERT will indicate an attempt should be made to restore the state of
|
|
|
|
|
* the involved windows to their condition before the drag.
|
|
|
|
|
*
|
|
|
|
|
* DRAG_ABORT will indicate that the intention of the drag action cannot be
|
|
|
|
|
* carried out (e.g. because the window has been unmapped).
|
2009-06-24 17:40:34 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2013-11-01 01:36:31 +01:00
|
|
|
|
typedef enum {
|
|
|
|
|
DRAGGING = 0,
|
|
|
|
|
DRAG_SUCCESS,
|
|
|
|
|
DRAG_REVERT,
|
|
|
|
|
DRAG_ABORT
|
|
|
|
|
} drag_result_t;
|
2013-09-26 02:52:59 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function grabs your pointer and keyboard and lets you drag stuff around
|
|
|
|
|
* (borders). Every time you move your mouse, an XCB_MOTION_NOTIFY event will
|
|
|
|
|
* be received and the given callback will be called with the parameters
|
|
|
|
|
* specified (client, border on which the click originally was), the original
|
|
|
|
|
* rect of the client, the event and the new coordinates (x, y).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
drag_result_t drag_pointer(Con *con, const xcb_button_press_event_t *event,
|
2014-06-19 11:20:32 +02:00
|
|
|
|
xcb_window_t confine_to, border_t border, int cursor,
|
|
|
|
|
callback_t callback, const void *extra);
|
2009-06-24 17:40:34 +02:00
|
|
|
|
|
2011-12-18 18:24:27 +01:00
|
|
|
|
/**
|
|
|
|
|
* Repositions the CT_FLOATING_CON to have the coordinates specified by
|
|
|
|
|
* newrect, but only if the coordinates are not out-of-bounds. Also reassigns
|
|
|
|
|
* the floating con to a different workspace if this move was across different
|
|
|
|
|
* outputs.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-03-18 01:41:12 +01:00
|
|
|
|
bool floating_reposition(Con *con, Rect newrect);
|
2011-12-18 18:24:27 +01:00
|
|
|
|
|
2015-09-05 08:31:45 +02:00
|
|
|
|
/**
|
|
|
|
|
* Sets size of the CT_FLOATING_CON to specified dimensions. Might limit the
|
|
|
|
|
* actual size with regard to size constraints taken from user settings.
|
|
|
|
|
* Additionally, the dimensions may be upscaled until they're divisible by the
|
|
|
|
|
* window's size hints.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_resize(Con *floating_con, int x, int y);
|
|
|
|
|
|
2012-01-21 16:07:53 +01:00
|
|
|
|
/**
|
|
|
|
|
* Fixes the coordinates of the floating window whenever the window gets
|
|
|
|
|
* reassigned to a different output (or when the output’s rect changes).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect);
|