]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-0
For consistancy with GIMP/GNOME projects. Plus these files can
[~andy/gtk] / ChangeLog.pre-2-0
1 Thu Dec 18 23:26:49 CST 1997 Shawn T. Amundson <amundson@gimp.org>
2
3         * removed configure, Makefile.in, and aclocal.m4 files
4
5 Wed Dec 17 23:36:57 1997  Scott Goehring  <scott@poverty.bloomington.in.us>
6
7         * gdk/gdkcc.c (gdk_color_context_free): Caught a stray
8         gdk_colormap_destroy that Owen missed (and Shawn found).
9
10 Wed Dec 17 20:59:52 1997  Owen Taylor  <owt1@cornell.edu>
11         * gdk/gdkinput.c gdk/gdkinput.h gdk/gdkinputcommon.h
12           gdk/gdkinputxfree.h gdk/gdkinputgxi.h gdk/gdkinputnone.h.
13           gtk/gtkinputdialog.h gtk/testinput.c
14         Added support for device keys mapping to key events.
15         Fixed various bugs.
16
17 Wed Dec 17 20:53:00 1997  Owen Taylor  <owt1@cornell.edu>
18         * gdk/gdk.c gdk/gdk.h: Changed gdk_get_event to remove
19         predicate filtering, and to allocate the events.
20         Added gdk_event_get_graphics_expose for scroll handling.
21         * gtk/gtkmain.c gtk/gtktext.c:
22         Use above changes. Interface change for gtk_get_current_event.
23         * testgtk.c
24         Added another test to test new scrolling mechanism.s
25         * gdk/gdk.c gdk/gdk.h gdk/gdkwindow.c gdk/gdkprivate.h: 
26         Added beginnings of event filtering. Removed obsolte
27         OtherEvent mechanism.
28         * gdk/gdk.c: Combined FocusIn/FocusOut events. Now ignore
29         focus events which aren't for window itself. (Only pay
30         attention to NotifyAncestor/Inferior/Nonlinear)
31         * gtk/gtkwindow.c gtk/gtkwindow.h: Virtualize set_focus 
32         function so it can be overridden.
33         * gtk/gtkwidget.c: Reparenting should now work for
34         containers. (Guillaume Laurent <glaurent@worldnet.fr>)
35         * gdk/gdkgc.c: By default, GraphicsExpose events are now
36         _not_ generated.
37         * gtk/testselection.c: Suppress a warning, fix a bug?
38
39 Wed Dec 17 20:47:42 1997  Owen Taylor  <owt1@cornell.edu>
40         * configure.in, glib/configure.in: 
41         Remember if user set CFLAGS, so we can set it for --enable-debug
42           only if they didn't. 
43         Added missing quotes. )Raphael.Quinet@eed.ericsson.se)
44         Only use -DX_LOCALE if setlocale doesn't work.
45         * gdk/gdki18n.h: Simplified system for trying to get iswalnum() -
46         include <wctype.h> if present, otherwise <wchar.h> if present.
47         
48 Wed Dec 17 21:09:12 1997  Owen Taylor  <owt1@cornell.edu>
49   1997-10-13  Marius Vollmer  <mvo@zagadka.ping.de>
50
51     Bug fixes:
52         
53         * gtksignal.c (gtk_params_get): Initialize the GtkArg even when
54         the return type is GTK_TYPE_NONE.
55
56     Revamped reference counting, see the file REFCOUNTING.
57
58         * Makefile.am (EXTRA_DIST): Added REFCOUNTING.
59         * REFCOUNTING: New file.
60
61         * gdk/gdk.c (received_destroy_notify, window_to_destroy): Removed.
62         (gdk_event_get): Code that deals with the above removed.
63         (gdk_event_translate): Abort when the GdkWindow for the XEvent
64         cannot be found.  For DestroyNotify: Do not use
65         receive_destroy_notify and window_to_destroy but call
66         gdk_window_destroy_notify.
67
68         * gdk/gdk.h: (gdk_pixmap_destroy, gdk_colormap_destroy,
69         gdk_fontset_free): Removed.
70         (gdk_pixmap_ref, gdk_pixmap_unref, gdk_bitmap_ref,
71         gdk_bitmap_unref): New prototypes.
72         (gdk_font_free, gdk_font_unref): Renamed gdk_font_free to
73         gdk_font_unref.
74
75         * gdk/gdkcolor.c (gdk_colormap_real_destroy): Made static.
76         (gdk_colormap_destroy): Removed.
77
78         * gdk/gdkfont.c (gdk_font_free): Renamed to gdk_font_unref.
79         Handle fontsets as well.
80         (gdk_fontset_free): Removed.
81
82         * gdk/gdkpixmap.c (gdk_pixmap_destroy): Removed.
83         (gdk_pixmap_ref, gdk_pixmap_unref, gdk_bitmap_ref,
84         gdk_bitmap_ref): New functions.
85
86         * gdk/gdkwindow.c: (gdk_window_new, gdk_window_foreign_new): Call
87         gdk_window_ref for the pointer in the xid table.
88         (gdk_window_internal_destroy): Renamed from gdk_window_destroy.
89         New parameter XDESTROY that takes the role of `destroyed==2';
90         removed special casing of `destroyed==2'.  Free dnd_data only when
91         really destroying.  Do not touch the ref_count.  Calling
92         gdk_window_destroy on a Pixmap is now a real error, not just a
93         warning.
94         (gdk_window_destroy): Just call gdk_window_internal_destroy and
95         gdk_window_unref, as advertised in REFCOUNTING.
96         (gdk_window_destroy_notify): New function.
97         (gdk_window_unref): Print a warning when the ref_count is zero and
98         the window has not been destroyed.  Should never happen.  Do not
99         destroy the window, just free the memory.
100         
101         * gdk/gdkprivate.h (gdk_window_real_destroy): Removed.
102
103         * gtk/gtkaccelerator.c (gtk_accelerator_table_destroy): Removed.
104         (gtk_accelerator_table_unref): Do the job of
105         gtk_accelerator_table_destroy directly.
106         (gtk_accelerator_table_init): Init ref_count with 1.
107
108         * gtk/gtkaccelerator.h (gtk_accelerator_table_destroy): Removed.
109
110         * gtk/gtkcurve.c, gtk/gtkgamma.c: Replaced gdk_pixmap_destroy with
111         gdk_pixmap_unref.
112
113         * gtk/gtkhscrollbar.c (gtk_hscrollbar_realize): Reflect the fact
114         that the widget->window is used as the range->trough in the
115         ref_count.
116         * gtk/gtkvscrollbar.c (gtk_vscrollbar_realize): Likewise.
117
118         * gtk/gtkmain.c (gtk_main_iteration): Protect event_widget with
119         ref/unref while handling the GDK_DELETE and GDK_DESTROY events.
120
121         * gtk/gtkmenu.c (gtk_menu_set_accelerator_table): Don't do
122         anything when the new accel_table is the old one.
123
124         * gtk/gtkmenufactory.c (gtk_menu_factory_destroy): Unref
125         factory->table if there is one.
126         (gtk_menu_factory_create, gtk_menu_factory_create_widget): Don't
127         ref newly created accel_table, it is now created with a ref_count
128         of 1.
129
130         * gtk/gtkmenuitem.c (gtk_menu_item_set_submenu):  Don't do
131         anything when the new submenu is the old one.
132
133         * gtk/gtkpixmap.c (gtk_pixmap_destroy): New static function.
134         (parent_class): New global variable.
135         (gtk_pixmap_init): Set object_class->destroy.
136         (gtk_pixmap_set): Don't do anything about the pixmap when the new
137         pixmap is the old one.  Likewise for the mask.
138
139         * gtk/gtkprogressbar.c, gtk/gtkruler.c: Replaced
140         gdk_pixmap_destroy with gdk_pixmap_unref.
141
142         * gtk/gtkrange.c (gtk_range_set_adjustment):  Don't do
143         anything when the new adjustment is the old one.
144
145         * gtk/gtkrc.c: Replaced gdk_fontset_free/gdk_font_free with
146         gdk_font_unref.
147
148         * gtk/gtkstyle.c (gtk_style_new): Initialize ref_count with 1.
149         (gtk_styles_init): Replace gtk_style_destroy with gtk_style_unref
150         for the cache.
151         (gtk_style_new_from_key): Ref style before returning it when it
152         has not been newly created.
153         (gtk_style_destroy): Don't look at the ref_count, destroy always.
154         Free style-font with gdk_font_unref, regardless of font->type.
155
156         * gtk/gtktooltips.c (gtk_tooltips_real_destroy): Renamed from
157         gtk_tooltips_destroy and made static.  Don't look at ref_count,
158         destroy always.
159         (gtk_tooltips_new): Initialize ref_count with 1.
160         (gtk_tooltips_unref): Don't look at pending_destroy, destroy
161         always when ref_count is 0.
162         (gtk_tooltios_widget_remove): Use gtk_tooltips_destroy_data
163         instead of hand-coded destruction.
164
165         * gtk/gtktooltips.h (GtkTooltips::pending_destroy): Removed.
166         (gtk_tooltips_destroy): Removed.
167
168         * gtk/gtkviewport.c (gtk_viewport_set_hadjustment,
169         gtk_viewport_set_vadjustment): Don't do anything when the new
170         adjustment is the old one.
171
172         * gtk/gtkwidget.c (gtk_widget_reparent): Protect the reparented
173         widget with ref/unref while moving it.
174         (gtk_widget_set_default_colormap): Replace gdk_colormap_destroy
175         with the proper ref/unref spell.
176         (gtk_widget_set_default_style): Don't do anything when the new
177         style is the old one.
178
179         * gtk/testinput.c (configure_event): Replaced gdk_pixmap_destroy
180         with gdk_pixmap_unref.
181         
182     More Interpreter support:
183
184         * gdk/gdktypes.h (GdkDestroyNotify): New type.
185         
186         * gdk/gdk.c (struct _GdkInput::destroy): New field.
187         (gdk_input_add_interp): New version of gdk_input_add that follows
188         the interp conventions for callbacks.
189         (gdk_input_add): Implement in terms of gdk_input_add_interp.
190         (gdk_input_remove): Call destroy notify when appropriate.
191
192         * gdk/gdk.h (gdk_input_add_interp): New prototype.
193
194         * gtk.defs: Updated from guile-gtk.
195         * gtk/gtktypebuiltins.c, gtk/gtktypebuiltins.h: Regenerated.
196         
197         * gtk/gtkmain.c (GtkInputFunction, struct _GtkInputFunction): New
198         types.
199         (gtk_invoke_input_function, gtk_destroy_input_function,
200         gtk_input_add_interp, gtk_input_remove): New functions.
201
202 Wed Dec 17 12:00:48 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
203
204         * gdk/gdkcc.c: New GdkColorContext functionality!  This should
205         eventually solve all of our color management problems.  Gdk still
206         needs to be modified to support visuals with less than 8 bpp.  Gtk
207         needs to be modified just a bit.
208
209 Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
210
211         * a small patch by Lauri Alanko that allows Gimp to pass
212         on --display to it's plugins.
213
214 Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
215         * a minor patch to make the file selection dialog not always
216         select the first file in a directory
217
218 Sat Dec 13 Jay Painter <jpaint@serv.net>
219         * gtk/gtkvscrollbar.c: added focus flag so vertical scrollbars
220         can get keyboard focus
221
222 Fri Dec 12 Owen Taylor <owt1@cornell.edu>
223         * Removed warning when XGetWindowProperty fails - this can
224           be the desired behavior.
225         
226 Fri Dec 12 Owen Taylor <owt1@cornell.edu>
227         * gdk/makecursor* gdk/makekeysym* gdk/Makefile.am
228           Removed old sed/awk code and replaced it with a 
229           spiffier awk-only code from Art_Haas@dril-quip.com
230         
231 Fri Dec 12 Owen Taylor <owt1@cornell.edu>
232         * gdk/gdkgc.c: If gdk_gc_set_clip_rectangle is called with
233           rectangle = NULL, remove clip mask, instead of segfaulting.
234         * gtk/gtknotebook.c: Set clip mask before redrawing, so that
235           we don't overwrite things outside of exposed areas when
236           drawing them shadows. (Based on a patch from 
237           Lars Hamann <hamann@braunschweig.netsurf.de>, and Stefan Jeske)
238         
239 Thu Dec 11 10:57:29 CST 1997 Shawn T. Amundson <amundson@gimp.org>
240         * Change to ltconfig to remove -z text for Solaris x86  
241         * Change to configure stuff so compile works on Solaris x86
242         * Added gdk/gdkkeysyms.h and gdk/gdkcursors.h back into the tree
243
244 Thu Dec 11 09:44:03 1997  Tim Janik  <timj@psynet.net>
245
246         * gdk.c: added gdk_progclass==NULL patch by Oliver Graf <ograf@fga.de>.
247
248 Wed Dec 10 23:40:03 1997  Tim Janik  <timj@psynet.net>
249
250         * fixed some compiler errors, because g_return_if_fail() wasn't used
251         with a trailing semicolon in some places. fixed few other warnings also.
252
253 Tue Dec  9 Owen Taylor <owt1@cornell.edu>
254         * configure changes: (configure.in, glib/configure.in)
255         Change test ! `...` to test -z `...`
256           (Harald Meland <Harald.Meland@usit.uio.no>)
257         Change $gtk_cv_x_locale to $need_x_locale so it isn't cached.
258         With --enable_debug, don't touch CFLAGS if they're already set.
259
260 Tue Dec  9 Owen Taylor <owt1@cornell.edu>
261         * gdk/gdkpixmap.c: don't use gdk_black/white for pixmap mask.
262          From Patrice Fortier <Patrice.Fortier@aquarel.fr>
263
264 Mon Dec  8 Owen Taylor <owt1@cornell.edu>
265         * gtk/testselection.c (selection_received): foreward -> forward.
266         * gtk/gtktext.c (gtk_text_forward_delete): Renamed; changed all
267         callers.
268         * gtk/gtktext.h: foreward -> forward.
269           From Tom Tromey  <tromey@cygnus.com>
270
271 Mon Dec  8 Owen Taylor <owt1@cornell.edu>
272         * gtk/gtkimage.c: Fixes to expose() handler
273           From Rob Browning <rlb@cs.utexas.edu>
274         
275 Mon Dec  8 21:09:43 PST 1997 Geoffrey T. Dairiki <dairiki@alumni.caltech.edu>
276         * gtk/gtklabel.h:
277         * gtk/gtklabel.c: Add support for GTK_JUSTIFY_FILL.  This support
278         is used by the new gtktooltips.c.
279         * gtk/testgtk.c (create_labels, create_main_window): A new test
280         window for labels (to test the new GTK_JUSTIFY_FILL'ed labels.)
281
282 Mon Dec  8 21:09:43 PST 1997 Geoffrey T. Dairiki <dairiki@alumni.caltech.edu>
283         * gtk/gtklabel.h:
284         * gtk/gtklabel.c: Add support for GTK_JUSTIFY_FILL.  This support
285         is used by the new gtktooltips.c.
286         * gtk/testgtk.c (create_labels, create_main_window): A new test
287         window for labels (to test the new GTK_JUSTIFY_FILL'ed labels.)
288
289 Sun Dec  7 Owen Taylor <owt1@cornell.edu>
290         * gdk/gdk.c, gdk/gdk.h, gdk/gdktypes.h: 
291           Remove dependencies of interfaces on USE_XIM
292         * gdki18n.h: Attempt to make wchar handling more portable
293         * gdkwindow.c: Include config.h. (For gdkinput.h)
294         
295 Sun Dec  7 Owen Taylor <owt1@cornell.edu>
296         * gtk/gtkentry.c, gtk/gtkentry.h: 
297            Fixed word motion
298            Added cut/copy/paste via X clipboard
299            Generalized extending selection using <Shift> to work with all types
300              of motion, not just arrow keys.
301            Don't change length of GtkEntry structure because of USE_XIM
302
303 Sun Dec  7 03:19:02 1997  Tim Janik  <timj@psynet.net>
304
305         * gtkfilesel.c: applied jamesa-971010-0 for stability.
306         * gtkrc.c: applied jamesa-971010-2 for a small optimization.
307         * gtkcheckmenuitem.h:
308         * gtkcheckmenuitem.c:
309         * gtkradiomenuitem.c:
310         * testgtk.c: applied johannes-971113-0 which adds
311         gtk_check_menu_item_set_show_toggle() to change the way check
312         menu items and radio menu items look.
313
314 Fri Dec 5 1997 Elliot Lee <sopwith@cuc.edu>
315         * gdk/gdk.c: clean up warnings, remove some un-ifdef'd debugging
316         printing, DnD is Bug Free now, etc.
317         * gtk/gtkcolorsel.c: fix DnD support.
318         * gtk/gtkmain.c: DnD events go to the original window even if
319         there is a grab - if I drop on a window the data had better go
320         to it and not some other window :)
321         * gtk/testgtk.c: Replace (GtkSignalFunc) with GTK_SIGNAL_FUNC(),
322         and do a nicer DnD demo.
323         * My very first ChangeLog entry, seeing as people have
324         a fixation on them (what's wrong with "rcs2log" output?)
325
326 Thu Dec 4 1997 Owen Taylor <owt1@cornell.edu>
327         * gdk/gdkgc.c: Ignore gdk_gc_set_font if font is a fontset.
328
329 Wed Dec 3 1997 Jay Painter <jpaint@serv.net>
330         * gtk/gtkstyle.c: fixed a problem introduced recently in 
331         gtk_style_detach witch crashed script_fu.
332
333 Wed Dec 3 1997 Owen Taylor <owt1@cornell.edu>
334         * gdk/Makefile.am: add a dependence for $(DEP_FILES) on
335         $(BUILT_SOURCES) to work around automake problem
336         
337 Wed Dec 3 1997 Owen Taylor <owt1@cornell.edu>
338         * configure.in glib/configure.in glib/glibconfig.h.in gdk/gdk.h
339         gdk/gdk18n.h gdk.c gtk/gtkentry.c: Try to handle variations in 
340         <wchar.h> headers gracefully. Do not automatically include 
341         gdk/gdki18n.h.
342         
343 Wed Dec 3 1997 Jay Painter <jpaint@serv.net>
344         * gtk/gtkoptionmenu.c: fixed a old bug where if you set a new 
345         menu for a optionmenu the widget would not get positioned correctly
346         inside of the optionmenu.
347
348 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
349         * gdk/gdkpixmap.c: Include unistd.h to get SEEK_END
350         for SunOS (john_johns@credence.com)
351         
352 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
353         * gtk+/fnmatch.c: Define _GNU_SOURCE before including
354         fnmatch.h to make sure all constants are defined.
355         (Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp>)
356         
357 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
358         * configure.in, glib/configure.in: Make the logic to add -Wall,
359         -ansi, -pedantic for GCC operational.
360
361 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
362         * glib/glib.h, glib/configure.in. Disabled gldouble, since
363         it wasn't used anywhere and caused portability problems
364
365 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
366         * glib/glib.h, glib/configure.in, glib/glibconfig.h.in: Added a
367         g_memmove function which is simply memmove if it exists, otherwise
368         bcopy.(Should really check if bcopy has the correct semantics, and
369         create our own memmove is necessary) 
370         * glib/gstring.c, glib/garray.c, gtk/gtktext.c:
371         memmove => g_memmove
372         
373 Sun Nov 30 1997 Jay Painter <jpaint@serv.net>
374         * gtk/gtknotebook.c: fixed a old bug where all the notebook pages
375         which were not displayed when the notebook widget was realized were
376         never size allocated when they were realized.
377
378 Thr Nov 28 1997 Jay Painter <jpaint@serv.net>
379         * gtk/gtklist.h: removed GtkSelectionMode
380         * gtk/gtkenums.h: added GtkSelectionMode
381
382 Fri Nov 28 01:26:55 1997  Tim Janik  <timj@psynet.net>
383
384         * gtk/gtkwindow.c (gtk_window_show): propagate a size_request before
385         the initial window creations (prevents windows with size of -1x-1).
386
387         * gtk/gtkmain.c (gtk_main_level): new function to determine
388         the current recursion level of gtkmain().
389         (gtk_true) (gtk_false): new functions implemented as a convenience
390         for signals that just need a handler with the appropriate return value.
391
392 Tue Nov 25 1997 Owen Taylor <owt1@cornell.edu>
393         gdk.c: Fix so that "other_events" are actually generated
394
395 Tue Nov 25 1997 Owen Taylor <owt1@cornell.edu>
396         Patches to support internationalized input by:
397           Takashi Matsuda <matsu@arch.comp.kyutech.ac.jp>
398           TANAKA Shinya <shinya@race.u-tokyo.ac.jp>
399
400         From the README:
401         
402         Feature:
403           Followings are the main feature of this patch.
404             * support XIM protocol.
405             * GtkEntry widget support Over-The-Spot and Root style input.
406             * input style is configurable by command-line option.
407
408         Furthermore, this patch includes several changes which are useful 
409           without XIM too.
410         
411             * copy and paste with other clients by compound text.
412             * Window title can be specified by multi byte string.
413
414         configure.in: 
415           Added --with-locale and --enable-xim options
416         gdk/Makefile.am:
417         gdk/gdki18n.h [new file]
418           Multibyte string manipulation functions
419         gdk/gdk.c
420         gdk/gdk.h
421         gdk/gdkprivate.h
422           Input method and context handling functions
423           Command line options to control input methods
424           Changes to KeyPress handling to support input methods
425           Fixes to not return events for destroyed windows
426         gdk/gdkselection.c
427           Text property handling functions
428         gdk/gdkwindow.c
429           Set window title by multibyte string
430         gtk/gtkentry.c
431           Support for using an input context for XIM input.
432           Cut and paste using compound text.
433           Improvements to pasting (no longer replace the active selection
434             with itself OWT)
435         gtk/gtkselection.c
436           fix to send selection clear events to the right owner
437         gtk/testgtkrc
438           Added a default fontset that will allow international characters
439         INSTALL
440           Some rudimentary documentation about the new configuration options.
441         
442 Mon Nov 24 1997 Owen Taylor <owt1@cornell.edu>
443         gtk/gtkaspectframe.c:
444         Some minor improvements to rounding in aspectframes.
445         Make sure that child allocation is always >= 0
446         Always trigger size allocation with gtk_widget_queue_resize
447         to prevent calling size_allocate before allocation done.
448
449 Mon Nov 24 1997 Owen Taylor <owt1@cornell.edu>
450         gtk/gtkframe.c:
451         Changed tests for drawability to GTK_WIDGET_DRAWABLE
452         Always trigger size allocation with gtk_widget_queue_resize
453         to prevent calling size_allocate before allocation done.
454
455 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
456         gtk-dairiki-971117-2.patch
457         gtk/gtkaspectframe.c (gtk_aspect_frame_size_allocate): When
458         computing new dimensions of the subwidget, round to nearest
459         integer rather than truncating.
460
461 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
462         gtk-dairiki-971117-1.patch
463         * gtk/gtkvruler.c (gtk_vruler_draw_ticks):
464         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Ensure that subticks
465         always are drawn when they should be (sometimes they were getting
466         drawn with zero length --- invisible).  Also clear rectangle
467         behind text labels to ensure they don't touch or overlap ticks. 
468
469 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
470         * gtk/gtkaspectframe.c (gtk_aspect_frame_set): 
471         gtk-dairiki-971117-0.patch
472         Clear window when aspect ratio or alignment is changed.
473
474 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
475         * gtk/gtkobject.h: fixed GTK_OBJECT_NSIGNALS macro
476
477 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
478         * gtk/gtklabel.h: modified gtklabel to clip its drawing to
479         its given area, now it will always draw in the area it's 
480         been given and clip accordingly.  Note: this may cause
481         the a label to disappear on widgets which don't give their
482         child labels proper area!
483
484 Mon, 17 Nov 1997 Michael K. Johnson <johnsonm@redhat.com>
485         * gtkwidget.c: gtk_set_style_recurse was not allowing updated
486         widget names to cause new styles to be applied.
487         * gtkentry.c gtkentry.h: The entry widget now has invisible
488         attribute.  The cursor does not move to show you typing; this
489         is an intentional design decision but I'm not so attached to it
490         that I'll reverse any patches that change it...  :-)
491
492         This patch is a modified version of a patch to which I have
493         lost the attribution.  I modified it by packing the "visible"
494         flag into the structure more tightly (without damaging backwards
495         compatibility on sane systems) and by allowing entry timers
496         to run.
497
498 Mon Nov 17 1997 Jay Painter <jpaint@serv.net>
499         * gtkviewport.c: Raph's Mon, 10 Nov 1997 patch to gtk-list 
500         to fix some viewport bugs
501
502 Mon Nov 17 1997 Jay Painter <jpaint@serv.net>
503         * gtk/gtkwidget.c: gtk-ajaborsk-971016-2
504         A little patch again to prevent user to use gtk_widget_set_events()
505         when a widget is already realized.
506         In this case, the gtk_widget_set_events() doesn't work.
507
508 Mon Nov 17 1997 Jay Painter <jpaint@serv.net>
509         * gtk/gtkwindow.c: gtk-ajaborsk-971016-1
510         This small patch correct position for GTK_WIN_POS_CENTER and
511         GTK_WIN_POS_MOUSE GtkWindow positions.
512
513 Sat Nov 15 1997 Jay Painter <jpaint@serv.net>
514         * gdk/gdkgc.c: added function gdk_gc_set_clip_rectangle
515         * gdk/gdk.h: header for above
516
517 Sat Nov 15 1997 Jay Painter <jpaint@serv.net>
518         * gdk/gdkgc.c: added function gdk_gc_set_clip_rectangle
519         * gdk/gdk.h: header for above
520
521 Wed Nov 12 1997 Jay Painter <jpaint@serv.net>
522         * gdk/gdkpixmap.c: Patrice Fortier's patch for transparent pixmaps.
523         * gdk/gdk.h:
524           gdk/gdkdraw.c: Patrice Fortier's patch to add pixel draw function.
525
526 Sun Nov  9 1997 Jay Painter <jpaint@serv.net>
527         * Fixed problems with makefiles relating to the bug
528         which required glib to be installed.
529         * Fixed makefiles to incluce the xpm's in gtk+/gtk needed
530         for testgtk.
531         * Updated gtk+ and gtk+/glib to libtool-1.0f
532
533 Fri Nov  7 1997 Jay Painter <jpaint@serv.net>
534         * gtk/gtktext.c: return char_widths[ch & 0xff]; in line 2152
535
536 Thr Nov  5 1997 Jay Painter <jpaint@serv.net>
537         * gtk/testgtk.c: added drag and drop test, removed the test hack
538         from the button test
539
540 Tue Nov  4 08:28:57 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
541
542         * gtk/gtkmain.c (gtk_handle_idle): Patch from David Mosberger to
543         avoid crashes when handling idle function (this manifested itself
544         in the Umax and Microtek backends in SANE.
545
546 Sun Nov  2 07:34:56 1997  Tim Janik  <timj@psynet.net>
547
548         * gtk/gtkfilesel.c: Small fixes about a segmentation viaolation
549         cause by a double click in the directoy list (introduced by my
550         previous changes).
551         
552         * gtk/gtklist.c: Small fixes to gtk_list_add() and gtk_list_remove().
553         
554         * gtk/testgtk.c (list_add): Applied Stefan Wille's patch to make this
555         function do something ;).
556
557 Fri Oct 31 Jay Painter <jpaint@serv.net>
558         *gdk/gdk.c: reformatted DND code for GTK coding standards
559         *gdk/gdkwindow.c: changed memory allocation for DND to q_mem stuff
560
561 Thu Oct 30 Jay Painter <jpaint@serv.net>
562         * gdk/gdkwindow.c: 
563         * gdk/gdk/gdk.h:
564         * gtk/gtkwidget.h:
565         * gtk/gtkwidget.c: Applied Stephan Willie's shaped window patch
566
567         * gdk/gdkwindow: 
568         * gdk/gdk.h:
569         * gtk/gtkwidget.h:
570         * gtk/gtkwidget.c: reformatted the DND code to conform to GTK
571                 coding standards
572
573         * gtk/testgtk: massive fixes, SW's shaped window example
574
575 Thu Oct 30 07:33:27 1997  Tim Janik  <timj@psynet.net>
576
577         * gtk/gtklistitem.c (gtk_real_list_item_toggle): applied Johannes
578         Keukelaar's <johannes@nada.kth.se> patch for keyboard support in
579         GtkList widgets.
580
581         * gtk/gtkfilesel.c: adapted dir and file list selection
582         behaviour to deal with keyboard selections. this is a little
583         bit tricky: in the dir list it just changes the entrys value on a one
584         button press. but on a keyboard selection via gtk_widget_activate() it
585         does a new population (likewise on a double click) as this seems more
586         obvious.
587
588 1997-10-25  Marius Vollmer  <mvo@zagadka.ping.de>
589
590         * gdk/gdkcolor.c (gdk_colormap_get_system): Initialize
591         private->ref_count.
592
593 Wed Oct 22 09:47:43 1997  Tim Janik  <timj@psynet.net>
594
595         * gtk/gtkwindow.c (gtk_window_key_release_event): Fixed a stupid
596         bug that caused the key_release_event to be propagated twice.
597
598 Sun Oct 12 11:01:43 1997  Tim Janik  <timj@psynet.net>
599
600         * acconfig.h:
601         * configure.in:
602         * gdk/gdkimage.c: Added configure check for IPC_RMID_DEFERRED_RELEASE,
603         because shmat() fails after a shmctl(..., IPC_RMID,...) for OSF1 V3.2,
604         SunOS 4.1.1, 5.5, 5.5.1, 5.6, IRIX 5.2 and 6.2.
605
606 Mon Oct  6 11:59:07 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
607
608         * gdk/gdk.c (gdk_event_translate): In line 1693, fixed typo that
609         would cause motion notify events not to be delivered.
610
611 Sun Oct  5 18:15:06 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
612
613         * gtk/gtkrc.c (gtk_rc_parse_bg_pixmap): Changed strdup() for
614         g_strdup().
615
616 Wed Sep 24 17:16:34 1997  Peter Mattis  <pmattis@bjork.inktomi.com>
617
618         * configure.in: Fixed a stupid error in the test for libXext that
619         would cause it to fail if X_EXTRA_LIBS was not empty.
620
621         * gtk/gtkmain.h (gtk-timj-970919.patch):
622         * gtk/gtkmain.c (gtk-timj-970919.patch): new function
623         `gtk_idle_remove_by_data' to remove all idle callbacks that take a
624         specific piece of data as argument.  (gtk_get_current_event):
625         remove idles through gtk_idle_remove_by_data.
626         
627         * gtk/gtkwidget.c (gtk-timj-970919.patch):
628         (gtk_widget_destroy): remove pending idles for
629         widgets that have GTK_REDRAW_PENDING or GTK_RESIZE_PENDING and
630         GTK_ANCHORED set (only anchored widgets can have a resize queue
631         handler pending). widgets that have GTK_RESIZE_NEEDED will be removed
632         from their anchored toplevels `resize_widgets' list.
633         
634         (gtk_widget_queue_draw): let the widget remember the queue handler
635         tag (through `redraw_handler_key') for later call to `gtk_idle_remove'.
636         
637         (gtk_widget_queue_resize): let the widget remember the queue handler
638         tag (through `resize_handler_key') for later call to `gtk_idle_remove'.
639         corrected referencing the toplevel widget for which the handler is
640         pending. if a widget is added to the `resize_widgets' list of a
641         toplevel widget, GTK_RESIZE_NEEDED is set and it's referenced.
642         
643         (gtk_real_widget_queue_resize): on the deletion of the `resize_widgets'
644         list, unset GTK_RESIZE_NEEDED and unreference the removed widgets.
645         
646         * gtk/gtkwindow.c (gtk-timj-970919.patch):
647         (gtk_real_window_move_resize): move `resize_containers = NULL'
648         initialization out of if-statement.
649         while stepping through the `resize_widgets' list, unreference the
650         widgets and clear GTK_RESIZE_NEEDED. if a widget realy needs are
651         resize, they are flagged through GTK_RESIZE_NEEDED now (instead of
652         GTK_RESIZE_PENDING, as this is indicative for a pending handler).
653         added checks to provide segfaulting if a widgets parent pointer
654         is NULL (e.g. on toplevel widgets that have GTK_RESIZE_NEEDED set).
655
656 Tue Sep 23 13:23:27 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
657
658         * gdk/gdkimage.c: Applied Tim Janik's patch to mark shm segments
659         as IPC_RMID so that they are automatically removed always.
660
661         * gdk/gdkfont.c: Removed casts from lvalues.
662
663         * gtk/gtkmain.c: Removed GTK_RETLOC_*() (which do a cast) from lvalues.
664
665         * gtk/gtkaccelerator.c (gtk_accelerator_table_remove): Added
666         "const" to the accelerator_key param to be consistent with the
667         declaration in gtkaccelerator.h.  The const is not useful in this
668         case, anyway.
669
670 Tue Sep 16 13:11:06 1997  Peter Mattis  <pmattis@bjork.inktomi.com>
671
672         * gtkpreview.c: Andrew Logan Kieschnick's change to eliminate
673         round-off error when gamma is set to 1.0.
674
675         * gtkrange.c:
676         * gtkviewport.c: Jay Painter's changes to modify the way in which
677         viewports resize.
678
679         * gdkinput.c:
680         * gdkinputgxi.h:
681         * gdkinputxfree.h:
682         * gtk/Makefile.am:
683         * gtk.h:
684         * gtkeventbox.c:
685         * gtkeventbox.h: Owen Taylor's event box widget and fixes for X
686         input support (that I had broken).
687
688         * gdk.h:
689         * gdkwindow.c:
690         * gtksignal.h:
691         * gtksignal.c: Elliot Lee's changes to support Objective C. (id is
692         apparently a reserved word in Objective C).
693
694 Sun Sep 14 22:33:15 1997  Peter Mattis  <pmattis@localhost>
695
696         * gtkwidget.c (gtk_widget_queue_resize): If the toplevel container
697         is invisible we simply call "gtk_container_need_resize" on
698         it. This fixes a bug with option menus not redrawing correctly.
699
700         * gtkmenuitem.c (gtk_menu_item_enter): (gtk_menu_item_leave):
701         These functions now simply pass the event on to their parent. This
702         is necessary for menus to work properly due to the change in how
703         grabs are dealts with.
704
705         * gtkwindow.c (gtk_real_window_move_resize): Fixed a bug that
706         caused the GTK_RESIZE_PENDING flag to not be unset in some cases.
707
708 Fri Sep  5 20:49:37 1997  Marius Vollmer  <mvo@zagadka.ping.de>
709
710         Bug fixes:
711
712         * Makefile.am: Added PATCHES to EXTRA_DIST.
713         * gtk/gtkpixmap.c (gtk_pixmap_new): Move the "pixmap != NULL" test
714         after the allocation of the pixmap.
715
716         To shut up the compiler:
717
718         * gtk/gtkfilesel.c (get_pwdb): Initialize home_dir.
719         * gtk/gtkmain.c (gtk_init): Replace comments around calls to
720         g_set_*_handler with "if (0)".
721         * gtk/gtkrc.c (gtk_rc_get_token): Initialize hex_number and
722         float_number.
723         * gtk/gtkwindow.c (gtk_window_key_press_event): Initialize
724         direction.
725
726         Changes to the type system in gtk/:
727
728         * Makefile.am: Added gtktypebuiltins.h to gtkinclude_HEADERS.
729         Added gtk.defs, runelisp, gentypeinfo.el and gtktypebuiltins.c to
730         EXTRA_DIST.  Added rules to generate gtktypebuiltins.* from
731         gtk.defs.
732
733         * runelisp, gentypeinfo.el, gtk.defs: New files.
734
735         * gtkaccelerator.c, gtkaccelerator.h (gtk_accelerator_table_ref):
736         Return the table so that this function can be used as the `copy'
737         function for GTK_TYPE_BOXED values.
738         * gtkstyle.c, gtkstyle.h (gtk_style_ref): Likewise.
739
740         * gtkenums.h: Removed GtkArgType enum.
741
742         * gtkmain.c (gtk_init): Call gtk_type_init to initialize the type
743         system.
744
745         * gtkobject.c (gtk_object_init_type): New function to take over
746         for gtk_object_get_type. (gtk_object_get_type): Just return the
747         constant GTK_TYPE_OBJECT. (gtk_object_collect_args): Do the right
748         thing for the new GTK_TYPE_* types.
749         * gtksignal.c (gtk_params_get): Likewise.
750
751         * gtktypeutils.c: (gtk_type_init_builtin_types): New
752         function. (gtk_type_init): Call it.  Also made non-static.
753         (gtk_type_unique): The allocation scheme for numerical ids has
754         changed: The low 8 bits hold the appropriate GtkFundamentalType of
755         a type, the rest is a globally unique sequence number.
756         (gtk_type_hash): Use the sequence number of a key to hash it.
757         (gtk_type_register_builtin): New function.
758
759         * gtktypeutils.h: (GtkFundamentalType): New enumeration of the
760         fundamental types. (GTK_TYPE_MAKE, GTK_FUNDAMENTAL_TYPE,
761         GTK_TYPE_SEQNO): New macros to work with the new id scheme.
762         (GtkArg): Added fields for new types and renamed old ones.  GtkArg
763         should now be a mostly opaque structure, except name and type.
764         (GTK_VALUE_*): New macros to access the values of a GtkArg.
765         (GTK_RETLOC_*): New macros to access the location of a return
766         value that is contained in a GtkArg.  * gtktypebuiltins.h: New
767         file to access the typeids of the builtin types.
768
769         * gtkwidget.h (GTK_TYPE_WIDGET): New macro to access the type id
770         of the widget class.
771
772         Thru out: Changed GTK_ARG_* to the appropriate GTK_TYPE_*.
773         Changed access to GtkArg structure to the appropriate GTK_VALUE_*
774         or GTK_RETLOC_* macro.  Changed GtkArgType to GtkType.  Changed
775         some guints to GtkType.
776
777         General changes in gtk/ to support interpreters:
778
779         * gtkradiobutton.c (gtk_radio_button_new_from_widget,
780         gtk_radio_button_new_with_label_from_widget): New functions.
781
782         * gtksignal.c (gtk_signal_connect_no_marshal): New function.
783         (struct _GtkHandler): Added no_marshal and destroy_func fields.
784         (gtk_signal_handler_new): Initialize them.
785         (gtk_signal_connect_by_type): Added no_marshal and destroy_func
786         arguments.  Changed all callers.
787         (gtk_signal_destroy): Invoke destroy_func if there is one and the
788         global destroy func does not apply.  (gtk_handlers_run): If the
789         handler has no_marshal set, call its function directly without
790         going thru the signal's marshaller.
791
792 Wed Sep  3 09:56:22 1997  RHS Linux User  <pmattis@bjork.inktomi.com>
793
794         * gtkrange.c: Changed the way the range control focus was drawn so
795         that the range control is drawn correctly when it does not have
796         the focus.
797
798 Tue Sep  2 17:41:17 1997  RHS Linux User  <pmattis@bjork.inktomi.com>
799
800         * gtkwidget.c: 'gtk_real_widget_queue_resize' should only remove
801         the "resize_widgets" if another resize is not pending.
802
803 Mon Sep  1 18:28:08 1997  Peter Mattis  <pmattis@localhost>
804
805         * gtkmain.c: Changed the way GDK_DELETE events are handled. Only,
806         if 'gtk_widget_event' returns TRUE is the widget destroyed. By
807         default, 'gtk_widget_event' will return FALSE causing the window
808         to not be destroyed. This prevents segfaults in the GIMP and other
809         programs that do not correctly handle GDK_DELETE events.
810
811         * gtkmain.c: Added modal dialog support by allowing events
812         destined for a child of the grab widget to go to the child instead
813         of the grab widget. (Added 'gtk_widget_is_ancestor' to determine
814         the relationship between the grab widget and the event widget).
815
816         * *.[ch]: Incorprated a whole mess of patches. (Started keeping
817         the ChangeLog up to date again).
818
819 Thu Jun  5 17:22:21 1997  Peter Mattis  <pmattis@localhost>
820
821         * gtkmenufactory.c:
822         * gtkmenufactory.h: Added 'gtk_menu_factory_remove_*'
823         calls. Removing entries/paths causes the associated widgets to be
824         destroyed.
825
826         * gtkwidget.c:
827         * gtkwidget.h: Calling 'gtk_widget_set_style' is used as an
828         indication that the programmer specifically wants that style to be
829         used. RC-style substitution is disabled for the widget after such
830         a call.
831
832         * gtkpixmap.c:
833         * gtkpixmap.h:
834         * gtkimage.c:
835         * gtkimage.h: Changed to use clip mask and a single pixmap (or
836         image) to deal with transparent areas.
837
838         * gdkpixmap.c: Modified xpm loading routines to optionally return
839         a clip mask.
840
841         * gdkgc.c:
842         * gdkdraw.c:
843         * gdktypes.h: Modifications to allow clip masks to be used with
844         gc's. Clip masks are bitmaps that specify drawable regions.
845
846 Thu May  1 03:11:51 1997  Peter Mattis  <pmattis@localhost>
847
848         * gtkscrolledwindow.c: Scrolled windows need to have the
849         GTK_NO_WINDOW flag set. Not having it set caused an obscure
850         redrawing bug.
851
852 Wed Apr 30 12:38:03 1997  Peter Mattis  <pmattis@localhost>
853
854         * gtkhruler.c:
855         * gtkvruler.c: Fixed a small bug that caused the indicator to be
856         positioned slightly off.
857
858 Sun Apr 27 14:28:21 1997  Peter Mattis  <pmattis@localhost>
859
860         * gtkmenushell.c:
861         * gtkmenushell.h:
862         * gtkmenu.c:
863         * gtkmenu.h: Changes so that if a menu is popped up there is a
864         timeout period during which a menu item will not be activated and
865         if the mouse button is released in that period the menu will stay
866         popped up.
867
868         * gtkcurve.c:
869         * gtkcurve.h: Included curve widget courtesy of David
870         Mosberger-Tang (davidm@azstarnet.com).
871
872         * gtkentry.c:
873         * gtkentry.h: Changed "insert" and "delete" signals to
874         "insert_text" and "delete_text" respectively. (The symbol "delete"
875         cannot be used since it is a C++ reserved word).
876
877 Sat Apr 19 01:43:49 1997  Peter Mattis  <pmattis@localhost>
878
879         * gtkmenufactory.c: A path which ends in "<nothing>" will cause an
880         invisible (hidden) menu entry to be created. This is useful for
881         setting an accelerator key for which a corresponding menu entry is
882         not desired.
883
884         * gtktooltips.c: Fixed some problems with destruction of the
885         active tip widget not properly updating the tooltips data
886         structures.
887
888 Fri Apr 18 15:09:45 1997  Peter Mattis  <pmattis@localhost>
889
890         * gtkcontainer.c:
891         * gtklist.c:
892         * gtkwidget.c:
893         * gtkwidget.h: Patch from Owen Taylor (owt1@cornell.edu) which
894         fixes problems with destruction of objects and with destruction of
895         objects which hold the focus.
896
897 Thu Apr 17 11:29:15 1997  Peter Mattis  <pmattis@localhost>
898
899         * gtkmenushell.c: Incorrect logic in
900         'gtk_menu_shell_button_release' for deciding when a menu should
901         stay popped up when the mouse button is released.
902
903         * *.c: Miscellaneous fixes from folks on the net.
904
905 Tue Apr 15 02:43:17 1997  Peter Mattis  <pmattis@localhost>
906
907         * *.c:
908         * gtkwidget.h: Added GTK_BASIC widget flag which when set
909         specifies a widget as "basic". A "basic" widget is one which
910         doesn't take input events. For example, labels, pixmaps, boxes,
911         tables, alignments, etc.
912
913 Sat Apr 12 15:23:08 1997  Peter Mattis  <pmattis@localhost>
914
915         * gtkcolorsel.c: Add "#include <math.h>" to define M_PI.
916
917         * gtksignal.c: Fixed a bug in 'gtk_signal_emit' which showed up
918         because of the new cast checking macros. The 'object' was being
919         accessed after it had been destroyed.
920
921         * gtkoptionmenu.c: Fixed bug with using 'GTK_BIN' instead of
922         'GTK_BUTTON' which showed up because of the new cast checking
923         macros.
924
925         * *.h: 'GTK_CHECK_CAST', 'GTK_CHECK_CLASS_CAST' and
926         'GTK_CHECK_TYPE' used by standard widget macros everywhere.
927
928 Wed Apr  9 00:54:17 1997  Peter Mattis  <pmattis@localhost>
929
930         * docs/gtk.texi: Started further work on documentation. Major
931         changes and additions are being made.
932
933         * gtkarrow.c:
934         * gtkarrow.h: Removed function 'gtk_arrow_get'.
935
936         * gtkcontainer.c: 'gtk_container_check_resize' no performs
937         additional checking to account for the case where the containers
938         allocation is no longer sufficient because its parent (or its
939         parents parent, etc.) needs to resize its children.
940
941 Tue Apr  8 21:15:50 1997  Peter Mattis  <pmattis@localhost>
942
943         * gtkstyle.c: Fixed a bug in 'gtk_style_init' in which the font
944         was not ref'd (via 'gdk_font_ref'), but was free'd (via in
945         'gdk_font_free') in 'gtk_style_destroy'. (David
946         Mosberger-Tang). Also cleaned up 'gtk_style_destroy' while I was
947         at it.
948
949         * gtkmain.c: Fixed a bug in 'gtk_propogate_event' which caused
950         entry widgets (and probably other widgets) not to be destroyed in
951         some instances.
952
953 Mon Apr  7 01:20:38 1997  Peter Mattis  <pmattis@localhost>
954
955         * gtkentry.c:
956         * gtkentry.h: Changed the "insert_text", "delete_text" and
957         "changed_text" signals to "insert", "delete", and "changed"
958         respectively. They really should have been named this way
959         originally except the previous signal mechanism prevented
960         duplicate signal names. ("changed" is also used by adjustments).
961
962         * gtkradiomenuitem.c:
963         * gtkradiomenuitem.h: New widget.
964
965         * gtkcheckmenuitem.c:
966         * gtkcheckmenuitem.h: New widget.
967
968         * gtksignal.c: Modified 'gtk_signal_lookup' to require an object
969         type to be passed as a parameter. In addition, signals are now
970         only needed to be uniquely defined in their branch of the class
971         hierarchy. This allows the same signal name to be used in two
972         different branches of the class hierarchy. For instance, the
973         "changed" signal is used both by adjustments and entries...in
974         different ways!
975
976         * gtktypeutils.c: Added 'gtk_type_parent' which returns the parent
977         type for a given type.
978
979 Sun Apr  6 22:08:35 1997  Peter Mattis  <pmattis@localhost>
980
981         * gtkwidget.c: If a widget is set insensitive it loses the focus
982         if it had it.
983
984         * gtkcontainer.c: Insensitive widgets no longer participate in tab
985         traversal.
986
987         * gtkscrolledwindow.c: The "viewport" child is now destroyed and a
988         container class "foreach" function was written (which fixes the
989         sensitivity bug).
990
991 Sat Apr  5 14:25:38 1997  Peter Mattis  <pmattis@localhost>
992
993         * gtkhscrollbar.c:
994         * gtkvscrollbar.c: Fixed trough size allocation bug.
995
996         * gtkhscale.c:
997         * gtkvscale.c: Fixed trough size allocation and position bug that
998         showed up when scales were placed in notebooks.
999
1000 Thu Mar 27 17:45:54 1997  David Mosberger-Tang  <davidm@azstarnet.com>
1001
1002         * gtk/gtkmain.c (gtk_handle_idle): Fix appending pending_idles to
1003         idle_functions so it works even when idle_functions is empty.
1004
1005 Sat Mar 15 14:15:59 1997  Peter Mattis  <pmattis@localhost>
1006
1007         * *.[ch]: Moved '*_class_init' and '*_init' function declarations
1008         for widgets into the source file as those functions no longer had
1009         to be public.
1010
1011         * gtkcheckbutton.c: Fixed redrawing of check button.
1012
1013         * gtkframe.c: Fixed redrawing of frame when the shadow type is
1014         changed.
1015
1016 Sat Mar  8 15:19:23 1997  Peter Mattis  <pmattis@localhost>
1017
1018         * gdkimage.c: Fixed a stupid bug with 'gdk_image_new' which
1019         potentially added a NULL image to "image_list" and caused problems
1020         when 'gdk_image_exit' was called.
1021
1022 Wed Mar  5 00:40:08 1997  Peter Mattis  <pmattis@localhost>
1023
1024         * gtkpreview.c: Massively changed the colormap handling used by
1025         the preview widget. Gray previews are now dithered. A single
1026         visual and colormap is shared by the color and gray previews. A
1027         GTK_PREVIEW_INFO property is installed on the root window in
1028         certain cases to allow multiple GTK programs to share the system
1029         colormap.
1030
1031 Sun Mar  2 05:43:06 1997  Peter Mattis  <pmattis@localhost>
1032
1033         * gtkcheckbutton.c: 'gtk_checkbutton_size_allocate' was allocating
1034         too much space to its children and not leaving the check button
1035         room for the focus border.
1036
1037         * gtknotebook.c: 'gtk_notebook_size_request' wasn't requesting
1038         enough space when the notebook tabs are visible.
1039
1040 Sat Mar  1 01:59:35 1997  Peter Mattis  <pmattis@localhost>
1041
1042         * gtkpreview.c: Fixed a problem with 'gtk_preview_put' when the
1043         image byte order is GDK_MSB_FIRST.
1044
1045         * gtksignal.c:
1046         * gtksignal.h: Added 'gtk_signal_connect_after' and
1047         'gtk_signal_connect_object_after' functions. These connect signal
1048         handlers which will run after the class function associated with
1049         the signal.
1050
1051         * gtkstyle.c: Fixed a stupid bug in 'gtk_style_new_from_key' that
1052         was causing twice as many styles to be created as necesary.
1053
1054         * gtkwidget.c: 'gtk_real_widget_size_allocate' erases the widgets
1055         old allocation if it has the GTK_NO_WINDOW flag set.
1056
1057         * gtkwidget.c: 'gtk_real_widget_unmap' now erases the widget if it
1058         has the GTK_NO_WINDOW flag set.
1059
1060         * gtklabel.c: Removed 'gtk_label_unmap' as similar functionality
1061         was added to gtk_real_widget_unmap.
1062
1063         * gtkbin.c: Modified 'gtk_bin_map' and 'gtk_bin_unmap' so that it
1064         erases and draws the widget if it has the GTK_NO_WINDOW flag set.
1065
1066         * gtkframe.c: Modified 'gtk_frame_size_allocate' so that it erases
1067         the old allocation.
1068
1069 Fri Feb 28 03:27:05 1997  Peter Mattis  <pmattis@localhost>
1070
1071         * gtkwindow.c: 'gtk_window_set_title' now changes the window title
1072         if the window is already realized.
1073
1074         * gtkentry.c: 'gtk_entry_set_text' was emitting both a
1075         "delete_text" and a "changed_text" signal. Modified so that it
1076         only emits a "changed_text" signal.
1077
1078         * gtkpreview.c: Modified to work correctly on systems with MSB
1079         byte order. The colormap for TRUE and DIRECT color displays is now
1080         created if the default visual is not equal to the visual we are
1081         using.
1082
1083         * gtkstyle.c: 'gtk_style_attach' and 'gtk_style_find' weren't
1084         working properly in the presence of multiple colormaps are
1085         different depth visuals.
1086
1087         * gtkcontainer.c: Massively improved focus traversal using tab and
1088         arrow keys. It now uses the layout of the widgets to determine
1089         where to move the focus to.
1090
1091 Mon Feb 24 03:24:02 1997  Peter Mattis  <pmattis@localhost>
1092
1093         * gtkmenufactory.c: Set the accelerator table field for menus when
1094         they are created.
1095
1096         * gtkmenu.c:
1097         * gtkmenu.h: Added a default accelerator table field to menus so
1098         that runtime modification of accelerator keys in menus can work
1099         better.
1100
1101         * gtkrange.c: 'gtk_range_default_{h,v}motion' had faulty logic for
1102         deciding what to do when the slider was at the edge of the
1103         trough. They previously didn't update the adjustment value event
1104         if the value wasn't what it should be when the slider was at the
1105         edge of the trough.
1106
1107         * gtkviewport.c: 'gtk_viewport_size_allocate' and
1108         'gtk_viewport_adjustment_value_changed' both had the potential for
1109         performing a divide by 0. Checks are now in place to prevent this.
1110
1111         * gtkmenu.c: 'gtk_menu_map' now makes sure the menu lies on screen
1112         if the position function is NULL.
1113
1114         * gtkentry.c: Modified selection handling. 'gtk_delete_selection'
1115         actually removes the X selection now. 'gtk_entry_destroy' removes
1116         the selection as well and relies on the change in "gdk.c" to make
1117         sure the selection event will not be sent to a non-existant
1118         window.
1119
1120         * gdk.c: Selection events are only passed on if the selection
1121         owner is not NULL.
1122
1123         * gtkstyle.c: 'gtk_style_detach' and 'gtk_style_destroy' were not
1124         destroying the black and white gc's.
1125
1126 Sun Feb 23 19:17:56 1997  Peter Mattis  <pmattis@localhost>
1127
1128         * gtkwindow.c: 'gtk_window_size_request' was setting the window
1129         hints. This was also being done in 'gtk_window_map', so the
1130         instance being done in 'gtk_window_size_request' was removed.
1131
1132 Fri Feb 21 01:04:01 1997  Peter Mattis  <pmattis@localhost>
1133
1134         * gtkwidget.c: 'gtk_widget_draw' has to use the widgets allocated
1135         position for the drawing rectangle when the widget has the
1136         GTK_NO_WINDOW flag set.
1137
1138         * gtkwidget.c: In 'gtk_widget_init' the visual and colormap were
1139         being directly compared against 'default_visual' and
1140         'default_colormap' instead of calling
1141         'gtk_widget_get_default_{visual,colormap}'.
1142
1143         * gdkrectangle.c: Amazing! There was a bug in the
1144         'gtk_rectangle_intersect' logic. Its been there for near eternity
1145         and I never noticed.
1146
1147         * gtkpreview.c:
1148         * gtkpreview.h: Created preview widget which allows drawing to an
1149         rgb or grayscale buffer which is automatically displayed on the
1150         screen. Performs dithering as necessary.
1151
1152 Thu Feb 20 20:33:21 1997  Peter Mattis  <pmattis@localhost>
1153
1154         * gdkwindow.c: Modified the logic in 'gdk_window_new' which
1155         determined when to add a window to the WM_COLORMAP_WINDOWS
1156         property.
1157
1158 Wed Feb 19 19:55:29 1997  Peter Mattis  <pmattis@localhost>
1159
1160         * gtkruler.c: 'gtk_ruler_make_pixmap' was always destroying the
1161         old backing store and creating a new one even when it would create
1162         a new one of exactly the same size as the old one.
1163
1164 Tue Feb 18 18:32:10 1997  Peter Mattis  <pmattis@localhost>
1165
1166         * gmem.c: 'g_mem_chunk_alloc' was incorrectly modifying the mem
1167         areas free mem field when reallocating a previously freed
1168         atom. This caused a fairly severe memory leak.
1169
1170         * gtkmenushell.c: 'gtk_menu_shell_button_release' had a bug in the
1171         logic for deciding whether to initiate an X pointer grab or not
1172         when the mouse button was released. It now only initiates a grab
1173         if the mouse is released within an active menu item.
1174
1175 Fri Feb 14 00:57:40 1997  Peter Mattis  <pmattis@localhost>
1176
1177         * gtknotebook.c: Changed the look of notebook tabs slightly.
1178
1179         * gtkentry.c:
1180         * gtkentry.h: Deleting an entry widget which is holding the X
1181         selection presents some difficulties. The X selection must be
1182         released, but the widget can't be destroyed until the
1183         SELECTION_CLEAR event is received that the X server will send in
1184         response to clearing the X selection. There are probably still
1185         bugs in the current method of entry widget deletion when the X
1186         selection is held.
1187
1188         * gtkmain.c: 'gtk_propagate_event' was not properly destroying the
1189         toplevel window when receiving a key press event.
1190
1191         * gtkwidget.c: Setting a widget insensitive did not cause it to
1192         redraw. It now does.
1193
1194 Thu Feb 13 16:59:07 1997  Peter Mattis  <pmattis@localhost>
1195
1196         * gtkviewport.c: 'gtk_viewport_size_allocate' was allocating its
1197         child widget an adjusted allocation. Since the actual scrolling
1198         has handled by a subwindow this caused the child to be double
1199         scrolled. Modified to always set the child allocations origin to
1200         (0, 0).
1201
1202 Wed Feb 12 01:06:48 1997  Peter Mattis  <pmattis@localhost>
1203
1204         * gtkentry.c: Text is now centered vertically. Previously it was
1205         pushed up against the top. This problem was only evident when the
1206         widget was allocated more vertical space than it requested.
1207
1208         * gtkfilesel.c: 'gtk_file_selection_key_press' was previously only
1209         a stub for tab completion. The actual tab completion call had been
1210         left out. (Oops!)
1211
1212 Tue Feb 11 01:43:08 1997  Peter Mattis  <pmattis@localhost>
1213
1214         * gtksignal.c: 'gtk_signal_disconnect_by_data' was going into a
1215         loop and crashing. Bad logic. Fixed.
1216
1217         * gtkmain.c: An idle function which returns FALSE will be removed
1218         from the list of idle functions. This makes the functioning of
1219         idle functions and timeouts more similar.
1220
1221         * gtkentry.c: 'gtk_entry_get_text' now returns an empty string
1222         when the actual text is NULL. This allows "stupid" programs to use
1223         the value returned by 'gtk_entry_get_text' blindly (without
1224         checking to see if its NULL).
1225
1226         * gtkradiobutton.c: Modified 'gtk_radio_button_clicked' so that
1227         'gtk_toggle_button_toggled' is called _after_ the widget state is
1228         changed.
1229
1230         * gtksignal.c:
1231         * gtksignal.h: Added 'gtk_signal_name' which returns the character
1232         string name for a given signal number.
1233
1234         * gtkwidget.c: 'gtk_widget_set_parent' checks to see if the widget
1235         is now "anchored" through the parent chain to a widget which is
1236         GTK_ANCHORED. If it is, then it changes the widgets style using
1237         'gtk_rc_get_style' and recursively performs the same operation on
1238         the widgets children. This is necessary is 'gtk_rc_get_style' only
1239         works properly on "anchored" widgets.
1240
1241         * gtkwindow.c: Modified GTK_WIN_POS logic so that it is only used
1242         immediately after the window has been shown.
1243
1244         * gtkmenu.c: 'gtk_menu_key_press'. Can now change menu item
1245         accelerator keys on the fly. Why? Why not. Cool/useless feature of
1246         the day.
1247
1248         * gtkmenuitem.c: Accelerator key drawing. Somehow that never got
1249         finished. (Oops!)
1250
1251         * gtkdrawingarea.c: 'gtk_drawing_area_size_allocate' was not
1252         actually installed during 'gtk_drawing_area_class_init'. (Oops!)
1253
1254         * gtkframe.c: 'gtk_frame_size_request' fixed size requisition
1255         problem caused by unsigned arithmetic.
1256
1257         * gtkwindow.c: Modified window widget so that it only uses the
1258         widget uposition auxiliary information immediately after it has
1259         been shown. This prevents the annoying bug which can cause a
1260         uposition'ed window to jump back to its original position after
1261         the user moves it.
1262
1263         * gtkwidget.c: Need to ref and unref style in
1264         'gtk_widget_{push,pop}_style' to make sure that a style on the
1265         style stack is not destroyed.
1266
1267         * gtktogglebutton.c: 'gtk_toggle_button_set_state' now calls
1268         gtk_button_clicked to actually change the state of the
1269         button. In this way, radio buttons can now perform the appropriate
1270         actions when the toggle button state is set.
1271
1272 Mon Feb 10 00:27:39 1997  Peter Mattis  <pmattis@localhost>
1273
1274         * gtklist.c: 'gtk_list_select_item' and 'gtk_list_unselect_item'
1275         were casting a GList* variable to a a GtkWidget* variable. Bad bad
1276         bad. (Tim Janik).
1277
1278         * gtksignal.c: Modified 'gtk_signal_connect' and
1279         'gtk_signal_connect_object' to warn when a signal type cannot be
1280         found.
1281
1282 Sun Feb  9 00:15:30 1997  Peter Mattis  <pmattis@localhost>
1283
1284         * gtkoptionmenu.c:
1285         * gtkoptionmenu.h: Changed option menus back to being derived from
1286         buttons. This fixes up some screwiness with their user
1287         interaction.
1288
1289         * gtkwindow.c: Modified key press handler to support focus
1290         traversal.
1291
1292         * gtkcontainer.c:
1293         * gtkcontainer.h: Added default focus traversal back in.
1294
1295 Sat Feb  8 10:44:38 1997  Peter Mattis  <pmattis@localhost>
1296
1297         * gtkviewport.h:
1298         * gtkviewport.c: Massively sped up viewport scrolling. Used to be
1299         reallocating child's size (offset) each time a scrollbar
1300         moved. Now a subwindow is moved. All the children are moved
1301         automatically by moving the subwindow. Much much much faster.
1302
1303 Tue Feb  4 00:20:44 1997  Peter Mattis  <pmattis@localhost>
1304
1305         * gtree.c: Changed 'g_tree_node_search' to use a loop instead of
1306         recursion.
1307
1308 Mon Feb  3 11:30:03 1997  Peter Mattis  <pmattis@localhost>
1309
1310         * gtkbutton.c: Removed 'parent_destroy' global and replaced it
1311         with 'parent_class' global to reflect style used in other
1312         widgets.
1313
1314         * gtknotebook.c: Tab labels were being allocated less than their
1315         requested size.
1316
1317         * gtkrange.c:
1318         * gtkrange.h: Moved the "digits" field of scales into the range
1319         type. The adjustment value for scales is truncated to the number
1320         of visible digits instead of being left untouched.
1321
1322         * gtree.c: Fixed a bug in the AVL tree implementation. Single
1323         rotations were always being performed during insertion. It is
1324         sometimes necessary to perform a double rotation.
1325
1326         * gtklabel.c: Modified 'gtk_label_expose' to only draw the label
1327         when the allocated space is greater than or equal to the requested
1328         space.
1329
1330         * gtklabel.c: Added call to 'gtk_widget_unmap' to
1331         'gtk_label_destroy' in order for the label to redraw correctly
1332         (erase itself) when destroyed.
1333
1334         * gtklabel.c: Added 'gtk_label_unmap' call which erases the labels
1335         allocation when it gets unmapped.
1336
1337         * *.h: Removed a few remaining instances of using "class" as a
1338         parameter name. (Causes problems for C++).
1339
1340 Fri Jan 31 12:26:50 1997  Peter Mattis  <pmattis@localhost>
1341
1342         * gtkcontainer.c: 'gtk_container_enable_resize' needs to call
1343         'gtk_container_check_resize' instead of
1344         'gtk_container_need_resize'.
1345
1346         * gtkwidget.c: 'gtk_real_widget_show' now maps the widget if its
1347         parent is mapped.
1348
1349         * gtkscrolledwindow.c: Fixed size allocation when the scrollbar
1350         policy's are GTK_POLICY_AUTOMATIC. Doing it correctly is harder
1351         than I originally thought.
1352
1353         * gtklist.c: Added 'gtk_list_child_position' to determine the
1354         integer position in a list of a child. Filled in the
1355         'gtk_list_item_select' and 'gtk_list_item_unselect' stubs.
1356
1357 Thu Jan 30 16:08:06 1997  Peter Mattis  <pmattis@localhost>
1358
1359         * gmem.c: Changed the implementation of G_ALLOC_AND_FREE mem
1360         chunks. They used to allocate SIZEOF_VOID_P extra bytes per atom
1361         in order to keep track of which mem area they were allocated
1362         from. Now the mem area is determined by searching through an AVL
1363         tree of the mem areas for a mem chunk and comparing memory
1364         locations. A little slower, but makes G_ALLOC_AND_FREE mem chunks
1365         much more attractive.
1366
1367         * gtree.c: Added an AVL tree implementation to glib.
1368
1369         * gtksignal.c:
1370         * gstring.c: va_arg (arg_list, {char, short}) is
1371         invalid. Arguments passed in a variable argument list are
1372         promoted. ({char, short}->int). Seemed to work ok before under
1373         Linux. Crashed under FreeBSD.
1374
1375 Tue Jan 28 02:27:51 1997  Peter Mattis  <pmattis@localhost>
1376
1377         * gdkwindow.c: Fixed a major slowdown apparent in the file
1378         selection dialog which was caused by calling
1379         'gtk_window_add_colormap_windows' way way way too often.
1380
1381         * *.c: Many widgets called 'gtk_container_need_resize' when
1382         something internal changed which would cause the widget to grow or
1383         shrink. The assumption was made that the widget would change size
1384         and an expose event would be generated. This happens "most" of the
1385         time. But its possible for certain widgets to change size without
1386         generating expose events, or for its internal geometry to change
1387         without a change of size which would mean no expose event was
1388         generated. So a wrapper function called
1389         'gtk_container_check_resize' was created and
1390         'gtk_container_need_resize' was modified so that it returns FALSE
1391         if a resize was actually generated and TRUE if nothing
1392         changed. This allows 'gtk_container_check_resize' to initiate a
1393         'gtk_widget_size_allocate' and 'gtk_widget_draw' to emulate the
1394         expose event.
1395
1396 Sat Jan 25 14:17:44 1997  Peter Mattis  <pmattis@localhost>
1397
1398         * gtkmain.c: Fixed a bug with propogating key press events. The
1399         events were sent 2 times to the toplevel windows which caused the
1400         focus widget to be activated twice when the space bar was pressed.
1401
1402         * */configure.in:
1403         * */Makefile.am: Added support for libtool and removed the old
1404         shared library configuration craziness.
1405
1406 Fri Jan 24 12:59:22 1997  Peter Mattis  <pmattis@localhost>
1407
1408         * gtktext.c:
1409         * gtktext.h: Josh's fixes and additions to the text widget.
1410
1411         * gtkfill.c:
1412         * gtkfill.h: Filler widget useful for filling space in a
1413         table. Can specify a minimum size. Used by the canvas widget.
1414
1415         * gtknotebook.c:
1416         * gtknotebook.h: Made outline of notebook widget.
1417
1418         * gtkcanvas.c:
1419         * gtkcanvas.h: Started canvas widget. A composite of 2 rulers (w/
1420         an origin), 2 scrolllbars. Guides, grids, snap to.
1421
1422 Sun Jan 19 18:26:45 1997  Peter Mattis  <pmattis@localhost>
1423
1424         * gtkdialog.c:
1425         * gtkdialog.h: Created dialog widget which creates a standard
1426         looking dialog with buttons along the button and a separator.
1427
1428         * gtkxid.c: Generalized the window table code for looking up a gdk
1429         window based on an XID to work for any XID and a piece of
1430         data. Can now look up gdk fonts based on their XID.
1431
1432         * gtkruler.c:
1433         * gtkruler.h:
1434         * gtkhruler.c:
1435         * gtkhruler.h:
1436         * gtkvruler.c:
1437         * gtkvruler.h: Started conversion of the ruler widget.
1438
1439         * gtktext.c:
1440         * gtktext.h: Started conversion of the text widget. Scrolling
1441         doesn't work.
1442
1443         * gtkmain.c: Fixed a fairly major bug. The event widget needs to
1444         be in a call for the entire duration of handling an event. Not
1445         just for when the event widget itself is handling the event.
1446
1447         * gtkfilesel.c: Fixed up some bugs with resizing.
1448
1449 Fri Jan 10 14:18:03 1997  Peter Mattis  <pmattis@localhost>
1450
1451         * gtkwidget.c:
1452         * gtkwidget.h:
1453         * gtkentry.c:
1454         * gtkentry.h: Support for selections.
1455
1456         * gdkselection.c:
1457         * gdk.c:
1458         * gdktypes.h:
1459         * gdk.h: Gdk support for X selections. Currently only text
1460         selections are supported.
1461
1462         * gtksignal.c: Fixed a major bug which occurred when destroying an
1463         object. Memory was being written to after it was freed.
1464
1465         * gtkfilesel.c:
1466         * gtkfilesel.h: Hooked up more functionality to the file selection
1467         dialog.
1468
1469 Wed Jan  8 18:13:53 1997  Peter Mattis  <pmattis@localhost>
1470
1471         * gtkfilesel.c:
1472         * gtkfilesel.h: Mostly converted old file selection dialog
1473         widget. The widget is derived from the GtkWindow class and is
1474         quite a bit simpler in the widget code.
1475
1476         * gtkwidget.c: Fixed 'gtk_widget_grab_focus' and
1477         'gtk_widget_grab_default' to check that the toplevel widget is a
1478         type of window (which includes classes derived from windows).
1479
1480 Tue Jan  7 01:12:32 1997  Peter Mattis  <pmattis@localhost>
1481
1482         * gtkwindow.c: Was calling 'gtk_window_resize' twice in a
1483         row...why?
1484
1485         * gtksignal.c:
1486         * gtksignal.h:
1487         * *.c: Changed 'gtk_signal_new' so that the class function that is
1488         called when the signal is emitted can be called either before,
1489         after or both before and after the calling of any signal
1490         handlers.
1491
1492         * gtkobject.c:
1493         * gtkobject.h: Added 'object_data' mechanism for storing data
1494         associated with a character string key in objects. Removed
1495         'user_data' field of objects and changed
1496         'gtk_object_{get,set}_user_data' to use the object data
1497         mechanism. Removed 'handlers' field of objects.
1498
1499         * gtkwidget.c:
1500         * gtkwidget.h:
1501         * gtkwindow.c: Modified aux info mechanism to use object data
1502         mechanism.
1503
1504         * gtksignal.c: Modified signal mechanism to use object data
1505         mechanism instead of 'handlers' field.
1506
1507
1508 Mon Jan  6 15:10:16 1997  Peter Mattis  <pmattis@localhost>
1509
1510         * gtkmenushell.c: Fixed up button press handling so as to conform
1511         more closely to that used by Motif.
1512
1513 Wed Jan  1 21:27:17 1997  Peter Mattis  <pmattis@localhost>
1514
1515         * gtkmenu.c:
1516         * gtkmenu.h:
1517         * gtkmenubar.c:
1518         * gtkmenubar.h:
1519         * gtkmenushell.c:
1520         * gtkmenushell.h: Reorganization of menu-ing code so that code
1521         duplication is reduced. The menu shell now contains most of the
1522         code for menu-ing interaction while menus and menubars simply layout
1523         their child menu items in the appropriate place.
1524
1525 Sun Dec 29 17:48:18 1996  Peter Mattis  <pmattis@localhost>
1526
1527         * gtkmenu.c:
1528         * gtkmenubar.c:
1529         * gtkmenuitem.h:
1530         * gtkmenuitem.c: Modifications so that menu item accelerators and
1531         the submenu indicator are drawn correctly and the correct amount
1532         of space is allocated.
1533
1534 Sat Dec 28 00:32:13 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
1535
1536         * gtkmenufactory.h:
1537         * gtkmenufactory.c: Started menu factories as an easy method to
1538         create and manipulate menus.
1539
1540 Fri Dec 27 13:17:34 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
1541
1542         * gtkmenu.c:
1543         * gtkmenu.h:
1544         * gtkmenubar.c:
1545         * gtkmenubar.h:
1546         * gtkmenuitem.c:
1547         * gtkmenuitem.h:
1548         * gtkmenushell.c:
1549         * gtkmenushell.h: Implemented basic menu functionality. Menubars
1550         and popup menus work. Submenus work. (Much left to be done).
1551
1552 Wed Dec 18 15:27:05 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
1553
1554         * gtktypeutils.h:
1555         * gtktypeutils.c: Added 'gtk_type_from_name' which returns a type
1556         identifier given a type name. Implemented using a second hash
1557         table keyed by type names.
1558
1559         * gtkbutton.c:
1560         * gtktogglebutton.c: Fixed very small messed-up drawing bug when a
1561         button loses its focus.
1562
1563         * gtkwidget.h:
1564         * gtkwidget.c:
1565         * gtkbutton.c:
1566         * gtkwindow.c: Added default button handling. Default buttons now
1567         draw correctly and pressing return or enter causes the default
1568         button (if one exists) to be activated.
1569
1570 Tue Dec 17 19:32:21 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
1571
1572         * gtkhscale.c:
1573         * gtkvscale.c: Overrode 'draw_slider' method of ranges in order to
1574         draw the slider of scales with a line in them so as to be closer
1575         to the Motif look-and-feel.
1576
1577         * gtkwindow.c: Modified 'gtk_window_focus_in_event' so that focus
1578         in events are only handled when the window is visible. Fixes a bug
1579         where spurious focus in events get sent when a window is being
1580         hidden.
1581
1582         * gtkwidget.h: Added 'activate_signal' field to the GtkWidgetClass
1583         structure. Added 'gtk_widget_activate' call to emit the activate
1584         signal for a widget if it is non-zero.
1585
1586 Tue Dec 10 15:59:45 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
1587
1588         * gtkwidget.c: 'gtk_widget_set_name' oops in strdup'ing the old
1589         "widget->name" instead of the new one we are setting.
1590
1591         * gtkrc.c: 'gtk_rc_widget_path' changed to use
1592         'gtk_widget_get_name' instead of accessing the "widget->name"
1593         field directly.
1594
1595         * gtkwidget.c: Added 'gtk_widget_get_name' function which returns
1596         the widgets name if it exists and the widgets type name if it does
1597         not.
1598
1599         * gtkcheckbutton.c: Added 'gtk_check_button_draw'
1600         function. Modified 'gtk_check_button_expose' to pass an expose
1601         event to child instead of callings its draw function.
1602
1603         * gtkentry.c: 'gtk_entry_draw_text' why was "+1" being added to
1604         the font->ascent to calculate the font position? This was wrong
1605         and caused some characters in fonts to be clipped. (Notably "g").
1606
1607         * gtkentry.c: 'gtk_entry_realize' specify GTK_BUTTON1_MOTION_MASK
1608         and GTK_POINTER_MOTION_HINT_MASK for _both_ windows.
1609
1610         * gtkmain.c: 'gtk_propagate_event' needs to set the GTK_IN_CALL
1611         flag for the object before calling 'gtk_widget_event' and needs to
1612         destroy the object if necessary after 'gtk_widget_event' returns.
1613
1614         * gtkradiobutton.c: 'gtk_radio_button_clicked' needs to call
1615         'gtk_toggle_button_toggled' when the currently active button is
1616         toggled.
1617
1618         * gtkwidget.c: 'gtk_real_widget_hide' needs to call
1619         'gtk_widget_unmap' if the widget is currently mapped.
1620
1621         * gtkwindow.c: Prevent automatic resizing after the user has
1622         specified a new window size. Add 'handling_resize' flag to
1623         windows.
1624
1625         * gtkscrolledwindow.c: Implement the GTK_POLICY_AUTOMATIC
1626         scrollbar policy. Need to connect to the adjustments 'changed'
1627         signal and notice when the scrollbars aren't in use.
1628
1629         * gtkcontainer.c: 'gtk_container_init' must set 'auto_resize' and
1630         'need_resize' fields to TRUE and FALSE respectively.
1631
1632         * gtkwidget.c: 'gtk_widget_set_parent' must all set a widgets state
1633         to its parents state.
1634
1635 Sun Dec  1 01:31:01 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
1636
1637         * Started ChangeLog