io.qt.gui.QAccessibleStateChangeEvent 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.*;
/**
* Notfies the accessibility framework that the state of an object has changed
* Java wrapper for Qt class QAccessibleStateChangeEvent
*/
public class QAccessibleStateChangeEvent extends io.qt.gui.QAccessibleEvent
{
/**
* See QAccessibleStateChangeEvent:: QAccessibleStateChangeEvent(QAccessibleInterface*, QAccessible::State)
*/
public QAccessibleStateChangeEvent(io.qt.gui.@Nullable QAccessibleInterface iface, io.qt.gui.QAccessible.@NonNull State state){
super((QPrivateConstructor)null);
initialize_native(this, iface, state);
}
private native static void initialize_native(QAccessibleStateChangeEvent instance, io.qt.gui.QAccessibleInterface iface, io.qt.gui.QAccessible.State state);
/**
* See QAccessibleStateChangeEvent:: QAccessibleStateChangeEvent(QObject*, QAccessible::State)
*/
public QAccessibleStateChangeEvent(io.qt.core.@Nullable QObject obj, io.qt.gui.QAccessible.@NonNull State state){
super((QPrivateConstructor)null);
initialize_native(this, obj, state);
}
private native static void initialize_native(QAccessibleStateChangeEvent instance, io.qt.core.QObject obj, io.qt.gui.QAccessible.State state);
/**
* Returns the states that have been changed
* See QAccessibleStateChangeEvent:: changedStates()const
*/
@QtUninvokable
public final io.qt.gui.QAccessible.@NonNull State changedStates(){
return changedStates_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.gui.QAccessible.State changedStates_native_constfct(long __this__nativeId);
/**
* See QAccessibleStateChangeEvent:: m_changedStates
*/
@QtUninvokable
protected final void setChangedStates(io.qt.gui.QAccessible.@NonNull State changedStates){
setChangedStates_native_cref_QAccessible_State(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(changedStates));
}
@QtUninvokable
private native void setChangedStates_native_cref_QAccessible_State(long __this__nativeId, long changedStates);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QAccessibleStateChangeEvent(QPrivateConstructor p) { super(p); }
}