diff options
author | nobody <nobody@localhost> | 2001-10-08 11:45:19 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-10-08 11:45:19 +0800 |
commit | 99aa94b60c38a0300894981d2092659fee5ed568 (patch) | |
tree | 9ad1144703d83dbf5eef154c2d0b481118486b76 /mail/Mail.idl | |
parent | 856ebf12de55fc015d9b6c5b6da888ab9b384a5d (diff) | |
download | gsoc2013-evolution-99aa94b60c38a0300894981d2092659fee5ed568.tar.gz gsoc2013-evolution-99aa94b60c38a0300894981d2092659fee5ed568.tar.zst gsoc2013-evolution-99aa94b60c38a0300894981d2092659fee5ed568.zip |
This commit was manufactured by cvs2svn to create tagGNOME_PIM_1_4_2
'GNOME_PIM_1_4_2'.
svn path=/tags/GNOME_PIM_1_4_2/; revision=13495
Diffstat (limited to 'mail/Mail.idl')
-rw-r--r-- | mail/Mail.idl | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/mail/Mail.idl b/mail/Mail.idl deleted file mode 100644 index f68889e0c2..0000000000 --- a/mail/Mail.idl +++ /dev/null @@ -1,86 +0,0 @@ -/* - * mail.idl: Mail interfaces for Evolution - * - * Author: - * Miguel de Icaza (miguel@ximian.com) - * - * (C) 2000 Ximian, Inc. - */ - -#include <Bonobo.idl> - -module GNOME { -module Evolution { - - interface MessageList : Bonobo::Unknown { - - void selectMessage (in long message_number); - void openMessage (in long message_number); - }; - - /* - * FolderBrowser object. - * - * configuration of this widget is done trough - * Bonobo Properties - */ - interface FolderBrowser : Bonobo::Unknown { - MessageList getMessageList (); - }; - - interface FolderInfo : Bonobo::Unknown { - struct MessageCount { - string path; - long count; - long unread; - }; - - void getInfo (in string foldername, - in Bonobo::Listener listener); - }; - - interface MailConfig : Bonobo::Unknown { - - struct Identity { - string name; - string address; - string organization; - string signature; - string html_signature; - boolean has_html_signature; - }; - - struct Service { - string url; - boolean keep_on_server; - boolean auto_check; - long auto_check_time; - boolean save_passwd; - boolean enabled; - }; - - struct Account { - string name; - - Identity id; - Service source; - Service transport; - - string drafts_folder_name; - string drafts_folder_uri; - string sent_folder_name; - string sent_folder_uri; - }; - - void addAccount (in Account acc); - }; - - interface MailFilter : Bonobo::Unknown { - - void addFilter (in string rule); - - void removeFilter (in string rule); - }; -}; -}; - |