blob: b7b7a0fbcd7d454c83fe3cde2b9b0a1a88038005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import QtQuick 2.15
import QtQuick.VirtualKeyboard
import QtQuick.VirtualKeyboard.Settings
InputPanel {
id: virtualKeyboard
property bool activated: false
visible: true
Component.onCompleted: {
VirtualKeyboardSettings.activeLocales = ["en_US", "hu_HU"]
}
MouseArea {
anchors.fill: parent
z: -1
onClicked: {} // Consume clicks so they don't fall through to the background and steal focus
}
}
|