aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-Shell.idl
blob: 9d1542ec269575e705f950e1c10314b0ccdb8f13 (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
/* -*- 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 {};

        ShellComponent get_component_for_type (in string type)
            raises (NotFound);

        /* FIXME: Parent "transient_for" window. */
        void user_select_folder (in FolderSelectionListener listener,
                     in string title,
                     in string default_folder)
            raises (Busy);
    };

    interface FolderSelectionListener {
        void selected (in string uri, in string physical_uri);
    };
};