gdkx11/auto/x11_drag_context.rs
1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use std::fmt;
6
7glib::wrapper! {
8 ///
9 ///
10 /// # Implements
11 ///
12 /// [`trait@gdk::prelude::DragContextExt`]
13 #[doc(alias = "GdkX11DragContext")]
14 pub struct X11DragContext(Object<ffi::GdkX11DragContext, ffi::GdkX11DragContextClass>) @extends gdk::DragContext;
15
16 match fn {
17 type_ => || ffi::gdk_x11_drag_context_get_type(),
18 }
19}
20
21impl X11DragContext {}
22
23impl fmt::Display for X11DragContext {
24 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
25 f.write_str("X11DragContext")
26 }
27}