io.qt.gui.QAccessibleBridge 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.*;
/**
* Java wrapper for Qt class QAccessibleBridge
*/
public abstract class QAccessibleBridge extends QtObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
@NativeAccess
private static final class ConcreteWrapper extends QAccessibleBridge {
@NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@QtUninvokable
public void notifyAccessibilityUpdate(io.qt.gui.@Nullable QAccessibleEvent event){
notifyAccessibilityUpdate_native_QAccessibleEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@QtUninvokable
private native void notifyAccessibilityUpdate_native_QAccessibleEvent_ptr(long __this__nativeId, long event);
@Override
@QtUninvokable
public void setRootObject(io.qt.gui.@Nullable QAccessibleInterface arg__1){
setRootObject_native_QAccessibleInterface_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@QtUninvokable
private native void setRootObject_native_QAccessibleInterface_ptr(long __this__nativeId, long arg__1);
}
/**
* See QAccessibleBridge:: QAccessibleBridge()
*/
public QAccessibleBridge(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QAccessibleBridge instance);
/**
* See QAccessibleBridge:: notifyAccessibilityUpdate(QAccessibleEvent*)
*/
@QtUninvokable
public abstract void notifyAccessibilityUpdate(io.qt.gui.@Nullable QAccessibleEvent event);
@QtUninvokable
private native void notifyAccessibilityUpdate_native_QAccessibleEvent_ptr(long __this__nativeId, long event);
/**
* See QAccessibleBridge:: setRootObject(QAccessibleInterface*)
*/
@QtUninvokable
public abstract void setRootObject(io.qt.gui.@Nullable QAccessibleInterface arg__1);
@QtUninvokable
private native void setRootObject_native_QAccessibleInterface_ptr(long __this__nativeId, long arg__1);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QAccessibleBridge(QPrivateConstructor p) { super(p); }
}