Add g_type_get_plugin.
[platform/upstream/glib.git] / gobject / ChangeLog
1 2000-07-14  Tor Lillqvist  <tml@iki.fi>
2
3         * gobject.def: Add g_type_get_plugin.
4
5 Thu Jul 13 02:07:54 2000  Tim Janik  <timj@gtk.org>
6
7         * gparam.c (g_param_value_defaults): default initialize the temporary
8         default value, instead of nuking the caller's value contents.
9
10 2000-07-11  Raja R Harinath  <harinath@cs.umn.edu>
11
12         * gtype.c (g_type_get_plugin): Don't return just 0 or 1.
13
14 Tue Jul 11 02:48:13 2000  Tim Janik  <timj@gtk.org>
15
16         * gtype.[hc]: removed g_type_is_dynamic() and added g_type_get_plugin().
17
18 2000-07-10  Tor Lillqvist  <tml@iki.fi>
19
20         * gobject-query.c: Include ../config.h for HAVE_UNISTD_H. Use it
21         to guard inclusion of <unistd.h>.
22
23         * gtype.h: Fix copy-paste errors in the ifdefs on how to declare a
24         variable for export. Call the macro GOBJECT_VAR.
25
26         * gtype.c: Declare _g_type_fundamental_last for export here, too.
27         (type_node_any_new): Use only constant expressions for sizeof
28         operator (for instance MSVC requires this).
29
30         * makefile.mingw.in: Define GOBJECT_COMPILATION.
31
32 Sun Jul  9 21:21:46 2000  Owen Taylor  <otaylor@redhat.com>
33
34         * genums.c: Move string.h include into the .c file
35         instead of where it was in the .h file by mistake.
36
37 Thu Jul  6 15:30:27 2000  Owen Taylor  <otaylor@redhat.com>
38
39         * Makefile.am (EXTRA_DIST): dist fixes.
40
41         * gobject.c: Add a global variable glib_debug_objects
42         (not in header file) to control object tracing.
43
44 2000-07-01  Tor Lillqvist  <tml@iki.fi>
45
46         * gobject.def: Update added and renamed entry points.
47
48         * makefile.mingw.in: Add gvaluetypes.o.
49
50 Thu Jun 29 16:02:07 2000  Owen Taylor  <otaylor@redhat.com>
51
52         * gobject.c:include string.h for memset
53         * genums.h: include string.h for strcpy
54         * gvalue.c: include string.h for memset, memcpy.
55
56 Sat Jun 24 23:03:04 2000  Tim Janik  <timj@gtk.org>
57
58         * gtype.[hc]: provide G_TYPE_CHAR, G_TYPE_UCHAR, G_TYPE_BOOLEAN,
59         G_TYPE_INT, G_TYPE_UINT, G_TYPE_LONG, G_TYPE_ULONG, G_TYPE_FLOAT,
60         G_TYPE_DOUBLE and G_TYPE_STRING fundamental types.
61         added a GTypeValueTable* pointer to GTypeInfo structure for types
62         to implement GValue handling functions.
63         GTypeValueTable contains the following members:
64           value_init(): initialize a GValue structure.
65           value_free(): free GValue structure contents (optional).
66           value_copy(): copy one GValue contents to another GValue structure of
67           collect_type: varargs collection type for the first variable argument
68           to be collected by collect_value().
69           collect_value(): variable arguments collection function (optional).
70           lcopy_type: varargs collection type for the first variable argument
71           to be location copyied by lcopy_value().
72           lcopy_value(): variable arguments location copy function (optional).
73         g_type_value_table_peek(): new function to retrive the GTypeValueTable*
74         for a type node. ValueTables get inherited from parent types, unless
75         overridden through the GTypeInfo structure. internally, GTypeValueTable
76         support means an added overhead of one pointer per static or used
77         dynamic type node.
78         g_type_add_class_cache_func(): provide a cache_func/data pair to be
79         called  prior to a type nodes last_unref() function, this can be used
80         to prevent premature class destruction. multiple installed cache_func()
81         will be chained upon last_unref() untill one of them returns TRUE.
82         the cache_func()s have to check the class id passed in to figure whether
83         they actually want to cache the class of this type (since all classes
84         are routed through the cache_func() chain).
85         g_type_remove_class_cache_func(): remove a previously installed
86         cache_func/data pair. the cache maintained by this function has to be
87         clear when calling g_type_remove_class_cache_func() to avoid leaks.
88         g_type_class_unref_uncached(): class unref function for cache_func()
89         implementations, unreferences a class omitting the cache chain (and
90         therefore unref->cache->unref->... loops).
91
92         * gvaluetypes.[hc]: provide the value setters/getters for the primitive
93         fundamental types boolean, char, uchar, int, uint, long, ulong, float,
94         double and string.
95
96         * gvalue.[hc]: provide G_TYPE_IS_VALUE() in terms of whether a
97         GTypeValueTable is provided for this type.
98         removed g_value_init_default(), g_value_validate(), g_value_defaults(),
99         g_value_set_default() and g_values_cmp() as these are supplied by the
100         GParamSpec API now.
101         moved g_values_exchange() into the "implementation details" section,
102         since it just provides the underlying functionality for
103         g_value_convert().
104
105         * gvaluecollector.h: renamed the varargs value container from
106         GParamCValue to GTypeCValue as the value collection methods are
107         supplied by the type system now.
108         G_PARAM_COLLECT_VALUE() and G_PARAM_LCOPY_VALUE() got renamed to
109         G_VALUE_COLLECT() and G_VALUE_LCOPY() and operate without a
110         GParamSpec structure now.
111
112         * genums.h: macros cleanups/fixes.
113
114         * genum.c: provide G_TYPE_ENUM and G_TYPE_FLAGS type
115         and assorted g_value_{s|g}et_{enum|flags}() implementations.
116
117         * gobject.[hc]:
118         provide G_IS_VALUE_OBJECT(), G_TYPE_OBJECT ValueTable methods
119         and g_value_{s|g}et_object().
120
121         * gparam.[hc]: reduced class to value_set_default(),
122         value_validate() and values_cmp(). also parameters now need to fill
123         in a GType value_type; field to indicate the GValue type they
124         are handling. provide g_param_value_set_default(),
125         g_param_value_defaults(), g_param_value_validate() and
126         g_param_values_cmp().
127
128         * gparamspecs.[hc]: got rid of the g_value_* functions and
129         the G_IS_VALUE_* macros. adapted param spec implementations
130         according to the GParamSpecClass changes.
131
132 Sat Jun 10 08:38:27 2000  Tim Janik  <timj@gtk.org>
133
134         * gtype.c (type_class_init): fetch the nth iface entry of the
135         type node in the nth loop iteration, not alwys the first.
136         bug discovered by Walt Pohl <cher@suitware.com>.
137         (type_data_finalize_class_ifaces): same here, cut and paste
138         rulez.
139
140 Wed Jun  7 09:21:05 2000  Owen Taylor  <otaylor@redhat.com>
141
142         * Makefile.am (INCLUDES): Add top_builddir so glibconfig.h
143         is found properly when build srcdir != builddir. (Patch from
144         Eric Lemings)
145
146 2000-05-13  Tor Lillqvist  <tml@iki.fi>
147
148         * makefile.mingw.in
149         * gobject.def
150         * gobject.rc.in: New files, for Win32 (mingw) build.
151
152         * Makefile.am: Add to EXTRA_DIST. Add rules to produce the
153         corresponding non-*.in files.
154
155         * gtype.h: (Win32:) Mark _g_type_fundamental_last for
156         export/import from DLL.
157
158 Fri May  5 01:15:48 2000  Tim Janik  <timj@gtk.org>
159
160         * gtype.h: add reserved fundamental ids for gtk types (for transition
161         time). added G_TYPE_FUNDAMENTAL_MAX for gtk.
162
163 Mon Apr 17 20:45:50 2000  Tim Janik  <timj@gtk.org>
164
165         * glib-gobject.c (g_object_base_class_finalize): oops, don't unset
166         n_params prior to destructing them.
167
168 Tue Apr 11 04:28:10 2000  Tim Janik  <timj@gtk.org>
169
170         * fixed a couple of bugs in the initial parameter/object
171         implementations, after getting beast running on GObject and GValue.
172
173 Fri Apr  7 04:27:49 2000  Tim Janik  <timj@gtk.org>
174
175         * glib-gobject.[hc]: completed parameter set/get implementations,
176         along with asyncronous parameter changed notification queue.
177
178 Sun Apr  2 04:54:36 2000  Tim Janik  <timj@gtk.org>
179
180         * glib-gobject.[hc]: GObject implementation, that is facilities
181         for setting/getting quarked data and reference counting.
182
183         * glib-gparamspecs.[hc]: first actuall parameter implementations
184         for GLib, so far we have: char, uchar, bool, int, uint, long,
185         ulong, enum, flags, float, double, string and object. each of these
186         GParamSpecs is a new instantiatable type in its own respect,
187         so the .c file derives 13 new types from G_TYPE_PARAM and
188         defines over 50 (*2) conversion facilities.
189
190         * glib-gvaluecollector.h: generic varargs handling stubs for
191         GParamSpecs, private header file (does get installed for
192         inclusion into user code though).
193
194         * glib-gvalue.[hc]: GValue functionality implementation.
195
196         * glib-gparam.[hc]: basis GParamSpec implementation for
197         the virtual base type G_TYPE_PARAM.
198
199         * glib-genums.[hc]: enum/flags type implementation, based on
200         bseenum.[hc].
201
202         * glib-extra.[hc]: GLib additions, including 1.3 compatibility
203         routines and various other functions, from string manipulation
204         over list manipulation up to a unix signal GSource.
205
206         * glib-gtype.[hc]: GLib Type System implementation, heavily
207         based on BSE's dynamic type system.