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

use crate::Screen;
use glib::translate::*;

impl Screen {
    #[doc(alias = "gdk_screen_get_font_options")]
    #[doc(alias = "get_font_options")]
    pub fn font_options(&self) -> Option<cairo::FontOptions> {
        unsafe {
            from_glib_none(mut_override(ffi::gdk_screen_get_font_options(
                self.to_glib_none().0,
            )))
        }
    }

    #[doc(alias = "gdk_screen_get_setting")]
    #[doc(alias = "get_setting")]
    pub fn setting(&self, name: &str) -> Option<glib::Value> {
        unsafe {
            let mut value = glib::Value::uninitialized();
            let done: bool = from_glib(ffi::gdk_screen_get_setting(
                self.to_glib_none().0,
                name.to_glib_none().0,
                value.to_glib_none_mut().0,
            ));

            if done {
                Some(value)
            } else {
                None
            }
        }
    }
}