Gtk.BuildableIface¶
Fields¶
Name |
Type |
Access |
Description |
---|---|---|---|
add_child |
r |
Adds a child. The type parameter can be used to differentiate the kind of child. |
|
construct_child |
r |
Constructs a child of a buildable that has been specified as “constructor” in the UI definition. |
|
custom_finished |
r |
Called for each custom tag handled by the buildable when the builder finishes parsing (see custom_tag_start) |
|
custom_tag_end |
r |
Called for the end tag of each custom element that is handled by the buildable (see custom_tag_start). |
|
custom_tag_start |
r |
Implement this if the buildable needs to parse content below |
|
g_iface |
r |
the parent class |
|
get_internal_child |
r |
Returns an internal child of a buildable. |
|
get_name |
r |
The getter corresponding to set_name. Implement this if you implement set_name. |
|
parser_finished |
r |
Called when a builder finishes the parsing of a UI definition. It is normally not necessary to implement this, unless you need to perform special cleanup actions. |
|
set_buildable_property |
r |
Sets a property of a buildable object. It is normally not necessary to implement this, |
|
set_name |
r |
Stores the name attribute given in the |
Methods¶
None
Details¶
- class Gtk.BuildableIface¶
The
Gtk.BuildableIface
interface contains method that are necessary to allowGtk.Builder
to construct an object from aGtk.Builder
UI definition.