aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/idl
diff options
context:
space:
mode:
Diffstat (limited to 'executive-summary/idl')
-rw-r--r--executive-summary/idl/Summary.idl22
-rw-r--r--executive-summary/idl/SummaryComponent.idl32
2 files changed, 31 insertions, 23 deletions
diff --git a/executive-summary/idl/Summary.idl b/executive-summary/idl/Summary.idl
index 76f98dd537..04b89187e0 100644
--- a/executive-summary/idl/Summary.idl
+++ b/executive-summary/idl/Summary.idl
@@ -10,24 +10,26 @@
#include <Bonobo.idl>
+module GNOME {
module Evolution {
- interface Summary: Bonobo::Unknown {
+module Summary {
+ interface ViewFrame: Bonobo::Unknown {
exception NoSubWindow {};
/**
- * set_title:
+ * setTitle:
* @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)
+ void setTitle (in long id,
+ in string title)
raises (NoSubWindow);
- void set_icon (in long id,
- in string icon)
+ void setIcon (in long id,
+ in string icon)
raises (NoSubWindow);
/**
@@ -40,15 +42,17 @@ module Evolution {
raises (NoSubWindow);
/**
- * update_html_component:
+ * updateComponent:
* @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)
+ void updateComponent (in long id,
+ in string html)
raises (NoSubWindow);
};
};
+};
+};
diff --git a/executive-summary/idl/SummaryComponent.idl b/executive-summary/idl/SummaryComponent.idl
index 1c60314fb2..fbfd58800a 100644
--- a/executive-summary/idl/SummaryComponent.idl
+++ b/executive-summary/idl/SummaryComponent.idl
@@ -12,28 +12,30 @@
#include <Bonobo.idl>
+module GNOME {
module Evolution {
- interface Summary;
+module Summary {
+ interface ViewFrame;
- interface SummaryComponent: Bonobo::Unknown {
+ interface Component: Bonobo::Unknown {
/**
- * set_owner:
+ * setOwner:
* @summary: A Summary object.
*
* Sets the owner of the component.
*/
- void set_owner (in Summary owner);
+ void setOwner (in ViewFrame owner);
/**
- * unset_owner:
+ * unsetOwner:
*
* Unsets the owner of the component.
*/
- void unset_owner ();
+ void unsetOwner ();
/**
- * create_view:
+ * createView:
* @control: A Bonobo_Control
* @html: HTML of the view.
* @title: Title of the view.
@@ -42,19 +44,19 @@ module Evolution {
* 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);
+ long createView (in long id,
+ out Bonobo::Control control,
+ out string html,
+ out string title,
+ out string icon);
/**
- * destroy_view:
+ * destroyView:
* @id: ID of the view to be destroyed.
*
* Tells a service that a view has been destroyed.
*/
- void destroy_view (in long id);
+ void destroyView (in long id);
/**
* configure:
@@ -65,3 +67,5 @@ module Evolution {
};
};
+};
+};