UI template

This commit is contained in:
Alexey 2025-09-04 09:58:11 +03:00
commit b6413f0e7d
6 changed files with 5897 additions and 21 deletions

5815
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -8,14 +8,6 @@ slint::include_modules!();
fn main() -> Result<(), Box<dyn Error>> { fn main() -> Result<(), Box<dyn Error>> {
let ui = AppWindow::new()?; let ui = AppWindow::new()?;
ui.on_request_increase_value({
let ui_handle = ui.as_weak();
move || {
let ui = ui_handle.unwrap();
ui.set_counter(ui.get_counter() + 1);
}
});
ui.run()?; ui.run()?;
Ok(()) Ok(())

View file

@ -1,18 +1,16 @@
import { Button, VerticalBox } from "std-widgets.slint"; import { TabWidget } from "std-widgets.slint";
import { RecordWidget } from "record.slint";
import { ReviewWidget } from "review.slint";
export component AppWindow inherits Window { export component AppWindow inherits Window {
in-out property <int> counter: 42; TabWidget {
callback request-increase-value(); Tab {
VerticalBox { title: "Record";
Text { RecordWidget {}
text: "Counter: \{root.counter}";
} }
Tab {
Button { title: "Review";
text: "Increase value"; ReviewWidget {}
clicked => {
root.request-increase-value();
}
} }
} }
} }

35
ui/record.slint Normal file
View file

@ -0,0 +1,35 @@
import { VerticalBox, LineEdit, Button, ComboBox } from "std-widgets.slint";
import { Timeline } from "timeline.slint";
export component RecordWidget inherits VerticalBox {
Timeline {}
GridLayout {
spacing-vertical: 8px;
spacing-horizontal: 16px;
LineEdit {
placeholder-text: "Event name";
text: "Event name";
font-size: 24px;
horizontal-alignment: center;
colspan: 2;
row: 0;
}
Button {
text: "Start";
colspan: 2;
row: 1;
}
Text {
text: "Span:";
font-size: 24px;
row: 2;
horizontal-alignment: right;
}
ComboBox {
model: ["1 Hour", "4 Hours", "8 Hours", "24 Hours"];
current-index: 0;
row: 2;
col: 1;
}
}
}

35
ui/review.slint Normal file
View file

@ -0,0 +1,35 @@
import { VerticalBox, LineEdit, Button, DatePickerPopup } from "std-widgets.slint";
import { Timeline } from "timeline.slint";
export component ReviewWidget inherits VerticalBox {
property<int> current-year;
property<int> current-month;
property<int> current-day;
Timeline {}
GridLayout {
spacing-vertical: 8px;
spacing-horizontal: 16px;
Text {
text: "Day: \{current-day}/\{current-month}/\{current-year}";
font-size: 32px;
horizontal-alignment: right;
}
Button {
text: "Select";
clicked => {
date-picker.show()
}
}
}
date-picker := DatePickerPopup {
x: (root.width - self.width) / 2;
y: (root.height - self.height) / 2;
title: "";
accepted(date) => {
current-year = date.year;
current-month = date.month;
current-day = date.day;
}
}
}

1
ui/timeline.slint Normal file
View file

@ -0,0 +1 @@
export component Timeline inherits Path {}