slint/examples/7guis/timer.slint
2023-06-16 10:55:08 +02:00

57 lines
1.6 KiB
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
import { LineEdit, Button, Slider, HorizontalBox, VerticalBox } from "std-widgets.slint";
export component MainWindow inherits Window {
in-out property <duration> total-time: slider.value * 1s;
in-out property <duration> elapsed-time;
callback tick(duration);
tick(passed-time) => {
root.elapsed-time += passed-time;
root.elapsed-time = min(root.elapsed-time, root.total-time);
}
VerticalBox {
HorizontalBox {
padding-left: 0;
Text { text: "Elapsed Time:"; }
Rectangle {
min-width: 200px;
max-height: 30px;
background: gray;
Rectangle {
x:0;
height: 100%;
width: parent.width * (root.elapsed-time/root.total-time);
background: lightblue;
}
}
}
Text{
text: (root.total-time / 1s) + "s";
}
HorizontalBox {
padding-left: 0;
Text {
text: "Duration:";
vertical-alignment: center;
}
slider := Slider {
maximum: 30s / 1s;
value: 10s / 1s;
changed(new-duration) => {
root.total-time = new-duration * 1s;
root.elapsed-time = min(root.elapsed-time, root.total-time);
}
}
}
Button {
text: "Reset";
clicked => {
root.elapsed-time = 0
}
}
}
}