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
use crate::CrossingMode;
use crate::Event;
use crate::NotifyType;
use glib::translate::*;
use glib::StaticType;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkCrossingEvent")]
pub struct CrossingEvent(Shared<ffi::GdkCrossingEvent>);
match fn {
ref => |ptr| ffi::gdk_event_ref(ptr as *mut ffi::GdkEvent),
unref => |ptr| ffi::gdk_event_unref(ptr as *mut ffi::GdkEvent),
}
}
impl glib::StaticType for CrossingEvent {
fn static_type() -> glib::Type {
unsafe { from_glib(ffi::gdk_crossing_event_get_type()) }
}
}
impl CrossingEvent {
#[doc(alias = "gdk_crossing_event_get_detail")]
#[doc(alias = "get_detail")]
pub fn detail(&self) -> NotifyType {
unsafe { from_glib(ffi::gdk_crossing_event_get_detail(self.to_glib_none().0)) }
}
#[doc(alias = "gdk_crossing_event_get_focus")]
#[doc(alias = "get_focus")]
pub fn gets_focus(&self) -> bool {
unsafe { from_glib(ffi::gdk_crossing_event_get_focus(self.to_glib_none().0)) }
}
#[doc(alias = "gdk_crossing_event_get_mode")]
#[doc(alias = "get_mode")]
pub fn mode(&self) -> CrossingMode {
unsafe { from_glib(ffi::gdk_crossing_event_get_mode(self.to_glib_none().0)) }
}
}
impl fmt::Display for CrossingEvent {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("CrossingEvent")
}
}