diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-11-14 03:02:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-11-14 03:02:07 +0800 |
commit | fd244132adb4225b6982422632bd69bc57b4e589 (patch) | |
tree | e6f706c7bb025b7bd90498aa3a6517924955a6a7 /mail/mail-component.h | |
parent | 4e093efda9886a3c51cdefd3fc236807a34e11f9 (diff) | |
download | gsoc2013-evolution-fd244132adb4225b6982422632bd69bc57b4e589.tar.gz gsoc2013-evolution-fd244132adb4225b6982422632bd69bc57b4e589.tar.zst gsoc2013-evolution-fd244132adb4225b6982422632bd69bc57b4e589.zip |
New folder-tree widget that replaces the shell's folder-tree widget.
2003-11-13 Jeffrey Stedfast <fejj@ximian.com>
* em-folder-tree.[c,h]: New folder-tree widget that replaces the
shell's folder-tree widget.
* em-folder-tree-model.[c,h]: New source files subclassing
GtkTreeStore for handling the mess that is drag&drop.
* em-folder-selection-button.c: Ported to use EMFolderTree.
* em-folder-selection.c: Ported to use EMFolderTree.
* em-folder-selector.c: Ported to use EMFolderTree.
* mail-component.c: Ported to use EMFolderTree.
* mail-offline-handler.c (storage_go_online): Updated to not pass
a storage argument.
* mail-folder-cache.c: Removed storage stuff.
* mail-send-recv.c (receive_update_got_store): Don't do EStorage*
stuff anymore.
svn path=/trunk/; revision=23331
Diffstat (limited to 'mail/mail-component.h')
-rw-r--r-- | mail/mail-component.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mail/mail-component.h b/mail/mail-component.h index 0a31fdc815..818b8d2ff9 100644 --- a/mail/mail-component.h +++ b/mail/mail-component.h @@ -30,7 +30,7 @@ #include <filter/rule-context.h> #include <bonobo/bonobo-object.h> -#include "shell/e-storage-set.h" +#include "em-folder-tree-model.h" #include "Evolution.h" @@ -48,13 +48,13 @@ typedef struct _MailComponentClass MailComponentClass; struct _MailComponent { BonoboObject parent; - + MailComponentPrivate *priv; }; struct _MailComponentClass { BonoboObjectClass parent_class; - + POA_GNOME_Evolution_Component__epv epv; }; @@ -76,15 +76,14 @@ void mail_component_remove_storage (MailComponent *component, CamelStore *store); void mail_component_remove_storage_by_uri (MailComponent *component, const char *uri); -EStorage *mail_component_lookup_storage (MailComponent *component, - CamelStore *store); int mail_component_get_storage_count (MailComponent *component); -EStorageSet *mail_component_peek_storage_set (MailComponent *component); void mail_component_storages_foreach (MailComponent *component, GHFunc func, void *data); +EMFolderTreeModel *mail_component_get_tree_model (MailComponent *component); + char *em_uri_from_camel (const char *curi); char *em_uri_to_camel (const char *euri); |