From aa77bb9ee015eace791d5331b5ce5fe9e5e14634 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 14 Apr 2011 20:25:21 +0200 Subject: 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 --- src/include/report/event_config.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/include') 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; -- cgit