67 lines
2.6 KiB
QML
67 lines
2.6 KiB
QML
// 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.Controls.impl
|
|
import QtQuick.Controls.FluentWinUI3.impl as Impl
|
|
import QtQuick.Templates as T
|
|
|
|
T.CheckBox {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
implicitContentWidth + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
implicitContentHeight + topPadding + bottomPadding,
|
|
implicitIndicatorHeight + topPadding + bottomPadding)
|
|
|
|
spacing: __config.spacing || 0
|
|
|
|
topPadding: __config.topPadding || 0
|
|
bottomPadding: __config.bottomPadding || 0
|
|
leftPadding: __config.leftPadding || 0
|
|
rightPadding: __config.rightPadding || 0
|
|
|
|
topInset: -__config.topInset || 0
|
|
bottomInset: -__config.bottomInset || 0
|
|
leftInset: -__config.leftInset || 0
|
|
rightInset: -__config.rightInset || 0
|
|
|
|
readonly property string __currentState: [
|
|
control.checkState === Qt.Checked && "checked",
|
|
!control.enabled && "disabled",
|
|
control.enabled && !control.down && control.hovered && "hovered",
|
|
control.checkState === Qt.PartiallyChecked && "partiallyChecked",
|
|
control.down && "pressed",
|
|
].filter(Boolean).join("_") || "normal"
|
|
readonly property var __config: Config.controls.checkbox[__currentState] || {}
|
|
|
|
readonly property bool __mirroredIndicator: control.mirrored !== (__config.mirrored || false)
|
|
|
|
readonly property Item __focusFrameTarget: control
|
|
|
|
indicator: Impl.CheckIndicator {
|
|
x: control.text ? (control.__mirroredIndicator ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
|
y: control.topPadding + (control.availableHeight - height) / 2
|
|
control: control
|
|
filePath: Qt.resolvedUrl(control.__config.indicator.filePath)
|
|
}
|
|
|
|
contentItem: Text {
|
|
leftPadding: control.indicator && !control.__mirroredIndicator ? control.indicator.width + control.spacing : 0
|
|
rightPadding: control.indicator && control.__mirroredIndicator ? control.indicator.width + control.spacing : 0
|
|
|
|
text: control.text
|
|
font: control.font
|
|
color: control.palette.text
|
|
elide: Text.ElideRight
|
|
horizontalAlignment: Text.AlignLeft
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
|
|
background: Impl.StyleImage {
|
|
imageConfig: control.__config.background
|
|
}
|
|
}
|