summaryrefslogtreecommitdiffstats
path: root/examples/declarative/border-image/borders.qml
blob: a4a329b425f981bcc285984390ed1dd508c6f550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Qt 4.6

Rect {
    id: Page
    color: "white"
    width: 520; height: 280

    Image {
        x: 20; y: 20; width: 230; height: 240
        smooth: true
        source: "colors-stretch.sci"
    }
    Image {
        x: 270; y: 20; width: 230; height: 240
        smooth: true
        source: "colors-round.sci"
    }
}