diff options
author | nobody <nobody@localhost> | 2001-02-04 12:10:39 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-02-04 12:10:39 +0800 |
commit | 541ed6bf346abe33775bfa8fbe4361d53a02924d (patch) | |
tree | 0a5b66655b7f9f6e527155bcabd2f7470e429a8b /shell/Evolution-Shell.idl | |
parent | 1b96583c0c6142969e366409bdfd371f078fc683 (diff) | |
download | gsoc2013-evolution-BEFORE_BOBJECT.tar gsoc2013-evolution-BEFORE_BOBJECT.tar.gz gsoc2013-evolution-BEFORE_BOBJECT.tar.bz2 gsoc2013-evolution-BEFORE_BOBJECT.tar.lz gsoc2013-evolution-BEFORE_BOBJECT.tar.xz gsoc2013-evolution-BEFORE_BOBJECT.tar.zst gsoc2013-evolution-BEFORE_BOBJECT.zip |
This commit was manufactured by cvs2svn to create tagBEFORE_BOBJECT
'BEFORE_BOBJECT'.
svn path=/tags/BEFORE_BOBJECT/; revision=7953
Diffstat (limited to 'shell/Evolution-Shell.idl')
-rw-r--r-- | shell/Evolution-Shell.idl | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/shell/Evolution-Shell.idl b/shell/Evolution-Shell.idl deleted file mode 100644 index f2124c40c8..0000000000 --- a/shell/Evolution-Shell.idl +++ /dev/null @@ -1,92 +0,0 @@ -/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * Interface for the Evolution shell. - * - * Authors: - * Ettore Perazzoli <ettore@helixcode.com> - * - * Copyright (C) 2000 Helix Code, Inc. - */ - -#include <Bonobo.idl> - -module GNOME { -module Evolution { - interface ShellComponent; - - interface FolderSelectionListener; - - interface Shell : Bonobo::Unknown { - exception NotFound {}; - exception Busy {}; - - /** - * getComponentByType: - * @type: name of a valid folder type - * - * Get the shell component associated with a specific folder type. - * - * Return value: the Evolution::ShellComponent interface for the component that - * handles @type. - */ - ShellComponent getComponentByType (in string type) - raises (NotFound); - - typedef sequence<string> FolderTypeList; - - /** - * createNewView: - * @uri: URI for the view to open - * - * Return value: the new view. - */ - ShellView createNewView (in string uri); - - /** - * selectUserFolder: - * @listener: a listener interface to report the answer of the user. - * @title: title for the folder selector dialog - * @default_folder: physical or `evolution:' URI for the folder that must be - * selected by default, when the dialog is popped up - * @possible_types: list of the names of the types of folders that are allowed - * - * Pop up a folder selection dialog from which the user can select a folder. - * Initially, the @default_folder is selected. The user can also create a new - * folder by using the "New..." button. The dialog only lets the user choose - * a folder whose type is listed in @possible_types. - */ - void selectUserFolder (in FolderSelectionListener listener, - in string title, - in string default_folder, - in FolderTypeList possible_types) - raises (Busy); - - /** - * getLocalStorage: - * - * Get the interface to the local storage. - * - * FIXME: Probably we just want to be able to request this to - * the StorageRegistry. This is an ugly kludge. - * - * Return value: the `Evolution::LocalStorage' interface for - * the local storage. */ - LocalStorage getLocalStorage (); - - /** - * createStorageSetView: - * - * Create a control for the storage set view. This control - * will also implement the `Evolution::StorageSetView' interface. - * - * Return value: the newly created control. - */ - Bonobo::Control createStorageSetView (); - }; - - interface FolderSelectionListener { - void notifySelected (in string uri, in string physical_uri); - void notifyCanceled (); - }; -}; -}; |