summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h')
-rw-r--r--tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h b/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h
deleted file mode 100644
index 117d465f..00000000
--- a/tests/auto/qsensorgestures/plugins/test/qtestrecognizer.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#ifndef QTESTRECOGNIZER_H
-#define QTESTRECOGNIZER_H
-
-#include <qsensorgesturerecognizer.h>
-
-class QTestRecognizer : public QSensorGestureRecognizer
-{
- Q_OBJECT
- Q_PROPERTY(int thresholdTime READ thresholdTime WRITE setThresholdTime)
-
-public:
-
- QTestRecognizer(QObject *parent = 0);
- ~QTestRecognizer();
-
- void create() override;
-
- QString id() const override;
- bool start() override;
- bool stop() override;
- bool isActive() override;
-
- 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