summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooser.h
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@gnome.org>2004-02-26 23:35:05 +0000
committerJonathan Blandford <jrb@src.gnome.org>2004-02-26 23:35:05 +0000
commitd40eda7e8774b57a7cbe5a7421c92a51167900cc (patch)
treeba175a793f7160097fdc7c37dddf6922af88caf8 /gtk/gtkfilechooser.h
parenta8c8dff3438161fbec12ec8fc78fed660b3de174 (diff)
downloadgtk+-d40eda7e8774b57a7cbe5a7421c92a51167900cc.tar.gz
Add two more folder modes to the enum.
Thu Feb 26 18:25:57 2004 Jonathan Blandford <jrb@gnome.org> * gtk/gtkfilechooser.h (GtkFileChooserAction): Add two more folder modes to the enum. * gtk/gtkfilechooser.c (gtk_file_chooser_set_folder_mode): Remove. (gtk_file_chooser_get_folder_mode): Remove
Diffstat (limited to 'gtk/gtkfilechooser.h')
-rw-r--r--gtk/gtkfilechooser.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk/gtkfilechooser.h b/gtk/gtkfilechooser.h
index ec7ecce0d1..a4c733ad8b 100644
--- a/gtk/gtkfilechooser.h
+++ b/gtk/gtkfilechooser.h
@@ -35,7 +35,9 @@ typedef struct _GtkFileChooser GtkFileChooser;
typedef enum
{
GTK_FILE_CHOOSER_ACTION_OPEN,
- GTK_FILE_CHOOSER_ACTION_SAVE
+ GTK_FILE_CHOOSER_ACTION_SAVE,
+ GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
+ GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
} GtkFileChooserAction;
GType gtk_file_chooser_get_type (void);
@@ -56,9 +58,6 @@ GQuark gtk_file_chooser_error_quark (void);
void gtk_file_chooser_set_action (GtkFileChooser *chooser,
GtkFileChooserAction action);
GtkFileChooserAction gtk_file_chooser_get_action (GtkFileChooser *chooser);
-void gtk_file_chooser_set_folder_mode (GtkFileChooser *chooser,
- gboolean folder_mode);
-gboolean gtk_file_chooser_get_folder_mode (GtkFileChooser *chooser);
void gtk_file_chooser_set_local_only (GtkFileChooser *chooser,
gboolean local_only);
gboolean gtk_file_chooser_get_local_only (GtkFileChooser *chooser);