io.qt.gui.QAccessibleValueChangeEvent 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.*;
/**
* Describes a change in value for an accessible object
* Java wrapper for Qt class QAccessibleValueChangeEvent
*/
public class QAccessibleValueChangeEvent extends io.qt.gui.QAccessibleEvent
{
/**
* See QAccessibleValueChangeEvent:: QAccessibleValueChangeEvent(QAccessibleInterface*, QVariant)
*/
public QAccessibleValueChangeEvent(io.qt.gui.@Nullable QAccessibleInterface iface, java.lang.Object val){
super((QPrivateConstructor)null);
initialize_native(this, iface, val);
}
private native static void initialize_native(QAccessibleValueChangeEvent instance, io.qt.gui.QAccessibleInterface iface, java.lang.Object val);
/**
* See QAccessibleValueChangeEvent:: QAccessibleValueChangeEvent(QObject*, QVariant)
*/
public QAccessibleValueChangeEvent(io.qt.core.@Nullable QObject obj, java.lang.Object val){
super((QPrivateConstructor)null);
initialize_native(this, obj, val);
}
private native static void initialize_native(QAccessibleValueChangeEvent instance, io.qt.core.QObject obj, java.lang.Object val);
/**
* See QAccessibleValueChangeEvent:: setValue(QVariant)
*/
@QtUninvokable
public final void setValue(java.lang.Object val){
setValue_native_cref_QVariant(QtJambi_LibraryUtilities.internal.nativeId(this), val);
}
@QtUninvokable
private native void setValue_native_cref_QVariant(long __this__nativeId, java.lang.Object val);
/**
* See QAccessibleValueChangeEvent:: value()const
*/
@QtUninvokable
public final java.lang.Object value(){
return value_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native java.lang.Object value_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QAccessibleValueChangeEvent(QPrivateConstructor p) { super(p); }
}