aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml
blob: 8ed05fc8d29bd6e97fc01f4acf2927dc98e6c6ee (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
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Basic

Item {
    id: root
    objectName: "root"
    width: 320
    height: 240

    FocusScope {
        id: spinboxFocusScope
        objectName: "spinboxFocusScope"
        width: spinbox.width
        height: spinbox.height
        SpinBox {
            id: spinbox
            objectName: "spinbox"
            editable: true
            contentItem: TextField {
                objectName: "spinboxContentItem"
            }
        }
    }
}