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
41
42
43
44
45
46
47
48
49
50
51
52
use MainContext;
use ffi;
use translate::*;
glib_wrapper! {
pub struct MainLoop(Shared<ffi::GMainLoop>);
match fn {
ref => |ptr| ffi::g_main_loop_ref(ptr),
unref => |ptr| ffi::g_main_loop_unref(ptr),
}
}
impl MainLoop {
pub fn new<'a, P: Into<Option<&'a MainContext>>>(context: P, is_running: bool) -> MainLoop {
let context = context.into();
let context = context.to_glib_none();
unsafe {
from_glib_full(ffi::g_main_loop_new(context.0, is_running.to_glib()))
}
}
pub fn get_context(&self) -> Option<MainContext> {
unsafe {
from_glib_none(ffi::g_main_loop_get_context(self.to_glib_none().0))
}
}
pub fn is_running(&self) -> bool {
unsafe {
from_glib(ffi::g_main_loop_is_running(self.to_glib_none().0))
}
}
pub fn quit(&self) {
unsafe {
ffi::g_main_loop_quit(self.to_glib_none().0);
}
}
pub fn run(&self) {
unsafe {
ffi::g_main_loop_run(self.to_glib_none().0);
}
}
}
unsafe impl Send for MainLoop {}
unsafe impl Sync for MainLoop {}