Trait gio::prelude::EmblemedIconExt[][src]

pub trait EmblemedIconExt: 'static {
    fn add_emblem(&self, emblem: &Emblem);
fn clear_emblems(&self);
fn emblems(&self) -> Vec<Emblem>;
fn icon(&self) -> Icon;
fn gicon(&self) -> Option<Icon>; }
Expand description

Trait containing all EmblemedIcon methods.

Implementors

EmblemedIcon

Required methods

Adds emblem to the GList of GEmblems.

emblem

a Emblem

Removes all the emblems from icon.

Gets the list of emblems for the icon.

Returns

a GList of GEmblems that is owned by self

Gets the main icon for self.

Returns

a Icon that is owned by self

Implementors