e078ba14df
Define and use perf_gtk_eops to provide a GTK2 message dialog for error reporting and a info_bar for warning. As GtkInfoBar requires recent GTK+ libraries, provides a fallback implementation using statusbar widget too. Signed-off-by: Namhyung Kim <namhyung@gmail.com> Acked-by: Pekka Enberg <penberg@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1338265382-6872-8-git-send-email-namhyung@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
18 lines
345 B
C
18 lines
345 B
C
#include "gtk.h"
|
|
#include "../../util/cache.h"
|
|
#include "../../util/debug.h"
|
|
|
|
extern struct perf_error_ops perf_gtk_eops;
|
|
|
|
int perf_gtk__init(void)
|
|
{
|
|
perf_error__register(&perf_gtk_eops);
|
|
return gtk_init_check(NULL, NULL) ? 0 : -1;
|
|
}
|
|
|
|
void perf_gtk__exit(bool wait_for_ok __used)
|
|
{
|
|
perf_error__unregister(&perf_gtk_eops);
|
|
gtk_main_quit();
|
|
}
|