diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-06-29 03:30:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-06-29 03:30:13 +0000 |
commit | 552c9cd83f7207759b41947f63ada828683b7892 (patch) | |
tree | 432a775eabec3af116d70a5d6bff2fa2d88cd470 /tmux.h | |
parent | 76bbdeb586ad93cfb16bd12db865b4c672a9168e (diff) | |
download | rtmux-552c9cd83f7207759b41947f63ada828683b7892.tar.gz rtmux-552c9cd83f7207759b41947f63ada828683b7892.tar.bz2 rtmux-552c9cd83f7207759b41947f63ada828683b7892.zip |
Custom layouts. list-windows command displays the layout as a string (such as
"bb62,159x48,0,0{79x48,0,0,79x48,80,0}") and it can be applied to another
window (with the same number of panes or fewer) using select-layout.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1850,9 +1850,11 @@ struct window_pane *window_pane_find_left(struct window_pane *); struct window_pane *window_pane_find_right(struct window_pane *); /* layout.c */ +u_int layout_count_cells(struct layout_cell *); struct layout_cell *layout_create_cell(struct layout_cell *); void layout_free_cell(struct layout_cell *); void layout_print_cell(struct layout_cell *, const char *, u_int); +void layout_destroy_cell(struct layout_cell *, struct layout_cell **); void layout_set_size( struct layout_cell *, u_int, u_int, u_int, u_int); void layout_make_leaf( @@ -1873,6 +1875,10 @@ struct layout_cell *layout_split_pane( struct window_pane *, enum layout_type, int); void layout_close_pane(struct window_pane *); +/* layout-custom.c */ +char *layout_dump(struct window *); +int layout_parse(struct window *, const char *); + /* layout-set.c */ const char *layout_set_name(u_int); int layout_set_lookup(const char *); @@ -1883,6 +1889,7 @@ void layout_set_active_changed(struct window *); /* layout-string.c */ struct layout_cell *layout_find_string(struct window *, const char *); +struct layout_cell *layout_find_bottomright(struct layout_cell *); /* window-clock.c */ extern const struct window_mode window_clock_mode; |