diff options
Diffstat (limited to 'trace-gui.h')
-rw-r--r-- | trace-gui.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/trace-gui.h b/trace-gui.h index ca9f6ca..6766f9d 100644 --- a/trace-gui.h +++ b/trace-gui.h | |||
@@ -32,6 +32,13 @@ enum trace_dialog_type { | |||
32 | 32 | ||
33 | GtkWidget *trace_status_bar_new(void); | 33 | GtkWidget *trace_status_bar_new(void); |
34 | 34 | ||
35 | enum trace_dialog_filter { | ||
36 | TRACE_DIALOG_FILTER_NONE, | ||
37 | TRACE_DIALOG_FILTER_DATA, | ||
38 | TRACE_DIALOG_FILTER_FILTER, | ||
39 | TRACE_DIALOG_FILTER_SETTING, | ||
40 | }; | ||
41 | |||
35 | void trace_dialog_register_window(GtkWidget *window); | 42 | void trace_dialog_register_window(GtkWidget *window); |
36 | void trace_dialog_register_alt_warning(void (*alt)(const char *fmt, va_list ap)); | 43 | void trace_dialog_register_alt_warning(void (*alt)(const char *fmt, va_list ap)); |
37 | 44 | ||
@@ -40,6 +47,8 @@ void trace_show_help(GtkWidget *window, const gchar *link, GError **error); | |||
40 | GtkResponseType trace_dialog(GtkWindow *parent, enum trace_dialog_type type, | 47 | GtkResponseType trace_dialog(GtkWindow *parent, enum trace_dialog_type type, |
41 | gchar *message, ...); | 48 | gchar *message, ...); |
42 | 49 | ||
50 | gchar *trace_get_file_dialog_filter(const gchar *title, const char *open, | ||
51 | enum trace_dialog_filter, gboolean warn); | ||
43 | gchar *trace_get_file_dialog(const gchar *title, const char *open, | 52 | gchar *trace_get_file_dialog(const gchar *title, const char *open, |
44 | gboolean warn); | 53 | gboolean warn); |
45 | 54 | ||