diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-11-17 19:28:48 +0100 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-11-23 16:51:39 +0100 |
commit | cf25ec8fa76721957d4bee91615096aede936c5d (patch) | |
tree | 1d66e6f73f02984f1cea8c65e9789f12686d9c90 /gtk/gtkenums.h | |
parent | 9d6055d0c891c21980a576b17b853310c3ac3797 (diff) | |
download | gtk+-cf25ec8fa76721957d4bee91615096aede936c5d.tar.gz |
open-with: first attempt to split the dialog into a widget + interface
Like GtkFileChooser does; GtkOpenWith is a generic interface, which is
now implemented by both GtkOpenWithDialog and GtkOpenWithWidget (and in
the future also by GtkOpenWithComboBox).
Diffstat (limited to 'gtk/gtkenums.h')
-rw-r--r-- | gtk/gtkenums.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h index 9fd47d7052..3523699f8f 100644 --- a/gtk/gtkenums.h +++ b/gtk/gtkenums.h @@ -565,6 +565,13 @@ typedef enum } GtkScrollablePolicy; +typedef enum +{ + GTK_OPEN_WITH_WIDGET_SHOW_MODE_RECOMMENDED, + GTK_OPEN_WITH_WIDGET_SHOW_MODE_ALL, + GTK_OPEN_WITH_WIDGET_SHOW_MODE_HEADINGS +} GtkOpenWithWidgetShowMode; + G_END_DECLS |