summaryrefslogtreecommitdiff
path: root/idl/EphyAutomation.idl
blob: 5f64b90d890952c8eefa3b98f632963a5a95d0b6 (plain)
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
#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 Epiphany exits)
		 */
		boolean quit (in boolean disableServer);
		
		boolean loadSession (in string filename);
	};
};