aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts/es_ES/handwriting.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/es_ES/handwriting.qml')
-rw-r--r--src/layouts/es_ES/handwriting.qml74
1 files changed, 36 insertions, 38 deletions
diff --git a/src/layouts/es_ES/handwriting.qml b/src/layouts/es_ES/handwriting.qml
index b2914924..038933b7 100644
--- a/src/layouts/es_ES/handwriting.qml
+++ b/src/layouts/es_ES/handwriting.qml
@@ -11,46 +11,44 @@ KeyboardLayout {
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
+ KeyboardColumn {
+ Layout.preferredWidth: 1
+ InputModeKey {
+ }
+ ChangeLanguageKey {
+ visible: true
+ }
+ ShiftKey {
+ }
+ HandwritingModeKey {
+ }
+ }
+ KeyboardColumn {
+ Layout.preferredWidth: 8
+ TraceInputKey {
+ objectName: "hwrInputArea"
+ patternRecognitionMode: InputEngine.PatternRecognitionMode.Handwriting
+ }
+ }
+ KeyboardColumn {
+ Layout.preferredWidth: 1
+ Key {
+ key: Qt.Key_Period
+ text: "."
+ alternativeKeys: "<>()/\\\"'=+-_:;,.¿?¡! "
+ smallText: "!?"
+ smallTextVisible: true
+ highlighted: true
+ }
+ HideKeyboardKey {
+ visible: true
+ }
+ BackspaceKey {
+ }
+ EnterKey {
+ }
}
}
}