blob: d224cb0b272a4fd295685696cb5301398f7a8996 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* -*- 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 Evolution {
interface ShellComponent;
interface FolderSelectionListener;
interface Shell : Bonobo::Unknown {
exception NotFound {};
exception Busy {};
/**
* get_component_for_type:
* @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 get_component_for_type (in string type)
raises (NotFound);
typedef sequence<string> FolderTypeList;
/**
* user_select_folder:
* @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 user_select_folder (in FolderSelectionListener listener,
in string title,
in string default_folder,
in FolderTypeList possible_types)
raises (Busy);
/**
* get_local_storage:
*
* 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 get_local_storage ();
};
interface FolderSelectionListener {
void selected (in string uri, in string physical_uri);
void cancel ();
};
};
|