blob: 244799deb25fdd8af0ccf6c410531c434ef2b00a (
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
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* CORBA interface for the SelectNames dialog.
*
* Authors:
* Ettore Perazzoli <ettore@ximian.com>
*
* Copyright (C) 2000 Ximian, Inc.
*/
#include <Bonobo.idl>
module GNOME {
module Evolution {
module Addressbook {
interface SelectNames : Bonobo::Unknown {
struct Section {
string id;
string title;
};
typedef sequence<Section> SectionList;
exception DuplicateID {};
exception SectionNotFound {};
void addSection (in string id, in string title)
raises (DuplicateID);
void addSectionWithLimit (in string id, in string title, in short limit)
raises (DuplicateID);
Bonobo::Control getEntryBySection (in string section_id)
raises (SectionNotFound);
void activateDialog (in string section_id);
};
};
};
};
|