aboutsummaryrefslogtreecommitdiffstats
path: root/mail/Mail.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-09-17 12:32:38 +0800
committernobody <nobody@localhost>2001-09-17 12:32:38 +0800
commitb741f2e9e395de5408edea20ff3c4d4731439079 (patch)
tree6f31e70927858f2bafcfc481e337a665090bdb8e /mail/Mail.idl
parent169d9ae19a0eb165edc757eca753a757a02f60f7 (diff)
downloadgsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.gz
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.bz2
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.lz
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.xz
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.zst
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.zip
This commit was manufactured by cvs2svn to create tagGNOME_SPELL_0_3
'GNOME_SPELL_0_3'. svn path=/tags/GNOME_SPELL_0_3/; revision=12879
Diffstat (limited to 'mail/Mail.idl')
-rw-r--r--mail/Mail.idl86
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);
- };
-};
-};
-