All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qt.sensors.QMagnetometerReading Maven / Gradle / Ivy

There is a newer version: 6.7.2
Show newest version
package io.qt.sensors;

import io.qt.*;


/**
 * 

Represents one reading from the magnetometer

*

Java wrapper for Qt class QMagnetometerReading

*/ public class QMagnetometerReading 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(QMagnetometerReading.class); /** *

See QMagnetometerReading::QMagnetometerReading(QObject*)

*/ public QMagnetometerReading(io.qt.core.@Nullable QObject parent){ super((QPrivateConstructor)null); initialize_native(this, parent); } private native static void initialize_native(QMagnetometerReading instance, io.qt.core.QObject parent); /** *

See QMagnetometerReading::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 QMagnetometerReading::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 QMagnetometerReading::setX(qreal)

*/ @QtUninvokable public final void setX(double x){ setX_native_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x); } @QtUninvokable private native void setX_native_qreal(long __this__nativeId, double x); /** *

See QMagnetometerReading::setY(qreal)

*/ @QtUninvokable public final void setY(double y){ setY_native_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), y); } @QtUninvokable private native void setY_native_qreal(long __this__nativeId, double y); /** *

See QMagnetometerReading::setZ(qreal)

*/ @QtUninvokable public final void setZ(double z){ setZ_native_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), z); } @QtUninvokable private native void setZ_native_qreal(long __this__nativeId, double z); /** *

See QMagnetometerReading::x()const

*/ @QtPropertyReader(name="x") @QtUninvokable public final double x(){ return x_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native double x_native_constfct(long __this__nativeId); /** *

See QMagnetometerReading::y()const

*/ @QtPropertyReader(name="y") @QtUninvokable public final double y(){ return y_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native double y_native_constfct(long __this__nativeId); /** *

See QMagnetometerReading::z()const

*/ @QtPropertyReader(name="z") @QtUninvokable public final double z(){ return z_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native double z_native_constfct(long __this__nativeId); /** *

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 QMagnetometerReading(QPrivateConstructor p) { super(p); } /** * Constructor for internal use only. * It is not allowed to call the declarative constructor from inside Java. * @hidden */ @NativeAccess protected QMagnetometerReading(QDeclarativeConstructor constructor) { super((QPrivateConstructor)null); initialize_native(this, constructor); } @QtUninvokable private static native void initialize_native(QMagnetometerReading instance, QDeclarativeConstructor constructor); /** *

Overloaded constructor for {@link #QMagnetometerReading(io.qt.core.QObject)} * with parent = null.

*/ public QMagnetometerReading() { this((io.qt.core.QObject)null); } /** * @hidden *

Kotlin property getter. In Java use {@link #calibrationLevel()} instead.

*/ @QtPropertyReader(enabled=false) @QtUninvokable public final double getCalibrationLevel() { return calibrationLevel(); } /** * @hidden *

Kotlin property getter. In Java use {@link #x()} instead.

*/ @QtPropertyReader(enabled=false) @QtUninvokable public final double getX() { return x(); } /** * @hidden *

Kotlin property getter. In Java use {@link #y()} instead.

*/ @QtPropertyReader(enabled=false) @QtUninvokable public final double getY() { return y(); } /** * @hidden *

Kotlin property getter. In Java use {@link #z()} instead.

*/ @QtPropertyReader(enabled=false) @QtUninvokable public final double getZ() { return z(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy