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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
use Atom;
use Device;
use DragAction;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use DragCancelReason;
use DragProtocol;
use Window;
use ffi;
use glib::object::IsA;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use glib::object::ObjectType;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use glib::signal::SignalHandlerId;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use glib::signal::connect_raw;
use glib::translate::*;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use glib_ffi;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use libc;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use std::boxed::Box as Box_;
use std::fmt;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use std::mem::transmute;
glib_wrapper! {
pub struct DragContext(Object<ffi::GdkDragContext, DragContextClass>);
match fn {
get_type => || ffi::gdk_drag_context_get_type(),
}
}
impl DragContext {
pub fn get_actions(&self) -> DragAction {
unsafe {
from_glib(ffi::gdk_drag_context_get_actions(self.to_glib_none().0))
}
}
pub fn get_dest_window(&self) -> Window {
unsafe {
from_glib_none(ffi::gdk_drag_context_get_dest_window(self.to_glib_none().0))
}
}
pub fn get_device(&self) -> Device {
unsafe {
from_glib_none(ffi::gdk_drag_context_get_device(self.to_glib_none().0))
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn get_drag_window(&self) -> Option<Window> {
unsafe {
from_glib_none(ffi::gdk_drag_context_get_drag_window(self.to_glib_none().0))
}
}
pub fn get_protocol(&self) -> DragProtocol {
unsafe {
from_glib(ffi::gdk_drag_context_get_protocol(self.to_glib_none().0))
}
}
pub fn get_selected_action(&self) -> DragAction {
unsafe {
from_glib(ffi::gdk_drag_context_get_selected_action(self.to_glib_none().0))
}
}
pub fn get_source_window(&self) -> Window {
unsafe {
from_glib_none(ffi::gdk_drag_context_get_source_window(self.to_glib_none().0))
}
}
pub fn get_suggested_action(&self) -> DragAction {
unsafe {
from_glib(ffi::gdk_drag_context_get_suggested_action(self.to_glib_none().0))
}
}
pub fn list_targets(&self) -> Vec<Atom> {
unsafe {
FromGlibPtrContainer::from_glib_none(ffi::gdk_drag_context_list_targets(self.to_glib_none().0))
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn manage_dnd<P: IsA<Window>>(&self, ipc_window: &P, actions: DragAction) -> bool {
unsafe {
from_glib(ffi::gdk_drag_context_manage_dnd(self.to_glib_none().0, ipc_window.as_ref().to_glib_none().0, actions.to_glib()))
}
}
pub fn set_device(&self, device: &Device) {
unsafe {
ffi::gdk_drag_context_set_device(self.to_glib_none().0, device.to_glib_none().0);
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn set_hotspot(&self, hot_x: i32, hot_y: i32) {
unsafe {
ffi::gdk_drag_context_set_hotspot(self.to_glib_none().0, hot_x, hot_y);
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn connect_action_changed<F: Fn(&DragContext, DragAction) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"action-changed\0".as_ptr() as *const _,
Some(transmute(action_changed_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn connect_cancel<F: Fn(&DragContext, DragCancelReason) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"cancel\0".as_ptr() as *const _,
Some(transmute(cancel_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn connect_dnd_finished<F: Fn(&DragContext) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"dnd-finished\0".as_ptr() as *const _,
Some(transmute(dnd_finished_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn connect_drop_performed<F: Fn(&DragContext, i32) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"drop-performed\0".as_ptr() as *const _,
Some(transmute(drop_performed_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
unsafe extern "C" fn action_changed_trampoline<F: Fn(&DragContext, DragAction) + 'static>(this: *mut ffi::GdkDragContext, action: ffi::GdkDragAction, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
f(&from_glib_borrow(this), from_glib(action))
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
unsafe extern "C" fn cancel_trampoline<F: Fn(&DragContext, DragCancelReason) + 'static>(this: *mut ffi::GdkDragContext, reason: ffi::GdkDragCancelReason, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
f(&from_glib_borrow(this), from_glib(reason))
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
unsafe extern "C" fn dnd_finished_trampoline<F: Fn(&DragContext) + 'static>(this: *mut ffi::GdkDragContext, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
f(&from_glib_borrow(this))
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
unsafe extern "C" fn drop_performed_trampoline<F: Fn(&DragContext, i32) + 'static>(this: *mut ffi::GdkDragContext, time: libc::c_int, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
f(&from_glib_borrow(this), time)
}
impl fmt::Display for DragContext {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "DragContext")
}
}