use rute_ffi_base::*;
use auto::widget_ffi::*;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetFuncs {
pub destroy: extern "C" fn(self_c: *const RUBase),
pub add_item: extern "C" fn(self_c: *const RUBase, label: *const ::std::os::raw::c_char),
pub clear: extern "C" fn(self_c: *const RUBase),
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetAllFuncs {
pub widget_funcs: *const RUWidgetFuncs,
pub list_widget_funcs: *const RUListWidgetFuncs,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidget {
pub qt_data: *const RUBase,
pub host_data: *const RUBase,
pub all_funcs: *const RUListWidgetAllFuncs,
}