// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use crate::Drop;
use glib::{prelude::*, translate::*};
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),
}
}
impl StaticType for DNDEvent {
fn static_type() -> glib::Type {
unsafe { from_glib(ffi::gdk_dnd_event_get_type()) }
}
}
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)) }
}
}