aboutsummaryrefslogtreecommitdiffstats
path: root/mail/Mail.idl
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>2000-01-25 16:43:24 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-25 16:43:24 +0800
commit670f57583d84d4c8f0195d3eefbef93920c6e9d9 (patch)
tree5a99fdf111ee22bd689c42b3f0c36c22a44a41fc /mail/Mail.idl
parented7345eec736a39e3e37a4e76a0bdba7157270b7 (diff)
downloadgsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.tar
gsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.tar.gz
gsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.tar.bz2
gsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.tar.lz
gsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.tar.xz
gsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.tar.zst
gsoc2013-evolution-670f57583d84d4c8f0195d3eefbef93920c6e9d9.zip
More work
svn path=/trunk/; revision=1628
Diffstat (limited to 'mail/Mail.idl')
-rw-r--r--mail/Mail.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/mail/Mail.idl b/mail/Mail.idl
new file mode 100644
index 0000000000..74c6ba74d4
--- /dev/null
+++ b/mail/Mail.idl
@@ -0,0 +1,30 @@
+/*
+ * mail.idl: Mail interfaces for Evolution
+ *
+ * Author:
+ * Miguel de Icaza (miguel@helixcode.com)
+ *
+ * (C) 2000 Helix Code, Inc.
+ */
+
+#include <bonobo.idl>
+
+module Evolution {
+
+ interface MessageList : GNOME::Unknown {
+
+ void select_message (in long message_number);
+ void open_message (in long message_number);
+ };
+
+ /*
+ * FolderBrowser object.
+ *
+ * configuration of this widget is done trough
+ * Bonobo Properties
+ */
+ interface FolderBrowser : GNOME::Unknown {
+ MessageList get_message_list ();
+ };
+};
+