summaryrefslogtreecommitdiffstats
path: root/examples/undo/quickundo/Button.qml
blob: 6b1d9ec6c3c4609593f355e96ac1524b2451f936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

Rectangle {
    id: root
    property alias text: label.text
    signal clicked()


    width: 50
    height: 50
    Text {
        id: label
        anchors.centerIn: parent
    }

    MouseArea {
        anchors.fill: parent
        onClicked: root.clicked()
    }
}