45 lines
1.3 KiB
QML
45 lines
1.3 KiB
QML
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import FluentUI.Controls
|
|
import FluentUI.impl
|
|
import QtQuick.Templates as T
|
|
|
|
T.TabButton {
|
|
id: control
|
|
|
|
implicitWidth: implicitBackgroundWidth
|
|
// Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
// implicitContentWidth + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
implicitContentHeight + topPadding + bottomPadding)
|
|
|
|
padding: 6
|
|
spacing: 3
|
|
|
|
icon.width: 24
|
|
icon.height: 24
|
|
icon.color: checked ? control.palette.windowText : control.palette.brightText
|
|
|
|
contentItem: IconLabel {
|
|
spacing: control.spacing
|
|
mirrored: control.mirrored
|
|
display: control.display
|
|
|
|
icon: control.icon
|
|
text: control.text
|
|
font: control.font
|
|
color: control.checked ? "#1B806A" : "#ffffff"
|
|
}
|
|
|
|
background: Rectangle {
|
|
anchors.bottom: parent.bottom
|
|
implicitHeight: 2
|
|
color: control.checked ? "#1B806A" : "transparent"
|
|
}
|
|
}
|
|
|