i3
|
#include "all.h"
Go to the source code of this file.
Data Structures | |
struct | bfs_entry |
Macros | |
#define | I3__FILE__ "con.c" |
Functions | |
static void | con_on_remove_child (Con *con) |
static void | con_force_split_parents_redraw (Con *con) |
Con * | con_new_skeleton (Con *parent, i3Window *window) |
Create a new container (and attach it to the given parent, if not NULL). More... | |
Con * | con_new (Con *parent, i3Window *window) |
void | con_attach (Con *con, Con *parent, bool ignore_focus) |
Attaches the given container to the given parent. More... | |
void | con_detach (Con *con) |
Detaches the given container from its current parent. More... | |
void | con_focus (Con *con) |
Sets input focus to the given container. More... | |
bool | con_is_leaf (Con *con) |
Returns true when this node is a leaf node (has no children) More... | |
bool | con_has_children (Con *con) |
Returns true if this node has regular or floating children. More... | |
bool | con_is_split (Con *con) |
bool | con_accepts_window (Con *con) |
Returns true if this node accepts a window (if the node swallows windows, it might already have swallowed enough and cannot hold any more). More... | |
Con * | con_get_output (Con *con) |
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on. More... | |
Con * | con_get_workspace (Con *con) |
Gets the workspace container this node is on. More... | |
Con * | con_parent_with_orientation (Con *con, orientation_t orientation) |
Searches parenst of the given 'con' until it reaches one with the specified 'orientation'. More... | |
Con * | con_get_fullscreen_con (Con *con, int fullscreen_mode) |
Returns the first fullscreen node below this node. More... | |
bool | con_is_internal (Con *con) |
Returns true if the container is internal, such as __i3_scratch. More... | |
bool | con_is_floating (Con *con) |
Returns true if the node is floating. More... | |
Con * | con_inside_floating (Con *con) |
Checks if the given container is either floating or inside some floating container. More... | |
bool | con_inside_focused (Con *con) |
Checks if the given container is inside a focused container. More... | |
Con * | con_by_window_id (xcb_window_t window) |
Returns the container with the given client window ID or NULL if no such container exists. More... | |
Con * | con_by_frame_id (xcb_window_t frame) |
Returns the container with the given frame ID or NULL if no such container exists. More... | |
Con * | con_for_window (Con *con, i3Window *window, Match **store_match) |
Returns the first container below 'con' which wants to swallow this window TODO: priority. More... | |
int | con_num_children (Con *con) |
Returns the number of children of this container. More... | |
void | con_fix_percent (Con *con) |
Updates the percent attribute of the children of the given container. More... | |
void | con_toggle_fullscreen (Con *con, int fullscreen_mode) |
Toggles fullscreen mode for the given container. More... | |
void | con_move_to_workspace (Con *con, Con *workspace, bool fix_coordinates, bool dont_warp) |
Moves the given container to the currently focused container on the given workspace. More... | |
int | con_orientation (Con *con) |
Returns the orientation of the given container (for stacked containers, vertical orientation is used regardless of the actual orientation of the container). More... | |
Con * | con_next_focused (Con *con) |
Returns the container which will be focused next when the given container is not available anymore. More... | |
Con * | con_get_next (Con *con, char way, orientation_t orientation) |
Get the next/previous container in the specified orientation. More... | |
Con * | con_descend_focused (Con *con) |
Returns the focused con inside this client, descending the tree as far as possible. More... | |
Con * | con_descend_tiling_focused (Con *con) |
Returns the focused con inside this client, descending the tree as far as possible. More... | |
Con * | con_descend_direction (Con *con, direction_t direction) |
Rect | con_border_style_rect (Con *con) |
Returns a "relative" Rect which contains the amount of pixels that need to be added to the original Rect to get the final position (obviously the amount of pixels for normal, 1pixel and borderless are different). More... | |
adjacent_t | con_adjacent_borders (Con *con) |
Returns adjacent borders of the window. More... | |
int | con_border_style (Con *con) |
Use this function to get a container’s border style. More... | |
void | con_set_border_style (Con *con, int border_style, int border_width) |
Sets the given border style on con, correctly keeping the position/size of a floating window. More... | |
void | con_set_layout (Con *con, layout_t layout) |
This function changes the layout of a given container. More... | |
void | con_toggle_layout (Con *con, const char *toggle_mode) |
This function toggles the layout of a given container. More... | |
Rect | con_minimum_size (Con *con) |
Determines the minimum size of the given con by looking at its children (for split/stacked/tabbed cons). More... | |
bool | con_fullscreen_permits_focusing (Con *con) |
Returns true if changing the focus to con would be allowed considering the fullscreen focus constraints. More... | |
bool | con_has_urgent_child (Con *con) |
Checks if the given container has an urgent child. More... | |
void | con_update_parents_urgency (Con *con) |
Make all parent containers urgent if con is urgent or clear the urgent flag of all parent containers if there are no more urgent children left. More... | |
void | con_set_urgency (Con *con, bool urgent) |
Set urgency flag to the container, all the parent containers and the workspace. More... | |
char * | con_get_tree_representation (Con *con) |
Create a string representing the subtree under con. More... | |
Variables | |
char * | colors [] |
bool con_accepts_window | ( | Con * | con | ) |
Returns true if this node accepts a window (if the node swallows windows, it might already have swallowed enough and cannot hold any more).
Definition at line 275 of file con.c.
References con_is_split(), DLOG, Con::type, and Con::window.
Referenced by manage_window().
adjacent_t con_adjacent_borders | ( | Con * | con | ) |
Returns adjacent borders of the window.
We need this if hide_edge_borders is enabled.
Definition at line 1119 of file con.c.
References ADJ_LEFT_SCREEN_EDGE, ADJ_LOWER_SCREEN_EDGE, ADJ_NONE, ADJ_RIGHT_SCREEN_EDGE, ADJ_UPPER_SCREEN_EDGE, con_get_workspace(), Rect::height, Con::rect, Rect::width, Startup_Sequence::workspace, Rect::x, and Rect::y.
Referenced by con_border_style_rect().
Attaches the given container to the given parent.
This happens when moving a container or when inserting a new container at a specific place in the tree.
ignore_focus is to just insert the Con at the end (useful when creating a new split container around some containers, that is, detaching and attaching them in order without wanting to mess with the focus in between).
Definition at line 104 of file con.c.
References con_force_split_parents_redraw(), DLOG, focused, L_DEFAULT, Con::num, Con::parent, TAILQ_EMPTY, TAILQ_END, TAILQ_FIRST, TAILQ_FOREACH, TAILQ_INSERT_AFTER, TAILQ_INSERT_BEFORE, TAILQ_INSERT_HEAD, TAILQ_INSERT_TAIL, TAILQ_NEXT, Con::type, Con::window, workspace_attach_to(), and Con::workspace_layout.
Referenced by _create___i3(), cmd_move_workspace_to_output(), cmd_rename_workspace(), con_move_to_workspace(), con_new_skeleton(), con_set_layout(), create_workspace_on_output(), floating_disable(), floating_enable(), init_ws_for_output(), insert_con_into(), json_end_map(), output_init_con(), randr_query_outputs(), tree_split(), workspace_attach_to(), workspace_encapsulate(), workspace_get(), and ws_force_orientation().
int con_border_style | ( | Con * | con | ) |
Use this function to get a container’s border style.
This is important because when inside a stack, the border style is always BS_NORMAL. For tabbed mode, the same applies, with one exception: when the container is borderless and the only element in the tabbed container, the border is not rendered.
For children of a CT_DOCKAREA, the border style is always none.
Definition at line 1143 of file con.c.
References Con::border_style, BS_NONE, BS_NORMAL, con_get_fullscreen_con(), con_num_children(), DLOG, L_STACKED, L_TABBED, Con::layout, Con::parent, and Con::type.
Referenced by con_border_style_rect(), floating_check_size(), floating_enable(), and x_draw_decoration().
Returns a "relative" Rect which contains the amount of pixels that need to be added to the original Rect to get the final position (obviously the amount of pixels for normal, 1pixel and borderless are different).
Definition at line 1073 of file con.c.
References ADJ_LEFT_SCREEN_EDGE, ADJ_LOWER_SCREEN_EDGE, ADJ_NONE, ADJ_RIGHT_SCREEN_EDGE, ADJ_UPPER_SCREEN_EDGE, BS_NONE, BS_NORMAL, con_adjacent_borders(), con_border_style(), con_is_floating(), config, Con::current_border_width, Config::default_border_width, DLOG, Rect::height, Config::hide_edge_borders, Rect::width, Rect::x, and Rect::y.
Referenced by con_set_border_style(), floating_check_size(), floating_enable(), handle_configure_request(), render_con(), and tiling_resize().
Con* con_by_frame_id | ( | xcb_window_t | frame | ) |
Returns the container with the given frame ID or NULL if no such container exists.
Definition at line 465 of file con.c.
References all_cons, bfs_entry::con, Con::frame, and TAILQ_FOREACH.
Referenced by handle_button_press(), handle_enter_notify(), handle_expose_event(), handle_motion_notify(), and handle_unmap_notify_event().
Con* con_by_window_id | ( | xcb_window_t | window | ) |
Returns the container with the given client window ID or NULL if no such container exists.
Definition at line 452 of file con.c.
References all_cons, bfs_entry::con, Window::id, TAILQ_FOREACH, and Con::window.
Referenced by floating_enable(), handle_button_press(), handle_client_message(), handle_clientleader_change(), handle_configure_request(), handle_enter_notify(), handle_focus_in(), handle_hints(), handle_normal_hints(), handle_transient_for(), handle_unmap_notify_event(), handle_windowname_change(), handle_windowname_change_legacy(), handle_windowrole_change(), manage_window(), render_con(), and startup_sequence_get().
Con* con_descend_direction | ( | Con * | con, |
direction_t | direction | ||
) |
Definition at line 1009 of file con.c.
References bfs_entry::con, con_descend_direction(), con_orientation(), D_DOWN, D_LEFT, D_RIGHT, D_UP, DLOG, focused, HORIZ, TAILQ_FIRST, TAILQ_FOREACH, TAILQ_LAST, Con::type, and VERT.
Referenced by _tree_next(), and con_descend_direction().
Returns the focused con inside this client, descending the tree as far as possible.
This comes in handy when attaching a con to a workspace at the currently focused position, for example.
Definition at line 968 of file con.c.
References bfs_entry::con, focused, TAILQ_EMPTY, and TAILQ_FIRST.
Referenced by _tree_next(), _workspace_show(), check_crossing_screen_boundary(), cmd_focus_window_mode(), cmd_resize_floating(), con_move_to_workspace(), con_next_focused(), floating_check_size(), floating_maybe_reassign_ws(), handle_enter_notify(), main(), randr_query_outputs(), render_con(), scratchpad_show(), and tree_move().
Returns the focused con inside this client, descending the tree as far as possible.
This comes in handy when attaching a con to a workspace at the currently focused position, for example.
Works like con_descend_focused but considers only tiling cons.
Definition at line 983 of file con.c.
References bfs_entry::con, focused, TAILQ_FOREACH, and Con::type.
Referenced by floating_disable(), manage_window(), scratchpad_show(), and tree_open_con().
void con_detach | ( | Con * | con | ) |
Detaches the given container from its current parent.
Definition at line 196 of file con.c.
References con_force_split_parents_redraw(), focused, Con::parent, TAILQ_REMOVE, and Con::type.
Referenced by attach_to_workspace(), cmd_move_workspace_to_output(), cmd_rename_workspace(), con_move_to_workspace(), con_set_layout(), floating_enable(), init_ws_for_output(), insert_con_into(), randr_query_outputs(), tree_flatten(), workspace_encapsulate(), and ws_force_orientation().
void con_fix_percent | ( | Con * | con | ) |
Updates the percent attribute of the children of the given container.
This function needs to be called when a window is added or removed from a container.
Definition at line 533 of file con.c.
References con_num_children(), Con::percent, and TAILQ_FOREACH.
Referenced by _create___i3(), attach_to_workspace(), con_move_to_workspace(), floating_disable(), floating_enable(), insert_con_into(), output_init_con(), resize_graphical_handler(), tree_open_con(), and ws_force_orientation().
void con_focus | ( | Con * | con | ) |
Sets input focus to the given container.
Will be updated in X11 in the next run of x_push_changes().
Definition at line 212 of file con.c.
References con_focus(), con_get_workspace(), con_is_leaf(), con_update_parents_urgency(), DLOG, focused, Con::parent, TAILQ_INSERT_HEAD, TAILQ_REMOVE, Con::urgent, and workspace_update_urgent_flag().
Referenced by _tree_next(), _workspace_show(), check_crossing_screen_boundary(), cmd_focus(), cmd_focus_window_mode(), cmd_open(), cmd_rename_workspace(), con_focus(), con_move_to_workspace(), con_set_layout(), floating_disable(), floating_enable(), floating_maybe_reassign_ws(), handle_client_message(), handle_enter_notify(), handle_focus_in(), handle_motion_notify(), init_ws_for_output(), level_down(), level_up(), main(), manage_window(), randr_query_outputs(), route_click(), scratchpad_show(), tree_append_json(), tree_move(), and ws_force_orientation().
Returns the first container below 'con' which wants to swallow this window TODO: priority.
Definition at line 478 of file con.c.
References con_for_window(), match_matches_window(), and TAILQ_FOREACH.
Referenced by con_for_window(), manage_window(), and randr_query_outputs().
|
static |
Definition at line 35 of file con.c.
References con_is_leaf(), Con::deco_render_params, FREE, Con::parent, and Con::type.
Referenced by con_attach(), con_detach(), con_on_remove_child(), and con_set_layout().
bool con_fullscreen_permits_focusing | ( | Con * | con | ) |
Returns true if changing the focus to con would be allowed considering the fullscreen focus constraints.
Specifically, if a fullscreen container or any of its descendants is focused, this function returns true if and only if focusing con would mean that focus would still be visible on screen, i.e., the newly focused container would not be obscured by a fullscreen container.
In the simplest case, if a fullscreen container or any of its descendants is fullscreen, this functions returns true if con is the fullscreen container itself or any of its descendants, as this means focus wouldn't escape the boundaries of the fullscreen container.
In case the fullscreen container is of type CF_OUTPUT, this function returns true if con is on a different workspace, as focus wouldn't be obscured by the fullscreen container that is constrained to a different workspace.
Note that this same logic can be applied to moving containers. If a container can be focused under the fullscreen focus constraints, it can also become a parent or sibling to the currently focused container.
Definition at line 1465 of file con.c.
References con_get_workspace(), focused, Con::fullscreen_mode, Con::parent, and Con::type.
Referenced by _tree_next(), cmd_focus(), cmd_focus_level(), con_move_to_workspace(), and tree_move().
Returns the first fullscreen node below this node.
Definition at line 356 of file con.c.
References bfs_entry::con, Con::fullscreen_mode, smalloc(), TAILQ_EMPTY, TAILQ_FIRST, TAILQ_FOREACH, TAILQ_HEAD, TAILQ_HEAD_INITIALIZER, TAILQ_INSERT_TAIL, and TAILQ_REMOVE.
Referenced by _tree_next(), con_border_style(), con_move_to_workspace(), con_toggle_fullscreen(), handle_configure_request(), IPC_HANDLER(), manage_window(), render_con(), render_l_output(), route_click(), and workspace_is_visible().
Con* con_get_next | ( | Con * | con, |
char | way, | ||
orientation_t | orientation | ||
) |
Get the next/previous container in the specified orientation.
This may travel up until it finds a container with suitable orientation.
Definition at line 931 of file con.c.
References bfs_entry::con, con_orientation(), DLOG, LOG, Con::parent, TAILQ_END, TAILQ_NEXT, TAILQ_PREV, and Con::type.
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on.
Definition at line 294 of file con.c.
References Con::parent, and Con::type.
Referenced by _workspace_apply_default_orientation(), _workspace_show(), con_move_to_workspace(), floating_enable(), floating_maybe_reassign_ws(), init_ws_for_output(), manage_window(), resize_graphical_handler(), route_click(), scratchpad_fix_resolution(), scratchpad_show(), workspace_get(), workspace_is_visible(), workspace_next_on_output(), workspace_prev_on_output(), and workspace_reassign_sticky().
char* con_get_tree_representation | ( | Con * | con | ) |
Create a string representing the subtree under con.
Definition at line 1593 of file con.c.
References Window::class_instance, con_get_tree_representation(), con_is_leaf(), ELOG, L_DEFAULT, L_SPLITH, L_SPLITV, L_STACKED, L_TABBED, Con::layout, sasprintf(), sstrdup(), TAILQ_FIRST, TAILQ_FOREACH, and Con::window.
Referenced by con_get_tree_representation().
Gets the workspace container this node is on.
Definition at line 308 of file con.c.
References Con::parent, and Con::type.
Referenced by _tree_next(), _workspace_show(), check_crossing_screen_boundary(), cmd_focus(), cmd_focus_window_mode(), cmd_move_con_to_workspace(), cmd_move_window_to_center(), cmd_move_workspace_to_output(), cmd_rename_workspace(), con_adjacent_borders(), con_focus(), con_fullscreen_permits_focusing(), con_move_to_workspace(), con_next_focused(), con_set_urgency(), con_toggle_fullscreen(), ewmh_update_current_desktop(), floating_disable(), floating_enable(), handle_button_press(), handle_client_message(), handle_configure_request(), handle_enter_notify(), handle_focus_in(), IPC_HANDLER(), manage_window(), maybe_auto_back_and_forth_workspace(), maybe_back_and_forth(), randr_query_outputs(), route_click(), scratchpad_move(), scratchpad_show(), start_application(), TAILQ_HEAD(), tree_close(), tree_move(), workspace_defer_update_urgent_hint_cb(), workspace_next(), workspace_next_on_output(), workspace_prev(), and workspace_prev_on_output().
bool con_has_children | ( | Con * | con | ) |
Returns true if this node has regular or floating children.
Definition at line 248 of file con.c.
References con_is_leaf(), and TAILQ_EMPTY.
Referenced by cmd_move_con_to_workspace(), cmd_move_con_to_workspace_name(), and cmd_move_con_to_workspace_number().
bool con_has_urgent_child | ( | Con * | con | ) |
Checks if the given container has an urgent child.
Definition at line 1512 of file con.c.
References con_has_urgent_child(), con_is_leaf(), TAILQ_FOREACH, and Con::urgent.
Referenced by con_has_urgent_child(), con_on_remove_child(), and con_update_parents_urgency().
Checks if the given container is either floating or inside some floating container.
It returns the FLOATING_CON container.
Definition at line 421 of file con.c.
References bfs_entry::con, con_inside_floating(), Con::floating, Con::parent, and Con::type.
Referenced by cmd_resize(), con_inside_floating(), con_move_to_workspace(), route_click(), scratchpad_move(), scratchpad_show(), and tree_move().
bool con_inside_focused | ( | Con * | con | ) |
Checks if the given container is inside a focused container.
Definition at line 439 of file con.c.
References con_inside_focused(), focused, and Con::parent.
Referenced by con_inside_focused(), and x_draw_decoration().
bool con_is_floating | ( | Con * | con | ) |
Returns true if the node is floating.
Definition at line 410 of file con.c.
References DLOG, and Con::floating.
Referenced by cmd_move_direction(), cmd_move_window_to_center(), cmd_move_window_to_position(), con_border_style_rect(), con_move_to_workspace(), con_set_border_style(), floating_disable(), floating_enable(), handle_configure_request(), toggle_floating_mode(), and tree_move().
bool con_is_internal | ( | Con * | con | ) |
Returns true if the container is internal, such as __i3_scratch.
Definition at line 402 of file con.c.
References Con::name.
Referenced by _workspace_show(), con_move_to_workspace(), handle_button_press(), IPC_HANDLER(), render_con(), scratchpad_show(), workspace_next(), and workspace_prev().
bool con_is_leaf | ( | Con * | con | ) |
Returns true when this node is a leaf node (has no children)
Definition at line 240 of file con.c.
References TAILQ_EMPTY.
Referenced by con_focus(), con_force_split_parents_redraw(), con_get_tree_representation(), con_has_children(), con_has_urgent_child(), con_is_split(), con_minimum_size(), con_move_to_workspace(), handle_configure_request(), render_con(), tiling_resize(), tree_move(), and x_draw_decoration().
bool con_is_split | ( | Con * | con | ) |
Definition at line 256 of file con.c.
References con_is_leaf(), L_DOCKAREA, L_OUTPUT, and Con::layout.
Referenced by con_accepts_window(), con_minimum_size(), dump_node(), and tree_flatten().
Determines the minimum size of the given con by looking at its children (for split/stacked/tabbed cons).
Will be called when resizing floating cons
Definition at line 1391 of file con.c.
References con_is_leaf(), con_is_split(), con_minimum_size(), Con::deco_rect, DLOG, ELOG, height, Rect::height, L_SPLITH, L_STACKED, L_TABBED, Con::layout, max(), min(), TAILQ_FIRST, TAILQ_FOREACH, Con::type, width, and Rect::width.
Referenced by con_minimum_size().
Moves the given container to the currently focused container on the given workspace.
The fix_coordinates flag will translate the current coordinates (offset from the monitor position basically) to appropriate coordinates on the destination workspace. Not enabling this behaviour comes in handy when this function gets called by floating_maybe_reassign_ws, which will only "move" a floating window when it already changed its coordinates to a different output.
The dont_warp flag disables pointer warping and will be set when this function is called while dragging a floating window.
TODO: is there a better place for this function?
Definition at line 644 of file con.c.
References CALL, con_attach(), con_descend_focused(), con_detach(), con_fix_percent(), con_focus(), con_fullscreen_permits_focusing(), con_get_fullscreen_con(), con_get_output(), con_get_workspace(), con_inside_floating(), con_is_floating(), con_is_internal(), con_is_leaf(), con_move_to_workspace(), con_next_focused(), con_toggle_fullscreen(), conn, DLOG, ELOG, floating_fix_coordinates(), focused, Con::fullscreen_mode, Window::id, LOG, Con::name, output_get_content(), Con::parent, Con::percent, Con::rect, startup_sequence_delete(), startup_sequence_get(), TAILQ_EMPTY, TAILQ_FIRST, TAILQ_FOREACH, Con::type, Con::window, workspace_encapsulate(), workspace_is_visible(), workspace_show(), and x_set_warp_to().
Referenced by cmd_move_con_to_output(), cmd_move_con_to_workspace(), cmd_move_con_to_workspace_back_and_forth(), cmd_move_con_to_workspace_name(), cmd_move_con_to_workspace_number(), con_move_to_workspace(), floating_maybe_reassign_ws(), scratchpad_move(), and scratchpad_show().
Definition at line 88 of file con.c.
References con_new_skeleton(), and x_con_init().
Referenced by _create___i3(), con_set_layout(), create_workspace_on_output(), floating_enable(), output_init_con(), tree_init(), tree_open_con(), tree_restore(), tree_split(), workspace_attach_to(), workspace_encapsulate(), workspace_get(), and ws_force_orientation().
Create a new container (and attach it to the given parent, if not NULL).
This function only initializes the data structures.
Definition at line 50 of file con.c.
References all_cons, colors, con_attach(), con_on_remove_child(), config, Config::default_border, Window::depth, DLOG, scalloc(), TAILQ_INIT, and TAILQ_INSERT_TAIL.
Referenced by con_new(), and TAILQ_HEAD().
Returns the container which will be focused next when the given container is not available anymore.
Called in tree_close and con_move_to_workspace to properly restore focus.
Definition at line 863 of file con.c.
References con_descend_focused(), con_get_workspace(), DLOG, focused, output_get_content(), Con::parent, TAILQ_EMPTY, TAILQ_END, TAILQ_FIRST, TAILQ_NEXT, TAILQ_PREV, and Con::type.
Referenced by con_move_to_workspace(), and tree_close().
int con_num_children | ( | Con * | con | ) |
Returns the number of children of this container.
Definition at line 517 of file con.c.
References TAILQ_FOREACH.
Referenced by _tree_next(), cmd_move_workspace_to_output(), cmd_resize_tiling_direction(), cmd_resize_tiling_width_height(), con_border_style(), con_fix_percent(), con_on_remove_child(), con_set_layout(), floating_enable(), output_change_mode(), render_con(), tiling_resize(), tree_move(), and tree_split().
|
static |
Definition at line 1350 of file con.c.
References con_force_split_parents_redraw(), con_has_urgent_child(), con_num_children(), con_update_parents_urgency(), DLOG, DONT_KILL_WINDOW, ipc_send_event(), LOG, Con::name, TAILQ_EMPTY, tree_close(), Con::type, Con::urgent, and workspace_is_visible().
Referenced by con_new_skeleton().
int con_orientation | ( | Con * | con | ) |
Returns the orientation of the given container (for stacked containers, vertical orientation is used regardless of the actual orientation of the container).
Definition at line 828 of file con.c.
References DLOG, HORIZ, L_DEFAULT, L_DOCKAREA, L_OUTPUT, L_SPLITH, L_SPLITV, L_STACKED, L_TABBED, Con::layout, and VERT.
Referenced by _tree_next(), cmd_resize_tiling_direction(), cmd_resize_tiling_width_height(), con_descend_direction(), con_get_next(), con_parent_with_orientation(), dump_node(), render_con(), tiling_resize(), tiling_resize_for_border(), and tree_flatten().
Con* con_parent_with_orientation | ( | Con * | con, |
orientation_t | orientation | ||
) |
Searches parenst of the given 'con' until it reaches one with the specified 'orientation'.
Aborts when it comes across a floating_con.
Definition at line 320 of file con.c.
References con_orientation(), DLOG, Con::parent, and Con::type.
Referenced by tree_move().
void con_set_border_style | ( | Con * | con, |
int | border_style, | ||
int | border_width | ||
) |
Sets the given border style on con, correctly keeping the position/size of a floating window.
Definition at line 1167 of file con.c.
References Con::border_style, BS_NORMAL, con_border_style_rect(), con_is_floating(), Con::current_border_width, DLOG, Rect::height, Con::parent, Con::rect, render_deco_height(), Rect::width, Rect::x, and Rect::y.
Referenced by cmd_border().
This function changes the layout of a given container.
Use it to handle special cases like changing a whole workspace to stacked/tabbed (creates a new split container before).
Definition at line 1213 of file con.c.
References bfs_entry::con, con_attach(), con_detach(), con_focus(), con_force_split_parents_redraw(), con_new(), con_num_children(), croot, DLOG, L_DEFAULT, L_SPLITH, L_SPLITV, L_STACKED, L_TABBED, Con::last_split_layout, Con::layout, Con::parent, TAILQ_EMPTY, TAILQ_END, TAILQ_FIRST, tree_flatten(), Con::type, and Con::workspace_layout.
Referenced by cmd_layout(), and con_toggle_layout().
void con_set_urgency | ( | Con * | con, |
bool | urgent | ||
) |
Set urgency flag to the container, all the parent containers and the workspace.
Definition at line 1554 of file con.c.
References con_get_workspace(), con_update_parents_urgency(), DLOG, focused, LOG, Con::urgency_timer, Window::urgent, Con::urgent, Con::window, and workspace_update_urgent_flag().
Referenced by handle_client_message(), and handle_hints().
void con_toggle_fullscreen | ( | Con * | con, |
int | fullscreen_mode | ||
) |
Toggles fullscreen mode for the given container.
Fullscreen mode will not be entered when there already is a fullscreen container on this workspace.
Definition at line 576 of file con.c.
References con_get_fullscreen_con(), con_get_workspace(), conn, croot, DLOG, Con::fullscreen_mode, Window::id, LOG, Con::name, Con::type, Con::window, and XCB_ATOM_ATOM.
Referenced by cmd_fullscreen(), con_move_to_workspace(), handle_client_message(), manage_window(), scratchpad_move(), and scratchpad_show().
void con_toggle_layout | ( | Con * | con, |
const char * | toggle_mode | ||
) |
This function toggles the layout of a given container.
toggle_mode can be either 'default' (toggle only between stacked/tabbed/last_split_layout), 'split' (toggle only between splitv/splith) or 'all' (toggle between all layouts).
Definition at line 1302 of file con.c.
References bfs_entry::con, con_set_layout(), DLOG, L_SPLITH, L_SPLITV, L_STACKED, L_TABBED, Con::last_split_layout, Con::layout, Con::parent, and Con::type.
Referenced by cmd_layout_toggle().
void con_update_parents_urgency | ( | Con * | con | ) |
Make all parent containers urgent if con is urgent or clear the urgent flag of all parent containers if there are no more urgent children left.
Definition at line 1533 of file con.c.
References con_has_urgent_child(), Con::parent, Con::type, and Con::urgent.
Referenced by con_focus(), con_on_remove_child(), con_set_urgency(), tree_close(), and workspace_defer_update_urgent_hint_cb().
char* colors[] |
Definition at line 16 of file con.c.
Referenced by con_new_skeleton().