io.qt.gui.QShowEvent 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.*;
/**
* Event that is sent when a widget is shown
* Java wrapper for Qt class QShowEvent
*/
public class QShowEvent extends io.qt.core.QEvent
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
*
*/
public QShowEvent(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QShowEvent instance);
/**
* See QShowEvent:: QShowEvent(QShowEvent)
*/
protected QShowEvent(io.qt.gui.@StrictNonNull QShowEvent 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(QShowEvent instance, io.qt.gui.QShowEvent arg__1);
/**
* See QShowEvent:: operator=(QShowEvent)
*/
@QtUninvokable
protected final void set(io.qt.gui.@StrictNonNull QShowEvent other){
java.util.Objects.requireNonNull(other, "Argument 'other': null not expected.");
set_native_cref_QShowEvent(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void set_native_cref_QShowEvent(long __this__nativeId, long other);
/**
*
*/
@QtUninvokable
@Override
public io.qt.gui.@Nullable QShowEvent clone(){
return clone_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.gui.QShowEvent clone_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QShowEvent(QPrivateConstructor p) { super(p); }
}