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