summaryrefslogtreecommitdiffstats
path: root/examples/declarative/loader/Button.qml
blob: 3efedc48453c9139f2280bac4b9e950d92c754b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Rect {
    id: Container

    property var text
    signal clicked

    height: Text.height + 10
    width: Text.width + 20
    pen.width: 1
    radius: 4
    color: "grey"
    MouseRegion { anchors.fill: parent; onClicked: Container.clicked() }
    Text { id: Text; anchors.centeredIn:parent; font.size: 10; text: parent.text }
}