|  |  |  | librygel-server Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
gint rygel_visual_item_get_width (RygelVisualItem *self); void rygel_visual_item_set_width (RygelVisualItem *self,gint value); gint rygel_visual_item_get_height (RygelVisualItem *self); void rygel_visual_item_set_height (RygelVisualItem *self,gint value); gint rygel_visual_item_get_color_depth (RygelVisualItem *self); void rygel_visual_item_set_color_depth (RygelVisualItem *self,gint value); GeeArrayList * rygel_visual_item_get_thumbnails (RygelVisualItem *self); void rygel_visual_item_set_thumbnails (RygelVisualItem *self,GeeArrayList *value); RygelVisualItem; struct RygelVisualItemIface;
gint                rygel_visual_item_get_width         (RygelVisualItem *self);
Get and return the current value of the "width" property.
| 
 | the RygelVisualItem instance to query | 
| Returns : | the value of the "width" property | 
void rygel_visual_item_set_width (RygelVisualItem *self,gint value);
Set the value of the "width" property to value.
| 
 | the RygelVisualItem instance to modify | 
| 
 | the new value of the "width" property | 
gint                rygel_visual_item_get_height        (RygelVisualItem *self);
Get and return the current value of the "height" property.
| 
 | the RygelVisualItem instance to query | 
| Returns : | the value of the "height" property | 
void rygel_visual_item_set_height (RygelVisualItem *self,gint value);
Set the value of the "height" property to value.
| 
 | the RygelVisualItem instance to modify | 
| 
 | the new value of the "height" property | 
gint                rygel_visual_item_get_color_depth   (RygelVisualItem *self);
Get and return the current value of the "color-depth" property.
| 
 | the RygelVisualItem instance to query | 
| Returns : | the value of the "color-depth" property | 
void rygel_visual_item_set_color_depth (RygelVisualItem *self,gint value);
Set the value of the "color-depth" property to value.
| 
 | the RygelVisualItem instance to modify | 
| 
 | the new value of the "color-depth" property | 
GeeArrayList *      rygel_visual_item_get_thumbnails    (RygelVisualItem *self);
Get and return the current value of the "thumbnails" property.
| 
 | the RygelVisualItem instance to query | 
| Returns : | the value of the "thumbnails" property | 
void rygel_visual_item_set_thumbnails (RygelVisualItem *self,GeeArrayList *value);
Set the value of the "thumbnails" property to value.
| 
 | the RygelVisualItem instance to modify | 
| 
 | the new value of the "thumbnails" property | 
typedef struct _RygelVisualItem RygelVisualItem;
An interface that visual (video and image) items must implement.
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" |