summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/tutorial1.qml
blob: 93d3c34b2a72fff5498b6014fc8dc435af4a8dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//![0]
//![3]
import Qt 4.6
//![3]

//![1]
Rectangle {
    id: page
    width: 500; height: 200
    color: "lightgray"
//![1]

//![2]
    Text {
        id: helloText
        text: "Hello world!"
        font.pointSize: 24; font.bold: true
        y: 30; anchors.horizontalCenter: page.horizontalCenter
    }
//![2]
}
//![0]