summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/tutorial1.qml
blob: 5e27b45ebcf90a89fb199a367ed1af9ec74ad12e (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.7
//![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]