diff options
Diffstat (limited to 'shell/e-shell-folder-selection-dialog.h')
-rw-r--r-- | shell/e-shell-folder-selection-dialog.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/shell/e-shell-folder-selection-dialog.h b/shell/e-shell-folder-selection-dialog.h index 29d96e4c61..2ddb98bafe 100644 --- a/shell/e-shell-folder-selection-dialog.h +++ b/shell/e-shell-folder-selection-dialog.h @@ -52,6 +52,10 @@ struct _EShellFolderSelectionDialog { struct _EShellFolderSelectionDialogClass { GnomeDialogClass parent_class; + + void (* folder_selected) (EShellFolderSelectionDialog *folder_selection_dialog, + const char *path); + void (* cancelled) (EShellFolderSelectionDialog *folder_selection_dialog); }; @@ -59,10 +63,12 @@ GtkType e_shell_folder_selection_dialog_get_type (void); void e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_selection_dialog, EShell *shell, const char *title, - const char *default_path); + const char *default_path, + const char *allowed_types[]); GtkWidget *e_shell_folder_selection_dialog_new (EShell *shell, const char *title, - const char *default_path); + const char *default_path, + const char *allowed_types[]); const char *e_shell_folder_selection_dialog_get_selected_path (EShellFolderSelectionDialog *folder_selection_dialog); |