RygelVisualItem

RygelVisualItem — An interface representing visual properties of an item stored in a file.

Types and Values

Description

Functions

Types and Values

RygelVisualItem

typedef struct _RygelVisualItem RygelVisualItem;

An interface representing visual properties of an item stored in a file.


struct RygelVisualItemIface

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.

Members

GTypeInterface parent_iface;

the parent interface structure

 

get_width ()

getter method for the abstract property "width"

 

set_width ()

setter method for the abstract property "width"

 

get_height ()

getter method for the abstract property "height"

 

set_height ()

setter method for the abstract property "height"

 

get_color_depth ()

getter method for the abstract property "color-depth"

 

set_color_depth ()

setter method for the abstract property "color-depth"

 

get_thumbnails ()

getter method for the abstract property "thumbnails"

 

set_thumbnails ()

setter method for the abstract property "thumbnails"