gdk 0.16.2

Rust bindings for the GDK 3 library
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

use glib::translate::*;
use glib::GString;

#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct EventSetting(crate::Event);

event_wrapper!(EventSetting, GdkEventSetting);
event_subtype!(EventSetting, ffi::GDK_SETTING);

impl EventSetting {
    #[doc(alias = "get_name")]
    pub fn name(&self) -> Option<GString> {
        unsafe { from_glib_none(self.as_ref().name) }
    }

    #[doc(alias = "get_action")]
    pub fn action(&self) -> crate::SettingAction {
        unsafe { from_glib(self.as_ref().action) }
    }
}