Trait sourceview5::prelude::ButtonExt
source · pub trait ButtonExt: IsA<Button> + Sealed + 'static {
Show 22 methods
// Provided methods
fn can_shrink(&self) -> bool { ... }
fn child(&self) -> Option<Widget> { ... }
fn has_frame(&self) -> bool { ... }
fn icon_name(&self) -> Option<GString> { ... }
fn label(&self) -> Option<GString> { ... }
fn uses_underline(&self) -> bool { ... }
fn set_can_shrink(&self, can_shrink: bool) { ... }
fn set_child(&self, child: Option<&impl IsA<Widget>>) { ... }
fn set_has_frame(&self, has_frame: bool) { ... }
fn set_icon_name(&self, icon_name: &str) { ... }
fn set_label(&self, label: &str) { ... }
fn set_use_underline(&self, use_underline: bool) { ... }
fn connect_activate<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn emit_activate(&self) { ... }
fn connect_clicked<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn emit_clicked(&self) { ... }
fn connect_can_shrink_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_has_frame_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_icon_name_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_label_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_use_underline_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn can_shrink(&self) -> bool
fn child(&self) -> Option<Widget>
fn has_frame(&self) -> bool
fn icon_name(&self) -> Option<GString>
fn label(&self) -> Option<GString>
fn uses_underline(&self) -> bool
fn set_can_shrink(&self, can_shrink: bool)
fn set_child(&self, child: Option<&impl IsA<Widget>>)
fn set_has_frame(&self, has_frame: bool)
fn set_icon_name(&self, icon_name: &str)
fn set_label(&self, label: &str)
fn set_use_underline(&self, use_underline: bool)
fn connect_activate<F>(&self, f: F) -> SignalHandlerId
fn emit_activate(&self)
fn connect_clicked<F>(&self, f: F) -> SignalHandlerId
fn emit_clicked(&self)
fn connect_can_shrink_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_child_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_has_frame_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_icon_name_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_label_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_use_underline_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.