2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2018-08-21 10:44:12 +00:00
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
|
|
|
|
Rectangle {
|
2019-03-22 10:41:15 +00:00
|
|
|
width: 110
|
2018-08-21 10:44:12 +00:00
|
|
|
height: 40
|
|
|
|
border.width: 1
|
|
|
|
color: "lightgreen"
|
|
|
|
|
|
|
|
property string text
|
|
|
|
signal clicked
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: parent.text
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: parent.clicked()
|
|
|
|
}
|
|
|
|
}
|