io.qt.sensors.QSensorPluginInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-sensors Show documentation
Show all versions of qtjambi-sensors Show documentation
Provides access to sensor hardware and motion gesture recognition.
package io.qt.sensors;
import io.qt.*;
/**
* The pure virtual interface to sensor plugins
* Java wrapper for Qt class QSensorPluginInterface
*/
public interface QSensorPluginInterface extends QtObjectInterface
{
/**
* @hidden
* Implementor class for interface {@link io.qt.sensors.QSensorPluginInterface}
*/
public static abstract class Impl extends QtObject
implements io.qt.sensors.QSensorPluginInterface
{
static {
QtJambi_LibraryUtilities.initialize();
}
@NativeAccess
private static final class ConcreteWrapper extends QSensorPluginInterface.Impl {
@NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@QtUninvokable
public void registerSensors(){
registerSensors_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static void registerSensors_native(long __this__nativeId);
}
/**
* See QSensorPluginInterface:: registerSensors()
*/
@QtUninvokable
public abstract void registerSensors();
private native static void registerSensors_native(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected Impl(QPrivateConstructor p) { super(p); }
}
/**
*
*/
@QtUninvokable
public void registerSensors();
}