aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/shadowinput/data/inputpanel/inputpanel.qml
blob: 9879c40f736d0d0a3db8761711312ad0acb625cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtTest
import QtQuick
import QtQuick.VirtualKeyboard
import QtQuick.VirtualKeyboard.Settings

InputPanel {
    id: inputPanel
    z: 99
    anchors.left: parent.left
    anchors.right: parent.right
    anchors.bottom: parent.bottom
    visible: active
    property bool fullScreenMode: true
    property bool shadowInputVisible: keyboard.shadowInputControl.visible
    property string shadowInputText: keyboard.shadowInputControl.textEdit.text
    Binding {
        target: VirtualKeyboardSettings
        property: "fullScreenMode"
        value: inputPanel.fullScreenMode
    }
}