use ListModel;
use ffi;
use glib;
#[cfg(any(feature = "v2_44", feature = "dox"))]
use glib::object::Downcast;
use glib::object::IsA;
#[cfg(any(feature = "v2_44", feature = "dox"))]
use glib::signal::SignalHandlerId;
#[cfg(any(feature = "v2_44", feature = "dox"))]
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
#[cfg(any(feature = "v2_44", feature = "dox"))]
use std::boxed::Box as Box_;
use std::mem;
#[cfg(any(feature = "v2_44", feature = "dox"))]
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct ListStore(Object<ffi::GListStore, ffi::GListStoreClass>): 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 trait ListStoreExt {
#[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]);
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn connect_property_item_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<ListStore> + IsA<glib::object::Object>> 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.to_glib_none().0, item.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.to_glib_none().0, position, item.to_glib_none().0);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn remove(&self, position: u32) {
unsafe {
ffi::g_list_store_remove(self.to_glib_none().0, position);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn remove_all(&self) {
unsafe {
ffi::g_list_store_remove_all(self.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.to_glib_none().0, position, n_removals, additions.to_glib_none().0, n_additions);
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
fn connect_property_item_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "notify::item-type",
transmute(notify_item_type_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
#[cfg(any(feature = "v2_44", feature = "dox"))]
unsafe extern "C" fn notify_item_type_trampoline<P>(this: *mut ffi::GListStore, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<ListStore> {
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&ListStore::from_glib_borrow(this).downcast_unchecked())
}