Files
LACT/lact-gui/ui/oc_page/power_cap_section.blp

34 lines
715 B
Plaintext
Raw Normal View History

2023-11-21 20:48:40 +02:00
using Gtk 4.0;
template $PowerCapSection: $PageSection {
name: "Power usage limit";
Box {
orientation: horizontal;
Label value_label {
label: bind template.value-text;
}
Scale {
orientation: horizontal;
hexpand: true;
round-digits: 0;
margin-start: 5;
margin-end: 5;
draw-value: false;
adjustment: adjustment;
}
Button reset_button {
label: "Default";
}
}
}
$OcAdjustment adjustment {
value: bind template.current-value bidirectional;
lower: bind template.min-value;
upper: bind template.max-value;
}