aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle2.qml
blob: da604ba574f65f4ec347458fd941815f1ef1086d (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
// 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: Rectangle {
        implicitHeight: 22
        implicitWidth: columnWidth
        color: control.pressed ? "darkGray" : control.activeFocus ? "#cdd" : "#ccc"
        antialiasing: true
        border.color: "gray"
        radius: height/2
        Rectangle {
            anchors.fill: parent
            anchors.margins: 1
            color: "transparent"
            antialiasing: true
            visible: !control.pressed
            border.color: "#aaffffff"
            radius: height/2
        }
    }
}