Method
GtkBuilderextend_with_template
Declaration [src]
guint
gtk_builder_extend_with_template (
GtkBuilder* builder,
GtkWidget* widget,
GType template_type,
const gchar* buffer,
gsize length,
GError** error
)
Description [src]
Main private entry point for building composite container components from template XML.
This is exported purely to let gtk-builder-tool validate templates, applications have no need to call this function.
Parameters
widget
-
Type:
GtkWidget
The widget that is being extended.
The data is owned by the caller of the method. template_type
-
Type:
GType
The type that the template is for.
buffer
-
Type:
const gchar*
The string to parse.
The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. length
-
Type:
gsize
The length of
buffer
(may be -1 ifbuffer
is nul-terminated). error
-
Type:
GError **
The return location for a recoverable error.
The argument can be NULL
.If the return location is not NULL
, then you must initialize it to aNULL
GError*
.The argument will be left initialized to NULL
by the method if there are no errors.In case of error, the argument will be set to a newly allocated GError
; the caller will take ownership of the data, and be responsible for freeing it.