1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use super::Pixbuf;
use glib::translate::*;
use std::time::SystemTime;
glib::wrapper! {
#[doc(alias = "GdkPixbufAnimationIter")]
pub struct PixbufAnimationIter(Object<ffi::GdkPixbufAnimationIter, ffi::GdkPixbufAnimationIterClass>);
match fn {
type_ => || ffi::gdk_pixbuf_animation_iter_get_type(),
}
}
impl PixbufAnimationIter {
#[doc(alias = "gdk_pixbuf_animation_iter_advance")]
pub fn advance(&self, start_time: SystemTime) -> bool {
let diff = start_time
.duration_since(SystemTime::UNIX_EPOCH)
.expect("failed to convert time");
unsafe {
from_glib(ffi::gdk_pixbuf_animation_iter_advance(
self.to_glib_none().0,
&glib::ffi::GTimeVal {
tv_sec: diff.as_secs() as _,
tv_usec: diff.subsec_micros() as _,
},
))
}
}
#[doc(alias = "gdk_pixbuf_animation_iter_get_pixbuf")]
#[doc(alias = "get_pixbuf")]
pub fn pixbuf(&self) -> Pixbuf {
unsafe {
from_glib_none(ffi::gdk_pixbuf_animation_iter_get_pixbuf(
self.to_glib_none().0,
))
}
}
#[doc(alias = "gdk_pixbuf_animation_iter_get_delay_time")]
#[doc(alias = "get_delay_time")]
pub fn delay_time(&self) -> i32 {
unsafe { ffi::gdk_pixbuf_animation_iter_get_delay_time(self.to_glib_none().0) }
}
#[doc(alias = "gdk_pixbuf_animation_iter_on_currently_loading_frame")]
pub fn on_currently_loading_frame(&self) -> bool {
unsafe {
from_glib(ffi::gdk_pixbuf_animation_iter_on_currently_loading_frame(
self.to_glib_none().0,
))
}
}
}