Merge branch 'master' into floating_panes

This commit is contained in:
Nicholas Marriott
2026-05-19 13:05:14 +01:00
7 changed files with 115 additions and 55 deletions

15
tmux.h
View File

@@ -1394,6 +1394,9 @@ struct window {
u_int new_xpixel;
u_int new_ypixel;
u_int last_new_pane_x;
u_int last_new_pane_y;
struct utf8_data *fill_character;
int flags;
#define WINDOW_BELL 0x1
@@ -3493,12 +3496,12 @@ enum client_theme window_pane_get_theme(struct window_pane *);
void window_pane_send_theme_update(struct window_pane *);
struct style_range *window_pane_border_status_get_range(struct window_pane *,
u_int, u_int);
int window_pane_tile_geometry(struct window *, struct window_pane *,
int *, int *, enum layout_type *, struct cmdq_item *,
struct args *, char **);
int window_pane_float_geometry(struct window *, struct window_pane *,
u_int *, u_int *, u_int *, u_int *, struct cmdq_item *,
struct args *, char **);
int window_pane_tiled_geometry(struct window *,
struct window_pane *, int *, int *, enum layout_type *,
struct cmdq_item *, struct args *, char **);
int window_pane_floating_geometry(struct window *,
struct window_pane *, u_int *, u_int *, u_int *, u_int *,
struct cmdq_item *, struct args *, char **);
/* layout.c */
u_int layout_count_cells(struct layout_cell *);