usr.bin/tmux/tmux.h
1296
struct window {
usr.bin/tmux/tmux.h
1936
u_int window;
usr.bin/tmux/tmux.h
2395
struct window_pane **sort_get_panes_window(struct window *, u_int *,
usr.bin/tmux/tmux.h
2449
void format_defaults_window(struct format_tree *, struct window *);
usr.bin/tmux/tmux.h
2473
void notify_session_window(const char *, struct session *, struct window *);
usr.bin/tmux/tmux.h
2474
void notify_window(const char *, struct window *);
usr.bin/tmux/tmux.h
2587
void tty_update_window_offset(struct window *);
usr.bin/tmux/tmux.h
2772
struct session *, struct window *, int);
usr.bin/tmux/tmux.h
2773
int cmd_find_from_window(struct cmd_find_state *, struct window *,
usr.bin/tmux/tmux.h
2917
void alerts_queue(struct window *, int);
usr.bin/tmux/tmux.h
3013
void server_redraw_window(struct window *);
usr.bin/tmux/tmux.h
3014
void server_redraw_window_borders(struct window *);
usr.bin/tmux/tmux.h
3015
void server_status_window(struct window *);
usr.bin/tmux/tmux.h
3020
void server_kill_window(struct window *, int);
usr.bin/tmux/tmux.h
3029
void server_unzoom_window(struct window *);
usr.bin/tmux/tmux.h
3061
void resize_window(struct window *, u_int, u_int, int, int);
usr.bin/tmux/tmux.h
3062
void default_window_size(struct client *, struct session *, struct window *,
usr.bin/tmux/tmux.h
3064
void recalculate_size(struct window *, int);
usr.bin/tmux/tmux.h
3305
int window_cmp(struct window *, struct window *);
usr.bin/tmux/tmux.h
3305
int window_cmp(struct window *, struct window *);
usr.bin/tmux/tmux.h
3306
RB_PROTOTYPE(windows, window, entry, window_cmp);
usr.bin/tmux/tmux.h
3312
struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
usr.bin/tmux/tmux.h
3316
void winlink_set_window(struct winlink *, struct window *);
usr.bin/tmux/tmux.h
3328
void window_update_activity(struct window *);
usr.bin/tmux/tmux.h
3331
struct window_pane *window_get_active_at(struct window *, u_int, u_int);
usr.bin/tmux/tmux.h
3332
struct window_pane *window_find_string(struct window *, const char *);
usr.bin/tmux/tmux.h
3333
int window_has_pane(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3334
int window_set_active_pane(struct window *, struct window_pane *,
usr.bin/tmux/tmux.h
3336
void window_update_focus(struct window *);
usr.bin/tmux/tmux.h
3338
void window_redraw_active_switch(struct window *,
usr.bin/tmux/tmux.h
3340
struct window_pane *window_add_pane(struct window *, struct window_pane *,
usr.bin/tmux/tmux.h
3342
void window_resize(struct window *, u_int, u_int, int, int);
usr.bin/tmux/tmux.h
3345
int window_unzoom(struct window *, int);
usr.bin/tmux/tmux.h
3346
int window_push_zoom(struct window *, int, int);
usr.bin/tmux/tmux.h
3347
int window_pop_zoom(struct window *);
usr.bin/tmux/tmux.h
3348
void window_lost_pane(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3349
void window_remove_pane(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3350
struct window_pane *window_pane_at_index(struct window *, u_int);
usr.bin/tmux/tmux.h
3351
struct window_pane *window_pane_next_by_number(struct window *,
usr.bin/tmux/tmux.h
3353
struct window_pane *window_pane_previous_by_number(struct window *,
usr.bin/tmux/tmux.h
3356
u_int window_count_panes(struct window *);
usr.bin/tmux/tmux.h
3357
void window_destroy_panes(struct window *);
usr.bin/tmux/tmux.h
3386
void window_set_name(struct window *, const char *);
usr.bin/tmux/tmux.h
3387
void window_add_ref(struct window *, const char *);
usr.bin/tmux/tmux.h
3388
void window_remove_ref(struct window *, const char *);
usr.bin/tmux/tmux.h
3397
void window_set_fill_character(struct window *);
usr.bin/tmux/tmux.h
3416
void layout_destroy_cell(struct window *, struct layout_cell *,
usr.bin/tmux/tmux.h
3418
void layout_resize_layout(struct window *, struct layout_cell *,
usr.bin/tmux/tmux.h
3425
void layout_fix_offsets(struct window *);
usr.bin/tmux/tmux.h
3426
void layout_fix_panes(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3427
void layout_resize_adjust(struct window *, struct layout_cell *,
usr.bin/tmux/tmux.h
3429
void layout_init(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3430
void layout_free(struct window *);
usr.bin/tmux/tmux.h
3431
void layout_resize(struct window *, u_int, u_int);
usr.bin/tmux/tmux.h
3441
int layout_spread_cell(struct window *, struct layout_cell *);
usr.bin/tmux/tmux.h
3445
char *layout_dump(struct window *, struct layout_cell *);
usr.bin/tmux/tmux.h
3446
int layout_parse(struct window *, const char *, char **);
usr.bin/tmux/tmux.h
3450
u_int layout_set_select(struct window *, u_int);
usr.bin/tmux/tmux.h
3451
u_int layout_set_next(struct window *);
usr.bin/tmux/tmux.h
3452
u_int layout_set_previous(struct window *);
usr.bin/tmux/tmux.h
3534
void check_window_name(struct window *);
usr.bin/tmux/tmux.h
3535
char *default_window_name(struct window *);
usr.bin/tmux/tmux.h
3559
void control_notify_window_layout_changed(struct window *);
usr.bin/tmux/tmux.h
3560
void control_notify_window_pane_changed(struct window *);
usr.bin/tmux/tmux.h
3561
void control_notify_window_unlinked(struct session *, struct window *);
usr.bin/tmux/tmux.h
3562
void control_notify_window_linked(struct session *, struct window *);
usr.bin/tmux/tmux.h
3563
void control_notify_window_renamed(struct window *);
usr.bin/tmux/tmux.h
3595
struct winlink *session_attach(struct session *, struct window *, int,
usr.bin/tmux/tmux.h
3598
int session_has(struct session *, struct window *);
usr.bin/tmux/tmux.h
3599
int session_is_linked(struct session *, struct window *);