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
use ffi;
use glib::translate::*;
use glib::object::{Cast, IsA};
use std::ptr;
use RecentChooserDialog;
use RecentManager;
use Widget;
use Window;
impl RecentChooserDialog {
pub fn new<'a, I: Into<Option<&'a str>>, T: IsA<Window>>(
title: I,
parent: Option<&T>,
) -> RecentChooserDialog {
assert_initialized_main_thread!();
let title = title.into();
unsafe {
Widget::from_glib_none(
ffi::gtk_recent_chooser_dialog_new(title.to_glib_none().0, parent.map(|p| p.as_ref()).to_glib_none().0,
ptr::null_mut()))
.unsafe_cast()
}
}
pub fn new_for_manager<'a, I: Into<Option<&'a str>>, T: IsA<Window>>(
title: I,
parent: Option<&T>,
manager: &RecentManager,
) -> RecentChooserDialog {
assert_initialized_main_thread!();
let title = title.into();
unsafe {
Widget::from_glib_none(
ffi::gtk_recent_chooser_dialog_new_for_manager(title.to_glib_none().0,
parent.map(|p| p.as_ref()).to_glib_none().0, manager.to_glib_none().0, ptr::null_mut()))
.unsafe_cast()
}
}
}