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
use crate::{EventType, ScrollDirection};
use glib::translate::*;
use std::fmt;
use std::mem;
glib::wrapper! {
#[doc(alias = "GdkScrollEvent")]
pub struct ScrollEvent(Shared<ffi::GdkScrollEvent>);
match fn {
ref => |ptr| ffi::gdk_event_ref(ptr as *mut ffi::GdkEvent),
unref => |ptr| ffi::gdk_event_unref(ptr as *mut ffi::GdkEvent),
}
}
define_event! {
ScrollEvent,
ffi::GdkScrollEvent,
ffi::gdk_scroll_event_get_type,
&[EventType::Scroll]
}
impl ScrollEvent {
#[doc(alias = "gdk_scroll_event_get_deltas")]
#[doc(alias = "get_deltas")]
pub fn deltas(&self) -> (f64, f64) {
unsafe {
let mut delta_x = mem::MaybeUninit::uninit();
let mut delta_y = mem::MaybeUninit::uninit();
ffi::gdk_scroll_event_get_deltas(
self.to_glib_none().0,
delta_x.as_mut_ptr(),
delta_y.as_mut_ptr(),
);
let delta_x = delta_x.assume_init();
let delta_y = delta_y.assume_init();
(delta_x, delta_y)
}
}
#[doc(alias = "gdk_scroll_event_get_direction")]
#[doc(alias = "get_direction")]
pub fn direction(&self) -> ScrollDirection {
unsafe { from_glib(ffi::gdk_scroll_event_get_direction(self.to_glib_none().0)) }
}
#[doc(alias = "gdk_scroll_event_is_stop")]
pub fn is_stop(&self) -> bool {
unsafe { from_glib(ffi::gdk_scroll_event_is_stop(self.to_glib_none().0)) }
}
}
impl fmt::Display for ScrollEvent {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("ScrollEvent")
.field("deltas", &self.deltas())
.field("direction", &self.direction())
.field("is_stop", &self.is_stop())
.finish()
}
}