summaryrefslogtreecommitdiff
path: root/raveos-sddm-theme/sddm-rave-theme/Components/VirtualKeyboard.qml
blob: a0682e09abb95d9d5709dd27cb74f1f637892963 (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 6.5
import QtQuick.VirtualKeyboard.Settings 6.5

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
    }
}