aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/idl/Summary.idl
blob: 04b89187e002e328211556788ba9c8d2b28b9998 (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
/*-*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * CORBA interface for the Evolution shell.
 *
 * Authors:
 *   Iain Holmes  <iain@helixcode.com> 
 *
 * Copyright (C) 2000 Helix Code, Inc.
 */

#include <Bonobo.idl>

module GNOME {
module Evolution {
module Summary {
    interface ViewFrame: Bonobo::Unknown {
        exception NoSubWindow {};
        
        /**
         * setTitle:
         * @component: The SummaryComponent whose window to set the title.
         * @title: The title.
         *
         * Sets the title of the subwindow that displays @component
         * to @title
         */
        void setTitle (in long id, 
                   in string title)
            raises (NoSubWindow);

        void setIcon (in long id,
                  in string icon)
            raises (NoSubWindow);

        /**
         * flash:
         * @component: The SummaryComponent that owns a subwindow.
         *
         * Flashes the subwindow that displays @component.
         */
         void flash (in long id)
            raises (NoSubWindow);

        /**
         * updateComponent:
         * @component: The SummaryComponent that owns a subwindow.
         * @html: The new html that defines a component.
         *
         * Requests that the html that displays @component is changed
         * to @html.
         */
        void updateComponent (in long id,
                      in string html)
            raises (NoSubWindow);
    };
};
};
};