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
Provided Methods§
sourcefn measure_markup(&self, markup: &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
Object Safety§
This trait is not object safe.