Trait sourceview5::prelude::GutterRendererPixbufExt

source ·
pub trait GutterRendererPixbufExt: IsA<GutterRendererPixbuf> + Sealed + 'static {
Show 13 methods // Provided methods fn gicon(&self) -> Icon { ... } fn icon_name(&self) -> GString { ... } fn paintable(&self) -> Option<Paintable> { ... } fn pixbuf(&self) -> Pixbuf { ... } fn overlay_paintable(&self, paintable: &impl IsA<Paintable>) { ... } fn set_gicon(&self, icon: Option<&impl IsA<Icon>>) { ... } fn set_icon_name(&self, icon_name: Option<&str>) { ... } fn set_paintable(&self, paintable: Option<&impl IsA<Paintable>>) { ... } fn set_pixbuf(&self, pixbuf: Option<&Pixbuf>) { ... } fn connect_gicon_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_paintable_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_pixbuf_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all GutterRendererPixbuf methods.

§Implementors

GutterRendererPixbuf

Provided Methods§

source

fn gicon(&self) -> Icon

Get the gicon of the renderer

§Returns

a #GIcon

source

fn icon_name(&self) -> GString

source

fn paintable(&self) -> Option<Paintable>

Gets a [gdk::Paintable][crate::gdk::Paintable] that was set with set_paintable()

§Returns

a #GdkPaintable or None

source

fn pixbuf(&self) -> Pixbuf

Get the pixbuf of the renderer.

§Returns

a #GdkPixbuf

source

fn overlay_paintable(&self, paintable: &impl IsA<Paintable>)

Allows overlaying a paintable on top of any other image that has been set for the pixbuf. This will be applied when the widget is next snapshot.

§paintable

a #GdkPaintable

source

fn set_gicon(&self, icon: Option<&impl IsA<Icon>>)

§icon

the icon, or None.

source

fn set_icon_name(&self, icon_name: Option<&str>)

§icon_name

the icon name, or None.

source

fn set_paintable(&self, paintable: Option<&impl IsA<Paintable>>)

§paintable

the paintable, or None.

source

fn set_pixbuf(&self, pixbuf: Option<&Pixbuf>)

§pixbuf

the pixbuf, or None.

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§