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
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::{Drop, EventType};
use glib::translate::*;
use std::fmt;

glib::wrapper! {
    /// An event related to drag and drop operations.
    #[doc(alias = "GdkDNDEvent")]
    pub struct DNDEvent(Shared<ffi::GdkDNDEvent>);

    match fn {
        ref => |ptr| ffi::gdk_event_ref(ptr as *mut ffi::GdkEvent),
        unref => |ptr| ffi::gdk_event_unref(ptr as *mut ffi::GdkEvent),
    }
}

define_event! {
    DNDEvent,
    ffi::GdkDNDEvent,
    ffi::gdk_dnd_event_get_type,
    &[EventType::DragEnter, EventType::DragLeave, EventType::DragMotion, EventType::DropStart]
}

impl DNDEvent {
    /// Gets the [`Drop`][crate::Drop] object from a DND event.
    ///
    /// # Returns
    ///
    /// the drop
    #[doc(alias = "gdk_dnd_event_get_drop")]
    #[doc(alias = "get_drop")]
    pub fn drop(&self) -> Option<Drop> {
        unsafe { from_glib_none(ffi::gdk_dnd_event_get_drop(self.to_glib_none().0)) }
    }
}

impl fmt::Display for DNDEvent {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("DNDEvent")
            .field("drop", &self.drop())
            .finish()
    }
}