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
23 lines
445 B
Plaintext
23 lines
445 B
Plaintext
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Interface for the Evolution shell.
|
|
*
|
|
* Authors:
|
|
* Ettore Perazzoli <ettore@helixcode.com>
|
|
*
|
|
* Copyright (C) 2000 Helix Code, Inc.
|
|
*/
|
|
|
|
#include <Bonobo.idl>
|
|
|
|
module Evolution {
|
|
interface ShellComponent;
|
|
|
|
interface Shell : Bonobo::Unknown {
|
|
exception NotFound {};
|
|
|
|
ShellComponent get_component_for_type (in string type)
|
|
raises (NotFound);
|
|
};
|
|
};
|