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
use crate::Surface;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkDragSurface")]
pub struct DragSurface(Interface<ffi::GdkDragSurface, ffi::GdkDragSurfaceInterface>) @requires Surface;
match fn {
type_ => || ffi::gdk_drag_surface_get_type(),
}
}
impl DragSurface {
pub const NONE: Option<&'static DragSurface> = None;
}
pub trait DragSurfaceExt: 'static {
#[doc(alias = "gdk_drag_surface_present")]
fn present(&self, width: i32, height: i32) -> bool;
}
impl<O: IsA<DragSurface>> DragSurfaceExt for O {
fn present(&self, width: i32, height: i32) -> bool {
unsafe {
from_glib(ffi::gdk_drag_surface_present(
self.as_ref().to_glib_none().0,
width,
height,
))
}
}
}
impl fmt::Display for DragSurface {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("DragSurface")
}
}