[][src]Trait gtk::FontChooserExt

pub trait FontChooserExt: 'static {
    fn get_font(&self) -> Option<GString>;
fn get_font_desc(&self) -> Option<FontDescription>;
fn get_font_face(&self) -> Option<FontFace>;
fn get_font_family(&self) -> Option<FontFamily>;
fn get_font_features(&self) -> Option<GString>;
fn get_font_map(&self) -> Option<FontMap>;
fn get_font_size(&self) -> i32;
fn get_language(&self) -> Option<GString>;
fn get_level(&self) -> FontChooserLevel;
fn get_preview_text(&self) -> Option<GString>;
fn get_show_preview_entry(&self) -> bool;
fn set_filter_func(
        &self,
        filter: Option<Box_<dyn Fn(&FontFamily, &FontFace) -> bool + 'static>>
    );
fn set_font(&self, fontname: &str);
fn set_font_desc(&self, font_desc: &FontDescription);
fn set_font_map<P: IsA<FontMap>>(&self, fontmap: Option<&P>);
fn set_language(&self, language: &str);
fn set_level(&self, level: FontChooserLevel);
fn set_preview_text(&self, text: &str);
fn set_show_preview_entry(&self, show_preview_entry: bool);
fn connect_font_activated<F: Fn(&Self, &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_font_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_font_desc_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_font_features_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_language_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_level_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_preview_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_show_preview_entry_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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

fn get_font_desc(&self) -> Option<FontDescription>

fn get_font_face(&self) -> Option<FontFace>

fn get_font_family(&self) -> Option<FontFamily>

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

fn get_font_map(&self) -> Option<FontMap>

fn get_font_size(&self) -> i32

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

fn get_level(&self) -> FontChooserLevel

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

fn get_show_preview_entry(&self) -> bool

fn set_filter_func(
    &self,
    filter: Option<Box_<dyn Fn(&FontFamily, &FontFace) -> bool + 'static>>
)

fn set_font(&self, fontname: &str)

fn set_font_desc(&self, font_desc: &FontDescription)

fn set_font_map<P: IsA<FontMap>>(&self, fontmap: Option<&P>)

fn set_language(&self, language: &str)

fn set_level(&self, level: FontChooserLevel)

fn set_preview_text(&self, text: &str)

fn set_show_preview_entry(&self, show_preview_entry: bool)

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<FontChooser>> FontChooserExt for O[src]

Loading content...