// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include "qtiltsensor.h" #include "qtiltsensor_p.h" #include "qsensorbackend.h" #include QT_BEGIN_NAMESPACE IMPLEMENT_READING(QTiltReading) /*! \class QTiltReading \ingroup sensors_reading \inmodule QtSensors \since 5.1 \brief The QTiltReading class holds readings from the tilt sensor. The tilt sensor reports the angle of tilt in degrees of the device along the X and Y plane. */ /*! \property QTiltReading::yRotation \brief This property holds the amount of tilt on the Y axis, measured in degrees. */ qreal QTiltReading::yRotation() const { return d->yRotation; } /*! Sets yRotation to \a y degrees. */ void QTiltReading::setYRotation(qreal y) { d->yRotation = y; } /*! \property QTiltReading::xRotation \brief This property holds the amount of tilt on the X axis, measured in degrees. */ qreal QTiltReading::xRotation() const { return d->xRotation; } /*! Sets xRotation to \a x degrees. */ void QTiltReading::setXRotation(qreal x) { d->xRotation = x; } // ===================================================================== /*! \class QTiltFilter \ingroup sensors_filter \inmodule QtSensors \since 5.1 \brief The QTiltFilter class is a convenience wrapper around QSensorFilter. The only difference is that the filter() method features a pointer to QTiltReading instead of QSensorReading. */ /*! \fn QTiltFilter::filter(QTiltReading *reading) Called when \a reading changes. Returns false to prevent the reading from propagating. \sa QSensorFilter::filter() */ bool QTiltFilter::filter(QSensorReading *reading) { return filter(static_cast(reading)); } char const * const QTiltSensor::sensorType("QTiltSensor"); /*! \class QTiltSensor \ingroup sensors_type \inmodule QtSensors \since 5.1 \brief The QTiltSensor class is a convenience wrapper around QSensor. The only behavioural difference is that this class sets the type properly. This class also features a reading() function that returns a QTiltReading instead of a QSensorReading. For details about how the sensor works, see \l QTiltReading. \sa QTiltReading */ /*! \fn QTiltSensor::QTiltSensor(QObject *parent) Construct the sensor as a child of \a parent. */ QTiltSensor::QTiltSensor(QObject *parent) : QSensor(QTiltSensor::sensorType, parent) { } /*! \fn QTiltSensor::~QTiltSensor() Destroy the sensor. Stops the sensor if it has not already been stopped. */ QTiltSensor::~QTiltSensor() { } /*! \fn QTiltSensor::reading() const Returns the reading class for this sensor. \sa QSensor::reading() */ QTiltReading *QTiltSensor::reading() const { return static_cast(QSensor::reading()); } /*! Calibrates the tilt sensor. Uses the current tilt angles as 0 degrees. */ void QTiltSensor::calibrate() { QMetaObject::invokeMethod(backend(), "calibrate", Qt::DirectConnection); } QT_END_NAMESPACE #include "moc_qtiltsensor.cpp"