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
use rute_ffi_base::*;
#[allow(unused_imports)]
use auto::list_widget_ffi::RUListWidget;
#[allow(unused_imports)]
use std::os::raw::c_void;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetItemFuncs {
pub destroy: extern "C" fn(self_c: *const RUBase),
pub list_widget: extern "C" fn(self_c: *const RUBase) -> RUListWidget,
pub set_selected: extern "C" fn(self_c: *const RUBase, select: bool),
pub is_selected: extern "C" fn(self_c: *const RUBase) -> bool,
pub set_hidden: extern "C" fn(self_c: *const RUBase, hide: bool),
pub is_hidden: extern "C" fn(self_c: *const RUBase) -> bool,
pub text: extern "C" fn(self_c: *const RUBase) -> *const ::std::os::raw::c_char,
pub set_text: extern "C" fn(self_c: *const RUBase, text: *const ::std::os::raw::c_char),
pub status_tip: extern "C" fn(self_c: *const RUBase) -> *const ::std::os::raw::c_char,
pub set_status_tip:
extern "C" fn(self_c: *const RUBase, status_tip: *const ::std::os::raw::c_char),
pub tool_tip: extern "C" fn(self_c: *const RUBase) -> *const ::std::os::raw::c_char,
pub set_tool_tip: extern "C" fn(self_c: *const RUBase, tool_tip: *const ::std::os::raw::c_char),
pub whats_this: extern "C" fn(self_c: *const RUBase) -> *const ::std::os::raw::c_char,
pub set_whats_this:
extern "C" fn(self_c: *const RUBase, whats_this: *const ::std::os::raw::c_char),
pub text_alignment: extern "C" fn(self_c: *const RUBase) -> i32,
pub set_text_alignment: extern "C" fn(self_c: *const RUBase, alignment: i32),
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetItemAllFuncs {
pub list_widget_item_funcs: *const RUListWidgetItemFuncs,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetItem {
pub qt_data: *const RUBase,
pub host_data: *const RUBase,
pub all_funcs: *const RUListWidgetItemAllFuncs,
}