Home
last modified time | relevance | path

Searched refs:layout_root (Results 1 – 10 of 10) sorted by relevance

/openbsd/src/usr.bin/tmux/
Dlayout-set.c133 layout_print_cell(w->layout_root, __func__, 1); in layout_set_even()
142 lc = w->layout_root = layout_create_cell(NULL); in layout_set_even()
173 layout_print_cell(w->layout_root, __func__, 1); in layout_set_even()
201 layout_print_cell(w->layout_root, __func__, 1); in layout_set_main_h()
246 lc = w->layout_root = layout_create_cell(NULL); in layout_set_main_h()
283 layout_print_cell(w->layout_root, __func__, 1); in layout_set_main_h()
299 layout_print_cell(w->layout_root, __func__, 1); in layout_set_main_h_mirrored()
344 lc = w->layout_root = layout_create_cell(NULL); in layout_set_main_h_mirrored()
381 layout_print_cell(w->layout_root, __func__, 1); in layout_set_main_h_mirrored()
397 layout_print_cell(w->layout_root, __func__, 1); in layout_set_main_v()
[all …]
Dresize.c49 if (sx < w->layout_root->sx) in resize_window()
50 sx = w->layout_root->sx; in resize_window()
51 if (sy < w->layout_root->sy) in resize_window()
52 sy = w->layout_root->sy; in resize_window()
55 sx, sy, w->layout_root->sx, w->layout_root->sy); in resize_window()
Dlayout.c233 struct layout_cell *lc = w->layout_root; in layout_fix_offsets()
247 while (lc != w->layout_root) { in layout_cell_is_top()
263 while (lc != w->layout_root) { in layout_cell_is_bottom()
521 lc = w->layout_root = layout_create_cell(NULL); in layout_init()
530 layout_free_cell(w->layout_root); in layout_free()
537 struct layout_cell *lc = w->layout_root; in layout_resize()
923 lc = wp->window->layout_root; in layout_split_pane()
1038 wp->window->layout_root = lcparent; in layout_split_pane()
1089 layout_destroy_cell(w, wp->layout_cell, &w->layout_root); in layout_close_pane()
1092 if (w->layout_root != NULL) { in layout_close_pane()
Dlayout-custom.c240 layout_free_cell(w->layout_root); in layout_parse()
241 w->layout_root = lc; in layout_parse()
Dcmd-select-layout.c93 w->old_layout = layout_dump(w->layout_root); in cmd_select_layout_exec()
Dcontrol-notify.c67 if (w->layout_root == NULL) in control_notify_window_layout_changed()
Dcmd-resize-pane.c183 lc = layout_search_by_border(w->layout_root, lx + offsets[i][0], in cmd_resize_pane_mouse_update()
Dwindow.c313 w->layout_root = NULL; in window_create()
346 if (w->layout_root != NULL) in window_destroy()
347 layout_free_cell(w->layout_root); in window_destroy()
682 w->saved_layout_root = w->layout_root; in window_zoom()
700 w->layout_root = w->saved_layout_root; in window_unzoom()
Dformat.c778 return (layout_dump(w->layout_root)); in format_cb_window_layout()
790 return (layout_dump(w->layout_root)); in format_cb_window_visible_layout()
Dtmux.h1206 struct layout_cell *layout_root; member