1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use gdk;
use gdk_x11_sys;
use glib::translate::*;
use std::fmt;
glib_wrapper! {
pub struct X11DragContext(Object<gdk_x11_sys::GdkX11DragContext, gdk_x11_sys::GdkX11DragContextClass, X11DragContextClass>) @extends gdk::DragContext;
match fn {
get_type => || gdk_x11_sys::gdk_x11_drag_context_get_type(),
}
}
impl X11DragContext {}
impl fmt::Display for X11DragContext {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "X11DragContext")
}
}