io.qt.datavis.QTouch3DInputHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-datavisualization Show documentation
Show all versions of qtjambi-datavisualization Show documentation
UI Components for creating stunning 3D data visualizations.
The newest version!
package io.qt.datavis;
import io.qt.*;
/**
* Basic touch display based input handler
* Java wrapper for Qt class QTouch3DInputHandler
* @since This class was introduced in Qt QtDataVisualization 1.0.
*/
public class QTouch3DInputHandler extends io.qt.datavis.Q3DInputHandler
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QTouch3DInputHandler.class);
/**
* See QTouch3DInputHandler:: QTouch3DInputHandler(QObject*)
* @param parent
*/
public QTouch3DInputHandler(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QTouch3DInputHandler instance, io.qt.core.QObject parent);
/**
* See QAbstract3DInputHandler:: touchEvent(QTouchEvent*)
* @param event
*/
@QtUninvokable
@Override
public void touchEvent(io.qt.gui.@Nullable QTouchEvent event){
touchEvent_native_QTouchEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@QtUninvokable
private native void touchEvent_native_QTouchEvent_ptr(long __this__nativeId, long event);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QTouch3DInputHandler(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QTouch3DInputHandler(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QTouch3DInputHandler instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QTouch3DInputHandler(io.qt.core.QObject)}
* with parent = null
.
*/
public QTouch3DInputHandler() {
this((io.qt.core.QObject)null);
}
}