summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/tutorial1.qml
blob: 04cd15518e45fe70c49aacbb7fbfb56d750bc5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//![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!"
        y: 30
        anchors.horizontalCenter: page.horizontalCenter
        font.pointSize: 24; font.bold: true
    }
//![2]
}
//![0]