Top |
ArvGcNode * | arv_gc_enumeration_new () |
const char * | arv_gc_enumeration_get_string_value () |
gboolean | arv_gc_enumeration_set_string_value () |
gint64 | arv_gc_enumeration_get_int_value () |
gboolean | arv_gc_enumeration_set_int_value () |
const GSList * | arv_gc_enumeration_get_entries () |
gint64 * | arv_gc_enumeration_dup_available_int_values () |
const char ** | arv_gc_enumeration_dup_available_string_values () |
const char ** | arv_gc_enumeration_dup_available_display_names () |
GObject ╰── ArvDomNode ╰── ArvDomElement ╰── ArvGcNode ╰── ArvGcFeatureNode ╰── ArvGcEnumeration
const char * arv_gc_enumeration_get_string_value (ArvGcEnumeration *enumeration
,GError **error
);
gboolean arv_gc_enumeration_set_string_value (ArvGcEnumeration *enumeration
,const char *value
,GError **error
);
gint64 arv_gc_enumeration_get_int_value (ArvGcEnumeration *enumeration
,GError **error
);
gboolean arv_gc_enumeration_set_int_value (ArvGcEnumeration *enumeration
,gint64 value
,GError **error
);
const GSList *
arv_gc_enumeration_get_entries (ArvGcEnumeration *enumeration
);
gint64 * arv_gc_enumeration_dup_available_int_values (ArvGcEnumeration *enumeration
,guint *n_values
,GError **error
);
enumeration |
||
n_values |
the number of values. |
[out] |
error |
the error that occured, or NULL. |
[out] |
a newly allocated array of 64 bit integers, to be freed after use using g_free()
.
[transfer full][array length=n_values]
Since: 0.8.0
const char ** arv_gc_enumeration_dup_available_string_values (ArvGcEnumeration *enumeration
,guint *n_values
,GError **error
);
Create an array of all available values of enumeration
, as strings.
enumeration |
||
n_values |
placeholder for the number of values. |
[out] |
error |
placeholder for error, may be NULL |
an newly created array of const strings, which must freed after use using g_free,
NULL
on error.
[array length=n_values][transfer container]
Since: 0.8.0
const char ** arv_gc_enumeration_dup_available_display_names (ArvGcEnumeration *enumeration
,guint *n_values
,GError **error
);
Create an array of display names of all available entries.
enumeration |
||
n_values |
placeholder for the number of values. |
[out] |
error |
placeholder for error, may be NULL |
an newly created array of const strings, which must freed after use using g_free,
NULL
on error.
[array length=n_values][transfer container]
Since: 0.8.0