76c9d4b6fc189c9f60aa7cacf576398a3688b6de
[platform/upstream/glib.git] / docs / reference / gobject / tmpl / gtype.sgml
1 <!-- ##### SECTION Title ##### -->
2 GType
3
4 <!-- ##### SECTION Short_Description ##### -->
5 The GLib Runtime type identification and management system
6
7 <!-- ##### SECTION Long_Description ##### -->
8 <para>
9 The GType API is the foundation of the GObject system.  It provides the
10 facilities for registering and managing all fundamental data types,
11 user-defined object and interface types.  Before using any GType
12 or GObject functions, g_type_init() must be called to initialize the
13 type system.
14 </para>
15 <para>
16 For type creation and registration purposes, all types fall into one of
17 two categories: static or dynamic.  Static types are never loaded or
18 unloaded at run-time as dynamic types may be.  Static types are created
19 with g_type_register_static() that gets type specific information passed
20 in via a #GTypeInfo structure.
21 Dynamic types are created with g_type_register_dynamic() which takes a
22 #GTypePlugin structure instead. The remaining type information (the
23 #GTypeInfo structure) is retrived during runtime through #GTypePlugin
24 and the g_type_plugin_*() API.
25 These registration functions are usually called only once from a 
26 function whose only purpose is to return the type identifier for a 
27 specific class.  Once the type (or class or interface) is registered,
28 it may be instantiated, inherited, or implemented depending on exactly
29 what sort of type it is.
30 There is also a third registration function for registering fundamental
31 types called g_type_register_fundamental() which requires both a #GTypeInfo
32 structure and a GTypeFundamentalInfo structure but it is seldom used
33 since most fundamental types are predefined rather than user-defined.
34 </para>
35
36 <!-- ##### SECTION See_Also ##### -->
37 <para>
38
39 </para>
40
41 <!-- ##### TYPEDEF GType ##### -->
42 <para>
43 A numerical value which represents the unique identifier of a registered
44 type.
45 </para>
46
47
48 <!-- ##### MACRO G_TYPE_FUNDAMENTAL ##### -->
49 <para>
50 Returns #TRUE if @type is a fundamental data type such as #G_TYPE_INT or
51 #G_TYPE_POINTER. Fundamental types are types that serve as fundaments for
52 the derived types, thus they are the roots of distinct inheritance hierarchies.
53 </para>
54
55 @type: A #GType value.
56
57
58 <!-- ##### MACRO G_TYPE_FUNDAMENTAL_MAX ##### -->
59 <para>
60 An integer constant that represents the number of identifiers reserved
61 for types that are assigned at compile-time.
62 </para>
63
64
65
66 <!-- ##### MACRO G_TYPE_DERIVE_ID ##### -->
67 <para>
68
69 </para>
70
71 @ptype: 
72 @branch_seqno: 
73
74
75 <!-- ##### MACRO G_TYPE_BRANCH_SEQNO ##### -->
76 <para>
77
78 </para>
79
80 @type: 
81
82
83 <!-- ##### MACRO G_TYPE_FUNDAMENTAL_LAST ##### -->
84 <para>
85 An integer that currently represents the highest value of all
86 fundamental type identifiers. This is of interest for dynamic
87 introduction of new fundamental types (a
88 <emphasis>rarely</emphasis> needed feature).
89 </para>
90
91
92
93 <!-- ##### MACRO G_TYPE_IS_ABSTRACT ##### -->
94 <para>
95 Returns #TRUE if @type is an abstract type.  An abstract type can not be
96 instantiated and is normally used as an abstract base class for
97 derived classes.
98 </para>
99
100 @type: A #GType value.
101
102
103 <!-- ##### MACRO G_TYPE_IS_DERIVED ##### -->
104 <para>
105 Returns #TRUE if @type is derived (or in object-oriented terminology:
106 inherited) from another type (this holds true for all non-fundamental
107 types).
108 </para>
109
110 @type: A #GType value.
111
112
113 <!-- ##### MACRO G_TYPE_IS_FUNDAMENTAL ##### -->
114 <para>
115 Returns #TRUE if @type is a fundamental type.
116 </para>
117
118 @type: A #GType value.
119
120
121 <!-- ##### MACRO G_TYPE_IS_VALUE_TYPE ##### -->
122 <para>
123
124 </para>
125
126 @type: A #GType value.
127
128
129 <!-- ##### MACRO G_TYPE_IS_CLASSED ##### -->
130 <para>
131 Returns #TRUE if @type is a classed type.
132 </para>
133
134 @type: A #GType value.
135
136
137 <!-- ##### MACRO G_TYPE_IS_INSTANTIATABLE ##### -->
138 <para>
139 Returns #TRUE if @type can be instantiated.  Instantiation is the
140 process of creating an instance (object) of this type.
141 </para>
142
143 @type: A #GType value.
144
145
146 <!-- ##### MACRO G_TYPE_IS_DERIVABLE ##### -->
147 <para>
148 Returns #TRUE if @type is a derivable type.  A derivable type can
149 be used as the base class of a flat (single-level) class hierarchy.
150 </para>
151
152 @type: A #GType value.
153
154
155 <!-- ##### MACRO G_TYPE_IS_DEEP_DERIVABLE ##### -->
156 <para>
157 Returns #TRUE if @type is a deep derivable type.  A deep derivable type
158 can be used as the base class of a deep (multi-level) class hierarchy.
159 </para>
160
161 @type: A #GType value.
162
163
164 <!-- ##### MACRO G_TYPE_IS_INTERFACE ##### -->
165 <para>
166 Returns #TRUE if @type is an interface type.
167 Interface types are types that provide pure APIs, the implementation
168 of which is provided by another type (which is then said to conform
169 to the interface).  GLib interfaces are somewhat analogous to Java
170 interfaces and C++ classes containing only pure virtual functions.
171 </para>
172
173 @type: A #GType value.
174
175
176 <!-- ##### ENUM GTypeFundamentals ##### -->
177 <para>
178 The predefined identifiers of the reserved fundamental types.
179 </para>
180
181 @G_TYPE_INVALID:                Usually a return value indicating an error.
182 @G_TYPE_NONE:                   A synonym for the "void" type in C.
183 @G_TYPE_INTERFACE:              Root type of all interface types.
184 @G_TYPE_CHAR:                   Identifier for the built-in type "gchar".
185 @G_TYPE_UCHAR:                  Identifier for the built-in type "guchar".
186 @G_TYPE_BOOLEAN:                Identifier for the built-in type "gboolean".
187 @G_TYPE_INT:                    Identifier for the built-in type "gint".
188 @G_TYPE_UINT:                   Identifier for the built-in type "guint".
189 @G_TYPE_LONG:                   Identifier for the built-in type "glong".
190 @G_TYPE_ULONG:                  Identifier for the built-in type "gulong".
191 @G_TYPE_INT64: 
192 @G_TYPE_UINT64: 
193 @G_TYPE_ENUM:                   Identifier for the "#GEnum" type.
194 @G_TYPE_FLAGS:                  Identifier for the "#GFlags" type.
195 @G_TYPE_FLOAT:                  Identifier for the built-in type "gfloat".
196 @G_TYPE_DOUBLE:                 Identifier for the built-in type "gdouble".
197 @G_TYPE_STRING:                 Identifier for a pointer to a null-terminated string "gchar*".
198 @G_TYPE_POINTER:                Identifier for anonymous pointers "void*".
199 @G_TYPE_BOXED:                  Identifier for the "#GBoxed" type.
200 @G_TYPE_PARAM:                  Identifier for the "#GParam" type.
201 @G_TYPE_OBJECT:                 Identifier for the "#GObject" type.
202 @G_TYPE_RESERVED_BSE_FIRST:     First fundamental type ID reserved for BSE.
203 @G_TYPE_RESERVED_BSE_LAST:      Last fundamental type ID reserved for BSE.
204 @G_TYPE_RESERVED_LAST_FUNDAMENTAL: Last reserved fundamental type ID.
205 @G_TYPE_CLOSURE: 
206 @G_TYPE_VALUE: 
207 @G_TYPE_VALUE_ARRAY: 
208 @G_TYPE_GSTRING: 
209 @G_TYPE_PARAM_CHAR:             Identifier for the "#GParamSpecChar" type.
210 @G_TYPE_PARAM_UCHAR:            Identifier for the "#GParamSpecUChar" type.
211 @G_TYPE_PARAM_BOOLEAN:          Identifier for the "#GParamSpecBoolean" type.
212 @G_TYPE_PARAM_INT:              Identifier for the "#GParamSpecInt" type.
213 @G_TYPE_PARAM_UINT:             Identifier for the "#GParamSpecUInt" type.
214 @G_TYPE_PARAM_LONG:             Identifier for the "#GParamSpecLong" type.
215 @G_TYPE_PARAM_ULONG:            Identifier for the "#GParamSpecULong" type.
216 @G_TYPE_PARAM_INT64: 
217 @G_TYPE_PARAM_UINT64: 
218 @G_TYPE_PARAM_UNICHAR: 
219 @G_TYPE_PARAM_ENUM:             Identifier for the "#GParamSpecEnum" type.
220 @G_TYPE_PARAM_FLAGS:            Identifier for the "#GParamSpecFlags" type.
221 @G_TYPE_PARAM_FLOAT:            Identifier for the "#GParamSpecFloat" type.
222 @G_TYPE_PARAM_DOUBLE:           Identifier for the "#GParamSpecDouble" type.
223 @G_TYPE_PARAM_STRING:           Identifier for the "#GParamSpecString" type.
224 @G_TYPE_PARAM_PARAM:            Identifier for the "#GParamSpecParam" type.
225 @G_TYPE_PARAM_BOXED:            Identifier for the "#GParamSpecBoxed" type.
226 @G_TYPE_PARAM_POINTER:          Identifier for the "#GParamSpecPointer" type.
227 @G_TYPE_PARAM_VALUE_ARRAY:      Identifier for the "#GParamSpecValueArray" type.
228 @G_TYPE_PARAM_CLOSURE:          Identifier for the "#GParamClosure" type.
229 @G_TYPE_PARAM_OBJECT:           Identifier for the "#GParamSpecObject" type.
230
231 <!-- ##### STRUCT GTypeInterface ##### -->
232 <para>
233 An opaque structure used as the base of all interface types.
234 </para>
235
236
237 <!-- ##### STRUCT GTypeInstance ##### -->
238 <para>
239 An opaque structure used as the base of all type instances.
240 </para>
241
242
243 <!-- ##### STRUCT GTypeInfo ##### -->
244 <para>
245 This structure is used to provide the type system with the information
246 required to initialize and destruct (finalize) a type's class and
247 instances thereof.
248 The initialized structure is passed to the g_type_register_static() function
249 (or is copied into the provided #GTypeInfo structure in the
250 g_type_plugin_complete_type_info()). The type system will perform a deep
251 copy of this structure, so it's memory does not need to be persistent
252 across invocation of g_type_register_static().
253 </para>
254
255 @class_size:     Size of the class structure (required for interface, classed and instantiatable types).
256 @base_init:      Location of the base initialization function (optional).
257 @base_finalize:  Location of the base finalization function (optional).
258 @class_init:     Location of the class initialization function (optional, for classed and instantiatable types only).
259 @class_finalize: Location of the class finalization function (optional).
260 @class_data:     User-supplied data passed to the class init/finalize functions.
261 @instance_size:  Size of the instance (object) structure (required for instantiatable types only).
262 @n_preallocs:    Number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching).
263 @instance_init:  Location of the instance initialization function (optional, for instantiatable types only).
264 @value_table:    A #GTypeValueTable function table for generic handling of GValues of this type (usualy only
265                  useful for fundamental types).
266
267 <!-- ##### STRUCT GTypeFundamentalInfo ##### -->
268 <para>
269 A structure that provides information to the type system which is
270 used specifically for managing fundamental types.  
271 </para>
272
273 @type_flags: 
274
275 <!-- ##### STRUCT GInterfaceInfo ##### -->
276 <para>
277 A structure that provides information to the type system which is
278 used specifically for managing interface types.
279 </para>
280
281 @interface_init:        Location of the function that initializes the interface.
282 @interface_finalize:    Location of the function that finalizes the interface.
283 @interface_data:        Location of user data passed to the @interface_init and
284                         @interface_finalize functions (optional).
285
286 <!-- ##### STRUCT GTypeValueTable ##### -->
287 <para>
288 The #GTypeValueTable provides the functions required by the #GValue implementation,
289 to serve as a container for values of a type.
290 </para>
291
292 @value_init:            Default initialize @values contents by poking values
293                         directly into the value-&gt;data array. The data array of
294                         the #GValue passed into this function was zero-filled
295                         with memset, so no care has to be taken to free any
296                         old contents. E.g. for the implementation of a string
297                         value that may never be NULL, the implementation might
298                         look like:
299 <msgtext><programlisting>
300 {
301   value-&gt;data[0].v_pointer = g_strdup ("");
302 }
303 </programlisting></msgtext>
304 @value_free:            Free any old contents that might be left in the
305                         data array of the passed in @value. No resources may
306                         remain allocated through the #GValue contents after
307                         this function returns. E.g. for our above string type:
308 <msgtext><programlisting>
309 {
310   /* only free strings without a specific flag for static storage */
311   if (!(value-&gt;data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
312     g_free (value-&gt;data[0].v_pointer);
313 }
314 </programlisting></msgtext>
315 @value_copy:            @dest_value is a #GValue with zero-filled data section
316                         and @src_value is a properly setup #GValue of same or
317                         derived type.
318                         The purpose of this function is to copy the contents of
319                         @src_value into @dest_value in a way, that even after
320                         @src_value has been freed, the contents of @dest_value
321                         remain valid. String type example:
322 <msgtext><programlisting>
323 {
324   dest_value-&gt;data[0].v_pointer = g_strdup (src_value-&gt;data[0].v_pointer);
325 }
326 </programlisting></msgtext>
327 @value_peek_pointer:    If the value contents fit into a pointer, such as objects
328                         or strings, return this pointer, so the caller can peek at
329                         the current contents. To extend on our above string example:
330 <msgtext><programlisting>
331 {
332   return value-&gt;data[0].v_pointer;
333 }
334 </programlisting></msgtext>
335 @collect_format:        A string format describing how to collect the contents of
336                         this value, bit-by-bit. Each character in the format represents
337                         an argument to be collected, the characters themselves indicate
338                         the type of the argument. Currently supported arguments are:
339 <msgtext><variablelist>
340   <varlistentry><term></term><listitem><para>
341         'i' - Integers. passed as collect_values[].v_int.
342   </para></listitem></varlistentry>
343   <varlistentry><term></term><listitem><para>
344         'l' - Longs. passed as collect_values[].v_long.
345   </para></listitem></varlistentry>
346   <varlistentry><term></term><listitem><para>
347         'd' - Doubles. passed as collect_values[].v_double.
348   </para></listitem></varlistentry>
349   <varlistentry><term></term><listitem><para>
350         'p' - Pointers. passed as collect_values[].v_pointer.
351   </para></listitem></varlistentry>
352 </variablelist></msgtext>
353                         It should be noted, that for variable argument list construction,
354                         ANSI C promotes every type smaller than an integer to an int, and
355                         floats to doubles. So for collection of short int or char, 'i'
356                         needs to be used, and for collection of floats 'd'.
357 @collect_value:         The collect_value() function is responsible for converting the
358                         values collected from a variable argument list into contents
359                         suitable for storage in a GValue. This function should setup
360                         @value similar to value_init(), e.g. for a string value that
361                         does not allow NULL pointers, it needs to either spew an error,
362                         or do an implicit conversion by storing an empty string.
363                         The @value passed in to this function has a zero-filled data
364                         array, so just like for @value_init it is guaranteed to not
365                         contain any old contents that might need freeing.
366                         @n_collect_values is exactly the string length of @collect_format,
367                         and @collect_values is an array of unions #GTypeCValue with
368                         length @n_collect_values, containing the collected values
369                         according to @collect_format.
370                         @collect_flags is an argument provided as a hint by the caller,
371                         which may contain the flag #G_VALUE_NOCOPY_CONTENTS indicating,
372                         that the collected value contents may be considered "static"
373                         for the duration of the #@value lifetime.
374                         Thus an extra copy of the contents stored in @collect_values is
375                         not required for assignment to @value.
376                         For our above string example, we continue with:
377 <msgtext><programlisting>
378 {
379   if (!collect_values[0].v_pointer)
380     value->data[0].v_pointer = g_strdup ("");
381   else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
382     {
383       value-&gt;data[0].v_pointer = collect_values[0].v_pointer;
384       /* keep a flag for the value_free() implementation to not free this string */
385       value-&gt;data[1].v_uint = G_VALUE_NOCOPY_CONTENTS;
386     }
387   else
388     value-&gt;data[0].v_pointer = g_strdup (collect_values[0].v_pointer);
389
390   return NULL;
391 }
392 </programlisting></msgtext>
393                         It should be noted, that it is generally a bad idea to follow the
394                         #G_VALUE_NOCOPY_CONTENTS hint for reference counted types. Due to
395                         reentrancy requirements and reference count assertions performed
396                         by the GSignal code, reference counts should always be incremented
397                         for reference counted contents stored in the value-&gt;data array.
398                         To deviate from our string example for a moment, and taking a look
399                         at an exemplary implementation for collect_value() of #GObject:
400 <msgtext><programlisting>
401 {
402   if (collect_values[0].v_pointer)
403     {
404       GObject *object = G_OBJECT (collect_values[0].v_pointer);
405
406       /* never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types */
407       value-&gt;data[0].v_pointer = g_object_ref (object);
408       return NULL;
409     }
410   else
411     return g_strdup_printf ("Object passed as invalid NULL pointer");
412 }
413 </programlisting></msgtext>
414                         The reference count for valid objects is always incremented,
415                         regardless of @collect_flags. For invalid objects, the example
416                         returns a newly allocated string without altering @value.
417                         Upon success, collect_value() needs to return NULL, if however
418                         a malicious condition occurred, collect_value() may spew an
419                         error by returning a newly allocated non-NULL string, giving
420                         a suitable description of the error condition.
421                         The calling code makes no assumptions about the @value
422                         contents being valid upon error returns, @value
423                         is simply thrown away without further freeing. As such, it is
424                         a good idea to not allocate #GValue contents, prior to returning
425                         an error, however, collect_values() is not obliged to return
426                         a correctly setup @value for error returns, simply because
427                         any non-NULL return is considered a fatal condition so further
428                         program behaviour is undefined.
429 @lcopy_format:          Format description of the arguments to collect for @lcopy_value,
430                         analogous to @collect_format. Usually, @lcopy_format string consists
431                         only of 'p's to provide lcopy_value() with pointers to storage locations.
432 @lcopy_value:           This function is responsible for storing the @value contents into
433                         arguments passed through a variable argument list which got
434                         collected into @collect_values according to @lcopy_format.
435                         @n_collect_values equals the string length of @lcopy_format,
436                         and @collect_flags may contain #G_VALUE_NOCOPY_CONTENTS.
437                         In contrast to collect_value(), lcopy_value() is obliged to
438                         always properly support #G_VALUE_NOCOPY_CONTENTS.
439                         Similar to collect_value() the function may prematurely abort
440                         by returning a newly allocated string describing an error condition.
441                         To complete the string example:
442 <msgtext><programlisting>
443 {
444   gchar **string_p = collect_values[0].v_pointer;
445
446   if (!string_p)
447     return g_strdup_printf ("string location passed as NULL");
448
449   if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
450     *string_p = value-&gt;data[0].v_pointer;
451   else
452     *string_p = g_strdup (value-&gt;data[0].v_pointer);
453
454 }
455 </programlisting></msgtext>
456                         And an exemplary version of lcopy_value() for
457                         reference-counted types:
458 <msgtext><programlisting>
459 {
460   GObject **object_p = collect_values[0].v_pointer;
461
462   if (!object_p)
463     return g_strdup_printf ("object location passed as NULL");
464   if (!value-&gt;data[0].v_pointer)
465     *object_p = NULL;
466   else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) /* always honour */
467     *object_p = value-&gt;data[0].v_pointer;
468   else
469     *object_p = g_object_ref (value-&gt;data[0].v_pointer);
470   return NULL;
471 }
472 </programlisting></msgtext>
473
474 <!-- ##### MACRO G_TYPE_FROM_INSTANCE ##### -->
475 <para>
476 Returns the type identifier from a given @instance structure.
477 </para>
478
479 @instance: Location of a valid #GTypeInstance structure.
480
481
482 <!-- ##### MACRO G_TYPE_FROM_CLASS ##### -->
483 <para>
484 Returns the type identifier from a given @class structure.
485 </para>
486
487 @g_class: Location of a valid #GTypeClass structure.
488
489
490 <!-- ##### MACRO G_TYPE_FROM_INTERFACE ##### -->
491 <para>
492 Returns the type identifier from a given @interface structure.
493 </para>
494
495 @g_iface: Location of a valid #GTypeInterface structure.
496
497
498 <!-- ##### MACRO G_TYPE_INSTANCE_GET_CLASS ##### -->
499 <para>
500 Returns the class structure of a given @instance, casted
501 to a specified anchestor type @g_type of the instance.
502 </para>
503
504 @instance:      Location of the #GTypeInstance structure.
505 @g_type:        The anchestor type of the class to be returned.
506 @c_type:        The corresponding C type of @g_Type.
507
508
509 <!-- ##### MACRO G_TYPE_INSTANCE_GET_INTERFACE ##### -->
510 <para>
511
512 </para>
513
514 @instance: 
515 @g_type: 
516 @c_type: 
517
518
519 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE ##### -->
520 <para>
521
522 </para>
523
524 @instance: 
525
526
527 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE_CAST ##### -->
528 <para>
529
530 </para>
531
532 @instance: 
533 @g_type: 
534 @c_type: 
535
536
537 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE_TYPE ##### -->
538 <para>
539
540 </para>
541
542 @instance: 
543 @g_type: 
544
545
546 <!-- ##### MACRO G_TYPE_CHECK_CLASS_CAST ##### -->
547 <para>
548
549 </para>
550
551 @g_class: 
552 @g_type: 
553 @c_type: 
554
555
556 <!-- ##### MACRO G_TYPE_CHECK_CLASS_TYPE ##### -->
557 <para>
558
559 </para>
560
561 @g_class: 
562 @g_type: 
563
564
565 <!-- ##### MACRO G_TYPE_CHECK_VALUE ##### -->
566 <para>
567
568 </para>
569
570 @value: 
571
572
573 <!-- ##### MACRO G_TYPE_CHECK_VALUE_TYPE ##### -->
574 <para>
575
576 </para>
577
578 @value: 
579 @g_type: 
580
581
582 <!-- ##### MACRO G_TYPE_FLAG_RESERVED_ID_BIT ##### -->
583 <para>
584
585 </para>
586
587
588
589 <!-- ##### FUNCTION g_type_init ##### -->
590 <para>
591 Prior to any use of the type system, g_type_init() has to be called to initialize
592 the type system and assorted other code portions (such as the various fundamental
593 type implementations or the signal system).
594 </para>
595
596 <!-- # Unused Parameters # -->
597 @debug_flags: Bitwise combination of #GTypeDebugFlags values for debugging purposes.
598
599
600 <!-- ##### FUNCTION g_type_init_with_debug_flags ##### -->
601 <para>
602
603 </para>
604
605 @debug_flags: 
606
607
608 <!-- ##### FUNCTION g_type_name ##### -->
609 <para>
610 Return the unique name that is assigned to a type ID (this is the preferred method
611 to find out whether a specific type has been registered for the passed in ID yet).
612 </para>
613
614 @type:          Type to return name for.
615 @Returns:       Static type name or NULL.
616
617
618 <!-- ##### FUNCTION g_type_qname ##### -->
619 <para>
620 Return the corresponding quark of the type IDs name.
621 </para>
622
623 @type:    Type to return quark of type name for.
624 @Returns: The type names quark or 0.
625
626
627 <!-- ##### FUNCTION g_type_from_name ##### -->
628 <para>
629 Lookup the type ID from a given type name, returns 0 if no type has been registered under this name
630 (this is the preferred method to find out by name whether a specific type has been registered yet).
631 </para>
632
633 @name:    Type name to lookup.
634 @Returns: Corresponding type ID or 0.
635
636
637 <!-- ##### FUNCTION g_type_parent ##### -->
638 <para>
639 Return the direct parent type of the passed in type.
640 If the passed in type has no parent, i.e. is a fundamental type, 0 is returned.
641 </para>
642
643 @type:    The derived type.
644 @Returns: The parent type.
645
646
647 <!-- ##### FUNCTION g_type_depth ##### -->
648 <para>
649
650 </para>
651
652 @type: 
653 @Returns: 
654
655
656 <!-- ##### FUNCTION g_type_next_base ##### -->
657 <para>
658 Given a @leaf_type and a @root_type which is contained in its anchestry, return
659 the type that @root_type is the immediate parent of.
660 In other words, this function determines the type that is derived directly from
661 @root_type which is also a base class of @leaf_type.  Given a root type and a
662 leaf type, this function can be used to determine the types and order in which
663 the leaf type is descended from the root type.
664 </para>
665
666 @leaf_type:     Descendant of @root_type and the type to be returned.
667 @root_type:     Immediate parent of the returned type.
668 @Returns:       Immediate child of @root_type and anchestor of @leaf_type.
669
670
671 <!-- ##### FUNCTION g_type_is_a ##### -->
672 <para>
673 Check whether @type is a descendant of @is_a_type.
674 </para>
675
676 @type:      Type to check anchestry for.
677 @is_a_type: Possible anchestor of @type.
678 @Returns:   %TRUE if @type is_a @is_a_type holds true.
679
680
681 <!-- ##### FUNCTION g_type_fundamental_branch_last ##### -->
682 <para>
683
684 </para>
685
686 @type: 
687 @Returns: 
688
689
690 <!-- ##### FUNCTION g_type_class_ref ##### -->
691 <para>
692 Increments the reference count of the class structure belonging to
693 @type. This function will demand-create the class if it doesn't
694 exist already.
695 </para>
696
697 @type:    Type ID of a classed type.
698 @Returns: The #GTypeClass structure for the given type ID.
699
700
701 <!-- ##### FUNCTION g_type_class_peek ##### -->
702 <para>
703 This function is essentially the same as g_type_class_ref(), except that
704 the classes reference count isn't incremented. Therefore, this function
705 may return NULL if the class of the type passed in does not currently
706 exist (hasn't been referenced before).
707 </para>
708
709 @type:          Type ID of a classed type.
710 @Returns:       The #GTypeClass structure for the given type ID or NULL
711                 if the class does not currently exist.
712
713
714 <!-- ##### FUNCTION g_type_class_unref ##### -->
715 <para>
716 Decrements the reference count of the class structure being passed in.
717 Once the last reference count of a class has been released, classes
718 may be finalized by the type system, so further dereferencing of a
719 class pointer after g_type_class_unref() are invalid.
720 </para>
721
722 @g_class:       The #GTypeClass structure to unreference.
723
724
725 <!-- ##### FUNCTION g_type_class_peek_parent ##### -->
726 <para>
727 This is a convenience function, often needed in class intializers.
728 It essentially takes the immediate parent type of the class passed in,
729 and returns the class structure thereof. Since derived classes hold
730 a reference count on their parent classes as long as they are instantiated,
731 the returned class will always exist. This function is essentially
732 equivalent to:
733
734 <msgtext><programlisting>
735 g_type_class_peek (g_type_parent (G_TYPE_FROM_CLASS (g_class)));
736 </programlisting></msgtext>
737
738 </para>
739
740 @g_class: The #GTypeClass structure to retrieve the parent class for.
741 @Returns: The parent class of @g_class.
742
743
744 <!-- ##### FUNCTION g_type_interface_peek ##### -->
745 <para>
746
747 </para>
748
749 @instance_class: 
750 @iface_type: 
751 @Returns: 
752
753
754 <!-- ##### FUNCTION g_type_interface_peek_parent ##### -->
755 <para>
756
757 </para>
758
759 @g_iface: 
760 @Returns: 
761
762
763 <!-- ##### FUNCTION g_type_children ##### -->
764 <para>
765 Return a newly allocated and 0 terminated array of type IDs, listing the
766 child types of @type. The return value has to be g_free()ed after use.
767 </para>
768
769 @type:       The parent type.
770 @n_children: Optional #guint pointer to contain the number of child types.
771 @Returns:    Newly allocated and 0 terminated array of child types.
772
773
774 <!-- ##### FUNCTION g_type_interfaces ##### -->
775 <para>
776 Return a newly allocated and 0 terminated array of type IDs, listing the
777 interface types that @type conforms to. The return value has to be
778 g_free()ed after use.
779 </para>
780
781 @type:         The type to list interface types for.
782 @n_interfaces: Optional #guint pointer to contain the number of interface types.
783 @Returns:      Newly allocated and 0 terminated array of interface types.
784
785
786 <!-- ##### FUNCTION g_type_set_qdata ##### -->
787 <para>
788
789 </para>
790
791 @type: 
792 @quark: 
793 @data: 
794
795
796 <!-- ##### FUNCTION g_type_get_qdata ##### -->
797 <para>
798
799 </para>
800
801 @type: 
802 @quark: 
803 @Returns: 
804
805
806 <!-- ##### FUNCTION g_type_query ##### -->
807 <para>
808
809 </para>
810
811 @type: 
812 @query: 
813
814
815 <!-- ##### USER_FUNCTION GBaseInitFunc ##### -->
816 <para>
817 A callback function used by the type system to do base initialization
818 of the class structures of derived types. It is called as part of the
819 initialization process of all derived classes and should reallocate
820 or reset all dynamic class members copied over from the parent class.
821 Therefore class members, e.g. strings, that are not sufficiently
822 handled by a plain memory copy of the parent class into the derived class
823 have to be altered. See GClassInitFunc() for a discussion of the class
824 intialization process.
825 </para>
826
827 @g_class: The #GTypeClass structure to initialize.
828
829
830 <!-- ##### USER_FUNCTION GBaseFinalizeFunc ##### -->
831 <para>
832 A callback function used by the type system to finalize those portions
833 of a derived types class structure that were setup from the corresponding
834 GBaseInitFunc() function. Class finalization basically works the inverse
835 way in which class intialization is performed.
836 See GClassInitFunc() for a discussion of the class intialization process.
837 </para>
838
839 @g_class: The #GTypeClass structure to finalize.
840
841
842 <!-- ##### USER_FUNCTION GClassInitFunc ##### -->
843 <para>
844 A callback function used by the type system to initialize the class
845 of a specific type. This function should initialize all static class
846 members.
847 The initialization process of a class involves:
848 <variablelist>
849   <varlistentry><term></term><listitem><para>
850         1 - Copying common members from the parent class over to the
851         derived class structure.
852   </para></listitem></varlistentry>
853   <varlistentry><term></term><listitem><para>
854         2 -  Zero initialization of the remaining members not copied
855         over from the parent class.
856   </para></listitem></varlistentry>
857   <varlistentry><term></term><listitem><para>
858         3 - Invocation of the GBaseInitFunc initializers of all parent
859         types and the class' type.
860   </para></listitem></varlistentry>
861   <varlistentry><term></term><listitem><para>
862         4 - Invocation of the class' GClassInitFunc initializer.
863   </para></listitem></varlistentry>
864 </variablelist>
865 Since derived classes are partially initialized through a memory copy
866 of the parent class, the general rule is that GBaseInitFunc() and
867 GBaseFinalizeFunc() should take care of necessary reinitialization
868 and release of those class members that were introduced by the type
869 that specified these GBaseInitFunc()/GBaseFinalizeFunc().
870 GClassInitFunc() should only care about intializing static
871 class members, while dynamic class members (such as allocated strings
872 or reference counted resources) are better handled by a GBaseInitFunc()
873 for this type, so proper initialization of the dynamic class members
874 are performed for class intialization of derived types as well.
875 An example may help to correspond the intend of the different class
876 initializers:
877
878 <msgtext><programlisting>
879 typedef struct {
880   GObjectClass parent_class;
881   gint         static_integer;
882   gchar       *dynamic_string;
883 } TypeAClass;
884 static void
885 type_a_base_class_init (TypeAClass *class)
886 {
887   class->dynamic_string = g_strdup ("some string");
888 }
889 static void
890 type_a_base_class_finalize (TypeAClass *class)
891 {
892   g_free (class->dynamic_string);
893 }
894 static void
895 type_a_class_init (TypeAClass *class)
896 {
897   class->static_integer = 42;
898 }
899
900 typedef struct {
901   TypeAClass   parent_class;
902   gfloat       static_float;
903   GString     *dynamic_gstring;
904 } TypeBClass;
905 static void
906 type_b_base_class_init (TypeBClass *class)
907 {
908   class->dynamic_gstring = g_string_new ("some other string);
909 }
910 static void
911 type_b_base_class_finalize (TypeBClass *class)
912 {
913   g_string_free (class->dynamic_gstring);
914 }
915 static void
916 type_b_class_init (TypeBClass *class)
917 {
918   class->static_float = 3.14159265358979323846;
919 }
920 </programlisting></msgtext>
921 Initialization of TypeBClass will first cause initialization of
922 TypeAClass (derived classes reference their parent classes, see
923 g_type_class_ref() on this).
924 Initialization of TypeAClass roughly involves zero-initializing its fields,
925 then calling its GBaseInitFunc() type_a_base_class_init() that allocates
926 its dynamic members (dynamic_string) and finally calling its GClassInitFunc()
927 type_a_class_init() to initialize its static members (static_integer).
928 The first step in the initialization process of TypeBClass is then
929 a plain memory copy of the contents of TypeAClass into TypeBClass and 
930 zero-initialization of the remaining fields in TypeBClass.
931 The dynamic members of TypeAClass within TypeBClass now need
932 reinitialization which is performed by calling type_a_base_class_init()
933 with an argument of TypeBClass.
934 After that, the GBaseInitFunc() of TypeBClass, type_b_base_class_init()
935 is called to allocate the dynamic members of TypeBClass (dynamic_gstring),
936 and finally the GClassInitFunc() of TypeBClass, type_b_class_init(),
937 is called to complete the initialization process with the static members
938 (static_float).
939 Corresponding finalization counter parts to the GBaseInitFunc() functions
940 have to be provided to release allocated resources at class finalization
941 time.
942 </para>
943
944 @g_class:       The #GTypeClass structure to initialize.
945 @class_data:    The @class_data member supplied via the #GTypeInfo structure.
946
947
948 <!-- ##### USER_FUNCTION GClassFinalizeFunc ##### -->
949 <para>
950 A callback function used by the type system to finalize a class.
951 This function is rarely needed, as dynamically allocated class resources
952 should be handled by GBaseInitFunc() and GBaseFinalizeFunc().
953 Also, specification of a GClassFinalizeFunc in the #GTypeInfo
954 structure of a static type is invalid, because classes of static types
955 will never be finalized (they are artificially kept alive when their
956 reference count drops to zero).
957 </para>
958
959 @g_class:       The #GTypeClass structure to finalize.
960 @class_data:    The @class_data member supplied via the #GTypeInfo structure.
961
962
963 <!-- ##### USER_FUNCTION GInstanceInitFunc ##### -->
964 <para>
965 A callback function used by the type system to initialize a new
966 instance of a type. This function initializes all instance members and
967 allocates any resources required by it.
968 Initialization of a derived instance involves calling all its parent
969 types instance initializers, therefore the class member of the instance
970 is altered during its initialization to always point to the class that
971 belongs to the type the current initializer was introduced for.
972 </para>
973
974 @instance:      The instance to initialize.
975 @g_class:       The class of the type the instance is created for.
976
977
978 <!-- ##### USER_FUNCTION GInterfaceInitFunc ##### -->
979 <para>
980 A callback function used by the type system to initialize a new
981 interface.  This function should initialize all internal data and
982 allocate any resources required by the interface.
983 </para>
984
985 @g_iface:       The interface structure to initialize.
986 @iface_data:    The @class_data supplied via the #GTypeInfo structure.
987
988
989 <!-- ##### USER_FUNCTION GInterfaceFinalizeFunc ##### -->
990 <para>
991 A callback function used by the type system to finalize an interface.
992 This function should destroy any internal data and release any resources
993 allocated by the corresponding GInterfaceInitFunc() function.
994 </para>
995
996 @g_iface:       The interface structure to finalize.
997 @iface_data:    The @class_data supplied via the #GTypeInfo structure.
998
999
1000 <!-- ##### USER_FUNCTION GTypeClassCacheFunc ##### -->
1001 <para>
1002
1003 </para>
1004
1005 @cache_data: 
1006 @g_class: 
1007 @Returns: 
1008
1009
1010 <!-- ##### ENUM GTypeFlags ##### -->
1011 <para>
1012 Bit masks used to check or determine characteristics of a type.
1013 </para>
1014
1015 @G_TYPE_FLAG_ABSTRACT:  Indicates an abstract type. No instances can be
1016                         created for an abstract type.
1017 @G_TYPE_FLAG_VALUE_ABSTRACT: 
1018
1019 <!-- ##### ENUM GTypeFundamentalFlags ##### -->
1020 <para>
1021 Bit masks used to check or determine specific characteristics of a
1022 fundamental type.
1023 </para>
1024
1025 @G_TYPE_FLAG_CLASSED:           Indicates a classed type.
1026 @G_TYPE_FLAG_INSTANTIATABLE:    Indicates an instantiable type (implies classed).
1027 @G_TYPE_FLAG_DERIVABLE:                 Indicates a flat derivable type.
1028 @G_TYPE_FLAG_DEEP_DERIVABLE:    Indicates a deep derivable type (implies derivable).
1029
1030 <!-- ##### FUNCTION g_type_register_static ##### -->
1031 <para>
1032 Registers @type_name as the name of a new static type derived from
1033 @parent_type.  The type system uses the information contained in the
1034 #GTypeInfo structure pointed to by @info to manage the type and its
1035 instances (if not abstract).  The value of @flags determines the nature
1036 (e.g. abstract or not) of the type.
1037 </para>
1038
1039 @parent_type:   Type which this type will be derived from.
1040 @type_name:     Null-terminated string used as the name of the new type.
1041 @info:          The #GTypeInfo structure for this type.
1042 @flags:                 Bitwise combination of #GTypeFlags values.
1043 @Returns:       The new type identifier.
1044
1045
1046 <!-- ##### FUNCTION g_type_register_dynamic ##### -->
1047 <para>
1048 Registers @type_name as the name of a new dynamic type derived from
1049 @parent_type.  The type system uses the information contained in the
1050 #GTypePlugin structure pointed to by @plugin to manage the type and its
1051 instances (if not abstract).  The value of @flags determines the nature
1052 (e.g. abstract or not) of the type.
1053 </para>
1054
1055 @parent_type:   Type which this type will be derived from.
1056 @type_name:     Null-terminated string used as the name of the new type.
1057 @plugin:        The #GTypePlugin structure to retrive the #GTypeInfo from.
1058 @flags:                 Bitwise combination of #GTypeFlags values.
1059 @Returns:       The new type identifier.
1060 <!-- # Unused Parameters # -->
1061 @Returns: #G_TYPE_INVALID if registration failed or the new type identifier.
1062
1063
1064 <!-- ##### FUNCTION g_type_register_fundamental ##### -->
1065 <para>
1066 Registers @type_id as the predefined identifier and @type_name as the
1067 name of a fundamental type.  The type system uses the information
1068 contained in the #GTypeInfo structure pointed to by @info and the 
1069 #GTypeFundamentalInfo structure pointed to by @finfo to manage the
1070 type and its instances.  The value of @flags determines additional
1071 characteristics of the fundamental type.
1072 </para>
1073
1074 @type_id:       A predefined #GTypeFundamentals value.
1075 @type_name:     Null-terminated string used as the name of the new type.
1076 @info:          The #GTypeInfo structure for this type.
1077 @finfo:                 The #GTypeFundamentalInfo structure for this type.
1078 @flags:                 Bitwise combination of #GTypeFlags values.
1079 @Returns:       The predefined type identifier.
1080
1081
1082 <!-- ##### FUNCTION g_type_add_interface_static ##### -->
1083 <para>
1084 Adds the static @interface_type to @instantiable_type.  The information
1085 contained in the #GTypeInterfaceInfo structure pointed to by @info
1086 is used to manage the relationship.
1087 </para>
1088
1089 @instance_type:          #GType value of an instantiable type.
1090 @interface_type: #GType value of an interface type.
1091 @info:           The #GInterfaceInfo structure for this
1092                  (@instance_type, @interface_type) combination.
1093
1094
1095 <!-- ##### FUNCTION g_type_add_interface_dynamic ##### -->
1096 <para>
1097 </para>
1098
1099 @instance_type: 
1100 @interface_type: 
1101 @plugin: 
1102
1103
1104 <!-- ##### FUNCTION g_type_interface_add_prerequisite ##### -->
1105 <para>
1106
1107 </para>
1108
1109 @interface_type: 
1110 @prerequisite_type: 
1111
1112
1113 <!-- ##### FUNCTION g_type_get_plugin ##### -->
1114 <para>
1115 Returns the the #GTypePlugin structure for @type or
1116 #NULL if @type does not have a #GTypePlugin structure.
1117 </para>
1118
1119 @type:          The #GType to retrive the plugin for.
1120 @Returns:       The corresponding plugin if @type is a dynamic type,
1121                 NULL otherwise.
1122
1123
1124 <!-- ##### FUNCTION g_type_interface_get_plugin ##### -->
1125 <para>
1126 </para>
1127
1128 @instance_type: 
1129 @implementation_type: 
1130 @Returns: 
1131
1132
1133 <!-- ##### FUNCTION g_type_fundamental_last ##### -->
1134 <para>
1135 Returns the last fundamental type which is registered plus one,
1136 i.e. the next fundamental type ID that may be registered.
1137 </para>
1138
1139 @Returns: The nextmost not registered fundamental type ID.
1140
1141
1142 <!-- ##### FUNCTION g_type_create_instance ##### -->
1143 <para>
1144 Creates and initializes an instance of @type if @type is valid and can
1145 be instantiated. The type system only performs basic allocation and
1146 structure setups for instances, actual instance creation should happen
1147 through functions supplied by the types fundamental type implementation.
1148 So use of g_type_create_instance() is reserved for implementators of
1149 fundamental types only. E.g. instances of the #GObject hierarchy
1150 should be created via g_object_new() and <emphasis>never</emphasis>
1151 directly through g_type_create_instance() which doesn't handle
1152 things like singleton objects or object construction.
1153 Note: Do <emphasis>not</emphasis> use this function, unless you're
1154 implementing a fundamental type. Also language bindings should <emphasis>not</emphasis>
1155 use this function but g_object_new() instead.
1156 </para>
1157
1158 @type:    An instantiabtable type to create an instance for.
1159 @Returns: An allocated and initialized instance, subject to further
1160           treatment by the fundamental type implementation.
1161
1162
1163 <!-- ##### FUNCTION g_type_free_instance ##### -->
1164 <para>
1165 </para>
1166
1167 @instance: 
1168
1169
1170 <!-- ##### FUNCTION g_type_add_class_cache_func ##### -->
1171 <para>
1172
1173 </para>
1174
1175 @cache_data: 
1176 @cache_func: 
1177
1178
1179 <!-- ##### FUNCTION g_type_remove_class_cache_func ##### -->
1180 <para>
1181
1182 </para>
1183
1184 @cache_data: 
1185 @cache_func: 
1186
1187
1188 <!-- ##### FUNCTION g_type_class_unref_uncached ##### -->
1189 <para>
1190
1191 </para>
1192
1193 @g_class: 
1194
1195
1196 <!-- ##### FUNCTION g_type_value_table_peek ##### -->
1197 <para>
1198 Returns the location of the #GTypeValueTable associated with @type.
1199 <emphasis>Note, this function should only be used from source code
1200 that implements or has internal knowledge of the implementation of
1201 @type.</emphasis>
1202 </para>
1203
1204 @type:    A #GType value.
1205 @Returns: Location of the #GTypeValueTable associated with @type or
1206           #NULL if there is no #GTypeValueTable associated with @type.
1207
1208