Trait sourceview5::prelude::ListBoxRowExt
source · pub trait ListBoxRowExt: IsA<ListBoxRow> + Sealed + 'static {
Show 16 methods
// Provided methods
fn changed(&self) { ... }
fn is_activatable(&self) -> bool { ... }
fn child(&self) -> Option<Widget> { ... }
fn header(&self) -> Option<Widget> { ... }
fn index(&self) -> i32 { ... }
fn is_selectable(&self) -> bool { ... }
fn is_selected(&self) -> bool { ... }
fn set_activatable(&self, activatable: bool) { ... }
fn set_child(&self, child: Option<&impl IsA<Widget>>) { ... }
fn set_header(&self, header: Option<&impl IsA<Widget>>) { ... }
fn set_selectable(&self, selectable: bool) { ... }
fn connect_activate<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn emit_activate(&self) { ... }
fn connect_activatable_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_child_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_selectable_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn changed(&self)
fn is_activatable(&self) -> bool
fn child(&self) -> Option<Widget>
fn header(&self) -> Option<Widget>
fn index(&self) -> i32
fn is_selectable(&self) -> bool
fn is_selected(&self) -> bool
fn set_activatable(&self, activatable: bool)
fn set_child(&self, child: Option<&impl IsA<Widget>>)
fn set_header(&self, header: Option<&impl IsA<Widget>>)
fn set_selectable(&self, selectable: bool)
fn connect_activate<F>(&self, f: F) -> SignalHandlerId
fn emit_activate(&self)
fn connect_activatable_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_child_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_selectable_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.