logo
pub trait IconicButtonExt: 'static {
    fn tooltip(&self) -> Option<GString>;
    fn set_tooltip(&self, value: &str);
    fn connect_icon_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_tooltip_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all IconicButton methods.

Implementors

IconicButton

Required Methods

Implementors