aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/idl/SummaryComponent.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-11-07 05:40:14 +0800
committernobody <nobody@localhost>2000-11-07 05:40:14 +0800
commitb32d5bdc1994a9c0e4aa53c5ee6a492e4b36dba3 (patch)
tree786145ed8b82796d89e41d2ed37058c0097ace13 /executive-summary/idl/SummaryComponent.idl
parentb4c61eba8055f666fd8a2270879a6f9722faa2b3 (diff)
downloadgsoc2013-evolution-BALSA_1_0_0.tar
gsoc2013-evolution-BALSA_1_0_0.tar.gz
gsoc2013-evolution-BALSA_1_0_0.tar.bz2
gsoc2013-evolution-BALSA_1_0_0.tar.lz
gsoc2013-evolution-BALSA_1_0_0.tar.xz
gsoc2013-evolution-BALSA_1_0_0.tar.zst
gsoc2013-evolution-BALSA_1_0_0.zip
This commit was manufactured by cvs2svn to create tag 'BALSA_1_0_0'.BALSA_1_0_0
svn path=/tags/BALSA_1_0_0/; revision=6429
Diffstat (limited to 'executive-summary/idl/SummaryComponent.idl')
-rw-r--r--executive-summary/idl/SummaryComponent.idl67
1 files changed, 0 insertions, 67 deletions
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 ();
-
- };
-};