blob: 55f7b6426d86633c2a0fe1a6b8bc16919c877410 (
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
|
/*-*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* CORBA interface for the Evolution shell.
*
* Authors:
* Ettore Perazzoli <ettore@helixcode.com>
*
* Copyright (C) 2000 Helix Code, Inc.
*/
/* TODO: Needs Exceptions */
#include <Bonobo.idl>
module Evolution {
interface Summary;
interface SummaryComponent: Bonobo::Unknown {
/**
* supports:
* @html: Does it support HTML?
* @bonobo: Does it support Bonobo Controls?
*
* Sets the @html and @bonobo arguments to TRUE
* if the component supports that type of
* embedding
*/
void supports (out boolean bonobo, out boolean html);
/**
* set_owner:
* @summary: A Summary object.
*
* Sets the owner of the component.
*/
void set_owner (in Summary owner);
/**
* unset_owner:
*
* Unsets the owner of the component.
*/
void unset_owner ();
/**
* create_view:
*
* Creates a summary of the data that the component has.
* Returns: A @BonoboControl of the view.
*/
Bonobo::Control create_bonobo_view (out string title,
out string icon);
string create_html_view (out string title,
out string icon);
/**
* configure:
*
* Instructs the component to open a preferences dialog.
*/
void configure ();
};
};
|