io.qt.sensors.QSensorChangesInterface 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 QSensorChangesInterface
*/
public interface QSensorChangesInterface extends QtObjectInterface
{
/**
* @hidden
* Implementor class for interface {@link io.qt.sensors.QSensorChangesInterface}
*/
public static abstract class Impl extends QtObject
implements io.qt.sensors.QSensorChangesInterface
{
static {
QtJambi_LibraryUtilities.initialize();
}
@NativeAccess
private static final class ConcreteWrapper extends QSensorChangesInterface.Impl {
@NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@QtUninvokable
public void sensorsChanged(){
sensorsChanged_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static void sensorsChanged_native(long __this__nativeId);
}
/**
* See QSensorChangesInterface:: sensorsChanged()
*/
@QtUninvokable
public abstract void sensorsChanged();
private native static void sensorsChanged_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 sensorsChanged();
}