First working Version
This commit is contained in:
commit
a08e6d68d7
18 changed files with 2166 additions and 0 deletions
26
components/VirtualKeyboard.qml
Normal file
26
components/VirtualKeyboard.qml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import QtQuick 2.15
|
||||
import QtQuick.VirtualKeyboard 2.15
|
||||
import QtQuick.VirtualKeyboard.Settings 2.15
|
||||
|
||||
Item {
|
||||
id: keyboard_container
|
||||
height: input_panel.active ? input_panel.height : 0
|
||||
|
||||
InputPanel {
|
||||
id: input_panel
|
||||
active: root.activateVirtualKeyboard && (Qt.inputMethod.visible || config.boolValue("forceKeyboardVisible"))
|
||||
visible: active
|
||||
|
||||
z: 1
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
|
||||
Binding {
|
||||
target: VirtualKeyboardSettings
|
||||
property: "wordCandidateList.autoHideDelay"
|
||||
value: 1000
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue