Trait sourceview5::prelude::MapExt

source ·
pub trait MapExt: IsA<Map> + Sealed + 'static {
    // Provided methods
    fn view(&self) -> Option<View> { ... }
    fn set_view(&self, view: &impl IsA<View>) { ... }
    fn font_desc(&self) -> Option<FontDescription> { ... }
    fn set_font_desc(&self, font_desc: Option<&FontDescription>) { ... }
    fn connect_font_desc_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_view_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all Map methods.

§Implementors

Map

Provided Methods§

source

fn view(&self) -> Option<View>

Gets the view property, which is the view this widget is mapping.

§Returns

a #GtkSourceView or None.

source

fn set_view(&self, view: &impl IsA<View>)

Sets the view that @self will be doing the mapping to.

§view

a #GtkSourceView

source

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

source

fn set_font_desc(&self, font_desc: Option<&FontDescription>)

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<Map>> MapExt for O