summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-04-15 15:52:09 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-04-15 15:52:09 +0200
commit3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb (patch)
treed936b4e68e219e8783e6ac70821da4a9e5a35cd7 /src/include
parentaa77bb9ee015eace791d5331b5ce5fe9e5e14634 (diff)
downloadabrt-3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb.tar.gz
abrt-3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb.tar.xz
abrt-3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb.zip
Implement the possibility to add text labels to even config GUI. Closes #199.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/report/event_config.h12
1 files changed, 7 insertions, 5 deletions
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;