2019-08-18 03:01:43 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
2019-11-08 00:50:59 +11:00
|
|
|
import QtQuick.Layouts 1.12
|
2019-08-18 03:01:43 +10:00
|
|
|
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 } }
|
2019-08-18 03:01:43 +10:00
|
|
|
|
|
|
|
|
|
|
|
indicator: Rectangle {
|
|
|
|
implicitWidth: implicitHeight
|
2019-11-08 00:50:59 +11:00
|
|
|
implicitHeight: mainText.font.pixelSize * 1.5
|
2019-08-18 03:01:43 +10:00
|
|
|
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 :
|
|
|
|
|
2019-09-09 21:19:06 +10:00
|
|
|
(box.enabled && box.hovered) || box.activeFocus ?
|
2019-08-21 08:31:20 +10:00
|
|
|
theme.controls.checkBox.boxHoveredBorder :
|
|
|
|
|
|
|
|
theme.controls.checkBox.boxBorder
|
2019-08-18 03:01:43 +10:00
|
|
|
|
|
|
|
Behavior on border.color { HColorAnimation { factor: 0.5 } }
|
|
|
|
|
|
|
|
HIcon {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
dimension: parent.width - 2
|
|
|
|
svgName: "check-mark"
|
2019-08-29 06:30:48 +10:00
|
|
|
colorize: theme.controls.checkBox.checkIconColorize
|
2019-08-18 03:01:43 +10:00
|
|
|
|
|
|
|
visible: scale > 0
|
|
|
|
scale: box.checked ? 1 : 0
|
2019-08-18 03:35:43 +10:00
|
|
|
Behavior on scale {
|
|
|
|
HNumberAnimation {
|
|
|
|
overshoot: 4
|
|
|
|
easing.type: Easing.InOutBack
|
|
|
|
}
|
|
|
|
}
|
2019-08-18 03:01:43 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-08-18 03:01:43 +10:00
|
|
|
|
2019-11-08 00:50:59 +11:00
|
|
|
wrapMode: mainText.wrapMode
|
|
|
|
leftPadding: mainText.leftPadding
|
|
|
|
verticalAlignment: mainText.verticalAlignment
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2019-08-18 03:01:43 +10:00
|
|
|
}
|
|
|
|
}
|