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

/* TODO: Needs Exceptions */

#include <Bonobo.idl>
#include <oaf-factory.idl>

module GNOME {
module Evolution {
module Summary {
    interface ViewFrame;

    interface Component: Bonobo::Unknown {

        /**
         * setOwner:
         * @summary: A Summary object.
         *
         * Sets the owner of the component.
         */
        void setOwner (in ViewFrame owner);

        /**
         * unsetOwner:
         *
         * Unsets the owner of the component.
         */
        void unsetOwner ();
    };

    interface ComponentFactory: Bonobo::Unknown {
        Component createView ();
    };
};
};
};