Trait gtk::TreeViewColumnExt [] [src]

pub trait TreeViewColumnExt {
    fn cell_get_position<P: IsA<CellRenderer>>(
        &self,
        cell_renderer: &P
    ) -> Option<(i32, i32)>; fn cell_get_size<'a, P: Into<Option<&'a Rectangle>>>(
        &self,
        cell_area: P
    ) -> (i32, i32, i32, i32); fn cell_is_visible(&self) -> bool; fn cell_set_cell_data<P: IsA<TreeModel>>(
        &self,
        tree_model: &P,
        iter: &TreeIter,
        is_expander: bool,
        is_expanded: bool
    ); fn clicked(&self); fn focus_cell<P: IsA<CellRenderer>>(&self, cell: &P); fn get_alignment(&self) -> f32; fn get_button(&self) -> Option<Widget>; fn get_clickable(&self) -> bool; fn get_expand(&self) -> bool; fn get_fixed_width(&self) -> i32; fn get_max_width(&self) -> i32; fn get_min_width(&self) -> i32; fn get_reorderable(&self) -> bool; fn get_resizable(&self) -> bool; fn get_sizing(&self) -> TreeViewColumnSizing; fn get_sort_column_id(&self) -> i32; fn get_sort_indicator(&self) -> bool; fn get_sort_order(&self) -> SortType; fn get_spacing(&self) -> i32; fn get_title(&self) -> Option<String>; fn get_tree_view(&self) -> Option<Widget>; fn get_visible(&self) -> bool; fn get_widget(&self) -> Option<Widget>; fn get_width(&self) -> i32; fn get_x_offset(&self) -> i32; fn queue_resize(&self); fn set_alignment(&self, xalign: f32); 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<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        widget: Q
    ); fn get_property_cell_area(&self) -> Option<CellArea>; fn connect_clicked<F: Fn(&Self) + 'static>(&self, f: F) -> u64; }

Required Methods

Implementors