You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/WindowArgs.java

38 lines
1.7 KiB

//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);
}