From c6bd9e20635e4acbf8a65409aa9189edaf3cbc89 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 27 Jan 2009 20:22:33 +0000 Subject: Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink From Josh Elsasser, thanks! --- tmux.h | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 45c00102..eac6f739 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.251 2009-01-26 22:57:19 nicm Exp $ */ +/* $Id: tmux.h,v 1.252 2009-01-27 20:22:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -461,13 +461,13 @@ struct options_entry { OPTIONS_STRING, OPTIONS_NUMBER, OPTIONS_KEY, - OPTIONS_COLOURS + OPTIONS_COLOURS, + OPTIONS_ATTRIBUTES } type; union { char *string; long long number; int key; - u_char colours; } value; SPLAY_ENTRY(options_entry) entry; @@ -899,6 +899,7 @@ struct set_option_entry { SET_OPTION_NUMBER, SET_OPTION_KEY, SET_OPTION_COLOUR, + SET_OPTION_ATTRIBUTES, SET_OPTION_FLAG, SET_OPTION_CHOICE } type; @@ -910,8 +911,8 @@ struct set_option_entry { }; extern const struct set_option_entry set_option_table[]; extern const struct set_option_entry set_window_option_table[]; -#define NSETOPTION 20 -#define NSETWINDOWOPTION 13 +#define NSETOPTION 22 +#define NSETWINDOWOPTION 14 /* Edit keys. */ enum mode_key { @@ -1062,6 +1063,8 @@ void set_option_key(struct cmd_ctx *, struct options *, const struct set_option_entry *, char *); void set_option_colour(struct cmd_ctx *, struct options *, const struct set_option_entry *, char *); +void set_option_attributes(struct cmd_ctx *, + struct options *, const struct set_option_entry *, char *); void set_option_flag(struct cmd_ctx *, struct options *, const struct set_option_entry *, char *); void set_option_choice(struct cmd_ctx *, @@ -1307,9 +1310,13 @@ void input_key(struct window_pane *, int); /* colour.c */ const char *colour_tostring(u_char); -u_char colour_fromstring(const char *); +int colour_fromstring(const char *); u_char colour_translate256(u_char); +/* attributes.c */ +const char *attributes_tostring(u_char); +int attributes_fromstring(const char *); + /* grid.c */ extern const struct grid_cell grid_default_cell; struct grid_data *grid_create(u_int, u_int, u_int); -- cgit