aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/virtualkeyboardattached/data/tst_virtualkeyboardattached.qml
blob: b158f6034bd6752879029372407e94be1632fbd2 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtTest
import QtQuick
import QtQuick.Window
import QtQuick.VirtualKeyboard

Rectangle {
    id: container
    width: 800
    height: 640
    color: "blue"

    TestCase {
        id: testcase
        name: "tst_virtualkeyboardattached"
        when: windowShown

        property var inputPanel: null

        function initTestCase() {
            var inputPanelComp = Qt.createComponent("inputpanel/inputpanel.qml")
            compare(inputPanelComp.status, Component.Ready, "Failed to create component: "+inputPanelComp.errorString())
            inputPanel = inputPanelComp.createObject(container)
        }

        function cleanupTestCase() {
            if (inputPanel)
                inputPanel.destroy()
        }

        function prepareTest() {
            var window = container.Window.window
            verify(window)
            window.raise()
            window.requestActivate()
            tryCompare(window, "active", true)
        }

        Component {
            id: textInputWithVirtualKeyboardAttachedComp
            TextEdit {
                anchors.fill: parent
                visible: true
                focus: true
                color: "white"
                VirtualKeyboard.extraDictionaries: ["example"]
            }
        }

        function test_virtualKeyboardAttached() {
            prepareTest()

            container.forceActiveFocus()
            waitForRendering(container)

            let textInput = textInputWithVirtualKeyboardAttachedComp.createObject(container)

            verify(textInput !== null)

            textInput.forceActiveFocus()
            waitForRendering(inputPanel)

            verify(inputPanel.visible === true)
            verify(textInput.activeFocus === true)
        }

        Component {
            id: textInputWithEnterKeyActionAttachedComp
            TextEdit {
                anchors.fill: parent
                visible: true
                focus: true
                color: "white"
                EnterKeyAction.actionId: EnterKeyAction.Done
                EnterKeyAction.label: "hello"
                EnterKeyAction.enabled: true
            }
        }

        function test_enterKeyActionAttached() {
            prepareTest()

            container.forceActiveFocus()
            waitForRendering(container)

            let textInput = textInputWithEnterKeyActionAttachedComp.createObject(container)

            verify(textInput !== null)

            textInput.forceActiveFocus()
            waitForRendering(inputPanel)

            verify(inputPanel.visible === true)
            verify(textInput.activeFocus === true)
        }
    }
}