Method
GtkBuilderextend_with_template
Declaration [src]
gboolean
gtk_builder_extend_with_template (
GtkBuilder* builder,
GObject* object,
GType template_type,
const char* buffer,
gssize length,
GError** error
)
Description [src]
Main private entry point for building composite components from template XML.
Most likely you do not need to call this function in applications as
templates are handled by GtkWidget
.
Parameters
object
-
Type:
GObject
The object that is being extended.
The data is owned by the caller of the function. template_type
-
Type:
GType
The type that the template is for.
buffer
-
Type:
const char*
The string to parse.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. length
-
Type:
gssize
The length of
buffer
(may be -1 ifbuffer
is nul-terminated) error
-
Type:
GError **
The return location for a
GError*
, orNULL
.