diff options
Diffstat (limited to 'shell/Evolution-ShellComponent.idl')
-rw-r--r-- | shell/Evolution-ShellComponent.idl | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/shell/Evolution-ShellComponent.idl b/shell/Evolution-ShellComponent.idl index 106ec0d571..592245481e 100644 --- a/shell/Evolution-ShellComponent.idl +++ b/shell/Evolution-ShellComponent.idl @@ -10,6 +10,7 @@ #include <Bonobo.h> +module GNOME { module Evolution { interface Shell; @@ -28,12 +29,12 @@ module Evolution { /* FIXME: Can we use an attribute here? */ exception AlreadyOwned {}; - void set_owner (in Shell shell, in string evolution_homedir) + void setOwner (in Shell shell, in string evolution_homedir) raises (AlreadyOwned); exception NotOwned {}; - void unset_owner () + void unsetOwner () raises (NotOwned); /* FIXME: We might want more exceptions here. */ @@ -41,23 +42,24 @@ module Evolution { exception UnsupportedType {}; exception InternalError {}; - Bonobo::Control create_view (in string physical_uri, - in string type) + Bonobo::Control createView (in string physical_uri, + in string type) raises (NotFound, UnsupportedType, InternalError); exception Busy {}; - void async_create_folder (in ShellComponentListener listener, - in string physical_uri, - in string type) + void addFolderAsync (in ShellComponentListener listener, + in string physical_uri, + in string type) raises (Busy); - void async_remove_folder (in ShellComponentListener listener, - in string physical_uri) + + void removeFolderAsync (in ShellComponentListener listener, + in string physical_uri) raises (Busy); - void populate_folder_context_menu (in Bonobo::UIContainer uih, - in string physical_uri, - in string type); + void populateFolderContextMenu (in Bonobo::UIContainer uih, + in string physical_uri, + in string type); }; interface ShellComponentListener { @@ -72,6 +74,7 @@ module Evolution { NO_SPACE }; - void report_result (in Result result); + void notifyResult (in Result result); }; }; +}; |