Files
evolution/shell/Evolution-ShellComponent.idl
Ettore Perazzoli fad1048c1b Make quit work again by implementing a CORBA method to unregister
components in ShellComponent.  Implemented toggle menu items to
hide/show the shortcut bar and the folder bar (but they don't work,
apparently because of some BonoboUIHandler bogosity).  Implemented a
CORBA method in Shell to allow a client to get the component that
handles a certain folder type.

svn path=/trunk/; revision=3303
2000-05-30 23:59:22 +00:00

40 lines
812 B
Plaintext

/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Interface for the Evolution components.
*
* Authors:
* Ettore Perazzoli <ettore@helixcode.com>
*
* Copyright (C) 2000 Helix Code, Inc.
*/
#include <Bonobo.h>
module Evolution {
interface Shell;
struct FolderType {
string name;
string icon_name;
};
typedef sequence<FolderType> FolderTypeList;
interface ShellComponent : Bonobo::Unknown {
readonly attribute FolderTypeList supported_types;
/* FIXME can we use an attribute here? */
exception AlreadyOwned {};
void set_owner (in Shell shell)
raises (AlreadyOwned);
exception NotOwned {};
void unset_owner ()
raises (NotOwned);
exception NotFound {};
Bonobo::Control create_view (in string physical_uri)
raises (NotFound);
};
};