slint/internal/compiler/widgets/material-base/widget-checkbox.slint
Olivier Goffart 7947d44e59 Run the syntax_updater on our widgets
This is commit is just the output of running the syntax updater on the
files in the internal/compiler/widgets directory.
No extra manual steps were done.

Note: In order to run the updater, I did a hack so that the updater wouldn't
choke on internal item used by the styles by commenting out the check in
ElementType::lookup_type_for_child_element
2023-01-11 10:52:48 +01:00

151 lines
4.8 KiB
Text

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
import { md } from "md.slint";
// Selection control that can be toggled between checked und unchecked by click.
export component CheckBox inherits Rectangle {
callback toggled;
in property <string> text <=> label.text;
in-out property <bool> checked;
out property <bool> has-focus: fs.has-focus;
in property<bool> enabled: true;
height: 18px;
accessible-label <=> label.text;
accessible-checkable: true;
accessible-checked <=> root.checked;
accessible-role: checkbox;
layout := HorizontalLayout {
spacing: 16px;
Rectangle {
width: 18px;
height: 18px;
container := Rectangle {
width: 100%;
height: 100%;
border-radius: 2px;
border-width: 2px;
border-color: md.sys.color.on-surface;
}
state-layer := Rectangle {
width: 40px;
height: 40px;
x: (parent.width - self.width) / 2;
y: (parent.height - self.height) / 2;
opacity: 0;
background: md.sys.color.primary;
border-radius: 20px;
animate opacity { duration: 300ms; easing: ease; }
}
if (root.checked) : Path {
width: 66%;
height: 66%;
x: (parent.width - self.width) / 2;
y: (parent.height - self.height) / 2;
commands: "M18.9 35.7 7.7 24.5l2.15-2.15 9.05 9.05 19.2-19.2 2.15 2.15Z";
fill: md.sys.color.on-primary;
states [
disabled when !root.enabled : {
fill: md.sys.color.on-surface;
}
hover-selected when touch.has-hover && root.checked : {
fill: md.sys.color.on-primary;
}
]
}
}
label := Text {
color: md.sys.color.on-surface;
horizontal-alignment: left;
vertical-alignment: center;
vertical-stretch: 1;
font-size: md.sys.typescale.label-medium.size;
font-weight: md.sys.typescale.label-medium.weight;
}
}
touch := TouchArea {
x: layout.padding-left;
width: layout.width - layout.padding-left - layout.padding-right;
height: 100%;
enabled <=> root.enabled;
clicked => {
if (root.enabled) {
root.checked = !root.checked;
root.toggled();
}
}
}
fs := FocusScope {
x:0;
width: 0px; // Do not react on clicks
enabled <=> root.enabled;
key-pressed(event) => {
if (event.text == " " || event.text == "\n") {
touch.clicked();
return accept;
}
return reject;
}
}
states [
disabled-selected when !root.enabled && root.checked : {
container.border-width: 0px;
container.border-color: transparent;
container.background: md.sys.color.primary;
container.opacity: 0.38;
label.opacity: 0.38;
label.color: md.sys.color.primary;
}
disabled when !root.enabled : {
container.opacity: 0.38;
label.opacity: 0.38;
label.color: md.sys.color.primary;
}
pressed when touch.pressed && !root.checked : {
state-layer.opacity: 0.12;
}
pressed-selected when touch.pressed && root.checked : {
state-layer.opacity: 0.12;
state-layer.background: md.sys.color.on-surface;
container.border-width: 0px;
container.border-color: transparent;
container.background: md.sys.color.primary;
}
hover-selected when touch.has-hover && root.checked : {
state-layer.opacity: 0.08;
container.border-width: 0px;
container.border-color: transparent;
container.background: md.sys.color.primary;
}
hover when touch.has-hover && !root.checked : {
state-layer.background: md.sys.color.on-surface;
state-layer.opacity: 0.08;
}
selected when !touch.has-hover && root.checked : {
container.border-width: 0px;
container.border-color: transparent;
container.background: md.sys.color.primary;
}
focused-selected when fs.has-focus && root.checked : {
state-layer.opacity: 0.12;
}
focused when fs.has-focus && !root.checked : {
state-layer.background: md.sys.color.on-surface;
state-layer.opacity: 0.12;
}
]
}