aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/text/Button.qml
blob: da14a0cde70677c7709a9c4345ff58b22c294bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0

MouseArea {
    property string buttontext: ""
    width: parent.width / 4
    height: parent.height - 4
    Rectangle {
        anchors.fill: parent
        radius: 5
        color: "lightgray"
        border.color: "black"
    }
    Text {
        anchors.centerIn: parent
        text: buttontext
        color: "black"
    }
}