Import initial du projet shipheart_cm5
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: https://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:GPL$
|
||||
** 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 General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3 or (at your option) 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.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-3.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.0
|
||||
import QtQuick.Layouts 1.0
|
||||
import QtQuick.VirtualKeyboard 2.3
|
||||
|
||||
KeyboardLayout {
|
||||
function createInputMethod() {
|
||||
return Qt.createQmlObject('import QtQuick 2.0; import QtQuick.VirtualKeyboard.Plugins 2.3; HandwritingInputMethod {}', parent)
|
||||
}
|
||||
sharedLayouts: ['symbols']
|
||||
inputMode: preferredInputMode()
|
||||
|
||||
Connections {
|
||||
target: InputContext
|
||||
onInputMethodHintsChanged: {
|
||||
var newInputMode = preferredInputMode()
|
||||
if (InputContext.inputEngine.inputModes.indexOf(newInputMode) !== -1)
|
||||
InputContext.inputEngine.inputMode = newInputMode
|
||||
}
|
||||
}
|
||||
|
||||
function preferredInputMode() {
|
||||
return InputContext.inputMethodHints &
|
||||
(Qt.ImhPreferLatin | Qt.ImhEmailCharactersOnly | Qt.ImhUrlCharactersOnly |
|
||||
Qt.ImhLatinOnly) ? InputEngine.InputMode.Latin : InputEngine.InputMode.ChineseHandwriting
|
||||
}
|
||||
|
||||
KeyboardRow {
|
||||
Layout.preferredHeight: 3
|
||||
KeyboardColumn {
|
||||
Layout.preferredWidth: bottomRow.width - hideKeyboardKey.width
|
||||
KeyboardRow {
|
||||
TraceInputKey {
|
||||
objectName: "hwrInputArea"
|
||||
patternRecognitionMode: InputEngine.PatternRecognitionMode.Handwriting
|
||||
horizontalRulers:
|
||||
InputContext.inputEngine.inputMode !== InputEngine.InputMode.ChineseHandwriting ? [] :
|
||||
[Math.round(boundingBox.height / 4), Math.round(boundingBox.height / 4) * 2, Math.round(boundingBox.height / 4) * 3]
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
KeyboardColumn {
|
||||
Layout.preferredWidth: hideKeyboardKey.width
|
||||
KeyboardRow {
|
||||
BackspaceKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
EnterKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
ShiftKey { }
|
||||
}
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
id: bottomRow
|
||||
Layout.preferredHeight: 1
|
||||
keyWeight: 154
|
||||
InputModeKey {
|
||||
weight: 217
|
||||
}
|
||||
ChangeLanguageKey {
|
||||
weight: 154
|
||||
customLayoutsOnly: true
|
||||
}
|
||||
HandwritingModeKey {
|
||||
weight: 154
|
||||
}
|
||||
SpaceKey {
|
||||
weight: 864
|
||||
}
|
||||
Key {
|
||||
key: Qt.Key_Apostrophe
|
||||
text: "‘"
|
||||
alternativeKeys: "《》〈〉•…々〆‘’“”「」¥"
|
||||
}
|
||||
Key {
|
||||
key: Qt.Key_Period
|
||||
text: "."
|
||||
alternativeKeys: ":;,.、。?!"
|
||||
}
|
||||
HideKeyboardKey {
|
||||
id: hideKeyboardKey
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
}
|
||||
+458
@@ -0,0 +1,458 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2016 The Qt Company Ltd.
|
||||
** Contact: https://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:GPL$
|
||||
** 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 General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3 or (at your option) 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.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-3.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.0
|
||||
import QtQuick.Layouts 1.0
|
||||
import QtQuick.VirtualKeyboard 2.3
|
||||
|
||||
KeyboardLayoutLoader {
|
||||
function createInputMethod() {
|
||||
return Qt.createQmlObject('import QtQuick 2.0; import QtQuick.VirtualKeyboard.Plugins 2.3; TCInputMethod {}', parent, "tcInputMethod")
|
||||
}
|
||||
sharedLayouts: ['symbols']
|
||||
sourceComponent: InputContext.inputEngine.inputMode === InputEngine.InputMode.Cangjie ? pageCangjie : pageZhuyin
|
||||
Component {
|
||||
id: pageCangjie
|
||||
KeyboardLayout {
|
||||
keyWeight: 160
|
||||
smallTextVisible: true
|
||||
KeyboardRow {
|
||||
Key {
|
||||
text: "\u624B"
|
||||
alternativeKeys: "\u624Bq"
|
||||
}
|
||||
Key {
|
||||
text: "\u7530"
|
||||
alternativeKeys: "\u7530w"
|
||||
}
|
||||
Key {
|
||||
text: "\u6C34"
|
||||
alternativeKeys: "\u6C34e"
|
||||
}
|
||||
Key {
|
||||
text: "\u53E3"
|
||||
alternativeKeys: "\u53E3r"
|
||||
}
|
||||
Key {
|
||||
text: "\u5EFF"
|
||||
alternativeKeys: "\u5EFFt"
|
||||
}
|
||||
Key {
|
||||
text: "\u535C"
|
||||
alternativeKeys: "\u535Cy"
|
||||
}
|
||||
Key {
|
||||
text: "\u5C71"
|
||||
alternativeKeys: "\u5C71u"
|
||||
}
|
||||
Key {
|
||||
text: "\u6208"
|
||||
alternativeKeys: "\u6208i"
|
||||
}
|
||||
Key {
|
||||
text: "\u4EBA"
|
||||
alternativeKeys: "\u4EBAo"
|
||||
}
|
||||
Key {
|
||||
text: "\u5FC3"
|
||||
alternativeKeys: "\u5FC3p"
|
||||
}
|
||||
BackspaceKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
FillerKey {
|
||||
weight: 56
|
||||
}
|
||||
Key {
|
||||
text: "\u65E5"
|
||||
alternativeKeys: "\u65E5a"
|
||||
}
|
||||
Key {
|
||||
text: "\u5C38"
|
||||
alternativeKeys: "\u5C38s"
|
||||
}
|
||||
Key {
|
||||
text: "\u6728"
|
||||
alternativeKeys: "\u6728d"
|
||||
}
|
||||
Key {
|
||||
text: "\u706B"
|
||||
alternativeKeys: "\u706Bf"
|
||||
}
|
||||
Key {
|
||||
text: "\u571F"
|
||||
alternativeKeys: "\u571Fg"
|
||||
}
|
||||
Key {
|
||||
text: "\u7AF9"
|
||||
alternativeKeys: "\u7AF9h"
|
||||
}
|
||||
Key {
|
||||
text: "\u5341"
|
||||
alternativeKeys: "\u5341j"
|
||||
}
|
||||
Key {
|
||||
text: "\u5927"
|
||||
alternativeKeys: "\u5927k"
|
||||
}
|
||||
Key {
|
||||
text: "\u4E2D"
|
||||
alternativeKeys: "\u4E2Dl"
|
||||
}
|
||||
EnterKey {
|
||||
weight: 283
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 156
|
||||
ModeKey {
|
||||
id: simplifiedModeKey
|
||||
key: Qt.Key_Mode_switch
|
||||
displayText: "速成"
|
||||
Component.onCompleted: updateBinding()
|
||||
Connections {
|
||||
target: InputContext.inputEngine
|
||||
onInputMethodChanged: simplifiedModeKey.updateBinding()
|
||||
}
|
||||
function updateBinding() {
|
||||
if (InputContext.inputEngine.inputMethod && InputContext.inputEngine.inputMethod.hasOwnProperty("simplified")) {
|
||||
simplifiedModeKey.mode = InputContext.inputEngine.inputMethod.simplified
|
||||
InputContext.inputEngine.inputMethod.simplified = Qt.binding(function() { return simplifiedModeKey.mode })
|
||||
}
|
||||
}
|
||||
}
|
||||
Key {
|
||||
text: "\u91CD"
|
||||
alternativeKeys: "\u91CDz"
|
||||
}
|
||||
Key {
|
||||
text: "\u96E3"
|
||||
alternativeKeys: "\u96E3x"
|
||||
}
|
||||
Key {
|
||||
text: "\u91D1"
|
||||
alternativeKeys: "\u91D1c"
|
||||
}
|
||||
Key {
|
||||
text: "\u5973"
|
||||
alternativeKeys: "\u5973v"
|
||||
}
|
||||
Key {
|
||||
text: "\u6708"
|
||||
alternativeKeys: "\u6708b"
|
||||
}
|
||||
Key {
|
||||
text: "\u5F13"
|
||||
alternativeKeys: "\u5F13n"
|
||||
}
|
||||
Key {
|
||||
text: "\u4E00"
|
||||
alternativeKeys: "\u4E00m"
|
||||
}
|
||||
Key {
|
||||
key: Qt.Key_Comma
|
||||
text: "\uFF0C"
|
||||
alternativeKeys: "\uFF0C\uFF1B\u3001"
|
||||
}
|
||||
Key {
|
||||
key: Qt.Key_Period
|
||||
text: "\uFF0E"
|
||||
alternativeKeys: "\uFF0E\uFF1A\u3002"
|
||||
}
|
||||
ShiftKey {
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 154
|
||||
SymbolModeKey {
|
||||
weight: 217
|
||||
}
|
||||
ChangeLanguageKey {
|
||||
weight: 154
|
||||
}
|
||||
HandwritingModeKey {
|
||||
weight: 154
|
||||
}
|
||||
InputModeKey {
|
||||
visible: InputContext.inputEngine.inputModes.indexOf(InputEngine.InputMode.Zhuyin) !== -1
|
||||
}
|
||||
SpaceKey {
|
||||
weight: 864
|
||||
}
|
||||
Key {
|
||||
key: Qt.Key_Question
|
||||
text: "\uFF1F"
|
||||
alternativeKeys: "\uFF1F\uFF01"
|
||||
}
|
||||
Key {
|
||||
key: 0xE000
|
||||
text: ":-)"
|
||||
smallTextVisible: false
|
||||
alternativeKeys: [ ";-)", ":-)", ":-D", ":-(", "<3" ]
|
||||
}
|
||||
HideKeyboardKey {
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Component {
|
||||
id: pageZhuyin
|
||||
KeyboardLayout {
|
||||
smallTextVisible: true
|
||||
KeyboardRow {
|
||||
Layout.preferredHeight: 3
|
||||
KeyboardColumn {
|
||||
Layout.preferredWidth: bottomRow.width - hideKeyboardKey.width
|
||||
KeyboardRow {
|
||||
Key {
|
||||
text: "\u3105"
|
||||
alternativeKeys: "\u31051"
|
||||
}
|
||||
Key {
|
||||
text: "\u3109"
|
||||
alternativeKeys: "\u31092"
|
||||
}
|
||||
Key {
|
||||
text: "\u02C7"
|
||||
alternativeKeys: "\u02C73"
|
||||
}
|
||||
Key {
|
||||
text: "\u02CB"
|
||||
alternativeKeys: "4"
|
||||
displayText: "`"
|
||||
}
|
||||
Key {
|
||||
text: "\u3113"
|
||||
alternativeKeys: "\u31135"
|
||||
}
|
||||
Key {
|
||||
text: "\u02CA"
|
||||
alternativeKeys: "6"
|
||||
displayText: "´"
|
||||
}
|
||||
Key {
|
||||
text: "\u02D9"
|
||||
alternativeKeys: "\u02D97"
|
||||
}
|
||||
Key {
|
||||
text: "\u311A"
|
||||
alternativeKeys: "\u311A8"
|
||||
}
|
||||
Key {
|
||||
text: "\u311E"
|
||||
alternativeKeys: "\u311E9"
|
||||
}
|
||||
Key {
|
||||
text: "\u3122"
|
||||
alternativeKeys: "\u31220"
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
Key {
|
||||
text: "\u3106"
|
||||
alternativeKeys: "\u3106q"
|
||||
}
|
||||
Key {
|
||||
text: "\u310A"
|
||||
alternativeKeys: "\u310Aw"
|
||||
}
|
||||
Key {
|
||||
text: "\u310D"
|
||||
alternativeKeys: "\u310De"
|
||||
}
|
||||
Key {
|
||||
text: "\u3110"
|
||||
alternativeKeys: "\u3110r"
|
||||
}
|
||||
Key {
|
||||
text: "\u3114"
|
||||
alternativeKeys: "\u3114t"
|
||||
}
|
||||
Key {
|
||||
text: "\u3117"
|
||||
alternativeKeys: "\u3117y"
|
||||
}
|
||||
Key {
|
||||
text: "\u3127"
|
||||
alternativeKeys: "\u3127u"
|
||||
}
|
||||
Key {
|
||||
text: "\u311B"
|
||||
alternativeKeys: "\u311Bi"
|
||||
}
|
||||
Key {
|
||||
text: "\u311F"
|
||||
alternativeKeys: "\u311Fo"
|
||||
}
|
||||
Key {
|
||||
text: "\u3123"
|
||||
alternativeKeys: "\u3123p"
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
Key {
|
||||
text: "\u3107"
|
||||
alternativeKeys: "\u3107a"
|
||||
}
|
||||
Key {
|
||||
text: "\u310B"
|
||||
alternativeKeys: "\u310Bs"
|
||||
}
|
||||
Key {
|
||||
text: "\u310E"
|
||||
alternativeKeys: "\u310Ed"
|
||||
}
|
||||
Key {
|
||||
text: "\u3111"
|
||||
alternativeKeys: "\u3111f"
|
||||
}
|
||||
Key {
|
||||
text: "\u3115"
|
||||
alternativeKeys: "\u3115g"
|
||||
}
|
||||
Key {
|
||||
text: "\u3118"
|
||||
alternativeKeys: "\u3118h"
|
||||
}
|
||||
Key {
|
||||
text: "\u3128"
|
||||
alternativeKeys: "\u3128j"
|
||||
}
|
||||
Key {
|
||||
text: "\u311C"
|
||||
alternativeKeys: "\u311Ck"
|
||||
}
|
||||
Key {
|
||||
text: "\u3120"
|
||||
alternativeKeys: "\u3120l"
|
||||
}
|
||||
Key {
|
||||
text: "\u3124"
|
||||
alternativeKeys: "\u3124…"
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
Key {
|
||||
text: "\u3108"
|
||||
alternativeKeys: "\u3108z"
|
||||
}
|
||||
Key {
|
||||
text: "\u310C"
|
||||
alternativeKeys: "\u310Cx"
|
||||
}
|
||||
Key {
|
||||
text: "\u310F"
|
||||
alternativeKeys: "\u310Fc"
|
||||
}
|
||||
Key {
|
||||
text: "\u3112"
|
||||
alternativeKeys: "\u3112v"
|
||||
}
|
||||
Key {
|
||||
text: "\u3116"
|
||||
alternativeKeys: "\u3116b"
|
||||
}
|
||||
Key {
|
||||
text: "\u3119"
|
||||
alternativeKeys: "\u3119n"
|
||||
}
|
||||
Key {
|
||||
text: "\u3129"
|
||||
alternativeKeys: "\u3129m"
|
||||
}
|
||||
Key {
|
||||
text: "\u311D"
|
||||
alternativeKeys: "、\u311D,"
|
||||
}
|
||||
Key {
|
||||
text: "\u3121"
|
||||
alternativeKeys: "。\u3121."
|
||||
}
|
||||
Key {
|
||||
text: "\u3125"
|
||||
alternativeKeys: ";\u3125:"
|
||||
}
|
||||
}
|
||||
}
|
||||
KeyboardColumn {
|
||||
Layout.preferredWidth: hideKeyboardKey.width
|
||||
KeyboardRow {
|
||||
BackspaceKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
EnterKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
ShiftKey { }
|
||||
}
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
id: bottomRow
|
||||
Layout.preferredHeight: 1
|
||||
keyWeight: 154
|
||||
SymbolModeKey {
|
||||
weight: 217
|
||||
}
|
||||
ChangeLanguageKey {
|
||||
weight: 154
|
||||
}
|
||||
HandwritingModeKey {
|
||||
weight: 154
|
||||
}
|
||||
InputModeKey {
|
||||
visible: InputContext.inputEngine.inputModes.indexOf(InputEngine.InputMode.Cangjie) !== -1
|
||||
}
|
||||
SpaceKey {
|
||||
weight: 864
|
||||
}
|
||||
Key {
|
||||
text: "\u3126"
|
||||
}
|
||||
Key {
|
||||
key: Qt.Key_Question
|
||||
text: "\uFF1F"
|
||||
alternativeKeys: "\uFF1F\uFF01"
|
||||
}
|
||||
Key {
|
||||
key: 0xE000
|
||||
text: ":-)"
|
||||
smallTextVisible: false
|
||||
alternativeKeys: [ ";-)", ":-)", ":-D", ":-(", "<3" ]
|
||||
}
|
||||
HideKeyboardKey {
|
||||
id: hideKeyboardKey
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+294
@@ -0,0 +1,294 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2016 The Qt Company Ltd.
|
||||
** Contact: https://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:GPL$
|
||||
** 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 General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3 or (at your option) 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.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-3.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.0
|
||||
import QtQuick.Layouts 1.0
|
||||
import QtQuick.VirtualKeyboard 2.1
|
||||
|
||||
KeyboardLayoutLoader {
|
||||
function createInputMethod() {
|
||||
return Qt.createQmlObject('import QtQuick 2.0; import QtQuick.VirtualKeyboard.Plugins 2.1; TCInputMethod {}', parent, "tcInputMethod")
|
||||
}
|
||||
sharedLayouts: ['main']
|
||||
property int page
|
||||
readonly property int numPages: 3
|
||||
property var keysPage1: [
|
||||
"1234567890",
|
||||
"@#$%^&*()",
|
||||
"“”、=:;!?~"
|
||||
]
|
||||
property var keysPage2: [
|
||||
"-+/\\|[]{}·",
|
||||
"<>,.:;!?~",
|
||||
"/\"'_§¥€£¢"
|
||||
]
|
||||
property var keysPage3: [
|
||||
"()〔〕〈〉《》【】",
|
||||
"→←↑↓↔■□●○",
|
||||
"\『』「」★☆◆◇"
|
||||
]
|
||||
sourceComponent: {
|
||||
switch (page) {
|
||||
case 2: return page3
|
||||
case 1: return page2
|
||||
default: return page1
|
||||
}
|
||||
}
|
||||
Component {
|
||||
id: page1
|
||||
KeyboardLayout {
|
||||
keyWeight: 160
|
||||
KeyboardRow {
|
||||
Repeater {
|
||||
model: keysPage1[0].length
|
||||
Key {
|
||||
key: keysPage1[0][index].charCodeAt(0)
|
||||
text: keysPage1[0][index]
|
||||
}
|
||||
}
|
||||
BackspaceKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
FillerKey {
|
||||
weight: 56
|
||||
}
|
||||
Repeater {
|
||||
model: keysPage1[1].length
|
||||
Key {
|
||||
key: keysPage1[1][index].charCodeAt(0)
|
||||
text: keysPage1[1][index]
|
||||
}
|
||||
}
|
||||
EnterKey {
|
||||
weight: 283
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 156
|
||||
Key {
|
||||
displayText: (page + 1) + "/" + numPages
|
||||
functionKey: true
|
||||
onClicked: page = (page + 1) % numPages
|
||||
}
|
||||
Repeater {
|
||||
model: keysPage1[2].length
|
||||
Key {
|
||||
key: keysPage1[2][index].charCodeAt(0)
|
||||
text: keysPage1[2][index]
|
||||
}
|
||||
}
|
||||
Key {
|
||||
weight: 204
|
||||
displayText: (page + 1) + "/" + numPages
|
||||
functionKey: true
|
||||
onClicked: page = (page + 1) % numPages
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 154
|
||||
SymbolModeKey {
|
||||
weight: 217
|
||||
displayText: "ABC"
|
||||
}
|
||||
ChangeLanguageKey {
|
||||
weight: 154
|
||||
}
|
||||
SpaceKey {
|
||||
weight: 864
|
||||
}
|
||||
Key {
|
||||
key: 0x2014
|
||||
text: "—"
|
||||
}
|
||||
Key {
|
||||
key: 0xE000
|
||||
text: ":-)"
|
||||
alternativeKeys: [ ";-)", ":-)", ":-D", ":-(", "<3" ]
|
||||
}
|
||||
HideKeyboardKey {
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Component {
|
||||
id: page2
|
||||
KeyboardLayout {
|
||||
keyWeight: 160
|
||||
KeyboardRow {
|
||||
Repeater {
|
||||
model: keysPage2[0].length
|
||||
Key {
|
||||
key: keysPage2[0][index].charCodeAt(0)
|
||||
text: keysPage2[0][index]
|
||||
}
|
||||
}
|
||||
BackspaceKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
FillerKey {
|
||||
weight: 56
|
||||
}
|
||||
Repeater {
|
||||
model: keysPage2[1].length
|
||||
Key {
|
||||
key: keysPage2[1][index].charCodeAt(0)
|
||||
text: keysPage2[1][index]
|
||||
}
|
||||
}
|
||||
EnterKey {
|
||||
weight: 283
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 156
|
||||
Key {
|
||||
displayText: (page + 1) + "/" + numPages
|
||||
functionKey: true
|
||||
onClicked: page = (page + 1) % numPages
|
||||
}
|
||||
Repeater {
|
||||
model: keysPage2[2].length
|
||||
Key {
|
||||
key: keysPage2[2][index].charCodeAt(0)
|
||||
text: keysPage2[2][index]
|
||||
}
|
||||
}
|
||||
Key {
|
||||
weight: 204
|
||||
displayText: (page + 1) + "/" + numPages
|
||||
functionKey: true
|
||||
onClicked: page = (page + 1) % numPages
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 154
|
||||
SymbolModeKey {
|
||||
weight: 217
|
||||
displayText: "ABC"
|
||||
}
|
||||
ChangeLanguageKey {
|
||||
weight: 154
|
||||
}
|
||||
SpaceKey {
|
||||
weight: 864
|
||||
}
|
||||
Key {
|
||||
key: 0x3002
|
||||
text: "。"
|
||||
}
|
||||
Key {
|
||||
key: 0xE000
|
||||
text: ":-)"
|
||||
alternativeKeys: [ ";-)", ":-)", ":-D", ":-(", "<3" ]
|
||||
}
|
||||
HideKeyboardKey {
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Component {
|
||||
id: page3
|
||||
KeyboardLayout {
|
||||
keyWeight: 160
|
||||
KeyboardRow {
|
||||
Repeater {
|
||||
model: keysPage3[0].length
|
||||
Key {
|
||||
key: keysPage3[0][index].charCodeAt(0)
|
||||
text: keysPage3[0][index]
|
||||
}
|
||||
}
|
||||
BackspaceKey {}
|
||||
}
|
||||
KeyboardRow {
|
||||
FillerKey {
|
||||
weight: 56
|
||||
}
|
||||
Repeater {
|
||||
model: keysPage3[1].length
|
||||
Key {
|
||||
key: keysPage3[1][index].charCodeAt(0)
|
||||
text: keysPage3[1][index]
|
||||
}
|
||||
}
|
||||
EnterKey {
|
||||
weight: 283
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 156
|
||||
Key {
|
||||
displayText: (page + 1) + "/" + numPages
|
||||
functionKey: true
|
||||
onClicked: page = (page + 1) % numPages
|
||||
}
|
||||
Repeater {
|
||||
model: keysPage3[2].length
|
||||
Key {
|
||||
key: keysPage3[2][index].charCodeAt(0)
|
||||
text: keysPage3[2][index]
|
||||
}
|
||||
}
|
||||
Key {
|
||||
weight: 204
|
||||
displayText: (page + 1) + "/" + numPages
|
||||
functionKey: true
|
||||
onClicked: page = (page + 1) % numPages
|
||||
}
|
||||
}
|
||||
KeyboardRow {
|
||||
keyWeight: 154
|
||||
SymbolModeKey {
|
||||
weight: 217
|
||||
displayText: "ABC"
|
||||
}
|
||||
ChangeLanguageKey {
|
||||
weight: 154
|
||||
}
|
||||
SpaceKey {
|
||||
weight: 864
|
||||
}
|
||||
Key {
|
||||
key: 0x2026
|
||||
text: "…"
|
||||
}
|
||||
Key {
|
||||
key: 0xE000
|
||||
text: ":-)"
|
||||
alternativeKeys: [ ";-)", ":-)", ":-D", ":-(", "<3" ]
|
||||
}
|
||||
HideKeyboardKey {
|
||||
weight: 204
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user