Prettified code and added review scrolling

This commit is contained in:
Alexey 2025-09-10 14:50:05 +03:00
commit abc9d59810
4 changed files with 79 additions and 29 deletions

View file

@ -4,14 +4,15 @@ import { ReviewWidget } from "review.slint";
import { TimelineEvent } from "timeline.slint";
export component AppWindow inherits Window {
callback update-record-visible-time <=> record.update-visible-time;
callback start-new-event <=> record.start-new-event;
callback stop-event <=> record.stop-event;
callback chain-event <=> record.chain-event;
callback update-record-offset(int);
callback save-log;
callback another-call;
callback load-log;
callback fetch-log <=> review.fetch-log;
callback update-visible-time(bool, string);
update-record-offset(new-offset) => {
record.offset = new-offset;
@ -19,8 +20,13 @@ export component AppWindow inherits Window {
in-out property record-events <=> record.events;
in-out property record-offset <=> record.offset;
in-out property<int> record-visible-time <=> record.visible-time;
in-out property<bool> in-progress <=> record.in-progress;
in-out property record-visible-time <=> record.visible-time;
in-out property in-progress <=> record.in-progress;
in-out property review-events <=> review.events;
in-out property review-offset <=> review.offset;
in-out property review-visible-time <=> review.visible-time;
property<[string]> combo-spans: ["1 Hour", "4 Hours", "8 Hours", "24 Hours"];
title: "Aliveline";
@ -30,11 +36,19 @@ export component AppWindow inherits Window {
title: "Record";
record := RecordWidget {
combo-spans: combo-spans;
update-visible-time(time) => {
root.update-visible-time(true, time);
}
}
}
Tab {
title: "Review";
review := ReviewWidget {}
review := ReviewWidget {
combo-spans: combo-spans;
update-visible-time(time) => {
root.update-visible-time(false, time)
}
}
}
}
}