More Win32 automake macros. For .def files: GLIB_DEF, GMODULE_DEF,
[platform/upstream/glib.git] / gobject / ChangeLog
index 197839b..f6533c9 100644 (file)
@@ -1,3 +1,227 @@
+2001-09-25  Tor Lillqvist  <tml@iki.fi>
+
+       * Makefile.am: Use new macros for .def file, and check for
+       MS_LIB_AVAILABLE, new rule to build MS import library.
+
+       * makefile.msc.in: Use same DLL and import library names as
+       libtool.
+       
+2001-09-21  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+2001-09-19  Tor Lillqvist  <tml@iki.fi>
+
+       * gobject.rc.in: Correct InternalName and OriginalFilename to
+       match what we actually produce.
+
+Tue Sep 18 23:09:02 2001  Tim Janik  <timj@gtk.org>
+
+       * gparam.[hc]: rename *nick and *blurb fields to catch
+       direct accesses in third party code.
+       provide g_param_get_nick(), g_param_get_blurb() and
+       g_param_get_name() accessors.
+
+Mon Sep 10 20:31:37 2001  Tim Janik  <timj@gtk.org>
+
+       * gobject.[hc]: removed extraneous GObject* returns from a
+       couple functions that are very unlikely to be used in nested.
+       changed gpointer->GObject* for a couple return values/arguments.
+       this fixes #50206.
+
+Mon Sep 10 19:27:47 2001  Tim Janik  <timj@gtk.org>
+
+       * gtype.[hc]:
+       g_type_add_interface*(): implement the ability to add an interface to
+       a type whose parents already conform to this interface.
+       such "overriding" interfaces, when initialized, are not just initialized
+       with 0, but with a copy of the interface they override.
+       g_type_interface_peek_parent(): new function, return the interface
+       that this interface "overrides", if any.
+
+       * testgruntime.c: test new interface stuff.
+
+2001-09-10  Alex Larsson  <alexl@redhat.com>
+
+        * gobject/gboxed.[ch]:
+        * gobject/gsourceclosure.c:
+        Removed is_refcounted and GBoxedInitFunc from
+        g_boxed_type_register_static().
+
+Sat Sep  8 14:13:57 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gobject/Makefile.am: Move gbsearcharray.[ch] to glib
+       as a private ininstalled header.
+
+Tue Sep  4 22:24:48 2001  Matthias Clasen  <matthiasc@poet.de>
+
+       * gobject.c (g_object_base_class_finalize): typo fix.
+
+Tue Sep  4 01:49:18 2001  Tim Janik  <timj@gtk.org>
+
+       * gsourceclosure.c: make closure_callback_funcs static,
+       added some g_return_if_fail() statements.
+
+Mon Aug 27 14:55:27 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gsourceclosure.[ch] (g_source_set_closure): Implement.
+
+       * gsourceclosure.[ch]: Add GType's for GIOChannel, GIOCondition.
+
+2001-08-17  James Henstridge  <james@daa.com.au>
+
+       * gobject.c (WeakRefStack): add an object member to the structure.
+       (weak_refs_notify): pass wstack->object as extra argument to
+       notify functions.
+       (g_object_weak_ref): set wstack->object when initialising
+       WeakRefStack.
+
+       * gobject.h (GWeakNotify): add second argument to prototype which
+       gives the pointer to where the object that is being disposed of
+       was.
+
+Wed Jul 18 19:42:31 2001  Tim Janik  <timj@gtk.org>
+
+        * gtype.h: if __GNUC__ is defined, inline a test for an exact type
+        match for instances and classes in G_TYPE_CHECK_INSTANCE_TYPE() and
+        G_TYPE_CHECK_CLASS_TYPE() before calling g_type_instance_is_a().
+
+Sun Aug 12 02:07:10 2001  Tim Janik  <timj@gtk.org>
+
+       * gvaluearray.[hc]: fix preallocation logic, support DISABLE_MEM_POOLS
+       properly, group value allocations.
+       (g_value_array_new): fix semantic of n_prealloced argument, so it's
+       really just about preallocation space.
+
+2001-07-23  Padraig O'Briain <Padraig.Obriain@Sun.COM>
+       
+       * gobject/gobjectnotifyqueue.c: fix unconditional check of
+       first GParamSpec in g_object_notify_queue_thaw(); to prevent
+       property notification being lost.
+
+2001-08-06  Sven Neumann  <sven@gimp.org>
+
+       * gobject.[ch]: 
+       added new functions g_object_[add|remove]_weak_pointer().
+
+2001-08-01  Sven Neumann  <sven@gimp.org>
+
+       * gsignal.h: added convenience macro g_signal_connect_after().
+
+2001-07-29  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+2001-07-20  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+       * makefile.msc.in : reflect glib move
+
+Tue Jul 10 18:50:16 2001  Tim Janik  <timj@gtk.org>
+
+       * gsignal.h (struct _GSignalQuery): fix misplaced comment.
+
+Mon Jul  2 07:17:47 2001  Tim Janik  <timj@gtk.org>
+
+       * gobject.c (g_object_weak_ref): 
+       (g_object_watch_closure): congrats tim, introducing of-by-one
+       errors like on my very first day of C programming.
+
+Sat Jun 30 11:07:00 2001  Tim Janik  <timj@gtk.org>
+
+       * gobject.[hc]: provide weak_ref/weak_unref functions,
+       invoked from ->dispose. renamed ->shutdown() to ->dispose(),
+       provide "public" API entry here: g_object_run_dispose(), this
+       fucntion should _only_ be called from object system implementations
+       (e.g. gtkobject.c) if at all.
+
+       * gtypemodule.c (g_type_module_dispose): s/shutdown/dispose/
+
+       * gsignal.h: removed compat aliases.
+
+       * gobject.c (g_object_connect): support data objects.
+       
+Sat Jun 30 13:17:12 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * testgruntime.c (test_object_class_init)
+         gobject.c (g_object_do_class_init): 
+         g_signal_newc() => g_signal_new().
+
+Thu Jun 28 22:49:40 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtype.[ch] gobject-query.c testgruntime.c: Remove
+       debug flag argument to g_type_init() and add
+       g_type_init_with_debug_flags().
+
+Thu Jun 28 16:42:49 2001  Tim Janik  <timj@gtk.org>
+
+       * gsignal.c (g_signal_lookup): 
+       (g_signal_list_ids): give elaborate warnings about invalid types,
+       non-instantiatable types and unloaded types that we can't operate on.
+
+       * gparam.[hc]: g_param_spec_pool_belongings() ->
+       g_param_spec_pool_list_owned().
+
+       * gsignal.[hc]: renamed:
+       g_signal_newc -> g_signal_new
+       g_signal_disconnect_by_func -> g_signal_handlers_disconnect_by_func
+       g_signal_block_by_func -> g_signal_handlers_block_by_func
+       g_signal_unblock_by_func -> g_signal_handlers_unblock_by_func
+       added GConnectType to simplify (..gboolean swapped, gboolean after)
+       args.
+
+       * gobject.[hc]: changed prototypes accordingly.
+
+2001-06-22  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+       * gobjectnotifyqueue.c : include <string.h> for memset ()
+
+Thu Jun 21 02:43:10 2001  Tim Janik  <timj@gtk.org>
+
+       * gparamspecs.h: s/long/int/ for default_value in enum and flags
+       pspecs.
+
+Wed Jun 20 03:59:42 2001  Tim Janik  <timj@gtk.org>
+
+       * gtype.[hc]: added debugging variants g_type_name_from_class(),
+       g_type_name_from_instance().
+
+Mon Jun 11 17:07:06 2001  Tim Janik  <timj@gtk.org>
+
+       * gboxed.[hc]: remove left-over usages of an anonymous GBoxed typedef.
+
+       * gobjectnotifyqueue.c: moved property notify queue implementation
+       bits into this function.
+
+       * gparam.[hc]: added g_param_spec_pool_belongings(), completed
+       g_param_spec_pool_list(). added GParameter for _setv() functions.
+
+       * gobject.[hc]: use gobjectnotifyqueue.h implementation now.
+       got rid of properties_changed signal.
+       new functions g_object_newv(), g_object_class_list_properties().
+       removed "properties_changed" signal.
+
+       * gtype.[hc]: added g_type_depth() to figure number of parent
+       types + 1 for a type.
+
+       * gsignal.h: add g_signal_connect() (as per owen's request) and
+       g_signal_connect_swapped().
+
+2001-06-13  Havoc Pennington  <hp@redhat.com>
+
+       * Makefile.am (progs_LDADD): link to ./libgobject-1.3.la
+       since an installed libgobject was somehow being found; think 
+       it's a libtool bug, but this workaround should do for now.
+
+2001-06-12  Havoc Pennington  <hp@redhat.com>
+
+       * Makefile.am (glib-mkenums): don't put $(srcdir)/glib-mkenums in
+       bin_SCRIPTS, that breaks make install. Instead put 'glib-mkenums'
+       in bin_SCRIPTS and cp it into builddir
+
 Thu May 31 17:56:47 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gobject-query.c: Fix mispelling in help output.