io.qt.gui.QWindow Maven / Gradle / Ivy
Show all versions of qtjambi Show documentation
package io.qt.gui;
/**
* Represents a window in the underlying windowing system
* Java wrapper for Qt class QWindow
*/
public class QWindow extends io.qt.core.QObject
implements io.qt.gui.QSurface
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QWindow.class);
/**
* Java wrapper for Qt enum QWindow::AncestorMode
*/
public enum AncestorMode implements io.qt.QtEnumerator {
ExcludeTransients(0),
IncludeTransients(1);
private AncestorMode(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static AncestorMode resolve(int value) {
switch (value) {
case 0: return ExcludeTransients;
case 1: return IncludeTransients;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QWindow::Visibility
*/
public enum Visibility implements io.qt.QtEnumerator {
Hidden(0),
AutomaticVisibility(1),
Windowed(2),
Minimized(3),
Maximized(4),
FullScreen(5);
private Visibility(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static Visibility resolve(int value) {
switch (value) {
case 0: return Hidden;
case 1: return AutomaticVisibility;
case 2: return Windowed;
case 3: return Minimized;
case 4: return Maximized;
case 5: return FullScreen;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
*
*/
@io.qt.QtPropertyNotify(name="active")
public final Signal0 activeChanged = new Signal0();
/**
* See QWindow::contentOrientationChanged(Qt::ScreenOrientation)
*/
@io.qt.QtPropertyNotify(name="contentOrientation")
public final Signal1 contentOrientationChanged = new Signal1<>();
/**
* See QWindow::focusObjectChanged(QObject*)
*/
public final Signal1 focusObjectChanged = new Signal1<>();
/**
* See QWindow::heightChanged(int)
*/
@io.qt.QtPropertyNotify(name="height")
public final Signal1<@io.qt.QtPrimitiveType Integer> heightChanged = new Signal1<>();
/**
* See QWindow::maximumHeightChanged(int)
*/
@io.qt.QtPropertyNotify(name="maximumHeight")
public final Signal1<@io.qt.QtPrimitiveType Integer> maximumHeightChanged = new Signal1<>();
/**
* See QWindow::maximumWidthChanged(int)
*/
@io.qt.QtPropertyNotify(name="maximumWidth")
public final Signal1<@io.qt.QtPrimitiveType Integer> maximumWidthChanged = new Signal1<>();
/**
* See QWindow::minimumHeightChanged(int)
*/
@io.qt.QtPropertyNotify(name="minimumHeight")
public final Signal1<@io.qt.QtPrimitiveType Integer> minimumHeightChanged = new Signal1<>();
/**
* See QWindow::minimumWidthChanged(int)
*/
@io.qt.QtPropertyNotify(name="minimumWidth")
public final Signal1<@io.qt.QtPrimitiveType Integer> minimumWidthChanged = new Signal1<>();
/**
* See QWindow::modalityChanged(Qt::WindowModality)
*/
@io.qt.QtPropertyNotify(name="modality")
public final Signal1 modalityChanged = new Signal1<>();
/**
* See QWindow::opacityChanged(qreal)
*/
@io.qt.QtPropertyNotify(name="opacity")
public final Signal1<@io.qt.QtPrimitiveType Double> opacityChanged = new Signal1<>();
/**
* See QWindow::screenChanged(QScreen*)
*/
public final Signal1 screenChanged = new Signal1<>();
/**
* See QWindow::transientParentChanged(QWindow*)
*/
public final Signal1 transientParentChanged = new Signal1<>();
/**
* See QWindow::visibilityChanged(QWindow::Visibility)
*/
@io.qt.QtPropertyNotify(name="visibility")
public final Signal1 visibilityChanged = new Signal1<>();
/**
* See QWindow::visibleChanged(bool)
*/
@io.qt.QtPropertyNotify(name="visible")
public final Signal1<@io.qt.QtPrimitiveType Boolean> visibleChanged = new Signal1<>();
/**
* See QWindow::widthChanged(int)
*/
@io.qt.QtPropertyNotify(name="width")
public final Signal1<@io.qt.QtPrimitiveType Integer> widthChanged = new Signal1<>();
/**
* See QWindow::windowStateChanged(Qt::WindowState)
*/
public final Signal1 windowStateChanged = new Signal1<>();
/**
* See QWindow::windowTitleChanged(QString)
*/
@io.qt.QtPropertyNotify(name="title")
public final Signal1 windowTitleChanged = new Signal1<>();
/**
*
*/
@io.qt.QtPropertyNotify(name="x")
public final Signal1<@io.qt.QtPrimitiveType Integer> xChanged = new Signal1<>();
/**
*
*/
@io.qt.QtPropertyNotify(name="y")
public final Signal1<@io.qt.QtPrimitiveType Integer> yChanged = new Signal1<>();
/**
* Overloaded constructor for {@link #QWindow(io.qt.gui.QScreen)}
* with screen = null
.
*/
public QWindow() {
this((io.qt.gui.QScreen)null);
}
/**
* See QWindow::QWindow(QScreen*)
*/
public QWindow(io.qt.gui.QScreen screen){
super((QPrivateConstructor)null);
initialize_native(this, screen);
}
private native static void initialize_native(QWindow instance, io.qt.gui.QScreen screen);
/**
* See QWindow::QWindow(QWindow*)
*/
public QWindow(io.qt.gui.QWindow parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QWindow instance, io.qt.gui.QWindow parent);
/**
*
*/
public final void alert(int msec){
alert_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), msec);
}
private native void alert_native_int(long __this__nativeId, int msec);
/**
*
*/
@io.qt.QtUninvokable
public final io.qt.core.QSize baseSize(){
return baseSize_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QSize baseSize_native_constfct(long __this__nativeId);
/**
* See QWindow::close()
*/
public final boolean close(){
return close_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native boolean close_native(long __this__nativeId);
/**
* See QWindow::contentOrientation()const
*/
@io.qt.QtPropertyReader(name="contentOrientation")
@io.qt.QtUninvokable
public final io.qt.core.Qt.ScreenOrientation contentOrientation(){
return io.qt.core.Qt.ScreenOrientation.resolve(contentOrientation_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int contentOrientation_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtUninvokable
public final void create(){
create_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void create_native(long __this__nativeId);
/**
* The cursor shape for this window
*
*/
@io.qt.QtUninvokable
public final io.qt.gui.QCursor cursor(){
return cursor_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QCursor cursor_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtUninvokable
public final void destroy(){
destroy_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void destroy_native(long __this__nativeId);
/**
* See QWindow::devicePixelRatio()const
*/
@io.qt.QtUninvokable
public final double devicePixelRatio(){
return devicePixelRatio_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native double devicePixelRatio_native_constfct(long __this__nativeId);
/**
* The file name this window is representing
*
*/
@io.qt.QtUninvokable
public final java.lang.String filePath(){
return filePath_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String filePath_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="flags")
@io.qt.QtUninvokable
public final io.qt.core.Qt.WindowFlags flags(){
return new io.qt.core.Qt.WindowFlags(flags_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int flags_native_constfct(long __this__nativeId);
/**
* See QWindow::frameGeometry()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QRect frameGeometry(){
return frameGeometry_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QRect frameGeometry_native_constfct(long __this__nativeId);
/**
* See QWindow::frameMargins()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QMargins frameMargins(){
return frameMargins_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QMargins frameMargins_native_constfct(long __this__nativeId);
/**
* See QWindow::framePosition()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QPoint framePosition(){
return framePosition_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QPoint framePosition_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtUninvokable
public final io.qt.core.QRect geometry(){
return geometry_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QRect geometry_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="height")
@io.qt.QtUninvokable
public final int height(){
return height_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int height_native_constfct(long __this__nativeId);
/**
* See QWindow::hide()
*/
public final void hide(){
hide_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void hide_native(long __this__nativeId);
/**
* Returns the window's icon in the windowing system
*
*/
@io.qt.QtUninvokable
public final io.qt.gui.QIcon icon(){
return icon_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QIcon icon_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="active")
@io.qt.QtUninvokable
public final boolean isActive(){
return isActive_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean isActive_native_constfct(long __this__nativeId);
/**
* Overloaded function for {@link #isAncestorOf(io.qt.gui.QWindow, io.qt.gui.QWindow.AncestorMode)}
* with mode = io.qt.gui.QWindow.AncestorMode.IncludeTransients
.
*/
@io.qt.QtUninvokable
public final boolean isAncestorOf(io.qt.gui.QWindow child) {
return isAncestorOf(child, io.qt.gui.QWindow.AncestorMode.IncludeTransients);
}
/**
* See QWindow::isAncestorOf(const QWindow*,QWindow::AncestorMode)const
*/
@io.qt.QtUninvokable
public final boolean isAncestorOf(io.qt.gui.QWindow child, io.qt.gui.QWindow.AncestorMode mode){
return isAncestorOf_native_const_QWindow_ptr_QWindow_AncestorMode_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(child), mode.value());
}
@io.qt.QtUninvokable
private native boolean isAncestorOf_native_const_QWindow_ptr_QWindow_AncestorMode_constfct(long __this__nativeId, long child, int mode);
/**
*
*/
@io.qt.QtUninvokable
public final boolean isExposed(){
return isExposed_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean isExposed_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtUninvokable
public final boolean isModal(){
return isModal_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean isModal_native_constfct(long __this__nativeId);
/**
* See QWindow::isTopLevel()const
*/
@io.qt.QtUninvokable
public final boolean isTopLevel(){
return isTopLevel_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean isTopLevel_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="visible")
@io.qt.QtUninvokable
public final boolean isVisible(){
return isVisible_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean isVisible_native_constfct(long __this__nativeId);
/**
* See QWindow::lower()
*/
public final void lower(){
lower_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void lower_native(long __this__nativeId);
/**
* See QWindow::mapFromGlobal(QPoint)const
*/
@io.qt.QtUninvokable
public final io.qt.core.QPoint mapFromGlobal(io.qt.core.QPoint pos){
return mapFromGlobal_native_cref_QPoint_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(pos));
}
@io.qt.QtUninvokable
private native io.qt.core.QPoint mapFromGlobal_native_cref_QPoint_constfct(long __this__nativeId, long pos);
/**
* See QWindow::mapFromGlobal(QPointF)const
*/
@io.qt.QtUninvokable
public final io.qt.core.QPointF mapFromGlobal(io.qt.core.QPointF pos){
return mapFromGlobal_native_cref_QPointF_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(pos));
}
@io.qt.QtUninvokable
private native io.qt.core.QPointF mapFromGlobal_native_cref_QPointF_constfct(long __this__nativeId, long pos);
/**
* See QWindow::mapToGlobal(QPoint)const
*/
@io.qt.QtUninvokable
public final io.qt.core.QPoint mapToGlobal(io.qt.core.QPoint pos){
return mapToGlobal_native_cref_QPoint_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(pos));
}
@io.qt.QtUninvokable
private native io.qt.core.QPoint mapToGlobal_native_cref_QPoint_constfct(long __this__nativeId, long pos);
/**
* See QWindow::mapToGlobal(QPointF)const
*/
@io.qt.QtUninvokable
public final io.qt.core.QPointF mapToGlobal(io.qt.core.QPointF pos){
return mapToGlobal_native_cref_QPointF_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(pos));
}
@io.qt.QtUninvokable
private native io.qt.core.QPointF mapToGlobal_native_cref_QPointF_constfct(long __this__nativeId, long pos);
/**
*
*/
@io.qt.QtUninvokable
public final io.qt.gui.QRegion mask(){
return mask_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QRegion mask_native_constfct(long __this__nativeId);
/**
* See QWindow::maximumHeight()const
*/
@io.qt.QtPropertyReader(name="maximumHeight")
@io.qt.QtUninvokable
public final int maximumHeight(){
return maximumHeight_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int maximumHeight_native_constfct(long __this__nativeId);
/**
* See QWindow::maximumSize()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QSize maximumSize(){
return maximumSize_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QSize maximumSize_native_constfct(long __this__nativeId);
/**
* See QWindow::maximumWidth()const
*/
@io.qt.QtPropertyReader(name="maximumWidth")
@io.qt.QtUninvokable
public final int maximumWidth(){
return maximumWidth_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int maximumWidth_native_constfct(long __this__nativeId);
/**
* See QWindow::minimumHeight()const
*/
@io.qt.QtPropertyReader(name="minimumHeight")
@io.qt.QtUninvokable
public final int minimumHeight(){
return minimumHeight_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int minimumHeight_native_constfct(long __this__nativeId);
/**
* See QWindow::minimumSize()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QSize minimumSize(){
return minimumSize_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QSize minimumSize_native_constfct(long __this__nativeId);
/**
* See QWindow::minimumWidth()const
*/
@io.qt.QtPropertyReader(name="minimumWidth")
@io.qt.QtUninvokable
public final int minimumWidth(){
return minimumWidth_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int minimumWidth_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="modality")
@io.qt.QtUninvokable
public final io.qt.core.Qt.WindowModality modality(){
return io.qt.core.Qt.WindowModality.resolve(modality_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int modality_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="opacity")
@io.qt.QtUninvokable
public final double opacity(){
return opacity_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native double opacity_native_constfct(long __this__nativeId);
/**
* See QWindow::parent(QWindow::AncestorMode)const
*/
@io.qt.QtUninvokable
public final io.qt.gui.QWindow parent(io.qt.gui.QWindow.AncestorMode mode){
return parent_native_QWindow_AncestorMode_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), mode.value());
}
@io.qt.QtUninvokable
private native io.qt.gui.QWindow parent_native_QWindow_AncestorMode_constfct(long __this__nativeId, int mode);
/**
* Returns the position of the window on the desktop excluding any window frame
*
*/
@io.qt.QtUninvokable
public final io.qt.core.QPoint position(){
return position_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QPoint position_native_constfct(long __this__nativeId);
/**
* See QWindow::raise()
*/
public final void raise(){
raise_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void raise_native(long __this__nativeId);
/**
* See QWindow::reportContentOrientationChange(Qt::ScreenOrientation)
*/
@io.qt.QtPropertyWriter(name="contentOrientation")
@io.qt.QtUninvokable
public final void reportContentOrientationChange(io.qt.core.Qt.ScreenOrientation orientation){
reportContentOrientationChange_native_Qt_ScreenOrientation(QtJambi_LibraryUtilities.internal.nativeId(this), orientation.value());
}
@io.qt.QtUninvokable
private native void reportContentOrientationChange_native_Qt_ScreenOrientation(long __this__nativeId, int orientation);
/**
* See QWindow::requestActivate()
*/
public final void requestActivate(){
requestActivate_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void requestActivate_native(long __this__nativeId);
/**
*
*/
public final void requestUpdate(){
requestUpdate_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void requestUpdate_native(long __this__nativeId);
/**
* See QWindow::requestedFormat()const
*/
@io.qt.QtUninvokable
public final io.qt.gui.QSurfaceFormat requestedFormat(){
return requestedFormat_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QSurfaceFormat requestedFormat_native_constfct(long __this__nativeId);
/**
* Set the size of the window, excluding any window frame, to newSize
*
*/
@io.qt.QtUninvokable
public final void resize(io.qt.core.QSize newSize){
resize_native_cref_QSize(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(newSize));
}
@io.qt.QtUninvokable
private native void resize_native_cref_QSize(long __this__nativeId, long newSize);
/**
*
*/
@io.qt.QtUninvokable
public final void resize(int w, int h){
resize_native_int_int(QtJambi_LibraryUtilities.internal.nativeId(this), w, h);
}
@io.qt.QtUninvokable
private native void resize_native_int_int(long __this__nativeId, int w, int h);
@io.qt.QtUninvokable
public final QNativeInterface nativeInterface(java.lang.Class name){
return nativeInterface_native_const_char_ptr_int_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), name);
}
@io.qt.QtUninvokable
private native QNativeInterface nativeInterface_native_const_char_ptr_int_constfct(long __this__nativeId, java.lang.Class name);
/**
*
*/
@io.qt.QtUninvokable
public final io.qt.gui.QScreen screen(){
return screen_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QScreen screen_native_constfct(long __this__nativeId);
/**
* See QWindow::setBaseSize(QSize)
*/
@io.qt.QtUninvokable
public final void setBaseSize(io.qt.core.QSize size){
setBaseSize_native_cref_QSize(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(size));
}
@io.qt.QtUninvokable
private native void setBaseSize_native_cref_QSize(long __this__nativeId, long size);
/**
* Set the cursor shape for this window
* See QWindow::setCursor(QCursor)
*/
@io.qt.QtUninvokable
public final void setCursor(io.qt.gui.QCursor arg__1){
setCursor_native_cref_QCursor(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void setCursor_native_cref_QCursor(long __this__nativeId, long arg__1);
/**
* Set the file name this window is representing
* See QWindow::setFilePath(QString)
*/
@io.qt.QtUninvokable
public final void setFilePath(java.lang.String filePath){
setFilePath_native_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), filePath);
}
@io.qt.QtUninvokable
private native void setFilePath_native_cref_QString(long __this__nativeId, java.lang.String filePath);
/**
* Overloaded function for {@link #setFlag(io.qt.core.Qt.WindowType, boolean)}
* with on = true
.
*/
@io.qt.QtUninvokable
public final void setFlag(io.qt.core.Qt.WindowType arg__1) {
setFlag(arg__1, (boolean)true);
}
/**
* See QWindow::setFlag(Qt::WindowType,bool)
*/
@io.qt.QtUninvokable
public final void setFlag(io.qt.core.Qt.WindowType arg__1, boolean on){
setFlag_native_Qt_WindowType_bool(QtJambi_LibraryUtilities.internal.nativeId(this), arg__1.value(), on);
}
@io.qt.QtUninvokable
private native void setFlag_native_Qt_WindowType_bool(long __this__nativeId, int arg__1, boolean on);
/**
* Overloaded function for {@link #setFlags(io.qt.core.Qt.WindowFlags)}.
*/
@io.qt.QtUninvokable
public final void setFlags(io.qt.core.Qt.WindowType ... flags){
setFlags(new io.qt.core.Qt.WindowFlags(flags));
}
/**
* See QWindow::setFlags(Qt::WindowFlags)
*/
@io.qt.QtPropertyWriter(name="flags")
@io.qt.QtUninvokable
public final void setFlags(io.qt.core.Qt.WindowFlags flags){
setFlags_native_QFlags_Qt_WindowType_(QtJambi_LibraryUtilities.internal.nativeId(this), flags.value());
}
@io.qt.QtUninvokable
private native void setFlags_native_QFlags_Qt_WindowType_(long __this__nativeId, int flags);
/**
* See QWindow::setFormat(QSurfaceFormat)
*/
@io.qt.QtUninvokable
public final void setFormat(io.qt.gui.QSurfaceFormat format){
setFormat_native_cref_QSurfaceFormat(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(format));
}
@io.qt.QtUninvokable
private native void setFormat_native_cref_QSurfaceFormat(long __this__nativeId, long format);
/**
* See QWindow::setFramePosition(QPoint)
*/
@io.qt.QtUninvokable
public final void setFramePosition(io.qt.core.QPoint point){
setFramePosition_native_cref_QPoint(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(point));
}
@io.qt.QtUninvokable
private native void setFramePosition_native_cref_QPoint(long __this__nativeId, long point);
/**
* Sets the geometry of the window, excluding its window frame, to rect
* See QWindow::setGeometry(QRect)
*/
public final void setGeometry(io.qt.core.QRect rect){
setGeometry_native_cref_QRect(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect));
}
private native void setGeometry_native_cref_QRect(long __this__nativeId, long rect);
/**
* See QWindow::setGeometry(int,int,int,int)
*/
public final void setGeometry(int posx, int posy, int w, int h){
setGeometry_native_int_int_int_int(QtJambi_LibraryUtilities.internal.nativeId(this), posx, posy, w, h);
}
private native void setGeometry_native_int_int_int_int(long __this__nativeId, int posx, int posy, int w, int h);
/**
*
*/
@io.qt.QtPropertyWriter(name="height")
public final void setHeight(int arg){
setHeight_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), arg);
}
private native void setHeight_native_int(long __this__nativeId, int arg);
/**
* Sets the window's icon in the windowing system
*
*/
@io.qt.QtUninvokable
public final void setIcon(io.qt.gui.QIcon icon){
setIcon_native_cref_QIcon(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(icon));
}
@io.qt.QtUninvokable
private native void setIcon_native_cref_QIcon(long __this__nativeId, long icon);
/**
* See QWindow::setKeyboardGrabEnabled(bool)
*/
@io.qt.QtUninvokable
public final boolean setKeyboardGrabEnabled(boolean grab){
return setKeyboardGrabEnabled_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), grab);
}
@io.qt.QtUninvokable
private native boolean setKeyboardGrabEnabled_native_bool(long __this__nativeId, boolean grab);
/**
*
*/
@io.qt.QtUninvokable
public final void setMask(io.qt.gui.QRegion region){
setMask_native_cref_QRegion(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(region));
}
@io.qt.QtUninvokable
private native void setMask_native_cref_QRegion(long __this__nativeId, long region);
/**
* See QWindow::setMaximumHeight(int)
*/
@io.qt.QtPropertyWriter(name="maximumHeight")
public final void setMaximumHeight(int h){
setMaximumHeight_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), h);
}
private native void setMaximumHeight_native_int(long __this__nativeId, int h);
/**
* See QWindow::setMaximumSize(QSize)
*/
@io.qt.QtUninvokable
public final void setMaximumSize(io.qt.core.QSize size){
setMaximumSize_native_cref_QSize(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(size));
}
@io.qt.QtUninvokable
private native void setMaximumSize_native_cref_QSize(long __this__nativeId, long size);
/**
* See QWindow::setMaximumWidth(int)
*/
@io.qt.QtPropertyWriter(name="maximumWidth")
public final void setMaximumWidth(int w){
setMaximumWidth_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), w);
}
private native void setMaximumWidth_native_int(long __this__nativeId, int w);
/**
* See QWindow::setMinimumHeight(int)
*/
@io.qt.QtPropertyWriter(name="minimumHeight")
public final void setMinimumHeight(int h){
setMinimumHeight_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), h);
}
private native void setMinimumHeight_native_int(long __this__nativeId, int h);
/**
* See QWindow::setMinimumSize(QSize)
*/
@io.qt.QtUninvokable
public final void setMinimumSize(io.qt.core.QSize size){
setMinimumSize_native_cref_QSize(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(size));
}
@io.qt.QtUninvokable
private native void setMinimumSize_native_cref_QSize(long __this__nativeId, long size);
/**
* See QWindow::setMinimumWidth(int)
*/
@io.qt.QtPropertyWriter(name="minimumWidth")
public final void setMinimumWidth(int w){
setMinimumWidth_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), w);
}
private native void setMinimumWidth_native_int(long __this__nativeId, int w);
/**
* See QWindow::setModality(Qt::WindowModality)
*/
@io.qt.QtPropertyWriter(name="modality")
@io.qt.QtUninvokable
public final void setModality(io.qt.core.Qt.WindowModality modality){
setModality_native_Qt_WindowModality(QtJambi_LibraryUtilities.internal.nativeId(this), modality.value());
}
@io.qt.QtUninvokable
private native void setModality_native_Qt_WindowModality(long __this__nativeId, int modality);
/**
* See QWindow::setMouseGrabEnabled(bool)
*/
@io.qt.QtUninvokable
public final boolean setMouseGrabEnabled(boolean grab){
return setMouseGrabEnabled_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), grab);
}
@io.qt.QtUninvokable
private native boolean setMouseGrabEnabled_native_bool(long __this__nativeId, boolean grab);
/**
* See QWindow::setOpacity(qreal)
*/
@io.qt.QtPropertyWriter(name="opacity")
@io.qt.QtUninvokable
public final void setOpacity(double level){
setOpacity_native_qtjambireal(QtJambi_LibraryUtilities.internal.nativeId(this), level);
}
@io.qt.QtUninvokable
private native void setOpacity_native_qtjambireal(long __this__nativeId, double level);
/**
* See QWindow::setParent(QWindow*)
*/
@io.qt.QtUninvokable
public final void setParent(io.qt.gui.QWindow parent){
setParent_native_QWindow_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(parent));
}
@io.qt.QtUninvokable
private native void setParent_native_QWindow_ptr(long __this__nativeId, long parent);
/**
* Set the position of the window on the desktop to pt
* See QWindow::setPosition(QPoint)
*/
@io.qt.QtUninvokable
public final void setPosition(io.qt.core.QPoint pt){
setPosition_native_cref_QPoint(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(pt));
}
@io.qt.QtUninvokable
private native void setPosition_native_cref_QPoint(long __this__nativeId, long pt);
/**
* Set the position of the window on the desktop to posx, posy
* See QWindow::setPosition(int,int)
*/
@io.qt.QtUninvokable
public final void setPosition(int posx, int posy){
setPosition_native_int_int(QtJambi_LibraryUtilities.internal.nativeId(this), posx, posy);
}
@io.qt.QtUninvokable
private native void setPosition_native_int_int(long __this__nativeId, int posx, int posy);
/**
* See QWindow::setScreen(QScreen*)
*/
@io.qt.QtUninvokable
public final void setScreen(io.qt.gui.QScreen screen){
setScreen_native_QScreen_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(screen));
}
@io.qt.QtUninvokable
private native void setScreen_native_QScreen_ptr(long __this__nativeId, long screen);
/**
* See QWindow::setSizeIncrement(QSize)
*/
@io.qt.QtUninvokable
public final void setSizeIncrement(io.qt.core.QSize size){
setSizeIncrement_native_cref_QSize(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(size));
}
@io.qt.QtUninvokable
private native void setSizeIncrement_native_cref_QSize(long __this__nativeId, long size);
/**
* See QWindow::setSurfaceType(QSurface::SurfaceType)
*/
@io.qt.QtUninvokable
public final void setSurfaceType(io.qt.gui.QSurface.SurfaceType surfaceType){
setSurfaceType_native_QSurface_SurfaceType(QtJambi_LibraryUtilities.internal.nativeId(this), surfaceType.value());
}
@io.qt.QtUninvokable
private native void setSurfaceType_native_QSurface_SurfaceType(long __this__nativeId, int surfaceType);
/**
* See QWindow::setTitle(QString)
*/
@io.qt.QtPropertyWriter(name="title")
public final void setTitle(java.lang.String arg__1){
setTitle_native_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), arg__1);
}
private native void setTitle_native_cref_QString(long __this__nativeId, java.lang.String arg__1);
/**
* See QWindow::setTransientParent(QWindow*)
*/
@io.qt.QtUninvokable
public final void setTransientParent(io.qt.gui.QWindow parent){
setTransientParent_native_QWindow_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(parent));
}
@io.qt.QtUninvokable
private native void setTransientParent_native_QWindow_ptr(long __this__nativeId, long parent);
/**
* See QWindow::setVisibility(QWindow::Visibility)
*/
@io.qt.QtPropertyWriter(name="visibility")
@io.qt.QtUninvokable
public final void setVisibility(io.qt.gui.QWindow.Visibility v){
setVisibility_native_QWindow_Visibility(QtJambi_LibraryUtilities.internal.nativeId(this), v.value());
}
@io.qt.QtUninvokable
private native void setVisibility_native_QWindow_Visibility(long __this__nativeId, int v);
/**
*
*/
@io.qt.QtPropertyWriter(name="visible")
public final void setVisible(boolean visible){
setVisible_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), visible);
}
private native void setVisible_native_bool(long __this__nativeId, boolean visible);
/**
*
*/
@io.qt.QtPropertyWriter(name="width")
public final void setWidth(int arg){
setWidth_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), arg);
}
private native void setWidth_native_int(long __this__nativeId, int arg);
/**
* Set the screen-occupation state of the window
* See QWindow::setWindowState(Qt::WindowState)
*/
@io.qt.QtUninvokable
public final void setWindowState(io.qt.core.Qt.WindowState state){
setWindowState_native_Qt_WindowState(QtJambi_LibraryUtilities.internal.nativeId(this), state.value());
}
@io.qt.QtUninvokable
private native void setWindowState_native_Qt_WindowState(long __this__nativeId, int state);
/**
* Overloaded function for {@link #setWindowStates(io.qt.core.Qt.WindowStates)}.
*/
@io.qt.QtUninvokable
public final void setWindowStates(io.qt.core.Qt.WindowState ... states){
setWindowStates(new io.qt.core.Qt.WindowStates(states));
}
/**
* Set the screen-occupation state of the window
* See QWindow::setWindowStates(Qt::WindowStates)
*/
@io.qt.QtUninvokable
public final void setWindowStates(io.qt.core.Qt.WindowStates states){
setWindowStates_native_QFlags_Qt_WindowState_(QtJambi_LibraryUtilities.internal.nativeId(this), states.value());
}
@io.qt.QtUninvokable
private native void setWindowStates_native_QFlags_Qt_WindowState_(long __this__nativeId, int states);
/**
*
*/
@io.qt.QtPropertyWriter(name="x")
public final void setX(int arg){
setX_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), arg);
}
private native void setX_native_int(long __this__nativeId, int arg);
/**
*
*/
@io.qt.QtPropertyWriter(name="y")
public final void setY(int arg){
setY_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), arg);
}
private native void setY_native_int(long __this__nativeId, int arg);
/**
* See QWindow::show()
*/
public final void show(){
show_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void show_native(long __this__nativeId);
/**
*
*/
public final void showFullScreen(){
showFullScreen_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void showFullScreen_native(long __this__nativeId);
/**
*
*/
public final void showMaximized(){
showMaximized_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void showMaximized_native(long __this__nativeId);
/**
*
*/
public final void showMinimized(){
showMinimized_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void showMinimized_native(long __this__nativeId);
/**
*
*/
public final void showNormal(){
showNormal_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void showNormal_native(long __this__nativeId);
/**
* See QWindow::sizeIncrement()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QSize sizeIncrement(){
return sizeIncrement_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QSize sizeIncrement_native_constfct(long __this__nativeId);
/**
* Start a system-specific move operation
* See QWindow::startSystemMove()
*/
public final boolean startSystemMove(){
return startSystemMove_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native boolean startSystemMove_native(long __this__nativeId);
/**
* Overloaded function for {@link #startSystemResize(io.qt.core.Qt.Edges)}.
*/
public final boolean startSystemResize(io.qt.core.Qt.Edge ... edges){
return startSystemResize(new io.qt.core.Qt.Edges(edges));
}
/**
* Start a system-specific resize operation
* See QWindow::startSystemResize(Qt::Edges)
*/
public final boolean startSystemResize(io.qt.core.Qt.Edges edges){
return startSystemResize_native_QFlags_Qt_Edge_(QtJambi_LibraryUtilities.internal.nativeId(this), edges.value());
}
private native boolean startSystemResize_native_QFlags_Qt_Edge_(long __this__nativeId, int edges);
/**
* See QSurface::supportsOpenGL()const
*/
@io.qt.QtUninvokable
public final boolean supportsOpenGL(){
return supportsOpenGL_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static boolean supportsOpenGL_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="title")
@io.qt.QtUninvokable
public final java.lang.String title(){
return title_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String title_native_constfct(long __this__nativeId);
/**
* See QWindow::transientParent()const
*/
@io.qt.QtUninvokable
public final io.qt.gui.QWindow transientParent(){
return transientParent_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QWindow transientParent_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtUninvokable
public final io.qt.core.Qt.WindowType type(){
return io.qt.core.Qt.WindowType.resolve(type_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int type_native_constfct(long __this__nativeId);
/**
* Restores the default arrow cursor for this window
*
*/
@io.qt.QtUninvokable
public final void unsetCursor(){
unsetCursor_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void unsetCursor_native(long __this__nativeId);
/**
* See QWindow::visibility()const
*/
@io.qt.QtPropertyReader(name="visibility")
@io.qt.QtUninvokable
public final io.qt.gui.QWindow.Visibility visibility(){
return io.qt.gui.QWindow.Visibility.resolve(visibility_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int visibility_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="width")
@io.qt.QtUninvokable
public final int width(){
return width_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int width_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtUninvokable
public final long winId(){
return winId_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native long winId_native_constfct(long __this__nativeId);
/**
* The screen-occupation state of the window
* See QWindow::windowState()const
*/
@io.qt.QtUninvokable
public final io.qt.core.Qt.WindowState windowState(){
return io.qt.core.Qt.WindowState.resolve(windowState_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int windowState_native_constfct(long __this__nativeId);
/**
* The screen-occupation state of the window
* See QWindow::windowStates()const
*/
@io.qt.QtUninvokable
public final io.qt.core.Qt.WindowStates windowStates(){
return new io.qt.core.Qt.WindowStates(windowStates_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int windowStates_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="x")
@io.qt.QtUninvokable
public final int x(){
return x_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int x_native_constfct(long __this__nativeId);
/**
*
*/
@io.qt.QtPropertyReader(name="y")
@io.qt.QtUninvokable
public final int y(){
return y_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int y_native_constfct(long __this__nativeId);
@io.qt.QtUninvokable
public io.qt.gui.QAccessibleInterface accessibleRoot(){
return accessibleRoot_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.gui.QAccessibleInterface accessibleRoot_native_constfct(long __this__nativeId);
/**
* See QWindow::closeEvent(QCloseEvent*)
*/
@io.qt.QtUninvokable
protected void closeEvent(io.qt.gui.QCloseEvent arg__1){
closeEvent_native_QCloseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void closeEvent_native_QCloseEvent_ptr(long __this__nativeId, long arg__1);
/**
*
*/
@io.qt.QtUninvokable
public boolean event(io.qt.core.QEvent arg__1){
return event_native_QEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native boolean event_native_QEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::exposeEvent(QExposeEvent*)
*/
@io.qt.QtUninvokable
protected void exposeEvent(io.qt.gui.QExposeEvent arg__1){
exposeEvent_native_QExposeEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void exposeEvent_native_QExposeEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::focusInEvent(QFocusEvent*)
*/
@io.qt.QtUninvokable
protected void focusInEvent(io.qt.gui.QFocusEvent arg__1){
focusInEvent_native_QFocusEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void focusInEvent_native_QFocusEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::focusObject()const
*/
@io.qt.QtUninvokable
public io.qt.core.QObject focusObject(){
return focusObject_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QObject focusObject_native_constfct(long __this__nativeId);
/**
* See QWindow::focusOutEvent(QFocusEvent*)
*/
@io.qt.QtUninvokable
protected void focusOutEvent(io.qt.gui.QFocusEvent arg__1){
focusOutEvent_native_QFocusEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void focusOutEvent_native_QFocusEvent_ptr(long __this__nativeId, long arg__1);
/**
*
*/
@io.qt.QtUninvokable
public io.qt.gui.QSurfaceFormat format(){
return format_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static io.qt.gui.QSurfaceFormat format_native_constfct(long __this__nativeId);
/**
* See QWindow::hideEvent(QHideEvent*)
*/
@io.qt.QtUninvokable
protected void hideEvent(io.qt.gui.QHideEvent arg__1){
hideEvent_native_QHideEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void hideEvent_native_QHideEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::keyPressEvent(QKeyEvent*)
*/
@io.qt.QtUninvokable
protected void keyPressEvent(io.qt.gui.QKeyEvent arg__1){
keyPressEvent_native_QKeyEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void keyPressEvent_native_QKeyEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::keyReleaseEvent(QKeyEvent*)
*/
@io.qt.QtUninvokable
protected void keyReleaseEvent(io.qt.gui.QKeyEvent arg__1){
keyReleaseEvent_native_QKeyEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void keyReleaseEvent_native_QKeyEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::mouseDoubleClickEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mouseDoubleClickEvent(io.qt.gui.QMouseEvent arg__1){
mouseDoubleClickEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void mouseDoubleClickEvent_native_QMouseEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::mouseMoveEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mouseMoveEvent(io.qt.gui.QMouseEvent arg__1){
mouseMoveEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void mouseMoveEvent_native_QMouseEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::mousePressEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mousePressEvent(io.qt.gui.QMouseEvent arg__1){
mousePressEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void mousePressEvent_native_QMouseEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::mouseReleaseEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mouseReleaseEvent(io.qt.gui.QMouseEvent arg__1){
mouseReleaseEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void mouseReleaseEvent_native_QMouseEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::moveEvent(QMoveEvent*)
*/
@io.qt.QtUninvokable
protected void moveEvent(io.qt.gui.QMoveEvent arg__1){
moveEvent_native_QMoveEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void moveEvent_native_QMoveEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::paintEvent(QPaintEvent*)
*/
@io.qt.QtUninvokable
protected void paintEvent(io.qt.gui.QPaintEvent arg__1){
paintEvent_native_QPaintEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void paintEvent_native_QPaintEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::resizeEvent(QResizeEvent*)
*/
@io.qt.QtUninvokable
protected void resizeEvent(io.qt.gui.QResizeEvent arg__1){
resizeEvent_native_QResizeEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void resizeEvent_native_QResizeEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::showEvent(QShowEvent*)
*/
@io.qt.QtUninvokable
protected void showEvent(io.qt.gui.QShowEvent arg__1){
showEvent_native_QShowEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void showEvent_native_QShowEvent_ptr(long __this__nativeId, long arg__1);
/**
*
*/
@io.qt.QtUninvokable
public io.qt.core.QSize size(){
return size_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static io.qt.core.QSize size_native_constfct(long __this__nativeId);
/**
* See QSurface::surfaceType()const
*/
@io.qt.QtUninvokable
public io.qt.gui.QSurface.SurfaceType surfaceType(){
return io.qt.gui.QSurface.SurfaceType.resolve(surfaceType_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
private native static int surfaceType_native_constfct(long __this__nativeId);
/**
* See QWindow::tabletEvent(QTabletEvent*)
*/
@io.qt.QtUninvokable
protected void tabletEvent(io.qt.gui.QTabletEvent arg__1){
tabletEvent_native_QTabletEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void tabletEvent_native_QTabletEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::touchEvent(QTouchEvent*)
*/
@io.qt.QtUninvokable
protected void touchEvent(io.qt.gui.QTouchEvent arg__1){
touchEvent_native_QTouchEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void touchEvent_native_QTouchEvent_ptr(long __this__nativeId, long arg__1);
/**
* See QWindow::wheelEvent(QWheelEvent*)
*/
@io.qt.QtUninvokable
protected void wheelEvent(io.qt.gui.QWheelEvent arg__1){
wheelEvent_native_QWheelEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@io.qt.QtUninvokable
private native void wheelEvent_native_QWheelEvent_ptr(long __this__nativeId, long arg__1);
/**
*
*/
public native static io.qt.gui.QWindow fromWinId(long id);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QWindow(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
*/
@io.qt.NativeAccess
protected QWindow(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@io.qt.QtUninvokable
private static native void initialize_native(QWindow instance, QDeclarativeConstructor constructor);
/**
* Overloaded function for {@link #parent(io.qt.gui.QWindow.AncestorMode)}
* with mode = io.qt.gui.QWindow.AncestorMode.ExcludeTransients
.
*/
@io.qt.QtUninvokable
public final io.qt.gui.QWindow nonTransientParent(){
return parent(io.qt.gui.QWindow.AncestorMode.ExcludeTransients);
}
@Override
@io.qt.QtUninvokable
public String toString() {
return toString_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private static native String toString_native(long __this_nativeId);
}