diff options
Diffstat (limited to 'executive-summary/idl')
-rw-r--r-- | executive-summary/idl/.cvsignore | 2 | ||||
-rw-r--r-- | executive-summary/idl/Executive-Summary.idl | 3 | ||||
-rw-r--r-- | executive-summary/idl/Makefile.am | 31 | ||||
-rw-r--r-- | executive-summary/idl/Summary.idl | 54 | ||||
-rw-r--r-- | executive-summary/idl/SummaryComponent.idl | 67 |
5 files changed, 0 insertions, 157 deletions
diff --git a/executive-summary/idl/.cvsignore b/executive-summary/idl/.cvsignore deleted file mode 100644 index b840c21800..0000000000 --- a/executive-summary/idl/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -Makefile.in -Makefile
\ No newline at end of file diff --git a/executive-summary/idl/Executive-Summary.idl b/executive-summary/idl/Executive-Summary.idl deleted file mode 100644 index ac3809e299..0000000000 --- a/executive-summary/idl/Executive-Summary.idl +++ /dev/null @@ -1,3 +0,0 @@ -#include <Bonobo.idl> -#include <SummaryComponent.idl> -#include <Summary.idl> diff --git a/executive-summary/idl/Makefile.am b/executive-summary/idl/Makefile.am deleted file mode 100644 index e45784d49c..0000000000 --- a/executive-summary/idl/Makefile.am +++ /dev/null @@ -1,31 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/widgets \ - -I$(top_srcdir)/widgets/e-text \ - -I$(top_srcdir) \ - -I$(top_builddir)/shell \ - -I$(top_srcdir)/shell \ - $(GNOME_VFS_CFLAGS) \ - $(UNICODE_CFLAGS) \ - $(GTKHTML_CFLAGS) \ - -DEVOLUTION_VERSION=\""$(VERSION)"\" \ - -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ - -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \ - -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ - -DEVOLUTION_DATADIR=\""$(datadir)"\" \ - -DG_LOG_DOMAIN=\"evolution-executive-summary\" - -EXTRA_DIST = $(IDLS) - -CLEANFILES = $(IDL_GENERATED) - -IDLS = \ - Executive-Summary.idl \ - Summary.idl \ - SummaryComponent.idl - -IDL_GENERATED = \ - Executive-Summary.h \ - Executive-Summary-common.c \ - Executive-Summary-skels.c \ - Executive-Summary-stubs.c - diff --git a/executive-summary/idl/Summary.idl b/executive-summary/idl/Summary.idl deleted file mode 100644 index 76f98dd537..0000000000 --- a/executive-summary/idl/Summary.idl +++ /dev/null @@ -1,54 +0,0 @@ -/*-*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * CORBA interface for the Evolution shell. - * - * Authors: - * Iain Holmes <iain@helixcode.com> - * - * Copyright (C) 2000 Helix Code, Inc. - */ - -#include <Bonobo.idl> - -module Evolution { - interface Summary: Bonobo::Unknown { - exception NoSubWindow {}; - - /** - * set_title: - * @component: The SummaryComponent whose window to set the title. - * @title: The title. - * - * Sets the title of the subwindow that displays @component - * to @title - */ - void set_title (in long id, - in string title) - raises (NoSubWindow); - - void set_icon (in long id, - in string icon) - raises (NoSubWindow); - - /** - * flash: - * @component: The SummaryComponent that owns a subwindow. - * - * Flashes the subwindow that displays @component. - */ - void flash (in long id) - raises (NoSubWindow); - - /** - * update_html_component: - * @component: The SummaryComponent that owns a subwindow. - * @html: The new html that defines a component. - * - * Requests that the html that displays @component is changed - * to @html. - */ - void update_component (in long id, - in string html) - raises (NoSubWindow); - }; -}; diff --git a/executive-summary/idl/SummaryComponent.idl b/executive-summary/idl/SummaryComponent.idl deleted file mode 100644 index 1c60314fb2..0000000000 --- a/executive-summary/idl/SummaryComponent.idl +++ /dev/null @@ -1,67 +0,0 @@ -/*-*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * CORBA interface for the Evolution Executive Summary Components. - * - * Authors: - * Iain Holmes <iain@helixcode.com> - * - * Copyright (C) 2000 Helix Code, Inc. - */ - -/* TODO: Needs Exceptions */ - -#include <Bonobo.idl> - -module Evolution { - interface Summary; - - interface SummaryComponent: Bonobo::Unknown { - - /** - * 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: - * @control: A Bonobo_Control - * @html: HTML of the view. - * @title: Title of the view. - * @icon: Icon to be used for the view. - * - * Creates a summary of the data that the component has. - * Returns: The ID of the view. - */ - long create_view (in long id, - out Bonobo::Control control, - out string html, - out string title, - out string icon); - - /** - * destroy_view: - * @id: ID of the view to be destroyed. - * - * Tells a service that a view has been destroyed. - */ - void destroy_view (in long id); - - /** - * configure: - * - * Instructs the component to open a preferences dialog. - */ - void configure (); - - }; -}; |