Trait libhelium::prelude::TipExt

source ·
pub trait TipExt: IsA<Tip> + Sealed + 'static {
    // Provided methods
    fn title(&self) -> GString { ... }
    fn set_title(&self, value: &str) { ... }
    fn image(&self) -> GString { ... }
    fn set_image(&self, value: &str) { ... }
    fn message(&self) -> GString { ... }
    fn set_message(&self, value: &str) { ... }
    fn action_label(&self) -> GString { ... }
    fn set_action_label(&self, value: &str) { ... }
    fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_image_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_message_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_action_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all Tip methods.

§Implementors

Tip

Provided Methods§

source

fn title(&self) -> GString

source

fn set_title(&self, value: &str)

source

fn image(&self) -> GString

source

fn set_image(&self, value: &str)

source

fn message(&self) -> GString

source

fn set_message(&self, value: &str)

source

fn action_label(&self) -> GString

source

fn set_action_label(&self, value: &str)

source

fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_image_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_message_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_action_label_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<Tip>> TipExt for O