diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-22 18:41:44 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-22 18:41:44 +0800 |
commit | 2df293b5c71033efdbda28a6236563816ef7e139 (patch) | |
tree | e2392fa3e8a81d1a45467789ed1a089c0df34e8c /shell/e-storage-set.h | |
parent | 7aee2da177ed7eb902537e9d5d88baaeefdc36b5 (diff) | |
download | gsoc2013-evolution-2df293b5c71033efdbda28a6236563816ef7e139.tar.gz gsoc2013-evolution-2df293b5c71033efdbda28a6236563816ef7e139.tar.zst gsoc2013-evolution-2df293b5c71033efdbda28a6236563816ef7e139.zip |
More DnD work. Now we handle copying and moving of folders, although
the hooks to actually make the physical operation happen are missing.
Also, fix a stupid cut & paste error in Chris' commit (and re-indent
the code a bit to make it match the surrounding style).
svn path=/trunk/; revision=8890
Diffstat (limited to 'shell/e-storage-set.h')
-rw-r--r-- | shell/e-storage-set.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/shell/e-storage-set.h b/shell/e-storage-set.h index b39725ea1c..66e2ce8ab0 100644 --- a/shell/e-storage-set.h +++ b/shell/e-storage-set.h @@ -69,19 +69,16 @@ GtkType e_storage_set_get_type (void); void e_storage_set_construct (EStorageSet *storage_set, EFolderTypeRegistry *folder_type_registry); EStorageSet *e_storage_set_new (EFolderTypeRegistry *folder_type_registry); - gboolean e_storage_set_add_storage (EStorageSet *storage_set, EStorage *storage); gboolean e_storage_set_remove_storage (EStorageSet *storage_set, EStorage *storage); void e_storage_set_remove_all_storages (EStorageSet *storage_set); - GList *e_storage_set_get_storage_list (EStorageSet *storage_set); EStorage *e_storage_set_get_storage (EStorageSet *storage_set, const char *storage_name); EFolder *e_storage_set_get_folder (EStorageSet *storage_set, const char *path); - GtkWidget *e_storage_set_new_view (EStorageSet *storage_set); void e_storage_set_async_create_folder (EStorageSet *storage_set, @@ -95,6 +92,17 @@ void e_storage_set_async_remove_folder (EStorageSet *storage EStorageResultCallback callback, void *data); +void e_storage_set_async_copy_folder (EStorageSet *storage_set, + const char *source_path, + const char *destination_path, + EStorageResultCallback callback, + void *data); +void e_storage_set_async_move_folder (EStorageSet *storage_set, + const char *source_path, + const char *destination_path, + EStorageResultCallback callback, + void *data); + EFolderTypeRegistry *e_storage_set_get_folder_type_registry (EStorageSet *storage_set); /* Utility functions. */ |