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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use AppChooser;
use Bin;
use Container;
use Dialog;
use DialogFlags;
use Widget;
use Window;
use ffi;
use glib;
use glib::object::Downcast;
use glib::object::IsA;
use glib::translate::*;
use gobject_ffi;
glib_wrapper! {
pub struct AppChooserDialog(Object<ffi::GtkAppChooserDialog>): Dialog, Window, Bin, Container, Widget, AppChooser;
match fn {
get_type => || ffi::gtk_app_chooser_dialog_get_type(),
}
}
impl AppChooserDialog {
pub fn new_for_content_type<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(parent: Q, flags: DialogFlags, content_type: &str) -> AppChooserDialog {
assert_initialized_main_thread!();
let parent = parent.into();
let parent = parent.to_glib_none();
unsafe {
Widget::from_glib_none(ffi::gtk_app_chooser_dialog_new_for_content_type(parent.0, flags.to_glib(), content_type.to_glib_none().0)).downcast_unchecked()
}
}
}
pub trait AppChooserDialogExt {
fn get_heading(&self) -> Option<String>;
fn get_widget(&self) -> Widget;
fn set_heading(&self, heading: &str);
}
impl<O: IsA<AppChooserDialog> + IsA<glib::object::Object>> AppChooserDialogExt for O {
fn get_heading(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::gtk_app_chooser_dialog_get_heading(self.to_glib_none().0))
}
}
fn get_widget(&self) -> Widget {
unsafe {
from_glib_none(ffi::gtk_app_chooser_dialog_get_widget(self.to_glib_none().0))
}
}
fn set_heading(&self, heading: &str) {
unsafe {
ffi::gtk_app_chooser_dialog_set_heading(self.to_glib_none().0, heading.to_glib_none().0);
}
}
}