summaryrefslogtreecommitdiffstats
path: root/src/gui-gtk
Commit message (Collapse)AuthorAgeFilesLines
* split libreport to a separate packageJiri Moskovcak2011-06-081-5/+4
|
* include/report/report.h: change API from having more functions to having ↵Denys Vlasenko2011-05-241-4/+7
| | | | | | | | | | | | | | | more flags Now we have three functions instead of four: int report_problem_in_dir(const char *dirname, int flags); int report_problem_in_memory(problem_data_t *pd, int flags); int report_problem(problem_data_t *pd); (third one is a trivial wrapper around report_problem_in_memory), and two new flags LIBREPORT_ANALYZE and LIBREPORT_RELOAD_DATA. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* assorted cleanups, memory leak fix (g_list_free in add_basics_to_problem_data)Denys Vlasenko2011-05-222-2/+2
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* more fixes to report C API (based on Denys's review)Jiri Moskovcak2011-05-201-1/+1
|
* Merge branch 'master' of git://git.fedorahosted.org/git/abrtJiri Moskovcak2011-05-201-19/+7
|\
| * gui: fil colors in list; wizard: a bit better navigationDenys Vlasenko2011-05-191-19/+7
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | report C API improvementsJiri Moskovcak2011-05-181-1/+52
|/
* Merge branch 'master' into report_apiJiri Moskovcak2011-05-131-1/+1
|\
| * whitespace fixes. no code changesDenys Vlasenko2011-05-111-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | report api proposalJiri Moskovcak2011-05-131-11/+2
|/
* reinstated g_set_prgname("abrt")Denys Vlasenko2011-05-061-0/+2
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* move $ABRT_foo checking and setting into helper routines.Denys Vlasenko2011-05-041-17/+4
| | | | | | | I'm sick of fixing incorrect PROGNAME defines. Now g_progname is a variable and it is set from argv[0]. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-gui: better list refreshing. Closes #251Denys Vlasenko2011-05-021-6/+18
| | | | | | Fixes "crash list in gui is not refreshed when a new crash is detected" Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* fix for spurious "Lock file 'DIR/.lock' is locked by process PID" messageDenys Vlasenko2011-05-022-0/+10
| | | | | | | Message was caused by concurrent access by abrt-gui (refreshing the list) and wizard (running events). Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* gui: items in gui are sorted by time by default (descending) trac#116Jiri Moskovcak2011-05-021-0/+5
|
* gui: suppress printing dumpdir access errors (bz#698418)Miroslav Lichvar2011-04-261-1/+1
|
* gui+wizard: fixed the window icon for all child dialogsJiri Moskovcak2011-04-171-1/+1
|
* small improvement for rescanning in abrt-guiDenys Vlasenko2011-04-152-13/+63
| | | | | | | | When, say, reported_to is changed, inotify doesn't see it two dir levels up. abrt-gui needs a bit of help from wizard by sending SIGCHLD, and treating it as "please rescan" request. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* gui: fixed the prgname trac#180Jiri Moskovcak2011-03-291-0/+5
|
* added jsteinar to artwork creditsJiri Moskovcak2011-03-251-0/+1
|
* add option -p to abrt-gui and wizard tooDenys Vlasenko2011-03-251-3/+11
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-gui: tweak inotify codeDenys Vlasenko2011-03-241-7/+11
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-gui: add inotify-based reloading of dumpsDenys Vlasenko2011-03-243-9/+109
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-gtk: rename Edit->Plugins to "Event configuration"; fix last_row codeDenys Vlasenko2011-03-181-3/+3
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Replace FILENAME_MESSAGE with FILENAME_REPORTED_TO.Denys Vlasenko2011-03-181-1/+1
| | | | | | | | | | | This fixes the problem with abrt-cli not showing unreported bugs and abrt-gui not showing "green lamp" for reported bugs. In general, it introduces a way to record reporting results, such as Bugzilla URL, in dump dir. In the future, this enables such functions as "check BZ status". Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-gui: fixed localizationJiri Moskovcak2011-03-161-0/+7
|
* abrt-gui: change the help accelerator to alt-HJiri Moskovcak2011-03-161-1/+1
|
* abrt-gui: minor fix to about dialogJiri Moskovcak2011-03-161-1/+0
|
* abrt-gui: minor fixes to about dialogJiri Moskovcak2011-03-151-1/+4
|
* minor build fixesJiri Moskovcak2011-03-151-3/+1
|
* added copyright bannersDenys Vlasenko2011-03-153-0/+54
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* style fixesDenys Vlasenko2011-03-151-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* put code shared among gui and wizard into libreportgtkJiri Moskovcak2011-03-144-367/+24
|
* event-config-dialog: do not store pointer to GTK-internal storage in plugin ↵Karel Klic2011-03-141-1/+1
| | | | options
* gui-wizard-gtk: show event description, not bare name, in wizardDenys Vlasenko2011-03-111-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Merge branch 'prune-old-gui'Nikola Pajkovsky2011-03-112-4/+20
|\ | | | | | | | | | | * prune-old-gui: remove old python gui override old gui by new one
| * override old gui by new oneNikola Pajkovsky2011-03-112-4/+20
| | | | | | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* | minor tweaks to event config dialogJiri Moskovcak2011-03-101-1/+10
|/ | | | | - show the event configuration only if it has some options - disable the "Configure Event" button if event has no configuration
* Merge branch 'gui'Nikola Pajkovsky2011-03-101-7/+66
|\ | | | | | | | | | | | | | | * gui: accelerators for 'Report' and 'Online help' buttons abrt-gtk: credits dialog available online help from menu get rid of 'View log' from menu (doesn't work even old gui)
| * accelerators for 'Report' and 'Online help' buttonsNikola Pajkovsky2011-03-101-2/+2
| | | | | | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
| * abrt-gtk: credits dialogNikola Pajkovsky2011-03-101-0/+53
| | | | | | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
| * available online help from menuNikola Pajkovsky2011-03-101-3/+11
| | | | | | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
| * get rid of 'View log' from menu (doesn't work even old gui)Nikola Pajkovsky2011-03-101-2/+0
| | | | | | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* | abrt-gtk: minor tweaks in event config dialogJiri Moskovcak2011-03-101-5/+24
|/
* use variable name from conf file if xml description doesn't existJiri Moskovcak2011-03-091-3/+9
|
* added loading/saving values to/from event config dialogJiri Moskovcak2011-03-091-6/+61
|
* create old bottom buttonsNikola Pajkovsky2011-03-091-31/+80
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* add -Wwrite-strings everywhereDenys Vlasenko2011-03-091-2/+2
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-gtk: fixed crash when user clicks configure and no event is selectedJiri Moskovcak2011-03-091-1/+4
|
* abrt-gtk: show error message when no event description is availableJiri Moskovcak2011-03-091-1/+17
|