diff options
author | Shreyas Srinivasan <sshreyas@novell.com> | 2005-12-22 10:12:34 +0800 |
---|---|---|
committer | Shreyas Srinivasan <shres@src.gnome.org> | 2005-12-22 10:12:34 +0800 |
commit | 87a09855fa42b43e11769b39c89336660f3467e7 (patch) | |
tree | 8e2880c7b49f68d3e2c4b54101e5731f1a64bab6 /shell/Evolution-Component.idl | |
parent | 3de1a0bf0ef4a1db6664cb51bfc33eeba0e56c9e (diff) | |
download | gsoc2013-evolution-87a09855fa42b43e11769b39c89336660f3467e7.tar.gz gsoc2013-evolution-87a09855fa42b43e11769b39c89336660f3467e7.tar.zst gsoc2013-evolution-87a09855fa42b43e11769b39c89336660f3467e7.zip |
Evolution is now Network Aware, the day of complete awareness beckons, The
2005-12-22 Shreyas Srinivasan <sshreyas@novell.com>
* Evolution is now Network Aware, the day of complete
awareness beckons, The machines are taking over...
* Network Manager support for evolution
svn path=/trunk/; revision=30926
Diffstat (limited to 'shell/Evolution-Component.idl')
-rw-r--r-- | shell/Evolution-Component.idl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/shell/Evolution-Component.idl b/shell/Evolution-Component.idl index a64efebe42..e0c486a630 100644 --- a/shell/Evolution-Component.idl +++ b/shell/Evolution-Component.idl @@ -28,6 +28,11 @@ module Evolution { CREATABLE_OBJECT, CREATABLE_FOLDER }; + enum ShellState { + USER_OFFLINE, + FORCED_OFFLINE, + USER_ONLINE + }; /* A type of item that the component can create when asked by the user, e.g. a mail message or an appointment. */ @@ -124,7 +129,7 @@ module Evolution { /* Set the online status of the component asynchronously */ - void setLineStatus(in boolean online, in Listener listener); + void setLineStatus(in ShellState shell_state, in Listener listener); }; }; |