| Top |
| AdwValueObject * | adw_value_object_new () |
| AdwValueObject * | adw_value_object_new_collect () |
| AdwValueObject * | adw_value_object_new_string () |
| AdwValueObject * | adw_value_object_new_take_string () |
| const GValue * | adw_value_object_get_value () |
| void | adw_value_object_copy_value () |
| const char * | adw_value_object_get_string () |
| char * | adw_value_object_dup_string () |
AdwValueObject *
adw_value_object_new (const GValue *value);
Create a new AdwValueObject.
Since: 1.0
AdwValueObject * adw_value_object_new_collect (GType type,...);
Creates a new AdwValueObject. This is a convenience method which uses
the G_VALUE_COLLECT() macro internally.
[skip]
Since: 1.0
AdwValueObject *
adw_value_object_new_string (const char *string);
Creates a new AdwValueObject. This is a convenience method to create a AdwValueObject that stores a string.
[skip]
Since: 1.0
AdwValueObject *
adw_value_object_new_take_string (char *string);
Creates a new AdwValueObject. This is a convenience method to create a AdwValueObject that stores a string taking ownership of it.
[skip]
Since: 1.0
const GValue *
adw_value_object_get_value (AdwValueObject *value);
Return the contained value.
Since: 1.0
void adw_value_object_copy_value (AdwValueObject *value,GValue *dest);
Copy data from the contained GValue into dest
.
Since: 1.0
const char *
adw_value_object_get_string (AdwValueObject *value);
Returns the contained string if the value is of type G_TYPE_STRING.
Since: 1.0
char *
adw_value_object_dup_string (AdwValueObject *value);
Returns a copy of the contained string if the value is of type G_TYPE_STRING.
Since: 1.0