Trait atk::prelude::SelectionExt[][src]

pub trait SelectionExt: 'static {
    fn add_selection(&self, i: i32) -> bool;
fn clear_selection(&self) -> bool;
fn get_selection_count(&self) -> i32;
fn is_child_selected(&self, i: i32) -> bool;
fn ref_selection(&self, i: i32) -> Option<Object>;
fn remove_selection(&self, i: i32) -> bool;
fn select_all_selection(&self) -> bool;
fn connect_selection_changed<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn add_selection(&self, i: i32) -> bool[src]

fn clear_selection(&self) -> bool[src]

fn get_selection_count(&self) -> i32[src]

fn is_child_selected(&self, i: i32) -> bool[src]

fn ref_selection(&self, i: i32) -> Option<Object>[src]

fn remove_selection(&self, i: i32) -> bool[src]

fn select_all_selection(&self) -> bool[src]

fn connect_selection_changed<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<Selection>> SelectionExt for O[src]

Loading content...