aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts/ko_KR/handwriting.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/ko_KR/handwriting.qml')
-rw-r--r--src/layouts/ko_KR/handwriting.qml75
1 files changed, 37 insertions, 38 deletions
diff --git a/src/layouts/ko_KR/handwriting.qml b/src/layouts/ko_KR/handwriting.qml
index ff51aa00..5502517d 100644
--- a/src/layouts/ko_KR/handwriting.qml
+++ b/src/layouts/ko_KR/handwriting.qml
@@ -29,46 +29,45 @@ KeyboardLayout {
}
KeyboardRow {
- Layout.preferredHeight: 3
- TraceInputKey {
- objectName: "hwrInputArea"
- patternRecognitionMode: InputEngine.PatternRecognitionMode.Handwriting
- horizontalRulers:
- InputContext.inputEngine.inputMode !== InputEngine.InputMode.KoreanHandwriting ? [] :
- [Math.round(boundingBox.height / 4), Math.round(boundingBox.height / 4) * 2, Math.round(boundingBox.height / 4) * 3]
+ KeyboardColumn {
+ Layout.preferredWidth: 1
+ InputModeKey {
+ }
+ ChangeLanguageKey {
+ visible: true
+ }
+ ShiftKey {
+ }
+ HandwritingModeKey {
+ }
}
- }
- 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 {
+ KeyboardColumn {
+ Layout.preferredWidth: 8
+ TraceInputKey {
+ objectName: "hwrInputArea"
+ patternRecognitionMode: InputEngine.PatternRecognitionMode.Handwriting
+ horizontalRulers:
+ InputContext.inputEngine.inputMode !== InputEngine.InputMode.KoreanHandwriting ? [] :
+ [Math.round(boundingBox.height / 4), Math.round(boundingBox.height / 4) * 2, Math.round(boundingBox.height / 4) * 3]
+ }
}
- EnterKey {
- weight: 240
+ KeyboardColumn {
+ Layout.preferredWidth: 1
+ Key {
+ key: Qt.Key_Period
+ text: "."
+ alternativeKeys: "<>()/\\\"'=+-_:;,.?! "
+ smallText: "!?"
+ smallTextVisible: true
+ highlighted: true
+ }
+ HideKeyboardKey {
+ visible: true
+ }
+ BackspaceKey {
+ }
+ EnterKey {
+ }
}
}
}