Top | ![]() |
![]() |
![]() |
![]() |
|
katze_item_new () |
const |
katze_item_get_name () |
|
katze_item_set_name () |
const |
katze_item_get_text () |
|
katze_item_set_text () |
const |
katze_item_get_uri () |
|
katze_item_set_uri () |
const |
katze_item_get_icon () |
|
katze_item_set_icon () |
|
katze_item_get_pixbuf () |
|
katze_item_get_image () |
const |
katze_item_get_token () |
|
katze_item_set_token () |
|
katze_item_get_added () |
|
katze_item_set_added () |
|
katze_item_get_meta_keys () |
const |
katze_item_get_meta_string () |
|
katze_item_set_meta_string () |
|
katze_item_get_meta_integer () |
|
katze_item_get_meta_boolean () |
|
katze_item_set_meta_integer () |
|
katze_item_get_parent () |
|
katze_item_set_parent () |
|
katze_item_copy () |
constgchar * katze_item_get_name ();
KatzeItem *item
Retrieves the name of item
.
void katze_item_set_name (,
KatzeItem *itemconst
);gchar *name
Sets the name of item
.
constgchar * katze_item_get_text ();
KatzeItem *item
Retrieves the descriptive text of item
.
void katze_item_set_text (,
KatzeItem *itemconst
);gchar *text
Sets the descriptive text of item
.
constgchar * katze_item_get_uri ();
KatzeItem *item
Retrieves the URI of item
.
void katze_item_set_uri (,
KatzeItem *itemconst
);gchar *uri
Sets the URI of item
.
constgchar * katze_item_get_icon ();
KatzeItem *item
Retrieves the icon of item
.
void katze_item_set_icon (,
KatzeItem *itemconst
);gchar *icon
Sets the icon of item
.
GdkPixbuf * katze_item_get_pixbuf (,
KatzeItem *item);
GtkWidget *widget
Creates a item
.
Since:
GtkWidget * katze_item_get_image (,
KatzeItem *item);
GtkWidget *widget
Creates a item
.
Since:
constgchar * katze_item_get_token ();
KatzeItem *item
Retrieves the token of item
.
void katze_item_set_token (,
KatzeItem *itemconst
);gchar *token
Sets the token of item
.
gint64 katze_item_get_added ();
KatzeItem *item
Determines when item
was added.
void katze_item_set_added (,
KatzeItem *item);
gint64 added
Sets when item
was added.
GList * katze_item_get_meta_keys ();
KatzeItem *item
Retrieves a list of all meta keys.
Since:
constgchar * katze_item_get_meta_string (,
KatzeItem *itemconst
);gchar *key
Retrieves a string value by the specified key from the meta data of the item.
Specify "namespace:key" or "key" to use the default namespace.
Since:
void katze_item_set_meta_string (,
KatzeItem *itemconst
,gchar *keyconst
);gchar *value
Saves the specified string value in the meta data of the item under the specified key.
Specify "namespace:key" or "key" to use the default namespace.
Since:
gint64 katze_item_get_meta_integer (,
KatzeItem *itemconst
);gchar *key
Retrieves an integer value by the specified key from the meta data of the item.
If the key is present but not representable as an integer, -1 is returned.
Since:
gboolean katze_item_get_meta_boolean (,
KatzeItem *itemconst
);gchar *key
The Value should be set with katze_item_set_meta_integer()
.
If the value is set and not 0, TRUE
Since:
void katze_item_set_meta_integer (,
KatzeItem *itemconst
,gchar *key);
gint64 value
Saves the specified integer value in the meta data of the item under the specified key.
A value of -1 is intepreted as unset.
Since:
gpointer katze_item_get_parent ();
KatzeItem *item
Determines the parent of item
.
Since 0.1.2 you can monitor the "parent" property.
void katze_item_set_parent (,
KatzeItem *item);
gpointer parent
Sets the parent of item
.
This is intended for item container implementations. Notably the new parent will not be notified of the change.
Since 0.1.2 you can monitor the "parent" property, so unsetting the parent is actually safe if the parent supports it.