summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/t3/Cell.qml
blob: 6feb7a958fbba86c2e10a0a90dd658100e51750a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 }
    }
}