aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgimage/data/tiling.qml
blob: 986b7708a2ea512496c58ca92bfdf16e7ae66663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Rectangle {
    width: 800; height: 600

    Image {
        objectName: "vTiling"; height: 550; width: 200
        source: "green.png"; fillMode: Image.TileVertically
    }

    Image {
        objectName: "hTiling"; x: 225; height: 250; width: 550
        source: "green.png"; fillMode: Image.TileHorizontally
    }
}