Trait gtk::prelude::FontButtonExt
[−]
[src]
pub trait FontButtonExt { fn get_font_name(&self) -> Option<String>; fn get_show_size(&self) -> bool; fn get_show_style(&self) -> bool; fn get_title(&self) -> Option<String>; 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) -> u64; }
Required Methods
fn get_font_name(&self) -> Option<String>
fn get_show_size(&self) -> bool
fn get_show_style(&self) -> bool
fn get_title(&self) -> Option<String>
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) -> u64
Implementors
impl<O: IsA<FontButton> + IsA<Object>> FontButtonExt for O