blob: c3e21c347fd61a43124b7a8217677aca258f9a8e (
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
31
|
#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 ();
void loadUrlWithStartupId (in string url,
in boolean fullscreen,
in boolean open_in_existing_tab,
in boolean open_in_new_tab,
in unsigned long startup_id);
void loadSessionWithStartupId (in string filename,
in unsigned long startup_id);
void openBookmarksEditorWithStartupId (in unsigned long startup_id);
};
};
|