aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/borderimage/borderimage-tiled.qml
blob: 525824d3641607f2089de65902d05ac67b47a4e2 (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 BSD-3-Clause

import QtQuick 2.0

Rectangle {
    id: page
    color: "white"
    width: 180; height: 180

//! [tiled border image]
BorderImage {
    width: 180; height: 180
    border { left: 30; top: 30; right: 30; bottom: 30 }
    horizontalTileMode: BorderImage.Repeat
    verticalTileMode: BorderImage.Repeat
    source: "pics/borderframe.png"
}
//! [tiled border image]

    Rectangle {
        x: 30; y: 0
        width: 1; height: 180
        color: "gray"
    }

    Rectangle {
        x: 150; y: 0
        width: 1; height: 180
        color: "gray"
    }

    Rectangle {
        x: 0; y: 30
        width: 180; height: 1
        color: "gray"
    }

    Rectangle {
        x: 0; y: 150
        width: 180; height: 1
        color: "gray"
    }
}