mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-10 20:36:38 +00:00

* Refactor ProgressIndicator api according to api review. * Update docs/language/src/builtins/widgets.md Co-authored-by: Simon Hausmann <simon.hausmann@slint-ui.com> * Capping progress also for native. --------- Co-authored-by: Simon Hausmann <simon.hausmann@slint-ui.com>
33 lines
No EOL
994 B
Text
33 lines
No EOL
994 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial
|
|
|
|
import { Palette } from "styling.slint";
|
|
|
|
export component ProgressIndicator {
|
|
in property<float> progress;
|
|
in property <bool> indeterminate;
|
|
|
|
min-height: 3px;
|
|
horizontal-stretch: 1;
|
|
vertical-stretch: 0;
|
|
accessible-role: none;
|
|
accessible-value: root.progress;
|
|
|
|
Rectangle {
|
|
clip: true;
|
|
|
|
i-rail := Rectangle {
|
|
height: 1px;
|
|
background: Palette.control-stroke;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
i-track := Rectangle {
|
|
width: !root.indeterminate ? parent.width * min(1, max(0, root.progress)) : parent.width;
|
|
height: 100%;
|
|
x: !root.indeterminate ? 0px : -parent.width + (parent.width * mod(animation-tick(), 2s) / 1s);
|
|
border-radius: 3px;
|
|
background: Palette.accent-default;
|
|
}
|
|
}
|
|
} |