/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtSensors module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef MOCKCOMMON_H #define MOCKCOMMON_H #include #include #include #include #include #include #include #include #include #include class mockcommonPrivate : public QObject { Q_OBJECT public: mockcommonPrivate(); static mockcommonPrivate *instance(); bool setFile(const QString &); bool parseData(const QString &line); QTimer *readTimer; public slots: void timerout(); Q_SIGNALS: void accelData(const QString &data); void irProxyData(const QString &data); void orientData(const QString &data); void tapData(const QString &data); void proxyData(const QString &data); private: QFile pFile; qreal oldAccelTs; qreal prevts; bool firstRun; }; class mockcommon : public QSensorBackend { Q_OBJECT public: mockcommon(QSensor *sensor); void start(); void stop(); static char const * const id; Q_SIGNALS: void parseAccelData(const QString &data); void parseIrProxyDatata(const QString &data); void parseOrientData(const QString &data); void parseTapData(const QString &data); void parseProxyData(const QString &data); private: int m_timerid; friend class mockcommonPrivate; QTimer *timer; QSensor *parentSensor; }; class mockaccelerometer : public mockcommon { Q_OBJECT public: static char const * const id; mockaccelerometer(QSensor *sensor); public slots: void parseAccelData(const QString &data); private: QAccelerometerReading m_reading; qreal lastTimestamp; }; class mockorientationsensor : public mockcommon { Q_OBJECT public: static char const * const id; mockorientationsensor(QSensor *sensor); public slots: void parseOrientData(const QString &data); private: QOrientationReading m_reading; }; class mockirproximitysensor : public mockcommon { Q_OBJECT public: static char const * const id; mockirproximitysensor(QSensor *sensor); public slots: void parseIrProxyData(const QString &data); private: QIRProximityReading m_reading; }; class mocktapsensor : public mockcommon { Q_OBJECT public: static char const * const id; mocktapsensor(QSensor *sensor); public slots: void parseTapData(const QString &data); private: QTapReading m_reading; }; class mockproximitysensor : public mockcommon { Q_OBJECT public: static char const * const id; mockproximitysensor(QSensor *sensor); public slots: void parseProxyData(const QString &data); private: QProximityReading m_reading; }; #endif // MOCKCOMMON_H