summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-28 03:04:31 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-28 03:04:31 +0100
commit23d42d2827a68468bc520440c6396eb114d793bc (patch)
tree38eb7ff2549d0f6e696e6c3c90cb77bc19516f3e /examples
parent086b06553b1b792577e9f663ae7721385696483e (diff)
downloadiced-23d42d2827a68468bc520440c6396eb114d793bc.tar.gz
iced-23d42d2827a68468bc520440c6396eb114d793bc.tar.bz2
iced-23d42d2827a68468bc520440c6396eb114d793bc.zip
Rename `Animation::in_progress` to `is_animating`
Diffstat (limited to 'examples')
-rw-r--r--examples/gallery/src/main.rs55
1 files changed, 29 insertions, 26 deletions
diff --git a/examples/gallery/src/main.rs b/examples/gallery/src/main.rs
index a7c107f7..7b3b6c35 100644
--- a/examples/gallery/src/main.rs
+++ b/examples/gallery/src/main.rs
@@ -103,18 +103,7 @@ impl Gallery {
Task::none()
}
Message::ThumbnailDownloaded(id, Ok(rgba)) => {
- let thumbnail = Thumbnail {
- handle: image::Handle::from_rgba(
- rgba.width,
- rgba.height,
- rgba.pixels,
- ),
- fade_in: Animation::new(false).slow().go(true),
- zoom: Animation::new(false)
- .quick()
- .easing(animation::Easing::EaseInOut),
- };
-
+ let thumbnail = Thumbnail::new(rgba);
let _ = self.thumbnails.insert(id, thumbnail);
Task::none()
@@ -179,18 +168,6 @@ impl Gallery {
}
}
-struct Thumbnail {
- handle: image::Handle,
- fade_in: Animation<bool>,
- zoom: Animation<bool>,
-}
-
-impl Thumbnail {
- fn is_animating(&self, now: Instant) -> bool {
- self.fade_in.in_progress(now) || self.zoom.in_progress(now)
- }
-}
-
fn card<'a>(
metadata: &'a Image,
thumbnail: Option<&'a Thumbnail>,
@@ -230,6 +207,32 @@ fn card<'a>(
}
}
+struct Thumbnail {
+ handle: image::Handle,
+ fade_in: Animation<bool>,
+ zoom: Animation<bool>,
+}
+
+impl Thumbnail {
+ fn new(rgba: Rgba) -> Self {
+ Self {
+ handle: image::Handle::from_rgba(
+ rgba.width,
+ rgba.height,
+ rgba.pixels,
+ ),
+ fade_in: Animation::new(false).slow().go(true),
+ zoom: Animation::new(false)
+ .quick()
+ .easing(animation::Easing::EaseInOut),
+ }
+ }
+
+ fn is_animating(&self, now: Instant) -> bool {
+ self.fade_in.is_animating(now) || self.zoom.is_animating(now)
+ }
+}
+
struct Viewer {
image: Option<image::Handle>,
background_fade_in: Animation<bool>,
@@ -270,8 +273,8 @@ impl Viewer {
}
fn is_animating(&self, now: Instant) -> bool {
- self.background_fade_in.in_progress(now)
- || self.image_fade_in.in_progress(now)
+ self.background_fade_in.is_animating(now)
+ || self.image_fade_in.is_animating(now)
}
fn view(&self, now: Instant) -> Element<'_, Message> {