mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-03 10:13:42 +00:00
Move dependencies in 'external' directory and pdate git submodules
This commit is contained in:
parent
63bf267a22
commit
cbaa1b58d8
608 changed files with 198659 additions and 199 deletions
|
@ -1,25 +0,0 @@
|
|||
import { Button, TimePickerPopup, Date, Palette, Time } from "std-widgets.slint";
|
||||
import { VLabeledComponent } from "LabeledComponent.slint";
|
||||
import { VButton } from "Button.slint";
|
||||
|
||||
export component VTimePicker inherits VLabeledComponent {
|
||||
in-out property<Time> time;
|
||||
in-out property<string> timeDisplay: formatZeroPadding(time.hour) + "h" + formatZeroPadding(time.minute);
|
||||
|
||||
pure function formatZeroPadding(number: int) -> string {
|
||||
if (number < 10) {
|
||||
return "0\{number}";
|
||||
}
|
||||
return number;
|
||||
}
|
||||
|
||||
button := VButton {
|
||||
text: timeDisplay;
|
||||
enabled: root.enabled;
|
||||
clicked => { timePickerPopup.show() }
|
||||
}
|
||||
|
||||
timePickerPopup := TimePickerPopup {
|
||||
accepted(time) => { root.time = time }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue