mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 22:52:09 +01:00
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:
parent
86bb6c69b8
commit
8763438c33
@ -1,5 +1,9 @@
|
|||||||
2006-03-30 Matthias Clasen <mclasen@redhat.com>
|
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/messages.sgml: Cleanup
|
||||||
|
|
||||||
* glib/tmpl/memory_slices.sgml: Adapt to a parameter name change
|
* glib/tmpl/memory_slices.sgml: Adapt to a parameter name change
|
||||||
|
@ -1617,6 +1617,25 @@ init functions.
|
|||||||
@Since: 2.4
|
@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 ##### -->
|
<!-- ##### MACRO G_TYPE_INVALID ##### -->
|
||||||
<para>
|
<para>
|
||||||
An invalid #GType, used as error return value in some functions which return
|
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 ##### -->
|
<!-- ##### MACRO G_TYPE_RESERVED_GLIB_FIRST ##### -->
|
||||||
<para>
|
<para>
|
||||||
First fundamental type number to create a new fundamental type id with
|
First fundamental type number to create a new fundamental type id with
|
||||||
|
@ -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.
|
the setter for the property is called to reinstate the previous value.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@gobject: the object which received the signal.
|
|
||||||
@pspec: the #GParamSpec of the property which changed
|
@pspec: the #GParamSpec of the property which changed
|
||||||
|
@:
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
|
@gobject: the object which received the signal.
|
||||||
|
|
||||||
<!-- ##### STRUCT GObjectClass ##### -->
|
<!-- ##### STRUCT GObjectClass ##### -->
|
||||||
<para>
|
<para>
|
||||||
@ -1053,3 +1055,69 @@ properties in set_property() and get_property() implementations.
|
|||||||
@pspec: the #GParamSpec of the property
|
@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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1721,6 +1721,15 @@ Casts a #GParamSpec into a #GParamSpecGType.
|
|||||||
@Since: 2.10
|
@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 ##### -->
|
<!-- ##### MACRO G_TYPE_PARAM_GTYPE ##### -->
|
||||||
<para>
|
<para>
|
||||||
The #GType of #GParamSpecGType.
|
The #GType of #GParamSpecGType.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user