usr.bin/tmux/tmux.h
1296
struct window {
usr.bin/tmux/tmux.h
1936
u_int window;
usr.bin/tmux/tmux.h
2394
struct window_pane **sort_get_panes_window(struct window *, u_int *,
usr.bin/tmux/tmux.h
2448
void format_defaults_window(struct format_tree *, struct window *);
usr.bin/tmux/tmux.h
2472
void notify_session_window(const char *, struct session *, struct window *);
usr.bin/tmux/tmux.h
2473
void notify_window(const char *, struct window *);
usr.bin/tmux/tmux.h
2586
void tty_update_window_offset(struct window *);
usr.bin/tmux/tmux.h
2771
struct session *, struct window *, int);
usr.bin/tmux/tmux.h
2772
int cmd_find_from_window(struct cmd_find_state *, struct window *,
usr.bin/tmux/tmux.h
2916
void alerts_queue(struct window *, int);
usr.bin/tmux/tmux.h
3012
void server_redraw_window(struct window *);
usr.bin/tmux/tmux.h
3013
void server_redraw_window_borders(struct window *);
usr.bin/tmux/tmux.h
3014
void server_status_window(struct window *);
usr.bin/tmux/tmux.h
3019
void server_kill_window(struct window *, int);
usr.bin/tmux/tmux.h
3028
void server_unzoom_window(struct window *);
usr.bin/tmux/tmux.h
3060
void resize_window(struct window *, u_int, u_int, int, int);
usr.bin/tmux/tmux.h
3061
void default_window_size(struct client *, struct session *, struct window *,
usr.bin/tmux/tmux.h
3063
void recalculate_size(struct window *, int);
usr.bin/tmux/tmux.h
3304
int window_cmp(struct window *, struct window *);
usr.bin/tmux/tmux.h
3304
int window_cmp(struct window *, struct window *);
usr.bin/tmux/tmux.h
3305
RB_PROTOTYPE(windows, window, entry, window_cmp);
usr.bin/tmux/tmux.h
3311
struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
usr.bin/tmux/tmux.h
3315
void winlink_set_window(struct winlink *, struct window *);
usr.bin/tmux/tmux.h
3327
void window_update_activity(struct window *);
usr.bin/tmux/tmux.h
3330
struct window_pane *window_get_active_at(struct window *, u_int, u_int);
usr.bin/tmux/tmux.h
3331
struct window_pane *window_find_string(struct window *, const char *);
usr.bin/tmux/tmux.h
3332
int window_has_pane(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3333
int window_set_active_pane(struct window *, struct window_pane *,
usr.bin/tmux/tmux.h
3335
void window_update_focus(struct window *);
usr.bin/tmux/tmux.h
3337
void window_redraw_active_switch(struct window *,
usr.bin/tmux/tmux.h
3339
struct window_pane *window_add_pane(struct window *, struct window_pane *,
usr.bin/tmux/tmux.h
3341
void window_resize(struct window *, u_int, u_int, int, int);
usr.bin/tmux/tmux.h
3344
int window_unzoom(struct window *, int);
usr.bin/tmux/tmux.h
3345
int window_push_zoom(struct window *, int, int);
usr.bin/tmux/tmux.h
3346
int window_pop_zoom(struct window *);
usr.bin/tmux/tmux.h
3347
void window_lost_pane(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3348
void window_remove_pane(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3349
struct window_pane *window_pane_at_index(struct window *, u_int);
usr.bin/tmux/tmux.h
3350
struct window_pane *window_pane_next_by_number(struct window *,
usr.bin/tmux/tmux.h
3352
struct window_pane *window_pane_previous_by_number(struct window *,
usr.bin/tmux/tmux.h
3355
u_int window_count_panes(struct window *);
usr.bin/tmux/tmux.h
3356
void window_destroy_panes(struct window *);
usr.bin/tmux/tmux.h
3385
void window_set_name(struct window *, const char *);
usr.bin/tmux/tmux.h
3386
void window_add_ref(struct window *, const char *);
usr.bin/tmux/tmux.h
3387
void window_remove_ref(struct window *, const char *);
usr.bin/tmux/tmux.h
3396
void window_set_fill_character(struct window *);
usr.bin/tmux/tmux.h
3415
void layout_destroy_cell(struct window *, struct layout_cell *,
usr.bin/tmux/tmux.h
3417
void layout_resize_layout(struct window *, struct layout_cell *,
usr.bin/tmux/tmux.h
3424
void layout_fix_offsets(struct window *);
usr.bin/tmux/tmux.h
3425
void layout_fix_panes(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3426
void layout_resize_adjust(struct window *, struct layout_cell *,
usr.bin/tmux/tmux.h
3428
void layout_init(struct window *, struct window_pane *);
usr.bin/tmux/tmux.h
3429
void layout_free(struct window *);
usr.bin/tmux/tmux.h
3430
void layout_resize(struct window *, u_int, u_int);
usr.bin/tmux/tmux.h
3440
int layout_spread_cell(struct window *, struct layout_cell *);
usr.bin/tmux/tmux.h
3444
char *layout_dump(struct window *, struct layout_cell *);
usr.bin/tmux/tmux.h
3445
int layout_parse(struct window *, const char *, char **);
usr.bin/tmux/tmux.h
3449
u_int layout_set_select(struct window *, u_int);
usr.bin/tmux/tmux.h
3450
u_int layout_set_next(struct window *);
usr.bin/tmux/tmux.h
3451
u_int layout_set_previous(struct window *);
usr.bin/tmux/tmux.h
3533
void check_window_name(struct window *);
usr.bin/tmux/tmux.h
3534
char *default_window_name(struct window *);
usr.bin/tmux/tmux.h
3558
void control_notify_window_layout_changed(struct window *);
usr.bin/tmux/tmux.h
3559
void control_notify_window_pane_changed(struct window *);
usr.bin/tmux/tmux.h
3560
void control_notify_window_unlinked(struct session *, struct window *);
usr.bin/tmux/tmux.h
3561
void control_notify_window_linked(struct session *, struct window *);
usr.bin/tmux/tmux.h
3562
void control_notify_window_renamed(struct window *);
usr.bin/tmux/tmux.h
3594
struct winlink *session_attach(struct session *, struct window *, int,
usr.bin/tmux/tmux.h
3597
int session_has(struct session *, struct window *);
usr.bin/tmux/tmux.h
3598
int session_is_linked(struct session *, struct window *);