aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
diff options
context:
space:
mode:
Diffstat (limited to 'shell/Evolution-StorageSetView.idl')
-rw-r--r--shell/Evolution-StorageSetView.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/shell/Evolution-StorageSetView.idl b/shell/Evolution-StorageSetView.idl
new file mode 100644
index 0000000000..0649b3b4a2
--- /dev/null
+++ b/shell/Evolution-StorageSetView.idl
@@ -0,0 +1,28 @@
+/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Interface for the Evolution's StorageSetView control.
+ *
+ * Authors:
+ * Ettore Perazzoli <ettore@helixcode.com>
+ *
+ * Copyright (C) 2000 Helix Code, Inc.
+ */
+
+#include <Bonoob.idl>
+
+module Evolution {
+ interface StorageSetViewListener {
+ void folder_selected (in string uri);
+ };
+
+ /* FIXME: Maybe we should have a generic Bonobo::Listener interface. */
+ interface StorageSetView : Bonobo::Unknown {
+ exception AlreadyListening {};
+ exception NotFound {};
+
+ void add_listener (in StorageSetViewListener listener)
+ raises (AlreadyListening);
+ void remove_listener (in StorageSetViewListener listener)
+ raises (NotFound);
+ };
+};