aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-ShellView.idl
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-08-13 13:19:36 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-08-13 13:19:36 +0800
commit9f128d951a3ab24341afbb677a2f1dd665b56548 (patch)
treeefdccccbacac5b94a33856abf90c66f4fec2c5f2 /shell/Evolution-ShellView.idl
parentc1f24d07e4670d9a98676ae700f567f658236e2d (diff)
downloadgsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar
gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar.gz
gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar.bz2
gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar.lz
gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar.xz
gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar.zst
gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.zip
Add a kludgy and simple interface to the shell views to access the
status bar, to report messages and progress. svn path=/trunk/; revision=4796
Diffstat (limited to 'shell/Evolution-ShellView.idl')
-rw-r--r--shell/Evolution-ShellView.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/shell/Evolution-ShellView.idl b/shell/Evolution-ShellView.idl
new file mode 100644
index 0000000000..f0931dccdd
--- /dev/null
+++ b/shell/Evolution-ShellView.idl
@@ -0,0 +1,18 @@
+/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Interface for the Evolution shell views.
+ *
+ * Authors:
+ * Ettore Perazzoli <ettore@helixcode.com>
+ *
+ * Copyright (C) 2000 Helix Code, Inc.
+ */
+
+#include <Bonobo.idl>
+
+module Evolution {
+ interface ShellView : Bonobo::Unknown {
+ void set_message (in string message, in boolean busy);
+ void unset_message ();
+ };
+};