diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-04-09 07:13:37 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-04-09 07:13:37 +0800 |
commit | 6869072199d751b46f6f7757aee792a9f0eca7fe (patch) | |
tree | c693ac5274c53a931337a1df812a32a2fb50336f /idl | |
parent | b934ed62cfeb93b86c0f655eff39ff0de63ef7df (diff) | |
download | gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.gz gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.bz2 gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.lz gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.xz gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.zst gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.zip |
Allow to launch the BME alone, rework some CORBA code, add a .desktop file
Allow to launch the BME alone, rework some CORBA code, add a .desktop
file for the BME. Fixes #102477.
Diffstat (limited to 'idl')
-rw-r--r-- | idl/EphyAutomation.idl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/idl/EphyAutomation.idl b/idl/EphyAutomation.idl index 5f64b90d8..a9a286dcd 100644 --- a/idl/EphyAutomation.idl +++ b/idl/EphyAutomation.idl @@ -3,7 +3,7 @@ module GNOME { interface EphyAutomation : Bonobo::Unknown { - boolean loadurl (in string url, + void loadurl (in string url, in string geometry, in boolean fullscreen, in boolean open_in_existing_tab, @@ -11,7 +11,7 @@ module GNOME { in boolean open_in_new_window, in boolean raise); - boolean addBookmark (in string url); + void addBookmark (in string url); /** * Closes all opened windows. @@ -19,9 +19,11 @@ module GNOME { * server mode is disbaled * (and Epiphany exits) */ - boolean quit (in boolean disableServer); + void quit (in boolean disableServer); - boolean loadSession (in string filename); + void loadSession (in string filename); + + void openBookmarksEditor (); }; }; |