moment/src/qml/Base/HCheckBox.qml

88 lines
2.4 KiB
QML
Raw Normal View History

import QtQuick 2.12
import QtQuick.Controls 2.12
2019-11-08 00:50:59 +11:00
import QtQuick.Layouts 1.12
import "../utils.js" as Utils
CheckBox {
id: box
spacing: theme.spacing
2019-08-21 18:46:40 +10:00
leftPadding: spacing / 1.5
rightPadding: spacing / 1.5
topPadding: spacing / 2
bottomPadding: spacing / 2
2019-08-21 08:31:20 +10:00
opacity: enabled ? 1 : theme.disabledElementsOpacity
2019-11-08 00:50:59 +11:00
property alias mainText: mainText
property alias subtitle: subtitleText
2019-08-21 08:31:20 +10:00
Behavior on opacity { HNumberAnimation { factor: 2 } }
indicator: Rectangle {
implicitWidth: implicitHeight
2019-11-08 00:50:59 +11:00
implicitHeight: mainText.font.pixelSize * 1.5
x: box.leftPadding
y: box.topPadding + box.availableHeight / 2 - height / 2
radius: theme.radius / 1.5
2019-08-21 08:31:20 +10:00
color: theme.controls.checkBox.boxBackground
border.color:
box.enabled && box.pressed ?
theme.controls.checkBox.boxPressedBorder :
(box.enabled && box.hovered) || box.activeFocus ?
2019-08-21 08:31:20 +10:00
theme.controls.checkBox.boxHoveredBorder :
theme.controls.checkBox.boxBorder
Behavior on border.color { HColorAnimation { factor: 0.5 } }
HIcon {
anchors.centerIn: parent
dimension: parent.width - 2
svgName: "check-mark"
colorize: theme.controls.checkBox.checkIconColorize
visible: scale > 0
scale: box.checked ? 1 : 0
Behavior on scale {
HNumberAnimation {
overshoot: 4
easing.type: Easing.InOutBack
}
}
}
}
2019-11-08 00:50:59 +11:00
contentItem: HColumnLayout {
HLabel {
id: mainText
text: box.text
color: theme.controls.checkBox.text
// Set a width on CheckBox for wrapping to work,
// e.g. by using Layout.fillWidth
wrapMode: Text.Wrap
leftPadding: box.indicator.width + box.spacing
verticalAlignment: Text.AlignVCenter
Layout.fillWidth: true
}
HLabel {
id: subtitleText
visible: Boolean(text)
color: theme.controls.checkBox.subtitle
font.pixelSize: theme.fontSize.small
2019-11-08 00:50:59 +11:00
wrapMode: mainText.wrapMode
leftPadding: mainText.leftPadding
verticalAlignment: mainText.verticalAlignment
Layout.fillWidth: true
}
}
}