summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/winrt/winrtrotationsensor.h
blob: add2d027b77261c5679fcbebbd947abb837c4408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (C) 2017 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

#ifndef WINRTROTATIONSENSOR_H
#define WINRTROTATIONSENSOR_H

#include <QtSensors/QSensorBackend>
#include <QtCore/QScopedPointer>

QT_USE_NAMESPACE

class WinRtRotationSensorPrivate;
class WinRtRotationSensor : public QSensorBackend
{
    Q_OBJECT
public:
    WinRtRotationSensor(QSensor *sensor);
    ~WinRtRotationSensor();

    bool isFeatureSupported(QSensor::Feature feature) const override
    {
        if (feature == QSensor::Feature::AxesOrientation || feature == QSensor::Feature::AccelerationMode)
            return true;
        return false;
    }

    void start() override;
    void stop() override;

private:
    QScopedPointer<WinRtRotationSensorPrivate> d_ptr;
    Q_DECLARE_PRIVATE(WinRtRotationSensor)
};

#endif // WINRTROTATIONSENSOR_H