1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Take a look at the license at the top of the repository in the LICENSE file.

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

/// Generated when a setting is modified.
#[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) }
    }
}