diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-08 07:48:18 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-08 07:48:18 +0800 |
commit | 3f72523dfa9fcbea86538b37130b863fc805e7ec (patch) | |
tree | 83a2be4183f16ba0e6fdc8723cb913e753c5ce3c /shell/e-folder-type-registry.h | |
parent | 82ae1edb4df0ab71f31d4d38d5fc62eaec3e3cde (diff) | |
download | gsoc2013-evolution-3f72523dfa9fcbea86538b37130b863fc805e7ec.tar.gz gsoc2013-evolution-3f72523dfa9fcbea86538b37130b863fc805e7ec.tar.zst gsoc2013-evolution-3f72523dfa9fcbea86538b37130b863fc805e7ec.zip |
Added the ability for components to specify drag/drop types, and
started some work to get the EStorageSetView to use them. Still in
progress, nothing really happens for the user yet.
svn path=/trunk/; revision=8589
Diffstat (limited to 'shell/e-folder-type-registry.h')
-rw-r--r-- | shell/e-folder-type-registry.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/shell/e-folder-type-registry.h b/shell/e-folder-type-registry.h index f4a1905f52..f34db31811 100644 --- a/shell/e-folder-type-registry.h +++ b/shell/e-folder-type-registry.h @@ -62,7 +62,11 @@ EFolderTypeRegistry *e_folder_type_registry_new (void); gboolean e_folder_type_registry_register_type (EFolderTypeRegistry *folder_type_registry, const char *type_name, - const char *icon_name); + const char *icon_name, + int num_exported_dnd_types, + const char **exported_dnd_types, + int num_accepted_dnd_types, + const char **accepted_dnd_types); gboolean e_folder_type_registry_set_handler_for_type (EFolderTypeRegistry *folder_type_registry, const char *type_name, EvolutionShellComponentClient *handler); @@ -77,6 +81,12 @@ const char *e_folder_type_registry_get_icon_name_for_type (E EvolutionShellComponentClient *e_folder_type_registry_get_handler_for_type (EFolderTypeRegistry *folder_type_registry, const char *type_name); +GList *e_folder_type_registry_get_exported_dnd_types_for_type (EFolderTypeRegistry *folder_type_registry, + const char *type_name); +GList *e_folder_type_registry_get_accepted_dnd_types_for_type (EFolderTypeRegistry *folder_type_registry, + const char *type_name); + + #ifdef __cplusplus } #endif /* __cplusplus */ |