From 106011aa53a739c612aa7c631e5d3f2542f74378 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Tue, 5 Jan 2010 23:52:37 +0000 Subject: Sync OpenBSD patchset 597: Options to set the colour of the pane borders, with different colours for the active pane. --- tmux.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 7940f762..93d90b14 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.534 2009-12-18 18:57:00 tcunha Exp $ */ +/* $Id: tmux.h,v 1.535 2010-01-05 23:52:37 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1082,6 +1082,7 @@ struct client { #define CLIENT_BAD 0x80 #define CLIENT_IDENTIFY 0x100 #define CLIENT_DEAD 0x200 +#define CLIENT_BORDERS 0x400 int flags; struct event identify_timer; @@ -1588,6 +1589,7 @@ void server_redraw_session_group(struct session *); void server_status_session(struct session *); void server_status_session_group(struct session *); void server_redraw_window(struct window *); +void server_redraw_window_borders(struct window *); void server_status_window(struct window *); void server_lock(void); void server_lock_session(struct session *); @@ -1748,7 +1750,7 @@ void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *, const struct utf8_data *); /* screen-redraw.c */ -void screen_redraw_screen(struct client *, int); +void screen_redraw_screen(struct client *, int, int); void screen_redraw_pane(struct client *, struct window_pane *); /* screen.c */ -- cgit