summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/qml-intro/hello-world4.qml
blob: c97334e65336f649a2439521c2b4f0ba1af114b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Qt 4.7

Rectangle {
    id: myRectangle
    width: 500
    height: 400

    Text {
        text: "<h1>Hello world again</h1>"
        color: "#002288"
        x: 100; y: 100
    }

//! [added an image]
    Image {
        source: "images/qt-logo.png"
    }
//! [added an image]

    color: "lightgray"
}