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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
use ListModel;
use ffi;
#[cfg(any(feature = "v2_44", feature = "dox"))]
use glib;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib_wrapper! {
pub struct ListStore(Object<ffi::GListStore, ffi::GListStoreClass, ListStoreClass>) @implements ListModel;
match fn {
get_type => || ffi::g_list_store_get_type(),
}
}
impl ListStore {
#[cfg(any(feature = "v2_44", feature = "dox"))]
pub fn new(item_type: glib::types::Type) -> ListStore {
unsafe {
from_glib_full(ffi::g_list_store_new(item_type.to_glib()))
}
}
}
pub const NONE_LIST_STORE: Option<&ListStore> = None;
pub trait ListStoreExt: 'static {
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn append<P: IsA<glib::Object>>(&self, item: &P);
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn insert<P: IsA<glib::Object>>(&self, position: u32, item: &P);
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn remove(&self, position: u32);
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn remove_all(&self);
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn splice(&self, position: u32, n_removals: u32, additions: &[glib::Object]);
}
impl<O: IsA<ListStore>> ListStoreExt for O {
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn append<P: IsA<glib::Object>>(&self, item: &P) {
unsafe {
ffi::g_list_store_append(self.as_ref().to_glib_none().0, item.as_ref().to_glib_none().0);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn insert<P: IsA<glib::Object>>(&self, position: u32, item: &P) {
unsafe {
ffi::g_list_store_insert(self.as_ref().to_glib_none().0, position, item.as_ref().to_glib_none().0);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn remove(&self, position: u32) {
unsafe {
ffi::g_list_store_remove(self.as_ref().to_glib_none().0, position);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn remove_all(&self) {
unsafe {
ffi::g_list_store_remove_all(self.as_ref().to_glib_none().0);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn splice(&self, position: u32, n_removals: u32, additions: &[glib::Object]) {
let n_additions = additions.len() as u32;
unsafe {
ffi::g_list_store_splice(self.as_ref().to_glib_none().0, position, n_removals, additions.to_glib_none().0, n_additions);
}
}
}
impl fmt::Display for ListStore {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "ListStore")
}
}