]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-8
fixed a bad, bad referencing bug that could caused unreferencing of
[~andy/gtk] / ChangeLog.pre-2-8
1 Mon Feb  2 04:15:08 1998  Tim Janik  <timj@gimp.org>
2
3         * gtk/gtkmain.c (gtk_propagate_event): fixed a bad, bad referencing
4           bug that could caused unreferencing of finalized objects.
5
6         * gtk/testgtk.c: destroy fileselection on "OK" (this triggered the
7           above mentioned bug).
8
9         * gtk/gtkwidget.h:
10         * gtk/gtkwidget.c:
11         * gtk/gtkobject.h:
12         * gtk/gtkobject.c:
13           implemented and object reference tracer (gtk_trace_referencing) which
14           is activated if GTK_TRACE_OBJECTS is defined (currently per default).
15           in gdb: set the static variable `gtk_trace_object' to point to the
16           object that you want to have reference traced.
17
18         * gtk/gtkfileselection.c: few cleanups.
19
20         * gtk/gtkcolorsel.c:
21         * gtk/gtkcombo.c:
22         * gtk/gtkobject.c:
23         * gtk/gtkselection.c:
24         * gtk/gtkwidget.c:
25         * gtk/gtkwindow.c:
26           cleanups with key name spaces.
27
28         * gtk/gtkcombo.c: fixed destruction bug with popwin.
29
30         * gtk/gtkcontainer.h: 
31         * gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
32           (gtk_container_register_toplevel): new function.
33           (gtk_container_unregister_toplevel): new function.
34
35         * gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
36
37         * gtk/gtkmenu.c: call gtk_container_register_toplevel in
38           gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
39           hack. new default handler gtk_menu_destroy for calling
40           gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
41
42         * gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
43
44         * gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
45           (object).
46
47         * gtk/gtkprivate.h: new file that will not be automatically included.
48           it holds the private flags for GtkWidget along with it's SET/UNSET
49           and examination macros.
50
51         * gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
52           GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
53           replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
54           removed the gtk_widget_set_parent(, NULL) hack for toplevels.
55           upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
56
57         * gtk/gtkwidget.h: split up the widget flags into a public and a private
58           portion. added an extra field private_flags to GtkWidget without making
59           it bigger by using an alignment gap of 16 bit. macro cleanups.
60
61         * gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
62           for calling gtk_container_unregister_toplevel. removed the
63           gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
64           instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
65
66         * gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
67           removal that cut off the handler list -> living_objects == 0
68           with testgtk. made some warnings more descriptive.
69           new function gtk_signal_connect_object_while_alive, which
70           will automatically destroy the connection once one of the objects
71           is destroyed. didn't include this before removal of the above
72           mentioned bug.
73
74 Sat Jan 31 23:55:03 1998  Tim Janik  <timj@gimp.org>
75
76         * ChangeLog entry for Friday (incorporation of Marius Vollmer's
77           reference counting revolution, plus various fixups and additions
78           from myself).
79
80         * gdk/gdk.h:
81         * gdk/gdkgc.c: new functions gdk_gc_ref/gdk_gc_unref.
82
83         * gdk/gdkprivate.h: cleanups on ref_count field sizes.
84
85         * gtk/gtkadjustment.c (gtk_adjustment_set_value): new function for
86           emission of GtkAdjustment::value_changed signal.
87
88         * gtk/gtkbin.c:
89         * gtk/gtkcolorsel.c:
90         * gtk/gtkcurve.c:
91         * gtk/gtkentry.c:
92         * gtk/gtkframe.c:
93         * gtk/gtkinputdialog.c:
94         * gtk/gtklabel.c:
95         * gtk/gtkpixmap.c:
96         * gtk/gtkpreview.c:
97         * gtk/gtkrange.c:
98         * gtk/gtktable.c:
99         * gtk/gtkwindow.c:
100           replaced functionality of gtk_*_destroy by gtk_*_finalize.
101
102         * gtk/gtkbox.c:
103         * gtk/gtkbutton.c:
104         * gtk/gtkfixed.c:
105         * gtk/gtkmenushell.c:
106         * gtk/gtknotebook.c:
107         * gtk/gtkpaned.c:
108         * gtk/gtkscale.c:
109           removed default destroy handler.
110
111         * in general: reference parent->window for NO_WINDOW widgets.
112           set user data of a GdkWindow to NULL before destruction.
113         
114         * gtk/gtkbutton.c: use gtk_widget_unparent instead of gtk_widget_destroy
115           in *_set_arg.
116
117         * gtk/gtkcontainer.c: provide other containers with a default destroy
118           handler that will destroy all children.
119           new function gtk_container_foreach_interp.
120           new field resize_widgets.
121
122         * gtk/gtklist.c: handle destruction of children in gtk_list_destroy.
123           replaced occourances of gtk_widget_destroy with gtk_widget_unparent.
124           reference children that are in the selection list.
125
126         * gtk/gtkmain.c: reference grab widgets.
127           (gtk_get_event_widget): check for event.window != NULL. Note: this
128           function may return NULL now!.
129           (gtk_propagate_event): much simplified by using proper reference
130           counting.
131
132         * gtk/gtkmenu.c: introduce GTK_TOPLEVEL, and gtk_widget_set_parent(,
133           NULL) hack.
134
135         * gtk/gtkmenuitem.c: gtk_widget_(un)ref the submenu.
136
137         * gtk/gtkmenushell.c: check for return value of gtk_get_event_widget.
138
139         * gtk/gtknotebook.c: proper gtk_widget_unparent()ing.
140
141         * gtk/gtkobject.c: new functions gtk_object_finalize,
142           gtk_object_notify_weaks, gtk_object_debug, gtk_object_sink,
143           gtk_object_weakref, gtk_object_weakunref. implementation of the new
144           reference counting scheme for gtkobjects (consult gtk+/REFCOUNTING).
145
146         * gtk/gtkoptionmenu.c: proper reference counting for option_menu->menu.
147
148         * gtk/gtkscrolledwindow.c: new finalize handler for proper referencing
149           of the subwidgets.
150
151         * gtk/gtksignal.c: internal representation of signal_type is now 16 bit
152           instead of 13 bits. this is needed because of user signals.
153           new functions gtk_signal_handler_ref and gtk_signal_handler_unref
154           (replacement for gtk_signal_handler_destroy).
155           gtk_signal_emit, gtk_signal_emit_by_name, gtk_signal_real_emit used
156           to return the existence of a GtkObject. this will always be TRUE now,
157           therefore the return value is now void.
158
159         * gtk/gtktooltips.h:
160         * gtk/gtktooltips.c: GtkTooltips is now a descendant of GtkData and
161           therefore a real GtkObject.
162
163         * gtk/gtktree.c: reference changes similar to thos in gtklist.c.
164
165         * gtk/gtktreeitem.c: reference th e pixmaps properly.
166
167         * gtk/gtktypeutils.h:
168         * gtk/gtktypeutils.c: new function gtk_arg_copy() to conform to
169           the requirements of gtk_object_get().
170
171         * gtk/gtkviewport.c: finalize handler for proper referencing of the
172           adjustments.
173
174         * gtk/gtkwidget.c: substituted VISIBILITY_NOTIFY_EVENT by NO_EXPOSE_EVENT.
175           added finalize handler. added gtk_widget_ref/gtk_widget_unref.
176           new functions gtk_widget_idle_draw and gtk_widget_idle_sizer, that
177           will handle all widgets that are currently in either queue.
178           referencing all over the place. changes because gtk_signal_emit
179           returns void now. moved queue removal into the destroy handler.
180           gtk_widget_real_unrealize propagates now down the tree. new flag
181           GTK_TOPLEVEL. new function gtk_widget_destroyed for connection to the
182           destroy signal of a widget. this function nullifies the widgets
183           structure pointer, look at gtkmain.c for an example on this.
184
185         * gtk/gtkwindow.c: new functions gtk_window_activate_focus,
186           gtk_window_activate_default. for activation of the appropriate
187           children. changes to the resizing code because there is a new
188           field resize_widgets in GtkContainer now.
189
190         * gtk/testgtk.c: some changes because of all the above ;)
191
192 Sat Jan 31 21:26:27 1998  Owen Taylor  <owt1@cornell.edu>
193
194         * gtk/gtkwidget.c: Added a new GTK_IN_REPARENT flag and revised
195           gtk_widget_reparent so that the child would not be unrealized
196           unnecessarily. Changed gtk_widget_unrealize () to recursively
197           unrealize the children (since the child windows will be 
198           destroyed too.)
199
200 Sat Jan 31 00:05:34 PST 1998 Manish Singh <yosh@gimp.org>
201
202         * gtk/gtkcombo.c: changed to use g_strcasecmp
203         * gtk/gtkobject.c: #include <stdlib.h> for atexit
204
205 Sat Jan 31 00:13:33 1998  Owen Taylor  <owt1@cornell.edu>
206
207         * gtk/gtkstyle.c: Backed out change to close polygons
208           since it caused problems for the Notebook.
209
210 Fri Jan 30 22:28:09 1998  Owen Taylor  <owt1@cornell.edu>
211
212         * gtk/gtkclist.{c,h}:
213            - Conformity to new reference counting schemes
214            - Font and color information is no-longer taken from
215              the (possibly unitialized) style before the widget
216              is realized, but is obtained when needed. (Fixes
217              problems with non-default styles)
218            - white_gc => base_gc where appropriate
219            - Handle graphics expose events correctly (or as
220              correctly as anywhere else) so that scrolling when
221              overlapped works.
222
223 Fri Jan 30 21:32:11 1998  Owen Taylor  <owt1@cornell.edu>
224
225         * gtk/gtkwidget.c (gtk_widget_init): Don't replace the object
226         flags, augment them. (Otherwise we'll clear the FLOATING flag)
227
228 Fri Jan 30 17:41:06 1998  George Lebl  <jirka@5z.com>
229
230         * gtk/gtktable.c: fixed round-off error in calculation
231           of tabels with a lot of cells
232
233 Fri Jan 30 08:51:16 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
234
235         * gdk/gdkcc.c (gdk_color_context_get_pixel): red/green/blue
236         parameters are now expected to be in [0, 65535], to be consistent
237         with the rest of Gdk.
238         (gdk_color_context_get_pixels): Made it use 16-bit color values as
239         well.  Fixed mdist=1000000 buglet (it should start with at least
240         0x1000000).
241         (gdk_color_context_get_pixels_incremental): Same as
242         gdk_color_context_get_pixels().
243
244 Thu Jan 29 22:57:39 1998  Owen Taylor  <owt1@cornell.edu>
245
246         * gtk/gtkstyle.c (gtk_default_draw_polygon): Close
247           the polygon if it isn't already. (To match gtk_draw_polygon)
248           Simplified logic. (Appearance could probably be
249           improved for objects with gradual curves by adding in
250           some intermediate edge coloration)
251
252 Thu Jan 29 21:36:14 1998  Tim Janik  <timj@gimp.org>
253
254         * gtk/gtksignal.c (gtk_signal_query): new function to gather
255           information about a certain signal.
256
257         * gtk/gtksignal.c (gtk_signal_newv): new function similar to
258           gtk_signal_new().
259
260         * gtk/gtksignal.c (gtk_signal_real_emit): check for function_offset
261           == 0.
262
263         * gtk/gtksignal.c (gtk_signal_connect_by_type): perform a signal
264           id lookup on the parent as well.
265
266         * gtk/gtkobject.c (gtk_object_class_add_user_signal): new
267           function for implementation of user defined signals.
268         * gtk/gtkobject.c (gtk_object_class_add_signals): free old
269           signal id array.
270
271         * gtk/gtkobject.h: this holds the typedefs for GtkSignalFunc and
272           GtkSignalMarshaller now, because they are used for
273           gtk_object_class_add_user_signal.
274
275         * gtk/gtktypeutils.c (gtk_type_class_init): reset object_class->signals
276           and object_class->nsignals for new object classes.
277
278 Tue Jan 27 15:52:48 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
279
280         * gtk/gtkhandlebox.c (gtk_handle_box_realize): The auto_shrink
281         policy of the floating window is now set to TRUE.  This fixes the
282         problem of the floating window being too big when the handlebox
283         child is small.
284         (gtk_handle_box_motion): Now we use GDK_POINTER_MOTION_HINT_MASK
285         to improve movement.
286
287 Tue Jan 27 14:15:50 CST 1998 Shawn T. Amundson <amundson@gimp.org>
288
289         * docs/gtkfaq.sgml: more additions/changes Tony Gale.
290
291 Mon Jan 26 17:12:12 CST 1998 Shawn T. Amundson <amundson@gimp.org>
292
293         * docs/gtkfaq.sgml: additions/changes from new FAQ maintainers
294           Nathan Froyd and Tony Gale.
295
296 Mon Jan 26 16:54:02 CST 1998 Shawn T. Amundson <amundson@gimp.org>
297
298         * docs/gtk.texi: additions/changes from Gregory A. McLean
299
300 Mon Jan 26 02:15:29 1998  Tim Janik  <timj@gimp.org>
301
302         * gdk/gdkdraw.c:
303         * gdk/gdkgc.c:
304         * gdk/gdkimage.c:
305         * gdk/gdkinput.c:
306         * gdk/gdkpixmap.c:
307         * gdk/gdkproperty.c:
308         * gdk/gdkselection.c:
309         * gdk/gdkwindow.c: added a bunch of checks for window != NULL and
310           private->destroyed.
311
312 Sun Jan 25 19:15:32 1998  Tim Janik  <timj@gimp.org>
313
314         * gtk/gtkwidget.h (enum): added new widget flag GTK_LEAVE_PENDING.
315         * gtk/gtkmain.c (gtk_main_iteration_do): if a widget has
316           GTK_LEAVE_PENDING set, send it its LEAVE_NOTIFY event, regardless
317           of a grab or sensitivity.
318           changed the compression code for enter/leave notify events to
319           free *both* compressed event, and removed an unneccessary call
320           to g_list_remove.
321
322         * ChangeLog: finally catched up with the recent changes on my part.
323
324         * gtk/gtkobject.h: new element n_args in GtkObjectClass.
325         * gtk/gtkobject.c (gtk_object_query_args): this function now returns
326           the arguments in the correct order.
327
328         * gtk/gtkbox.c:
329         * gtk/gtkbutton.c:
330         * gtk/gtkcontainer.c:
331         * gtk/gtkframe.c:
332         * gtk/gtklabel.c:
333         * gtk/gtkobject.c:
334         * gtk/gtkwidget.c:
335         * gtk/gtkwindow.c: various fixes and additions to the gtk_*_set_arg
336           and gtk_*_get_arg() functions.
337
338         * gdk/gdk.h:
339         * gdk/gdk.c (gdk_pointer_is_grabbed): new function.
340
341         * gtk/gtkmain.h:
342         * gtk/gtkmain.c: implementations of gtk_invoke_key_snoopers(),
343           gtk_key_snooper_install() and gtk_key_snooper_remove(). this
344           mechanism allowes applications to track global hot keys that need
345           to bypass accelerator tables and else key processing stuff.
346
347 Thu Jan 22 18:58:44 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
348
349         * gdk/gdkcc.c: Switched the file to GNU indentation, for consistency.
350
351         * gdk/gdktypes.h (struct _GdkColorContext): Picky, picky... fix
352         two lines with wrong indentation :-)
353
354 Thu Jan 22 02:32:06 1998  Scott Goehring  <scott@poverty.bloomington.in.us>
355
356         * gtk/Makefile.am: Fixed the called to runelisp to use $(SHELL).
357           (Cannot rely on the script having execute permissions.)
358
359 Wed Jan 21 17:29:54 CST 1998 Shawn T. Amundson <amundson@gimp.org>
360
361         * Released 0.99.3
362
363 Wed Jan 21 01:32:21 1998  Tim Janik  <timj@psynet.net>
364
365         * gtk/gtkwidget.h:
366         * gtk/gtkwidget.c: changed the state_changed signal to take an
367           extra argument `old_state'.
368           removed `gtk_widget_restore_state'.
369           changed `gtk_widget_set_state' and `gtk_widget_set_sensitive' to use
370           only one function `gtk_widget_propagate_state' to iterate down the
371           tree. this causes GtkWidget::state_changed to be invoked on state
372           changes and on sensitivity changes. some comment cleanups.
373
374 Tue Jan 20 16:38:52 1998  Owen Taylor  <owt1@cornell.edu>
375         * gtk/gtkcombobox.{c,h}: removed
376           gtk/gtkcombo.{c,h}: added [Paolo Molaro's version]
377           gtk/testgtk.c: changed to use new version
378           gtk/Makefile.am gtk/gtk.h
379         
380 Mon Jan 19 20:10:19 CST 1998 Shawn T. Amundson <amundson@gimp.org>
381
382         * gdk/gdk.h Fixed typo where strdup was used instead of g_strdup
383           (found by Frank Neumann)
384
385 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
386
387         * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
388         container_class->focus to NULL.  Widgets in the toolbar should not
389         get the focus via the normal key bindings (no toolkit does this,
390         and it makes sense).
391
392         * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
393         match Eckehard's new prototypes.
394
395         * gtk/gtktoolbar.h: Switched the order of the tooltip_text and
396         widget parameters to the gtk_toolbar_*_widget() functions, to be
397         friendlier to the C++ bindings.  This is per request of Guillaume
398         Laurent.
399
400 Mon Jan 19 09:16:38 1998  Tim Janik  <timj@psynet.net>
401
402         * gtk/gtkmain.c (gtk_grab_add) (gtk_grab_remove): this is a stack
403           of grabbing widgets now, having unique entries. the GTK_HAS_GRAB
404           flag of a widget is set while it is on the stack (wasn't
405           implemented before).
406
407 Mon Jan 19 00:46:18 1998 MET  Eckehard Berns  <eb@berns.prima.de>
408
409         * gtk/gtktoolbar.[ch]: changed
410           gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
411           as icon to allow more flexibility
412
413 Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
414         * gtk/gtkstatusbar.[ch] added new widget, the statusbar
415
416 Sun Jan 18 09:57:00 1998  Owen Taylor  <owt1@cornell.edu>
417
418         * gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkdrawingarea.c
419           gtk/gtkentry.c gtk/gtkeventbox.c gtk/gtkfixed.c
420           gtk/gtkhandlebox.c gtk/gtkhscale.c gtk/gtkhscrollbar.c
421           gtk/gtkitem.c gtk/gtklist.c gtk/gtkmenushell.c gtk/gtkmisc.c
422           gtk/gtknotebook.c gtk/gtkpaned.c gtk/gtkpreview.c
423           gtk/gtkprogressbar.c gtk/gtkruler.c gtk/gtktext.c gtk/gtktree.c
424           gtk/gtkviewport.c gtk/gtkvscale.c gtk/gtkvscrollbar.c
425           gtk/gtkwidget.{c,h}
426
427         Added gtk_widget_set_parent_window() and 
428         gtk_widget_get_parent_window(). All widgets should use:
429         
430            gtk_widget_get_parent_window() instead of widget->parent->window.
431         
432         Any widget that wants to have children not in the parent window,
433         should use gtk_widget_set_parent() in their realize() and
434         add() routines. 
435
436         CList and Viewport widgets changed to do this. (Viewport
437         widget using code from gtk-fortier-980117-0.patch.)
438
439 Sat Jan 17 23:56:02 1998  Owen Taylor  <owt1@cornell.edu>
440
441         * gtk/gtkobject.c:
442            renamed g_string_equal => g_str_equal
443            renamed g_string_hash => g_str_hash
444
445 Sun Jan 18 03:57:52 1998  Tim Janik  <timj@psynet.net>
446
447         * gtk/gtkframe.c: gtk_*_get_arg() and gtk_*_set_arg() implementations.
448         * gtk/gtkobject.c: new arg `GtkObject::object_signal' similar to
449           `GtkObject::signal'. check for class type in gtk_object_{setv|getv}.
450
451         * gtk/gtkobject.c:
452         * gtk/gtksignal.c:
453         * gtk/gtktypeutils.h:
454         * gtk/gtktypeutils.c: added GTK_TYPE_DOUBLE.
455
456         * gtk/gtkwidget.c: new args `has_focus' and `has_default'.
457         * gtk/gtkwindow.c: new arg `window_position'.
458
459         * gtk/gtkbox.h:
460         * gtk/gtkbox.c: new functions gtk_box_reorder_child,
461         gtk_box_query_child_packing and gtk_box_set_child_packing to
462         allow modification of the child linkage after the widget tree
463         is setup.
464
465         * gtk/gtkbox.c:
466         * gtk/gtklabel.c:
467         * gtk/gtkwindow.c:
468         * gtk/gtkwidget.c:
469         * gtk/gtkobject.c: gtk_*_get_arg() and gtk_*_set_arg() fixes
470           and implementations.
471         
472 Sat Jan 17 18:06:35 1998  Owen Taylor  <owt1@cornell.edu>
473         * gdk/gdk.c (gdk_events_pending): Take putback events into
474           account
475
476         * gdk/gdk.c (gdk_event_free): Handle dropdataavaible memory
477           allocation correctly. (Incompatible change: client must
478           _not_ fre event->data and event->data_type.)
479
480         * gdk/gdk.c (gdk_event_translate): Changed DND dragging
481           so that we don't ungrab pointer when we reenter window
482           to prevent extra Enter/Leave effects which had bad
483           effects.
484           Changed drag zone handling to not send uncessary
485           DragEnter events.
486           Fixed EnterNotify/LeaveNotify handling. (Only pay
487           attention to events on window, don't specify these
488           events to XGrabPointer - that isn't valid, and handle
489           reverse the sense of the handling of LeaveNotify.)
490
491         * gdk/gdkwindow.c (gdk_window_remove_filter): Free removed
492           filter.
493
494         * gtk/gtk.defs (GdkFont): gdk_font_free => gdk_font_unref
495
496         * gtk/gtkmain.{c,h} (gtk_events_pending): new function - apps
497           should use this instead of gdk_events_pending.
498
499         * gtk/gtkvbbox.h: Fixed a duplication in the headers.
500
501         * gtk/testgtk.c (dnd_drop): Don't free the drop data,
502           it belongs to the event.
503
504 Sat Jan 17 13:26:15 CST 1998 Shawn T. Amundson <amundson@gimp.org>
505
506         * gtk/gtkentry.[ch]:  Applied patch from <lupus@lettere.unipd.it> 
507           which adds gtk_entry_set_max_length function.  This was 
508           part of gtk-lupus-970112-0.
509
510         * gtk/testgtk.c: Applied gtk-wille-980113-0 which fixes 
511           a problem with a shaped widget keeping grab forever
512           when double clicked.
513      
514         * docs/gtk.texi: patch from Gregory McLean <gregm@randomc.com>
515           to add some on aspect_frame, button_box, and color_selection
516           widgets
517
518 Sat Jan 17 06:24:05 1998  Tim Janik  <timj@psynet.net>
519
520         * gtk/gtktypeutils.h (gtk_type_get_arg): new function.
521         * gtk/gtkobject.h (gtk_object_query_args): new function.
522         * gtk/gtkobject.h (gtk_object_getv): new function.
523         * gtk/gtkwidget.h (gtk_widget_get): new function.
524
525 Fri Jan 16 00:36:31 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
526
527         * gtk/gtkhandlebox.c: Now we use a GtkWindow of type
528         GTK_WINDOW_DIALOG as a destination for reparenting the child of
529         the handle box.  This solves the problem of having X calls in
530         Gtk.  It also makes the handle box work with KWM, OLVWM, 4Dwm (so
531         I expect mwm to work as well).  I hadn't noticed that previously
532         it only worked with fvwm and twm.
533
534         * gtk/gtkhandlebox.h (struct _GtkHandleBox): Removed the
535         real_parent field, as it is never used.
536         (struct _GtkHandleBox): Added a float_window field.  This is a
537         GtkWindow to where the child is now reparented.
538
539         * gtk/gtkhandlebox.c: Lots of changes all over the place.  Now the
540         widget has two windows.  The steady_window stays put in the parent
541         container, and the widget->window is the one that gets
542         reparented.  Now that window is transient, in compliance with the
543         ICCCM, instead of an OverrideRedirect window.
544
545         We have two windows so that we can properly receive Expose events
546         for the thin 3D line that marks the place where the handlebox is
547         docked.
548
549         * gtk/gtkhandlebox.h (struct _GtkHandleBox): Added fields for
550         dragging (mouse position information).  Added fleur_cursor so that
551         we look pretty.  Added steady_window field; it is the window that
552         actually stays on the parent (widget->window is the one that gets
553         reparented).
554
555 Thu Jan 15 19:03:19 1998  Miguel de Icaza  <miguel@nuclecu.unam.mx>
556
557         * gtk/gtkclist.c (gtk_clist_set_column_width): Call
558         gtk_clist_size_allocate_columns every time the column
559         configuration changes. 
560
561 Fri Jan 16 01:55:17 1998  Tim Janik  <timj@psynet.net>
562
563         * improved the gtk_widget_set handling. removed GtkArgFunc and added
564           GtkArgSetFunc and GtkArgGetFunc in _GtkTypeInfo.
565           performance consuming strcmp() calls are avoided in gtk_*_set_arg()
566           now, it is passed an arg_id on which it can switch() now.
567
568         * gtk/gtkobject.h:
569         * gtk/gtkobject.c (gtk_object_add_arg_type): added parameter arg_id.
570
571         * gtk/gtktypeutils.h:
572         * gtk/gtktypeutils.c (gtk_type_set_arg): added parameter arg_id.
573
574         * gtk/gtkobject.c: bug fixes and changes in the assertion system for
575           arg handling. changed g_print() warning calls to real g_warning()s.
576           
577         * changed all *_get_type() functions to initialize GtkTypeInfo
578           correctly with GtkArgSetFunc and GtkArgGetFunc fields.
579
580 Thu Jan 15 00:44:27 PST 1998 Jay Painter <jpaint@serv.net>
581         * gtk/gtkentry.[ch]: Change window cursor to "I"
582         * gtk/gtkpane.[ch]: Cleared up a tiny memory leak from not destroying the
583         cursor
584
585 Tue Jan 13 07:30:02 PST 1998 Jay Painter <jpaint@serv.net>
586         * gtk/gtkclist.c: minor updates
587         * gtk/gtktext.c: you can type in it!  It should also seg-fault *MUCH* less now,
588         because editing was never really turned off.  
589         * gtk/testgtk.c: changed the gtktext test a little
590         * gtk/testgtkrc: removed pixmap background for now, since I intend to break
591         that for a while
592
593 1998-01-13  Federico Mena Quintero  <federico@nuclecu.unam.mx>
594
595         * gtk/gtktoolbar.c: (gtk_real_toolbar_style_changed): Fixed
596         child->icon and child->label == NULL bugs.
597
598         * gtk/gtktoolbar.h: Added some new functions:
599                 gtk_toolbar_append_widget()
600                 gtk_toolbar_prepend_widget()
601                 gtk_toolbar_insert_widget()
602         These let the user insert any kind of widget in the toolbar.  Also
603         changed the gtk_toolbar_*_item() functions to return a
604         GtkWidget * so that the user can do things with the toolbar buttons.
605
606         * gtk/gtktoolbar.c: Now the toolbar supports its own buttons and
607         arbitrary widgets as well.  Geometry management has been changed
608         accordingly.  Added gtk_toolbar_remove() function, so container
609         functionality should be complete now.
610
611         * gtk/testgtk.c (create_toolbar): Added an entry widget to test
612         the new toolbar.
613
614         * Most of these changes are adapted from the
615         gtk-lupus-970112-0-patch (should be 970112... :-)
616
617 Sat Jan  9 20:52:00 PST 1998 Ian Main <imain@gimp.org>
618         * gtk/gtkfilesel.c:  Changed a few tests in the path correcting
619                 function.  Hopefully this helps the filesel stability.
620
621 Fri Jan  8 00:55:00 PST 1998 Jay Painter <jpaint@serv.net>
622         * gtk/gtkclist.c:
623         * gtk/gtkclist.h: modifications to GtkCList so it's look and 
624         feel is the same as scrolled windows.
625
626 Thu Jan  8 17:56:09 PST 1998 Manish Singh <yosh@gimp.org>
627
628         * glib/gscanner.c
629         * gtk/gtclist.c
630         * config.h.in
631         * configure.in: added test for inline and put the inline keywords
632         back in
633
634         * gtk/gtklabel.c: made the prototypes match the definitions
635
636         * gtk/fnmatch.c: minor change to make sure the right config.h
637         gets included
638         
639 1998-01-07  Elliot Lee  <sopwith@localhost.cs.cuc.edu>
640
641         * gtk/gtkcombobox.c gtk/gtkcombobox.h: New widget, GtkComboBox
642         * gdk/gdkwindow.c: Make gdk_window_init set the width &
643                 height of gdk_root_parent
644
645 Wed Jan  7 18:06:17 PST 1998 Manish Singh <yosh@gimp.org>
646
647         * gtk/gtkentry.c:
648         * gtk/gtkentry.h: applied patch to use a backing pixmap for
649         drawing, which removes the bad flickering. (gtk-wille-980106-0)
650
651 Wed Jan  7 02:14:30 PST 1998 Manish Singh <yosh@gimp.org>
652
653         * glib/glib.h
654         * glib/glist.c
655         * glib/gslist.c
656         * glib/testglib.c: Added g_[s]list_insert_sorted function
657         and appropriate tests in testglib
658
659 Tue Jan  6 17:09:46 1998  Owen Taylor  <owt1@cornell.edu>
660         * gtk/gtknotebook.h gtk/gtknotebook.c
661            Added "switch_page" signal. (gtk-hamann_jeske-971212-0.patch)
662
663 Tue Jan  6 17:07:29 1998  Owen Taylor  <owt1@cornell.edu>
664         * gtk/gtkentry.c gtk/gtkentry.h gtk/testgtk.c : 
665            Fixed problem with deleting while text is selected.
666            Changed behavior so that motion keys remove selection.
667            Added new gtk_entry_select_region () call.
668
669 Sat Jan  3 20:23:25 1998  Owen Taylor  <owt1@cornell.edu>
670         * glib/glib.h: Changed guint32 -> guint for bitfields. 
671           (Bitfields must be int or unsigned int?)
672
673 Sat Jan  3 15:39:45 PST 1998 Jay Painter <jpaint@serv.net>
674         * gtk/testgtk.c: better CList test
675
676 Sat Jan  3 11:09:51 CST 1998 Shawn T. Amundson <amundson@gimp.org>
677         * GTK+ 0.99.2 Released
678
679 Sat Jan  3 11:09:51 CST 1998 Shawn T. Amundson <amundson@gimp.org>
680
681         * gtk/gtkscrolledwindow.c: initialize scrollbar_spacing
682           (gtk-fortier-980103-0)
683
684 Sat Jan  3 10:15:08 1998  Scott Goehring  <scott@poverty.bloomington.in.us>
685
686         * configure.in: fixed a typo (no_xext_lib, not no_ext_lib).
687
688 Sat Jan  3 00:41:28 PST 1998 Manish Singh <yosh@gimp.org>
689
690         * gtk/gtkentry.c:
691         * gtk/gtkentry.h: applied Gordon Matzigkeit's patch to add
692         fixed-length entry fields (gtk_entry_new_with_max_length)
693         
694 Fri Jay  2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
695         * reverted glibconfig.h and glib.h files back to the
696         way they were before my ugly hack
697         * gtk/gtkclist.c:
698         * glib/gscanner.c: removed inlines from clist and gscanner
699
700 Fri Jan  2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
701
702         * Several portability fixes from Michael Callahan 
703           <callahan@xmission.com> including adding in missing
704           #includes and adding void in function prototypes.
705
706 Fri Jan  2 19:28:52 1988 Jay Painter <jpaint@serv.net>
707         * gtk/gtkclist.h:
708         * gtk/gtkclist.c:
709         * gtk/gtk.h:
710         * gtk/testgtk.c:
711         * gtk/testgtkrc: added GtkCList, column list widget, and a small test
712         to testgtk
713
714 Fri Jan  2 15:42:51 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
715
716         * gtk/gtkmain.c (gtk_main_iteration): Make the big switch handle
717         GDK_NO_EXPOSE and GDK_VISIBILITY_NOTIFY events.
718
719 Fri Jan  2 12:07:33 CST 1998 Shawn T. Amundson <amundson@gimp.org>
720
721         * gtk/gtkviewport.c: corrects a small resize bug in the 
722           viewport widget.  The viewport widget provides a _set_shadow 
723           function to draw its shadows. But if GTK_SHADOW_NONE is sent 
724           to this function, the viewport isn't resized correctly (it's 
725           still considered as a shadowed widget).  (gtk-fortier-971213-0)
726
727         * gtk/gtknotebook.c: this patch fixes the redraw problems of 
728           notebook tabs, without using gdk_gc_set_clip_rectangle.
729           (gtk-hamann_jeske-971218-0)
730  
731         * add gtk_widget_(show/hide)_all (Stefan Wille)
732           (gtk-wille-301297-0)  Patch for testgtk not included
733           because it did not patch clean.  
734
735 Thu Jan  1 21:21:56 PST 1998 Manish Singh <yosh@gimp.org>
736
737         * configure.in: fixed up the xinput test
738         * Miscellaneous portability fixes.
739
740 Mon Dec 29 22:05:45 1997  Miguel de Icaza  <miguel@nuclecu.unam.mx>
741
742         * gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
743         from one gc to another gc.
744
745 Sat Dec 27 20:39:99 1997  Elliot Lee <sopwith@redhat.com>
746         * gtk/gtkhandlebox.c: It mostly works now, please test it and make
747         fixes as needed.
748
749 Fri Dec 26 11:20:03 1997  Scott Goehring  <scott@poverty.bloomington.in.us>
750
751         * gtk/Makefile.am (gtkinclude_HEADERS): added gtkhandlebox.c
752
753         * gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
754         compiler warning caused by not casting an argument in a debugging
755         message. :)
756
757 Fri Dec 26 02:59:39 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
758
759         * gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new
760         GDK_NO_EXPOSE and GDK_VISIBILITY_NOTIFY events.  They are needed
761         for Alan Cox's TV widget and for GtkXmHTML.  Only missing with
762         respect to their Xlib counterparts are the major_code and
763         minor_code fields from the GdkEventNoExpose structure.  Does
764         anyone need them?
765
766 Tue Dec 23 03:03:17 1997  Tim Janik  <timj@psynet.net>
767
768         * gtk/gtkscrolledwindow.c (SCROLLBAR_SPACING): this macro computes
769         the spacing from klass->scrollbar_spacing now. adapted all functions
770         that used this macro (based on a patch from Patrice Fortier).
771         * gtk/gtkscrolledwindow.h (struct _GtkScrolledWindowClass): added
772         scrollbar_spacing to substitute a define (patch from Patrice Fortier).
773
774         * gtk/gtkrc.h (gtk_rc_parse_string): new function.
775         * gtk/gtkrc.c: many functions adapted to use GScanner for scanning.
776         (gtk_rc_parse): use gtk_rc_parse_any for parsing.
777         (gtk_rc_parse_string): new function to support parsing from
778         strings, just calls gtk_rc_parse_any.
779         (gtk_rc_parse_any): new function using GScanner as lexer.
780
781 Thu Dec 18 23:46:11 CST 1997 Shawn T. Amundson <amundson@gimp.org>
782
783         * GDK support for 1 bpp depth screens.
784
785 Thu Dec 18 23:46:11 CST 1997 Shawn T. Amundson <amundson@gimp.org>
786
787         * Changes from Bolliet Jerome <bolliet@in2p3.fr> to gtktree.
788           Corrects a bug in gtk_tree_remove_items and gtk_tree_item_destroy.
789           Adds the possibility to connect all items by lines. This is the 
790           default now.  You can overide this with the function 
791           gtk_tree_set_view_line which take a tree and a boolean.
792
793 Thu Dec 18 23:26:49 CST 1997 Shawn T. Amundson <amundson@gimp.org>
794
795         * removed configure, Makefile.in, and aclocal.m4 files
796
797 Wed Dec 17 23:36:57 1997  Scott Goehring  <scott@poverty.bloomington.in.us>
798
799         * gdk/gdkcc.c (gdk_color_context_free): Caught a stray
800         gdk_colormap_destroy that Owen missed (and Shawn found).
801
802 Wed Dec 17 20:59:52 1997  Owen Taylor  <owt1@cornell.edu>
803         * gdk/gdkinput.c gdk/gdkinput.h gdk/gdkinputcommon.h
804           gdk/gdkinputxfree.h gdk/gdkinputgxi.h gdk/gdkinputnone.h.
805           gtk/gtkinputdialog.h gtk/testinput.c
806         Added support for device keys mapping to key events.
807         Fixed various bugs.
808
809 Wed Dec 17 20:53:00 1997  Owen Taylor  <owt1@cornell.edu>
810         * gdk/gdk.c gdk/gdk.h: Changed gdk_get_event to remove
811         predicate filtering, and to allocate the events.
812         Added gdk_event_get_graphics_expose for scroll handling.
813         * gtk/gtkmain.c gtk/gtktext.c:
814         Use above changes. Interface change for gtk_get_current_event.
815         * testgtk.c
816         Added another test to test new scrolling mechanism.s
817         * gdk/gdk.c gdk/gdk.h gdk/gdkwindow.c gdk/gdkprivate.h: 
818         Added beginnings of event filtering. Removed obsolte
819         OtherEvent mechanism.
820         * gdk/gdk.c: Combined FocusIn/FocusOut events. Now ignore
821         focus events which aren't for window itself. (Only pay
822         attention to NotifyAncestor/Inferior/Nonlinear)
823         * gtk/gtkwindow.c gtk/gtkwindow.h: Virtualize set_focus 
824         function so it can be overridden.
825         * gtk/gtkwidget.c: Reparenting should now work for
826         containers. (Guillaume Laurent <glaurent@worldnet.fr>)
827         * gdk/gdkgc.c: By default, GraphicsExpose events are now
828         _not_ generated.
829         * gtk/testselection.c: Suppress a warning, fix a bug?
830
831 Wed Dec 17 20:47:42 1997  Owen Taylor  <owt1@cornell.edu>
832         * configure.in, glib/configure.in: 
833         Remember if user set CFLAGS, so we can set it for --enable-debug
834           only if they didn't. 
835         Added missing quotes. )Raphael.Quinet@eed.ericsson.se)
836         Only use -DX_LOCALE if setlocale doesn't work.
837         * gdk/gdki18n.h: Simplified system for trying to get iswalnum() -
838         include <wctype.h> if present, otherwise <wchar.h> if present.
839         
840 Wed Dec 17 21:09:12 1997  Owen Taylor  <owt1@cornell.edu>
841   1997-10-13  Marius Vollmer  <mvo@zagadka.ping.de>
842
843     Bug fixes:
844         
845         * gtksignal.c (gtk_params_get): Initialize the GtkArg even when
846         the return type is GTK_TYPE_NONE.
847
848     Revamped reference counting, see the file REFCOUNTING.
849
850         * Makefile.am (EXTRA_DIST): Added REFCOUNTING.
851         * REFCOUNTING: New file.
852
853         * gdk/gdk.c (received_destroy_notify, window_to_destroy): Removed.
854         (gdk_event_get): Code that deals with the above removed.
855         (gdk_event_translate): Abort when the GdkWindow for the XEvent
856         cannot be found.  For DestroyNotify: Do not use
857         receive_destroy_notify and window_to_destroy but call
858         gdk_window_destroy_notify.
859
860         * gdk/gdk.h: (gdk_pixmap_destroy, gdk_colormap_destroy,
861         gdk_fontset_free): Removed.
862         (gdk_pixmap_ref, gdk_pixmap_unref, gdk_bitmap_ref,
863         gdk_bitmap_unref): New prototypes.
864         (gdk_font_free, gdk_font_unref): Renamed gdk_font_free to
865         gdk_font_unref.
866
867         * gdk/gdkcolor.c (gdk_colormap_real_destroy): Made static.
868         (gdk_colormap_destroy): Removed.
869
870         * gdk/gdkfont.c (gdk_font_free): Renamed to gdk_font_unref.
871         Handle fontsets as well.
872         (gdk_fontset_free): Removed.
873
874         * gdk/gdkpixmap.c (gdk_pixmap_destroy): Removed.
875         (gdk_pixmap_ref, gdk_pixmap_unref, gdk_bitmap_ref,
876         gdk_bitmap_ref): New functions.
877
878         * gdk/gdkwindow.c: (gdk_window_new, gdk_window_foreign_new): Call
879         gdk_window_ref for the pointer in the xid table.
880         (gdk_window_internal_destroy): Renamed from gdk_window_destroy.
881         New parameter XDESTROY that takes the role of `destroyed==2';
882         removed special casing of `destroyed==2'.  Free dnd_data only when
883         really destroying.  Do not touch the ref_count.  Calling
884         gdk_window_destroy on a Pixmap is now a real error, not just a
885         warning.
886         (gdk_window_destroy): Just call gdk_window_internal_destroy and
887         gdk_window_unref, as advertised in REFCOUNTING.
888         (gdk_window_destroy_notify): New function.
889         (gdk_window_unref): Print a warning when the ref_count is zero and
890         the window has not been destroyed.  Should never happen.  Do not
891         destroy the window, just free the memory.
892         
893         * gdk/gdkprivate.h (gdk_window_real_destroy): Removed.
894
895         * gtk/gtkaccelerator.c (gtk_accelerator_table_destroy): Removed.
896         (gtk_accelerator_table_unref): Do the job of
897         gtk_accelerator_table_destroy directly.
898         (gtk_accelerator_table_init): Init ref_count with 1.
899
900         * gtk/gtkaccelerator.h (gtk_accelerator_table_destroy): Removed.
901
902         * gtk/gtkcurve.c, gtk/gtkgamma.c: Replaced gdk_pixmap_destroy with
903         gdk_pixmap_unref.
904
905         * gtk/gtkhscrollbar.c (gtk_hscrollbar_realize): Reflect the fact
906         that the widget->window is used as the range->trough in the
907         ref_count.
908         * gtk/gtkvscrollbar.c (gtk_vscrollbar_realize): Likewise.
909
910         * gtk/gtkmain.c (gtk_main_iteration): Protect event_widget with
911         ref/unref while handling the GDK_DELETE and GDK_DESTROY events.
912
913         * gtk/gtkmenu.c (gtk_menu_set_accelerator_table): Don't do
914         anything when the new accel_table is the old one.
915
916         * gtk/gtkmenufactory.c (gtk_menu_factory_destroy): Unref
917         factory->table if there is one.
918         (gtk_menu_factory_create, gtk_menu_factory_create_widget): Don't
919         ref newly created accel_table, it is now created with a ref_count
920         of 1.
921
922         * gtk/gtkmenuitem.c (gtk_menu_item_set_submenu):  Don't do
923         anything when the new submenu is the old one.
924
925         * gtk/gtkpixmap.c (gtk_pixmap_destroy): New static function.
926         (parent_class): New global variable.
927         (gtk_pixmap_init): Set object_class->destroy.
928         (gtk_pixmap_set): Don't do anything about the pixmap when the new
929         pixmap is the old one.  Likewise for the mask.
930
931         * gtk/gtkprogressbar.c, gtk/gtkruler.c: Replaced
932         gdk_pixmap_destroy with gdk_pixmap_unref.
933
934         * gtk/gtkrange.c (gtk_range_set_adjustment):  Don't do
935         anything when the new adjustment is the old one.
936
937         * gtk/gtkrc.c: Replaced gdk_fontset_free/gdk_font_free with
938         gdk_font_unref.
939
940         * gtk/gtkstyle.c (gtk_style_new): Initialize ref_count with 1.
941         (gtk_styles_init): Replace gtk_style_destroy with gtk_style_unref
942         for the cache.
943         (gtk_style_new_from_key): Ref style before returning it when it
944         has not been newly created.
945         (gtk_style_destroy): Don't look at the ref_count, destroy always.
946         Free style-font with gdk_font_unref, regardless of font->type.
947
948         * gtk/gtktooltips.c (gtk_tooltips_real_destroy): Renamed from
949         gtk_tooltips_destroy and made static.  Don't look at ref_count,
950         destroy always.
951         (gtk_tooltips_new): Initialize ref_count with 1.
952         (gtk_tooltips_unref): Don't look at pending_destroy, destroy
953         always when ref_count is 0.
954         (gtk_tooltios_widget_remove): Use gtk_tooltips_destroy_data
955         instead of hand-coded destruction.
956
957         * gtk/gtktooltips.h (GtkTooltips::pending_destroy): Removed.
958         (gtk_tooltips_destroy): Removed.
959
960         * gtk/gtkviewport.c (gtk_viewport_set_hadjustment,
961         gtk_viewport_set_vadjustment): Don't do anything when the new
962         adjustment is the old one.
963
964         * gtk/gtkwidget.c (gtk_widget_reparent): Protect the reparented
965         widget with ref/unref while moving it.
966         (gtk_widget_set_default_colormap): Replace gdk_colormap_destroy
967         with the proper ref/unref spell.
968         (gtk_widget_set_default_style): Don't do anything when the new
969         style is the old one.
970
971         * gtk/testinput.c (configure_event): Replaced gdk_pixmap_destroy
972         with gdk_pixmap_unref.
973         
974     More Interpreter support:
975
976         * gdk/gdktypes.h (GdkDestroyNotify): New type.
977         
978         * gdk/gdk.c (struct _GdkInput::destroy): New field.
979         (gdk_input_add_interp): New version of gdk_input_add that follows
980         the interp conventions for callbacks.
981         (gdk_input_add): Implement in terms of gdk_input_add_interp.
982         (gdk_input_remove): Call destroy notify when appropriate.
983
984         * gdk/gdk.h (gdk_input_add_interp): New prototype.
985
986         * gtk.defs: Updated from guile-gtk.
987         * gtk/gtktypebuiltins.c, gtk/gtktypebuiltins.h: Regenerated.
988         
989         * gtk/gtkmain.c (GtkInputFunction, struct _GtkInputFunction): New
990         types.
991         (gtk_invoke_input_function, gtk_destroy_input_function,
992         gtk_input_add_interp, gtk_input_remove): New functions.
993
994 Wed Dec 17 12:00:48 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
995
996         * gdk/gdkcc.c: New GdkColorContext functionality!  This should
997         eventually solve all of our color management problems.  Gdk still
998         needs to be modified to support visuals with less than 8 bpp.  Gtk
999         needs to be modified just a bit.
1000
1001 Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
1002
1003         * a small patch by Lauri Alanko that allows Gimp to pass
1004         on --display to it's plugins.
1005
1006 Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
1007         * a minor patch to make the file selection dialog not always
1008         select the first file in a directory
1009
1010 Sat Dec 13 Jay Painter <jpaint@serv.net>
1011         * gtk/gtkvscrollbar.c: added focus flag so vertical scrollbars
1012         can get keyboard focus
1013
1014 Fri Dec 12 Owen Taylor <owt1@cornell.edu>
1015         * Removed warning when XGetWindowProperty fails - this can
1016           be the desired behavior.
1017         
1018 Fri Dec 12 Owen Taylor <owt1@cornell.edu>
1019         * gdk/makecursor* gdk/makekeysym* gdk/Makefile.am
1020           Removed old sed/awk code and replaced it with a 
1021           spiffier awk-only code from Art_Haas@dril-quip.com
1022         
1023 Fri Dec 12 Owen Taylor <owt1@cornell.edu>
1024         * gdk/gdkgc.c: If gdk_gc_set_clip_rectangle is called with
1025           rectangle = NULL, remove clip mask, instead of segfaulting.
1026         * gtk/gtknotebook.c: Set clip mask before redrawing, so that
1027           we don't overwrite things outside of exposed areas when
1028           drawing them shadows. (Based on a patch from 
1029           Lars Hamann <hamann@braunschweig.netsurf.de>, and Stefan Jeske)
1030         
1031 Thu Dec 11 10:57:29 CST 1997 Shawn T. Amundson <amundson@gimp.org>
1032         * Change to ltconfig to remove -z text for Solaris x86  
1033         * Change to configure stuff so compile works on Solaris x86
1034         * Added gdk/gdkkeysyms.h and gdk/gdkcursors.h back into the tree
1035
1036 Thu Dec 11 09:44:03 1997  Tim Janik  <timj@psynet.net>
1037
1038         * gdk.c: added gdk_progclass==NULL patch by Oliver Graf <ograf@fga.de>.
1039
1040 Wed Dec 10 23:40:03 1997  Tim Janik  <timj@psynet.net>
1041
1042         * fixed some compiler errors, because g_return_if_fail() wasn't used
1043         with a trailing semicolon in some places. fixed few other warnings also.
1044
1045 Tue Dec  9 Owen Taylor <owt1@cornell.edu>
1046         * configure changes: (configure.in, glib/configure.in)
1047         Change test ! `...` to test -z `...`
1048           (Harald Meland <Harald.Meland@usit.uio.no>)
1049         Change $gtk_cv_x_locale to $need_x_locale so it isn't cached.
1050         With --enable_debug, don't touch CFLAGS if they're already set.
1051
1052 Tue Dec  9 Owen Taylor <owt1@cornell.edu>
1053         * gdk/gdkpixmap.c: don't use gdk_black/white for pixmap mask.
1054          From Patrice Fortier <Patrice.Fortier@aquarel.fr>
1055
1056 Mon Dec  8 Owen Taylor <owt1@cornell.edu>
1057         * gtk/testselection.c (selection_received): foreward -> forward.
1058         * gtk/gtktext.c (gtk_text_forward_delete): Renamed; changed all
1059         callers.
1060         * gtk/gtktext.h: foreward -> forward.
1061           From Tom Tromey  <tromey@cygnus.com>
1062
1063 Mon Dec  8 Owen Taylor <owt1@cornell.edu>
1064         * gtk/gtkimage.c: Fixes to expose() handler
1065           From Rob Browning <rlb@cs.utexas.edu>
1066         
1067 Mon Dec  8 21:09:43 PST 1997 Geoffrey T. Dairiki <dairiki@alumni.caltech.edu>
1068         * gtk/gtklabel.h:
1069         * gtk/gtklabel.c: Add support for GTK_JUSTIFY_FILL.  This support
1070         is used by the new gtktooltips.c.
1071         * gtk/testgtk.c (create_labels, create_main_window): A new test
1072         window for labels (to test the new GTK_JUSTIFY_FILL'ed labels.)
1073
1074 Mon Dec  8 21:09:43 PST 1997 Geoffrey T. Dairiki <dairiki@alumni.caltech.edu>
1075         * gtk/gtklabel.h:
1076         * gtk/gtklabel.c: Add support for GTK_JUSTIFY_FILL.  This support
1077         is used by the new gtktooltips.c.
1078         * gtk/testgtk.c (create_labels, create_main_window): A new test
1079         window for labels (to test the new GTK_JUSTIFY_FILL'ed labels.)
1080
1081 Sun Dec  7 Owen Taylor <owt1@cornell.edu>
1082         * gdk/gdk.c, gdk/gdk.h, gdk/gdktypes.h: 
1083           Remove dependencies of interfaces on USE_XIM
1084         * gdki18n.h: Attempt to make wchar handling more portable
1085         * gdkwindow.c: Include config.h. (For gdkinput.h)
1086         
1087 Sun Dec  7 Owen Taylor <owt1@cornell.edu>
1088         * gtk/gtkentry.c, gtk/gtkentry.h: 
1089            Fixed word motion
1090            Added cut/copy/paste via X clipboard
1091            Generalized extending selection using <Shift> to work with all types
1092              of motion, not just arrow keys.
1093            Don't change length of GtkEntry structure because of USE_XIM
1094
1095 Sun Dec  7 03:19:02 1997  Tim Janik  <timj@psynet.net>
1096
1097         * gtkfilesel.c: applied jamesa-971010-0 for stability.
1098         * gtkrc.c: applied jamesa-971010-2 for a small optimization.
1099         * gtkcheckmenuitem.h:
1100         * gtkcheckmenuitem.c:
1101         * gtkradiomenuitem.c:
1102         * testgtk.c: applied johannes-971113-0 which adds
1103         gtk_check_menu_item_set_show_toggle() to change the way check
1104         menu items and radio menu items look.
1105
1106 Fri Dec 5 1997 Elliot Lee <sopwith@cuc.edu>
1107         * gdk/gdk.c: clean up warnings, remove some un-ifdef'd debugging
1108         printing, DnD is Bug Free now, etc.
1109         * gtk/gtkcolorsel.c: fix DnD support.
1110         * gtk/gtkmain.c: DnD events go to the original window even if
1111         there is a grab - if I drop on a window the data had better go
1112         to it and not some other window :)
1113         * gtk/testgtk.c: Replace (GtkSignalFunc) with GTK_SIGNAL_FUNC(),
1114         and do a nicer DnD demo.
1115         * My very first ChangeLog entry, seeing as people have
1116         a fixation on them (what's wrong with "rcs2log" output?)
1117
1118 Thu Dec 4 1997 Owen Taylor <owt1@cornell.edu>
1119         * gdk/gdkgc.c: Ignore gdk_gc_set_font if font is a fontset.
1120
1121 Wed Dec 3 1997 Jay Painter <jpaint@serv.net>
1122         * gtk/gtkstyle.c: fixed a problem introduced recently in 
1123         gtk_style_detach witch crashed script_fu.
1124
1125 Wed Dec 3 1997 Owen Taylor <owt1@cornell.edu>
1126         * gdk/Makefile.am: add a dependence for $(DEP_FILES) on
1127         $(BUILT_SOURCES) to work around automake problem
1128         
1129 Wed Dec 3 1997 Owen Taylor <owt1@cornell.edu>
1130         * configure.in glib/configure.in glib/glibconfig.h.in gdk/gdk.h
1131         gdk/gdk18n.h gdk.c gtk/gtkentry.c: Try to handle variations in 
1132         <wchar.h> headers gracefully. Do not automatically include 
1133         gdk/gdki18n.h.
1134         
1135 Wed Dec 3 1997 Jay Painter <jpaint@serv.net>
1136         * gtk/gtkoptionmenu.c: fixed a old bug where if you set a new 
1137         menu for a optionmenu the widget would not get positioned correctly
1138         inside of the optionmenu.
1139
1140 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
1141         * gdk/gdkpixmap.c: Include unistd.h to get SEEK_END
1142         for SunOS (john_johns@credence.com)
1143         
1144 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
1145         * gtk+/fnmatch.c: Define _GNU_SOURCE before including
1146         fnmatch.h to make sure all constants are defined.
1147         (Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp>)
1148         
1149 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
1150         * configure.in, glib/configure.in: Make the logic to add -Wall,
1151         -ansi, -pedantic for GCC operational.
1152
1153 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
1154         * glib/glib.h, glib/configure.in. Disabled gldouble, since
1155         it wasn't used anywhere and caused portability problems
1156
1157 Tue Dec 2 1997 Owen Taylor <owt1@cornell.edu>
1158         * glib/glib.h, glib/configure.in, glib/glibconfig.h.in: Added a
1159         g_memmove function which is simply memmove if it exists, otherwise
1160         bcopy.(Should really check if bcopy has the correct semantics, and
1161         create our own memmove is necessary) 
1162         * glib/gstring.c, glib/garray.c, gtk/gtktext.c:
1163         memmove => g_memmove
1164         
1165 Sun Nov 30 1997 Jay Painter <jpaint@serv.net>
1166         * gtk/gtknotebook.c: fixed a old bug where all the notebook pages
1167         which were not displayed when the notebook widget was realized were
1168         never size allocated when they were realized.
1169
1170 Thr Nov 28 1997 Jay Painter <jpaint@serv.net>
1171         * gtk/gtklist.h: removed GtkSelectionMode
1172         * gtk/gtkenums.h: added GtkSelectionMode
1173
1174 Fri Nov 28 01:26:55 1997  Tim Janik  <timj@psynet.net>
1175
1176         * gtk/gtkwindow.c (gtk_window_show): propagate a size_request before
1177         the initial window creations (prevents windows with size of -1x-1).
1178
1179         * gtk/gtkmain.c (gtk_main_level): new function to determine
1180         the current recursion level of gtkmain().
1181         (gtk_true) (gtk_false): new functions implemented as a convenience
1182         for signals that just need a handler with the appropriate return value.
1183
1184 Tue Nov 25 1997 Owen Taylor <owt1@cornell.edu>
1185         gdk.c: Fix so that "other_events" are actually generated
1186
1187 Tue Nov 25 1997 Owen Taylor <owt1@cornell.edu>
1188         Patches to support internationalized input by:
1189           Takashi Matsuda <matsu@arch.comp.kyutech.ac.jp>
1190           TANAKA Shinya <shinya@race.u-tokyo.ac.jp>
1191
1192         From the README:
1193         
1194         Feature:
1195           Followings are the main feature of this patch.
1196             * support XIM protocol.
1197             * GtkEntry widget support Over-The-Spot and Root style input.
1198             * input style is configurable by command-line option.
1199
1200         Furthermore, this patch includes several changes which are useful 
1201           without XIM too.
1202         
1203             * copy and paste with other clients by compound text.
1204             * Window title can be specified by multi byte string.
1205
1206         configure.in: 
1207           Added --with-locale and --enable-xim options
1208         gdk/Makefile.am:
1209         gdk/gdki18n.h [new file]
1210           Multibyte string manipulation functions
1211         gdk/gdk.c
1212         gdk/gdk.h
1213         gdk/gdkprivate.h
1214           Input method and context handling functions
1215           Command line options to control input methods
1216           Changes to KeyPress handling to support input methods
1217           Fixes to not return events for destroyed windows
1218         gdk/gdkselection.c
1219           Text property handling functions
1220         gdk/gdkwindow.c
1221           Set window title by multibyte string
1222         gtk/gtkentry.c
1223           Support for using an input context for XIM input.
1224           Cut and paste using compound text.
1225           Improvements to pasting (no longer replace the active selection
1226             with itself OWT)
1227         gtk/gtkselection.c
1228           fix to send selection clear events to the right owner
1229         gtk/testgtkrc
1230           Added a default fontset that will allow international characters
1231         INSTALL
1232           Some rudimentary documentation about the new configuration options.
1233         
1234 Mon Nov 24 1997 Owen Taylor <owt1@cornell.edu>
1235         gtk/gtkaspectframe.c:
1236         Some minor improvements to rounding in aspectframes.
1237         Make sure that child allocation is always >= 0
1238         Always trigger size allocation with gtk_widget_queue_resize
1239         to prevent calling size_allocate before allocation done.
1240
1241 Mon Nov 24 1997 Owen Taylor <owt1@cornell.edu>
1242         gtk/gtkframe.c:
1243         Changed tests for drawability to GTK_WIDGET_DRAWABLE
1244         Always trigger size allocation with gtk_widget_queue_resize
1245         to prevent calling size_allocate before allocation done.
1246
1247 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
1248         gtk-dairiki-971117-2.patch
1249         gtk/gtkaspectframe.c (gtk_aspect_frame_size_allocate): When
1250         computing new dimensions of the subwidget, round to nearest
1251         integer rather than truncating.
1252
1253 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
1254         gtk-dairiki-971117-1.patch
1255         * gtk/gtkvruler.c (gtk_vruler_draw_ticks):
1256         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Ensure that subticks
1257         always are drawn when they should be (sometimes they were getting
1258         drawn with zero length --- invisible).  Also clear rectangle
1259         behind text labels to ensure they don't touch or overlap ticks. 
1260
1261 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
1262         * gtk/gtkaspectframe.c (gtk_aspect_frame_set): 
1263         gtk-dairiki-971117-0.patch
1264         Clear window when aspect ratio or alignment is changed.
1265
1266 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
1267         * gtk/gtkobject.h: fixed GTK_OBJECT_NSIGNALS macro
1268
1269 Mon Nov 24 1997 Jay Painter <jpaint@serv.net>
1270         * gtk/gtklabel.h: modified gtklabel to clip its drawing to
1271         its given area, now it will always draw in the area it's 
1272         been given and clip accordingly.  Note: this may cause
1273         the a label to disappear on widgets which don't give their
1274         child labels proper area!
1275
1276 Mon, 17 Nov 1997 Michael K. Johnson <johnsonm@redhat.com>
1277         * gtkwidget.c: gtk_set_style_recurse was not allowing updated
1278         widget names to cause new styles to be applied.
1279         * gtkentry.c gtkentry.h: The entry widget now has invisible
1280         attribute.  The cursor does not move to show you typing; this
1281         is an intentional design decision but I'm not so attached to it
1282         that I'll reverse any patches that change it...  :-)
1283
1284         This patch is a modified version of a patch to which I have
1285         lost the attribution.  I modified it by packing the "visible"
1286         flag into the structure more tightly (without damaging backwards
1287         compatibility on sane systems) and by allowing entry timers
1288         to run.
1289
1290 Mon Nov 17 1997 Jay Painter <jpaint@serv.net>
1291         * gtkviewport.c: Raph's Mon, 10 Nov 1997 patch to gtk-list 
1292         to fix some viewport bugs
1293
1294 Mon Nov 17 1997 Jay Painter <jpaint@serv.net>
1295         * gtk/gtkwidget.c: gtk-ajaborsk-971016-2
1296         A little patch again to prevent user to use gtk_widget_set_events()
1297         when a widget is already realized.
1298         In this case, the gtk_widget_set_events() doesn't work.
1299
1300 Mon Nov 17 1997 Jay Painter <jpaint@serv.net>
1301         * gtk/gtkwindow.c: gtk-ajaborsk-971016-1
1302         This small patch correct position for GTK_WIN_POS_CENTER and
1303         GTK_WIN_POS_MOUSE GtkWindow positions.
1304
1305 Sat Nov 15 1997 Jay Painter <jpaint@serv.net>
1306         * gdk/gdkgc.c: added function gdk_gc_set_clip_rectangle
1307         * gdk/gdk.h: header for above
1308
1309 Sat Nov 15 1997 Jay Painter <jpaint@serv.net>
1310         * gdk/gdkgc.c: added function gdk_gc_set_clip_rectangle
1311         * gdk/gdk.h: header for above
1312
1313 Wed Nov 12 1997 Jay Painter <jpaint@serv.net>
1314         * gdk/gdkpixmap.c: Patrice Fortier's patch for transparent pixmaps.
1315         * gdk/gdk.h:
1316           gdk/gdkdraw.c: Patrice Fortier's patch to add pixel draw function.
1317
1318 Sun Nov  9 1997 Jay Painter <jpaint@serv.net>
1319         * Fixed problems with makefiles relating to the bug
1320         which required glib to be installed.
1321         * Fixed makefiles to incluce the xpm's in gtk+/gtk needed
1322         for testgtk.
1323         * Updated gtk+ and gtk+/glib to libtool-1.0f
1324
1325 Fri Nov  7 1997 Jay Painter <jpaint@serv.net>
1326         * gtk/gtktext.c: return char_widths[ch & 0xff]; in line 2152
1327
1328 Thr Nov  5 1997 Jay Painter <jpaint@serv.net>
1329         * gtk/testgtk.c: added drag and drop test, removed the test hack
1330         from the button test
1331
1332 Tue Nov  4 08:28:57 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
1333
1334         * gtk/gtkmain.c (gtk_handle_idle): Patch from David Mosberger to
1335         avoid crashes when handling idle function (this manifested itself
1336         in the Umax and Microtek backends in SANE.
1337
1338 Sun Nov  2 07:34:56 1997  Tim Janik  <timj@psynet.net>
1339
1340         * gtk/gtkfilesel.c: Small fixes about a segmentation viaolation
1341         cause by a double click in the directoy list (introduced by my
1342         previous changes).
1343         
1344         * gtk/gtklist.c: Small fixes to gtk_list_add() and gtk_list_remove().
1345         
1346         * gtk/testgtk.c (list_add): Applied Stefan Wille's patch to make this
1347         function do something ;).
1348
1349 Fri Oct 31 Jay Painter <jpaint@serv.net>
1350         *gdk/gdk.c: reformatted DND code for GTK coding standards
1351         *gdk/gdkwindow.c: changed memory allocation for DND to q_mem stuff
1352
1353 Thu Oct 30 Jay Painter <jpaint@serv.net>
1354         * gdk/gdkwindow.c: 
1355         * gdk/gdk/gdk.h:
1356         * gtk/gtkwidget.h:
1357         * gtk/gtkwidget.c: Applied Stephan Willie's shaped window patch
1358
1359         * gdk/gdkwindow: 
1360         * gdk/gdk.h:
1361         * gtk/gtkwidget.h:
1362         * gtk/gtkwidget.c: reformatted the DND code to conform to GTK
1363                 coding standards
1364
1365         * gtk/testgtk: massive fixes, SW's shaped window example
1366
1367 Thu Oct 30 07:33:27 1997  Tim Janik  <timj@psynet.net>
1368
1369         * gtk/gtklistitem.c (gtk_real_list_item_toggle): applied Johannes
1370         Keukelaar's <johannes@nada.kth.se> patch for keyboard support in
1371         GtkList widgets.
1372
1373         * gtk/gtkfilesel.c: adapted dir and file list selection
1374         behaviour to deal with keyboard selections. this is a little
1375         bit tricky: in the dir list it just changes the entrys value on a one
1376         button press. but on a keyboard selection via gtk_widget_activate() it
1377         does a new population (likewise on a double click) as this seems more
1378         obvious.
1379
1380 1997-10-25  Marius Vollmer  <mvo@zagadka.ping.de>
1381
1382         * gdk/gdkcolor.c (gdk_colormap_get_system): Initialize
1383         private->ref_count.
1384
1385 Wed Oct 22 09:47:43 1997  Tim Janik  <timj@psynet.net>
1386
1387         * gtk/gtkwindow.c (gtk_window_key_release_event): Fixed a stupid
1388         bug that caused the key_release_event to be propagated twice.
1389
1390 Sun Oct 12 11:01:43 1997  Tim Janik  <timj@psynet.net>
1391
1392         * acconfig.h:
1393         * configure.in:
1394         * gdk/gdkimage.c: Added configure check for IPC_RMID_DEFERRED_RELEASE,
1395         because shmat() fails after a shmctl(..., IPC_RMID,...) for OSF1 V3.2,
1396         SunOS 4.1.1, 5.5, 5.5.1, 5.6, IRIX 5.2 and 6.2.
1397
1398 Mon Oct  6 11:59:07 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
1399
1400         * gdk/gdk.c (gdk_event_translate): In line 1693, fixed typo that
1401         would cause motion notify events not to be delivered.
1402
1403 Sun Oct  5 18:15:06 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
1404
1405         * gtk/gtkrc.c (gtk_rc_parse_bg_pixmap): Changed strdup() for
1406         g_strdup().
1407
1408 Wed Sep 24 17:16:34 1997  Peter Mattis  <pmattis@bjork.inktomi.com>
1409
1410         * configure.in: Fixed a stupid error in the test for libXext that
1411         would cause it to fail if X_EXTRA_LIBS was not empty.
1412
1413         * gtk/gtkmain.h (gtk-timj-970919.patch):
1414         * gtk/gtkmain.c (gtk-timj-970919.patch): new function
1415         `gtk_idle_remove_by_data' to remove all idle callbacks that take a
1416         specific piece of data as argument.  (gtk_get_current_event):
1417         remove idles through gtk_idle_remove_by_data.
1418         
1419         * gtk/gtkwidget.c (gtk-timj-970919.patch):
1420         (gtk_widget_destroy): remove pending idles for
1421         widgets that have GTK_REDRAW_PENDING or GTK_RESIZE_PENDING and
1422         GTK_ANCHORED set (only anchored widgets can have a resize queue
1423         handler pending). widgets that have GTK_RESIZE_NEEDED will be removed
1424         from their anchored toplevels `resize_widgets' list.
1425         
1426         (gtk_widget_queue_draw): let the widget remember the queue handler
1427         tag (through `redraw_handler_key') for later call to `gtk_idle_remove'.
1428         
1429         (gtk_widget_queue_resize): let the widget remember the queue handler
1430         tag (through `resize_handler_key') for later call to `gtk_idle_remove'.
1431         corrected referencing the toplevel widget for which the handler is
1432         pending. if a widget is added to the `resize_widgets' list of a
1433         toplevel widget, GTK_RESIZE_NEEDED is set and it's referenced.
1434         
1435         (gtk_real_widget_queue_resize): on the deletion of the `resize_widgets'
1436         list, unset GTK_RESIZE_NEEDED and unreference the removed widgets.
1437         
1438         * gtk/gtkwindow.c (gtk-timj-970919.patch):
1439         (gtk_real_window_move_resize): move `resize_containers = NULL'
1440         initialization out of if-statement.
1441         while stepping through the `resize_widgets' list, unreference the
1442         widgets and clear GTK_RESIZE_NEEDED. if a widget realy needs are
1443         resize, they are flagged through GTK_RESIZE_NEEDED now (instead of
1444         GTK_RESIZE_PENDING, as this is indicative for a pending handler).
1445         added checks to provide segfaulting if a widgets parent pointer
1446         is NULL (e.g. on toplevel widgets that have GTK_RESIZE_NEEDED set).
1447
1448 Tue Sep 23 13:23:27 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
1449
1450         * gdk/gdkimage.c: Applied Tim Janik's patch to mark shm segments
1451         as IPC_RMID so that they are automatically removed always.
1452
1453         * gdk/gdkfont.c: Removed casts from lvalues.
1454
1455         * gtk/gtkmain.c: Removed GTK_RETLOC_*() (which do a cast) from lvalues.
1456
1457         * gtk/gtkaccelerator.c (gtk_accelerator_table_remove): Added
1458         "const" to the accelerator_key param to be consistent with the
1459         declaration in gtkaccelerator.h.  The const is not useful in this
1460         case, anyway.
1461
1462 Tue Sep 16 13:11:06 1997  Peter Mattis  <pmattis@bjork.inktomi.com>
1463
1464         * gtkpreview.c: Andrew Logan Kieschnick's change to eliminate
1465         round-off error when gamma is set to 1.0.
1466
1467         * gtkrange.c:
1468         * gtkviewport.c: Jay Painter's changes to modify the way in which
1469         viewports resize.
1470
1471         * gdkinput.c:
1472         * gdkinputgxi.h:
1473         * gdkinputxfree.h:
1474         * gtk/Makefile.am:
1475         * gtk.h:
1476         * gtkeventbox.c:
1477         * gtkeventbox.h: Owen Taylor's event box widget and fixes for X
1478         input support (that I had broken).
1479
1480         * gdk.h:
1481         * gdkwindow.c:
1482         * gtksignal.h:
1483         * gtksignal.c: Elliot Lee's changes to support Objective C. (id is
1484         apparently a reserved word in Objective C).
1485
1486 Sun Sep 14 22:33:15 1997  Peter Mattis  <pmattis@localhost>
1487
1488         * gtkwidget.c (gtk_widget_queue_resize): If the toplevel container
1489         is invisible we simply call "gtk_container_need_resize" on
1490         it. This fixes a bug with option menus not redrawing correctly.
1491
1492         * gtkmenuitem.c (gtk_menu_item_enter): (gtk_menu_item_leave):
1493         These functions now simply pass the event on to their parent. This
1494         is necessary for menus to work properly due to the change in how
1495         grabs are dealts with.
1496
1497         * gtkwindow.c (gtk_real_window_move_resize): Fixed a bug that
1498         caused the GTK_RESIZE_PENDING flag to not be unset in some cases.
1499
1500 Fri Sep  5 20:49:37 1997  Marius Vollmer  <mvo@zagadka.ping.de>
1501
1502         Bug fixes:
1503
1504         * Makefile.am: Added PATCHES to EXTRA_DIST.
1505         * gtk/gtkpixmap.c (gtk_pixmap_new): Move the "pixmap != NULL" test
1506         after the allocation of the pixmap.
1507
1508         To shut up the compiler:
1509
1510         * gtk/gtkfilesel.c (get_pwdb): Initialize home_dir.
1511         * gtk/gtkmain.c (gtk_init): Replace comments around calls to
1512         g_set_*_handler with "if (0)".
1513         * gtk/gtkrc.c (gtk_rc_get_token): Initialize hex_number and
1514         float_number.
1515         * gtk/gtkwindow.c (gtk_window_key_press_event): Initialize
1516         direction.
1517
1518         Changes to the type system in gtk/:
1519
1520         * Makefile.am: Added gtktypebuiltins.h to gtkinclude_HEADERS.
1521         Added gtk.defs, runelisp, gentypeinfo.el and gtktypebuiltins.c to
1522         EXTRA_DIST.  Added rules to generate gtktypebuiltins.* from
1523         gtk.defs.
1524
1525         * runelisp, gentypeinfo.el, gtk.defs: New files.
1526
1527         * gtkaccelerator.c, gtkaccelerator.h (gtk_accelerator_table_ref):
1528         Return the table so that this function can be used as the `copy'
1529         function for GTK_TYPE_BOXED values.
1530         * gtkstyle.c, gtkstyle.h (gtk_style_ref): Likewise.
1531
1532         * gtkenums.h: Removed GtkArgType enum.
1533
1534         * gtkmain.c (gtk_init): Call gtk_type_init to initialize the type
1535         system.
1536
1537         * gtkobject.c (gtk_object_init_type): New function to take over
1538         for gtk_object_get_type. (gtk_object_get_type): Just return the
1539         constant GTK_TYPE_OBJECT. (gtk_object_collect_args): Do the right
1540         thing for the new GTK_TYPE_* types.
1541         * gtksignal.c (gtk_params_get): Likewise.
1542
1543         * gtktypeutils.c: (gtk_type_init_builtin_types): New
1544         function. (gtk_type_init): Call it.  Also made non-static.
1545         (gtk_type_unique): The allocation scheme for numerical ids has
1546         changed: The low 8 bits hold the appropriate GtkFundamentalType of
1547         a type, the rest is a globally unique sequence number.
1548         (gtk_type_hash): Use the sequence number of a key to hash it.
1549         (gtk_type_register_builtin): New function.
1550
1551         * gtktypeutils.h: (GtkFundamentalType): New enumeration of the
1552         fundamental types. (GTK_TYPE_MAKE, GTK_FUNDAMENTAL_TYPE,
1553         GTK_TYPE_SEQNO): New macros to work with the new id scheme.
1554         (GtkArg): Added fields for new types and renamed old ones.  GtkArg
1555         should now be a mostly opaque structure, except name and type.
1556         (GTK_VALUE_*): New macros to access the values of a GtkArg.
1557         (GTK_RETLOC_*): New macros to access the location of a return
1558         value that is contained in a GtkArg.  * gtktypebuiltins.h: New
1559         file to access the typeids of the builtin types.
1560
1561         * gtkwidget.h (GTK_TYPE_WIDGET): New macro to access the type id
1562         of the widget class.
1563
1564         Thru out: Changed GTK_ARG_* to the appropriate GTK_TYPE_*.
1565         Changed access to GtkArg structure to the appropriate GTK_VALUE_*
1566         or GTK_RETLOC_* macro.  Changed GtkArgType to GtkType.  Changed
1567         some guints to GtkType.
1568
1569         General changes in gtk/ to support interpreters:
1570
1571         * gtkradiobutton.c (gtk_radio_button_new_from_widget,
1572         gtk_radio_button_new_with_label_from_widget): New functions.
1573
1574         * gtksignal.c (gtk_signal_connect_no_marshal): New function.
1575         (struct _GtkHandler): Added no_marshal and destroy_func fields.
1576         (gtk_signal_handler_new): Initialize them.
1577         (gtk_signal_connect_by_type): Added no_marshal and destroy_func
1578         arguments.  Changed all callers.
1579         (gtk_signal_destroy): Invoke destroy_func if there is one and the
1580         global destroy func does not apply.  (gtk_handlers_run): If the
1581         handler has no_marshal set, call its function directly without
1582         going thru the signal's marshaller.
1583
1584 Wed Sep  3 09:56:22 1997  RHS Linux User  <pmattis@bjork.inktomi.com>
1585
1586         * gtkrange.c: Changed the way the range control focus was drawn so
1587         that the range control is drawn correctly when it does not have
1588         the focus.
1589
1590 Tue Sep  2 17:41:17 1997  RHS Linux User  <pmattis@bjork.inktomi.com>
1591
1592         * gtkwidget.c: 'gtk_real_widget_queue_resize' should only remove
1593         the "resize_widgets" if another resize is not pending.
1594
1595 Mon Sep  1 18:28:08 1997  Peter Mattis  <pmattis@localhost>
1596
1597         * gtkmain.c: Changed the way GDK_DELETE events are handled. Only,
1598         if 'gtk_widget_event' returns TRUE is the widget destroyed. By
1599         default, 'gtk_widget_event' will return FALSE causing the window
1600         to not be destroyed. This prevents segfaults in the GIMP and other
1601         programs that do not correctly handle GDK_DELETE events.
1602
1603         * gtkmain.c: Added modal dialog support by allowing events
1604         destined for a child of the grab widget to go to the child instead
1605         of the grab widget. (Added 'gtk_widget_is_ancestor' to determine
1606         the relationship between the grab widget and the event widget).
1607
1608         * *.[ch]: Incorprated a whole mess of patches. (Started keeping
1609         the ChangeLog up to date again).
1610
1611 Thu Jun  5 17:22:21 1997  Peter Mattis  <pmattis@localhost>
1612
1613         * gtkmenufactory.c:
1614         * gtkmenufactory.h: Added 'gtk_menu_factory_remove_*'
1615         calls. Removing entries/paths causes the associated widgets to be
1616         destroyed.
1617
1618         * gtkwidget.c:
1619         * gtkwidget.h: Calling 'gtk_widget_set_style' is used as an
1620         indication that the programmer specifically wants that style to be
1621         used. RC-style substitution is disabled for the widget after such
1622         a call.
1623
1624         * gtkpixmap.c:
1625         * gtkpixmap.h:
1626         * gtkimage.c:
1627         * gtkimage.h: Changed to use clip mask and a single pixmap (or
1628         image) to deal with transparent areas.
1629
1630         * gdkpixmap.c: Modified xpm loading routines to optionally return
1631         a clip mask.
1632
1633         * gdkgc.c:
1634         * gdkdraw.c:
1635         * gdktypes.h: Modifications to allow clip masks to be used with
1636         gc's. Clip masks are bitmaps that specify drawable regions.
1637
1638 Thu May  1 03:11:51 1997  Peter Mattis  <pmattis@localhost>
1639
1640         * gtkscrolledwindow.c: Scrolled windows need to have the
1641         GTK_NO_WINDOW flag set. Not having it set caused an obscure
1642         redrawing bug.
1643
1644 Wed Apr 30 12:38:03 1997  Peter Mattis  <pmattis@localhost>
1645
1646         * gtkhruler.c:
1647         * gtkvruler.c: Fixed a small bug that caused the indicator to be
1648         positioned slightly off.
1649
1650 Sun Apr 27 14:28:21 1997  Peter Mattis  <pmattis@localhost>
1651
1652         * gtkmenushell.c:
1653         * gtkmenushell.h:
1654         * gtkmenu.c:
1655         * gtkmenu.h: Changes so that if a menu is popped up there is a
1656         timeout period during which a menu item will not be activated and
1657         if the mouse button is released in that period the menu will stay
1658         popped up.
1659
1660         * gtkcurve.c:
1661         * gtkcurve.h: Included curve widget courtesy of David
1662         Mosberger-Tang (davidm@azstarnet.com).
1663
1664         * gtkentry.c:
1665         * gtkentry.h: Changed "insert" and "delete" signals to
1666         "insert_text" and "delete_text" respectively. (The symbol "delete"
1667         cannot be used since it is a C++ reserved word).
1668
1669 Sat Apr 19 01:43:49 1997  Peter Mattis  <pmattis@localhost>
1670
1671         * gtkmenufactory.c: A path which ends in "<nothing>" will cause an
1672         invisible (hidden) menu entry to be created. This is useful for
1673         setting an accelerator key for which a corresponding menu entry is
1674         not desired.
1675
1676         * gtktooltips.c: Fixed some problems with destruction of the
1677         active tip widget not properly updating the tooltips data
1678         structures.
1679
1680 Fri Apr 18 15:09:45 1997  Peter Mattis  <pmattis@localhost>
1681
1682         * gtkcontainer.c:
1683         * gtklist.c:
1684         * gtkwidget.c:
1685         * gtkwidget.h: Patch from Owen Taylor (owt1@cornell.edu) which
1686         fixes problems with destruction of objects and with destruction of
1687         objects which hold the focus.
1688
1689 Thu Apr 17 11:29:15 1997  Peter Mattis  <pmattis@localhost>
1690
1691         * gtkmenushell.c: Incorrect logic in
1692         'gtk_menu_shell_button_release' for deciding when a menu should
1693         stay popped up when the mouse button is released.
1694
1695         * *.c: Miscellaneous fixes from folks on the net.
1696
1697 Tue Apr 15 02:43:17 1997  Peter Mattis  <pmattis@localhost>
1698
1699         * *.c:
1700         * gtkwidget.h: Added GTK_BASIC widget flag which when set
1701         specifies a widget as "basic". A "basic" widget is one which
1702         doesn't take input events. For example, labels, pixmaps, boxes,
1703         tables, alignments, etc.
1704
1705 Sat Apr 12 15:23:08 1997  Peter Mattis  <pmattis@localhost>
1706
1707         * gtkcolorsel.c: Add "#include <math.h>" to define M_PI.
1708
1709         * gtksignal.c: Fixed a bug in 'gtk_signal_emit' which showed up
1710         because of the new cast checking macros. The 'object' was being
1711         accessed after it had been destroyed.
1712
1713         * gtkoptionmenu.c: Fixed bug with using 'GTK_BIN' instead of
1714         'GTK_BUTTON' which showed up because of the new cast checking
1715         macros.
1716
1717         * *.h: 'GTK_CHECK_CAST', 'GTK_CHECK_CLASS_CAST' and
1718         'GTK_CHECK_TYPE' used by standard widget macros everywhere.
1719
1720 Wed Apr  9 00:54:17 1997  Peter Mattis  <pmattis@localhost>
1721
1722         * docs/gtk.texi: Started further work on documentation. Major
1723         changes and additions are being made.
1724
1725         * gtkarrow.c:
1726         * gtkarrow.h: Removed function 'gtk_arrow_get'.
1727
1728         * gtkcontainer.c: 'gtk_container_check_resize' no performs
1729         additional checking to account for the case where the containers
1730         allocation is no longer sufficient because its parent (or its
1731         parents parent, etc.) needs to resize its children.
1732
1733 Tue Apr  8 21:15:50 1997  Peter Mattis  <pmattis@localhost>
1734
1735         * gtkstyle.c: Fixed a bug in 'gtk_style_init' in which the font
1736         was not ref'd (via 'gdk_font_ref'), but was free'd (via in
1737         'gdk_font_free') in 'gtk_style_destroy'. (David
1738         Mosberger-Tang). Also cleaned up 'gtk_style_destroy' while I was
1739         at it.
1740
1741         * gtkmain.c: Fixed a bug in 'gtk_propogate_event' which caused
1742         entry widgets (and probably other widgets) not to be destroyed in
1743         some instances.
1744
1745 Mon Apr  7 01:20:38 1997  Peter Mattis  <pmattis@localhost>
1746
1747         * gtkentry.c:
1748         * gtkentry.h: Changed the "insert_text", "delete_text" and
1749         "changed_text" signals to "insert", "delete", and "changed"
1750         respectively. They really should have been named this way
1751         originally except the previous signal mechanism prevented
1752         duplicate signal names. ("changed" is also used by adjustments).
1753
1754         * gtkradiomenuitem.c:
1755         * gtkradiomenuitem.h: New widget.
1756
1757         * gtkcheckmenuitem.c:
1758         * gtkcheckmenuitem.h: New widget.
1759
1760         * gtksignal.c: Modified 'gtk_signal_lookup' to require an object
1761         type to be passed as a parameter. In addition, signals are now
1762         only needed to be uniquely defined in their branch of the class
1763         hierarchy. This allows the same signal name to be used in two
1764         different branches of the class hierarchy. For instance, the
1765         "changed" signal is used both by adjustments and entries...in
1766         different ways!
1767
1768         * gtktypeutils.c: Added 'gtk_type_parent' which returns the parent
1769         type for a given type.
1770
1771 Sun Apr  6 22:08:35 1997  Peter Mattis  <pmattis@localhost>
1772
1773         * gtkwidget.c: If a widget is set insensitive it loses the focus
1774         if it had it.
1775
1776         * gtkcontainer.c: Insensitive widgets no longer participate in tab
1777         traversal.
1778
1779         * gtkscrolledwindow.c: The "viewport" child is now destroyed and a
1780         container class "foreach" function was written (which fixes the
1781         sensitivity bug).
1782
1783 Sat Apr  5 14:25:38 1997  Peter Mattis  <pmattis@localhost>
1784
1785         * gtkhscrollbar.c:
1786         * gtkvscrollbar.c: Fixed trough size allocation bug.
1787
1788         * gtkhscale.c:
1789         * gtkvscale.c: Fixed trough size allocation and position bug that
1790         showed up when scales were placed in notebooks.
1791
1792 Thu Mar 27 17:45:54 1997  David Mosberger-Tang  <davidm@azstarnet.com>
1793
1794         * gtk/gtkmain.c (gtk_handle_idle): Fix appending pending_idles to
1795         idle_functions so it works even when idle_functions is empty.
1796
1797 Sat Mar 15 14:15:59 1997  Peter Mattis  <pmattis@localhost>
1798
1799         * *.[ch]: Moved '*_class_init' and '*_init' function declarations
1800         for widgets into the source file as those functions no longer had
1801         to be public.
1802
1803         * gtkcheckbutton.c: Fixed redrawing of check button.
1804
1805         * gtkframe.c: Fixed redrawing of frame when the shadow type is
1806         changed.
1807
1808 Sat Mar  8 15:19:23 1997  Peter Mattis  <pmattis@localhost>
1809
1810         * gdkimage.c: Fixed a stupid bug with 'gdk_image_new' which
1811         potentially added a NULL image to "image_list" and caused problems
1812         when 'gdk_image_exit' was called.
1813
1814 Wed Mar  5 00:40:08 1997  Peter Mattis  <pmattis@localhost>
1815
1816         * gtkpreview.c: Massively changed the colormap handling used by
1817         the preview widget. Gray previews are now dithered. A single
1818         visual and colormap is shared by the color and gray previews. A
1819         GTK_PREVIEW_INFO property is installed on the root window in
1820         certain cases to allow multiple GTK programs to share the system
1821         colormap.
1822
1823 Sun Mar  2 05:43:06 1997  Peter Mattis  <pmattis@localhost>
1824
1825         * gtkcheckbutton.c: 'gtk_checkbutton_size_allocate' was allocating
1826         too much space to its children and not leaving the check button
1827         room for the focus border.
1828
1829         * gtknotebook.c: 'gtk_notebook_size_request' wasn't requesting
1830         enough space when the notebook tabs are visible.
1831
1832 Sat Mar  1 01:59:35 1997  Peter Mattis  <pmattis@localhost>
1833
1834         * gtkpreview.c: Fixed a problem with 'gtk_preview_put' when the
1835         image byte order is GDK_MSB_FIRST.
1836
1837         * gtksignal.c:
1838         * gtksignal.h: Added 'gtk_signal_connect_after' and
1839         'gtk_signal_connect_object_after' functions. These connect signal
1840         handlers which will run after the class function associated with
1841         the signal.
1842
1843         * gtkstyle.c: Fixed a stupid bug in 'gtk_style_new_from_key' that
1844         was causing twice as many styles to be created as necesary.
1845
1846         * gtkwidget.c: 'gtk_real_widget_size_allocate' erases the widgets
1847         old allocation if it has the GTK_NO_WINDOW flag set.
1848
1849         * gtkwidget.c: 'gtk_real_widget_unmap' now erases the widget if it
1850         has the GTK_NO_WINDOW flag set.
1851
1852         * gtklabel.c: Removed 'gtk_label_unmap' as similar functionality
1853         was added to gtk_real_widget_unmap.
1854
1855         * gtkbin.c: Modified 'gtk_bin_map' and 'gtk_bin_unmap' so that it
1856         erases and draws the widget if it has the GTK_NO_WINDOW flag set.
1857
1858         * gtkframe.c: Modified 'gtk_frame_size_allocate' so that it erases
1859         the old allocation.
1860
1861 Fri Feb 28 03:27:05 1997  Peter Mattis  <pmattis@localhost>
1862
1863         * gtkwindow.c: 'gtk_window_set_title' now changes the window title
1864         if the window is already realized.
1865
1866         * gtkentry.c: 'gtk_entry_set_text' was emitting both a
1867         "delete_text" and a "changed_text" signal. Modified so that it
1868         only emits a "changed_text" signal.
1869
1870         * gtkpreview.c: Modified to work correctly on systems with MSB
1871         byte order. The colormap for TRUE and DIRECT color displays is now
1872         created if the default visual is not equal to the visual we are
1873         using.
1874
1875         * gtkstyle.c: 'gtk_style_attach' and 'gtk_style_find' weren't
1876         working properly in the presence of multiple colormaps are
1877         different depth visuals.
1878
1879         * gtkcontainer.c: Massively improved focus traversal using tab and
1880         arrow keys. It now uses the layout of the widgets to determine
1881         where to move the focus to.
1882
1883 Mon Feb 24 03:24:02 1997  Peter Mattis  <pmattis@localhost>
1884
1885         * gtkmenufactory.c: Set the accelerator table field for menus when
1886         they are created.
1887
1888         * gtkmenu.c:
1889         * gtkmenu.h: Added a default accelerator table field to menus so
1890         that runtime modification of accelerator keys in menus can work
1891         better.
1892
1893         * gtkrange.c: 'gtk_range_default_{h,v}motion' had faulty logic for
1894         deciding what to do when the slider was at the edge of the
1895         trough. They previously didn't update the adjustment value event
1896         if the value wasn't what it should be when the slider was at the
1897         edge of the trough.
1898
1899         * gtkviewport.c: 'gtk_viewport_size_allocate' and
1900         'gtk_viewport_adjustment_value_changed' both had the potential for
1901         performing a divide by 0. Checks are now in place to prevent this.
1902
1903         * gtkmenu.c: 'gtk_menu_map' now makes sure the menu lies on screen
1904         if the position function is NULL.
1905
1906         * gtkentry.c: Modified selection handling. 'gtk_delete_selection'
1907         actually removes the X selection now. 'gtk_entry_destroy' removes
1908         the selection as well and relies on the change in "gdk.c" to make
1909         sure the selection event will not be sent to a non-existant
1910         window.
1911
1912         * gdk.c: Selection events are only passed on if the selection
1913         owner is not NULL.
1914
1915         * gtkstyle.c: 'gtk_style_detach' and 'gtk_style_destroy' were not
1916         destroying the black and white gc's.
1917
1918 Sun Feb 23 19:17:56 1997  Peter Mattis  <pmattis@localhost>
1919
1920         * gtkwindow.c: 'gtk_window_size_request' was setting the window
1921         hints. This was also being done in 'gtk_window_map', so the
1922         instance being done in 'gtk_window_size_request' was removed.
1923
1924 Fri Feb 21 01:04:01 1997  Peter Mattis  <pmattis@localhost>
1925
1926         * gtkwidget.c: 'gtk_widget_draw' has to use the widgets allocated
1927         position for the drawing rectangle when the widget has the
1928         GTK_NO_WINDOW flag set.
1929
1930         * gtkwidget.c: In 'gtk_widget_init' the visual and colormap were
1931         being directly compared against 'default_visual' and
1932         'default_colormap' instead of calling
1933         'gtk_widget_get_default_{visual,colormap}'.
1934
1935         * gdkrectangle.c: Amazing! There was a bug in the
1936         'gtk_rectangle_intersect' logic. Its been there for near eternity
1937         and I never noticed.
1938
1939         * gtkpreview.c:
1940         * gtkpreview.h: Created preview widget which allows drawing to an
1941         rgb or grayscale buffer which is automatically displayed on the
1942         screen. Performs dithering as necessary.
1943
1944 Thu Feb 20 20:33:21 1997  Peter Mattis  <pmattis@localhost>
1945
1946         * gdkwindow.c: Modified the logic in 'gdk_window_new' which
1947         determined when to add a window to the WM_COLORMAP_WINDOWS
1948         property.
1949
1950 Wed Feb 19 19:55:29 1997  Peter Mattis  <pmattis@localhost>
1951
1952         * gtkruler.c: 'gtk_ruler_make_pixmap' was always destroying the
1953         old backing store and creating a new one even when it would create
1954         a new one of exactly the same size as the old one.
1955
1956 Tue Feb 18 18:32:10 1997  Peter Mattis  <pmattis@localhost>
1957
1958         * gmem.c: 'g_mem_chunk_alloc' was incorrectly modifying the mem
1959         areas free mem field when reallocating a previously freed
1960         atom. This caused a fairly severe memory leak.
1961
1962         * gtkmenushell.c: 'gtk_menu_shell_button_release' had a bug in the
1963         logic for deciding whether to initiate an X pointer grab or not
1964         when the mouse button was released. It now only initiates a grab
1965         if the mouse is released within an active menu item.
1966
1967 Fri Feb 14 00:57:40 1997  Peter Mattis  <pmattis@localhost>
1968
1969         * gtknotebook.c: Changed the look of notebook tabs slightly.
1970
1971         * gtkentry.c:
1972         * gtkentry.h: Deleting an entry widget which is holding the X
1973         selection presents some difficulties. The X selection must be
1974         released, but the widget can't be destroyed until the
1975         SELECTION_CLEAR event is received that the X server will send in
1976         response to clearing the X selection. There are probably still
1977         bugs in the current method of entry widget deletion when the X
1978         selection is held.
1979
1980         * gtkmain.c: 'gtk_propagate_event' was not properly destroying the
1981         toplevel window when receiving a key press event.
1982
1983         * gtkwidget.c: Setting a widget insensitive did not cause it to
1984         redraw. It now does.
1985
1986 Thu Feb 13 16:59:07 1997  Peter Mattis  <pmattis@localhost>
1987
1988         * gtkviewport.c: 'gtk_viewport_size_allocate' was allocating its
1989         child widget an adjusted allocation. Since the actual scrolling
1990         has handled by a subwindow this caused the child to be double
1991         scrolled. Modified to always set the child allocations origin to
1992         (0, 0).
1993
1994 Wed Feb 12 01:06:48 1997  Peter Mattis  <pmattis@localhost>
1995
1996         * gtkentry.c: Text is now centered vertically. Previously it was
1997         pushed up against the top. This problem was only evident when the
1998         widget was allocated more vertical space than it requested.
1999
2000         * gtkfilesel.c: 'gtk_file_selection_key_press' was previously only
2001         a stub for tab completion. The actual tab completion call had been
2002         left out. (Oops!)
2003
2004 Tue Feb 11 01:43:08 1997  Peter Mattis  <pmattis@localhost>
2005
2006         * gtksignal.c: 'gtk_signal_disconnect_by_data' was going into a
2007         loop and crashing. Bad logic. Fixed.
2008
2009         * gtkmain.c: An idle function which returns FALSE will be removed
2010         from the list of idle functions. This makes the functioning of
2011         idle functions and timeouts more similar.
2012
2013         * gtkentry.c: 'gtk_entry_get_text' now returns an empty string
2014         when the actual text is NULL. This allows "stupid" programs to use
2015         the value returned by 'gtk_entry_get_text' blindly (without
2016         checking to see if its NULL).
2017
2018         * gtkradiobutton.c: Modified 'gtk_radio_button_clicked' so that
2019         'gtk_toggle_button_toggled' is called _after_ the widget state is
2020         changed.
2021
2022         * gtksignal.c:
2023         * gtksignal.h: Added 'gtk_signal_name' which returns the character
2024         string name for a given signal number.
2025
2026         * gtkwidget.c: 'gtk_widget_set_parent' checks to see if the widget
2027         is now "anchored" through the parent chain to a widget which is
2028         GTK_ANCHORED. If it is, then it changes the widgets style using
2029         'gtk_rc_get_style' and recursively performs the same operation on
2030         the widgets children. This is necessary is 'gtk_rc_get_style' only
2031         works properly on "anchored" widgets.
2032
2033         * gtkwindow.c: Modified GTK_WIN_POS logic so that it is only used
2034         immediately after the window has been shown.
2035
2036         * gtkmenu.c: 'gtk_menu_key_press'. Can now change menu item
2037         accelerator keys on the fly. Why? Why not. Cool/useless feature of
2038         the day.
2039
2040         * gtkmenuitem.c: Accelerator key drawing. Somehow that never got
2041         finished. (Oops!)
2042
2043         * gtkdrawingarea.c: 'gtk_drawing_area_size_allocate' was not
2044         actually installed during 'gtk_drawing_area_class_init'. (Oops!)
2045
2046         * gtkframe.c: 'gtk_frame_size_request' fixed size requisition
2047         problem caused by unsigned arithmetic.
2048
2049         * gtkwindow.c: Modified window widget so that it only uses the
2050         widget uposition auxiliary information immediately after it has
2051         been shown. This prevents the annoying bug which can cause a
2052         uposition'ed window to jump back to its original position after
2053         the user moves it.
2054
2055         * gtkwidget.c: Need to ref and unref style in
2056         'gtk_widget_{push,pop}_style' to make sure that a style on the
2057         style stack is not destroyed.
2058
2059         * gtktogglebutton.c: 'gtk_toggle_button_set_state' now calls
2060         gtk_button_clicked to actually change the state of the
2061         button. In this way, radio buttons can now perform the appropriate
2062         actions when the toggle button state is set.
2063
2064 Mon Feb 10 00:27:39 1997  Peter Mattis  <pmattis@localhost>
2065
2066         * gtklist.c: 'gtk_list_select_item' and 'gtk_list_unselect_item'
2067         were casting a GList* variable to a a GtkWidget* variable. Bad bad
2068         bad. (Tim Janik).
2069
2070         * gtksignal.c: Modified 'gtk_signal_connect' and
2071         'gtk_signal_connect_object' to warn when a signal type cannot be
2072         found.
2073
2074 Sun Feb  9 00:15:30 1997  Peter Mattis  <pmattis@localhost>
2075
2076         * gtkoptionmenu.c:
2077         * gtkoptionmenu.h: Changed option menus back to being derived from
2078         buttons. This fixes up some screwiness with their user
2079         interaction.
2080
2081         * gtkwindow.c: Modified key press handler to support focus
2082         traversal.
2083
2084         * gtkcontainer.c:
2085         * gtkcontainer.h: Added default focus traversal back in.
2086
2087 Sat Feb  8 10:44:38 1997  Peter Mattis  <pmattis@localhost>
2088
2089         * gtkviewport.h:
2090         * gtkviewport.c: Massively sped up viewport scrolling. Used to be
2091         reallocating child's size (offset) each time a scrollbar
2092         moved. Now a subwindow is moved. All the children are moved
2093         automatically by moving the subwindow. Much much much faster.
2094
2095 Tue Feb  4 00:20:44 1997  Peter Mattis  <pmattis@localhost>
2096
2097         * gtree.c: Changed 'g_tree_node_search' to use a loop instead of
2098         recursion.
2099
2100 Mon Feb  3 11:30:03 1997  Peter Mattis  <pmattis@localhost>
2101
2102         * gtkbutton.c: Removed 'parent_destroy' global and replaced it
2103         with 'parent_class' global to reflect style used in other
2104         widgets.
2105
2106         * gtknotebook.c: Tab labels were being allocated less than their
2107         requested size.
2108
2109         * gtkrange.c:
2110         * gtkrange.h: Moved the "digits" field of scales into the range
2111         type. The adjustment value for scales is truncated to the number
2112         of visible digits instead of being left untouched.
2113
2114         * gtree.c: Fixed a bug in the AVL tree implementation. Single
2115         rotations were always being performed during insertion. It is
2116         sometimes necessary to perform a double rotation.
2117
2118         * gtklabel.c: Modified 'gtk_label_expose' to only draw the label
2119         when the allocated space is greater than or equal to the requested
2120         space.
2121
2122         * gtklabel.c: Added call to 'gtk_widget_unmap' to
2123         'gtk_label_destroy' in order for the label to redraw correctly
2124         (erase itself) when destroyed.
2125
2126         * gtklabel.c: Added 'gtk_label_unmap' call which erases the labels
2127         allocation when it gets unmapped.
2128
2129         * *.h: Removed a few remaining instances of using "class" as a
2130         parameter name. (Causes problems for C++).
2131
2132 Fri Jan 31 12:26:50 1997  Peter Mattis  <pmattis@localhost>
2133
2134         * gtkcontainer.c: 'gtk_container_enable_resize' needs to call
2135         'gtk_container_check_resize' instead of
2136         'gtk_container_need_resize'.
2137
2138         * gtkwidget.c: 'gtk_real_widget_show' now maps the widget if its
2139         parent is mapped.
2140
2141         * gtkscrolledwindow.c: Fixed size allocation when the scrollbar
2142         policy's are GTK_POLICY_AUTOMATIC. Doing it correctly is harder
2143         than I originally thought.
2144
2145         * gtklist.c: Added 'gtk_list_child_position' to determine the
2146         integer position in a list of a child. Filled in the
2147         'gtk_list_item_select' and 'gtk_list_item_unselect' stubs.
2148
2149 Thu Jan 30 16:08:06 1997  Peter Mattis  <pmattis@localhost>
2150
2151         * gmem.c: Changed the implementation of G_ALLOC_AND_FREE mem
2152         chunks. They used to allocate SIZEOF_VOID_P extra bytes per atom
2153         in order to keep track of which mem area they were allocated
2154         from. Now the mem area is determined by searching through an AVL
2155         tree of the mem areas for a mem chunk and comparing memory
2156         locations. A little slower, but makes G_ALLOC_AND_FREE mem chunks
2157         much more attractive.
2158
2159         * gtree.c: Added an AVL tree implementation to glib.
2160
2161         * gtksignal.c:
2162         * gstring.c: va_arg (arg_list, {char, short}) is
2163         invalid. Arguments passed in a variable argument list are
2164         promoted. ({char, short}->int). Seemed to work ok before under
2165         Linux. Crashed under FreeBSD.
2166
2167 Tue Jan 28 02:27:51 1997  Peter Mattis  <pmattis@localhost>
2168
2169         * gdkwindow.c: Fixed a major slowdown apparent in the file
2170         selection dialog which was caused by calling
2171         'gtk_window_add_colormap_windows' way way way too often.
2172
2173         * *.c: Many widgets called 'gtk_container_need_resize' when
2174         something internal changed which would cause the widget to grow or
2175         shrink. The assumption was made that the widget would change size
2176         and an expose event would be generated. This happens "most" of the
2177         time. But its possible for certain widgets to change size without
2178         generating expose events, or for its internal geometry to change
2179         without a change of size which would mean no expose event was
2180         generated. So a wrapper function called
2181         'gtk_container_check_resize' was created and
2182         'gtk_container_need_resize' was modified so that it returns FALSE
2183         if a resize was actually generated and TRUE if nothing
2184         changed. This allows 'gtk_container_check_resize' to initiate a
2185         'gtk_widget_size_allocate' and 'gtk_widget_draw' to emulate the
2186         expose event.
2187
2188 Sat Jan 25 14:17:44 1997  Peter Mattis  <pmattis@localhost>
2189
2190         * gtkmain.c: Fixed a bug with propogating key press events. The
2191         events were sent 2 times to the toplevel windows which caused the
2192         focus widget to be activated twice when the space bar was pressed.
2193
2194         * */configure.in:
2195         * */Makefile.am: Added support for libtool and removed the old
2196         shared library configuration craziness.
2197
2198 Fri Jan 24 12:59:22 1997  Peter Mattis  <pmattis@localhost>
2199
2200         * gtktext.c:
2201         * gtktext.h: Josh's fixes and additions to the text widget.
2202
2203         * gtkfill.c:
2204         * gtkfill.h: Filler widget useful for filling space in a
2205         table. Can specify a minimum size. Used by the canvas widget.
2206
2207         * gtknotebook.c:
2208         * gtknotebook.h: Made outline of notebook widget.
2209
2210         * gtkcanvas.c:
2211         * gtkcanvas.h: Started canvas widget. A composite of 2 rulers (w/
2212         an origin), 2 scrolllbars. Guides, grids, snap to.
2213
2214 Sun Jan 19 18:26:45 1997  Peter Mattis  <pmattis@localhost>
2215
2216         * gtkdialog.c:
2217         * gtkdialog.h: Created dialog widget which creates a standard
2218         looking dialog with buttons along the button and a separator.
2219
2220         * gtkxid.c: Generalized the window table code for looking up a gdk
2221         window based on an XID to work for any XID and a piece of
2222         data. Can now look up gdk fonts based on their XID.
2223
2224         * gtkruler.c:
2225         * gtkruler.h:
2226         * gtkhruler.c:
2227         * gtkhruler.h:
2228         * gtkvruler.c:
2229         * gtkvruler.h: Started conversion of the ruler widget.
2230
2231         * gtktext.c:
2232         * gtktext.h: Started conversion of the text widget. Scrolling
2233         doesn't work.
2234
2235         * gtkmain.c: Fixed a fairly major bug. The event widget needs to
2236         be in a call for the entire duration of handling an event. Not
2237         just for when the event widget itself is handling the event.
2238
2239         * gtkfilesel.c: Fixed up some bugs with resizing.
2240
2241 Fri Jan 10 14:18:03 1997  Peter Mattis  <pmattis@localhost>
2242
2243         * gtkwidget.c:
2244         * gtkwidget.h:
2245         * gtkentry.c:
2246         * gtkentry.h: Support for selections.
2247
2248         * gdkselection.c:
2249         * gdk.c:
2250         * gdktypes.h:
2251         * gdk.h: Gdk support for X selections. Currently only text
2252         selections are supported.
2253
2254         * gtksignal.c: Fixed a major bug which occurred when destroying an
2255         object. Memory was being written to after it was freed.
2256
2257         * gtkfilesel.c:
2258         * gtkfilesel.h: Hooked up more functionality to the file selection
2259         dialog.
2260
2261 Wed Jan  8 18:13:53 1997  Peter Mattis  <pmattis@localhost>
2262
2263         * gtkfilesel.c:
2264         * gtkfilesel.h: Mostly converted old file selection dialog
2265         widget. The widget is derived from the GtkWindow class and is
2266         quite a bit simpler in the widget code.
2267
2268         * gtkwidget.c: Fixed 'gtk_widget_grab_focus' and
2269         'gtk_widget_grab_default' to check that the toplevel widget is a
2270         type of window (which includes classes derived from windows).
2271
2272 Tue Jan  7 01:12:32 1997  Peter Mattis  <pmattis@localhost>
2273
2274         * gtkwindow.c: Was calling 'gtk_window_resize' twice in a
2275         row...why?
2276
2277         * gtksignal.c:
2278         * gtksignal.h:
2279         * *.c: Changed 'gtk_signal_new' so that the class function that is
2280         called when the signal is emitted can be called either before,
2281         after or both before and after the calling of any signal
2282         handlers.
2283
2284         * gtkobject.c:
2285         * gtkobject.h: Added 'object_data' mechanism for storing data
2286         associated with a character string key in objects. Removed
2287         'user_data' field of objects and changed
2288         'gtk_object_{get,set}_user_data' to use the object data
2289         mechanism. Removed 'handlers' field of objects.
2290
2291         * gtkwidget.c:
2292         * gtkwidget.h:
2293         * gtkwindow.c: Modified aux info mechanism to use object data
2294         mechanism.
2295
2296         * gtksignal.c: Modified signal mechanism to use object data
2297         mechanism instead of 'handlers' field.
2298
2299
2300 Mon Jan  6 15:10:16 1997  Peter Mattis  <pmattis@localhost>
2301
2302         * gtkmenushell.c: Fixed up button press handling so as to conform
2303         more closely to that used by Motif.
2304
2305 Wed Jan  1 21:27:17 1997  Peter Mattis  <pmattis@localhost>
2306
2307         * gtkmenu.c:
2308         * gtkmenu.h:
2309         * gtkmenubar.c:
2310         * gtkmenubar.h:
2311         * gtkmenushell.c:
2312         * gtkmenushell.h: Reorganization of menu-ing code so that code
2313         duplication is reduced. The menu shell now contains most of the
2314         code for menu-ing interaction while menus and menubars simply layout
2315         their child menu items in the appropriate place.
2316
2317 Sun Dec 29 17:48:18 1996  Peter Mattis  <pmattis@localhost>
2318
2319         * gtkmenu.c:
2320         * gtkmenubar.c:
2321         * gtkmenuitem.h:
2322         * gtkmenuitem.c: Modifications so that menu item accelerators and
2323         the submenu indicator are drawn correctly and the correct amount
2324         of space is allocated.
2325
2326 Sat Dec 28 00:32:13 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2327
2328         * gtkmenufactory.h:
2329         * gtkmenufactory.c: Started menu factories as an easy method to
2330         create and manipulate menus.
2331
2332 Fri Dec 27 13:17:34 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2333
2334         * gtkmenu.c:
2335         * gtkmenu.h:
2336         * gtkmenubar.c:
2337         * gtkmenubar.h:
2338         * gtkmenuitem.c:
2339         * gtkmenuitem.h:
2340         * gtkmenushell.c:
2341         * gtkmenushell.h: Implemented basic menu functionality. Menubars
2342         and popup menus work. Submenus work. (Much left to be done).
2343
2344 Wed Dec 18 15:27:05 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2345
2346         * gtktypeutils.h:
2347         * gtktypeutils.c: Added 'gtk_type_from_name' which returns a type
2348         identifier given a type name. Implemented using a second hash
2349         table keyed by type names.
2350
2351         * gtkbutton.c:
2352         * gtktogglebutton.c: Fixed very small messed-up drawing bug when a
2353         button loses its focus.
2354
2355         * gtkwidget.h:
2356         * gtkwidget.c:
2357         * gtkbutton.c:
2358         * gtkwindow.c: Added default button handling. Default buttons now
2359         draw correctly and pressing return or enter causes the default
2360         button (if one exists) to be activated.
2361
2362 Tue Dec 17 19:32:21 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2363
2364         * gtkhscale.c:
2365         * gtkvscale.c: Overrode 'draw_slider' method of ranges in order to
2366         draw the slider of scales with a line in them so as to be closer
2367         to the Motif look-and-feel.
2368
2369         * gtkwindow.c: Modified 'gtk_window_focus_in_event' so that focus
2370         in events are only handled when the window is visible. Fixes a bug
2371         where spurious focus in events get sent when a window is being
2372         hidden.
2373
2374         * gtkwidget.h: Added 'activate_signal' field to the GtkWidgetClass
2375         structure. Added 'gtk_widget_activate' call to emit the activate
2376         signal for a widget if it is non-zero.
2377
2378 Tue Dec 10 15:59:45 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2379
2380         * gtkwidget.c: 'gtk_widget_set_name' oops in strdup'ing the old
2381         "widget->name" instead of the new one we are setting.
2382
2383         * gtkrc.c: 'gtk_rc_widget_path' changed to use
2384         'gtk_widget_get_name' instead of accessing the "widget->name"
2385         field directly.
2386
2387         * gtkwidget.c: Added 'gtk_widget_get_name' function which returns
2388         the widgets name if it exists and the widgets type name if it does
2389         not.
2390
2391         * gtkcheckbutton.c: Added 'gtk_check_button_draw'
2392         function. Modified 'gtk_check_button_expose' to pass an expose
2393         event to child instead of callings its draw function.
2394
2395         * gtkentry.c: 'gtk_entry_draw_text' why was "+1" being added to
2396         the font->ascent to calculate the font position? This was wrong
2397         and caused some characters in fonts to be clipped. (Notably "g").
2398
2399         * gtkentry.c: 'gtk_entry_realize' specify GTK_BUTTON1_MOTION_MASK
2400         and GTK_POINTER_MOTION_HINT_MASK for _both_ windows.
2401
2402         * gtkmain.c: 'gtk_propagate_event' needs to set the GTK_IN_CALL
2403         flag for the object before calling 'gtk_widget_event' and needs to
2404         destroy the object if necessary after 'gtk_widget_event' returns.
2405
2406         * gtkradiobutton.c: 'gtk_radio_button_clicked' needs to call
2407         'gtk_toggle_button_toggled' when the currently active button is
2408         toggled.
2409
2410         * gtkwidget.c: 'gtk_real_widget_hide' needs to call
2411         'gtk_widget_unmap' if the widget is currently mapped.
2412
2413         * gtkwindow.c: Prevent automatic resizing after the user has
2414         specified a new window size. Add 'handling_resize' flag to
2415         windows.
2416
2417         * gtkscrolledwindow.c: Implement the GTK_POLICY_AUTOMATIC
2418         scrollbar policy. Need to connect to the adjustments 'changed'
2419         signal and notice when the scrollbars aren't in use.
2420
2421         * gtkcontainer.c: 'gtk_container_init' must set 'auto_resize' and
2422         'need_resize' fields to TRUE and FALSE respectively.
2423
2424         * gtkwidget.c: 'gtk_widget_set_parent' must all set a widgets state
2425         to its parents state.
2426
2427 Sun Dec  1 01:31:01 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2428
2429         * Started ChangeLog