summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qkeyboarddevice.cpp
diff options
context:
space:
mode:
authorFranck Arrecot <franck.arrecot@kdab.com>2016-03-09 14:48:28 +0100
committerFranck Arrecot <franck.arrecot@gmail.com>2016-03-16 10:16:16 +0000
commitb2a6f614e79164b534e36df484150ee8e27c57ad (patch)
tree9d2614908dc94861f42e47da210bb2e1fdc29dea /src/input/frontend/qkeyboarddevice.cpp
parentb47e803ed2a8f3f9a3e6c02ed8e710f6e71ad8de (diff)
Class QKeyboardController rename to QKeyboardDevice
Task-number: QTBUG-51441 Change-Id: I030d7d60be0c4d543f773090eb866e8f8729512c Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/frontend/qkeyboarddevice.cpp')
-rw-r--r--src/input/frontend/qkeyboarddevice.cpp299
1 files changed, 299 insertions, 0 deletions
diff --git a/src/input/frontend/qkeyboarddevice.cpp b/src/input/frontend/qkeyboarddevice.cpp
new file mode 100644
index 000000000..01ebd69f2
--- /dev/null
+++ b/src/input/frontend/qkeyboarddevice.cpp
@@ -0,0 +1,299 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 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$
+**
+****************************************************************************/
+
+#include "qkeyboarddevice.h"
+#include "qkeyboarddevice_p.h"
+#include "qkeyboardhandler.h"
+#include <Qt3DCore/private/qscene_p.h>
+#include <Qt3DCore/qbackendscenepropertychange.h>
+
+QT_BEGIN_NAMESPACE
+
+using namespace Qt3DCore;
+
+namespace Qt3DInput {
+
+QKeyboardDevicePrivate::QKeyboardDevicePrivate()
+ : QAbstractPhysicalDevicePrivate()
+{
+ m_keyMap[QStringLiteral("escape")] = Qt::Key_Escape;
+ m_keyMap[QStringLiteral("tab")] = Qt::Key_Tab;
+ m_keyMap[QStringLiteral("backtab")] = Qt::Key_Backtab;
+ m_keyMap[QStringLiteral("backspace")] = Qt::Key_Backspace;
+ m_keyMap[QStringLiteral("return")] = Qt::Key_Return;
+ m_keyMap[QStringLiteral("enter")] = Qt::Key_Enter;
+ m_keyMap[QStringLiteral("insert")] = Qt::Key_Insert;
+ m_keyMap[QStringLiteral("delete")] = Qt::Key_Delete;
+ m_keyMap[QStringLiteral("pause")] = Qt::Key_Pause;
+ m_keyMap[QStringLiteral("print")] = Qt::Key_Print;
+ m_keyMap[QStringLiteral("sysreq")] = Qt::Key_SysReq;
+ m_keyMap[QStringLiteral("clear")] = Qt::Key_Clear;
+ m_keyMap[QStringLiteral("home")] = Qt::Key_Home;
+ m_keyMap[QStringLiteral("end")] = Qt::Key_End;
+ m_keyMap[QStringLiteral("left")] = Qt::Key_Left;
+ m_keyMap[QStringLiteral("right")] = Qt::Key_Right;
+ m_keyMap[QStringLiteral("up")] = Qt::Key_Up;
+ m_keyMap[QStringLiteral("down")] = Qt::Key_Down;
+ m_keyMap[QStringLiteral("pageUp")] = Qt::Key_PageUp;
+ m_keyMap[QStringLiteral("pageDown")] = Qt::Key_PageDown;
+ m_keyMap[QStringLiteral("shift")] = Qt::Key_Shift;
+ m_keyMap[QStringLiteral("control")] = Qt::Key_Control;
+ m_keyMap[QStringLiteral("meta")] = Qt::Key_Meta;
+ m_keyMap[QStringLiteral("alt")] = Qt::Key_Alt;
+ m_keyMap[QStringLiteral("capLock")] = Qt::Key_CapsLock;
+ m_keyMap[QStringLiteral("numLock")] = Qt::Key_NumLock;
+ m_keyMap[QStringLiteral("scrollLock")] = Qt::Key_ScrollLock;
+ m_keyMap[QStringLiteral("F1")] = Qt::Key_F1;
+ m_keyMap[QStringLiteral("F2")] = Qt::Key_F2;
+ m_keyMap[QStringLiteral("F3")] = Qt::Key_F3;
+ m_keyMap[QStringLiteral("F4")] = Qt::Key_F4;
+ m_keyMap[QStringLiteral("F5")] = Qt::Key_F5;
+ m_keyMap[QStringLiteral("F6")] = Qt::Key_F6;
+ m_keyMap[QStringLiteral("F7")] = Qt::Key_F7;
+ m_keyMap[QStringLiteral("F8")] = Qt::Key_F8;
+ m_keyMap[QStringLiteral("F9")] = Qt::Key_F9;
+ m_keyMap[QStringLiteral("F10")] = Qt::Key_F10;
+ m_keyMap[QStringLiteral("F11")] = Qt::Key_F11;
+ m_keyMap[QStringLiteral("F12")] = Qt::Key_F12;
+ m_keyMap[QStringLiteral("F13")] = Qt::Key_F13;
+ m_keyMap[QStringLiteral("F14")] = Qt::Key_F14;
+ m_keyMap[QStringLiteral("F15")] = Qt::Key_F15;
+ m_keyMap[QStringLiteral("F16")] = Qt::Key_F16;
+ m_keyMap[QStringLiteral("F17")] = Qt::Key_F17;
+ m_keyMap[QStringLiteral("F18")] = Qt::Key_F18;
+ m_keyMap[QStringLiteral("F19")] = Qt::Key_F19;
+ m_keyMap[QStringLiteral("F20")] = Qt::Key_F20;
+ m_keyMap[QStringLiteral("F21")] = Qt::Key_F21;
+ m_keyMap[QStringLiteral("F22")] = Qt::Key_F22;
+ m_keyMap[QStringLiteral("F23")] = Qt::Key_F23;
+ m_keyMap[QStringLiteral("F24")] = Qt::Key_F24;
+ m_keyMap[QStringLiteral("F25")] = Qt::Key_F25;
+ m_keyMap[QStringLiteral("F26")] = Qt::Key_F26;
+ m_keyMap[QStringLiteral("F27")] = Qt::Key_F27;
+ m_keyMap[QStringLiteral("F28")] = Qt::Key_F28;
+ m_keyMap[QStringLiteral("F29")] = Qt::Key_F29;
+ m_keyMap[QStringLiteral("F30")] = Qt::Key_F30;
+ m_keyMap[QStringLiteral("F31")] = Qt::Key_F31;
+ m_keyMap[QStringLiteral("F32")] = Qt::Key_F32;
+ m_keyMap[QStringLiteral("F33")] = Qt::Key_F33;
+ m_keyMap[QStringLiteral("F34")] = Qt::Key_F34;
+ m_keyMap[QStringLiteral("F35")] = Qt::Key_F35;
+ m_keyMap[QStringLiteral("superL")] = Qt::Key_Super_L;
+ m_keyMap[QStringLiteral("superR")] = Qt::Key_Super_R;
+ m_keyMap[QStringLiteral("menu")] = Qt::Key_Menu;
+ m_keyMap[QStringLiteral("hyperL")] = Qt::Key_Hyper_L;
+ m_keyMap[QStringLiteral("hyperR")] = Qt::Key_Hyper_R;
+ m_keyMap[QStringLiteral("help")] = Qt::Key_Help;
+ m_keyMap[QStringLiteral("directionL")] = Qt::Key_Direction_L;
+ m_keyMap[QStringLiteral("directionR")] = Qt::Key_Direction_R;
+ m_keyMap[QStringLiteral("space")] = Qt::Key_Space;
+ m_keyMap[QStringLiteral("any")] = Qt::Key_Any;
+ m_keyMap[QStringLiteral("exclam")] = Qt::Key_Exclam;
+ m_keyMap[QStringLiteral("quoteDbl")] = Qt::Key_QuoteDbl;
+ m_keyMap[QStringLiteral("numberSign")] = Qt::Key_NumberSign;
+ m_keyMap[QStringLiteral("dollar")] = Qt::Key_Dollar;
+ m_keyMap[QStringLiteral("percent")] = Qt::Key_Percent;
+ m_keyMap[QStringLiteral("ampersand")] = Qt::Key_Ampersand;
+ m_keyMap[QStringLiteral("apostrophe")] = Qt::Key_Apostrophe;
+ m_keyMap[QStringLiteral("parenLeft")] = Qt::Key_ParenLeft;
+ m_keyMap[QStringLiteral("parenRight")] = Qt::Key_ParenRight;
+ m_keyMap[QStringLiteral("asterisk")] = Qt::Key_Asterisk;
+ m_keyMap[QStringLiteral("plus")] = Qt::Key_Plus;
+ m_keyMap[QStringLiteral("comma")] = Qt::Key_Comma;
+ m_keyMap[QStringLiteral("minus")] = Qt::Key_Minus;
+ m_keyMap[QStringLiteral("period")] = Qt::Key_Period;
+ m_keyMap[QStringLiteral("slash")] = Qt::Key_Slash;
+ m_keyMap[QStringLiteral("0")] = Qt::Key_0;
+ m_keyMap[QStringLiteral("1")] = Qt::Key_1;
+ m_keyMap[QStringLiteral("2")] = Qt::Key_2;
+ m_keyMap[QStringLiteral("3")] = Qt::Key_3;
+ m_keyMap[QStringLiteral("4")] = Qt::Key_4;
+ m_keyMap[QStringLiteral("5")] = Qt::Key_5;
+ m_keyMap[QStringLiteral("6")] = Qt::Key_6;
+ m_keyMap[QStringLiteral("7")] = Qt::Key_7;
+ m_keyMap[QStringLiteral("8")] = Qt::Key_8;
+ m_keyMap[QStringLiteral("9")] = Qt::Key_9;
+ m_keyMap[QStringLiteral("colon")] = Qt::Key_Colon;
+ m_keyMap[QStringLiteral("semiColon")] = Qt::Key_Semicolon;
+ m_keyMap[QStringLiteral("less")] = Qt::Key_Less;
+ m_keyMap[QStringLiteral("equal")] = Qt::Key_Equal;
+ m_keyMap[QStringLiteral("greater")] = Qt::Key_Greater;
+ m_keyMap[QStringLiteral("question")] = Qt::Key_Question;
+ m_keyMap[QStringLiteral("at")] = Qt::Key_At;
+ m_keyMap[QStringLiteral("a")] = Qt::Key_A;
+ m_keyMap[QStringLiteral("b")] = Qt::Key_B;
+ m_keyMap[QStringLiteral("c")] = Qt::Key_C;
+ m_keyMap[QStringLiteral("d")] = Qt::Key_D;
+ m_keyMap[QStringLiteral("e")] = Qt::Key_E;
+ m_keyMap[QStringLiteral("f")] = Qt::Key_F;
+ m_keyMap[QStringLiteral("g")] = Qt::Key_G;
+ m_keyMap[QStringLiteral("h")] = Qt::Key_H;
+ m_keyMap[QStringLiteral("i")] = Qt::Key_I;
+ m_keyMap[QStringLiteral("j")] = Qt::Key_J;
+ m_keyMap[QStringLiteral("k")] = Qt::Key_K;
+ m_keyMap[QStringLiteral("l")] = Qt::Key_L;
+ m_keyMap[QStringLiteral("m")] = Qt::Key_M;
+ m_keyMap[QStringLiteral("n")] = Qt::Key_N;
+ m_keyMap[QStringLiteral("o")] = Qt::Key_O;
+ m_keyMap[QStringLiteral("p")] = Qt::Key_P;
+ m_keyMap[QStringLiteral("q")] = Qt::Key_Q;
+ m_keyMap[QStringLiteral("r")] = Qt::Key_R;
+ m_keyMap[QStringLiteral("s")] = Qt::Key_S;
+ m_keyMap[QStringLiteral("t")] = Qt::Key_T;
+ m_keyMap[QStringLiteral("u")] = Qt::Key_U;
+ m_keyMap[QStringLiteral("v")] = Qt::Key_V;
+ m_keyMap[QStringLiteral("w")] = Qt::Key_W;
+ m_keyMap[QStringLiteral("x")] = Qt::Key_X;
+ m_keyMap[QStringLiteral("y")] = Qt::Key_Y;
+ m_keyMap[QStringLiteral("z")] = Qt::Key_Z;
+ m_keyMap[QStringLiteral("bracketLeft")] = Qt::Key_BracketLeft;
+ m_keyMap[QStringLiteral("backslash")] = Qt::Key_Backslash;
+ m_keyMap[QStringLiteral("bracketRight")] = Qt::Key_BracketRight;
+ m_keyMap[QStringLiteral("asciiCircum")] = Qt::Key_AsciiCircum;
+ m_keyMap[QStringLiteral("underscore")] = Qt::Key_Underscore;
+ m_keyMap[QStringLiteral("quoteLeft")] = Qt::Key_QuoteLeft;
+ m_keyMap[QStringLiteral("braceLeft")] = Qt::Key_BraceLeft;
+ m_keyMap[QStringLiteral("bar")] = Qt::Key_Bar;
+ m_keyMap[QStringLiteral("braceRight")] = Qt::Key_BraceRight;
+ m_keyMap[QStringLiteral("asciiTilde")] = Qt::Key_AsciiTilde;
+ m_keyMap[QStringLiteral("plusminus")] = Qt::Key_plusminus;
+ m_keyMap[QStringLiteral("onesuperior")] = Qt::Key_onesuperior;
+ m_keyMap[QStringLiteral("multiply")] = Qt::Key_multiply;
+ m_keyMap[QStringLiteral("division")] = Qt::Key_division;
+ m_keyMap[QStringLiteral("diaeresis")] = Qt::Key_diaeresis;
+
+ m_keyNames = m_keyMap.keys();
+}
+
+/*!
+ \class Qt3DInput::QKeyboardDevice
+ \inmodule Qt3DInput
+ \since 5.5
+*/
+
+/*!
+ \qmltype KeyboardDevice
+ \inqmlmodule Qt3D.Input
+ \since 5.5
+ \instantiates Qt3DInput::QKeyboardDevice
+ \inherits Node
+*/
+
+QKeyboardDevice::QKeyboardDevice(QNode *parent)
+ : QAbstractPhysicalDevice(*new QKeyboardDevicePrivate, parent)
+{
+}
+
+QKeyboardDevice::~QKeyboardDevice()
+{
+ QNode::cleanup();
+}
+
+/*!
+ \qmlproperty KeyboardHandler Qt3D.Input::KeyboardDevice::activeInput
+ \readonly
+*/
+QKeyboardHandler *QKeyboardDevice::activeInput() const
+{
+ Q_D(const QKeyboardDevice);
+ return d->m_activeInput;
+}
+
+int QKeyboardDevice::axisCount() const
+{
+ return 0;
+}
+
+int QKeyboardDevice::buttonCount() const
+{
+ Q_D(const QKeyboardDevice);
+ return d->m_keyNames.size();
+}
+
+QStringList QKeyboardDevice::axisNames() const
+{
+ return QStringList();
+}
+
+QStringList QKeyboardDevice::buttonNames() const
+{
+ Q_D(const QKeyboardDevice);
+ return d->m_keyNames;
+}
+
+int QKeyboardDevice::axisIdentifier(const QString &name) const
+{
+ Q_UNUSED(name);
+ return 0;
+}
+
+int QKeyboardDevice::buttonIdentifier(const QString &name) const
+{
+ Q_D(const QKeyboardDevice);
+ return d->m_keyMap.value(name, 0);
+}
+
+/*! \internal */
+QKeyboardDevice::QKeyboardDevice(QKeyboardDevicePrivate &dd, QNode *parent)
+ : QAbstractPhysicalDevice(dd, parent)
+{
+}
+
+void QKeyboardDevice::sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change)
+{
+ Q_D(QKeyboardDevice);
+ QBackendScenePropertyChangePtr e = qSharedPointerCast<QBackendScenePropertyChange>(change);
+ if (e->type() == NodeUpdated && e->propertyName() == QByteArrayLiteral("activeInput")) {
+ QNodeId activeInputId = e->value().value<QNodeId>();
+ setActiveInput(qobject_cast<QKeyboardHandler *>(d->scene()->lookupNode(activeInputId)));
+ }
+}
+
+void QKeyboardDevice::setActiveInput(QKeyboardHandler *activeInput)
+{
+ Q_D(QKeyboardDevice);
+ if (d->m_activeInput != activeInput) {
+ d->m_activeInput = activeInput;
+ emit activeInputChanged(activeInput);
+ }
+}
+
+} // namespace Qt3DInput
+
+QT_END_NAMESPACE