diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-13 13:19:36 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-13 13:19:36 +0800 |
commit | 9f128d951a3ab24341afbb677a2f1dd665b56548 (patch) | |
tree | efdccccbacac5b94a33856abf90c66f4fec2c5f2 /shell/Evolution-ShellView.idl | |
parent | c1f24d07e4670d9a98676ae700f567f658236e2d (diff) | |
download | gsoc2013-evolution-9f128d951a3ab24341afbb677a2f1dd665b56548.tar.gz 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.idl | 18 |
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 (); + }; +}; |