io.qt.gui.QIconDragEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.gui;
import io.qt.*;
/**
* Indicates that a main icon drag has begun
* Java wrapper for Qt class QIconDragEvent
*/
public class QIconDragEvent extends io.qt.core.QEvent
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QIconDragEvent:: QIconDragEvent()
*/
public QIconDragEvent(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QIconDragEvent instance);
/**
* See QIconDragEvent:: QIconDragEvent(QIconDragEvent)
*/
protected QIconDragEvent(io.qt.gui.@StrictNonNull QIconDragEvent 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(QIconDragEvent instance, io.qt.gui.QIconDragEvent arg__1);
/**
* See QIconDragEvent:: operator=(QIconDragEvent)
*/
@QtUninvokable
protected final void assign(io.qt.gui.@StrictNonNull QIconDragEvent other){
java.util.Objects.requireNonNull(other, "Argument 'other': null not expected.");
assign_native_cref_QIconDragEvent(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void assign_native_cref_QIconDragEvent(long __this__nativeId, long other);
/**
*
* This function was introduced in Qt 6.0.
*/
@QtUninvokable
@Override
public io.qt.gui.@Nullable QIconDragEvent clone(){
return clone_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.gui.QIconDragEvent clone_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QIconDragEvent(QPrivateConstructor p) { super(p); }
/**
* @deprecated Use {@link #assign(io.qt.gui.QIconDragEvent)} instead.
*/
@Deprecated
@QtUninvokable
protected final void set(io.qt.gui.@StrictNonNull QIconDragEvent other) {
assign(other);
}
}