summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qaxisinput.h
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2016-04-29 10:47:00 +0200
committerKevin Ottens <kevin.ottens@kdab.com>2016-05-02 10:26:46 +0000
commit0a8ba3166ae319a3d0e71ab410b87df70970d690 (patch)
tree66f6606ba0190b4fde726d583c92968196e9cb8d /src/input/frontend/qaxisinput.h
parent496d8b53b16bd0703ab06978f18fcbbb7d95e845 (diff)
Turn QAxisInput into QAbstractAxisInput
Change-Id: If31fe8612c177b3383d63cf5f50c34d088f0d72b Task-number: QTBUG-51474 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/input/frontend/qaxisinput.h')
-rw-r--r--src/input/frontend/qaxisinput.h82
1 files changed, 0 insertions, 82 deletions
diff --git a/src/input/frontend/qaxisinput.h b/src/input/frontend/qaxisinput.h
deleted file mode 100644
index ae67cce57..000000000
--- a/src/input/frontend/qaxisinput.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the Qt3D module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QT3DINPUT_QAXISINPUT_H
-#define QT3DINPUT_QAXISINPUT_H
-
-#include <Qt3DInput/qt3dinput_global.h>
-#include <Qt3DCore/qnode.h>
-#include <QVector3D>
-
-QT_BEGIN_NAMESPACE
-
-namespace Qt3DInput {
-
-class QAbstractPhysicalDevice;
-class QAxisInputPrivate;
-
-class QT3DINPUTSHARED_EXPORT QAxisInput : public Qt3DCore::QNode
-{
- Q_OBJECT
- Q_PROPERTY(Qt3DInput::QAbstractPhysicalDevice *sourceDevice READ sourceDevice WRITE setSourceDevice NOTIFY sourceDeviceChanged)
-
-public:
- explicit QAxisInput(Qt3DCore::QNode *parent = nullptr);
-
- QAbstractPhysicalDevice *sourceDevice() const;
-
-public Q_SLOTS:
- void setSourceDevice(QAbstractPhysicalDevice *sourceDevice);
-
-Q_SIGNALS:
- void sourceDeviceChanged(QAbstractPhysicalDevice *sourceDevice);
-
-protected:
- QAxisInput(QAxisInputPrivate &dd, QNode *parent = nullptr);
-
-private:
- Q_DECLARE_PRIVATE(QAxisInput)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
-};
-
-} // Qt3DInput
-
-QT_END_NAMESPACE
-
-#endif // QQT3DINPUT_AXISINPUT_H