forked from AuroraMiddleware/gtk
Additions
svn path=/trunk/; revision=18295
This commit is contained in:
parent
388b14515a
commit
ee5948820e
@ -1,3 +1,7 @@
|
|||||||
|
2007-06-29 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/tmpl/gtkbuildable.sgml: Some additions
|
||||||
|
|
||||||
Wed Jun 27 11:57:13 2007 Tim Janik <timj@imendio.com>
|
Wed Jun 27 11:57:13 2007 Tim Janik <timj@imendio.com>
|
||||||
|
|
||||||
* gtk/tmpl/gtkmenu.sgml: fixed push_in description.
|
* gtk/tmpl/gtkmenu.sgml: fixed push_in description.
|
||||||
|
@ -2,17 +2,17 @@
|
|||||||
GtkBuildable
|
GtkBuildable
|
||||||
|
|
||||||
<!-- ##### SECTION Short_Description ##### -->
|
<!-- ##### SECTION Short_Description ##### -->
|
||||||
SHORT
|
Interface for objects that can be built by GtkBuilder
|
||||||
|
|
||||||
<!-- ##### SECTION Long_Description ##### -->
|
<!-- ##### SECTION Long_Description ##### -->
|
||||||
<para>
|
<para>
|
||||||
LONG
|
In order to allow construction from a XML UI description,
|
||||||
|
an object class must implement the #GtkBuildable interface.
|
||||||
|
The interface includes method for setting names and properties
|
||||||
|
of objects, parsing custom tags, constructing child objects.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
<!-- ##### SECTION See_Also ##### -->
|
||||||
<para>
|
|
||||||
SEE ALSO
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### SECTION Stability_Level ##### -->
|
<!-- ##### SECTION Stability_Level ##### -->
|
||||||
|
|
||||||
@ -25,12 +25,20 @@ SEE ALSO
|
|||||||
|
|
||||||
<!-- ##### STRUCT GtkBuildableIface ##### -->
|
<!-- ##### STRUCT GtkBuildableIface ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
The #GtkBuildableIface interface contains method that are
|
||||||
|
necessary to allow #GtkBuilder to construct an object from
|
||||||
|
a XML UI description.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@g_iface:
|
@g_iface: the parent class
|
||||||
@set_name:
|
@set_name: Stores the name attribute given in the XML UI description.
|
||||||
@get_name:
|
#GtkWidget maps this to the GtkWidget:name property, and
|
||||||
|
gtk_buildable_set_name() has a fallback implementation that stores
|
||||||
|
the name as object data. Implement this method if your object
|
||||||
|
has some notion of "name" and it makes sense to map the XML name
|
||||||
|
attribute to it.
|
||||||
|
@get_name: The getter corresponding to @set_name. Implement this
|
||||||
|
if you implement @set_name.
|
||||||
@add_child:
|
@add_child:
|
||||||
@set_buildable_property:
|
@set_buildable_property:
|
||||||
@construct_child:
|
@construct_child:
|
||||||
|
Loading…
Reference in New Issue
Block a user