aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/fx/subitems/SubItem.qml
blob: c5558f4b098d999fae7a561d503c8e681284658e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

import QtQuick 2.0

Rectangle {
    property string text

    width : toprect.width
    height : 20
    color : "blue"
    Text {
        width : 100
        color : "white"
        text : parent.text
    }
}