summaryrefslogtreecommitdiffstats
path: root/examples/declarative/plugins/plugins.qml
blob: df6b5d4b01b9acb56ee08f0887be219295ac9ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Qt 4.6
import com.nokia.TimeExample 1.0

Item {

    Time { id: time }

    width: 200
    height: 100

    Rectangle { 
        anchors.fill: parent
        color: "blue"
    }

    Text {
        text: time.hour + ":" + (time.minute < 10 ? "0" : "") + time.minute
        anchors.centerIn: parent
        color: "white"
        font.pixelSize: 42
        font.bold: true
    }
}