slint/internal/compiler/widgets/cosmic-base/progressindicator.slint
Montel Laurent 1a57e9fc7a
Fix accessible-role of ProgressIndicator (#4912)
In other styles it's defined as progress-indicator.
2024-03-21 15:42:31 +01:00

29 lines
988 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
import { CosmicPalette } from "styling.slint";
export component ProgressIndicator {
in property <float> progress;
in property <bool> indeterminate;
min-height: 4px;
horizontal-stretch: 1;
vertical-stretch: 0;
accessible-role: progress-indicator;
accessible-value: root.progress;
Rectangle {
clip: true;
border-radius: 2px;
background: CosmicPalette.neutral-6-background;
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: parent.border-radius;
background: CosmicPalette.secondary-accent-background;
}
}
}