[][src]Trait gtk::CellRendererPixbufExt

pub trait CellRendererPixbufExt: 'static {
    fn get_property_follow_state(&self) -> bool;
fn set_property_follow_state(&self, follow_state: bool);
fn get_property_gicon(&self) -> Option<Icon>;
fn set_property_gicon<P: IsA<Icon> + SetValueOptional>(
        &self,
        gicon: Option<&P>
    );
fn get_property_icon_name(&self) -> Option<GString>;
fn set_property_icon_name(&self, icon_name: Option<&str>);
fn get_property_pixbuf(&self) -> Option<Pixbuf>;
fn set_property_pixbuf(&self, pixbuf: Option<&Pixbuf>);
fn get_property_pixbuf_expander_closed(&self) -> Option<Pixbuf>;
fn set_property_pixbuf_expander_closed(
        &self,
        pixbuf_expander_closed: Option<&Pixbuf>
    );
fn get_property_pixbuf_expander_open(&self) -> Option<Pixbuf>;
fn set_property_pixbuf_expander_open(
        &self,
        pixbuf_expander_open: Option<&Pixbuf>
    );
fn get_property_stock_detail(&self) -> Option<GString>;
fn set_property_stock_detail(&self, stock_detail: Option<&str>);
fn get_property_surface(&self) -> Option<Surface>;
fn set_property_surface(&self, surface: Option<&Surface>);
fn connect_property_follow_state_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_gicon_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_icon_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_pixbuf_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_pixbuf_expander_closed_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_pixbuf_expander_open_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_stock_detail_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_stock_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_surface_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Trait containing all CellRendererPixbuf methods.

Implementors

CellRendererPixbuf

Required methods

fn get_property_follow_state(&self) -> bool

Specifies whether the rendered pixbuf should be colorized according to the CellRendererState.

Deprecated since 3.16

Cell renderers always follow state.

fn set_property_follow_state(&self, follow_state: bool)

Specifies whether the rendered pixbuf should be colorized according to the CellRendererState.

Deprecated since 3.16

Cell renderers always follow state.

fn get_property_gicon(&self) -> Option<Icon>

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

fn set_property_gicon<P: IsA<Icon> + SetValueOptional>(&self, gicon: Option<&P>)

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

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

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

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

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

fn get_property_pixbuf(&self) -> Option<Pixbuf>

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

fn get_property_pixbuf_expander_closed(&self) -> Option<Pixbuf>

fn set_property_pixbuf_expander_closed(
    &self,
    pixbuf_expander_closed: Option<&Pixbuf>
)

fn get_property_pixbuf_expander_open(&self) -> Option<Pixbuf>

fn set_property_pixbuf_expander_open(
    &self,
    pixbuf_expander_open: Option<&Pixbuf>
)

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

fn set_property_stock_detail(&self, stock_detail: Option<&str>)

fn get_property_surface(&self) -> Option<Surface>

fn set_property_surface(&self, surface: Option<&Surface>)

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<CellRendererPixbuf>> CellRendererPixbufExt for O[src]

Loading content...