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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
use std::ptr;
use glib::translate::*;
use glib::object::IsA;
use atom::Atom;
use ffi;
use Device;
use DragAction;
use DragContext;
use DragProtocol;
use Screen;
use Window;
pub trait DragContextExtManual {
fn drag_get_selection(&self) -> Atom;
fn drag_abort(&self, time_: u32);
fn drop_reply(&self, accepted: bool, time_: u32);
fn drop(&self, time_: u32);
fn drag_find_window_for_screen(&self, drag_window: &Window, screen: &Screen,
x_root: i32, y_root: i32) -> (Option<Window>, DragProtocol);
fn drag_motion(&self, dest_window: &Window, protocol: DragProtocol, x_root: i32,
y_root: i32, suggested_action: DragAction, possible_actions: DragAction,
time_: u32) -> bool;
fn drop_finish(&self, success: bool, time_: u32);
fn drag_status(&self, action: DragAction, time_: u32);
fn drag_drop_succeeded(&self) -> bool;
fn drag_begin(window: &Window, targets: &[&Atom]) -> Option<DragContext>;
fn drag_begin_for_device<P: IsA<Device>>(window: &Window, device: &P, targets: &[&Atom]) -> Option<DragContext>;
#[cfg(feature = "v3_20")]
fn drag_begin_from_point<P: IsA<Device>>(window: &Window, device: &P, targets: &[&Atom], x_root: i32, y_root: i32) -> Option<DragContext>;
#[cfg(feature = "v3_20")]
fn drag_drop_done(&self, success: bool);
}
impl<O: IsA<DragContext>> DragContextExtManual for O {
fn drag_get_selection(&self) -> Atom {
unsafe { from_glib_none(ffi::gdk_drag_get_selection(self.to_glib_none().0) as *mut _) }
}
fn drag_abort(&self, time_: u32) {
unsafe { ffi::gdk_drag_abort(self.to_glib_none().0, time_) }
}
fn drop_reply(&self, accepted: bool, time_: u32) {
unsafe { ffi::gdk_drop_reply(self.to_glib_none().0, accepted.to_glib(), time_) }
}
fn drop(&self, time_: u32) {
unsafe { ffi::gdk_drag_drop(self.to_glib_none().0, time_) }
}
fn drag_find_window_for_screen(&self, drag_window: &Window, screen: &Screen,
x_root: i32, y_root: i32) -> (Option<Window>, DragProtocol) {
unsafe {
let mut dest_window = ptr::null_mut();
let mut protocol = ffi::GdkDragProtocol::None;
ffi::gdk_drag_find_window_for_screen(self.to_glib_none().0,
drag_window.to_glib_none().0,
screen.to_glib_none().0,
x_root, y_root,
&mut dest_window, &mut protocol);
(from_glib_full(dest_window), from_glib(protocol))
}
}
fn drag_motion(&self, dest_window: &Window, protocol: DragProtocol, x_root: i32,
y_root: i32, suggested_action: DragAction, possible_actions: DragAction,
time_: u32) -> bool {
unsafe {
from_glib(
ffi::gdk_drag_motion(self.to_glib_none().0, dest_window.to_glib_none().0, protocol.to_glib(),
x_root, y_root, suggested_action.to_glib(), possible_actions.to_glib(), time_))
}
}
fn drop_finish(&self, success: bool, time_: u32) {
unsafe { ffi::gdk_drop_finish(self.to_glib_none().0, success.to_glib(), time_) }
}
fn drag_status(&self, action: DragAction, time_: u32) {
unsafe { ffi::gdk_drag_status(self.to_glib_none().0, action.to_glib(), time_) }
}
fn drag_drop_succeeded(&self) -> bool {
unsafe { from_glib(ffi::gdk_drag_drop_succeeded(self.to_glib_none().0)) }
}
fn drag_begin(window: &Window, targets: &[&Atom]) -> Option<DragContext> {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::gdk_drag_begin(window.to_glib_none().0, targets.to_glib_none().0))
}
}
fn drag_begin_for_device<P: IsA<Device>>(window: &Window, device: &P, targets: &[&Atom]) -> Option<DragContext> {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::gdk_drag_begin_for_device(window.to_glib_none().0, device.to_glib_none().0, targets.to_glib_none().0))
}
}
#[cfg(feature = "v3_20")]
fn drag_begin_from_point<P: IsA<Device>>(window: &Window, device: &P, targets: &[&Atom], x_root: i32, y_root: i32) -> Option<DragContext> {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::gdk_drag_begin_from_point(window.to_glib_none().0, device.to_glib_none().0, targets.to_glib_none().0, x_root, y_root))
}
}
#[cfg(feature = "v3_20")]
fn drag_drop_done(&self, success: bool) {
skip_assert_initialized!();
unsafe {
ffi::gdk_drag_drop_done(self.to_glib_none().0, success.to_glib());
}
}
}