aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qml/testfiles_quick2/images.qml
blob: ed383c73986d6c2247f8e023acb4d52e721f648a (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

import QtQuick 2.0

Rectangle {
    width: 640
    height: 480

    Image {
        id: image1
        x: 20
        y: 18
        source: "images/qtcreator.png"
    }

    Image {
        id: image2
        x: 327
        y: 18
        source: "images/qtcreator.jpg"
    }

    Image {
        id: image3
        x: 20
        y: 288
        source: "images/qtcreator.ico"
    }
}