aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-14 07:23:36 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-14 07:23:36 +0000
commitfe20c0d89ef5b8581c28067496f0f4c545d55ef8 (patch)
treee3283e2030d865de1025215bb8527636c78966b8 /tmux.h
parent4a9b01eb0d328f13a03f967759bfd76d749da17f (diff)
downloadrtmux-fe20c0d89ef5b8581c28067496f0f4c545d55ef8.tar.gz
rtmux-fe20c0d89ef5b8581c28067496f0f4c545d55ef8.tar.bz2
rtmux-fe20c0d89ef5b8581c28067496f0f4c545d55ef8.zip
Get rid of the PANE_HIDDEN flag in favour of a function, and moving the
decision for whether or not a pane should be drawn out of the layout code and into the redraw code. This is needed for the new layout design, getting it in now to make that easier to work on.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index bd4cbf9a..d895d640 100644
--- a/tmux.h
+++ b/tmux.h
@@ -48,7 +48,7 @@ extern const char *__progname;
#define PROMPT_HISTORY 100
/* Minimum pane size. */
-#define PANE_MINIMUM 4 /* includes separator line */
+#define PANE_MINIMUM 5 /* includes separator line */
/* Automatic name refresh interval, in milliseconds. */
#define NAME_INTERVAL 500
@@ -600,8 +600,7 @@ struct window_pane {
u_int yoff;
int flags;
-#define PANE_HIDDEN 0x1
-#define PANE_REDRAW 0x2
+#define PANE_REDRAW 0x1
char *cmd;
char *cwd;
@@ -1454,6 +1453,7 @@ void window_pane_parse(struct window_pane *);
void window_pane_key(struct window_pane *, struct client *, int);
void window_pane_mouse(struct window_pane *,
struct client *, u_char, u_char, u_char);
+int window_pane_visible(struct window_pane *);
char *window_pane_search(
struct window_pane *, const char *, u_int *);