summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/WindowArgs.java
blob: b53372ec7be91c065e239138b53255d722e61ef7 (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
28
29
30
31
32
33
34
35
36
37
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQRect;
import org.kde.qt.QtSupport;

/**

 The WindowArgs are used to specify arguments to the "create new window"
 call (see the createNewWindow variant that uses WindowArgs).
 The primary reason for this is the javascript window.open function.
 		@short    The WindowArgs are used to specify arguments to the "create new window"  call (see the createNewWindow variant that uses WindowArgs).

*/
public class WindowArgs implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected WindowArgs(Class dummy){}

	public WindowArgs() {
		newWindowArgs();
	}
	private native void newWindowArgs();
	public WindowArgs(WindowArgs args) {
		newWindowArgs(args);
	}
	private native void newWindowArgs(WindowArgs args);
	public WindowArgs(TQRect _geometry, boolean _fullscreen, boolean _menuBarVisible, boolean _toolBarsVisible, boolean _statusBarVisible, boolean _resizable) {
		newWindowArgs(_geometry,_fullscreen,_menuBarVisible,_toolBarsVisible,_statusBarVisible,_resizable);
	}
	private native void newWindowArgs(TQRect _geometry, boolean _fullscreen, boolean _menuBarVisible, boolean _toolBarsVisible, boolean _statusBarVisible, boolean _resizable);
	public WindowArgs(int _x, int _y, int _width, int _height, boolean _fullscreen, boolean _menuBarVisible, boolean _toolBarsVisible, boolean _statusBarVisible, boolean _resizable) {
		newWindowArgs(_x,_y,_width,_height,_fullscreen,_menuBarVisible,_toolBarsVisible,_statusBarVisible,_resizable);
	}
	private native void newWindowArgs(int _x, int _y, int _width, int _height, boolean _fullscreen, boolean _menuBarVisible, boolean _toolBarsVisible, boolean _statusBarVisible, boolean _resizable);
}