Trait sourceview5::prelude::GutterRendererTextExt

source ·
pub trait GutterRendererTextExt: IsA<GutterRendererText> + Sealed + 'static {
    // Provided methods
    fn measure(&self, text: &str) -> (i32, i32) { ... }
    fn measure_markup(&self, markup: &str) -> (i32, i32) { ... }
    fn set_markup(&self, markup: &str) { ... }
    fn set_text(&self, text: &str) { ... }
    fn markup(&self) -> Option<GString> { ... }
    fn text(&self) -> Option<GString> { ... }
    fn connect_markup_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all GutterRendererText methods.

§Implementors

GutterRendererText

Provided Methods§

source

fn measure(&self, text: &str) -> (i32, i32)

Measures the text provided using the pango layout used by the #GtkSourceGutterRendererText.

§text

the text to measure.

§Returns
§width

location to store the width of the text in pixels, or None.

§height

location to store the height of the text in pixels, or None.

source

fn measure_markup(&self, markup: &str) -> (i32, i32)

Measures the pango markup provided using the pango layout used by the #GtkSourceGutterRendererText.

§markup

the pango markup to measure.

§Returns
§width

location to store the width of the text in pixels, or None.

§height

location to store the height of the text in pixels, or None.

source

fn set_markup(&self, markup: &str)

source

fn set_text(&self, text: &str)

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§