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
36
37
38
39
40
use Screen;
use ffi;
use cairo;
use glib;
use glib::object::IsA;
use glib::translate::*;
pub trait ScreenExtManual {
fn get_font_options(&self) -> Option<cairo::FontOptions>;
fn get_setting(&self, name: &str) -> Option<glib::Value>;
}
impl<O: IsA<Screen> + IsA<glib::object::Object>> ScreenExtManual for O {
fn get_font_options(&self) -> Option<cairo::FontOptions> {
unsafe {
from_glib_none(mut_override(ffi::gdk_screen_get_font_options(self.to_glib_none().0)))
}
}
fn get_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 == true {
Some(value)
} else {
None
}
}
}
}