summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer/widget/progress_bar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/renderer/widget/progress_bar.rs')
-rw-r--r--wgpu/src/renderer/widget/progress_bar.rs51
1 files changed, 51 insertions, 0 deletions
diff --git a/wgpu/src/renderer/widget/progress_bar.rs b/wgpu/src/renderer/widget/progress_bar.rs
new file mode 100644
index 00000000..e9346fda
--- /dev/null
+++ b/wgpu/src/renderer/widget/progress_bar.rs
@@ -0,0 +1,51 @@
+use crate::{Primitive, Renderer};
+use iced_native::{progress_bar, Background, Color, MouseCursor, Rectangle};
+
+impl progress_bar::Renderer for Renderer {
+ const DEFAULT_HEIGHT: u16 = 30;
+
+ fn draw(
+ &self,
+ bounds: Rectangle,
+ range: std::ops::RangeInclusive<f32>,
+ value: f32,
+ background: Option<Background>,
+ active_color: Option<Color>,
+ ) -> Self::Output {
+ let (range_start, range_end) = range.into_inner();
+ let active_progress_width = bounds.width
+ * ((value - range_start) / (range_end - range_start).max(1.0));
+
+ let background = Primitive::Group {
+ primitives: vec![Primitive::Quad {
+ bounds: Rectangle { ..bounds },
+ background: background
+ .unwrap_or(Background::Color([0.6, 0.6, 0.6].into()))
+ .into(),
+ border_radius: 5,
+ border_width: 0,
+ border_color: Color::TRANSPARENT,
+ }],
+ };
+
+ let active_progress = Primitive::Quad {
+ bounds: Rectangle {
+ width: active_progress_width,
+ ..bounds
+ },
+ background: Background::Color(
+ active_color.unwrap_or([0.0, 0.95, 0.0].into()),
+ ),
+ border_radius: 5,
+ border_width: 0,
+ border_color: Color::TRANSPARENT,
+ };
+
+ (
+ Primitive::Group {
+ primitives: vec![background, active_progress],
+ },
+ MouseCursor::OutOfBounds,
+ )
+ }
+}