All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qt.gui.QMoveEvent Maven / Gradle / Ivy

There is a newer version: 6.8.0
Show newest version
package io.qt.gui;

import io.qt.*;


/**
 * 

Contains event parameters for move events

*

Java wrapper for Qt class QMoveEvent

*/ public class QMoveEvent extends io.qt.core.QEvent { static { QtJambi_LibraryUtilities.initialize(); } /** *

See QMoveEvent::QMoveEvent(QMoveEvent)

*/ protected QMoveEvent(io.qt.gui.@StrictNonNull QMoveEvent arg__1){ super((QPrivateConstructor)null); java.util.Objects.requireNonNull(arg__1, "Argument 'arg__1': null not expected."); initialize_native(this, arg__1); } private native static void initialize_native(QMoveEvent instance, io.qt.gui.QMoveEvent arg__1); /** *

See QMoveEvent::QMoveEvent(QPoint,QPoint)

*/ public QMoveEvent(io.qt.core.@NonNull QPoint pos, io.qt.core.@NonNull QPoint oldPos){ super((QPrivateConstructor)null); initialize_native(this, pos, oldPos); } private native static void initialize_native(QMoveEvent instance, io.qt.core.QPoint pos, io.qt.core.QPoint oldPos); /** *

See QMoveEvent::oldPos()const

*/ @QtUninvokable public final io.qt.core.@NonNull QPoint oldPos(){ return oldPos_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QPoint oldPos_native_constfct(long __this__nativeId); /** *

See QMoveEvent::operator=(QMoveEvent)

*/ @QtUninvokable protected final void assign(io.qt.gui.@StrictNonNull QMoveEvent other){ java.util.Objects.requireNonNull(other, "Argument 'other': null not expected."); assign_native_cref_QMoveEvent(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native void assign_native_cref_QMoveEvent(long __this__nativeId, long other); /** *

See QMoveEvent::pos()const

*/ @QtUninvokable public final io.qt.core.@NonNull QPoint pos(){ return pos_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QPoint pos_native_constfct(long __this__nativeId); /** *

See QEvent::clone()const

*/ @QtUninvokable @Override public io.qt.gui.@Nullable QMoveEvent clone(){ return clone_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.gui.QMoveEvent clone_native_constfct(long __this__nativeId); /** * Constructor for internal use only. * @param p expected to be null. * @hidden */ @NativeAccess protected QMoveEvent(QPrivateConstructor p) { super(p); } /** * @deprecated Use {@link #assign(io.qt.gui.QMoveEvent)} instead. */ @Deprecated @QtUninvokable protected final void set(io.qt.gui.@StrictNonNull QMoveEvent other) { assign(other); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy