Additions

2006-03-30  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/param_value_types.sgml:
	* gobject/tmpl/objects.sgml:
	* gobject/tmpl/gtype.sgml: Additions
This commit is contained in:
Matthias Clasen 2006-03-30 20:30:21 +00:00 committed by Matthias Clasen
parent 86bb6c69b8
commit 8763438c33
4 changed files with 108 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2006-03-30 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/param_value_types.sgml:
* gobject/tmpl/objects.sgml:
* gobject/tmpl/gtype.sgml: Additions
* glib/tmpl/messages.sgml: Cleanup
* glib/tmpl/memory_slices.sgml: Adapt to a parameter name change

View File

@ -1617,6 +1617,25 @@ init functions.
@Since: 2.4
<!-- ##### FUNCTION g_value_set_gtype ##### -->
<para>
Set the contents of a %G_TYPE_GTYPE #GValue to @v_gtype.
</para>
@value: a valid #GValue of type %G_TYPE_GTYPE
@v_gtype: #GType to be set
@Since: 2.12
<!-- ##### FUNCTION g_value_get_gtype ##### -->
<para>
Get the contents of a %G_TYPE_GTYPE #GValue.
</para>
@value: a valid #GValue of type %G_TYPE_GTYPE
@Returns: the #GType stored in @value
@Since: 2.12
<!-- ##### MACRO G_TYPE_INVALID ##### -->
<para>
An invalid #GType, used as error return value in some functions which return
@ -1766,6 +1785,13 @@ The fundamental type for #GObject.
<!-- ##### MACRO G_TYPE_GTYPE ##### -->
<para>
The type for #GType.
</para>
<!-- ##### MACRO G_TYPE_RESERVED_GLIB_FIRST ##### -->
<para>
First fundamental type number to create a new fundamental type id with

View File

@ -85,8 +85,10 @@ value of the property has actually changed, it may also be emitted when
the setter for the property is called to reinstate the previous value.
</para>
@gobject: the object which received the signal.
@pspec: the #GParamSpec of the property which changed
@:
<!-- # Unused Parameters # -->
@gobject: the object which received the signal.
<!-- ##### STRUCT GObjectClass ##### -->
<para>
@ -1053,3 +1055,69 @@ properties in set_property() and get_property() implementations.
@pspec: the #GParamSpec of the property
<!-- ##### TYPEDEF GInitiallyUnowned ##### -->
<para>
All the fields in the <structname>GInitiallyUnowned</structname> structure
are private to the #GInitiallyUnowned implementation and should never be
accessed directly.
</para>
<!-- ##### TYPEDEF GInitiallyUnownedClass ##### -->
<para>
The class structure for the <structname>GInitiallyUnowned</structname> type.
</para>
<!-- ##### MACRO G_INITIALLY_UNOWNED ##### -->
<para>
Casts a #GInitiallyUnowned or derived pointer into a (GInitiallyUnowned*)
pointer. Depending on the current debugging level, this function may invoke
certain runtime checks to identify invalid casts.
</para>
@object: Object which is subject to casting
<!-- ##### MACRO G_INITIALLY_UNOWNED_CLASS ##### -->
<para>
Casts a derived #GInitiallyUnownedClass structure into a
#GInitiallyUnownedClass structure.
</para>
@class: a valid #GInitiallyUnownedClass
<!-- ##### MACRO G_INITIALLY_UNOWNED_GET_CLASS ##### -->
<para>
Returns the class structure associated to a #GInitiallyUnowned instance.
</para>
@object: a #GInitiallyUnowned instance
<!-- ##### MACRO G_IS_INITIALLY_UNOWNED ##### -->
<para>
Checks whether a valid #GTypeInstance pointer is of type
%G_TYPE_INITIALLY_UNOWNED.
</para>
@object: Instance to check for being a %G_TYPE_INITIALLY_UNOWNED.
<!-- ##### MACRO G_IS_INITIALLY_UNOWNED_CLASS ##### -->
<para>
Checks whether @class "is a" valid #GInitiallyUnownedClass structure of type
%G_TYPE_INITIALLY_UNOWNED or derived.
</para>
@class: a #GInitiallyUnownedClass
<!-- ##### MACRO G_TYPE_INITIALLY_UNOWNED ##### -->
<para>
The type for #GInitiallyUnowned.
</para>

View File

@ -1721,6 +1721,15 @@ Casts a #GParamSpec into a #GParamSpecGType.
@Since: 2.10
<!-- ##### MACRO G_VALUE_HOLDS_GTYPE ##### -->
<para>
Returns whether the given #GValue can hold values of type %G_TYPE_GTYPE.
</para>
@value: a valid #GValue structure
@Since: 2.12
<!-- ##### MACRO G_TYPE_PARAM_GTYPE ##### -->
<para>
The #GType of #GParamSpecGType.