Files
evolution/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
Ettore Perazzoli 91cc026904 Update the copyrights, replacing Helix Code with Ximian and
helixcode.com with ximian.com all over the place.

svn path=/trunk/; revision=10440
2001-06-23 08:52:02 +00:00

40 lines
734 B
Plaintext

/* -*- 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);
Bonobo::Control getEntryBySection (in string section_id)
raises (SectionNotFound);
void activateDialog (in string section_id);
};
};
};
};