10import "../core/UiMetrics.js" as UiMetrics
25 Accessible.ignored:
true
34 property color backgroundColor
37 property color outlineColor
40 property real outlineWidth
42 implicitWidth: MD.Tokens.checkBox.containerSize + MD.Tokens.checkBox.containerPadding * 2
43 implicitHeight: MD.Tokens.checkBox.containerSize + MD.Tokens.checkBox.containerPadding * 2
48 anchors.centerIn: parent
49 implicitWidth: MD.Tokens.checkBox.containerSize
50 implicitHeight: MD.Tokens.checkBox.containerSize
51 color: indicatorItem.backgroundColor
52 topLeftRadius: UiMetrics.resolveShapeRadius(MD.Tokens.checkBox.containerShape.topLeft,
54 topRightRadius: UiMetrics.resolveShapeRadius(MD.Tokens.checkBox.containerShape.topRight,
56 bottomLeftRadius: UiMetrics.resolveShapeRadius(
57 MD.Tokens.checkBox.containerShape.bottomLeft, width, height)
58 bottomRightRadius: UiMetrics.resolveShapeRadius(
59 MD.Tokens.checkBox.containerShape.bottomRight, width, height)
60 border.width: indicatorItem.outlineWidth
61 border.color: indicatorItem.outlineColor
65 duration: MD.Tokens.motion.duration.short2
69 Behavior on border.color {
71 duration: MD.Tokens.motion.duration.short2
75 Behavior on border.width {
77 duration: MD.Tokens.motion.duration.short2
85 visible: control.checkState !== Qt.Unchecked
95 objectName:
"svg_path:checked"
96 strokeColor:
"transparent"
97 fillRule: ShapePath.WindingFill
98 fillColor: control.checkState === Qt.Checked ? indicatorItem.color :
"transparent"
99 pathHints: ShapePath.PathQuadratic | ShapePath.PathNonIntersecting | ShapePath.PathNonOverlappingControlPointTriangles
102 path:
"M 14 18.2 L 11.4 15.6 L 10 17 L 14 21 L 22 13 L 20.6 11.6 L 14 18.2 "
107 objectName:
"svg_path:partially_checked"
108 strokeColor:
"transparent"
109 fillRule: ShapePath.WindingFill
110 fillColor: control.checkState === Qt.PartiallyChecked ? indicatorItem.color :
"transparent"
111 pathHints: ShapePath.PathQuadratic | ShapePath.PathNonIntersecting | ShapePath.PathNonOverlappingControlPointTriangles
114 path:
"M 13.4 15 L 11 15 L 11 17 L 13.4 17 L 21 17 L 21 15 L 13.4 15 "