Remove references to nonexisting functions
* glib/gmain.c: Remove references to nonexisting functions
g_source_set_callback_closure(), g_source_poll(), g_source_add()
from docs.
* glib/gdir.c (g_dir_open): Typo fix in docs.
* glib/gasyncqueue.c (g_async_queue_lock):
(g_async_queue_unref_and_unlock): Fix markup to avoid erroneous
<link>s in docs.
* glib/gwin32.c: Escape #'s leading to erroneous <link>s in docs.
* glib/gtree.c: Replace some occurances of Gtree by GTree in docs.
* glib/gstring.c (g_string_insert_unichar): Typo fix in docs.
* glib/tmpl/conversions.sgml: Add GIConv.
* glib/tmpl/main.sgml: Fix references to nonexisting functions
g_main_loop_destroy(), g_source_add(), g_source_connect().
* glib/glib-sections.txt: Add GIConv, g_str_has_prefix, g_str_has_suffix.
* glib/tmpl/linked_lists_single.sgml:
* glib/tmpl/linked_lists_double.sgml: GListAllocator doesn't exist.
* glib/glib-docs.sgml: Declare hash entity.
* glib/tmpl/macros.sgml: Escape # in #ifdef to suppress erroneous links.
* gobject/Makefile.am, gobject/gobject-docs.sgml, gobject/tmpl/*:
* glib/Makefile.am, glib/glib-docs.sgml, glib/tmpl/*: Produce XML,
not SGML.
2002-05-27 00:46:28 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
|
|
|
<!ENTITY gobject-GType SYSTEM "xml/gtype.xml">
|
|
|
|
<!ENTITY gobject-GTypePlugin SYSTEM "xml/gtypeplugin.xml">
|
|
|
|
<!ENTITY gobject-GTypeModule SYSTEM "xml/gtypemodule.xml">
|
|
|
|
<!ENTITY gobject-The-Base-Object-Type SYSTEM "xml/objects.xml">
|
|
|
|
<!ENTITY gobject-Enumeration-and-Flag-Types SYSTEM "xml/enumerations_flags.xml">
|
|
|
|
<!ENTITY gobject-Boxed-Types SYSTEM "xml/gboxed.xml">
|
|
|
|
<!ENTITY gobject-Generic-values SYSTEM "xml/generic_values.xml">
|
|
|
|
<!ENTITY gobject-param-value-types SYSTEM "xml/param_value_types.xml">
|
|
|
|
<!ENTITY gobject-GParamSpec SYSTEM "xml/gparamspec.xml">
|
|
|
|
<!ENTITY gobject-Varargs-Value-Collection SYSTEM "xml/value_collection.xml">
|
|
|
|
<!ENTITY gobject-Signals SYSTEM "xml/signals.xml">
|
|
|
|
<!ENTITY gobject-Closures SYSTEM "xml/gclosure.xml">
|
|
|
|
<!ENTITY gobject-Value-Arrays SYSTEM "xml/value_arrays.xml">
|
2003-06-18 01:08:37 +02:00
|
|
|
<!ENTITY glib-mkenums SYSTEM "glib-mkenums.xml">
|
|
|
|
<!ENTITY glib-genmarshal SYSTEM "glib-genmarshal.xml">
|
|
|
|
<!ENTITY gobject-query SYSTEM "gobject-query.xml">
|
2002-11-23 02:37:17 +01:00
|
|
|
<!ENTITY version SYSTEM "version.xml">
|
2005-04-22 12:27:37 +02:00
|
|
|
|
|
|
|
<!ENTITY tutorial-Intro SYSTEM "tut_intro.xml">
|
|
|
|
<!ENTITY tutorial-GType SYSTEM "tut_gtype.xml">
|
|
|
|
<!ENTITY tutorial-GObject SYSTEM "tut_gobject.xml">
|
|
|
|
<!ENTITY tutorial-GSignal SYSTEM "tut_gsignal.xml">
|
|
|
|
<!ENTITY tutorial-HowTo SYSTEM "tut_howto.xml">
|
|
|
|
<!ENTITY tutorial-Tools SYSTEM "tut_tools.xml">
|
|
|
|
|
2000-09-06 06:32:45 +02:00
|
|
|
]>
|
|
|
|
<book id="index">
|
|
|
|
<bookinfo>
|
|
|
|
<title>GObject Reference Manual</title>
|
2002-11-23 02:37:17 +01:00
|
|
|
<releaseinfo>for GLib &version;</releaseinfo>
|
2000-09-06 06:32:45 +02:00
|
|
|
</bookinfo>
|
|
|
|
|
2000-10-30 11:14:47 +01:00
|
|
|
<preface>
|
|
|
|
<title>Introduction</title>
|
|
|
|
<para>
|
2005-04-22 12:27:37 +02:00
|
|
|
Most modern programming languages come with their own native object
|
|
|
|
systems and additional fundamental algorithmic language constructs.
|
|
|
|
Just as GLib serves as an implementation of such fundamental
|
|
|
|
types and algorithms (linked lists, hash tables and so forth), the
|
|
|
|
GLib Object System provides the required implementations of a
|
|
|
|
flexible extensible and intentionally easy to map (into other
|
|
|
|
languages) object oriented framework for C.
|
|
|
|
The substantial elements that are provided can be summarized as:
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para>
|
|
|
|
A generic type system to register arbitrary single-inherited
|
|
|
|
flat and deep derived types as well as interfaces for
|
|
|
|
structured types.
|
|
|
|
It takes care of creation, initialization and memory management
|
|
|
|
of the assorted object and class structures, maintains
|
|
|
|
parent/child relationships and deals with dynamic implementations
|
|
|
|
of such types. That is, their type specific implementations are
|
|
|
|
relocatable/unloadable during runtime.
|
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
|
|
|
A collection of fundamental type implementations, such as integers,
|
|
|
|
doubles, enums and structured types, to name a few.
|
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
|
|
|
A sample fundamental type implementation to base object hierarchies
|
|
|
|
upon - the GObject fundamental type.
|
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
|
|
|
A signal system that allows very flexible user customization of
|
|
|
|
virtual/overridable object methods and can serve as a powerful
|
|
|
|
notification mechanism.
|
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
|
|
|
An extensible parameter/value system, supporting all the provided
|
|
|
|
fundamental types that can be used to generically handle object
|
|
|
|
properties or otherwise parameterized types.
|
|
|
|
</para></listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
</para>
|
2000-10-30 11:14:47 +01:00
|
|
|
</preface>
|
|
|
|
|
2005-04-22 12:27:37 +02:00
|
|
|
<part label="I">
|
|
|
|
<title>Concepts</title>
|
|
|
|
|
|
|
|
&tutorial-Intro;
|
|
|
|
&tutorial-GType;
|
|
|
|
&tutorial-GObject;
|
|
|
|
&tutorial-GSignal;
|
|
|
|
</part>
|
|
|
|
<reference label="II">
|
2000-09-06 06:32:45 +02:00
|
|
|
<title>API Reference</title>
|
2000-10-30 11:14:47 +01:00
|
|
|
|
2000-11-11 01:03:57 +01:00
|
|
|
&gobject-GType;
|
|
|
|
&gobject-GTypePlugin;
|
|
|
|
&gobject-GTypeModule;
|
|
|
|
&gobject-The-Base-Object-Type;
|
|
|
|
&gobject-Enumeration-and-Flag-Types;
|
|
|
|
&gobject-Boxed-Types;
|
|
|
|
&gobject-Generic-values;
|
2001-11-14 02:08:19 +01:00
|
|
|
&gobject-param-value-types;
|
2000-11-11 01:03:57 +01:00
|
|
|
&gobject-Varargs-Value-Collection;
|
2001-11-13 19:49:56 +01:00
|
|
|
&gobject-GParamSpec;
|
2000-11-11 01:03:57 +01:00
|
|
|
&gobject-Signals;
|
|
|
|
&gobject-Closures;
|
2001-08-12 02:56:22 +02:00
|
|
|
&gobject-Value-Arrays;
|
2000-11-11 01:03:57 +01:00
|
|
|
|
2000-09-06 17:01:07 +02:00
|
|
|
</reference>
|
2005-04-22 12:27:37 +02:00
|
|
|
<reference label="III">
|
2003-06-18 01:08:37 +02:00
|
|
|
<title>Tools Reference</title>
|
|
|
|
|
|
|
|
&glib-mkenums;
|
|
|
|
&glib-genmarshal;
|
|
|
|
&gobject-query;
|
|
|
|
</reference>
|
2005-04-22 12:27:37 +02:00
|
|
|
<part label="IV">
|
|
|
|
<title>Tutorial</title>
|
|
|
|
|
|
|
|
&tutorial-HowTo;
|
|
|
|
</part>
|
|
|
|
<part label="V">
|
|
|
|
<title>Related Tools</title>
|
|
|
|
|
|
|
|
&tutorial-Tools;
|
|
|
|
</part>
|
2003-06-18 01:08:37 +02:00
|
|
|
|
2004-05-05 19:32:12 +02:00
|
|
|
<index>
|
|
|
|
<title>Index</title>
|
|
|
|
</index>
|
|
|
|
<index role="deprecated">
|
|
|
|
<title>Index of deprecated symbols</title>
|
|
|
|
</index>
|
|
|
|
<index role="2.2">
|
|
|
|
<title>Index of new symbols in 2.2</title>
|
|
|
|
</index>
|
|
|
|
<index role="2.4">
|
|
|
|
<title>Index of new symbols in 2.4</title>
|
|
|
|
</index>
|
2004-10-26 18:13:20 +02:00
|
|
|
<index role="2.6">
|
|
|
|
<title>Index of new symbols in 2.6</title>
|
|
|
|
</index>
|
2005-07-08 17:04:29 +02:00
|
|
|
<index role="2.8">
|
|
|
|
<title>Index of new symbols in 2.8</title>
|
|
|
|
</index>
|
2005-08-26 21:28:26 +02:00
|
|
|
<index role="2.10">
|
|
|
|
<title>Index of new symbols in 2.10</title>
|
|
|
|
</index>
|
2006-04-21 18:54:15 +02:00
|
|
|
<index role="2.12">
|
|
|
|
<title>Index of new symbols in 2.12</title>
|
|
|
|
</index>
|
2006-12-29 07:12:11 +01:00
|
|
|
<index role="2.14">
|
|
|
|
<title>Index of new symbols in 2.14</title>
|
|
|
|
</index>
|
2000-10-30 11:14:47 +01:00
|
|
|
|
2000-10-30 06:03:19 +01:00
|
|
|
</book>
|