summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-04-14 20:25:21 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-04-14 20:25:21 +0200
commitaa77bb9ee015eace791d5331b5ce5fe9e5e14634 (patch)
tree25fe8f74dcc0d757a830a926b905ff43e842a01c /src/include
parent5fa98f594e9f4186a7c2042a422fdcfc65e7d30c (diff)
downloadabrt-aa77bb9ee015eace791d5331b5ce5fe9e5e14634.tar.gz
abrt-aa77bb9ee015eace791d5331b5ce5fe9e5e14634.tar.xz
abrt-aa77bb9ee015eace791d5331b5ce5fe9e5e14634.zip
wizard: implement long descriptions
The change is somewhat big because I can no longer (ab)use tooltip to store event name. So I created a bit more generic method of remembering which events are shown and selected. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/report/event_config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/include/report/event_config.h b/src/include/report/event_config.h
index 8dcfb9f6..5b3532a1 100644
--- a/src/include/report/event_config.h
+++ b/src/include/report/event_config.h
@@ -64,10 +64,11 @@ void free_event_option(event_option_t *p);
//structure to hold the option data
typedef struct
{
- char *screen_name; //ui friendly name of the event "Bugzilla" "RedHat Support Uploader"
- //char *title; //window title - not used right now, maybe the "name" is enough?
- //char *action;//action description to show in gui like: Upload report to the Red Hat bugzilla"
- char *description; // "Report to ...."/"Save to file"
+ char *screen_name; //ui friendly name of the event: "Bugzilla" "RedHat Support Upload"
+ //char *title; //window title - not used right now, maybe the "name" is enough?
+ //char *action; //action description to show in gui like: Upload report to the Red Hat bugzilla"
+ char *description; // "Report to..."/"Save to file". Should be one sentence, not long
+ char *long_descr; // Long(er) explanation, if needed
GList *options;
} event_config_t;