Trait gtk::prelude::ListBoxRowExt  
                   
                       [−]
                   
               [src]
pub trait ListBoxRowExt {
    fn changed(&self);
    fn get_activatable(&self) -> bool;
    fn get_header(&self) -> Option<Widget>;
    fn get_index(&self) -> i32;
    fn get_selectable(&self) -> bool;
    fn is_selected(&self) -> bool;
    fn set_activatable(&self, activatable: bool);
    fn set_header<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
        &self, 
        header: Q
    );
    fn set_selectable(&self, selectable: bool);
    fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
}
            Required Methods
fn changed(&self)
fn get_activatable(&self) -> bool
fn get_header(&self) -> Option<Widget>
fn get_index(&self) -> i32
fn get_selectable(&self) -> bool
fn is_selected(&self) -> bool
fn set_activatable(&self, activatable: bool)
fn set_header<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(&self, header: Q)
fn set_selectable(&self, selectable: bool)
fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> u64
Implementors
impl<O: IsA<ListBoxRow> + IsA<Object>> ListBoxRowExt for O