Initial commit
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
// Copyright (C) 2024 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
|
||||
// Qt-Security score:significant reason:default
|
||||
|
||||
import QtQuick
|
||||
import QtQuick.Templates as T
|
||||
import QtQuick.Controls.impl
|
||||
import QtQuick.Controls.FluentWinUI3.impl as Impl
|
||||
|
||||
T.SwitchDelegate {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 10
|
||||
|
||||
topPadding: __config.topPadding || 0 + verticalOffset
|
||||
leftPadding: __config.leftPadding || 0 + __horizontalOffset
|
||||
rightPadding: __config.rightPadding || 0 + __horizontalOffset
|
||||
bottomPadding: __config.bottomPadding || 0 + __verticalOffset
|
||||
|
||||
icon.width: 16
|
||||
icon.height: 16
|
||||
|
||||
readonly property int __horizontalOffset: 4
|
||||
readonly property int __verticalOffset: 2
|
||||
|
||||
readonly property string __currentState: [
|
||||
!control.enabled && "disabled",
|
||||
control.highlighted && "highlighted",
|
||||
control.enabled && !control.down && control.hovered && "hovered",
|
||||
control.down && "pressed"
|
||||
].filter(Boolean).join("_") || "normal"
|
||||
readonly property var __config: Config.controls.itemdelegate[__currentState] || {}
|
||||
|
||||
readonly property Item __focusFrameTarget: control
|
||||
|
||||
indicator: Impl.SwitchIndicator {
|
||||
readonly property string currentState: [
|
||||
control.checked && "checked",
|
||||
!control.enabled && control.checked && "disabled",
|
||||
control.enabled && control.checked && !control.down && control.hovered && "hovered",
|
||||
control.down && "pressed"
|
||||
].filter(Boolean).join("_") || "normal"
|
||||
readonly property var config: Config.controls.switch_[currentState] || {}
|
||||
|
||||
x: control.text ? (control.mirrored ? control.leftPadding : control.width - width - control.rightPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
implicitWidth: config.handle_background.width
|
||||
implicitHeight: config.handle_background.height
|
||||
control: control
|
||||
}
|
||||
|
||||
contentItem: IconLabel {
|
||||
leftPadding: !control.mirrored ? 0 : control.indicator.width + control.spacing
|
||||
rightPadding: control.mirrored ? 0 : control.indicator.width + control.spacing
|
||||
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft
|
||||
icon: control.icon
|
||||
defaultIconColor: control.down ? pressedText : control.palette.buttonText
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: defaultIconColor
|
||||
|
||||
readonly property color pressedText: Application.styleHints.colorScheme === Qt.Light
|
||||
? Qt.rgba(control.palette.buttonText.r, control.palette.buttonText.g, control.palette.buttonText.b, 0.62)
|
||||
: Qt.rgba(control.palette.buttonText.r, control.palette.buttonText.g, control.palette.buttonText.b, 0.7725)
|
||||
}
|
||||
|
||||
background: Item {
|
||||
implicitWidth: 160
|
||||
implicitHeight: 40
|
||||
|
||||
property Item backgroundImage: Impl.StyleImage {
|
||||
parent: control.background
|
||||
imageConfig: control.__config.background
|
||||
implicitWidth: parent.width - control.__horizontalOffset * 2
|
||||
implicitHeight: parent.height - control.__verticalOffset * 2
|
||||
x: control.__horizontalOffset
|
||||
y: control.__verticalOffset
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user