Method
Gtk.Builder.value_from_string
Declaration [src]
gboolean
gtk_builder_value_from_string (
GtkBuilder* builder,
GParamSpec* pspec,
const char* string,
GValue* value,
GError** error
)
Description [src]
Demarshals a value from a string.
This function calls g_value_init()
on the value
argument,
so it need not be initialised beforehand.
Can handle char, uchar, boolean, int, uint, long,
ulong, enum, flags, float, double, string, GdkRGBA
and
GtkAdjustment
type values.
Upon errors FALSE
will be returned and error
will be
assigned a GError
from the GTK_BUILDER_ERROR
domain.
Parameters
pspec |
GParamSpec* |
the |
|
Ownership is not transferred to the callee | |
string |
const char* |
the string representation of the value |
|
Ownership is not transferred to the callee | |
The string is a NUL terminated UTF-8 string | |
value |
GValue* |
the |
|
Direction: out | |
Ownership is not transferred to the callee |