slint/examples/todo-mvc/ui/widgets/selection_list_view.slint
Florian Blasius 0870585c32
Added TodoMVC example (Rust mock version) (#5396)
* Added TodoMVC example (Rust mock version)

* TodoMVC: use visible-width instead of width for selection items

and format

* TodoMVC: layout fix for qt checkbox

* TdodoMVC: fix license issues in the example

* Update examples/todo_mvc/ui/views/task_list_view.slint

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* TdodoMVC: fix license issues in the example

* TodoMVC: code review changes

* TodoMVC: code review changes

* Update .reuse/dep5

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* Update examples/todo_mvc/rust/src/adapters/navigation_adapter.rs

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* Update examples/todo_mvc/rust/src/adapters/navigation_adapter.rs

Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>

* TodoMVC: refactor task list model (code review feedback)

* TodoMVC: code review feedback

* Update examples/todo-mvc/rust/src/mvc/controllers/task_list_controller.rs

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* TodoMVC: add missing link in dep5

* dep5 fix

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>
2024-06-13 13:05:44 +02:00

108 lines
2.9 KiB
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
import { CheckBox, ListView, HorizontalBox } from "std-widgets.slint";
import { StateLayer } from "./state_layer.slint";
import { FocusTouchArea } from "./focus_touch_area.slint";
import { SizeSettings, TodoPalette, FontSettings, Icons } from "styling.slint";
import { IconButton } from "icon_button.slint";
@rust-attr(derive(serde::Serialize, serde::Deserialize))
export struct SelectionListViewItem {
text: string,
checked: bool,
description: string,
}
export component SelectionListViewItemDelegate {
callback toggle;
callback remove;
in property <string> text <=> text-label.text;
in property <string> description <=> description-label.text;
in-out property <bool> checked <=> check-box.checked;
min-width: content-layer.min-width;
min-height: max(SizeSettings.control-height, content-layer.min-height);
forward-focus: touch-area;
touch-area := FocusTouchArea {
width: 100%;
height: 100%;
clicked => {
root.toggle();
}
}
StateLayer {
width: 100%;
height: 100%;
focus-padding: -1px;
pressed: touch-area.pressed || touch-area.enter-pressed;
has-focus: touch-area.has-focus;
has-hover: touch-area.has-hover;
}
content-layer := HorizontalBox {
check-box := CheckBox {
horizontal-stretch: 0;
y: (parent.height - self.height) / 2;
toggled => {
root.toggle();
}
}
VerticalLayout {
alignment: center;
text-label := Text {
horizontal-alignment: left;
color: TodoPalette.foreground;
font-size: FontSettings.body-strong.font-size;
font-weight: FontSettings.body-strong.font-weight;
overflow: elide;
}
description-label := Text {
color: TodoPalette.foreground;
font-size: FontSettings.body.font-size;
font-weight: FontSettings.body.font-weight;
overflow: elide;
}
}
IconButton {
y: (parent.height - self.height) / 2;
icon: Icons.remove;
clicked => {
root.remove();
}
}
}
}
export component SelectionListView inherits ListView {
in property <[SelectionListViewItem]> model;
callback toggle(/* index */ int);
callback remove(/* index */ int);
for item[index] in root.model : SelectionListViewItemDelegate {
width: root.visible-width;
text: item.text;
description: item.description;
checked: item.checked;
toggle => {
root.toggle(index);
}
remove => {
root.remove(index);
}
}
}