io.qt.sensors.QCompassReading 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.*;
/**
* Represents one reading from a compass
* Java wrapper for Qt class QCompassReading
*/
public class QCompassReading extends io.qt.sensors.QSensorReading
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QCompassReading.class);
/**
* See QCompassReading:: QCompassReading(QObject*)
*/
public QCompassReading(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QCompassReading instance, io.qt.core.QObject parent);
/**
* See QCompassReading:: azimuth()const
*/
@QtPropertyReader(name="azimuth")
@QtUninvokable
public final double azimuth(){
return azimuth_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native double azimuth_native_constfct(long __this__nativeId);
/**
* See QCompassReading:: calibrationLevel()const
*/
@QtPropertyReader(name="calibrationLevel")
@QtUninvokable
public final double calibrationLevel(){
return calibrationLevel_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native double calibrationLevel_native_constfct(long __this__nativeId);
/**
* See QCompassReading:: setAzimuth(qreal)
*/
@QtUninvokable
public final void setAzimuth(double azimuth){
setAzimuth_native_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), azimuth);
}
@QtUninvokable
private native void setAzimuth_native_qreal(long __this__nativeId, double azimuth);
/**
* See QCompassReading:: setCalibrationLevel(qreal)
*/
@QtUninvokable
public final void setCalibrationLevel(double calibrationLevel){
setCalibrationLevel_native_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), calibrationLevel);
}
@QtUninvokable
private native void setCalibrationLevel_native_qreal(long __this__nativeId, double calibrationLevel);
/**
* See QSensorReading:: copyValuesFrom(QSensorReading*)
*/
@QtUninvokable
@Override
protected void copyValuesFrom(io.qt.sensors.@Nullable QSensorReading other){
copyValuesFrom_native_QSensorReading_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void copyValuesFrom_native_QSensorReading_ptr(long __this__nativeId, long other);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QCompassReading(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QCompassReading(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QCompassReading instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QCompassReading(io.qt.core.QObject)}
* with parent = null
.
*/
public QCompassReading() {
this((io.qt.core.QObject)null);
}
/**
* @hidden
* Kotlin property getter. In Java use {@link #azimuth()} instead.
*/
@QtPropertyReader(enabled=false)
@QtUninvokable
public final double getAzimuth() {
return azimuth();
}
/**
* @hidden
* Kotlin property getter. In Java use {@link #calibrationLevel()} instead.
*/
@QtPropertyReader(enabled=false)
@QtUninvokable
public final double getCalibrationLevel() {
return calibrationLevel();
}
}