summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/snippets/qtbinding/stopwatch/main.qml
blob: 2efa542d78dba5ac3b4345464d2fbaed9850ac61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//![0]
import Qt 4.7

Rectangle {
    width: 300
    height: 300

    MouseArea {
        anchors.fill: parent
        onClicked: {
            if (stopwatch.isRunning())
                stopwatch.stop()
            else
                stopwatch.start();
        }
    }
}
//![0]