aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts/hr_HR/handwriting.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/hr_HR/handwriting.qml')
-rw-r--r--src/layouts/hr_HR/handwriting.qml56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/layouts/hr_HR/handwriting.qml b/src/layouts/hr_HR/handwriting.qml
deleted file mode 100644
index eaae7571..00000000
--- a/src/layouts/hr_HR/handwriting.qml
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
-
-import QtQuick
-import QtQuick.Layouts
-import QtQuick.VirtualKeyboard
-import QtQuick.VirtualKeyboard.Components
-
-KeyboardLayout {
- function createInputMethod() {
- return Qt.createQmlObject('import QtQuick; import QtQuick.VirtualKeyboard.Plugins; HandwritingInputMethod {}', parent)
- }
- sharedLayouts: ['symbols']
- inputMode: InputEngine.InputMode.Latin
-
- KeyboardRow {
- Layout.preferredHeight: 3
- TraceInputKey {
- objectName: "hwrInputArea"
- patternRecognitionMode: InputEngine.PatternRecognitionMode.Handwriting
- }
- }
- KeyboardRow {
- id: bottomRow
- Layout.preferredHeight: 1
- keyWeight: 160
- ShiftKey {
- weight: 240
- }
- InputModeKey {
- }
- Key {
- key: Qt.Key_Comma
- text: ","
- smallText: "\u2699"
- smallTextVisible: true
- highlighted: true
- }
- SpaceKey {
- weight: 10 * 160 - 4 * 160 - 2 * 240
- }
- Key {
- key: Qt.Key_Period
- text: "."
- alternativeKeys: "<>()/\\\"'=+-_:;.?!"
- smallText: "!?"
- smallTextVisible: true
- highlighted: true
- }
- BackspaceKey {
- }
- EnterKey {
- weight: 240
- }
- }
-}