use Adjustment;
use Buildable;
use Container;
use FlowBoxChild;
use MovementStep;
use Orientable;
use SelectionMode;
use Widget;
use ffi;
#[cfg(any(feature = "v3_18", feature = "dox"))]
use gio;
use glib;
use glib::object::Cast;
use glib::object::IsA;
use glib::object::ObjectExt;
use glib::signal::SignalHandlerId;
use glib::signal::connect_raw;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use libc;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;
glib_wrapper! {
pub struct FlowBox(Object<ffi::GtkFlowBox, ffi::GtkFlowBoxClass, FlowBoxClass>) @extends Container, Widget, @implements Buildable, Orientable;
match fn {
get_type => || ffi::gtk_flow_box_get_type(),
}
}
impl FlowBox {
pub fn new() -> FlowBox {
assert_initialized_main_thread!();
unsafe {
Widget::from_glib_none(ffi::gtk_flow_box_new()).unsafe_cast()
}
}
}
impl Default for FlowBox {
fn default() -> Self {
Self::new()
}
}
pub const NONE_FLOW_BOX: Option<&FlowBox> = None;
pub trait FlowBoxExt: 'static {
#[cfg(any(feature = "v3_18", feature = "dox"))]
fn bind_model<'a, P: IsA<gio::ListModel> + 'a, Q: Into<Option<&'a P>>, R: Fn(&glib::Object) -> Widget + 'static>(&self, model: Q, create_widget_func: R);
fn get_activate_on_single_click(&self) -> bool;
fn get_child_at_index(&self, idx: i32) -> Option<FlowBoxChild>;
#[cfg(any(feature = "v3_22_6", feature = "dox"))]
fn get_child_at_pos(&self, x: i32, y: i32) -> Option<FlowBoxChild>;
fn get_column_spacing(&self) -> u32;
fn get_homogeneous(&self) -> bool;
fn get_max_children_per_line(&self) -> u32;
fn get_min_children_per_line(&self) -> u32;
fn get_row_spacing(&self) -> u32;
fn get_selected_children(&self) -> Vec<FlowBoxChild>;
fn get_selection_mode(&self) -> SelectionMode;
fn insert<P: IsA<Widget>>(&self, widget: &P, position: i32);
fn invalidate_filter(&self);
fn invalidate_sort(&self);
fn select_all(&self);
fn select_child<P: IsA<FlowBoxChild>>(&self, child: &P);
fn selected_foreach<P: FnMut(&FlowBox, &FlowBoxChild)>(&self, func: P);
fn set_activate_on_single_click(&self, single: bool);
fn set_column_spacing(&self, spacing: u32);
fn set_filter_func(&self, filter_func: Option<Box<dyn Fn(&FlowBoxChild) -> bool + 'static>>);
fn set_hadjustment<P: IsA<Adjustment>>(&self, adjustment: &P);
fn set_homogeneous(&self, homogeneous: bool);
fn set_max_children_per_line(&self, n_children: u32);
fn set_min_children_per_line(&self, n_children: u32);
fn set_row_spacing(&self, spacing: u32);
fn set_selection_mode(&self, mode: SelectionMode);
fn set_sort_func(&self, sort_func: Option<Box<dyn Fn(&FlowBoxChild, &FlowBoxChild) -> i32 + 'static>>);
fn set_vadjustment<P: IsA<Adjustment>>(&self, adjustment: &P);
fn unselect_all(&self);
fn unselect_child<P: IsA<FlowBoxChild>>(&self, child: &P);
fn connect_activate_cursor_child<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_activate_cursor_child(&self);
fn connect_child_activated<F: Fn(&Self, &FlowBoxChild) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_move_cursor<F: Fn(&Self, MovementStep, i32) -> bool + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_move_cursor(&self, step: MovementStep, count: i32) -> bool;
fn connect_select_all<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_select_all(&self);
fn connect_selected_children_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_toggle_cursor_child<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_toggle_cursor_child(&self);
fn connect_unselect_all<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_unselect_all(&self);
fn connect_property_activate_on_single_click_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_column_spacing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_homogeneous_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_max_children_per_line_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_min_children_per_line_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_row_spacing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_selection_mode_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<FlowBox>> FlowBoxExt for O {
#[cfg(any(feature = "v3_18", feature = "dox"))]
fn bind_model<'a, P: IsA<gio::ListModel> + 'a, Q: Into<Option<&'a P>>, R: Fn(&glib::Object) -> Widget + 'static>(&self, model: Q, create_widget_func: R) {
let model = model.into();
let create_widget_func_data: Box_<R> = Box::new(create_widget_func);
unsafe extern "C" fn create_widget_func_func<'a, P: IsA<gio::ListModel> + 'a, Q: Into<Option<&'a P>>, R: Fn(&glib::Object) -> Widget + 'static>(item: *mut gobject_ffi::GObject, user_data: glib_ffi::gpointer) -> *mut ffi::GtkWidget {
let item = from_glib_borrow(item);
let callback: &R = &*(user_data as *mut _);
let res = (*callback)(&item);
res.to_glib_full()
}
let create_widget_func = Some(create_widget_func_func::<'a, P, Q, R> as _);
unsafe extern "C" fn user_data_free_func_func<'a, P: IsA<gio::ListModel> + 'a, Q: Into<Option<&'a P>>, R: Fn(&glib::Object) -> Widget + 'static>(data: glib_ffi::gpointer) {
let _callback: Box_<R> = Box_::from_raw(data as *mut _);
}
let destroy_call4 = Some(user_data_free_func_func::<'a, P, Q, R> as _);
let super_callback0: Box_<R> = create_widget_func_data;
unsafe {
ffi::gtk_flow_box_bind_model(self.as_ref().to_glib_none().0, model.map(|p| p.as_ref()).to_glib_none().0, create_widget_func, Box::into_raw(super_callback0) as *mut _, destroy_call4);
}
}
fn get_activate_on_single_click(&self) -> bool {
unsafe {
from_glib(ffi::gtk_flow_box_get_activate_on_single_click(self.as_ref().to_glib_none().0))
}
}
fn get_child_at_index(&self, idx: i32) -> Option<FlowBoxChild> {
unsafe {
from_glib_none(ffi::gtk_flow_box_get_child_at_index(self.as_ref().to_glib_none().0, idx))
}
}
#[cfg(any(feature = "v3_22_6", feature = "dox"))]
fn get_child_at_pos(&self, x: i32, y: i32) -> Option<FlowBoxChild> {
unsafe {
from_glib_none(ffi::gtk_flow_box_get_child_at_pos(self.as_ref().to_glib_none().0, x, y))
}
}
fn get_column_spacing(&self) -> u32 {
unsafe {
ffi::gtk_flow_box_get_column_spacing(self.as_ref().to_glib_none().0)
}
}
fn get_homogeneous(&self) -> bool {
unsafe {
from_glib(ffi::gtk_flow_box_get_homogeneous(self.as_ref().to_glib_none().0))
}
}
fn get_max_children_per_line(&self) -> u32 {
unsafe {
ffi::gtk_flow_box_get_max_children_per_line(self.as_ref().to_glib_none().0)
}
}
fn get_min_children_per_line(&self) -> u32 {
unsafe {
ffi::gtk_flow_box_get_min_children_per_line(self.as_ref().to_glib_none().0)
}
}
fn get_row_spacing(&self) -> u32 {
unsafe {
ffi::gtk_flow_box_get_row_spacing(self.as_ref().to_glib_none().0)
}
}
fn get_selected_children(&self) -> Vec<FlowBoxChild> {
unsafe {
FromGlibPtrContainer::from_glib_container(ffi::gtk_flow_box_get_selected_children(self.as_ref().to_glib_none().0))
}
}
fn get_selection_mode(&self) -> SelectionMode {
unsafe {
from_glib(ffi::gtk_flow_box_get_selection_mode(self.as_ref().to_glib_none().0))
}
}
fn insert<P: IsA<Widget>>(&self, widget: &P, position: i32) {
unsafe {
ffi::gtk_flow_box_insert(self.as_ref().to_glib_none().0, widget.as_ref().to_glib_none().0, position);
}
}
fn invalidate_filter(&self) {
unsafe {
ffi::gtk_flow_box_invalidate_filter(self.as_ref().to_glib_none().0);
}
}
fn invalidate_sort(&self) {
unsafe {
ffi::gtk_flow_box_invalidate_sort(self.as_ref().to_glib_none().0);
}
}
fn select_all(&self) {
unsafe {
ffi::gtk_flow_box_select_all(self.as_ref().to_glib_none().0);
}
}
fn select_child<P: IsA<FlowBoxChild>>(&self, child: &P) {
unsafe {
ffi::gtk_flow_box_select_child(self.as_ref().to_glib_none().0, child.as_ref().to_glib_none().0);
}
}
fn selected_foreach<P: FnMut(&FlowBox, &FlowBoxChild)>(&self, func: P) {
let func_data: P = func;
unsafe extern "C" fn func_func<P: FnMut(&FlowBox, &FlowBoxChild)>(box_: *mut ffi::GtkFlowBox, child: *mut ffi::GtkFlowBoxChild, user_data: glib_ffi::gpointer) {
let box_ = from_glib_borrow(box_);
let child = from_glib_borrow(child);
let callback: *mut P = user_data as *const _ as usize as *mut P;
(*callback)(&box_, &child);
}
let func = Some(func_func::<P> as _);
let super_callback0: &P = &func_data;
unsafe {
ffi::gtk_flow_box_selected_foreach(self.as_ref().to_glib_none().0, func, super_callback0 as *const _ as usize as *mut _);
}
}
fn set_activate_on_single_click(&self, single: bool) {
unsafe {
ffi::gtk_flow_box_set_activate_on_single_click(self.as_ref().to_glib_none().0, single.to_glib());
}
}
fn set_column_spacing(&self, spacing: u32) {
unsafe {
ffi::gtk_flow_box_set_column_spacing(self.as_ref().to_glib_none().0, spacing);
}
}
fn set_filter_func(&self, filter_func: Option<Box<dyn Fn(&FlowBoxChild) -> bool + 'static>>) {
let filter_func_data: Box_<Option<Box<dyn Fn(&FlowBoxChild) -> bool + 'static>>> = Box::new(filter_func);
unsafe extern "C" fn filter_func_func(child: *mut ffi::GtkFlowBoxChild, user_data: glib_ffi::gpointer) -> glib_ffi::gboolean {
let child = from_glib_borrow(child);
let callback: &Option<Box<dyn Fn(&FlowBoxChild) -> bool + 'static>> = &*(user_data as *mut _);
let res = if let Some(ref callback) = *callback {
callback(&child)
} else {
panic!("cannot get closure...")
};
res.to_glib()
}
let filter_func = if filter_func_data.is_some() { Some(filter_func_func as _) } else { None };
unsafe extern "C" fn destroy_func(data: glib_ffi::gpointer) {
let _callback: Box_<Option<Box<dyn Fn(&FlowBoxChild) -> bool + 'static>>> = Box_::from_raw(data as *mut _);
}
let destroy_call3 = Some(destroy_func as _);
let super_callback0: Box_<Option<Box<dyn Fn(&FlowBoxChild) -> bool + 'static>>> = filter_func_data;
unsafe {
ffi::gtk_flow_box_set_filter_func(self.as_ref().to_glib_none().0, filter_func, Box::into_raw(super_callback0) as *mut _, destroy_call3);
}
}
fn set_hadjustment<P: IsA<Adjustment>>(&self, adjustment: &P) {
unsafe {
ffi::gtk_flow_box_set_hadjustment(self.as_ref().to_glib_none().0, adjustment.as_ref().to_glib_none().0);
}
}
fn set_homogeneous(&self, homogeneous: bool) {
unsafe {
ffi::gtk_flow_box_set_homogeneous(self.as_ref().to_glib_none().0, homogeneous.to_glib());
}
}
fn set_max_children_per_line(&self, n_children: u32) {
unsafe {
ffi::gtk_flow_box_set_max_children_per_line(self.as_ref().to_glib_none().0, n_children);
}
}
fn set_min_children_per_line(&self, n_children: u32) {
unsafe {
ffi::gtk_flow_box_set_min_children_per_line(self.as_ref().to_glib_none().0, n_children);
}
}
fn set_row_spacing(&self, spacing: u32) {
unsafe {
ffi::gtk_flow_box_set_row_spacing(self.as_ref().to_glib_none().0, spacing);
}
}
fn set_selection_mode(&self, mode: SelectionMode) {
unsafe {
ffi::gtk_flow_box_set_selection_mode(self.as_ref().to_glib_none().0, mode.to_glib());
}
}
fn set_sort_func(&self, sort_func: Option<Box<dyn Fn(&FlowBoxChild, &FlowBoxChild) -> i32 + 'static>>) {
let sort_func_data: Box_<Option<Box<dyn Fn(&FlowBoxChild, &FlowBoxChild) -> i32 + 'static>>> = Box::new(sort_func);
unsafe extern "C" fn sort_func_func(child1: *mut ffi::GtkFlowBoxChild, child2: *mut ffi::GtkFlowBoxChild, user_data: glib_ffi::gpointer) -> libc::c_int {
let child1 = from_glib_borrow(child1);
let child2 = from_glib_borrow(child2);
let callback: &Option<Box<dyn Fn(&FlowBoxChild, &FlowBoxChild) -> i32 + 'static>> = &*(user_data as *mut _);
let res = if let Some(ref callback) = *callback {
callback(&child1, &child2)
} else {
panic!("cannot get closure...")
};
res
}
let sort_func = if sort_func_data.is_some() { Some(sort_func_func as _) } else { None };
unsafe extern "C" fn destroy_func(data: glib_ffi::gpointer) {
let _callback: Box_<Option<Box<dyn Fn(&FlowBoxChild, &FlowBoxChild) -> i32 + 'static>>> = Box_::from_raw(data as *mut _);
}
let destroy_call3 = Some(destroy_func as _);
let super_callback0: Box_<Option<Box<dyn Fn(&FlowBoxChild, &FlowBoxChild) -> i32 + 'static>>> = sort_func_data;
unsafe {
ffi::gtk_flow_box_set_sort_func(self.as_ref().to_glib_none().0, sort_func, Box::into_raw(super_callback0) as *mut _, destroy_call3);
}
}
fn set_vadjustment<P: IsA<Adjustment>>(&self, adjustment: &P) {
unsafe {
ffi::gtk_flow_box_set_vadjustment(self.as_ref().to_glib_none().0, adjustment.as_ref().to_glib_none().0);
}
}
fn unselect_all(&self) {
unsafe {
ffi::gtk_flow_box_unselect_all(self.as_ref().to_glib_none().0);
}
}
fn unselect_child<P: IsA<FlowBoxChild>>(&self, child: &P) {
unsafe {
ffi::gtk_flow_box_unselect_child(self.as_ref().to_glib_none().0, child.as_ref().to_glib_none().0);
}
}
fn connect_activate_cursor_child<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"activate-cursor-child\0".as_ptr() as *const _,
Some(transmute(activate_cursor_child_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_activate_cursor_child(&self) {
let _ = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("activate-cursor-child", &[]).unwrap() };
}
fn connect_child_activated<F: Fn(&Self, &FlowBoxChild) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"child-activated\0".as_ptr() as *const _,
Some(transmute(child_activated_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_move_cursor<F: Fn(&Self, MovementStep, i32) -> bool + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"move-cursor\0".as_ptr() as *const _,
Some(transmute(move_cursor_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_move_cursor(&self, step: MovementStep, count: i32) -> bool {
let res = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("move-cursor", &[&step, &count]).unwrap() };
res.unwrap().get().unwrap()
}
fn connect_select_all<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"select-all\0".as_ptr() as *const _,
Some(transmute(select_all_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_select_all(&self) {
let _ = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("select-all", &[]).unwrap() };
}
fn connect_selected_children_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"selected-children-changed\0".as_ptr() as *const _,
Some(transmute(selected_children_changed_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_toggle_cursor_child<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"toggle-cursor-child\0".as_ptr() as *const _,
Some(transmute(toggle_cursor_child_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_toggle_cursor_child(&self) {
let _ = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("toggle-cursor-child", &[]).unwrap() };
}
fn connect_unselect_all<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"unselect-all\0".as_ptr() as *const _,
Some(transmute(unselect_all_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn emit_unselect_all(&self) {
let _ = unsafe { glib::Object::from_glib_borrow(self.to_glib_none().0 as *mut gobject_ffi::GObject).emit("unselect-all", &[]).unwrap() };
}
fn connect_property_activate_on_single_click_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::activate-on-single-click\0".as_ptr() as *const _,
Some(transmute(notify_activate_on_single_click_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_column_spacing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::column-spacing\0".as_ptr() as *const _,
Some(transmute(notify_column_spacing_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_homogeneous_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::homogeneous\0".as_ptr() as *const _,
Some(transmute(notify_homogeneous_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_max_children_per_line_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::max-children-per-line\0".as_ptr() as *const _,
Some(transmute(notify_max_children_per_line_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_min_children_per_line_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::min-children-per-line\0".as_ptr() as *const _,
Some(transmute(notify_min_children_per_line_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_row_spacing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::row-spacing\0".as_ptr() as *const _,
Some(transmute(notify_row_spacing_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_selection_mode_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::selection-mode\0".as_ptr() as *const _,
Some(transmute(notify_selection_mode_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
unsafe extern "C" fn activate_cursor_child_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn child_activated_trampoline<P, F: Fn(&P, &FlowBoxChild) + 'static>(this: *mut ffi::GtkFlowBox, child: *mut ffi::GtkFlowBoxChild, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast(), &from_glib_borrow(child))
}
unsafe extern "C" fn move_cursor_trampoline<P, F: Fn(&P, MovementStep, i32) -> bool + 'static>(this: *mut ffi::GtkFlowBox, step: ffi::GtkMovementStep, count: libc::c_int, f: glib_ffi::gpointer) -> glib_ffi::gboolean
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast(), from_glib(step), count).to_glib()
}
unsafe extern "C" fn select_all_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn selected_children_changed_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn toggle_cursor_child_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn unselect_all_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_activate_on_single_click_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_column_spacing_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_homogeneous_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_max_children_per_line_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_min_children_per_line_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_row_spacing_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_selection_mode_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GtkFlowBox, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FlowBox> {
let f: &F = transmute(f);
f(&FlowBox::from_glib_borrow(this).unsafe_cast())
}
impl fmt::Display for FlowBox {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "FlowBox")
}
}