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
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* © 2009-2011 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
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#ifndef _FLOATING_H
|
|
|
|
|
#define _FLOATING_H
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#include "tree.h"
|
|
|
|
|
|
2009-06-24 17:40:34 +02:00
|
|
|
|
/** Callback for dragging */
|
2011-11-10 20:17:36 +01: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 */
|
|
|
|
|
#define DRAGGING_CB(name) \
|
2010-03-27 15:25:51 +01:00
|
|
|
|
static void name(Con *con, Rect *old_rect, uint32_t new_x, \
|
2011-11-10 20:17:36 +01:00
|
|
|
|
uint32_t new_y, const void *extra)
|
2009-06-24 17:40:34 +02:00
|
|
|
|
|
|
|
|
|
/** On which border was the dragging initiated? */
|
2010-03-12 01:31:48 +01: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);
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#if 0
|
2009-06-24 17:12:12 +02:00
|
|
|
|
/**
|
2009-06-29 21:54:51 +02:00
|
|
|
|
* Removes the floating client from its workspace and attaches it to the new
|
|
|
|
|
* workspace. This is centralized here because it may happen if you move it
|
|
|
|
|
* via keyboard and if you move it using your mouse.
|
2009-06-24 17:12:12 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_assign_to_workspace(Client *client, Workspace *new_workspace);
|
|
|
|
|
|
2009-05-23 16:34:03 +02:00
|
|
|
|
/**
|
2009-06-29 21:54:51 +02:00
|
|
|
|
* Called whenever the user clicks on a border (not the titlebar!) of a
|
|
|
|
|
* floating window. Determines on which border the user clicked and launches
|
|
|
|
|
* the drag_pointer function with the resize_callback.
|
2009-05-23 16:34:03 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-06-29 21:54:51 +02:00
|
|
|
|
int floating_border_click(xcb_connection_t *conn, Client *client,
|
|
|
|
|
xcb_button_press_event_t *event);
|
2009-05-23 16:34:03 +02:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#endif
|
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
|
|
|
|
|
2010-06-28 22:23:32 +02:00
|
|
|
|
#if 0
|
2009-06-14 01:04:59 +02:00
|
|
|
|
/**
|
|
|
|
|
* Changes focus in the given direction for floating clients.
|
|
|
|
|
*
|
|
|
|
|
* Changing to the left/right means going to the previous/next floating client,
|
|
|
|
|
* changing to top/bottom means cycling through the Z-index.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-06-29 21:54:51 +02:00
|
|
|
|
void floating_focus_direction(xcb_connection_t *conn, Client *currently_focused,
|
|
|
|
|
direction_t direction);
|
2009-06-14 01:04:59 +02:00
|
|
|
|
|
2009-06-19 12:57:21 +02:00
|
|
|
|
/**
|
|
|
|
|
* Moves the client 10px to the specified direction.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-06-29 21:54:51 +02:00
|
|
|
|
void floating_move(xcb_connection_t *conn, Client *currently_focused,
|
|
|
|
|
direction_t direction);
|
2009-06-19 12:57:21 +02:00
|
|
|
|
|
2009-06-19 13:59:29 +02:00
|
|
|
|
/**
|
|
|
|
|
* Hides all floating clients (or show them if they are currently hidden) on
|
|
|
|
|
* the specified workspace.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_toggle_hide(xcb_connection_t *conn, Workspace *workspace);
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#endif
|
2009-06-24 17:40:34 +02:00
|
|
|
|
/**
|
|
|
|
|
* This function grabs your pointer 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).
|
|
|
|
|
*
|
|
|
|
|
*/
|
2011-11-10 20:17:36 +01:00
|
|
|
|
void drag_pointer(Con *con, const xcb_button_press_event_t *event,
|
2010-03-07 19:00:34 +01:00
|
|
|
|
xcb_window_t confine_to, border_t border, callback_t callback,
|
2011-11-10 20:17:36 +01:00
|
|
|
|
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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void floating_reposition(Con *con, Rect newrect);
|
|
|
|
|
|
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);
|
|
|
|
|
|
2009-05-23 16:34:03 +02:00
|
|
|
|
#endif
|