diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2002-12-31 03:29:24 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2002-12-31 03:29:24 +0800 |
commit | 6876ede98282c7db318089bfefb292aa59e55d48 (patch) | |
tree | 76b23252d04da232d0ebf22e53bfe3e022686af9 /idl | |
download | gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.gz gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.bz2 gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.lz gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.xz gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.zst gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.zip |
Initial revision
Diffstat (limited to 'idl')
-rw-r--r-- | idl/EphyAutomation.idl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/idl/EphyAutomation.idl b/idl/EphyAutomation.idl new file mode 100644 index 000000000..090fd51f3 --- /dev/null +++ b/idl/EphyAutomation.idl @@ -0,0 +1,27 @@ +#include <Bonobo.idl> + +module GNOME { + + interface EphyAutomation : Bonobo::Unknown { + boolean loadurl (in string url, + in string geometry, + in boolean fullscreen, + in boolean open_in_existing_tab, + in boolean open_in_new_tab, + in boolean open_in_new_window, + in boolean raise); + + boolean addBookmark (in string url); + + /** + * Closes all opened windows. + * if disableServer is true, + * server mode is disbaled + * (and Galeon exits) + */ + boolean quit (in boolean disableServer); + + boolean loadSession (in string filename); + }; +}; + |