aboutsummaryrefslogtreecommitdiffstats
path: root/idl/EphyAutomation.idl
blob: 83f0c1f9291dfb3811bdc218ecaa8154f61496bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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);

        void addBookmark (in string url);

        void importBookmarks (in string filename);

        void loadSession (in string filename);

        void openBookmarksEditor ();
    };
};