From 3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 15 Apr 2011 15:52:09 +0200 Subject: Implement the possibility to add text labels to even config GUI. Closes #199. Signed-off-by: Denys Vlasenko --- src/include/report/event_config.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/include/report') diff --git a/src/include/report/event_config.h b/src/include/report/event_config.h index 5b3532a1..5c898d9a 100644 --- a/src/include/report/event_config.h +++ b/src/include/report/event_config.h @@ -32,6 +32,7 @@ typedef enum OPTION_TYPE_BOOL, OPTION_TYPE_PASSWORD, OPTION_TYPE_NUMBER, + OPTION_TYPE_HINT_HTML, OPTION_TYPE_INVALID, } option_type_t; @@ -48,11 +49,12 @@ typedef enum */ typedef struct { - char *name; //name of the value which should be used for env variable - char *value; - char *label; - option_type_t type; - int allow_empty; + char *eo_name; //name of the value which should be used for env variable + char *eo_value; + char *eo_label; + char *eo_note_html; + option_type_t eo_type; + int eo_allow_empty; //char *description; //can be used as tooltip in gtk app //char *allowed_value; //int required; -- cgit