io.qt.gui.QStatusTipEvent 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 used to show messages in a status bar
* Java wrapper for Qt class QStatusTipEvent
*/
public class QStatusTipEvent extends io.qt.core.QEvent
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QStatusTipEvent:: QStatusTipEvent(QStatusTipEvent)
* @param arg__1
*/
protected QStatusTipEvent(io.qt.gui.@StrictNonNull QStatusTipEvent 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(QStatusTipEvent instance, io.qt.gui.QStatusTipEvent arg__1);
/**
* See QStatusTipEvent:: QStatusTipEvent(QString)
* @param tip
*/
public QStatusTipEvent(java.lang.@NonNull String tip){
super((QPrivateConstructor)null);
initialize_native(this, tip);
}
private native static void initialize_native(QStatusTipEvent instance, java.lang.String tip);
/**
* See QStatusTipEvent:: operator=(QStatusTipEvent)
* @param other
*/
@QtUninvokable
protected final void assign(io.qt.gui.@StrictNonNull QStatusTipEvent other){
java.util.Objects.requireNonNull(other, "Argument 'other': null not expected.");
assign_native_cref_QStatusTipEvent(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void assign_native_cref_QStatusTipEvent(long __this__nativeId, long other);
/**
* See QStatusTipEvent:: tip()const
* @return
*/
@QtUninvokable
public final java.lang.@NonNull String tip(){
return tip_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native java.lang.String tip_native_constfct(long __this__nativeId);
/**
*
* @since This function was introduced in Qt 6.0.
* @return
*/
@QtUninvokable
@Override
public io.qt.gui.@Nullable QStatusTipEvent clone(){
return clone_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.gui.QStatusTipEvent clone_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QStatusTipEvent(QPrivateConstructor p) { super(p); }
/**
* @deprecated Use {@link #assign(io.qt.gui.QStatusTipEvent)} instead.
*/
@Deprecated
@QtUninvokable
protected final void set(io.qt.gui.@StrictNonNull QStatusTipEvent other) {
assign(other);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy