summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/t2/Cell.qml
blob: b3c52b775d002a910187e43ed257325e52c52e9d (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 }
    }
}