Top |
RygelVisualItemRygelVisualItem — An interface representing visual properties of an item stored in a file. |
typedef struct _RygelVisualItem RygelVisualItem;
An interface representing visual properties of an item stored in a file.
struct RygelVisualItemIface { GTypeInterface parent_iface; gint (*get_width) (RygelVisualItem* self); void (*set_width) (RygelVisualItem* self, gint value); gint (*get_height) (RygelVisualItem* self); void (*set_height) (RygelVisualItem* self, gint value); gint (*get_color_depth) (RygelVisualItem* self); void (*set_color_depth) (RygelVisualItem* self, gint value); GeeArrayList* (*get_thumbnails) (RygelVisualItem* self); void (*set_thumbnails) (RygelVisualItem* self, GeeArrayList* value); };
Interface for creating RygelVisualItem implementations.
the parent interface structure |
||
getter method for the abstract property "width" |
||
setter method for the abstract property "width" |
||
getter method for the abstract property "height" |
||
setter method for the abstract property "height" |
||
getter method for the abstract property "color-depth" |
||
setter method for the abstract property "color-depth" |
||
getter method for the abstract property "thumbnails" |
||
setter method for the abstract property "thumbnails" |