Trait gtk::TreeModelFilterExt [−][src]
pub trait TreeModelFilterExt {
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 get_property_child_model(&self) -> Option<TreeModel>;
fn connect_property_child_model_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}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 get_property_child_model(&self) -> Option<TreeModel>
fn connect_property_child_model_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<TreeModelFilter> + IsA<Object>> TreeModelFilterExt for O