pub trait BannerExt: IsA<Banner> + Sealed + 'static {
// Provided methods
fn add_action_button(&self, widget: &impl IsA<Widget>) { ... }
fn remove_action(&self, widget: &impl IsA<Widget>) { ... }
fn set_banner_style(&self, style: BannerStyle) { ... }
fn title(&self) -> GString { ... }
fn set_title(&self, value: &str) { ... }
fn description(&self) -> GString { ... }
fn set_description(&self, value: &str) { ... }
fn style(&self) -> BannerStyle { ... }
fn set_style(&self, value: BannerStyle) { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_description_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_style_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
sourcefn remove_action(&self, widget: &impl IsA<Widget>)
fn remove_action(&self, widget: &impl IsA<Widget>)
fn title(&self) -> GString
fn set_title(&self, value: &str)
fn description(&self) -> GString
fn set_description(&self, value: &str)
fn style(&self) -> BannerStyle
fn set_style(&self, value: BannerStyle)
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_description_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_style_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.