pub trait CellRendererPixbufExt: 'static {
Show 22 methods fn gicon(&self) -> Option<Icon>; fn set_gicon<P: IsA<Icon>>(&self, gicon: Option<&P>); fn icon_name(&self) -> Option<GString>; fn set_icon_name(&self, icon_name: Option<&str>); fn pixbuf(&self) -> Option<Pixbuf>; fn set_pixbuf(&self, pixbuf: Option<&Pixbuf>); fn pixbuf_expander_closed(&self) -> Option<Pixbuf>; fn set_pixbuf_expander_closed(
        &self,
        pixbuf_expander_closed: Option<&Pixbuf>
    ); fn pixbuf_expander_open(&self) -> Option<Pixbuf>; fn set_pixbuf_expander_open(&self, pixbuf_expander_open: Option<&Pixbuf>); fn stock_detail(&self) -> Option<GString>; fn set_stock_detail(&self, stock_detail: Option<&str>); fn surface(&self) -> Option<Surface>; fn set_surface(&self, surface: Option<&Surface>); 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_pixbuf_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_pixbuf_expander_closed_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_pixbuf_expander_open_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_stock_detail_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_stock_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_surface_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Trait containing all CellRendererPixbuf methods.

Implementors

CellRendererPixbuf

Required Methods

The GIcon representing the icon to display. If the icon theme is changed, the image will be updated automatically.

The GIcon representing the icon to display. If the icon theme is changed, the image will be updated automatically.

The name of the themed icon to display. This property only has an effect if not overridden by “stock_id” or “pixbuf” properties.

The name of the themed icon to display. This property only has an effect if not overridden by “stock_id” or “pixbuf” properties.

Implementors