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
This commit is contained in:
committed by
Jonathan Blandford
parent
a8c8dff343
commit
d40eda7e87
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user