mirror of
https://github.com/tmux/tmux.git
synced 2026-06-04 09:20:26 +00:00
Merge branch 'floating_panes' into floating_panes_staging
This commit is contained in:
7
tmux.h
7
tmux.h
@@ -1269,7 +1269,7 @@ struct window_pane {
|
||||
#define PANE_FOCUSED 0x4
|
||||
#define PANE_VISITED 0x8
|
||||
#define PANE_ZOOMED 0x10
|
||||
#define PANE_FLOATING 0x20
|
||||
/* unused 0x20 */
|
||||
#define PANE_INPUTOFF 0x40
|
||||
#define PANE_CHANGED 0x80
|
||||
#define PANE_EXITED 0x100
|
||||
@@ -1473,6 +1473,10 @@ TAILQ_HEAD(layout_cells, layout_cell);
|
||||
struct layout_cell {
|
||||
enum layout_type type;
|
||||
|
||||
/* unused 0x1 */
|
||||
#define LAYOUT_CELL_FLOATING 0x2
|
||||
int flags;
|
||||
|
||||
struct layout_cell *parent;
|
||||
|
||||
u_int sx;
|
||||
@@ -3499,6 +3503,7 @@ 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_is_floating(struct window_pane *);
|
||||
int window_pane_tiled_geometry(struct window *,
|
||||
struct window_pane *, int *, int *, enum layout_type *,
|
||||
struct cmdq_item *, struct args *, char **);
|
||||
|
||||
Reference in New Issue
Block a user