Initial commit
[platform/upstream/glib2.0.git] / docs / reference / gobject / html / pr01.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <title>Introduction</title>
6 <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7 <link rel="home" href="index.html" title="GObject Reference Manual">
8 <link rel="up" href="index.html" title="GObject Reference Manual">
9 <link rel="prev" href="index.html" title="GObject Reference Manual">
10 <link rel="next" href="pt01.html" title="Part I. Concepts">
11 <meta name="generator" content="GTK-Doc V1.13 (XML mode)">
12 <link rel="stylesheet" href="style.css" type="text/css">
13 <link rel="preface" href="pr01.html" title="Introduction">
14 <link rel="part" href="pt01.html" title="Part I. Concepts">
15 <link rel="chapter" href="chapter-intro.html" title="Background">
16 <link rel="chapter" href="chapter-gtype.html" title="The GLib Dynamic Type System">
17 <link rel="chapter" href="chapter-gobject.html" title="The GObject base class">
18 <link rel="chapter" href="chapter-signal.html" title="The GObject messaging system">
19 <link rel="reference" href="rn01.html" title="API Reference">
20 <link rel="reference" href="rn02.html" title="Tools Reference">
21 <link rel="part" href="pt02.html" title="Part IV. Tutorial">
22 <link rel="chapter" href="howto-gobject.html" title="How to define and implement a new GObject">
23 <link rel="chapter" href="howto-interface.html" title="How to define and implement interfaces">
24 <link rel="chapter" href="howto-signals.html" title="How to create and use signals">
25 <link rel="part" href="pt03.html" title="Part V. Related Tools">
26 <link rel="chapter" href="tools-vala.html" title="Vala">
27 <link rel="chapter" href="tools-gob.html" title="GObject builder">
28 <link rel="chapter" href="tools-ginspector.html" title="Graphical inspection of GObjects">
29 <link rel="chapter" href="tools-refdb.html" title="Debugging reference count problems">
30 <link rel="chapter" href="tools-gtkdoc.html" title="Writing API docs">
31 <link rel="index" href="api-index-full.html" title="Index">
32 <link rel="index" href="api-index-deprecated.html" title="Index of deprecated symbols">
33 <link rel="index" href="api-index-2-2.html" title="Index of new symbols in 2.2">
34 <link rel="index" href="api-index-2-4.html" title="Index of new symbols in 2.4">
35 <link rel="index" href="api-index-2-6.html" title="Index of new symbols in 2.6">
36 <link rel="index" href="api-index-2-8.html" title="Index of new symbols in 2.8">
37 <link rel="index" href="api-index-2-10.html" title="Index of new symbols in 2.10">
38 <link rel="index" href="api-index-2-12.html" title="Index of new symbols in 2.12">
39 <link rel="index" href="api-index-2-14.html" title="Index of new symbols in 2.14">
40 <link rel="index" href="api-index-2-18.html" title="Index of new symbols in 2.18">
41 <link rel="index" href="api-index-2-22.html" title="Index of new symbols in 2.22">
42 <link rel="index" href="api-index-2-24.html" title="Index of new symbols in 2.24">
43 </head>
44 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
45 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
46 <td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
47 <td> </td>
48 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
49 <th width="100%" align="center">GObject Reference Manual</th>
50 <td><a accesskey="n" href="pt01.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
51 </tr></table>
52 <div class="preface" title="Introduction">
53 <div class="titlepage"><div><div><h2 class="title">
54 <a name="id552400"></a>Introduction</h2></div></div></div>
55 <p>
56                         Most modern programming languages come with their own native object
57                         systems and additional fundamental algorithmic language constructs.
58                         Just as GLib serves as an implementation of such fundamental
59                         types and algorithms (linked lists, hash tables and so forth), the
60                         GLib Object System provides the required implementations of a
61                         flexible extensible and intentionally easy to map (into other
62                         languages) object-oriented framework for C.
63                         The substantial elements that are provided can be summarized as:
64                         </p>
65 <div class="itemizedlist"><ul class="itemizedlist" type="disc">
66 <li class="listitem"><p>
67                                          A generic type system to register arbitrary single-inherited
68                                                 flat and deep derived types as well as interfaces for
69                                                 structured types.
70                                                 It takes care of creation, initialization and memory management
71                                                 of the assorted object and class structures, maintains
72                                                 parent/child relationships and deals with dynamic implementations
73                                                 of such types. That is, their type specific implementations are
74                                                 relocatable/unloadable during runtime.
75                                 </p></li>
76 <li class="listitem"><p>
77                                                 A collection of fundamental type implementations, such as integers,
78                                                 doubles, enums and structured types, to name a few.
79                                 </p></li>
80 <li class="listitem"><p>
81                                                 A sample fundamental type implementation to base object hierarchies
82                                                 upon - the GObject fundamental type.
83                                 </p></li>
84 <li class="listitem"><p>
85                                                 A signal system that allows very flexible user customization of
86                                                 virtual/overridable object methods and can serve as a powerful
87                                                 notification mechanism.
88                                 </p></li>
89 <li class="listitem"><p>
90                                                 An extensible parameter/value system, supporting all the provided
91                                                 fundamental types that can be used to generically handle object
92                                                 properties or otherwise parameterized types.
93                                 </p></li>
94 </ul></div>
95 <p>
96                 </p>
97 </div>
98 <div class="footer">
99 <hr>
100           Generated by GTK-Doc V1.13</div>
101 </body>
102 </html>