aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle1.qml
blob: 8adc24bbd0640eafa1502e7a6daf7f3d092f6cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.1

ButtonStyle {
    background: BorderImage {
        source: control.pressed ? "../../images/button-pressed.png" : "../../images/button.png"
        border.left: 4 ; border.right: 4 ; border.top: 4 ; border.bottom: 4
    }
}