summaryrefslogtreecommitdiffstats
path: root/example_output/root.qml
blob: d90d8395d9bc8a95187b3355b69769e656a1ef47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import Qt 4.7
Item {
    width:400
    height:255
    Image {
        id: background
        source: "images/background.png"
        x: -2
        y: 0
        opacity: 1
    }
    Image {
        id: new_layer
        source: "images/new_layer.png"
        x: 63
        y: 161
        opacity: 1
    }
    Image {
        id: new_layer_copy_1
        source: "images/new_layer_copy_1.png"
        x: 128
        y: 130
        opacity: 0.63921568627451
    }
    Image {
        id: button
        source: "images/button.png"
        x: 165
        y: 89
        opacity: 1
    }
    Text {
        id: button__1
        text: "Button"
        font.pixelSize: 30
        font.family: "Tahoma"
        color: "#ffffff"
        smooth: true
        x: 216
        y: 108.5
        opacity: 1
    }
    Image {
        id: textcircle
        source: "images/textcircle.png"
        x: 296
        y: 150
        opacity: 1
    }
    Image {
        id: banner
        source: "images/banner.png"
        x: 0
        y: 36
        opacity: 1
    }
}