From 8684d1e799d379a913535b527b301f31cd566a01 Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Mon, 17 Oct 2011 14:43:35 +1000 Subject: add QSensorGestures API. Long live QSensorGestures! Change-Id: Iada4e8888aad8b7b2180cc0bfb8576a766f75b24 Sanity-Review: Qt Sanity Bot Reviewed-by: Lincoln Ramsay --- .../plugins/test/qtest2recognizer.cpp | 99 +++++++++++++++++++ .../plugins/test/qtest2recognizer.h | 76 ++++++++++++++ .../plugins/test/qtestrecognizer.cpp | 106 ++++++++++++++++++++ .../qsensorgestures/plugins/test/qtestrecognizer.h | 79 +++++++++++++++ .../plugins/test/qtestsensorgestureplugin.cpp | 110 +++++++++++++++++++++ .../plugins/test/qtestsensorgestureplugin_p.h | 70 +++++++++++++ 6 files changed, 540 insertions(+) create mode 100644 tests/auto/qsensorgestures/plugins/test/qtest2recognizer.cpp create mode 100644 tests/auto/qsensorgestures/plugins/test/qtest2recognizer.h create mode 100644 tests/auto/qsensorgestures/plugins/test/qtestrecognizer.cpp create mode 100644 tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h create mode 100644 tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin.cpp create mode 100644 tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin_p.h (limited to 'tests/auto/qsensorgestures/plugins/test') diff --git a/tests/auto/qsensorgestures/plugins/test/qtest2recognizer.cpp b/tests/auto/qsensorgestures/plugins/test/qtest2recognizer.cpp new file mode 100644 index 0000000..d493143 --- /dev/null +++ b/tests/auto/qsensorgestures/plugins/test/qtest2recognizer.cpp @@ -0,0 +1,99 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** 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$ +** +****************************************************************************/ + +#include "qtest2recognizer.h" + +#include "qtestsensorgestureplugin_p.h" + +QTest2Recognizer::QTest2Recognizer(QObject *parent) + : QSensorGestureRecognizer(parent), + active(0) +{ +} + +QTest2Recognizer::~QTest2Recognizer() +{ +} + +bool QTest2Recognizer::start() +{ + Q_EMIT test2(); + + Q_EMIT detected("test2"); + + Q_EMIT test3(true); + active = true; + + return true; +} + +bool QTest2Recognizer::stop() +{ + active = false; + return true; +} + +bool QTest2Recognizer::isActive() +{ + return active; +} + + +void QTest2Recognizer::create() +{ + active = false; +} + +QString QTest2Recognizer::id() const +{ + return QString("QtSensors.test2"); +} + +int QTest2Recognizer::thresholdTime() const +{ + return timerTimeout; +} + +void QTest2Recognizer::setThresholdTime(int msec) +{ + timer->setInterval(msec); +} + diff --git a/tests/auto/qsensorgestures/plugins/test/qtest2recognizer.h b/tests/auto/qsensorgestures/plugins/test/qtest2recognizer.h new file mode 100644 index 0000000..0105997 --- /dev/null +++ b/tests/auto/qsensorgestures/plugins/test/qtest2recognizer.h @@ -0,0 +1,76 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** 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 QTEST2RECOGNIZER_H +#define QTEST2RECOGNIZER_H + +#include + +class QTest2Recognizer : public QSensorGestureRecognizer +{ + Q_OBJECT + +public: + QTest2Recognizer(QObject *parent = 0); + ~QTest2Recognizer(); + + void create(); + + QString id() const; + bool start(); + bool stop(); + bool isActive(); + + int thresholdTime() const; + void setThresholdTime(int msec); + +Q_SIGNALS: + void test2(); + void test3(bool); + +private: + int timerTimeout; + QTimer *timer; + bool active; +}; + + +#endif // QTEST2RECOGNIZER_H diff --git a/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.cpp b/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.cpp new file mode 100644 index 0000000..dcbb9fd --- /dev/null +++ b/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.cpp @@ -0,0 +1,106 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** 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$ +** +****************************************************************************/ + +#include +#include + +#include "qtestrecognizer.h" +#include "qtestsensorgestureplugin_p.h" + + +QTestRecognizer::QTestRecognizer(QObject *parent) + : QSensorGestureRecognizer(parent), + active(0) +{ + QTimer::singleShot(2000,this, SLOT(timeout())); +} + +QTestRecognizer::~QTestRecognizer() +{ +} + +void QTestRecognizer::timeout() +{ + Q_EMIT detected("tested"); + Q_EMIT tested(); + QTimer::singleShot(2000,this, SLOT(timeout())); +} + + +bool QTestRecognizer::start() +{ + Q_EMIT detected("tested"); + Q_EMIT tested(); + active = true; + return true; +} + +bool QTestRecognizer::stop() +{ + active = false; + return true; +} + +bool QTestRecognizer::isActive() +{ + return active; +} + +void QTestRecognizer::create() +{ + active = false; +} + +QString QTestRecognizer::id() const +{ + return QString("QtSensors.test"); +} + + +int QTestRecognizer::thresholdTime() const +{ + return timerTimeout; +} + +void QTestRecognizer::setThresholdTime(int msec) +{ + timer->setInterval(msec); +} diff --git a/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h b/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h new file mode 100644 index 0000000..620c28b --- /dev/null +++ b/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h @@ -0,0 +1,79 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** 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 QTESTRECOGNIZER_H +#define QTESTRECOGNIZER_H + +#include + +class QTestRecognizer : public QSensorGestureRecognizer +{ + Q_OBJECT + Q_PROPERTY(int thresholdTime READ thresholdTime WRITE setThresholdTime) + +public: + + QTestRecognizer(QObject *parent = 0); + ~QTestRecognizer(); + + void create(); + + QString id() const; + bool start(); + bool stop(); + bool isActive(); + + int thresholdTime() const; + void setThresholdTime(int msec); + +Q_SIGNALS: + void tested(); + +private: + int timerTimeout; + QTimer *timer; + bool active; + +public slots: + void timeout(); +}; + +#endif // QTESTRECOGNIZER_H diff --git a/tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin.cpp b/tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin.cpp new file mode 100644 index 0000000..c7077e1 --- /dev/null +++ b/tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin.cpp @@ -0,0 +1,110 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** 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$ +** +****************************************************************************/ + +#include +#include +#include +#include +#include + +#include "qtestrecognizer.h" +#include "qtest2recognizer.h" + +#include "qtestsensorgestureplugin_p.h" + +#include +#include +#include + + +QTestSensorGesturePlugin::QTestSensorGesturePlugin() +{ +} + +QTestSensorGesturePlugin::~QTestSensorGesturePlugin() +{ +} + + +///*! +// Describes this gesture's possible gesture signals. +//handled through the detected(const QString &) signal. +// */ +//QStringList QTestSensorGesturePlugin::gestureSignals() const +//{ +// QStringList list; +// Q_FOREACH (const QSensorGestureRecognizer* rec, recognizersList) { +// list.append(rec->gestureSignals()); +// } +// return list; +//} + +QList QTestSensorGesturePlugin::createRecognizers() +{ + QSensorGestureRecognizer *sRec = new QTestRecognizer(this); + recognizersList.append(sRec); + + QSensorGestureRecognizer *sRec2 = new QTest2Recognizer(this); + recognizersList.append(sRec2); + + return recognizersList; +} + +QStringList QTestSensorGesturePlugin::supportedIds() const +{ + QStringList list; + list << "QtSensors.test"; + list <<"QtSensors.test2"; + + return list; +} + +QList QTestSensorGesturePlugin::recognizers() const +{ + return recognizersList; +} + +QString QTestSensorGesturePlugin::name() const +{ + return "TestGestures"; +} + +REGISTER_STATIC_PLUGIN_V2(QTestSensorGesturePlugin) diff --git a/tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin_p.h b/tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin_p.h new file mode 100644 index 0000000..a87f6a0 --- /dev/null +++ b/tests/auto/qsensorgestures/plugins/test/qtestsensorgestureplugin_p.h @@ -0,0 +1,70 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** 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 QTESTSENSORGESTUREPLUGIN_P_H +#define QTESTSENSORGESTUREPLUGIN_P_H + +#include +#include + +class QTestSensorGesturePlugin : public QObject, QSensorGesturePluginInterface +{ + Q_OBJECT + Q_INTERFACES(QSensorGesturePluginInterface) +public: + explicit QTestSensorGesturePlugin(); + ~QTestSensorGesturePlugin(); + + QList createRecognizers(); + +// QStringList gestureSignals() const; + QStringList supportedIds() const; + QString name() const; + + QList recognizers() const; + + QList recognizersList; + +}; + + + +#endif // QTESTSENSORGESTUREPLUGIN_H -- cgit v1.2.1