pub trait TreeViewColumnExt: 'static {
Show 69 methods // Required methods fn add_attribute( &self, cell_renderer: &impl IsA<CellRenderer>, attribute: &str, column: i32 ); fn cell_get_position( &self, cell_renderer: &impl IsA<CellRenderer> ) -> Option<(i32, i32)>; fn cell_get_size( &self, cell_area: Option<&Rectangle> ) -> (i32, i32, i32, i32); fn cell_is_visible(&self) -> bool; fn cell_set_cell_data( &self, tree_model: &impl IsA<TreeModel>, iter: &TreeIter, is_expander: bool, is_expanded: bool ); fn clear(&self); fn clear_attributes(&self, cell_renderer: &impl IsA<CellRenderer>); fn clicked(&self); fn focus_cell(&self, cell: &impl IsA<CellRenderer>); fn alignment(&self) -> f32; fn button(&self) -> Option<Widget>; fn is_clickable(&self) -> bool; fn expands(&self) -> bool; fn fixed_width(&self) -> i32; fn max_width(&self) -> i32; fn min_width(&self) -> i32; fn is_reorderable(&self) -> bool; fn is_resizable(&self) -> bool; fn sizing(&self) -> TreeViewColumnSizing; fn sort_column_id(&self) -> i32; fn is_sort_indicator(&self) -> bool; fn sort_order(&self) -> SortType; fn spacing(&self) -> i32; fn title(&self) -> Option<GString>; fn tree_view(&self) -> Option<Widget>; fn is_visible(&self) -> bool; fn widget(&self) -> Option<Widget>; fn width(&self) -> i32; fn x_offset(&self) -> i32; fn pack_end(&self, cell: &impl IsA<CellRenderer>, expand: bool); fn pack_start(&self, cell: &impl IsA<CellRenderer>, expand: bool); fn queue_resize(&self); fn set_alignment(&self, xalign: f32); fn set_cell_data_func( &self, cell_renderer: &impl IsA<CellRenderer>, func: Option<Box_<dyn Fn(&TreeViewColumn, &CellRenderer, &TreeModel, &TreeIter) + 'static>> ); fn set_clickable(&self, clickable: bool); fn set_expand(&self, expand: bool); fn set_fixed_width(&self, fixed_width: i32); fn set_max_width(&self, max_width: i32); fn set_min_width(&self, min_width: i32); fn set_reorderable(&self, reorderable: bool); fn set_resizable(&self, resizable: bool); fn set_sizing(&self, type_: TreeViewColumnSizing); fn set_sort_column_id(&self, sort_column_id: i32); fn set_sort_indicator(&self, setting: bool); fn set_sort_order(&self, order: SortType); fn set_spacing(&self, spacing: i32); fn set_title(&self, title: &str); fn set_visible(&self, visible: bool); fn set_widget(&self, widget: Option<&impl IsA<Widget>>); fn cell_area(&self) -> Option<CellArea>; fn connect_clicked<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId; fn connect_alignment_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_clickable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_expand_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_fixed_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_max_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_min_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_reorderable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_resizable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_sizing_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_sort_column_id_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_sort_indicator_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_sort_order_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_spacing_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_title_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_visible_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_widget_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_x_offset_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId;
}

Required Methods§

source

fn add_attribute( &self, cell_renderer: &impl IsA<CellRenderer>, attribute: &str, column: i32 )

source

fn cell_get_position( &self, cell_renderer: &impl IsA<CellRenderer> ) -> Option<(i32, i32)>

source

fn cell_get_size(&self, cell_area: Option<&Rectangle>) -> (i32, i32, i32, i32)

source

fn cell_is_visible(&self) -> bool

source

fn cell_set_cell_data( &self, tree_model: &impl IsA<TreeModel>, iter: &TreeIter, is_expander: bool, is_expanded: bool )

source

fn clear(&self)

source

fn clear_attributes(&self, cell_renderer: &impl IsA<CellRenderer>)

source

fn clicked(&self)

source

fn focus_cell(&self, cell: &impl IsA<CellRenderer>)

source

fn alignment(&self) -> f32

source

fn button(&self) -> Option<Widget>

source

fn is_clickable(&self) -> bool

source

fn expands(&self) -> bool

source

fn fixed_width(&self) -> i32

source

fn max_width(&self) -> i32

source

fn min_width(&self) -> i32

source

fn is_reorderable(&self) -> bool

source

fn is_resizable(&self) -> bool

source

fn sizing(&self) -> TreeViewColumnSizing

source

fn sort_column_id(&self) -> i32

source

fn is_sort_indicator(&self) -> bool

source

fn sort_order(&self) -> SortType

source

fn spacing(&self) -> i32

source

fn title(&self) -> Option<GString>

source

fn tree_view(&self) -> Option<Widget>

source

fn is_visible(&self) -> bool

source

fn widget(&self) -> Option<Widget>

source

fn width(&self) -> i32

source

fn x_offset(&self) -> i32

source

fn pack_end(&self, cell: &impl IsA<CellRenderer>, expand: bool)

source

fn pack_start(&self, cell: &impl IsA<CellRenderer>, expand: bool)

source

fn queue_resize(&self)

source

fn set_alignment(&self, xalign: f32)

source

fn set_cell_data_func( &self, cell_renderer: &impl IsA<CellRenderer>, func: Option<Box_<dyn Fn(&TreeViewColumn, &CellRenderer, &TreeModel, &TreeIter) + 'static>> )

source

fn set_clickable(&self, clickable: bool)

source

fn set_expand(&self, expand: bool)

source

fn set_fixed_width(&self, fixed_width: i32)

source

fn set_max_width(&self, max_width: i32)

source

fn set_min_width(&self, min_width: i32)

source

fn set_reorderable(&self, reorderable: bool)

source

fn set_resizable(&self, resizable: bool)

source

fn set_sizing(&self, type_: TreeViewColumnSizing)

source

fn set_sort_column_id(&self, sort_column_id: i32)

source

fn set_sort_indicator(&self, setting: bool)

source

fn set_sort_order(&self, order: SortType)

source

fn set_spacing(&self, spacing: i32)

source

fn set_title(&self, title: &str)

source

fn set_visible(&self, visible: bool)

source

fn set_widget(&self, widget: Option<&impl IsA<Widget>>)

source

fn cell_area(&self) -> Option<CellArea>

source

fn connect_clicked<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_alignment_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_clickable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_expand_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_fixed_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_max_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_min_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_reorderable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_resizable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_sizing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_sort_column_id_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_sort_indicator_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_sort_order_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_spacing_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_visible_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_widget_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_width_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_x_offset_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§