aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQml/qquickitem_grabToImage.qml
blob: 90235f078ba4bdce9e4428ee8e52008c78bfe71a (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0

Item {
    id: root
    width: 600
    height: 600

    Rectangle {
        id: blue
        objectName: "blueRectangle"
        width: 200
        height: 200
        anchors.top: root.top
        anchors.horizontalCenter: root.horizontalCenter
        color: "blue"
    }

    Text {
        text: qsTr("Original blue rectangle")
        anchors.left: blue.right
        anchors.verticalCenter: blue.verticalCenter
    }

    Image {
        id: imageContainer
        objectName: "imageContainer"
        width: 200
        height: 200
        anchors.bottom: root.bottom
        anchors.horizontalCenter: root.horizontalCenter
    }

    Text {
        text: qsTr("Image with the source URL set to the result of calling QQuickItem::grabToImage on the rectangle. If you see a second blue rectangle, that means it works.")
        anchors.left: imageContainer.right
        anchors.verticalCenter: imageContainer.verticalCenter
        wrapMode: Text.WrapAtWordBoundaryOrAnywhere
        width: 200
    }

}