Documentation additions.

This commit is contained in:
Matthias Clasen
2003-10-20 20:07:45 +00:00
parent 04d27d2299
commit 4a29291187
7 changed files with 48 additions and 11 deletions

View File

@@ -192,6 +192,7 @@ G_TYPE_MODULE_GET_CLASS
<FILE>objects</FILE>
GObject
GObjectClass
GObjectConstructParam
GObjectGetPropertyFunc
GObjectSetPropertyFunc
GObjectFinalizeFunc
@@ -243,7 +244,6 @@ g_object_run_dispose
G_OBJECT_WARN_INVALID_PROPERTY_ID
<SUBSECTION Private>
G_OBJECT_WARN_INVALID_PSPEC
GObjectConstructParam
</SECTION>
<SECTION>

View File

@@ -118,22 +118,23 @@ Returns the static type name from a given #GFlagsClass structure.
<!-- ##### STRUCT GEnumValue ##### -->
<para>
A structure which contains a single enum value, its name, and it's
A structure which contains a single enum value, it's name, and it's
nickname.
</para>
@value:
@value_name:
@value_nick:
@value: the enum value
@value_name: the name of the value
@value_nick: the nickname of the value
<!-- ##### STRUCT GFlagsValue ##### -->
<para>
A structure which contains a single flags value, it's name, and it's
nickname.
</para>
@value:
@value_name:
@value_nick:
@value: the flags value
@value_name: the name of the value
@value_nick: the nickname of the value
<!-- ##### FUNCTION g_enum_get_value ##### -->
<para>

View File

@@ -72,7 +72,9 @@ handles multiple registered types per module.
<!-- ##### STRUCT GTypePlugin ##### -->
<para>
The <structname>GTypePlugin</structname> typedef is used as a placeholder
for objects that implement the <structname>GTypePlugin</structname>
interface.
</para>

View File

@@ -38,6 +38,23 @@ the setter for the property is called to reinstate the previous value.
</para>
@g_type_class:
@constructor:
@set_property:
@get_property:
@dispose:
@finalize:
@dispatch_properties_changed:
@notify:
<!-- ##### STRUCT GObjectConstructParam ##### -->
<para>
The <structname>GObjectConstructParam</structname> struct is an auxiliary
structure used to hand #GParamSpec/#GValue pairs to the @constructor of
a #GObjectClass.
</para>
@pspec: the #GParamSpec of the construct parameter
@value: the value to set the parameter to
<!-- ##### USER_FUNCTION GObjectGetPropertyFunc ##### -->
<para>