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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
use crate::NavigationDirection;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
use std::mem;
glib::wrapper! {
#[doc(alias = "AdwSwipeable")]
pub struct Swipeable(Interface<ffi::AdwSwipeable, ffi::AdwSwipeableInterface>) @requires gtk::Widget, gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
match fn {
type_ => || ffi::adw_swipeable_get_type(),
}
}
impl Swipeable {
pub const NONE: Option<&'static Swipeable> = None;
}
pub trait SwipeableExt: 'static {
#[doc(alias = "adw_swipeable_get_cancel_progress")]
#[doc(alias = "get_cancel_progress")]
fn cancel_progress(&self) -> f64;
#[doc(alias = "adw_swipeable_get_distance")]
#[doc(alias = "get_distance")]
fn distance(&self) -> f64;
#[doc(alias = "adw_swipeable_get_progress")]
#[doc(alias = "get_progress")]
fn progress(&self) -> f64;
#[doc(alias = "adw_swipeable_get_snap_points")]
#[doc(alias = "get_snap_points")]
fn snap_points(&self) -> Vec<f64>;
#[doc(alias = "adw_swipeable_get_swipe_area")]
#[doc(alias = "get_swipe_area")]
fn swipe_area(
&self,
navigation_direction: NavigationDirection,
is_drag: bool,
) -> gdk::Rectangle;
}
impl<O: IsA<Swipeable>> SwipeableExt for O {
fn cancel_progress(&self) -> f64 {
unsafe { ffi::adw_swipeable_get_cancel_progress(self.as_ref().to_glib_none().0) }
}
fn distance(&self) -> f64 {
unsafe { ffi::adw_swipeable_get_distance(self.as_ref().to_glib_none().0) }
}
fn progress(&self) -> f64 {
unsafe { ffi::adw_swipeable_get_progress(self.as_ref().to_glib_none().0) }
}
fn snap_points(&self) -> Vec<f64> {
unsafe {
let mut n_snap_points = mem::MaybeUninit::uninit();
let ret = FromGlibContainer::from_glib_full_num(
ffi::adw_swipeable_get_snap_points(
self.as_ref().to_glib_none().0,
n_snap_points.as_mut_ptr(),
),
n_snap_points.assume_init() as usize,
);
ret
}
}
fn swipe_area(
&self,
navigation_direction: NavigationDirection,
is_drag: bool,
) -> gdk::Rectangle {
unsafe {
let mut rect = gdk::Rectangle::uninitialized();
ffi::adw_swipeable_get_swipe_area(
self.as_ref().to_glib_none().0,
navigation_direction.into_glib(),
is_drag.into_glib(),
rect.to_glib_none_mut().0,
);
rect
}
}
}
impl fmt::Display for Swipeable {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Swipeable")
}
}