aboutsummaryrefslogtreecommitdiffstats
path: root/idl/EphyAutomation.idl
blob: 074b341c8496c348017d67a70524ec25c36bcb0a (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 ();
        
        void loadSession (in string filename);

        void openBookmarksEditor ();
    };
};