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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// DO NOT EDIT

use crate::ffi;
use glib::translate::*;

glib::wrapper! {
    ///
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`]
    #[doc(alias = "PanelInhibitor")]
    pub struct Inhibitor(Object<ffi::PanelInhibitor, ffi::PanelInhibitorClass>);

    match fn {
        type_ => || ffi::panel_inhibitor_get_type(),
    }
}

impl Inhibitor {
    #[doc(alias = "panel_inhibitor_uninhibit")]
    pub fn uninhibit(&self) {
        unsafe {
            ffi::panel_inhibitor_uninhibit(self.to_glib_none().0);
        }
    }
}