aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
blob: 3d95b075be7752e88e72f07f1708897e7089e445 (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
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Interface for the Evolution's StorageSetView control.
 *
 * Authors:
 *   Ettore Perazzoli <ettore@helixcode.com>
 *
 * Copyright (C) 2000 Helix Code, Inc.
 */

#include <Bonoob.idl>

module Evolution {
    interface StorageSetViewListener {
        void folder_selected (in string uri);
        void storage_selected (in string uri);
    };

    /* FIXME: Maybe we should have a generic Bonobo::Listener interface.  */
    interface StorageSetView : Bonobo::Unknown {
        exception AlreadyListening {};
        exception NotFound {};

        attribute boolean show_folders;

        void add_listener (in StorageSetViewListener listener)
            raises (AlreadyListening);
        void remove_listener (in StorageSetViewListener listener)
            raises (NotFound);
    };
};