[][src]Trait gtk::prelude::TreeModelFilterExt

pub trait TreeModelFilterExt: 'static {
    fn clear_cache(&self);
fn convert_child_iter_to_iter(
        &self,
        child_iter: &TreeIter
    ) -> Option<TreeIter>;
fn convert_child_path_to_path(
        &self,
        child_path: &TreePath
    ) -> Option<TreePath>;
fn convert_iter_to_child_iter(&self, filter_iter: &TreeIter) -> TreeIter;
fn convert_path_to_child_path(
        &self,
        filter_path: &TreePath
    ) -> Option<TreePath>;
fn get_model(&self) -> Option<TreeModel>;
fn refilter(&self);
fn set_visible_column(&self, column: i32);
fn set_visible_func<P: Fn(&TreeModel, &TreeIter) -> bool + 'static>(
        &self,
        func: P
    );
fn get_property_child_model(&self) -> Option<TreeModel>; }

Required methods

fn clear_cache(&self)

fn convert_child_iter_to_iter(&self, child_iter: &TreeIter) -> Option<TreeIter>

fn convert_child_path_to_path(&self, child_path: &TreePath) -> Option<TreePath>

fn convert_iter_to_child_iter(&self, filter_iter: &TreeIter) -> TreeIter

fn convert_path_to_child_path(&self, filter_path: &TreePath) -> Option<TreePath>

fn get_model(&self) -> Option<TreeModel>

fn refilter(&self)

fn set_visible_column(&self, column: i32)

fn set_visible_func<P: Fn(&TreeModel, &TreeIter) -> bool + 'static>(
    &self,
    func: P
)

fn get_property_child_model(&self) -> Option<TreeModel>

Loading content...

Implementors

impl<O: IsA<TreeModelFilter>> TreeModelFilterExt for O[src]

Loading content...