Trait FontButtonExt

Source
pub trait FontButtonExt: 'static {
Show 19 methods // Required methods fn get_font_name(&self) -> Option<GString>; fn get_show_size(&self) -> bool; fn get_show_style(&self) -> bool; fn get_title(&self) -> Option<GString>; fn get_use_font(&self) -> bool; fn get_use_size(&self) -> bool; fn set_font_name(&self, fontname: &str) -> bool; fn set_show_size(&self, show_size: bool); fn set_show_style(&self, show_style: bool); fn set_title(&self, title: &str); fn set_use_font(&self, use_font: bool); fn set_use_size(&self, use_size: bool); fn connect_font_set<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId; fn connect_property_font_name_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_show_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_show_style_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_title_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_use_font_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_use_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId;
}

Required Methodsยง

Source

fn get_font_name(&self) -> Option<GString>

๐Ÿ‘ŽDeprecated
Source

fn get_show_size(&self) -> bool

Source

fn get_show_style(&self) -> bool

Source

fn get_title(&self) -> Option<GString>

Source

fn get_use_font(&self) -> bool

Source

fn get_use_size(&self) -> bool

Source

fn set_font_name(&self, fontname: &str) -> bool

๐Ÿ‘ŽDeprecated
Source

fn set_show_size(&self, show_size: bool)

Source

fn set_show_style(&self, show_style: bool)

Source

fn set_title(&self, title: &str)

Source

fn set_use_font(&self, use_font: bool)

Source

fn set_use_size(&self, use_size: bool)

Source

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

Source

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

๐Ÿ‘ŽDeprecated
Source

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

Source

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

Source

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

Source

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

Source

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

Dyn Compatibilityยง

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementorsยง