aboutsummaryrefslogtreecommitdiffstats
path: root/idl/EphyAutomation.idl
blob: adc33460202fbbcc66e0cb36c3e8c5d27bcb9cbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <Bonobo.idl>

module GNOME {

    interface EphyAutomation : Bonobo::Unknown {
        void loadurl  (in string  url, 
                  in boolean fullscreen,
                  in boolean open_in_existing_tab,
                  in boolean open_in_new_tab,
                  in boolean open_in_new_window,
                  in boolean raise);

        void addBookmark (in string url);

        void importBookmarks (in string filename);

        /**
         * Closes all opened windows. 
         * if disableServer is true, 
         * server mode is disbaled 
         * (and Epiphany exits)
         */
        void quit (in boolean disableServer);
        
        void loadSession (in string filename);

        void openBookmarksEditor ();
    };
};