summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/t2/Cell.qml
blob: bfd835dbe3c3fae348a7f38e02c56d973fb29261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Qt 4.6

Item {
    property var color

    id: cellContainer
    width: 40
    height: 25

    Rectangle {
        anchors.fill: parent
        color: cellContainer.color
    }
    MouseRegion {
        anchors.fill: parent
        onClicked: { helloText.color = cellContainer.color }
    }
}