aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/idl/Summary.idl
diff options
context:
space:
mode:
Diffstat (limited to 'executive-summary/idl/Summary.idl')
-rw-r--r--executive-summary/idl/Summary.idl54
1 files changed, 0 insertions, 54 deletions
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);
- };
-};