diff options
author | nobody <nobody@localhost> | 2001-08-04 06:36:03 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-08-04 06:36:03 +0800 |
commit | de5505d3d6fe6f53b472630864a221298bde4974 (patch) | |
tree | f3c195439d0a5928ddb85c3a1583b09eb498443a /mail/Mail.idl | |
parent | 308aaf47ea788683b47a600d6c6f31563d7ee070 (diff) | |
download | gsoc2013-evolution-gtkmm_1_2_7.tar gsoc2013-evolution-gtkmm_1_2_7.tar.gz gsoc2013-evolution-gtkmm_1_2_7.tar.bz2 gsoc2013-evolution-gtkmm_1_2_7.tar.lz gsoc2013-evolution-gtkmm_1_2_7.tar.xz gsoc2013-evolution-gtkmm_1_2_7.tar.zst gsoc2013-evolution-gtkmm_1_2_7.zip |
This commit was manufactured by cvs2svn to create tag 'gtkmm_1_2_7'.gtkmm_1_2_7
svn path=/tags/gtkmm_1_2_7/; revision=11632
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); - }; -}; -}; - |