slint/internal/compiler/widgets/fluent-base/progressindicator.slint
Olivier Goffart 13127dc71c Accessibility: Add support for accessibility-action-* callback (#5073)
Merge branch 'feature/accessibility'

 Conflicts:
	internal/compiler/widgets/cosmic-base/button.slint
	internal/compiler/widgets/cupertino-base/button.slint
	internal/compiler/widgets/fluent-base/button.slint
	internal/compiler/widgets/material-base/button.slint

Also updated license header in actions.slint
2024-04-16 15:02:25 +02:00

33 lines
1,023 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.2 OR LicenseRef-Slint-commercial
import { FluentPalette } 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: progress-indicator;
accessible-value: root.progress;
Rectangle {
clip: true;
i-rail := Rectangle {
height: 1px;
background: FluentPalette.border;
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: FluentPalette.accent-background;
}
}
}