summaryrefslogtreecommitdiffstats
path: root/examples/declarative/images/images.qml
blob: e48ad5083b09e970b195e809cef6b43ba2cf5f1b (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import Qt 4.7

Rectangle {
    color: "white"
    width: grid.width + 50
    height: grid.height + 50

    Grid {
        id: grid
        x: 25; y: 25
        columns: 3

        Image {
            source: "content/lemonade.jpg"
        }

        Image {
            sourceSize.width: 50
            sourceSize.height: 50
            source: "content/lemonade.jpg"
        }

        Image {
            sourceSize.width: 50
            sourceSize.height: 50
            smooth: true
            source: "content/lemonade.jpg"
        }

        Image {
            scale: 1/3
            source: "content/lemonade.jpg"
        }

        Image {
            scale: 1/3
            sourceSize.width: 50
            sourceSize.height: 50
            source: "content/lemonade.jpg"
        }

        Image {
            scale: 1/3
            sourceSize.width: 50
            sourceSize.height: 50
            smooth: true
            source: "content/lemonade.jpg"
        }

        Image {
            width: 50; height: 50
            transform: Translate { x: 50 }
            source: "content/lemonade.jpg"
        }

        Image {
            width: 50; height: 50
            transform: Translate { x: 50 }
            sourceSize.width: 50
            sourceSize.height: 50
            source: "content/lemonade.jpg"
        }

        Image {
            width: 50; height: 50
            transform: Translate { x: 50 }
            sourceSize: "50x50" // syntactic sugar
            smooth: true
            source: "content/lemonade.jpg"
        }
    }
}