
2001-10-18 <NotZed@Ximian.com> * mail-vfolder.c (vfolder_adduri): Added remove flag - its not adduri, its removeuri, its less typing than creating a removeuri. (vfolder_adduri_do): Implement the remove flag. (mail_vfolder_remove_uri): Changed to mail_vfolder_delte_uri, to indicate its actually been deleted. (mail_vfolder_add_uri): Added remove flag. (rule_changed): When adding existing folders to a new rule, strdup the list data. * mail-folder-cache.c (store_finalised): Unhook from all events when done. (mail_note_store_remove): Remove a store from being noted. (free_folder_info): Also if we have a folder, unhook all events. Also remove the uri from vfolders. (mail_note_folder): Remove warning about adding folders to stores that aren't added yet - we might actually be removing the store. * component-factory.c (mail_remove_storage): Call mail_note_store_remove when we remove the storage. svn path=/trunk/; revision=13782
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
|
|
#ifndef _MAIL_VFOLDER_H
|
|
#define _MAIL_VFOLDER_H
|
|
|
|
#include "Evolution.h"
|
|
#include "evolution-storage.h"
|
|
#include "evolution-shell-component.h"
|
|
|
|
#include "camel/camel-folder.h"
|
|
#include "camel/camel-mime-message.h"
|
|
#include "filter/vfolder-rule.h"
|
|
#include "filter/filter-part.h"
|
|
|
|
void vfolder_load_storage(GNOME_Evolution_Shell shell);
|
|
|
|
void vfolder_edit (void);
|
|
void vfolder_edit_rule(const char *name);
|
|
FilterPart *vfolder_create_part (const char *name);
|
|
FilterRule *vfolder_clone_rule (FilterRule *in);
|
|
void vfolder_gui_add_rule (VfolderRule *rule);
|
|
void vfolder_gui_add_from_message (CamelMimeMessage *msg, int flags, const char *source);
|
|
void vfolder_gui_add_from_mlist (CamelMimeMessage *msg, const char *mlist, const char *source);
|
|
|
|
/* add a uri that is now (un)available to vfolders in a transient manner */
|
|
void mail_vfolder_add_uri(CamelStore *store, const char *uri, int remove);
|
|
|
|
/* remove a uri that should be removed from vfolders permanently */
|
|
void mail_vfolder_delete_uri(CamelStore *store, const char *uri);
|
|
|
|
/* close up, clean up */
|
|
void mail_vfolder_shutdown (void);
|
|
|
|
#endif
|