]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-0
gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkhandlebox.c gtk/gtkframe.c
[~andy/gtk] / ChangeLog.pre-2-0
1 Wed Jan 13 22:34:29 1999  Owen Taylor  <otaylor@redhat.com>
2
3         * gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkhandlebox.c
4         gtk/gtkframe.c gtk/gtk[hv]box.c gtk[hv]paned.c gtk/gtklist.c
5         gtkmenu.c gtkmenuitem.c gtkmenubar.c gtknotebook.c
6         gtk/gtkscrolledwindow.c gtk/gtktable.c gtk/gtktree.c
7         gtk/gtktreeeitem.c gtk/gtkviewport.c
8         
9         Fix up comparisons of signed and unsigned ints to avoid 
10         assigning negative widths/heigths.
11
12 Wed Jan 13 21:18:41 1999  Owen Taylor  <otaylor@redhat.com>
13
14         * acinclude.m4 (ac_result): Unset CATOBJEXT so
15         that the macros and Makefiles correctly handle
16         disabling NLS when no gettext is found.
17
18 Wed Jan 13 20:14:32 1999  Tim Janik  <timj@gtk.org>
19
20         * gtk/gtkarg.c (gtk_arg_copy): in comparisions with GTK_TYPE_STRING, use
21         the fundamental type to catch GTK_TYPE_IDENTIFIER as well.
22
23         * gtk/gtkmenushell.c:
24         (gtk_real_menu_shell_activate_current):
25         (gtk_menu_shell_button_release): asure that we only activate sensitive
26         menu items, reported by Dave Cole <dave@dccs.com.au>.
27
28 Wed Jan 13 13:28:00 1999  Tim Janik  <timj@gtk.org>
29
30         * gtk/gtkwidget.c: eliminate queue_clears or queue_draws where we know
31         that expose events will be generated.
32         (gtk_widget_map): only queue_draw for NO_WINDOW widgets.
33         (gtk_widget_unmap): only queue_clear_child for NO_WINDOW widgets.
34         (gtk_widget_size_allocate): we don't need a queue_clear on changing
35         allocations of !NO_WINDOW widgets, we do still need a full redraw for
36         them though.
37
38         * gtk/gtklabel.c (gtk_label_set_text): check whether the new string
39         actually differs from the original.
40
41 Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
42
43         * acinclude.m4
44         * ltconfig
45         * ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
46
47 Tue Jan 12 18:30:51 1999  Owen Taylor  <otaylor@redhat.com>
48
49         * gtk/testdnd.c (label_drag_data_received): Add 
50         a drag_data_received handler for the label.
51
52 Tue Jan 12 15:01:50 1999  Owen Taylor  <otaylor@redhat.com>
53
54         * gdk/gdkevents.c: Removed the putback_events queue, 
55         since it was causing problems with event ordering -
56         just keep a single queue. If we need it, we can
57         add priorities to events.
58
59         * gdk/gdkevents.c: Annotate events with flags - we allocate
60         a GdkEventPrivate structure in gdk_event_new() and use these
61         flags to mark an event being translated as "pending" -
62         I.e., not yet ready to be dequeued. So we can put
63         the event on the queue and get the order of the
64         events right. (This solves the double-click problems)
65         
66         * gdk/gdk.h gdk/gdkevents.h: Add gdk_event_peek() to get a copy
67         of the next event on the event queue.
68         
69         * gtk/gtkmain.c (gtk_main_do_event): Use gdk_event_peek()
70         to check the next event without causing event queue
71         reordering.
72
73 Tue Jan 12 15:41:20 1999  Owen Taylor  <otaylor@redhat.com>
74
75         * gtk/gtklabel.c (gtk_label_expose): Minor fix
76         to handling of misc->[x/y]pad
77
78 Tue Jan 12 14:31:43 1999  Owen Taylor  <otaylor@redhat.com>
79
80         * gtk/gtkstyle.[ch] (gtk_style_apply_default_pixmap): 
81         Add back as wrapper function to restore source/binary 
82         compatibility. grrrr.
83
84 Tue Jan 12 13:47:07 1999  Tim Janik  <timj@gtk.org>
85
86         * reworked the redrawing heuristics somewhat, this fixed a bunch of
87         existing redrawing problems and majorly reduces overall redrawing needs
88         during normal operation. basically we now only queue redraws when
89         neccessary and much rely on the draw_area coalescing code in gtkwidget.c
90         to optimize the queued portions. widgets will now upon reallocation only
91         get redrawed if their allocation has changed. upon hide/show only the
92         area allocated by the child will be queued for the parent, this has the
93         side effect that parents which change their appearance in dependance on
94         the numer of visible children have to keep track of their children's
95         visiblity and eventually fully redraw themselves. this is a minor
96         constrain with great benefits in terms of redraw reduction, and only got
97         triggered by the notebook widget.
98
99         * gtk/gtkwidget.c:
100         (gtk_widget_queue_clear): don't bother if width and height == 0.
101         (gtk_widget_queue_clear_child): new static function to queue a redraw of
102         the area obscured by a child on a parent.
103         (gtk_widget_queue_resize): queue_clear the widget if it is drawable.
104         (gtk_widget_show): queue resize on the widget before showing.
105         (gtk_widget_hide): queue resize on the widget after hiding.
106         (gtk_widget_map): queue_draw the widget after mapping.
107         (gtk_widget_unmap): queue_clear_child the widget.
108         (gtk_widget_size_allocate): queue_clear_child and queue_draw if the
109         widget's allocation changed.
110         (gtk_widget_unparent): queue_clear_child so the parent redraws obscured
111         portions.
112         (gtk_widget_real_show):
113         (gtk_widget_real_hide):
114         (gtk_widget_real_map):
115         (gtk_widget_real_unmap):
116         (gtk_widget_real_size_allocate): don't bother with redraw queueing,
117         descendants that override these functions don't do either and we handle
118         all redrawing/resizing related stuff before or after the signal emission
119         now.
120
121         * gtk/gtkcontainer.c:
122         (gtk_container_resize_children): don't bother about redrawing anymore
123         since gtk_widget_size_allocate handles that for us now.
124
125         * gtk/gtknotebook.h:
126         * gtk/gtknotebook.c:
127         added a flag have_visible_child to indicate whether we need to draw
128         non child related portions at all, e.g. shadows etc.
129         (gtk_notebook_draw): if have_visible_child changed, do a full paint
130         instead of updating a small area only.
131
132 Mon Jan 11 20:44:35 1999  Tim Janik  <timj@gtk.org>
133
134         * gtk/gtkstyle.c: changed gtk_style_apply_default_pixmap to
135         gtk_style_apply_default_background which takes an extra argument
136         copy_area to determine NO_WINDOW widget pixmap copying.
137         changed callers accordingly.
138
139         * gtk/gtktogglebutton.c:
140         (gtk_toggle_size_allocate): 
141         (gtk_toggle_button_expose): 
142         (gtk_toggle_button_paint): avoid messing with our parent's window if
143         toggle_button->draw_indicator == TRUE and we are a NO_WINDOW widget.
144
145         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator): draw
146         the draw_indicator with GTK_STATE_ACTIVE if the toggle button is active.
147
148         * gtk/check-n.xpm:
149         * gtk/check-y.xpm:
150         * gtk/testgtkrc: set pixmaps for ACTIVE and NORMAL check button
151         bg_pixmaps.
152
153 Mon Jan 11 23:52:58 1999  Lars Hamann  <lars@gtk.org>
154
155         * gtk/gtklist.c (gtk_list_signal_drag_begin)
156         (gtk_list_drag_begin): end drag selections if necessary.
157
158         * gtk/gtkspinbutton.c/h (gtk_spin_button_update): made function
159         public. Manually force synchronization of spin button text and
160         adjustment value.
161
162 Mon Jan 11 15:23:32 1999  Tim Janik  <timj@gtk.org>
163
164         * gtk/gtktogglebutton.c: eliminated some queue_draws when invoking
165         gtk_widget_set_state, since that cares about redrawing already.
166         some code cleanups.
167
168         * gtk/gtktogglebutton.[hc]:
169         * gtk/gtkfontsel.c:
170         * gtkgamma.c:
171         s/gtk_toggle_button_set_state/gtk_toggle_button_set_active/ since
172         set_state is already taken by gtkwidget.h.
173
174         * gtk/gtkcompat.h: #define gtk_toggle_button_set_state
175         gtk_toggle_button_set_active.
176         
177         * gtk/gtkstyle.c: some indentation cleanups.
178
179 Mon Jan 11 15:12:33 1999  Tim Janik  <timj@gtk.org>
180
181         * gtk/gtktogglebutton.c (gtk_toggle_button_set_mode): take previous
182         visibility state into account when unrealizing.
183
184 Mon Jan 11 10:45:28 1999  Owen Taylor  <otaylor@redhat.com>
185
186         * gtk/gtkdnd.c: Only remove handlers for motion/button_release
187         at drop, remove "selection_get" handler later.
188
189 Mon Jan 11 13:31:49 1999  Tim Janik  <timj@gtk.org>
190
191         * gtk/gtktypeutils.[hc]: removed Paolo Molaro's type creation hooks
192         again, since they 1) don't care about infinite recursion (likely
193         to achive), 2) we are in feature freeze for 1.2. this definitely
194         deserves a sane implementation in 1.3 though (but without a hook
195         return value, without seq_id hackery and with recursion checks).
196
197 Mon Jan 11 13:18:37 1999  Tim Janik  <timj@gtk.org>
198
199         * gtk/gtkwindow.c:
200         (gtk_window_key_release_event): 
201         (gtk_window_key_press_event): only pass key events to the focus widget
202         if it is sensitive.
203
204         * gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): don't popup the
205         submenu if it isn't sensitive.
206         (gtk_menu_item_paint): state_type doesn't need to be reset to
207         GTK_STATE_INSENSITIVE if the widget is insensitive anyways.
208
209         * gtk/gtkcontainer.c (gtk_container_real_focus): 
210         * gtk/gtklist.c (gtk_list_focus): 
211         * gtk/gtkmenushell.c (gtk_menu_shell_move_selected): 
212         * gtk/gtknotebook.c (gtk_notebook_focus): 
213         s/GTK_WIDGET_SENSITIVE/GTK_WIDGET_IS_SENSITIVE/ since a widgets
214         sensitivity is determined through the parent as well,
215         GTK_WIDGET_SENSITIVE is only of interest inside gtkwidget.c, everywhere
216         else GTK_WIDGET_IS_SENSITIVE (widget) needs to be used to check for
217         sensitivity.
218
219         * gtk/gtkaccelgroup.c (gtk_accel_group_activate): don't activate
220         object if it is an insensitive widget.
221
222 Mon, 11 Jan 1999 08:09:08 +0100 Paolo Molaro <lupus@debian.org>
223
224         * gtk/gtktypeutils.[ch]: add gtk_type_{add,remove}_creation_hook().
225         You can have a notification when a type is created.
226
227 1999-01-11  Tim Janik  <timj@gtk.org>
228
229         * gtk/gtkmain.c (gtk_propagate_event): added an assertement.
230
231 Sun Jan 10 14:45:37 1999  Owen Taylor  <otaylor@gtk.org>
232
233         * gtk/gtktext.c (text_properties_equal): Fixed
234         cut and paste bug when comparing text property
235         bg colors.
236         [ Matt Aubury <Matt.Aubury@comlab.ox.ac.uk> ]
237
238 1999-01-10  Tim Janik  <timj@gtk.org>
239
240         * gtk/gtksignal.c (gtk_signal_lookup): if the lookup failed, try
241         to initialize the object class and reattempt the lookup, reported
242         by Paolo Molaro <lupus@lettere.unipd.it>.
243
244 Sat Jan  9 17:36:20 1999  Owen Taylor  <otaylor@redhat.com>
245
246         * configure.in (ALL_LINGUAS): Added cs to ALL_LINGUAS.
247
248 Sat Jan  9 17:27:49 1999  Owen Taylor  <otaylor@redhat.com>
249
250         * gtk/gtkfilesel.c (gtk_file_selection_populate):
251         Mark another string for internationalization.
252         [ Stanislav Brabec <utx@k332.feld.cvut.cz> ]
253
254 Sat Jan  9 14:02:08 1999  Owen Taylor  <otaylor@redhat.com>
255
256         * gtk/gtktooltips.c (gtk_tooltips_force_window): Set
257         name "gtk-tooltips" on tip window so that a style
258         can be set for tooltips.
259
260 Fri Jan  8 19:00:17 1999  Owen Taylor  <otaylor@redhat.com>
261
262         * gdk/gdkdnd.c (gdk_window_cache_filter): Fixed
263         some list-manipulation breakage.
264
265         * gdk/gdkdnd.c (gdk_window_cache_destroy): Free 
266         window cache structure.
267
268         * gtk/gtkdnd.c (gtk_drag_set_icon_pixmap): Set an
269         event mask on the drag window so clicking on it
270         doesn't pop up root menus, etc.
271
272         * gtk/gtkdnd.c (gtk_drag_button_release_cb): Remove
273         signal handlers at button release.
274
275 Fri Jan  8 00:42:00 1999  Lars Hamann  <lars@gtk.org>
276
277         * gtk/gtkspinbutton.c (gtk_spin_button_get_value_as_int)
278         (gtk_spin_button_get_value_as_float): call gtk_spin_button_update
279         before returning a value
280
281         * gtk/gtkclist.c (gtk_clist_motion): don't allow 'drag selections'
282         if clist is a drag source.
283         (gtk_clist_drag_begin): remove pointer grabs, end ongoing selections.
284
285         * gtk/gtkctree.c (remove_grab): copy of clist function.
286         (gtk_ctree_drag_begin): let clists drag_begin method set the
287         source info struct.
288
289 Thu Jan  7 19:10:21 1999  Owen Taylor  <otaylor@redhat.com>
290
291         * gtk/gtkviewport.c (gtk_viewport_style_set): Fixes
292         to drawing the background of the bin window 
293         so that clearing and redrawing of child
294         widgets work properly.
295
296         * gtk/gtkwidget.c (gtk_widget_idle_draw): Juggle around
297         data so that if somebody triggers more redraw queuing
298         from a expose_event handler, it doesn't confuse the
299         heck out of GTK+. (But is highly liable to cause 
300         an infinite loop...)
301
302 Thu Jan  7 12:31:41 1999  Owen Taylor  <otaylor@redhat.com>
303
304         * gtk/gtkselection.c (gtk_target_list_unref): Fix some
305         more memory leaks.
306
307 Wed Jan  6 23:14:19 1999  Lars Hamann  <lars@gtk.org>
308
309         * gtk/gtkctree.c (gtk_ctree_drag_motion): fix for dnd bug reported
310         by Bertrand Guiheneuf. Don't return FALSE if source widget != dest.
311         widget.
312
313 Wed Jan 06 10:04:12 1999  Tristan Tarrant  <ttarrant@etnoteam.it>
314
315         * configure.in,po/it.po: added Italian translations
316
317 Tue Jan 05 21:18:00 1999  George Lebl  <jirka@5z.com>
318
319         * gtk/gtkmenu.c,gtk/gtkmenuitem.c,gtk/gtkeditable.c: free the
320           event that was returned to us by gtk_get_current_event
321
322 Tue Jan  5 19:01:18 1999  Owen Taylor  <otaylor@redhat.com>
323
324         * gtk/gtkcolorsel.c (gtk_color_selection_dialog_init): Push
325         GdkRGB's visual and colormap around the color selection
326         dialog so that the window and the previews have the
327         same colormap. If an app adds things to the colorsel
328         dialog, it will have to take care of them itself.
329
330 Tue Jan  5 15:03:47 1999  Owen Taylor  <otaylor@redhat.com>
331
332         * gtk/gtkmain.c (gtk_propagate_event): Make 
333         gtk_propagate_event() non-static, we need it in gtkdnd.c 
334         so that the button-release we synthesize gets propagated
335         correctly.
336
337         * gtk/gtkdnd.c: Use gtk_propagate_event() so
338         release gets to a GtkList. But we can't really
339         get this right without access to the windows
340         event masks and doing X-style propagation ourselves.
341
342 Tue Jan  5 12:40:57 1999  Owen Taylor  <otaylor@redhat.com>
343
344         * gtk/gtkpreview.c: Add a size_allocate() routine 
345         and set the size of the preview window equal
346         to the area we are going to draw on, instead 
347         of the entire allocation. Do this to avoid having 
348         to set a parent-relative background.
349         
350 Tue Jan  5 11:51:32 1999  Owen Taylor  <otaylor@redhat.com>
351
352         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable):
353         When redrawing the under-cursor character, don't
354         redraw the terminating NULL.
355         [ From: dov@imagic.weizmann.ac.il (Dov Grobgeld) ]
356
357 Tue Jan  5 11:31:55 1999  Owen Taylor  <otaylor@redhat.com>
358          
359         * gtk/gtkselection.c (gtk_target_list_unref): Free
360         memory allocated for target lists.
361
362         * gtk/gtkdnd.c (gtk_drag_drop_finished): Release
363         selections before destroying info structure.
364
365         * gdk/gdkdnd.c gdktypes.h (gdk_drag_get_protocol): Add
366         new value GDK_DRAG_PROTO_NONE, use it for non-drag
367         targets, to quiet Purify.
368
369         * gdk/gdkdnd.c (gdk_window_register_dnd): Set size
370         of property properly.
371
372 Mon Jan  4 03:45:42 CST 1999 Shawn T. Amundson <amundson@gtk.org>
373
374         * Released GTK+ 1.1.12
375
376         * INSTALL:
377           NEWS:
378           README:
379           configure.in:
380           gtk+.spec:
381           docs/gtk-config.1:
382           gtk/gtkfeatures.h.in: version=1.1.12
383
384 1999-01-04  Sung-Hyun Nam  <namsh@lgic.co.kr>
385
386         * configure.in (ALL_LINGUAS): Added 'ko'.
387
388 Sun Jan  3 17:41:22 1999  Lars Hamann  <lars@gtk.org>
389
390         * gtk/gtkctree.c (real_tree_expand): fixed auto_resize bug
391
392 Sat Jan  2 03:54:30 1999  Tim Janik  <timj@gtk.org>
393
394         * gdk/gdk.h (GDK_PRIORITY_EVENTS): make this G_PRIORITY_DEFAULT.
395
396         * gdk/gdkevents.c (gdk_events_init): add the source and the poll fd with
397         a priority of GDK_PRIORITY_EVENTS.
398
399 1999-01-02  Jeff Garzik  <jgarzik@pobox.com>
400
401         * configure.in, config.h.in, gdk/gdkimage.c:
402         Removed features.h test.
403
404         * gdk/gdkdnd.c:
405         Guard public functions against NULL pointer derefs.
406
407 Fri Jan  1 18:41:09 PST 1999 Manish Singh <yosh@gimp.org>
408
409         * gdk/gdk.c
410         * gdk/gdkinputnone.h
411         * gtk/gtkruler.c: casts to get rid of const warnings
412
413         * gtk/Makefile.am: fix gtktypebuiltins.h dependencies, and do a
414         cmp so people don't whine about rebuilds
415
416         * gtk/gtknotebook.c: use g_snprintf on translated strings, so we
417         don't get buffer overflows
418
419         * gtk/gtkrc.c: use g_strdup_printf instead of g_malloc/sprintf
420         Plug some memleaks.
421
422 1999-01-01  Jeff Garzik  <jgarzik@pobox.com>
423
424         * configure.in, config.h.in:
425         Check for features.h.
426
427         * gdk/gdkevents.c (gdk_event_put, gdk_events_queue):
428         Fixed bug in linked list append logic by replacing hand-coded
429         logic with a call to g_list_append.  Bug found by tml.
430
431         * gdk/gdkimage.c:
432         'gcc -ansi -pedantic' on GNU/Linux spews warnings and errors
433         in sys/ipc.h, including one specific admonishment to use
434         _SVID_SOURCE or _XOPEN_SOURCE.  Manually defined the latter, and
435         included features.h if present to obtain the necessary
436         side-effects.
437
438         * gtk/gtkclist.c, gtk/gtkeditable.c:
439         Eliminates comma-after-final-element warnings.
440
441         * gtk/gtkfontsel.c (gtk_font_selection_init):
442         Fixed bug where an intl string was declared as _("x") in
443         local var initializer.
444
445 1998-12-31  Jeff Garzik  <jgarzik@pobox.com>
446
447         * gtk/gtklabel.c (gtk_label_split_text_wrapped):
448         word->space is now initialized correctly.
449         Reported by Chi-Deok Hwang <cdhwang@sr.hei.co.kr>.
450
451 1998-12-30  Miguel de Icaza  <miguel@nuclecu.unam.mx>
452
453         * gtk/gtkmain.c (gtk_main_do_event): Fix memory leak.
454         gdk_event_put would make a copy of next_event, and next_event was
455         not being freed.
456
457 Wed Dec 30 18:39:21 CST 1998 Shawn T. Amundson <amundson@gtk.org>
458
459         * Released GTK+ 1.1.11
460
461         * INSTALL:
462           NEWS:
463           README:
464           configure.in:
465           gtk+.spec:
466           docs/gtk-config.1:
467           gtk/gtkfeatures.h.in: version=1.1.11
468         
469 1998-12-29  Owen Taylor  <otaylor@srv-19-29.roc.ny.frontiernet.net>
470
471         * gdk/gdkim.c (gdk_wcstombs): Fixed off-by-one
472         error when computing length.
473
474 Thu Dec 24 14:35:48 1998  Jeff Garzik  <jgarzik@pobox.com>
475
476         * gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
477           gtk/gtkprogressbar.c:
478         Pull in string.h for various mem*() and str*() functions,
479         in an autoconf-friendly way.
480
481 Thu Dec 24 12:40:45 1998  Jeff Garzik  <jgarzik@pobox.com>
482
483         * gdk/gdkfont.c: removed unused var
484         * gdk/gdkim.c: 64-bit cast
485         * gtk/gtkaccelgroup.c: point to const data
486         * gtk/gtkdnd.[ch]: (gtk_drag_dest_set, gtk_drag_source_set):
487           Made const-correct.
488         * gtk/gtkfontsel.c: kill uninitialized var warning
489         * gtk/gtkselection.[ch]: (gtk_target_list_new,
490           gtk_target_list_add_table, gtk_selection_add_targets):
491           Made const-correct.
492         * gtk/testgtk.c: 64-bit cast
493
494 Thu Dec 24 03:16:52 CST 1998 Shawn T. Amundson <amundson@gtk.org>
495
496         * INSTALL:
497           NEWS:
498           README:
499           configure.in:
500           gtk+.spec:
501           docs/gtk-config.1:
502           gtk/gtkfeatures.h.in: version=1.1.10
503
504 Wed Dec 23 20:31:40 1998  Owen Taylor  <otaylor@redhat.com>
505
506         * gtk/gtklabel.c: Fix problem where empty labels were 
507         getting a requisition height of zero, and trailing 
508         newlines were being ignored.
509
510 Wed Dec 23 13:58:14 1998  Owen Taylor  <otaylor@redhat.com>
511
512         * gtk/gtklabel.c (gtk_label_parse_uline):
513         label->label should be the mb text _after_ removing
514         the underlines, not before.
515
516         * gtk/gtkmenu.c: Reverted Elliot's tearoff-menu-item
517         title hack. If it deserves being done, it deserves
518         being done right.
519         
520 1998-12-23  Elliot Lee  <sopwith@redhat.com>
521
522         * gtk/gtkmenu.c: Allow programmer to gtk_object_set_data(obj,
523         "GtkTearoffMenuItem_window_title", ..) on a GtkMenuItem and have
524         it be recognized. If we're getting the title out of the GtkLabel,
525         then remove all underscores.
526
527 Tue Dec 22 17:01:43 1998  Owen Taylor  <otaylor@redhat.com>
528
529         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): 
530         Request XmTRANFER_FAILURE on Motif drops not within
531         a drop zone. I don't know why this is necessary,
532         but it is.
533
534         * gdk/gdkdnd.c (gdk_drop_reply): Fixed error where
535         Motif flag field in response was getting wrong
536         values.
537
538 Tue Dec 22 15:55:39 1998  Owen Taylor  <otaylor@redhat.com>
539
540         * gtk/gtkoptionmenu.c (gtk_option_menu_button_press): 
541         Return TRUE for button press events we handle.
542         (Allows option menus in radio buttons to work...)
543
544 Tue Dec 22 14:50:25 1998  Owen Taylor  <otaylor@redhat.com>
545
546         * gtk/gtkdnd.c (gtk_drag_find_widget): Optimization -
547         when we've already found a widget, skip all checks
548         for subsequent children.
549
550         * gtk/gtkdnd.c (gtk_drag_find_widget): Checked for
551         !MAPPED, not !VISIBLE, since a widget (like a notebook
552         page), can be VISIBLE, but !REALIZED or !MAPPED.
553
554         * gtk/gtkdnd.c (gtk_drag_find_widget): Use forall(),
555         not foreach().
556
557 Mon Dec 21 22:01:49 1998  Lars Hamann  <lars@gtk.org>
558
559         * gtk/gtkclist.c (gtk_clist_motion): fixed column resize bug
560
561 Sun Dec 20 04:48:59 1998  Tim Janik  <timj@gtk.org>
562
563         * gdk/gdk.h (GDK_PRIORITY_EVENTS): export the priority at which
564         events are processed.
565
566         * gtk/gtk[main|signal|container].[ch]: removed deprecated _interp
567         variants: gtk_container_foreach_interp, gtk_idle_add_interp,
568         gtk_timeout_add_interp, gtk_signal_connect_interp.
569
570 Sat Dec 19 18:45:30 PST 1998 Shawn T. Amundson <amundson@gtk.org>
571
572         * configure.in: added sv to ALL_LIGNUAS
573
574 Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
575
576         * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
577         that caused this function to always return NULL (noticed by marius
578         vollmer).
579
580 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
581
582         * configure.in: Don't add the gthread libs to 
583         GLIB_LIBS either, or -lgthread -lpthread will get 
584         pulled into all applications because of shlib deps.
585
586         * gtk/gtkmain.h gtk/gtkwidget.c gtk/gtk gdk/gdk: 
587         Use GLIB's priority #define. Revise scale of 
588         priorities.
589
590 Sat Dec 19 03:44:29 PST 1998 Manish Singh <yosh@gimp.org>
591
592         * gtk/gtkmain.c: always run a g_main_iteration, even if
593         there are no active main loops. This fixes the gimp splash
594         screen.
595
596 Sat Dec 19 05:37:51 1998  Tim Janik  <timj@gtk.org>
597
598         * gtk/gtklabel.c (gtk_label_expose): removed return_if_fail
599         (label->words != NULL) since that's a valid case when the label
600         is empty, or just default constructed.
601         fixed indentation prototype arguments and braces in some places.
602         also, pointer comparisions and initializations are done with NULL
603         not 0, there's a reason GLib defines NULL.
604
605         * gdk/gdkevents.c (gdk_events_pending): return (queued_events ||
606         putback_events) so this again returns whether events are pending,
607         not whether other sources like idles are pending.
608
609         * gtk/gtkmain.c (gtk_main_iteration_do): 
610         (gtk_main_iteration): return whether the loop is done, not whether
611         something got dispatch to restore the original behaviour (yosh: this
612         fixes code like in GleSelector).
613
614 Fri Dec 18 19:20:45 PST 1998 Manish Singh <yosh@gimp.org>
615
616         * gtkbutton.[ch]
617         * gtktogglebutton.c: s/(enter|leave)_button/$1/g, since pthreads.h
618         no longer conflicts
619         
620 Sat Dec 19 01:56:13 1998  Lars Hamann  <lars@gtk.org>
621
622         * gtk/gtkclist.c (gtk_clist_button_press): fixed GDK_2BUTTON_PRESS
623         bug.
624
625 Fri Dec 18 15:30:43 PST 1998 Manish Singh <yosh@gimp.org>
626
627         * configure.in: add ja to ALL_LINGUAS
628
629 Fri Dec 18 15:19:54 1998  Owen Taylor  <otaylor@redhat.com>
630
631         * gtk/gtksocket.c (gtk_socket_filter_func): Marked
632         plug window as destroyed before destroying the 
633         window.
634
635 Fri Dec 18 14:17:14 1998  Owen Taylor  <otaylor@redhat.com>
636
637         * gtk/gtkmenu.c (gtk_menu_popup): Set the usize on the
638         tearoff window so when we reparent the window out,
639         the window doesn't shrink down.
640
641 1998-12-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
642
643         * configure.in: do not export the glib flags for thread support to
644         gtk-config.
645
646 Fri Dec 18 01:32:59 1998  Tim Janik  <timj@gtk.org>
647
648         * gtk/gtkmain.c (gtk_main): added gdk_flush() after g_main_run(), so we
649         get the original behaviour back, i.e. the event queue needs to be flushed
650         after a main loop has been quitted.
651         (gtk_main): add/remove the current main loop to/from the main loop
652         before/after init/quit functions have been exected to preserve the
653         original gtk_main_quit() behaviour.
654
655 Thu Dec 17 23:48:29 1998  Tim Janik  <timj@gtk.org>
656
657         * gdk/gdkevents.c (gdk_events_init): changed argument order in call
658         to g_main_add_poll() to match recent glib changes.
659
660 Thu Dec 17 20:33:28 1998  Owen Taylor  <otaylor@redhat.com>
661
662         * gtk-config.in: Add @INTLLIBS@. 
663         gtk-scier-981116-0.patch  Sean Cier <scier@PostHorizon.com>) ]
664
665         * gtk/gtkcolorsel.c gtk/gtkfilesel.c gtk/gtkfontsel.c
666           gtk/gtkgamma.c gtk/gtkinputdialog.c 
667           gtk/gtknotebook.c gtk/gtkrc.c gtk/gtkthemes.c
668           gtk/gtktipsquery.c: 
669         
670         Applied parts of gtk-egger-981215-1 [ Daniel Egger
671         <Daniel.Egger@t-online.de> ] marking additional strings for
672         internationalization.
673         
674         * po/nl.po: Added Dutch translation from 
675         Paul Siegmann <pauls@euronet.nl>.
676         
677 Thu Dec 17 18:25:52 1998  Owen Taylor  <otaylor@redhat.com>
678
679         * gtk/gtkdnd.c (gtk_drag_drop_finished): Remove the
680         info tag from the context so if the source unexpectedly
681         responds in the future, we do nothing properly.
682
683 Thu Dec 17 18:24:41 1998  Owen Taylor  <otaylor@redhat.com>
684
685         * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate): Handle
686         the case where one side of the the pane is empty.
687
688         * gtk/gtkfilesel.c (gtk_file_selection_init): Set
689         dir_title before using it. (Pointed out by
690         Lavoie Philippe <lavoie@zeus.genie.uottawa.ca>)
691         
692 Thu Dec 17 10:53:20 1998  Owen Taylor  <otaylor@redhat.com>
693
694         * gtk/gtklabel.c (gtk_label_set_text): Free 
695         previous label->label_wc.
696
697         * gtk/testgtkrc: Leave font, not fontset commented
698         in by default.
699
700 1998-12-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
701
702         * gdk/gdkim.c: Define gdk_use_mb outside USE_XIM guard. Removed
703         unnecessary USE_XIM guard inside another. Made gdk_use_mb
704         static. Compile gdk_set_locale also if not USE_XIM.     
705
706 Thu Dec 17 00:26:01 1998 Shawn T. Amundson <amundson@gtk.org>
707
708         * Released GTK+ 1.1.9
709
710         * INSTALL:
711           NEWS:
712           README:
713           configure.in:
714           gtk+.spec:
715           gtk/gtkfeatures.h.in:
716           docs/gtk-config.1: version=1.1.9
717
718 Wed Dec 16 21:20:00 PST 1998 Manish Singh <yosh@gimp.org>
719
720         * autogen.sh: rm -rf intl breaks --disable-nls, put it back
721
722         * gtkbutton.[ch]
723         * gtktogglebutton.c: s/(enter|leave)/$1_button/g.
724         Digital: 1 GTK+: 0 (for now)
725
726 Wed Dec 16 22:38:22 CST 1998 Shawn T. Amundson <amundson@gtk.org>
727
728         * gdk/gdkevents.c: updated call to g_main_add_poll
729           instead of g_main_poll_add
730
731 Wed Dec 16 23:32:05 1998  Owen Taylor  <otaylor@redhat.com>
732
733         * gtk/gtklabel.c (gtk_label_expose): Remove 
734         unnecessary cast.
735
736 Wed Dec 16 22:50:52 1998  Owen Taylor  <otaylor@redhat.com>
737
738         * gdk/gdk.c gdk/gdkim.c: Check for broken glibc 2.0 
739         mb functions, and avoid them.
740
741 Wed Dec 16 16:57:55 1998  Owen Taylor  <otaylor@redhat.com>
742
743         * gdk/gdkevents.c (gdk_events_queue): Don't
744         call XPending() if we have putback events.
745
746 Wed Dec 16 16:04:41 1998  Owen Taylor  <otaylor@redhat.com>
747
748         * gtk/gtklabel.c (gtk_label_expose): Do nothing
749         on empty string, quietly.
750
751 Wed Dec 16 15:36:19 1998  Owen Taylor  <otaylor@redhat.com>
752
753         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable):
754         Redraw the character under the cursor when removing
755         the cursor.
756
757 Wed Dec 16 13:06:17 1998  Owen Taylor  <otaylor@redhat.com>
758
759         * gdk/gdk.[ch] gtk/gtkmain.[ch] gtk/gtkprivate.h: Move main
760         thread lock back to GDK - we need it there for locking
761         when translating events. Rename things appropriately.
762
763 Wed Dec 16 11:44:21 1998  Owen Taylor  <otaylor@redhat.com>
764
765         * gtk/gtkrange.c (gtk_range_expose): Fix a x/y typo.
766
767 Wed Dec 16 10:20:27 CST 1998 Shawn T. Amundson <amundson@gtk.org>
768
769         * Released GTK+ 1.1.8
770
771         * ChangeLog:
772           INSTALL:
773           README:
774           gtk+.spec:
775           docs/gtk-config.1: version=1.1.8
776
777 1998-12-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
778
779         * gdk/gdkglobals.c: Define gdk_xim_ic only, if USE_XIM is defined.
780
781 Wed Dec 16 07:03:32 1998  Tim Janik  <timj@gtk.org>
782
783         * gtk/gtkwidget.h: 
784         * gtk/gtkwidget.c: s/USER_DRAW/APP_PAINTABLE/. provided
785         gtk_widget_set_app_paintable() which users can use to make
786         a widget paintable for the application. changed other files accordingly.
787
788 Wed Dec 16 05:26:32 1998  Tim Janik  <timj@gtk.org>
789
790         * configure.in: version bump to 1.1.8, binary age 0, interface age 0,
791         depend on GLib 1.1.8.
792
793         * gdk/gdkprivate.h:
794         * gdk/gdkglobals.c: removed last Gdk threads specific bits.
795
796         * gtk/gtkmain.c (gtk_init): s/g_thread_supported/g_thread_supported()/.
797
798         * gtk/gtkprivate.h: changed GTK_THREADS_ENTER and GTK_THREADS_LEAVE
799         to function macros GTK_THREADS_ENTER() and GTK_THREADS_LEAVE().
800         honour G_THREADS_ENABLED in the definition of GTK_THREADS_ENTER()
801         and GTK_THREADS_LEAVE(). changed callers accordingly.
802
803 Tue Dec 15 21:26:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
804
805         * autogen.sh: warn if glib.m4 or gettext.m4 are not found 
806           in aclocal's directory.
807
808 Tue Dec 15 21:36:14 1998  Owen Taylor  <otaylor@redhat.com>
809
810         * gtk/testgtk.c (create_layout): Create buttons,
811         not combos again.
812
813 1998-12-15  Joel Becker  <jlbec@ocala.cs.miami.edu>
814
815         * autogen.sh: reordered gettextize and aclocal, because
816         gettextize was messing up aclocal.m4.
817
818 Tue Dec 15 22:30:44 1998  Lars Hamann  <lars@gtk.org>
819
820         * gtk/gtkclist.h : 
821         removed clist flag : GTK_CLIST_DRAG_SELECTION
822         added flags : GTK_CLIST_REORDERABLE, GTK_CLIST_USE_DRAG_ICONS,
823         GTK_CLIST_DRAW_DRAG_LINE, GTK_CLIST_DRAW_DRAG_RECT
824         (GtkCListDragPos) : new enum for DND
825         (GtkButtonAction) : new enum of possible mouse button actions
826         (struct _GtkCList): added button_actions array.
827         Added drag_button and click_cell struct, to store cell and
828         mouse button of last button_press_event
829         
830         (struct _GtkCListClass): new class method draw_drag_highlight.
831         (gtk_clist_set_reorderable) (gtk_clist_set_use_drag_icons) :
832         new functions. Moved from gtkctree.h. Now clist is reorderable
833         as well.
834         (gtk_clist_set_button_actions) new function to customize mouse
835         button actions.
836
837         * gtk/gtkclist.c:
838         (gtk_clist_drag_begin)
839         (gtk_clist_drag_motion)
840         (gtk_clist_drag_leave)
841         (gtk_clist_drag_end)
842         (gtk_clist_drag_drop)
843         (gtk_clist_drag_data_get)
844         (gtk_clist_drag_data_received) : new dnd widget methods to
845         implement clists reorderability via DND
846
847         (remove_grab) : new function. remove mouse grab if necessary.
848         (draw_drag_highlight) : new method. Draw dnd highlight depending
849         on clist flags GTK_CLIST_DRAW_DRAG_LINE and GTK_CLIST_DRAW_DRAG_RECT
850
851         (gtk_clist_class_init): added object args "reorderable" and
852         "use_drag_icons"
853
854         (gtk_clist_button_press) (gtk_clist_button_release) :
855         use button_actions array to decide which action to perform.
856         (gtk_clist_motion) : start reorder operation if necessary.
857
858         * gtk/gtkctree.h :
859         (struct _GtkCTree): removed drag_icon, icon_widht, icon_height,
860         drag_row, drag_source, drag_target, reorderable, use_icons,
861         in_drag, drag_rect
862         (gtk_ctree_set_reorderable) :  deprecated function.
863         use gtk_clist_set_reorderable instead.
864         (gtk_ctree_set_use_drag_icons) : deprecated function.
865         use gtk_clist_set_use_drag_icons instead.
866
867         * gtk/gtkctree.c :
868         (gtk_ctree_class_init): removed object args "reorderable" and
869         and "use_drag_icons"
870
871         (draw_xor_line) (draw_xor_rect) (create_drag_icon) (check_cursor)
872         (tree_toggle_selection) (set_mouse_cursor) : removed
873         
874         (draw_drag_highlight) : new clist method. replacement for
875         draw_xor_line and draw_xor_rect functions
876         (check_drag) renamed check_cursor function
877
878         (gtk_ctree_drag_begin)
879         (gtk_ctree_drag_motion)
880         (gtk_ctree_drag_data_received) : new dnd methods to implement ctrees
881         reorderability via DND
882
883         (gtk_ctree_button_release)
884         (gtk_ctree_button_motion) : removed.
885
886         * gtk/testgtk.c:
887         (create_clist) : added new reorderable toggle button
888         
889 Tue Dec 15 19:50:41 1998  Owen Taylor  <otaylor@redhat.com>
890
891         * gtk/gtkctree.c gtk/gtkclist.c gtk/testgtk.c: Use 
892         base[NORMAL] instead of bg[PRELIGHT] so CLists now can be
893         used in detergent commercials.
894
895 Tue Dec 15 16:54:09 1998  Owen Taylor  <otaylor@redhat.com>
896
897         * gtk/gtklabel.h: Moved gtk_label_set() compatiblity
898         define from <gtkcompat.h> to <gtklabel.h> for
899         compatibility.
900
901 1998-12-15  Jeff Garzik  <jgarzik@pobox.com>
902
903         * configure.in, gdk/Makefile.am, gtk/Makefile.am:
904         Removed last remaining thread-related configure bits 
905         that have been moved into GLib.
906
907 1998-12-15  Elliot Lee  <sopwith@bogus.cuc.ml.org>
908
909         * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
910         as the mask for checking for GDK_INPUT_EXCEPTION events.
911
912 1998-12-15  Martin Baulig  <martin@home-of-linux.org>
913
914         * acinclude.m4: Make the gettext check for for libc5 systems.
915
916         * autogen.sh: Not running gettextize fails on a fresh CVS checkout
917         and we'll get a lot of bug reports tomorrow, so I add it back.
918
919         * acinclude.m4: Rename AM_GNU_GETTEXT_GTK to AM_GTK_GNU_GETTEXT and
920         AM_WITH_NLS_GTK to AM_GTK_WITH_NLS to avoid this ugly automake
921         warnings.
922
923 Tue Dec 15 16:06:15 1998  Owen Taylor  <otaylor@redhat.com>
924
925         * acinclude.m4: Provide a hacked version of the
926           gettext macros that never use the included gettext.
927          
928         * Makefile.am configure.in: Remove references
929           to intl/
930         
931         * autogen.sh: Don't run gettextize.
932
933 Tue Dec 15 14:30:35 1998  Owen Taylor  <otaylor@redhat.com>
934
935         * gdk/gdk.h gdk/gdkfonts.c: Added gdk_text_extents_wc()
936
937         * Patch from Jonathan Blanford <jrb@redhat.com> to add line wrapping
938           to label. (Based on patch from Jeff Dairiki
939           <dairiki@mac-ceope.apl.washington.edu> gtk-dairiki-971208-0)
940
941         - Adds new function gtk_label_set_line_wrap()
942         - implement GTK_JUSTIFY_FILL.
943         - rename gtk_label_set to gtk_label_set_text() add
944            gtk_label_set() to gtkcompat.h.
945
946         * Use an internal wc representation in the label, so
947           that we handle underlining and line breaks correctly
948           for multi-byte strings.
949
950 Tue Dec 15 13:32:28 1998  Owen Taylor  <otaylor@redhat.com>
951
952         * gtk/gtkwidget.h: Added GTK_USER_DRAW flag.
953
954         * gtk/gtkwindow.c: Honor GTK_USER_DRAW flag.
955
956         * gtk/gtkdrawwindow.c gtk/Makefile.am: Removed 
957         GtkDrawWindow, which GTK_USER_DRAW obsoletes.
958
959 Tue Dec 15 11:37:05 1998  Owen Taylor  <otaylor@redhat.com>
960
961         * gtk/gtkmain.c: Fixed up some warnings.
962
963 Tue Dec 15 10:32:01 1998  Owen Taylor  <otaylor@redhat.com>
964
965         * gtk/gtk{h,v,}paned.{c,h}: Add new functions 
966         gtk_paned_set_position(),
967         gtk_paned_pack1/2(). The latter take a
968         shrink and resize parameters, that allows setting
969         minimum sizes and getting 'relative' resizing.
970
971 Tue Dec 15 10:26:23 1998  Owen Taylor  <otaylor@redhat.com>
972
973         * gdk/gdkevents.c: Keep separate putback_events and 
974         queued_events queues so that we get both FIFO and 
975         preemptive behavior for gdk_event_put().
976
977 Tue Dec 15 09:22:44 1998  Owen Taylor  <otaylor@gtk.org>
978
979         * gtk/gtkrc.c (gtk_rc_init): Removed unused 
980         variable, fixed minor memory leak.
981
982         * gdk/gdk.c: Fixed another merge problem.
983
984 Tue Dec 15 08:53:38 1998  Owen Taylor  <otaylor@redhat.com>
985
986         * gdk/gdk.c (gdk_get_display): Remove gdk_signal,
987         which crept back in in last commit.
988
989 Tue Dec 15 01:38:53 1998  Owen Taylor  <otaylor@redhat.com>
990
991         * gtk/Makefile.am: Commented out testthreads from
992         the build process, since we won't have any idea
993         how to create a thread.
994
995         * configure.in (LIBS): use glib-config ... gthread
996         so we always build a thread-compatible library.
997
998         * gtk/gtkaccellabel.c gtk/gtkclist.c gtk/gtkcolorsel.c
999           gtk/gtkcombo.c gtk/gtkcontainer.c gtk/gtkentry.c
1000           gtk/gtklist.c gtk/gtkmenuitem.c gtk/gtknotebook.c
1001           gtk/gtkrange.c gtk/gtkselection.c gtk/gtkspinbutton.c
1002           gtk/gtktext.c gtk/gtktooltips.c gtk/gtkwidget.c:
1003         
1004         Add GTK_THREADS_ENTER/LEAVE pairs around timeouts
1005         and idles to account for the fact that they are no
1006         longer called within the GTK+ lock.
1007
1008         * gtk/gtkprivate.h: Added definitions for locking
1009         the main GTK+ mutex.
1010         
1011         * gtk/gtkmain.c: Re-implement the main loop 
1012         in terms of the GLib main loop.
1013
1014         * gdk/gdk.h gdk/gdkthreads.c gdk/Makefile.am: Removed threading 
1015         functionality, as it seems better to subsume GDK within the 
1016         GTK+ lock than vice-versa.
1017
1018         * gdk/gdkevents.c: New file, containing event handling bits 
1019         from gdk.c.
1020
1021         * gdk/gdkevents.c: Implement event source for GDK
1022         events.
1023         
1024         * configure.in gdk/gdkevents.c: Removed attempts to 
1025         subtract base_id, which were already non-functional.
1026
1027 Mon Dec 14 23:05:20 PST 1998 Manish Singh <yosh@gimp.org>
1028
1029         * acconfig.h
1030         * configure.in: removed IPC_RMID_DEFERRED_RELEASE check
1031
1032         * gdk/gdk.c: remove signal handlers, since we do an IPC_RMID
1033         after XShmAttach, and nobody complained
1034
1035 Tue Dec 15 02:27:42 MET 1998 Sven Neumann <sven@gimp.org>
1036
1037         * po/de.po: Replaced the crappy german po-file with a valid one.
1038
1039 Mon Dec 14 16:10:05 1998  Owen Taylor  <otaylor@redhat.com>
1040
1041         * gtk/gtkrc.c (gtk_rc_init): Append locale-specific
1042         suffixes to default rc file names, and look these
1043         up in addition to the base filename, to facilitate
1044         having the correct fontset per-locale.
1045
1046         move $(sysconfdir)/gtkrc to $(sysconfdir)/gtk/gtkrc
1047
1048         * gtk/gtkitemfactory.[ch] (gtk_item_factory_set_translate_func):
1049         New function to set a function to translate menu paths.
1050
1051         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Free
1052         results of g_strsplit().
1053
1054 1998-12-14  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
1055
1056         * configure.in (ALL_LINGUAS): Added 'pt'.
1057
1058         * po/pt.po: Added Portuguese translation.
1059
1060 Mon Dec 14 20:04:31 1998  Stefan Jeske  <stefan@gtk.org>
1061
1062         * gtk/gtkspinbutton.c: Only call gtk_spin_button_update if
1063         the spinbutton is editable.
1064
1065 Mon Dec 14 12:24:13 1998  Owen Taylor  <otaylor@redhat.com>
1066
1067         * HACKING: Added gettext-10.35
1068
1069         * autogen.sh: Run gettextize.
1070
1071 Wed Dec  9 16:29:06 1998  Owen Taylor  <otaylor@redhat.com>
1072
1073         Applied gtk-egger-981010-[12] 
1074         [ Daniel.Egger@t-online.de (Daniel Egger) ]
1075
1076         * gtk/gtkintl.h: New file - defines for localization.
1077
1078         * gtk/gtkfilesel.c gtk/gtkinputdialog.c: Mark strings
1079         for internationalization.
1080
1081         * gtk/gtkmain.c: call bindtextdomain
1082
1083         * po/ - directory for translations. Initially includes
1084         German translation.
1085
1086 Mon Dec 14 02:42:11 1998  Tim Janik  <timj@gtk.org>
1087
1088         * gtk/gtkwidget.c: made GtkWidget::grab_focus a RUN_LAST and
1089         RUN_ACTION signal. moved stuff from gtk_widget_grab_focus() into
1090         gtk_widget_real_grab_focus() so a signal is always emitted
1091         if the focus is grabbed on a widget.
1092
1093 Mon Dec 14 02:13:01 1998  Tim Janik  <timj@gtk.org>
1094
1095         * gtk/gtkmenuitem.c: fixed submenu popup timeouts, we decide whether or
1096         not to delay the submenu popup from a menu item deselection time stamp.
1097         the code looks even more hackish than before, but in practice "feels"
1098         very well.
1099
1100 1998-12-13  Federico Mena Quintero  <federico@nuclecu.unam.mx>
1101
1102         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added a "grab_focus"
1103         signal for widgets.  When the signal is emitted, the widget will
1104         grab the focus.  This is needed to let the user press an
1105         accelerator key in a dialog box and have the corresponding widget
1106         be focused.
1107
1108         * gtk/gtkwidget.c (gtk_widget_class_init): Create the "grab_focus"
1109         signal.  The default handler is simply gtk_widget_grab_focus().
1110
1111 Sun Dec 13 22:15:48 GMT 1998  Tony Gale  <gale@gtk.org>
1112
1113         * docs/gtk_tut.sgml: Update the following sections to the
1114           current API:
1115             - Container Widgets
1116             - CList Widget
1117             - List Widget
1118             - Tree Widget
1119
1120 Sat Dec 12 19:11:35 1998  Tim Janik  <timj@gtk.org>
1121
1122         * gtk/gtkmenuitem.c: made GtkMenuItem::activate a GTK_RUN_ACTION signal.
1123
1124         * gtk/gtkbutton.c: made GtkButton::clicked a GTK_RUN_ACTION signal.
1125
1126         * gtk/gtkfeatures.h.in: define GTK_HAVE_FEATURES_1_1_8.
1127
1128 Sat Dec 12 17:46:55 1998  Owen Taylor  <otaylor@gtk.org>
1129
1130         * gtk/gtklayout.c (gtk_layout_unrealize): Mark
1131         child->window as destroyed so we don't destroy
1132         it again.
1133
1134 Sat Dec 12 17:18:32 1998  Owen Taylor  <otaylor@redhat.com>
1135
1136         * gdk/gdkfont.c (gdk_text_extents): Corrections
1137         to computation of extents of text from a font set.
1138         (from Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
1139          and Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>)
1140         
1141 Fri Dec 11 08:59:12 1998  Owen Taylor  <otaylor@redhat.com>
1142
1143         * gtk/gtklistitem.c (gtk_list_item_style_set):
1144         * gtk/gtklist.c     (gtk_list_style_set):
1145         Added "style_set" handlers.
1146
1147 Fri Dec 11 05:49:30 1998  Owen Taylor  <otaylor@redhat.com>
1148
1149         * gtk/gtkclist.c (gtk_clist_style_set): Add in a "style_set"
1150         handler so that the background of the clist changes
1151         with the theme.
1152
1153 Thu Dec 10 22:02:49 CST 1998 Shawn T. Amundson <amundson@gtk.org>
1154
1155         * Released GTK+ 1.1.7
1156
1157         * INSTALL:
1158           NEWS:
1159           README:
1160           configure.in:
1161           gtk+.spec:
1162           gtk/gtkfeatures.h.in: 
1163           docs/gtk-config.1: Version to 1.1.7
1164
1165 Thu Dec 10 20:48:19 PST 1998 Manish Singh <yosh@gimp.org>
1166
1167         * gtk/gtkclist.c: avoid void pointer math
1168
1169         * gtk/gtkhscale.c
1170         * gtk/gtkhscrollbar.c
1171         * gtk/gtkvscale.c
1172         * gtk/gtkvscrollbar.c: removed trailing , from enums
1173
1174         * gtk/gtksignal.c: can't use enums as a bitfield type, use guint
1175
1176         * gtk/testgtk.c: removed C++ comment added by owenpoo
1177
1178 Thu Dec 10 21:48:34 1998  Owen Taylor  <otaylor@redhat.com>
1179
1180         * gtk/gtkdnd.[ch]: Added gtk_drag_source_unset()
1181
1182 Thu Dec 10 20:42:22 1998  Owen Taylor  <otaylor@redhat.com>
1183
1184         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Use 
1185         gdk_window_get_origin() instead of gdk_window_get_position,
1186         because get_position is unreliable for plugs. 
1187
1188         This is a bad hack, maybe we need GDK_WINDOW_PLUG?
1189
1190 Thu Dec 10 17:58:49 GMT 1998  Tony Gale  <gale@gtk.org>
1191
1192         * docs/gtk_tut.sgml:
1193           - re-write the GtkProgressBar section to the 1.1 API.
1194           - add an Appendix listing all the signals
1195             (apologies to TimJ for taking so long in using his hard work
1196              in automating the extraction - thanx Tim). 
1197         * examples/*: bring them all upto the tutorial versions
1198
1199 Thu Dec 10 02:21:16 1998  Jeff Garzik  <jgarzik@pobox.com>
1200
1201         * gtk/testdnd.c: use g_snprintf, eliminate need for string.h
1202         * gtk/testrgb.c: include string.h, for strlen
1203
1204 Wed Dec  9 17:39:26 1998  Owen Taylor  <otaylor@redhat.com>
1205
1206         * configure.in: Add a case for success in 
1207         test for XUnregisterIMInstantiate, to prevent
1208         screwing up $LIBS.
1209
1210 Wed Dec  9 13:06:31 1998  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1211  
1212         * gdk/gdkim.c (gdk_ic_new,gdk_ic_{set,get}_attr): Fixed argument
1213         list and return type for non-XIM fallback.
1214  
1215         * configure.in: Only build XIM-support if available.
1216  
1217 Wed Dec  9 12:23:30 1998  Owen Taylor  <otaylor@redhat.com>
1218         
1219         * gtk/testselection.c (main): Add in missing 'flags'
1220         field to target list.
1221
1222         * gdk/gdkproperty.c (gdk_atom_intern): Actually
1223         add the atoms to the local cache.
1224
1225 Wed Dec  9 04:57:31 PST 1998 Manish Singh <yosh@gimp.org>
1226
1227         * gdk/gdkprivate.h: put text after #endif in comment
1228
1229         * gdk/gdktypes.h: change whitespace in enum to shut up makeenums.pl
1230
1231         * gtk/testdnd.c: #include <string.h>
1232
1233 Mon Dec  7 10:27:09 1998  Owen Taylor  <otaylor@redhat.com>
1234
1235         * gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
1236         signals through the widget heirarchy. This is unpleasant, as it
1237         causes more X traffic, but is necessary, because we have to clean
1238         up our Input Contexts before destroying the X windows.
1239         (from matsu-981109-0.patch)
1240         
1241 Mon Dec  7 10:18:18 1998  Owen Taylor  <otaylor@redhat.com>
1242
1243         Applied gtk-a-higuti-981202-0 : 
1244         [ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
1245         
1246         * gdk/gdk.h gdk/gdk.c
1247                 (gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
1248                         implemented by a combination of Xlib functions, so
1249                         it works even with X_LOCALE.
1250                 (gdk_wcstombs): New function.
1251                 (g_mbtowc): Removed. No longer needed.
1252
1253         * gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c: 
1254                 Added _wc() variants to gdk_text_width(), 
1255                 gdk_char_width(), gdk_draw_text(),
1256                 
1257         * gdk/gdki18n.h
1258                 (mblen, mbtowc, wctomb, mbstowcs, wcstombs,
1259                  wcslen, wcscpy, wcsncpy):
1260                         Removed. No longer needed.
1261                 (iswalnum): Removed.
1262                 (gdk_iswalnum): New macro.
1263                 (gdk_iswspace): New macro.
1264         * gdk/gdktype.h
1265                 (GdkWChar): New typedef.
1266         
1267         * gtk/gtkentry.h, gtk/gtkentry.c
1268                 There are many changes according to the change of the
1269                 internal representation of text, from multibyte string
1270                 to wide characters. 
1271         * gtk/gtkprivate.h, gtk/gtkmain.c
1272                 Removed the variable gtk_use_mb and related codes.
1273         * gtk/gtkspinbutton.c
1274                 Some changes according to the change of type of entry->text.
1275         * gtk/gtktext.h, gtk/gtktext.c
1276                 Changed the internal representation of text. We use GdkWchar
1277                 if a fontset is supplied. If not, we use guchar to save
1278                 memory.
1279         
1280 Tue Dec  1 15:20:39 1998  Owen Taylor  <otaylor@redhat.com>
1281
1282         * gdk/gdkwindow.c (gdk_window_new): When creating
1283         a window with a specified non-system visual, use
1284         a matching colormap.
1285
1286 Mon Nov 30 11:50:13 1998  Owen Taylor  <otaylor@redhat.com>
1287
1288         * gdk/gdk.c gdk/gdkim.c gdk/gdkprivate.h gdk/gdk.h
1289           gdk/gdktypes.h gtk/gtkeditable.c gtk/gtkmain.c
1290           gtk/gtkentry.c gtk/gtktext.c:
1291
1292          Applied matsu-981109-0
1293          [ matsu@arch.comp.kyutech.ac.jp (Takashi Matsuda) ]
1294         
1295          - Change system of setting input method values 
1296            from varargs to a structure, similar to GC's
1297            or window attributes.
1298
1299          - Various fixes to event handling.
1300
1301          Also:
1302
1303          * gdk/gdkim.c: Split of input method stuff into
1304            a separate source file.
1305
1306          * Remove GdkIM typedef, change everything from
1307            GdkIC to GdkIC * to be consistent with the
1308            rest of GTK.
1309         
1310 Wed Dec  9 00:41:41 1998  Owen Taylor  <otaylor@redhat.com>
1311
1312         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Allocate
1313         correct amount of memory for strings.
1314
1315 Tue Dec  8 18:29:05 CST 1998 Shawn T. Amundson <amundson@gtk.org>
1316
1317         * Released GTK+ 1.1.6
1318
1319         * NEWS: updated
1320
1321         * gtk/Makefile.am:
1322           gtk/testgtk.c:
1323           gtk/gtkrc.h:
1324           gtk/gtkrc.c: Read in default files.
1325
1326 Wed Dec  9 00:49:12 1998  Tim Janik  <timj@gtk.org>
1327
1328         * gtk/gtktypeutils.h:
1329         * gtk/gtktypeutils.c: added gtk_type_query() which returns a newly
1330         allocated structure holding certain type specific informations.
1331         fixed the big bunch of `discards const' warnings with the
1332         initialization of enum/flags values.
1333
1334 Tue Dec  8 15:10:17 1998  Owen Taylor  <otaylor@redhat.com>
1335
1336         * gtk/gtkwindow.c (gtk_window_transient_parent_realized):
1337         Fixed order of arguments to gdk_window_transient_for().
1338
1339 Tue Dec  8 18:02:57 GMT 1998  Tony Gale  <gale@gtk.org>
1340
1341         * examples/Makefile: simple top level Makefile that invokes all
1342           the sub-directory Makefiles.
1343
1344 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
1345
1346         * gtk/testgtk.c: Functions to test the toolbar space style.
1347
1348         * gtk/gtktoolbar.c: Add a private GtkToolbarChildSpace subclass of
1349         GtkToolbarChild to hold allocation. Set default space style to
1350         GTK_TOOLBAR_SPACE_EMPTY, define SPACE_LINE_* for separator
1351         fraction defaults.
1352         (gtk_toolbar_paint_space_line): New function; paints the separator
1353         line, using "toolbar" as the detail.
1354         (gtk_toolbar_expose): (gtk_toolbar_draw): Handle CHILD_SPACE when
1355         style is set to SPACE_LINE.
1356         (gtk_toolbar_size_allocate): Store space allocations.
1357         (gtk_toolbar_insert_element): If we are a space, allocate and
1358         initialize a GtkToolbarChildSpace instead of a GtkToolbarChild.
1359         (gtk_toolbar_set_space_style): New function.
1360
1361         * gtk/gtktoolbar.h: Add GtkToolbarSpaceStyle, with styles of EMPTY
1362         and LINE. Add prototype for gtk_toolbar_set_space_style.
1363
1364 Mon Dec  7 16:03:55 1998  Owen Taylor  <otaylor@redhat.com>
1365
1366         * gtk/gtkthemes.h: Remove random unnecessary includes
1367         of standard headers.
1368
1369 1998-12-07  Damon Chaplin  <DAChaplin@msn.com>
1370
1371         * gtk/gtkfontsel.c (gtk_font_selection_select_best_style): made sure
1372         we only try to match styles which are currently shown.
1373
1374         (gtk_font_selection_init): set the notebook tabs homogeneous and set
1375         the border, so we don't need to set the size explicitly (bad for i18n).
1376         Used the clist auto-resize feature for the font and style lists on the
1377         main page and all the filters. Used padding for the 'Reset Filter'
1378         button instead of spaces around it (bad for i18n).
1379
1380         (gtk_font_selection_find_font): when searching for
1381         a font, if we can't match both the family and foundry, we return any
1382         font where just the family matches. (The foundry can even be '*'.)
1383
1384         (gtk_font_selection_show_available_styles): 
1385         (gtk_font_selection_realize_list): don't set the style clist row
1386         colours (for the charset rows) until the clist is realized, since we
1387         use the clist style's insensitive colours.
1388
1389 Mon Dec  7 13:38:06 1998  Owen Taylor  <otaylor@redhat.com>
1390
1391         * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
1392         _after_ doing XShmAttach. This should work everywhere,
1393         and avoid the need for signal handlers or configure
1394         checks.
1395
1396 Thu Dec  3 19:58:45 1998  Owen Taylor  <otaylor@redhat.com>
1397
1398         * gtk/gtkinputdialog.c: Use _add_with_viewport() for
1399         scrolled window contents.
1400
1401 1998-12-07  Federico Mena Quintero  <federico@nuclecu.unam.mx>
1402
1403         * gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
1404         field in the structure.
1405
1406 Mon Dec  7 15:15:06 GMT 1998  Tony Gale <gale@gtk.org>
1407
1408         * docs/gtk_tut.sgml: Start mass update for GTK 1.1
1409         * examples/extract.sh: Look for the best version of awk
1410         * examples/extract.awk: Fix FD leak
1411         * example/base: minimal example from Tutorial
1412
1413 Mon Dec  7 01:29:27 1998  Owen Taylor  <otaylor@gtk.org>
1414
1415         * gtk/gtkwindow.c: New functions
1416         gtk_window_set_transient_for() - set up a "transient for" relationship.
1417         gtk_window_set_default_size() - set the initial size of a window
1418            distinct from its minimum size.
1419         gtk_window_set_geometry_hints() - Allow the user to set
1420            minimum, maximum sizes, aspect rations, and gridded geometry, 
1421            possibly all with respect to a subwidget of the window.
1422         These interfaces are still a wee bit experimental.
1423
1424         * gdk/gdk.c: Added gdk_window_set_transient_for(),
1425         gdk_window_set_geometry_hints(), and gdk_window_set_role().
1426
1427         * gdk/gdktypes.h: Added new types for find-grained specification
1428         of WM hints.
1429
1430         * gtk/testgtk.c: Various changes to tests to test the
1431         above new functions.
1432
1433         * gtk/gtkfontsel.c: Squash a few 'const' warnings.
1434         
1435         * gtk/gtktogglebutton.c (gtk_toggle_button_realize): Restored
1436         call to gtk_style_set_background() to prevent egregious
1437         flashing to black.
1438
1439 Mon Dec  7 03:52:01 1998  Tim Janik  <timj@gtk.org>
1440
1441         * gtk/gtksignal.c (gtk_handlers_run): when marshalling connect_object
1442         signals, don't pass the data pointer twice, but swap it with the
1443         object pointer (proposed on Nov 30 1998 on gtk-devel-list).
1444
1445 Mon Dec  7 03:08:39 1998  Tim Janik  <timj@gtk.org>
1446
1447         * gtk/gtktypeutils.h: 
1448         * gtk/gtktypeutils.c: reverted Marius's change to expose the type systems
1449         internal type info data to the user. if such functionality is required
1450         we should provide wrapping accessors, ala gtk_signal_query(). also the
1451         GtkTypeInfo structures are dynamically allocated memory portions, so
1452         only the type system is really allowed to access that stuff.
1453
1454         * gtk/gtksignal.c (gtk_signal_connect_by_type): reverted marius change,
1455         since it destroys the possibility to implement automatic marshaller
1456         lookups some day, and it also disables third party code's ability to
1457         connect to any signal.
1458
1459 Mon Dec  7 01:32:18 1998  Tim Janik  <timj@gtk.org>
1460
1461         * gtk/gtkfilesel.c (gtk_file_selection_key_press): always intercept the
1462         Tab key on the entry. the focus shouldn't get lost even if completion
1463         is attempted from an empty entry, since an empty entry string does
1464         indeed have a valid completion meaning (complete all).
1465         (gtk_file_selection_init): cast the gchar array parameter in calls to
1466         gtk_clist_new_with_titles() to quit compiler warnings.
1467         (check_dir): the no_stat_dirs struct must not be const, since we do
1468         indeed modify its contents.
1469
1470         * gtk/testgtk.c (event_watcher): adapted prototype to fit new emission
1471         hook semantics.
1472
1473         * gtk/gtksignal.h:
1474         * gtk/gtksignal.c:
1475         changed emission allocation, so we don't use a doubly linked list
1476         but link ourselfs (singly linked).
1477         changed emission hooks, they get the emision parameters passed as
1478         well now and are emitted during the actuall signal emission (after
1479         the RUN_FIRST class method, but prior to RUN_FIRST handlers).
1480         the existing restrictions do still apply to signal emission hooks,
1481         i.e. an emission may not be stopped or restarted from an emission hook.
1482         due to possibly huge perfomance impacts, frequent use of emision hooks
1483         is also not recommended.
1484         (gtk_signal_next_and_invalidate): added an
1485         assertments which explicits what the code assumes anyways: a
1486         maximum amount of 65535 signals.
1487
1488         * gtk/gtkcontainer.h: deprecated gtk_container_foreach_interp(),
1489         gtk_container_foreach_full() should be used instead.
1490
1491         * gtk/gtkmain.h:
1492         deprecated gtk_timeout_add_interp and gtk_idle_add_interp, since
1493         we provide _full variants.
1494
1495         * gtk/gtksignal.h: deprecated gtk_signal_connect_interp(), we provide
1496         gtk_signal_connect_full() for long enough now.
1497
1498 1998-12-06  Marius Vollmer  <mvo@zagadka.ping.de>
1499
1500         * gtk/gtksignal.c (gtk_signal_newv): Allow a NULL marshaller.
1501         (gtk_signal_connect_by_type): Allow only no_marshal handlers to
1502         connect to signals with a NULL marshaller.
1503
1504         * gtk/gtktypeutils.c (gtk_type_get_info): New.
1505         gtk/gtktypeutils.h (gtk_type_get_info): New prototype.
1506
1507 Sun Dec  6 14:27:35 1998  Stefan Jeske  <stefan@gtk.org>
1508
1509         * gtk/gtkspinbutton.c (gtk_spin_button_draw_arrow): Grey out
1510         arrows if wrap == FALSE and interval borders are reached.
1511
1512 Sat Dec  5 21:07:09 1998  Owen Taylor  <otaylor@gtk.org>
1513
1514         * gtk/gtkaspectframe.c (gtk_aspect_frame_size_allocate): Fixed
1515         long-standing typo in aspect ratio computation code.
1516         (pointed out by Sebastian Rittau <srittau@jroger.in-berlin.de>)
1517
1518 Fri Dec  4 01:20:06 1998  Lars Hamann  <lars@gtk.org>
1519
1520         * gtk/gtkclist.c (gtk_clist_button_release): call toggle_row with
1521         valid row numbers only
1522         (toggle_row): check if clist_row != NULL
1523
1524 Fri Dec  4 00:50:12 1998  Lars Hamann  <lars@gtk.org>
1525
1526         * gtk/gtkctree.c (gtk_ctree_export_to_gnode): fixed for-loop.
1527
1528         * gtk/gtkclist.c 
1529         (gtk_clist_set_column_visibility)
1530         (gtk_clist_column_titles_active)
1531         (gtk_clist_column_titles_active)
1532         (gtk_clist_column_title_passive)
1533         (gtk_clist_column_title_active): few additional tests whether
1534         column->button != NULL
1535
1536 Thu Dec  3 16:49:18 1998  Owen Taylor  <otaylor@redhat.com>
1537
1538         * gtk/gtkdnd.c (DROP_ABORT_TIME): Changed to 5 min
1539         from 10 seconds, so it doesn't abort while users
1540         have an ACTION_ASK menu up.
1541
1542         * gtk/gtkdnd.c: Hide the icon window between sending a a 
1543         drop event to the destination and displaying the
1544         snapback animation, so that it doesn't hang around
1545         during ACTION_ASK.
1546
1547 Thu Dec  3 16:37:42 1998  Owen Taylor  <otaylor@redhat.com>
1548
1549         * gtk/gtkclist.c (get_cell_style): Use GTK_STATE_INSENSITIVE
1550         for the foreground of cells for CLists in the insensitive
1551         state, instead of GTK_STATE_PRELIGHT.
1552
1553 Thu Dec  3 06:20:59 1998  Tim Janik  <timj@gtk.org>
1554
1555         * gtk/gtkwindow.c: moved checks upon focus setting from
1556         gtk_window_real_set_focus to gtk_window_set_focus, so we don't
1557         emit the signal if unneccessary.
1558
1559         * gtk/gtkwidget.c (gtk_widget_grab_focus): clear up the old focus
1560         containers when grabbing focus on a new widget. this is based on
1561         a patch from Alexis Mikhailov, submitted to gtk-list on 4 Nov 1998.
1562
1563         * gtk/gtkclist.c (gtk_clist_focus_out): set CLIST_CHILD_HAS_FOCUS
1564         flag, so we take the buttons into consideration upon the next focus
1565         request.
1566
1567         * gtk/gtkcontainer.c (gtk_container_set_focus_child): fixed an
1568         assertment.
1569
1570 Wed Dec  2 17:45:21 CST 1998 Shawn T. Amundson <amundson@gtk.org>
1571
1572         * gtk/gtkpixmap.c: Fixes for low-color displays and a slight
1573           enhancement for true-color displays.
1574
1575         * INSTALL:
1576           README:
1577           configure.in:
1578           gtk+.spec:
1579           docs/gtk-config.1: up to version 1.1.6
1580
1581 Wed Dec  2 01:36:49 PST 1998 Manish Singh <yosh@gimp.org>
1582
1583         * gtk/gtkfeatures.h.in: lets #define GTK_HAVE_FEATURES_1_1_6 before
1584         we release it this time
1585
1586 Wed Dec  2 01:39:02 1998  Tim Janik  <timj@gtk.org>
1587
1588         * gtk/gtknotebook.h: 
1589         * gtk/gtknotebook.c: s/gtk_notebook_nth_page/gtk_notebook_get_nth_page/.
1590
1591         * incremented version number to 1.1.6 and made Gtk
1592         dependant on GLib 1.1.6.
1593
1594         * gtk/gtkwidget.h (struct _GtkRequisition): changed width and height
1595         from guint16 to gint16, since sizes bigger than 32767 are not supported
1596         anyways, and aritmethics with intermediate negative values are possible
1597         now.
1598
1599 Tue Dec  1 00:00:04 1998  Tim Janik  <timj@gtk.org>
1600
1601         * gtk/gtkscrolledwindow.c:
1602         implementation of GTK_POLICY_NEVER functionality, added rationales
1603         on the policy and size requisition handling at the top.
1604         (gtk_scrolled_window_size_request):
1605         we assume a default minimum for our child's width and height
1606         if [hv]scrollbar_policy != GTK_POLICY_NEVER, except when the user
1607         specified the dimension explicitely.
1608         (gtk_scrolled_window_size_allocate): 
1609         do not show scrollbars if [hv]scrollbar_policy == GTK_POLICY_NEVER.
1610
1611         * gtk/gtkviewport.c (gtk_viewport_size_request): report the real
1612         size we require (including the child).
1613
1614         * gtk/gtkclist.c:
1615         (gtk_clist_size_request): report the real size required.
1616
1617         * gtk/gtkenums.h (enum GtkPolicyType): added GTK_POLICY_NEVER.
1618
1619         * gtk/gtkobject.c (gtk_object_init_type): object_type doesn't
1620         need to be a static variable.
1621
1622 Mon Nov 30 22:41:25 1998  Tim Janik  <timj@gtk.org>
1623
1624         * gtk/gtkclist.h: 
1625         * gtk/gtkclist.c: 
1626         * gtk/gtkviewport.h:
1627         * gtk/gtkviewport.c:
1628         * gtk/gtktext.h:
1629         * gtk/gtktext.c:
1630         * gtk/gtklayout.h:
1631         * gtk/gtklayout.c:
1632         * gtk/gtkwidget.h:
1633         * gtk/gtkwidget.c:
1634         * gtk/gtkscrolledwindow.h:
1635         * gtk/gtkscrolledwindow.c:
1636         s/scroll_adjustements/scroll_adjustments/
1637         s/scroll_adjustments/set_scroll_adjustments/g
1638
1639 Tue Dec  1 22:45:58 1998  Lars Hamann  <lars@gtk.org>
1640
1641         * gtk/gtkclist.h (struct _GtkCListClass): new class method/signal
1642         row_move.
1643         * gtk/gtkclist.c (gtk_clist_row_move): new public function.
1644         emit a row_move signal
1645         (real_row_move): move source_row to dest_row
1646         (gtk_clist_swap_rows): use gtk_clist_row_move calls.
1647         (gtk_clist_columns_autosize): resize all columns to their optimal
1648         width
1649         * gtk/gtkctree.c (real_row_move): use gtk_ctree_move to move
1650         entire sub-tree.
1651         * gtk/gtknotebook.c (gtk_notebook_nth_page): get nth page widget.
1652
1653 Tue Dec  1 02:40:22 PST 1998 Manish Singh <yosh@gimp.org>
1654
1655         * configure.in
1656         * gdk/Makefile.am
1657         * gtk/Makefile.am: Put -DFOO stuff into Makefile.am INCLUDES.
1658         Separate vars for each, for granularity.
1659
1660 Tue Dec  1 02:19:54 1998  Tim Janik  <timj@gtk.org>
1661
1662         * gtk/gtkenums.h: fixed a stupid error of mine about the run type
1663         values.
1664
1665 1998-11-30  Elliot Lee  <sopwith@cuc.ml.org>
1666
1667         * {gdk,gtk}/*.c: Make read-only data structures "static const" to
1668         allow them to be shared, mainly including (but not limited to) the
1669         GtkTypeInfo structures for each class.
1670
1671         * gtk/gtkfilesel.c: Add /net to the "leave me alone" directory listing.
1672
1673 Mon Nov 30 12:17:10 1998  Jeff Garzik  <jgarzik@pobox.com>
1674
1675         * gtk/gtksignal.c:
1676         Surround debug variable with #ifdef to silence gcc.
1677
1678         * gtk/gtknotebook.c (gtk_notebook_reorder_child):
1679         Added initializer to quiet gcc warning.
1680         Added assertion to check for null pointer deref.
1681
1682 Mon Nov 30 10:11:29 1998  Tim Janik  <timj@gtk.org>
1683
1684         * gtk/testgtkrc: merged testgtkrc with the pre-themes one, removed
1685         system specific includes.
1686
1687         * gtk/gtksignal.c: asured that stop and restart emissions are also
1688         checked and processed for not connected objects. fixed up restart
1689         emission administration. invoke emission hooks after emission, hooks
1690         are not supposed to muck around with the current emission, and
1691         may also not cause emission restarts. fixed up stop emission
1692         administration.
1693
1694 Mon Nov 30 06:20:36 1998  Tim Janik  <timj@gtk.org>
1695
1696         * gtk/testgtk.c: added an event watcher for enter/leave based on
1697         signal emission hooks.
1698
1699         * gtk/gtkobject.c (gtk_object_class_init): made GtkObject::destroy a
1700         GTK_RUN_NO_HOOKS signal.
1701
1702         * gtk/gtksignal.h: 
1703         * gtk/gtksignal.c: implemented emission hooks, new hooks can be added
1704         to a signal with gtk_signal_add_emission_hook or
1705         gtk_signal_add_emission_hook_full, and can be removed again with
1706         gtk_signal_remove_emission_hook.
1707
1708         * gtk/gtkenums.h: remove GTK_RUN_MASK, since it doesn't represent
1709         an appropriate mask for signal runtypes for a long time now.
1710         added GTK_RUN_NO_HOOKS value, which is used to flag signals
1711         that do not allow the running of signal hooks.
1712
1713 1998-11-26  Michael Krause  <m.krause@tu-harburg.de>
1714
1715         * gtk/gtknotebook.c (gtk_notebook_switch_page): made 'page_num'
1716         argument a gint: switch_page signal delivers valid page numbers
1717         again.
1718
1719 Sun Nov 29 06:12:01 1998  Tim Janik  <timj@gtk.org>
1720
1721         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment): 
1722         set composite names.
1723
1724         * gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
1725         check, people must use gtk_type_init().
1726         fixed up type allocation for foreign fundamentals.
1727
1728         * gtk/gtkwidget.h: 
1729         * gtk/gtkwidget.c: added gtk_widget_set_composite_name() which is meant
1730         for internal use by containers, that want to assign specific composite
1731         names to their composite children.
1732         added gtk_widget_get_composite_name() which will return a newly
1733         allocated string, containing the composite name of a widget. valid
1734         composite names can only be retrived from widgets that have a parent
1735         assigned and are flagged as GTK_COMPOSITE_CHILD.
1736
1737         * gtk/gtkcontainer.h:
1738         * gtk/gtkcontainer.c: added a new function
1739         gtk_container_child_default_composite_name() which will return a
1740         newly allocated string, holding the composite name of a containers
1741         child. a default implementation is provided which will compose the
1742         composite name out of the widgets type and its sequential children
1743         id. this implementation can be overidden through a new class function
1744         *(composite_name)().
1745
1746 Sat Nov 28 10:57:59 1998  Owen Taylor  <otaylor@redhat.com>
1747
1748         * gtk/gtkwindow.c (gtk_window_expose_event): Removed bogus
1749         expose_event handler - we had two expose_event
1750         handlers!
1751
1752 Sat Nov 28 03:13:42 1998  Tim Janik  <timj@gtk.org>
1753
1754         * gtk/gtkscrolledwindow.h: 
1755         * gtk/gtkscrolledwindow.c: changed scrolled window inheritance,
1756         it inherits from GtkBin now.
1757
1758         * gtk/gtkbin.c (gtk_bin_unmap): removed superfluous check for
1759         visibility of child.
1760         (gtk_bin_draw): removed superfluous check for GTK_WIDGET_DRAWABLE().
1761         added check so a child gets only drawn if it's visible.
1762
1763         * gtk/gtkwidget.h: 
1764         * gtk/gtkwidget.c: removed gtk_widget_draw_children().
1765
1766         * gtk/gtkstyle.h: 
1767         * gtk/gtkstyle.c: rmoved gtk_reset_widget_shapes.
1768
1769         * gtk/gtkwidget.h: 
1770         * gtk/gtkwidget.c: removed crufty relict: gtk_widget_is_child().
1771         added internal function gtk_widget_reset_shapes() from gtkstyle.c.
1772
1773         * gtk/gtkrc.h:
1774         * gtk/gtkrc.c: (gtk_rc_find_pixmap_in_path): removed bogus gscanner
1775         argument, changed callers.
1776
1777         * gtk/gtkmenufactory.c: GtkMenuFactory is deprecated for a long time,
1778         it will issue a warning now.
1779
1780         * gtk/gtkcompat.h: new file to #define aliases for historic
1781         function names.
1782
1783         * changed 8 function names for consistency and provided aliases to keep
1784         source compatibility in gtkcompat.h:
1785         (gtk_accel_label_get_accel_width): renamed from gtk_accel_label_accelerator_width
1786         (gtk_container_set_border_width): renamed from gtk_container_border_width
1787         (gtk_notebook_get_current_page): renamed from gtk_notebook_current_page
1788         (gtk_packer_configure): renamed from gtk_packer_set_child_packing
1789         (gtk_paned_set_gutter_size): renamed from gtk_paned_gutter_size
1790         (gtk_paned_set_handle_size): renamed from gtk_paned_handle_size
1791         (gtk_scale_get_value_width): renamed from gtk_scale_value_width
1792         (gtk_window_set_position): renamed from gtk_window_position
1793
1794         * renamed a few recently added funtions for consistency:
1795         (gtk_notebook_get_tab_label): renamed from gtk_notebook_query_tab_label.
1796         (gtk_notebook_get_menu_label): renamed from gtk_notebook_query_menu_label.
1797         (gtk_progress_configure): renamed from gtk_progress_reconfigure.
1798
1799 Fri Nov 27 18:57:20 PST 1998 Manish Singh <yosh@gimp.org>
1800
1801         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add_with_viewport):
1802         check for existing viewport first, and don't add one if there
1803         already is one
1804
1805 Sat Nov 28 00:06:49 1998  Tim Janik  <timj@gtk.org>
1806
1807         * gtk/gtkwidget.h: 
1808         * gtk/gtkwidget.c: deprecated gtk_widget_freeze_accelerators and
1809         gtk_widget_thaw_accelerators, we provide gtk_widget_lock_accelerators
1810         and gtk_widget_unlock_accelerators.
1811
1812         * gtk/gtklayout.h:
1813         * gtk/gtklayout.c: implemented incremental freezing facility.
1814
1815         * gtk/gtktext.h: 
1816         * gtk/gtktext.c: implemented incremental freezing facility.
1817
1818         * gtk/gtkenums.h:
1819         * gtk/gtkaccelgroup.h: moved enum GtkAccelFlags into this place.
1820
1821         * gtk/gtkentry.h:
1822         * gtk/gtkentry.c:
1823         deprecated gtk_entry_adjust_scroll().
1824         
1825         * random GtkType, macro and indentation fixes.
1826
1827 Fri Nov 27 22:50:15 1998  Tim Janik  <timj@gtk.org>
1828
1829         * gtk/gtkclist.h: 
1830         * gtk/gtkclist.c: implemented incremental freezing facility, added
1831         a new class member (*refresh)() which takes over the thaw
1832         functionality. the clist FROZEN flag got removed on the way.
1833         * gtk/gtkctree.c: adaptions to feature the clist refresh functionality
1834         and incremental freezing.
1835
1836         * gtk/gtkcalendar.c: implemented incremental freezing facility.
1837
1838 Fri Nov 27 11:41:27 1998  Raph Levien  <raph@gimp.org>
1839
1840         * gdk/gdkinputcommon.h (gdk_input_common_init): Fixed it so that
1841         it still includes the core pointer in gdk_input_devices even
1842         if the XInput extension is not present in the X server.
1843
1844 Fri Nov 27 12:17:15 1998  Owen Taylor  <otaylor@redhat.com>
1845
1846         * gtk/gtkdnd.[ch] (gtk_drag_get_source_widget): New function to
1847         get the source widget of a drag.
1848
1849         * gtk/gtkdnd.[ch]: Target flags GTK_TARGET_SAME_[WIDGET/APP]
1850         to restrict certain targets to the same widget or to
1851         the same application.
1852
1853         * gtk/testdnd.c: Test gtk_drag_get_source_widget().
1854         
1855 Thu Nov 26 19:11:46 1998  Lars Hamann  <lars@gtk.org>
1856
1857         * gtk/gtk-boxed.defs (GtkCTreeNode): define GtkCTreeNode as boxed type
1858         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_CTREE_NODE_TYPE
1859         instead of GTK_TYPE_POINTER in signal definitions.
1860         (patch from James Henstridge <james@daa.com.au>)
1861
1862 Thu Nov 26 18:48:44 1998  Lars Hamann  <lars@gtk.org>
1863
1864         * gtk/gtkclist.c (set_cell_contents)
1865         * gtk/gtkctree.c (set_cell_contents): call column_auto_resize only
1866         if auto.resize == TRUE
1867
1868         * gtk/gtknotebook.c (gtk_notebook_set_shape) (gtk_notebook_expose):
1869         don't draw tab, if show_tabs == FALSE
1870         (bug reports from Alexis Mikhailov / Dave Cole)
1871         (gtk_notebook_focus_changed) (gtk_notebook_draw_focus): draw only
1872         the focus rectangle, not the hole tab.
1873
1874 Thu Nov 26 03:18:08 1998  Tim Janik  <timj@gtk.org>
1875
1876         * gtk/gtkclist.h: 
1877         * gtk/gtkctree.h: 
1878         * gtk/gtkclist.c:
1879         * gtk/gtkctree.c: reverted bogus and undocumented!!! changes from
1880         Jay Cox (98/11/23 13:53:26) which `const' qualified char* arrays.
1881
1882         * gtk/maketypes.awk: changed underline substitution, so we get
1883         GTK_TYPE_CTREE_POS instead of the broken GTK_TYPE_C_TREE_POS.
1884         * gtk/makeenums.pl: likewise.
1885         * gtk/gtkctree.c: adapted type names accordingly.
1886
1887 Tue Nov 24 11:31:06 1998  Owen Taylor  <otaylor@redhat.com>
1888
1889         * docs/Changes-1.2.txt: Edited section on the ScrolledWindow.
1890
1891         * gtk/gtklayout.c (gtk_layout_set_[hv]adjustment): Remove
1892         some code duplication.
1893
1894         * gtk/gtklayout.[ch] Fixed mapping and unmapping of child windows
1895         and child widgets when scrolling greater than 32k pixels.
1896
1897         * testgtk.c: Modified layout test to test scrolling over 
1898         long distances.
1899
1900         * gtk/gtkplug.c: Added a few blank lines.
1901
1902 Tue Nov 24 11:11:05 1998  Owen Taylor  <otaylor@redhat.com>
1903
1904         * gtk/gtklayout.[ch]: Fixed up copyright message.
1905
1906         * gdk/gdkrgb.c (DM): Make the dither matrix constant
1907         so it can be shared.
1908
1909         * gtk/gtkdnd.c: Make cursor bitmaps const.
1910
1911         * gdk/gdk.h gdk/gdkpixmap.c: Added const to 
1912         gdk_pixmap/bitmap_create_from_data.
1913
1914 Tue Nov 24 07:46:09 1998  Tim Janik  <timj@gtk.org>
1915
1916         * docs/Changes-1.2.txt: added a section on scrolled windows and
1917         scrollable widgets.
1918
1919 1998-11-24  Andrew T. Veliath  <andrewtv@usa.net>
1920
1921         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): Include radio
1922         buttons when setting relief for button items.
1923         (gtk_toolbar_set_button_relief): Same.
1924
1925 1998-11-23  Jeff Garzik  <jgarzik@pobox.com>
1926
1927         * gdk/Makefile.am, gtk/Makefile.am:
1928         Removed DEFS "+=" mess that breaks recent automakes.
1929         INCLUDES is the correct way to add to CFLAGS from Makefile.am.
1930
1931         * gdk/gdk.c, gdk/gdkglobals.c, gdk/gdkimage.c, gdk/gdkinput.c,
1932         gdk/gdkpixmap.c, gdk/gdkthreads.c, gdk/gdkwindow.c,
1933         gdk/gxid_lib.c, gtk/fnmatch.c, gtk/gtkclist.c, gtk/gtkmain.c,
1934         gtk/testthreads.c:
1935         Include "config.h" instead of "../config.h".
1936         Now that DEFS works again, automake will automatically pass us
1937         the location of config.h in -I.
1938
1939 Mon Nov 23 22:10:09 1998  Owen Taylor  <otaylor@redhat.com>
1940
1941         * gtk/Makefile.am gtk/gtk.h gtk/gtklayout.[ch]
1942         gtk/gtkplug.[ch] gtk/gtksocket.[ch] gtk/gtk.h:
1943
1944         Added layout widget for scrolling arbitrarily big areas.
1945         Added plug/socket widgets for interprocess embedding.
1946
1947         These widgets still, at some point, need to be
1948         made more pure in their use of GDK, as opposed
1949         to raw X.
1950
1951         * gtk/testgtk.c: Added test for layout widget.
1952         
1953 1998-11-23  Jeff Garzik  <jgarzik@pobox.com>
1954
1955         * gtk/gtkclist.c: (gtk_clist_swap_rows):  Bugfix from
1956         Brandon Long <blong@fiction.net> - do the right thing with first
1957         and last, which are the absolute values of row arguments row1
1958         and row2.
1959
1960 Mon Nov 23 04:24:55 PST 1998 Manish Singh <yosh@gimp.org>
1961
1962         * gtk/gtkprogress.c: (gtk_progress_set_adjustment): make a saner
1963         default adjustment (from 0 to 100) instead. I'm not sure if this
1964         is the correct level for the fix, but gtk_progress_bar_new()'s
1965         original default behavior is restored.
1966
1967 1998-11-23  Martin Baulig  <martin@home-of-linux.org>
1968
1969         * gtk/gtkfeatures.h.in (GTK_HAVE_FEATURES_1_1_5): Define this so
1970         we can check for latest GTK features.
1971
1972 1998-11-23  Havoc Pennington  <hp@pobox.com>
1973
1974         * gtk/gtktoolbar.c: (gtk_toolbar_set_relief):
1975         (gtk_toolbar_insert_element): When setting relief, also affect
1976         toggle buttons.
1977
1978 Sun Nov 22 20:37:06 PST 1998 Manish Singh <yosh@gimp.org>
1979
1980         * gtk/gtkobject.h: remove extraneous comma
1981
1982 Mon Nov 23 05:21:50 1998  Tim Janik  <timj@gtk.org>
1983
1984         * gtk/gtkcontainer.c:
1985         (gtk_container_add_with_args): 
1986         (gtk_container_addv): 
1987         (gtk_container_add): removed assertements for constructed containers
1988         again, since this essentially breaks the "child" arg.
1989
1990         * gtk/gtktooltips.c (gtk_tooltips_force_window): fixup the draw_window
1991         reference count, we don't need to reference toplevels that already have
1992         destroy notifiers.
1993
1994         * gtk/gtkscrolledwindow.c: check for the composites existance in
1995         _forall since we might not be already constructed.
1996
1997 Sun Nov 22 14:34:58 CST 1998 Shawn T. Amundson <amundson@gtk.org>
1998
1999         * Released GTK+ 1.1.5
2000
2001         * configure.in: require GLib 1.1.5
2002
2003 Mon Nov 23 03:21:17 1998  Tim Janik  <timj@gtk.org>
2004
2005         * gtk/gtktext.c (gtk_text_destroy): disconnect hadj & vadj, not
2006         2 * hadj.
2007         (gtk_text_finalize): only unref the current_font if we have
2008         been realized.
2009
2010 Sat Nov 21 18:41:13 CST 1998 Shawn T. Amundson <amundson@gtk.org>
2011
2012         * configure.in:
2013           INSTALL:
2014           NEWS:
2015           README:
2016           gtk+.spec:
2017           docs/gtk-config.1: Version incremented to 1.1.5
2018
2019 Sun Nov 22 16:21:28 1998  Tim Janik  <timj@gtk.org>
2020
2021         * gtk/gtkprogress.c: added args ::show_text, ::text_xalign,
2022         ::text_yalign, ::activity_mode.
2023
2024         * gtk/gtkprogressbar.c: added construct arg ::adjustment. added args
2025         ::bar_style, ::orientation, ::discrete_blocks, ::activity_step,
2026         ::activity_blocks.
2027         (gtk_progress_bar_new):
2028         (gtk_progress_bar_new_with_adjustment): use gtk_widget_new().
2029         (gtk_progress_bar_construct): deprecated.
2030
2031         * gtk/gtkvscrollbar.c:
2032         (gtk_vscrollbar_draw_step_back): 
2033         (gtk_vscrollbar_draw_step_forw): use "vscrollbar" as detail for
2034         gtk_paint_arrow, to be consistent with hscrollbar.
2035
2036         * gtk/gtktext.c
2037         added construct args ::hadjustment, ::vadjustment.
2038         added args ::line_wrap, ::word_wrap.
2039         (gtk_text_class_init): added scroll_adjustments signal.
2040         (gtk_text_new): use gtk_widget_new.
2041         (gtk_text_disconnect): remove adjustement with gtk_text_set_adjustments,
2042         so we don't screw the reference counts and don't leave signals connected.
2043         (gtk_text_destroy): disconnect adjustments signals.
2044         (gtk_text_finalize): unref adjustments.
2045
2046         * gtk/gtkctree.c: added construct args ::n_columns and ::tree_column.
2047         added args ::indent, ::spacing, ::show_stub, ::reorderable,
2048         ::use_drag_icons, ::line_style and ::expander_style.
2049         (gtk_ctree_set_show_stub): renamed from gtk_ctree_show_stub, which is
2050         deprecated now.
2051
2052         * gtk/gtkclist.h: remove GTK_CLIST_CONSTRUCT flag.
2053         * gtk/gtkclist.c:
2054         removed ::vadjustment and ::hadjustment args, introduced
2055         ::scroll_adjustments signal.
2056         added ::shadow_type, ::selection_mode and ::row_height args.
2057         added n_columns construct arg.
2058         (gtk_clist_construct): call gtk_object_constructed().
2059         (gtk_clist_set_row_height): if height is passed as 0,
2060         revert to automatic height calculation.
2061         (gtk_clist_destroy): before unrefing the adjustments, disconnect our
2062         signal handlers.
2063
2064 Fri Nov 21 22:34:58 1998  Tim Janik  <timj@gtk.org>
2065
2066         * gtk/gtkwidget.c (gtk_widget_new): call gtk_object_default_construct
2067         like gtk_object_new.
2068         (gtk_widget_destroy): assert that we only destroy constructed widgets.
2069
2070         * gtk/gtkobject.h (enum GtkArgFlags): new flag GTK_ARG_CONSTRUCT_ONLY
2071         to identify args that may only be used for construction.
2072         GTK_ARG_CONSTRUCT maybe used as normal arguments besides construction
2073         time.
2074         * gtk/gtkobject.c (gtk_object_new): invoke gtk_object_default_construct
2075         at the end if the object is not fully constructed.
2076         (gtk_object_newv): likewise.
2077         (gtk_object_destroy): assert that we only destroy constructed objects.
2078         (gtk_object_init): setup GTK_CONSTRUCTED from the
2079         objects real klass.
2080         (gtk_object_default_construct): new function to complete default
2081         construction of an object by applying missing construtor args with
2082         default values of 0, 0.0 or NULL.
2083         (gtk_object_constructed): new function to mark an object as being
2084         constructed (used from within constructors).
2085
2086         * gtk/gtkarg.c (gtk_arg_type_new_static): return the args info pointer
2087         so it is immediatedly available for the caller.
2088
2089         * gtk/gtktypeutils.c (gtk_type_new): pass an object's real class to
2090         the object initilizer (GtkObjectInitFunc takes a second arg now, the
2091         real klass), and asure that object initializers may temporarily alter
2092         the class pointer.
2093
2094 Fri Nov 20 08:00:30 1998  Tim Janik  <timj@gtk.org>
2095
2096         * gtk/testgtk.c: change all occourances of gtk_container_add (
2097         scrolled_window, widget) to gtk_scrolled_window_add_with_viewport (...)
2098         for widget!=(clist, ctree, text, viewport).
2099
2100         * gtk/gtkcombo.c:
2101         (gtk_combo_init): use gtk_scrolled_window_add_with_viewport()
2102         to add children to the scrolled window.
2103
2104         * gtk/gtkscrolledwindow.h:
2105         * gtk/gtkscrolledwindow.c:
2106         changed scrolled_window->viewport to scrolled_window->child, and use
2107         gtk_widget_scroll_adjustements() to set the scroll adjustments for the
2108         widget, we do not create an additional viewport anymore.
2109         added ::hadjustment and ::vadjustment constructor args.
2110         (gtk_scrolled_window_new): use gtk_widget_new() to create the widget.
2111         (gtk_scrolled_window_set_hadjustment):
2112         (gtk_scrolled_window_set_vadjustment): new functions that superceed
2113         gtk_scrolled_window_construct.
2114         (gtk_scrolled_window_construct): deprecated this function.
2115         
2116         * gtk/gtkhscrollbar.c:
2117         * gtk/gtkvscrollbar.c:
2118         * gtk/gtkhscale.c:
2119         * gtk/gtkvscale.c:
2120         support a constructor arg "::adjustment", and use gtk_widget_new() for
2121         the widget creation.
2122
2123         * gtk/gtkrange.c: added ::update_policy arg.
2124         (gtk_range_set_adjustment): if adjustment is passed in as NULL, create
2125         a default adjustment so this function can be used for derived widgets
2126         that depend on the adjustment's existance.
2127         (gtk_range_destroy): disconnect the adjustment signal, so we don't
2128         get called after we got destroyed, we don't destroy the adjustment
2129         in here, because it might have been provided from another widget.
2130
2131         * gtk/gtkviewport.c: introduced ::scroll_adjustments signal.
2132         (gtk_viewport_destroy): same as gtk_range_destroy.
2133
2134         * gtk/gtkprogress.c (gtk_progress_destroy): same as gtk_range_destroy.
2135
2136         * gtk/gtkwidget.h: 
2137         * gtk/gtkwidget.c: changed gtk_widget_activate() to return a
2138         gboolean, indicating whether this widget supports activation.
2139         added gtk_widget_scroll_adjustements() to set the scrolling
2140         adjustments of a widget.
2141
2142 Wed Nov 19 01:22:42 1998  Tim Janik  <timj@gtk.org>
2143
2144         * gtk/gtkoptionmenu.c:
2145         (gtk_option_menu_remove_contents):
2146         (gtk_option_menu_update_contents): removed
2147         gtk_container_[un]block_resize() pairs.
2148
2149         * gtk/gtknotebook.h: 
2150         * gtk/gtknotebook.c: removed the tab_border field, since it shouldn't
2151         be used outside of gtknotebook.c anyways. made ARG_TAB_BORDER a
2152         wrtie-only argument.
2153
2154         * *.c: made deprecated functions issue a message:
2155         gtk_clist_set_border, gtk_container_block_resize,
2156         gtk_container_unblock_resize, gtk_container_need_resize,
2157         gtk_object_class_add_user_signal, gtk_spin_button_construct,
2158         gtk_scrolled_window_construct.
2159         removed non-functional functions:
2160         gtk_container_disable_resize, gtk_container_enable_resize,
2161         gtk_clist_set_policy.
2162
2163 Wed Nov 18 22:54:36 1998  Tim Janik  <timj@gtk.org>
2164
2165         * gtk/gtkbox.c (gtk_box_init): 
2166         * gtk/gtkdrawingarea.c (gtk_drawing_area_init): 
2167         * gtk/gtkeventbox.c (gtk_event_box_init): 
2168         * gtk/gtkfixed.c (gtk_fixed_init): 
2169         * gtk/gtkframe.c (gtk_frame_init): 
2170         * gtk/gtkhandlebox.c (gtk_handle_box_init): 
2171         * gtk/gtkpacker.c (gtk_packer_init): 
2172         * gtk/gtkmisc.c (gtk_misc_init): 
2173         * gtk/gtkpreview.c (gtk_preview_init): 
2174         * gtk/gtkprogress.c (gtk_progress_init): 
2175         * gtk/gtkprogressbar.c (gtk_progress_bar_init): 
2176         * gtk/gtkseparator.c (gtk_separator_init): 
2177         * gtk/gtktable.c (gtk_table_init): 
2178         * gtk/gtkviewport.c (gtk_viewport_init): 
2179         * gtk/gtkalignment.c (gtk_alignment_init): 
2180         removed setting of the GTK_BASIC flag.
2181
2182         * gtk/gtkwidget.h:
2183         * gtk/gtkwidget.c:
2184         removed GTK_BASIC, GTK_WIDGET_BASIC and gtk_widget_basic.
2185
2186         * miscellaneous GtkType and macro fixups.
2187
2188 Sat Nov 21 18:53:13 1998  Owen Taylor  <otaylor@redhat.com>
2189
2190         * gdk/gdkwindow.c (gdk_window_get_deskrelative_origin): 
2191         Fixed so it at least works with window managers other
2192         than Enlightenment, though it probably needs to be
2193         removed altogether.
2194
2195 1998-11-21  Andrew T. Veliath  <andrewtv@usa.net>
2196
2197         * gtk/gtkhandlebox.[ch]: Add shadow_type and
2198         gtk_handle_box_set_shadow_type function (plus a
2199         GtkHandleBox::shadow arg) to allow configuration of shadow in the
2200         bin window.
2201
2202 Thu Nov 19 23:47:38 CST 1998 Shawn T. Amundson <amundson@gtk.org>
2203
2204         * gtk/gtkcalendar.c: Fix for marking days from 
2205           Dan Reish <dreish@izzy.net>.
2206
2207 Thu Nov 19 00:15:27 1998  Lars Hamann  <lars@gtk.org>
2208
2209         * gtk/gtkctree.c (gtk_ctree_node_nth): return the nth GtkCTreeNode
2210         in row_list. (from Samuel Solon <ssolon@usa.net>)
2211         
2212         * gtk/gtkclist.c (gtk_clist_get_column_title): return column title
2213         (gtk_clist_get_column_widget): return column widget
2214
2215 Wed Nov 18 11:54:57 1998  Owen Taylor  <otaylor@redhat.com>
2216
2217         * gtk/gtkdnd.c (gtk_drag_find_widget): Accept drops
2218         that are sent to a toplevel but are not within the
2219         toplevels bounds.
2220
2221         * gdk/gdkdnd.c gdk/gdk.h: Added support for a
2222         XdndProxy atom which proxies the drag to another window.
2223
2224 1998-11-17  Federico Mena Quintero  <federico@nuclecu.unam.mx>
2225
2226         * gtk/gtkpaned.h (struct _GtkPaned): Removed the cursor field, now
2227         that it is not needed.
2228
2229 Tue Nov 17 1998 The Rasterman <raster@redhat.com>
2230         * gdk/gdk.h, gdk/gdkwindow.c: Added gdk_window_get_deskrelative_origin
2231           function to correctly determine gdk window position relative to
2232           its "root window" - contains check for an Enlightenment
2233           virtual root window.
2234         * gtk/gtkhandlebox.c: changed gdk_window_get_origin ->
2235           gdk_window_get_deskrelative_origin to get the origin of dragged
2236           handleboxes correctly. Now it works correctly with E.
2237           
2238 Tue Nov 17 1998  Tuomas Lukka <lukka@iki.fi>
2239
2240         * gtk/gtktypeutils.c: Fix vital bug where LOOKUP was used when
2241           getting types even though we were not using real type names,
2242           just the index.  This caused random crashes when more than 
2243           256 types were defined.
2244
2245 1998-11-17  Martin Baulig  <martin@home-of-linux.org>
2246
2247         * gtk/genmarshal.pl: Put output files in the current directory
2248         and not in the $(srcdir) since the VPATH is ignored for built
2249         sources.
2250
2251 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
2252
2253         * gtk/genmarshal.pl
2254         * gtk/Makefile.am: check for unchanged autogenerated files, so
2255         we don't rebuild everything just for adding a new function
2256
2257 Mon Nov 16 19:19:00 CST 1998 Shawn T. Amundson <amundson@gtk.org>
2258
2259         * gtk/gtkpixmap.h
2260           gtk/gtkpixmap.c: Pixmaps now grey out when insensitive,
2261           code thanks to GNOME stock by Eckehard Berns.  New function
2262           gtk_pixmap_set_build_insensitive to provide ability to turn 
2263           this off.
2264
2265 Tue Nov 17 00:06:29 1998  Lars Hamann  <lars@gtk.org>
2266
2267         * gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
2268         new guints : tab_hborder, tab_vborder; marked tab_border deprecated
2269         (struct _GtkNotebookPage): new flags : expand, fill, pack
2270
2271         * gtk/gtknotebook.h/c
2272         (gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
2273         tabs
2274         (gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
2275         (gtk_notebook_set_tab_hborder): new function. set tab_hborder
2276         (gtk_notebook_set_tab_vborder): new function. set tab_vborder
2277         (gtk_notebook_query_tab_label): new function. get tab_label widget.
2278         (gtk_notebook_set_tab_label): new function. set tab_label widget.
2279         (gtk_notebook_set_tab_label_text): new function. set tab_label text.
2280         (gtk_notebook_query_menu_label): new function. get tab_label widget.
2281         (gtk_notebook_set_menu_label): new function. set tab_label widget.
2282         (gtk_notebook_set_menu_label_text): new function. set tab_label text.
2283         (gtk_notebook_set_tab_label_packing): new function. set tab_label
2284         fill, expand, fill_type
2285         (gtk_notebook_query_tab_label_packing): new function. get tab_label
2286         fill, expand, fill_type
2287
2288         (gtk_notebook_real_page_position): return logic page number
2289         (gtk_notebook_search_page) search next/prev logic page
2290         (gtk_notebook_update_labels): set logic page number.
2291         (gtk_notebook_page_compare): renamed gtk_notebook_find_page
2292         (gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
2293         CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
2294         (gtk_notebook_button_press) (gtk_notebook_key_press)
2295         (gtk_notebook_focus) (gtk_notebook_pages_allocate)
2296         (gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
2297         use gtk_notebook_search_page
2298         (gtk_notebook_page_allocate): fixed allocation bug
2299         (gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
2300         (gtk_notebook_init): unset GTK_NO_WINDOW flag
2301         (gtk_notebook_size_request): check whether page->child is visible.
2302         changes due to tab h/vborder, homogeneous tabs
2303         (gtk_notebook_paint): don't draw invisible tabs
2304         (gtk_notebook_switch_page): calculate page_num if it's less than 0
2305         (gtk_notebook_append_*) (gtk_notebook_prepend_*)
2306         (gtk_notebook_insert_page): removed sanity checks
2307
2308         * gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
2309
2310 Mon Nov 16 15:10:33 1998  Owen Taylor  <otaylor@redhat.com>
2311
2312         * gtk/gtktext.c: Optimizations for [advance/decrement]_mark_n.
2313         (gtk-mailund-980718-0, Thomas Mailund Jensen <mailund@daimi.aau.dk>)
2314
2315         * gtk/gtkfixed.c: Removed gtk_fixed_umap, which was 
2316         broken. (GtkWidget's default unmap handler should work fine).
2317         Pointed out by Patrice Fortier <Patrice.Fortier@aquarel.fr>
2318
2319 Mon Nov 16 00:59:26 PST 1998 Manish Singh <yosh@gimp.org>
2320
2321         * gtk/gtkmenubar.[ch]: added shadow_type setting and
2322         gtk_menu_bar_set_shadow_type function to allow shadow
2323         configurability for menubars
2324
2325         * gtk/gtkviewport.h: use GtkShadowType enum instead of generic
2326         guint
2327
2328 Mon Nov 16 00:17:53 1998  Tim Janik  <timj@gtk.org>
2329
2330         * gtk/gtktypeutils.c (gtk_type_new): relookup type node after
2331         class creation and parent class' object initializer.
2332
2333 1998-11-13  Federico Mena Quintero  <federico@nuclecu.unam.mx>
2334
2335         * gtk/gtkpaned.c (gtk_paned_realize): Destroy the cursor after we
2336         have assigned it to the window -- there is no point in keeping it around.
2337         (gtk_paned_unrealize): No need to destroy the cursor here.
2338
2339         * gtk/gtkpaned.h (struct _GtkPaned): Removed the cursor field, as
2340         it is not needed.
2341
2342 Fri Nov 13 11:22:38 1998  Owen Taylor  <otaylor@redhat.com>
2343
2344         * gdk/gdkpixmap.c: New function gdk_pixmap_foreign_new().
2345         (gtk-blizzard-981005-0. 
2346          Christopher Blizzard <blizzard@applied-theory.com)
2347
2348         * gdk/gdk.h gdk/gdkx.h: Moved gdk_window_foreign_new and
2349         gdk_pixmap_foreign_new to gdkx.h.
2350
2351 Fri Nov 13 16:06:48 1998  Owen Taylor  <otaylor@redhat.com>
2352
2353         * gtk/Makefile.am: Added rules to generate an empty
2354         GTK+ theme called "Default" upon installation.
2355         
2356         * gtk/gtkrc.c (gtk_rc_parse_style): Fix inheritance
2357         of fonts and fontsets. 
2358         (gtk-matsu-980924. Takashi Matsuda matsu@arch.comp.kyutech.ac.jp)
2359
2360         * gtk/gtkmain.c: Change test to detect glibc's
2361         utf8 based mb* functions to be more specific.
2362
2363         * gtk/gtkwindow.[ch] gtk/gtkfixed.c: Indentation 
2364         cleanups.
2365
2366 Fri Nov 13 16:43:36 1998  Lars Hamann  <lars@gtk.org>
2367
2368         * gtk/gtktogglebutton.c (gtk_toggle_button_realize): don't
2369         show event_window
2370         (gtk_toggle_button_map) (gtk_toggle_button_unmap): show/hide
2371         event_window if draw_indicator is set
2372         (gtk_toggle_button_set_mode):
2373
2374 Thu Nov 12 15:33:54 PST 1998 Manish Singh <yosh@gimp.org>
2375
2376         * gtk/gtkitemfactory.c: cast NULL to GtkItemFactoryCallback to
2377         ensure proper type (SunPro cc complains)
2378
2379         * gtk/gtklist.c: removed bogus '*' from "*GTK_CONTAINER_CLASS"
2380
2381         * gtk/gtktogglebutton.c: use our own draw method so we get proper
2382         redraws on active state
2383
2384 Thu Nov 12 00:26:13 1998  Lars Hamann  <lars@gtk.org>
2385
2386         * gtk/gtkstyle.c (gtk_default_draw_box_gap): use GtkPositionType
2387         defines.
2388
2389         * gtk/gtknotebook.c (gtk_notebook_draw_tab): fixed gap_side for
2390         GTP_POS_RIGHT
2391
2392 Wed Nov 11 19:54:58 1998  Lars Hamann  <lars@gtk.org>
2393
2394         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init)
2395         (gtk_scrolled_window_set_arg) (gtk_scrolled_window_get_arg):
2396         added ARG_WINDOW_PLACEMENT
2397
2398         * gtk/gtkclist.c (size_allocate_columns): resize column if column
2399         button > column width and auto_resize is set
2400         (real_clear) (column_auto_resize) (gtk_clist_optimal_column_width):
2401         consider column button width of auto resized columns
2402         (gtk_clist_parent_set): removed 
2403
2404         * gtk/gtkctree.c (gtk_ctree_insert_node): call column_auto_resize.
2405         (auto_resize_columns): auto_resize all columns
2406         (real_tree_collapse) (gtk_ctree_remove_node): call auto_resize_columns
2407         (column_auto_resize): respect column button width of auto resized
2408         columns
2409
2410 1998-11-10  Martin Baulig  <baulig@merkur.uni-trier.de>
2411
2412         * gtk/gtkfeatures.h.in (GTK_HAVE_FEATURES_1_1_4): Define this so
2413         we can check for latest GTK features.
2414
2415 Mon Nov  9 00:39:20 1998  Lars Hamann  <lars@gtk.org>
2416
2417         * gtk/gtkenums.h : new enum GtkCornerType 
2418         * gtk/gtkscrolledwindow.h (struct _GtkScrolledWindow): added
2419         window_placement.
2420         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_placement): 
2421         new method to set window_placement.
2422         (gtk_scrolled_window_viewport_allocate)
2423         (gtk_scrolled_window_size_allocate): few changes due to
2424         window_placement.
2425         * gtk/testgtk.c (remove_selection): fixed while loop.
2426
2427 Sat Nov  7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
2428
2429         * gtk/gtkclist.c: check if column[i].button is valid before calling
2430         gtk_widget_intersect on it in gtk_clist_draw
2431
2432         * gtk/gtkdnd.c: removed unused variable empty_bits
2433
2434         * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
2435
2436         * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
2437         a boolean (thanks to Elrond for noticing this)
2438
2439 1998-11-07  Jay Cox  <jaycox@earthlink.net>
2440
2441         * gtk/gtkwindow.c: forward declaration for gtk_window_paint
2442         * gdk/gdkxid.c: declare xid_ht static
2443         * examples/*/Makefile: get the link ordering right.
2444
2445 Sat Nov  7 16:31:56 1998  Stefan Jeske  <stefan@gtk.org>
2446
2447         * gtk/gtkclist.c (gtk_clist_realize): Set background of
2448         title button window to GTK_STATE_NORMAL instead of
2449         GTK_STATE_SELECTED to avoid ugly flicker.
2450
2451 Fri Nov  6 23:29:40 1998  Lars Hamann  <lars@gtk.org>
2452
2453         * gtk/gtkclist.c (real_clear) (adjust_adjustments): resize clist
2454         if adjustments are NULL and list size has changed
2455         (gtk_clist_size_request): return real list requsition,
2456         if adjustments are NULL.
2457         (size_allocate_columns): use button->requisition.with, if column
2458         width is not set.
2459         (list_requisition_width): new function. return full list width.
2460         (gtk_clist_set_hadjustment) (gtk_clist_set_vadjustment): do not
2461         auto create adjustments.
2462         (gtk_clist_motion) (move_vertical) (move_horizontal):
2463         check adjustment != NULL.
2464
2465 Thu Nov  5 12:06:16 1998  Owen Taylor  <otaylor@redhat.com>
2466
2467         * gtk/gtkcheckbutton.c (gtk_check_button_draw_focus): Queue
2468         a clear/redraw, not just a redraw, so the focus
2469         gets undrawn properly.
2470
2471         * gtk/gtktogglebutton.c (gtk_toggle_button_unrealize): 
2472         Chain to gtk_widget_unrealize() instead of duplicating
2473         code.
2474
2475 Wed Nov  4 14:34:51 1998  Owen Taylor  <otaylor@redhat.com>
2476
2477         * gdk/gdk.c gdk/gdkprivate.h gdk/gdkwindow.c: Removed
2478         last vestiges of old DND.
2479
2480 Tue Nov  3 12:27:52 1998  Owen Taylor  <otaylor@redhat.com>
2481
2482         * gtk/gtkentry.c: Restored inner border to entries,
2483         erase cursors to background image.
2484
2485 Fri Oct 30 12:09:21 1998  Owen Taylor  <otaylor@redhat.com>
2486
2487         * gtk/gtkentry.c gtk/gtkstyle.[ch]: removed paint_entry() -
2488         it was identical to paint_flat_box().
2489
2490         * gtk/gtkstyle.c: Coding style fixups.
2491
2492         * gtk/gtkwindow.c (gtk_window_move_resize): removed useless
2493         test.
2494
2495         * gtk/gtkframe.c gtkstyle.[ch] gtknotebook.c: 
2496         Change 'side' for paint_[box/shadow]_gap and paint_extension
2497         to be GtkPositionType instead of a random int.
2498
2499         * gtk/gtkaspectframe.c (gtk_aspect_frame_paint): Use 
2500         "frame" as detail - an aspectframe should draw identical
2501         to a frame.
2502
2503 Tue Oct 27 09:58:11 1998  Owen Taylor  <otaylor@redhat.com>
2504
2505         * gdk/gdkwindow.c (gdk_window_merge_child_shapes): renamed
2506         from combine_child_shapes().
2507
2508         * gdk/gdkwindow.c: Merge propagate_shapes() and
2509         propagate_combine_shapes() to remove code duplication.
2510
2511 Thu Nov  5 14:31:57 PST 1998 Manish Singh <yosh@gimp.org>
2512
2513         * gdk/gdk.c: sometimes we get a KeyRelease before a KeyPress in
2514         gdk_event_translate, and the USE_XIM buffer isn't allocated yet.
2515         So allocate some mem if it's not already done.
2516
2517         * clist scrollbar merges from HEAD
2518
2519 Tue Nov  3 13:16:36 PST 1998 Manish Singh <yosh@gimp.org>
2520
2521         * gtk/Makefile.am: remove explict -ldl, gmodule takes care of that
2522
2523         * gtk/gtkdnd.c: start TARGET_MOTIF_SUCCESS from 0x40000000 instead
2524         of 0x80000000, so we stay within the bounds of a postive signed
2525         int (it broke some compilers)
2526
2527         * gtk/gtkmenushell.c
2528         * gtk/gtkoptionmenu.c: merges from HEAD to make option menus work
2529         when some of the menuitems are hidden
2530
2531         * gtk/gtkthemes.h: don't include dlfcn.h explictly, gmodule takes
2532         care of that
2533
2534         * gtk/gtkwidget.c: add a dummy continue after the line label
2535         next_rect, since some compilers don't like label: }
2536
2537 Sun Nov  1 20:05:55 PST 1998 Manish Singh <yosh@gimp.org>
2538
2539         * Okay, so we need the X11R6 keysyms so programs don't have to
2540         worry about them. They don't conflict anyway. Reverted the #ifdef
2541         changes to gtk/*.c
2542
2543         * gdk/Makefile.am: remove the BUILT_SOURCES rule, and make a
2544         special rule for them (X-derived-headers)
2545
2546 Sun Nov  1 05:30:32 PST 1998 Manish Singh <yosh@gimp.org>
2547
2548         * gdk/Makefile.am: changed the awk scripts to generate gdkcursors.h
2549         and gdkkeysyms.h into sed scripts, since the awk scripts weren't
2550         portable, and we really shouldn't be using awk anyway.
2551
2552         * makecursors.awk
2553         * makekeysyms.awk: bye bye
2554
2555         * gtk/gtkaccelgroup.c
2556         * gtk/gtkclist.c
2557         * gtk/gtknotebook.c
2558         * gtk/gtkwindow.c: don't use X11R6 keysyms if they aren't there
2559
2560 Sat Oct 31 15:22:14 PST 1998 Manish Singh <yosh@gimp.org>
2561
2562         * gdk/Makefile.am: do the same built sources trick for gdkcursors.h
2563         and gdkkeysyms.h. Remove those files from CVS.
2564
2565 Sat Oct 31 14:44:01 PST 1998 Manish Singh <yosh@gimp.org>
2566
2567         * gdk/gdk.c: move prototype of gdk_wm_protocols_filter outside
2568         of the USE_XIM #ifdef
2569
2570         * gtk/Makefile.am: cause the built sources to be rebuild when possible,
2571         even with --include-deps. Slightly different from timj's fix, to avoid
2572         circular dependency with gtkmarshal.c
2573
2574         * autogen.sh
2575         * gtk/gtkclist.[ch]
2576         * gtk/gtkctree.c
2577         * gtk/gtkfontsel.[ch]
2578         * gtk/gtklist.c
2579         * gtk/gtklistitem.c
2580         * gtk/gtkobject.[ch]
2581         * gtk/testgtk.c: merges from HEAD
2582
2583         * gtk/gtkmenubar.c
2584         * gtk/gtkradiomenuitem.c
2585         * gtk/gtktreeitem.c: cleanups
2586
2587 Wed Oct 28 23:32:19 PST 1998 Manish Singh <yosh@gimp.org>
2588
2589         * gdk/gdkrgb.c: Oops. s/BIGENDIAN/BIG_ENDIAN/
2590
2591 Wed Oct 28 19:04:49 PST 1998 Manish Singh <yosh@gimp.org>
2592
2593         * configure.in: AIX has libpthreads, to make sure you can have
2594         more than one thread. Also add -D_THREAD_SAFE, and reorder
2595         configure.in so CFLAGS doesn't get clobbered when we actually
2596         want to modify it
2597
2598         * gdk/gdkimage.c: initialize the bpp and byte_order fields properly
2599         in gdk_image_get
2600
2601         * gtk/testdnd.c: removed unused variable "buf"
2602
2603 Mon Oct 26 16:46:15 1998  Owen Taylor  <otaylor@redhat.com>
2604
2605         * gtk/gtkcontainer.c (gtk_container_unregister_toplevel): 
2606         remove_link(), not remove()
2607
2608 Thu Oct 22 02:27:30 PDT 1998 Manish Singh <yosh@gimp.org>
2609
2610         * gdk/gdkrgb.c: use glib endian stuff
2611
2612         * configure.in: don't need to check for endianness anymore
2613
2614         * gtk/gtkstyle.h: removed #pragma }, causing a silly warning
2615
2616 Wed Oct 21 17:44:27 1998  Owen Taylor  <otaylor@redhat.com>
2617
2618         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Reset
2619         all toplevel widgets, not toplevel windows. (I.e.,
2620         plugs should be reset)
2621
2622         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Yes, we
2623         _do_ need to notify the other toplevels - by the time
2624         the get the client messages, the RC file dates will
2625         have been updated.
2626
2627         * gtk/gtkcontainer.h: Added a function call to list
2628         every toplevel widget.
2629
2630         * gdk/gdk.c (gdk_event_send_client_message_to_all_recurse): 
2631         Don't send client messages to _every_ window on display!
2632         
2633 Tue Oct 20 16:21:04 1998  Owen Taylor  <otaylor@redhat.com>
2634
2635         * gtk/gtkdnd.c (gtk_drag_source_event_cb): Don't start drags 
2636         when dragging across widgets, only in drags
2637         starting in widget.
2638
2639 Tue Oct 20 15:59:49 1998  Owen Taylor  <otaylor@redhat.com>
2640
2641         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): 
2642         Emit "drag_end" signal at end of drag.
2643
2644 Tue Oct 20 13:07:54 1998  Owen Taylor  <otaylor@redhat.com>
2645
2646         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Look
2647         for "gtk-embedded" data currently set by 
2648         GtkSocket, and use that to forward client message
2649         on to embedded windows. Only reset our own toplevel -
2650         the others will handle themselves. (Now that
2651         GtkMenus live in GtkWindows)
2652
2653 Mon Oct 19 16:40:40 1998  Owen Taylor  <otaylor@redhat.com>
2654
2655         * gdk/gdkdnd.c (get_client_window_at_coords_recurse): Modify
2656         client window finding code so that it works with
2657         WM's other than fvwm.
2658  
2659 Sun Oct 18 22:48:27 1998  Owen Taylor  <otaylor@redhat.com>
2660
2661         * gtk/gtkdrawwindow.c (gtk_draw_window_get_type): Added
2662         the "GtkDrawWindow" class, which is a descendent
2663         of the Window class which leaves its background alone.
2664         Essentially, a toplevel drawing area, though it does
2665         allow adding a child.
2666
2667 Sat Oct 17 00:40:51 1998  Owen Taylor  <otaylor@redhat.com>
2668
2669         * gtk/gtkrc.c (gtk_rc_style_init): Duplicate bg_pixmap_name when
2670         merging RC styles. Report new share/themes path for
2671         themes directory. Deref theme engines when appropriate.
2672
2673         * gtk/gtkclist.c: Set all backgrounds in _style_set().
2674         Make sure that pixel for xor_gc is never 0.
2675
2676         * gtk/gtkctree.c: Choose colors for plus/minus more
2677         carefully, in a hopefully style-independent fashion.
2678         (Still needs a bit more work)
2679
2680         * gtk/gtkwidget.c: Don't send expose events to widgets
2681         which are about to be resized and redrawn. (Needs a
2682         bit more thought.)
2683
2684         * gtk/gtknotebook.c (gtk_notebook_draw_tab): Avoid
2685         drawing on tabs for newly allocated, un-sized
2686         pages - we'll get the size wrong.
2687
2688 Thu Oct  1 17:38:07 1998  Owen Taylor  <otaylor@redhat.com>
2689
2690         * gtk/gtkwidget.c (gtk_widget_redraw_queue_remove): Fixed
2691         up stupidities in last commit.
2692
2693 Thu Oct  1 14:25:43 1998  Owen Taylor  <otaylor@redhat.com>
2694
2695         * gtk/gtkwidget.c: When handling queued resizes, account
2696         for handleboxes, where the widget heirarchy is different
2697         than the window heirarchy by just queueing a resize on
2698         the entire handlebox if the detached child is changed.
2699
2700         - Remove widgets from the redraw queue when reparenting,
2701         even if not unrealizing. We queue a resize/redraw in
2702         any case.
2703
2704 Mon Sep 28 21:07:01 EDT 1998 The Rasterman <raster@redhat.com>
2705         * gtk/gtkstyle.c: added check to see if the widget has been shaped
2706         byt the app via gtk_widget_shape_combine_mask and if it has does
2707         not reset the shape on theme change.
2708         
2709 Tue Sep 15 11:30:03 1998  Owen Taylor  <otaylor@redhat.com>
2710
2711         * gtk/gtkfilesel.c: Keep a list of directories in which we never
2712         want to stat the entries (like /afs), and assume everything in
2713         those directories is a subdirectory.
2714
2715         - When following a path, try to open components even when
2716         we don't find them in their parent's directory to
2717         support automounters.
2718
2719 Fri Sep 11 15:36:33 1998  Owen Taylor  <otaylor@redhat.com>
2720
2721         * gdk/gdkinputgxi.h (gdk_input_gxi_grab_pointer): Hopefully
2722         now at least compiles again.
2723
2724         * gdk/gdk.c (gdk_event_translate): Don't pass events
2725         on destroyed widgets to the gdk_input layer.
2726
2727 Thu Sep  3 19:45:34 1998  Owen Taylor  <otaylor@redhat.com>
2728
2729         * gtk/gtkthemes.c: Use g_module instead of dlopen()
2730
2731 Thu Sep  3 19:30:11 1998  Owen Taylor  <otaylor@redhat.com>
2732
2733         * gtk/gtktooltips.c (gtk_tooltips_expose): Check
2734         if we've changed widgets since the expose event
2735         was queued.
2736
2737 Mon Aug 31 15:33:13 1998  Owen Taylor  <otaylor@redhat.com>
2738
2739         * gtk/gtkstyle.h (struct _GtkStyle): Reordered a bit
2740         to restore approximate bin compatibility with the
2741         non-themes branch. (This does break bin compat
2742         within the themes branch.)
2743
2744 Sun Aug 30 16:48:27 1998  Owen Taylor  <otaylor@gtk.org>
2745
2746         * gtk/gtklabel.c (gtk_label_set): Eliminate a 
2747         gdk_window_clear_area() that snuck in with the
2748         menu underlines merge.
2749
2750 Mon Aug 24 23:37:26 1998  Owen Taylor  <otaylor@redhat.com>
2751
2752         * gtk/gtktext.c: Fixed some remaining background drawing,
2753           merges from main branch, cleanups.
2754
2755 Mon Aug 24 10:55:51 1998  Owen Taylor  <otaylor@redhat.com>
2756
2757         * gtk/gtknotebook.c (gtk_notebook_draw_tab): Don't
2758           dereference NULL focus tab.
2759
2760         * gtk/gtkscale.c (gtk_scale_[un]map): Add map/unmap
2761           functions since we need to both show/hide and 
2762           queue a redraw. (There's some duplication of drawing here, 
2763           we probably should only be queuing a redraw on the
2764           "value" portion of the scale.)
2765
2766 Fri Aug 21 19:02:30 1998  Owen Taylor  <otaylor@redhat.com>
2767
2768         * gtk/gtkrange.[ch] gtk/gtkhscale.c gtk/gtkvscale.[ch]: Fit scales
2769           into the theme-drawing framework. We do this by making them,
2770           like check/radio-buttons, no-window widgets with subwindows. We
2771           then move the value by calling gtk_widget_queue_clear() and only
2772           redraw the value in our draw() / expose() handler.  A virtual
2773           function clear_background is added which queues a clear on the
2774           "background" portion of the widget.
2775
2776 Fri Aug 21 13:04:27 1998  Owen Taylor  <otaylor@redhat.com>
2777
2778         * gtk/gtktext.c (mark_bg_gc): Make background colors work
2779           again. (We can't always paint the background with a
2780           paint() function - only do that for selected text)
2781
2782 Mon Aug 17 20:31:01 1998  Owen Taylor  <otaylor@redhat.com>
2783
2784         * gtk/gtktearoffmenuitem.c gtk/gtkclist.[ch] gtk/gtkctree.[ch]
2785           gtk/gtklabel.c gtk/gtkmenu.c: Merges from main branch.
2786
2787         * Makefile.am (SRC_SUBDIRS): Removed themes from SRC_SUBDIRS.
2788           the themes can't be built as part of the same build since
2789           they depend on gdk_imlib.
2790
2791 Fri Aug 14 12:44:30 1998  Owen Taylor  <otaylor@redhat.com>
2792
2793         * gtk/gtkthemes.c (gtk_theme_engine_get): Removed sample engine code
2794           from gtkthemes.c.
2795                 
2796         * configure.in ltconfig.in ltmain.sh gdk/Makefile.am gtk/Makefile.am
2797           gtk/
2798
2799           - Upgrade to libtool-1.2b + patch to add shared library dependencies
2800             for Linux. (Needs to be extended to other platforms where they
2801             are safe)
2802
2803          - Check for -ldl so this branch should build on all platforms, though
2804            themes will work on all platforms they could work on.
2805
2806          - Use -version and -release simultaneously: sonames stay as they are
2807            in the current scheme, but -lgtk-1.1 changes to -lgtk.
2808
2809          - Added in extra -l flags to library LDFLAGS so we get shared library
2810            dependencies against X libs and -ldl. (But not libgtk against 
2811            libgdk or libglib yet, since dependencies against uninstalled
2812            libraries aren't portable)
2813
2814 Fri Aug 21 16:10:38 EDT 1998 The Rasterman <raster@redhat.com>
2815         * gtkrc.c - added api calls to find module and theme paths from gtk.
2816           nuked gtk_install_prefix global.
2817         
2818 Fri Aug 21 12:36:46 EDT 1998 The Rasterman <raster@redhat.com>
2819         * fixed gtk_install_prefix global.
2820           
2821 Thu Aug 20 19:27:49 EDT 1998 The Rasterman <raster@redhat.com>
2822         * added gtk_install_prefix global const variabel to find where gtk is
2823           installed.
2824           
2825 Thu Aug 20 18:27:29 EDT 1998 The Rasterman <raster@redhat.com>
2826         * added ~/.gtk/lib/themes/engines/ to the default searchpath for
2827           gtk theme engines
2828         
2829 Thu Aug 20 18:27:29 EDT 1998 The Rasterman <raster@redhat.com>
2830         * made gtkrc scanner append dir that gtkrc is read from to pixmap path.
2831
2832 Mon Aug 10 23:03:55 1998  The Rasterman <raster@redhat.com>
2833         * Fixed minor problem in gtkhandlebox.c with drawing, and some
2834           notebook stuff. Also pixmap theme is now "clean" again.
2835           
2836 Mon Aug 10 23:03:55 1998  Owen Taylor  <otaylor@redhat.com>
2837         * gtk/gtkwidget.c (gtk_widget_clip_rect): Fixed up 
2838           queued area resizing once more.
2839
2840 Mon Aug 10 23:09:30 EDT 1998
2841         * Added a few drawing fixes for notebook and other widgets. finished
2842           pixmap theme up to the level that can be supported so far. (need to
2843           add path discovery 9ie where is the rc fiel from - add to pixmap 
2844           path so we can get theimages from there too). then we can package 
2845           themes. After that need to add to theme seartch path stuff in users 
2846           home dir.
2847           
2848 Thu Aug  6 16:49:25 1998  Owen Taylor  <otaylor@redhat.com>
2849
2850         * gtk/gtktooltips.c (gtk_tooltips_expose): Draw into a
2851           drawing area, draw in an expose handler.
2852
2853         * gtk/gtknotebook.c (gtk_notebook_expose): Check for
2854           empty current page.
2855
2856 Wed Aug  5 16:13:15 1998  Owen Taylor  <otaylor@redhat.com>
2857
2858         * gtk/gtkcolorsel.c (gtk_color_selection_draw_wheel): Moved
2859           creation of GC's so that they will be set before
2860           they are used for map events (why are they used there?)
2861
2862         * gtk/gtkwidget.c: Fixed mistake that caused widgets to
2863           be queued in multiple times in the queue.
2864
2865 Wed Aug  5 14:23:52 1998  Owen Taylor  <otaylor@redhat.com>
2866
2867         * gtk/gtkstyle.c (gtk_default_draw_shadow): Don't set
2868           clip rects (or do anything) for shadow_none.
2869
2870 Wed Aug  5 13:14:57 1998  Owen Taylor  <otaylor@redhat.com>
2871
2872         * gtk/gtkbutton.c (gtk_button_paint): Restored paint function.
2873           Yes, it was needed. draw() and expose() are _not_
2874           identical.
2875
2876 Sat Aug  1 17:44:31 EDT 1998 EDT 1998 The Rasterman <raster@redhat.com>
2877         * Wheeeeeeeeeeeeeeee fixed radiobittons to work in gimp again.
2878
2879 Fri Jul 31 19:45:12 EDT 1998 The Rasterman <raster@redhat.com>
2880         * YES YES YES YES YES clist borders work again! YES! YES YES! gimme 
2881           more baby oooh yeah more more MORE YES YES.
2882
2883 Fri Jul 31 19:45:12 EDT 1998 The Rasterman <raster@redhat.com>
2884         * hopefully fixed problem wiht togglebuttons acting like
2885           radiobuttons in gtktogglebutton.c
2886
2887 Thu Jul 30 23:36:46 EDT 1998 The Rasterman <raster@redhat.com>
2888         * fixed another drawing buglet in the frame drawing code (actually
2889           in the clearing code but anyway in gtkstyle.c)
2890
2891 Thu Jul 30 19:23:48 EDT 1998 The Rasterman <raster@redhat.com>
2892         * Fixed warning from colorsel widget...
2893
2894 Thu Jul 30 19:10:42 EDT 1998 The Rasterman <raster@redhat.com>
2895         * Fixed defautl drawing code to no longer clobber the original style
2896           pixmap bgs as it did and added a helper funciton og gtkstyle.c to
2897           help with this.
2898
2899 Thu Jul 30 18:09:21 1998  Owen Taylor  <otaylor@redhat.com>
2900
2901         * gtk/gtkrc.c gtk/gtkstyle.c: More mm fixups
2902
2903         * gtk/gtktooltips.c: Pass a widget (the window) to the
2904           drawing function instead of the GtkTooltips.
2905
2906 Thu Jul 30 17:27:10 1998  Owen Taylor  <otaylor@redhat.com>
2907
2908         * gdk/gdkwindow.c: Abstract out checking for shape
2909           extension into a function.
2910
2911         * gtk/gtkwindow.c: Fix up gtk_window_expose()/draw().
2912           Remove extra callls to gtk_window_draw().
2913
2914 Thu Jul 30 11:18:43 1998  Owen Taylor  <otaylor@redhat.com>
2915
2916         * gtk/gtkstyle.c gtk/gtkrc.c: Memory management fixups.
2917
2918         * themes/th_main.c: Moved messages around so they are
2919           printed before destroying strings.
2920
2921 Wed Jul 29 16:56:07 1998  Owen Taylor  <otaylor@redhat.com>
2922
2923         * gdk/gdk.c: Fairly simple implementation of expose compression.
2924           (No GraphicsExpose compression yet, always compress
2925           with the equivalent of XtCompressMultiple - no compression
2926           of Expose events across non-Expose events)
2927         
2928         * gdk/gdk.h gdk/gdkrectangle.c: gdk_rectangle_union()
2929           Find rectangle bounding two rectangles.
2930
2931         * gtk/gtkstyle.c: Set clip rects for a few extra GC's
2932           in gdk_default_draw_shadow()
2933         
2934 Wed Jul 29 16:03:20 EDT 1998 The Rasterman <raster@redhat.com>
2935         * Fixed drawing functions to handle switching themes on the fly 
2936           gracefully and look decent.
2937           
2938 Tue Jul 28 22:52:10 EDT 1998 The Rasterman <raster@redhat.com>
2939         * Added all the theme drawing code to all widgets, fixed up minor
2940           nigglies in some widgets when it comes to themes, seem to be
2941           running into some funky behavior with clipping rects in GC's. Too
2942           many files to list here. (all files that now use gtk_paint_* are
2943           affected).
2944
2945 Tue Jul 28 22:49:16 1998  Owen Taylor  <otaylor@redhat.com>
2946
2947         * themes/th_main.c themes/th_draw.c gtk/testgtkrc: 
2948           Set up the demo theme so it is loaded from the RC file.
2949
2950         * themes/th_draw.c: Alleviate the hardcoded paths a wee
2951           bit. (use $HOME/themes/)
2952
2953         * gtk/gtkthemes.[ch] gtk/gtkmain.c: Load engines specified in 
2954           the RC file via dlopen()
2955
2956 Tue Jul 28 20:30:56 1998  Owen Taylor  <otaylor@redhat.com>
2957
2958         Internal handling of styles and RC styles pretty much
2959         completely reworked for Theme work.
2960
2961         * gtkthemes.[ch]: 
2962          - Added routines for virtualization of RcStyle and Style handling.
2963          - Temporary "sample" inline theme-engine. (Does nothing
2964            but print out a few messages.
2965         
2966         * gtkrc.[ch]
2967          - Made GtkRcStyle public, added flags to tell if particular
2968            colors have been set.
2969          - RC Styles are "transparent", and the final style for
2970            a widget is the composition of all matching styles
2971          - Added pointer to GtkThemeEngine, and gpointer engine_data
2972            to RC style and style.
2973          - Parse "engine" keyword, load the appropriate theme engine
2974            and call the engine's parser.
2975         
2976         *  gtkstyle.[ch]
2977          - Keep a GtkRcStyle * in styles created from Rc Styles.
2978          - Load up images from RC file at style attachment time.
2979          - Call ->engine->foo() at appropriate times.
2980          - Don't use a GCache. All incarnations for a style are
2981            just linked together in a list, depend on the RC style 
2982            code to find the existing copy.
2983
2984 Tue Jul 28 14:41:54 1998  Owen Taylor  <otaylor@redhat.com>
2985
2986         * gtk/gtkwidget.[ch]: Added the concept of queued redraws
2987           of partial areas. This can be done either relative
2988           to the existing windows (gtk_widget_queue_clear[_area]())
2989           or relative to the future allocation of the widget
2990           (gtk_widget_queue_draw[_area]). 
2991
2992           The initial implementation is pretty braindead, but
2993           can be improved.
2994
2995         * gtk/gtkwidget.[ch]: Removed calls to gdk_window_clear_area()
2996           in favor of gtk_widget_queue_clear().
2997         
2998         * gtk/gtklabel.[ch] gtk/gtkpixmap.[ch]: Removed needs_clear
2999           flags in favor of gtk_widget_queue_clear()
3000         
3001 Tue Aug  4 19:12:14 1998  Owen Taylor  <otaylor@redhat.com>
3002
3003         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fixed up
3004           handling of partially clipped areas.
3005
3006 Thu Nov  5 18:52:35 1998  Lars Hamann  <lars@gtk.org>
3007
3008         * gtk/gtkclist.h (struct _GtkCListClass)
3009         * gtk/gtkclist.c (gtk_clist_class_init): removed scrollbar_spacing.
3010
3011 Thu Nov  5 16:00:32 1998  Lars Hamann  <lars@gtk.org>
3012
3013         * gtk/gtkclist.h (struct _GtkCList): removed vscrollbar, hscrollbar,
3014         vscrollbar_policy, hscrollbar_policy. added h/vadjustment.
3015
3016         * gtk/gtkclist.c (gtk_clist_class_init): added new args types
3017         "hadjustment" & "vadjustment"
3018          (gtk_clist_set_arg) (gtk_clist_get_arg): new object class
3019         set/get_arg functions
3020         (gtk_clist_construct): don't create/adjust scrollbars.
3021         (gtk_clist_set_hadjustment) (gtk_clist_set_vadjustment): new functions
3022         to set h/vadjustments
3023         (gtk_clist_get_vadjustment) (gtk_clist_get_hadjustment): new functions
3024         to query h/vadjustments
3025         (create_scrollbars): removed.
3026         (create_adjustments): replacement for create_scrollbars
3027         (gtk_clist_new): call gtk_clist_new_with_titles
3028         (gtk_clist_new_with_titles): don't warn on titles == NULL
3029         (move_horizontal): use CLAMP instead
3030         (gtk_clist_set_policy): deprecated method.
3031         use gtk_scrolled_window_set_policy instead.
3032         (vadjustment_value_changed): use clist->vadj.
3033         (adjust_scrollbars): renamed to adjust_adjustments
3034         (adjust_adjustments): former adjust_scrollbars
3035         (gtk_clist_destroy): unref adjustments
3036         (gtk_clist_size_allocate) (gtk_clist_map) (title_focus)
3037         (gtk_clist_unmap) (gtk_clist_size_request) (gtk_clist_focus)
3038         (gtk_clist_size_allocate) (gtk_clist_forall): don't use scrollbars
3039         (gtk_clist_thaw) (real_insert_row) (real_remove_row)
3040         (gtk_clist_set_row_height) (real_resize_column):
3041         call adjust_adjustments
3042         (gtk_clist_moveto): return if clist has no adjustments yet.
3043         (gtk_clist_parent_set): new GtkWidget::parent_set function.
3044         Autogenerate h/vadjustments if needed.  
3045         (move_horizontal) (move_vertical): some cleanups
3046
3047         * gtk/gtkviewport.c (gtk_viewport_set_arg) (gtk_viewport_new):
3048         call only gtk_viewport_set_h/vadjustment and let these functions
3049         do the work.
3050         (gtk_viewport_set_hadjustment) (gtk_viewport_set_vadjustment):
3051         generate a new adjustment if needed
3052
3053         * gtk/gtkscrolledwindow.h ((struct _GtkScrolledWindow):
3054         use a guint bitfield for h/vscrollbar_policy and h/vscrollbar_visible
3055         
3056         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
3057         queue_resize if visibility of scrollbars changes
3058         (gtk_scrolled_window_remove): only call container_remove with
3059         scrolled_window->viewport automatically if viewport was autogenerated
3060         (gtk_scrolled_window_add): add widget as scrolled_window->viewport.
3061         auto create a viewport only if widget does not take h/vadjustments.
3062         (gtk_scrolled_window_construct): don't generate a viewport
3063         automatically.
3064         (gtk_scrolled_window_forall): call callback with viewport in any case
3065         (gtk_scrolled_window_set_arg): call gtk_container_add in case of
3066         ARG_VIEWPORT
3067         (gtk_scrolled_window_size_allocate) (gtk_scrolled_window_size_request)
3068         (gtk_scrolled_window_map) (gtk_scrolled_window_unmap): check
3069         viewport != NULL
3070
3071         * gtk/testgtk.c 
3072         (create_ctree) (export_ctree) (create_clist): use a scrolled_window
3073         in conjunction with clists/ctrees
3074
3075         * gtk/gtkfilesel.c (gtk_file_selection_init): use a scrolled_window
3076         in conjunction with clists
3077
3078         * gtk/gtkfontsel.c (gtk_font_selection_init): use a scrolled_window
3079         in conjunction with clists
3080
3081 Wed Nov  4 21:52:57 1998  Lars Hamann  <lars@gtk.org>
3082
3083         * gtk/gtkctree.c (gtk_ctree_unlink): fix focus_row adjustment
3084         (gtk_ctree_remove_node): select focus_row if needed
3085         (cell_size_request): only get pixmap size if pixmap != NULL
3086
3087 Wed Nov  4 04:30:37 1998  Tim Janik  <timj@gtk.org>
3088
3089         * gtk/gtkwidget.c: added a bunch of checks for widget != NULL and
3090         GTK_IS_WIDGET (widget):
3091
3092 Wed Nov  4 02:02:07 1998  Lars Hamann  <lars@gtk.org>
3093
3094         * gtk/gtkclist.c (real_remove_row) (sync_selection): set correct
3095         focus_row after a remove_row call.
3096
3097 Sun Nov  1 21:00:06 GMT 1998  Austin Donnelly  <austin@greenend.org.uk>
3098
3099         * gtk/gtkoptionmenu.c
3100         * gtk/gtkmenushell.c: make option menus work when some of the
3101         menuitems are hidden - previously, option menu would popup too
3102         high.
3103
3104 1998-10-31  Raja R Harinath  <harinath@cs.umn.edu>
3105
3106         * gtk/gtkfeatures.h.in: Remove `#pragma }'.
3107
3108         * gdk/gdki18n.h: Update to use new `glib' widechar defines.
3109
3110         * configure.in (CFLAGS): Don't use test -z "echo .. | grep".  Use
3111         case instead.
3112         (wchar.h, wctype.h, iswalnum): Duplicate widechar tests from `glib'.
3113         (GDK_WLIBS): New variable.  Lists extra libraries needed to use
3114         widechar functions.
3115         * gtk-config.in (--libs): List $GDK_WLIBS, too.
3116
3117 Sat Oct 31 03:11:57 CST 1998 Shawn T. Amundson <amundson@gtk.org>
3118
3119         * Released GTK+ 1.1.3
3120         
3121         * INSTALL:
3122         * NEWS:
3123         * README:
3124         * gtk+.spec:
3125         * docs/gtk-config.1: updated for v1.1.3
3126
3127         * Makefile.am
3128         * sanity_check
3129         * docs/Makefile.am: Includes new 'make release' as well as
3130           'make sanity'.  Also handles html and text creation from html,
3131           and puts them into the distribution
3132
3133         * docs/Makefile.sgml: removed, similar functionality is now in 
3134           the Makefile.am file
3135
3136         * docs/.cvsignore: ignore html and text directories
3137         * docs/glib.texi: removed (now in glib dist)
3138
3139 Fri Oct 30 20:02:36 1998  Lars Hamann  <lars@gtk.org>
3140
3141         * gtk/gtklist.c (gtk_list_remove_items_internal): 
3142         free undo_un/selection, unselect list_item before disconnect
3143         signal functions
3144         (gtk_list_destroy): removed. gtk_list_shutdown clears the list
3145         already
3146         (gtk_list_signal_item_select) (gtk_list_signal_item_deselect)
3147         (gtk_list_signal_item_toggle)   (gtk_list_signal_scroll_horizontal)
3148         (gtk_list_signal_toggle_focus_row) (gtk_list_signal_select_all)
3149         (gtk_list_signal_unselect_all) (gtk_list_signal_undo_selection)
3150         (gtk_list_signal_start_selection) (gtk_list_signal_end_selection)
3151         (gtk_list_signal_toggle_add_mode) (gtk_list_signal_scroll_vertical)
3152         (gtk_list_signal_extend_selection) (gtk_list_signal_focus_lost):
3153         new functions. These functions are signal connected to inserted
3154         list_items, to handle key bindings and GtkItem::de/select/toggle
3155         signals.
3156
3157         * gtk/gtklistitem.c (gtk_list_item_class_init): added missing
3158         gtk_object_class_add_signals call.
3159         (gtk_list_item_toggle_focus_row) (gtk_list_item_select_all)
3160         (gtk_list_item_unselect_all) (gtk_list_item_undo_selection)
3161         (gtk_list_item_start_selection) (gtk_list_item_end_selection)
3162         (gtk_list_item_extend_selection) (gtk_list_item_scroll_horizontal)
3163         (gtk_list_item_scroll_vertical) (gtk_list_item_toggle_add_mode):
3164         removed. These functions are handled via connected
3165         gtk_list_signal_* functions now
3166
3167 Fri Oct 30 05:24:43 1998  Tim Janik  <timj@gtk.org>
3168
3169         * gtk/Makefile.am: cause the built sources to be rebuild when possible,
3170         even with --include-deps:
3171         $(libgtk_la_SOURCES): $(BUILT_SOURCES)
3172
3173 Fri Oct 30 01:56:08 1998  Tim Janik  <timj@gtk.org>
3174
3175         * gtk/gtkobject.c (gtk_object_remove_no_notify): renamed from
3176         gtk_object_data_set_destroy to fit the gtkobject.h API.
3177
3178         * applied patch from Damon Chaplin <DAChaplin@email.msn.com>:
3179         * gtk/gtkfontsel.h:
3180         * gtk/gtkfontsel.c:
3181         Added support for an extra 'base' filter which an application can
3182         set to restrict the fonts available to the user (e.g. a terminal
3183         program only wants the user to be able to select fixed-width fonts).
3184         The type of font (bitmap/scalable/scaled bitmap) is now
3185         also a part of the filter, so that an application can
3186         request that only scalable fonts are shown.
3187         There are new functions to set the base & user filters.
3188         I've also stopped the up/down key press signals getting
3189         to the clists since the font selection widget handles
3190         them itself. It acted a bit strangely before.
3191
3192 Sun Oct 25 20:27:02 1998  Tim Janik  <timj@gtk.org>
3193
3194         * gtk/gtkmain.c (gtk_init): support an environment variable
3195         GTK_MODULES= which takes a colon sperated list of module names
3196         automatically loaded at gtk_init() startup.
3197
3198 Sun Oct 25 08:04:33 1998  Tim Janik  <timj@gtk.org>
3199
3200         * gtk/gtkwidget.c: added more g_return_if_fail() statements.
3201
3202 Thu Oct 22 22:40:35 1998  Lars Hamann  <lars@gtk.org>
3203
3204         * gtk/gtkctree.c (gtk_ctree_destroy): removed. gtk_clist_destroy
3205         is sufficient
3206
3207 Thu Oct 22 16:22:55 1998  Lars Hamann  <lars@gtk.org>
3208
3209         * gtk/gtkclist.c (COLUMN_FROM_XPIXEL): samll fix for invisible
3210         columns
3211
3212 Thu Oct 22 02:29:53 1998  Tim Janik  <timj@gtk.org>
3213
3214         * gtk/gtkfilesel.h: GtkType and macro fixups
3215         * gtk/gtkfilesel.c (gtk_file_selection_complete): set a pattern
3216         for the file selection widget to try a completion on (set the
3217         initial filter).
3218
3219 Wed Oct 14 14:34:04 1998  Tim Janik  <timj@gtk.org>
3220
3221         * gtk/gtkmain.c: implement idle functions via GHook. this gives a
3222         slight speed improvement and lessens code duplication.
3223
3224 Tue Oct 20 14:53:28 1998  Owen Taylor  <otaylor@redhat.com>
3225
3226         * gtk/gtkdnd.c: Always send "drag_leave" to dests
3227         without GTK_DEST_DEFAULT_MOTION. 
3228
3229 Tue Oct 20 11:55:24 1998  Owen Taylor  <otaylor@redhat.com>
3230
3231         * gdk/gdk.c (gdk_event_translate): Handle DestroyNotify
3232         on destroyed windows so we clear the XID table properly.
3233         Finish up restructure of return value handling that
3234         was half-done before.
3235
3236 Tue Oct 20 12:57:10 1998  Owen Taylor  <otaylor@redhat.com>
3237
3238         * gdk/gdk.c (gdk_send_clientmessage_to_all): Hunt
3239         the window tree more comprehensively, so that we find
3240         client windows hidden under non-toplevels.
3241
3242 Tue Oct 20 12:43:04 1998  Owen Taylor  <otaylor@redhat.com>
3243
3244         * gtk/gtkselection.c (gtk_selection_data_set): 
3245         Maintain the null-termintation guarantee, even when 
3246         data = NULL, length = 0. (Warn on data = NULL, 
3247         length > 0)
3248
3249 Mon Oct 19 16:41:44 1998  Owen Taylor  <otaylor@redhat.com>
3250
3251         * gtk/gtkwidget.h (struct _GtkWidgetClass): Add in coordinates
3252         into function prototype for drag_data_received. 
3253
3254 Tue, 20 Oct 1998 11:33:10 +0200 Paolo Molaro <lupus@debian.org>
3255
3256         * gtk/gtkdnd.h,gtk/gtkdnd.c: delete is a reserved word in c++.
3257
3258 Mon Oct 19 23:44:41 1998  Lars Hamann  <lars@gtk.org>
3259
3260         * gtk/gtkclist.c: rearranged some functions
3261         (gtk_clist_set_column_auto_resize): new function. toggle auto_resize
3262         flag of column
3263         (gtk_clist_set_column_resizeable): if resizeable disable auto_resize 
3264         (gtk_clist_set_border): deprecated function, use
3265         gtk_clist_set_shadow_type instead.
3266         (gtk_clist_set_shadow_type): replacement for gtk_clist_set_border
3267         (adjust_scrollbars): some cleanups
3268         (select_row) (unselect_row): removed. replaced by equivalent
3269         gtk_signal_emit calls
3270         (add_style_data): removed, use gtk_clist_style_set instead
3271         (gtk_clist_style_set): fill in size data, after style was set. 
3272         (set_cell_contents) (gtk_clist_set_shift) (gtk_clist_set_row_style)
3273         (gtk_clist_set_cell_style): auto_resize columns if needed
3274         (column_auto_resize): resize column if needed for auto_resize 
3275         (real_clear): disable auto_resize while list destroy
3276         (resize_column): removed
3277
3278         * gtk/gtkctree.c : (gtk_ctree_remove_node)
3279         (gtk_ctree_set_line_style) (gtk_ctree_set_expander_style)
3280         (gtk_ctree_node_set_row_style) (gtk_ctree_node_set_cell_style)
3281         (set_cell_contents) (gtk_ctree_node_set_shift) (gtk_ctree_set_spacing)
3282         (real_tree_move) (gtk_ctree_set_indent) (gtk_ctree_insert_node)
3283         (real_tree_collapse) (real_tree_expand) (column_auto_resize):
3284         auto_resize columns if needed
3285         (gtk_ctree_collapse_recursive) (gtk_ctree_collapse_to_depth)
3286         (real_clear): disable auto_resize while processing the tree
3287
3288         * gtk/testgtk.c (create_clist) (create_ctree): set auto_resize
3289         for one column
3290
3291 Mon Oct 19 08:31:36 1998  Owen Taylor  <otaylor@redhat.com>
3292
3293         * gtk/gtkdnd.c (gtk_drag_selection_received): Fixed
3294         typo - look for right atom on transfer failures.
3295
3296 Sun Oct 18 20:52:22 1998  Owen Taylor  <otaylor@gtk.org>
3297
3298         * gtk/gtkwidget.c gtkmarshal.list: Change signal 
3299         for drag_data_get to match the use that was being
3300         made of it everywhere else...
3301
3302 Sun Oct 18 18:16:39 1998  Owen Taylor  <otaylor@gtk.org>
3303
3304         * gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
3305         mechanism, that is used for the DND messages.
3306
3307           Removed all the old DND code.
3308
3309         * gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
3310         get the visual of a given colormap.
3311         
3312         * gtk/gtkcolorsel.c: Conversion to new DND, drag 
3313         a color-swatch.
3314
3315         * gdk/gdk.h gdk/gdkdnd.c: The low-level
3316         X oriented portions of drag and drop protocols.
3317         Sending and receiving client messages, and navigating
3318         window trees.
3319
3320         * gdk/gdkimage.c: added a gdk_flush() when destroying
3321         SHM images to hopefully make it more likely that
3322         X will gracefully handle the segment being destroyed.
3323
3324         * gdk/gdkprivate.h gtk/gtkdebug.h: Add new 
3325         DND debugging flags.
3326
3327         * gtk/gtkeditable.[ch]: Updates for the selection handling
3328         changes.
3329         
3330         * gtk/gtkselection.[ch]: Added GtkTargetList, a 
3331         refcounted data structure for keeping track of lists
3332         of GdkAtom + information. Removed selection_handler_add
3333         in favor of a "drag_data_get" signal.
3334
3335         * gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
3336         dependent) parts of the DND protocols, display of drag icons,
3337         drag-under highlighting, and the "default handlers".
3338
3339         * gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
3340         windows that are used for reliable pointer grabs and
3341         selection handling in the DND code.
3342
3343         * gtk/testdnd.c: New test program for new DND. (Old
3344         DND tests in testgtk still need to be converted.)
3345
3346         * gtk/testselection.c: Use the new selection API.
3347         
3348         * docs/dnd_internals: Start at describing how
3349         all the new code works inside.
3350
3351         * docs/Changes-1.2.txt: New file describing source-incompatible
3352         changes in GTK+-1.2.
3353
3354 Sat Oct 17 22:50:34 1998  Owen Taylor  <otaylor@gtk.org>
3355
3356         * gdk/gdkwindow.c (gdk_window_remove_filter): Free
3357         the right list node.
3358
3359         * gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
3360         to the XID table so we can receive events on it.
3361
3362 Wed Oct 14 12:57:40 1998  Owen Taylor  <otaylor@redhat.com>
3363
3364         * gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
3365         to get the timestamp from a generic event.
3366
3367 Fri Oct  9 13:16:04 1998  Owen Taylor  <otaylor@redhat.com>
3368
3369         * gtk/gtkwidget.c (gtk_widget_add_events): Added function
3370         that safely adds additional events to a widget's event 
3371         mask, even if the widget has previously been realized.
3372         (We can do this, but not remove events from the event
3373          mask).
3374
3375 Fri Oct  2 17:35:35 1998  Owen Taylor  <otaylor@redhat.com>
3376
3377         * gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
3378         for AnyPropertyType.
3379
3380 Fri Oct  2 10:32:21 1998  Owen Taylor  <otaylor@redhat.com>
3381
3382         * gdk/gdkproperty.c (gdk_atom_intern): Add client-local
3383         hashing.
3384
3385 Thu Sep 24 20:33:54 1998  Owen Taylor  <otaylor@redhat.com>
3386
3387         * gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
3388         isn't a timestamp.
3389
3390 Thu Sep 17 14:23:03 1998  Owen Taylor  <otaylor@redhat.com>
3391
3392         * gdk/gdk.c (gdk_event_translate): Removed printing
3393         of unknown window lookup warnings. (Made it
3394         a GDK_NOTE) - they happen in many circumstances.
3395
3396 Tue Sep  8 12:38:43 1998  Owen Taylor  <otaylor@redhat.com>
3397
3398         * Call XFilterEvent() on events we get for unknown
3399         windows, since it may be the window Xlib uses to
3400         communicate with the IM. 
3401         (From Yung-Ching Hsiao <yhsiao@cae.wisc.edu>)
3402
3403 Tue Sep  1 10:53:52 1998  Owen Taylor  <otaylor@redhat.com>
3404
3405         * gtk/gtkprogress.c (gtk_progress_finalize): Unref
3406         the adjustment.
3407
3408 Thu Aug 27 12:03:14 1998  Owen Taylor  <otaylor@redhat.com>
3409
3410         * gtk/gtksignal.c (gtk_signal_newv): Improve warning
3411         message for return_value + GTK_RUN_FIRST.
3412
3413 1998-10-18  Martin Baulig  <martin@home-of-linux.org>
3414
3415         * gtk/gtktext.c (gtk_text_set_line_wrap): new function to toggle
3416         line wrapping like gtk_text_set_word_wrap () toggles word wrapping.
3417
3418 Fri Oct 16 15:59:02 1998  Lars Hamann  <lars@gtk.org>
3419
3420         * gtk/testgtk.c (insert_row_clist) (create_clist): change a few cell
3421         styles of inserted row
3422         (change_style): change style of focus_row
3423
3424         * gtk/gtkclist.c (gtk_clist_get_row_style) (gtk_clist_set_row_style)
3425         (gtk_clist_get_cell_style) (gtk_clist_set_cell_style): new functions
3426         to set/get row/cell styles.
3427         (gtk_clist_realize): attach row and cell style, allocate row colors.
3428         (gtk_clist_unrealize): detach row and cell styles.
3429         (get_cell_style): new function. get correct cell style.
3430         (draw_cell_pixmap): new function. 
3431         (draw_row): draw cells with row or cell styles.
3432         (row_new): set cell and row styles to NULL.
3433         (row_delete): detach & unref cell and row styles.
3434
3435         * gtk/gtkctree.c (ctree_detach_styles) (ctree_attach_styles): 
3436         new functions to attach/detach styles and allocate colors.
3437         (gtk_ctree_realize) (gtk_ctree_unrealize): attach/detach cell and row
3438         styles of invisible nodes.
3439         (draw_cell_pixmap): new function. 
3440         (get_cell_style):  new function. get correct cell style.
3441         (gtk_ctree_draw_expander): new function. draw tree expander.
3442         (gtk_ctree_draw_lines): new function.draw tree lines.
3443         (draw_row): draw cells with row or cell styles.
3444         (row_new): set cell and row styles to NULL.
3445         (row_delete): detach & unref cell and row styles.
3446         (gtk_ctree_node_get_row_style) (gtk_ctree_node_set_row_style) 
3447         (gtk_ctree_node_get_cell_style) (gtk_ctree_node_set_cell_style): 
3448         Analogons of GtkCList functions 
3449         (gtk_ctree_set_spacing): new function. set spacing between
3450         tree expander and cell contents
3451         (gtk_ctree_set_expander_style): new function. set expander style
3452         of ctree.
3453         (ctree_is_hot_spot): few changes due to draw_row modifications.
3454
3455 Wed 14 Oct 1998 10:17:13 +0200 Paolo Molaro <lupus@debian.org>
3456
3457         * gtk/gtkcombo.c: try completion on MOD1-TAB.
3458         Handle case when the combo->list is empty.
3459
3460 Mon Oct 12 07:51:34 1998  Tim Janik  <timj@gtk.org>
3461
3462         * gtk/gtksignal.c (gtk_signal_handlers_destroy): only unref those
3463         handlers that have not yet been disconnected (finally managed to
3464         trigger the gtk_signal_handler_unref() paranoid warning).
3465
3466 Sat Oct 10 03:37:50 1998  Tim Janik  <timj@gtk.org>
3467
3468         * gtk/gtkwidget.c (gtk_widget_get_arg): fixed default value for x, y,
3469         width and height which is -1 and not -2.
3470
3471 Sat Oct 10 00:50:53 PDT 1998 Manish Singh <yosh@gimp.org>
3472
3473         * HACKING
3474         * autogen.sh: we need libtool 1.2b now
3475
3476 Sat Oct 10 03:37:50 1998  Tim Janik  <timj@gtk.org>
3477
3478         * gtk/gtktable.c (gtk_table_set_child_arg): take the left, right, top
3479         and bottom attach arguments as mandatory and readjust the table size
3480         and opposing edge accordingly if required. this way the order in which
3481         the arguments are set doesn't matter.
3482
3483 Thu Oct  8 15:53:59 1998  Owen Taylor  <otaylor@redhat.com>
3484
3485         * gtk/gtktypeutils.c (gtk_type_class_init): Fixed warning
3486         message to print out parent class name correctly.
3487
3488 Thu Oct  8 07:07:10 1998  Tim Janik  <timj@gtk.org>
3489
3490         * gtk/gtkobject.h: 
3491         * gtk/gtkobject.c:
3492         removed functions gtk_object_set_data_destroy and
3493         gtk_object_set_data_destroy_by_id.
3494         added functions gtk_object_remove_no_notify and
3495         gtk_object_remove_no_notify_by_id which will remove a certain data
3496         portion without invokation of its destroy notifier, this should only
3497         be used in very controled circumstances.
3498
3499 Wed Oct  7 23:59:37 1998  Lars Hamann  <lars@gtk.org>
3500
3501         * gtk/gtkclist.c (gtk_clist_set_column_resizeable): added
3502         size_allocate_title_buttons call
3503         (gtk_clist_realize): changed initial column.window position
3504
3505 Wed Oct  7 20:27:28 1998  Lars Hamann  <lars@gtk.org>
3506
3507         * gtk/gtkctree.h (struct _GtkCTree): removed xor_gc, use clists
3508         xor_gc instead
3509         * gtk/gtkctree.c (create_xor_gc): removed
3510         (gtk_ctree_button_press): set correct line_attributes for
3511         clist->xor_gc on drag start
3512         (gtk_ctree_button_release): reset clist->xor_gc
3513
3514 Wed Oct  7 05:15:36 1998  Tim Janik  <timj@gtk.org>
3515
3516         * gtk/gtk*.h:
3517         * gdk/gdk.h: removed all occourances of #pragma } and #pragma {
3518         which were in place to fixup emacs' cc-mode indentation.
3519         putting (c-set-offset 'inextern-lang 0) into ~/.emacs is the
3520         proper way to achive this and doesn't produce problems for
3521         stupid pragma-related compiler bugs. ;)
3522
3523 Wed Oct  7 00:59:46 1998  Lars Hamann  <lars@gtk.org>
3524
3525         * gtk/gtkclist.h: new signal GtkCList::resize_column.
3526         * gtk/gtkclist.c (draw_row): don't draw invisible columns
3527         (size_allocate_title_buttons) (size_allocate_columns):
3528         skip invisible columns
3529         (new_column_width): take min/max_width into account 
3530         (gtk_clist_button_release) (gtk_clist_motion):
3531         changes due to changed new_column_width function
3532         (LIST_WIDTH): changed define to inline function.
3533         (real_resize_column): class function for resize_column signal
3534         (gtk_clist_motion): fixed autoscrolling for column resizes
3535         (gtk_clist_set_column_visibility): don't hide last visible column,
3536         changed visible arg to gboolean
3537         (gtk_clist_set_column_min_width)(gtk_clist_set_column_max_width):
3538         new functions : set min/max width of a column
3539         (gtk_clist_set_column_resizeable): new function : enable/disable
3540         column resize operations by mouse
3541
3542         * gtk/gtkctree.c (draw_row): don't draw invisible columns
3543         (ctree_is_hot_spot): return FALSE if tree_column is invisible
3544         (draw_xor_line)  (draw_xor_rect): draw full rectangle/line if
3545         tree_column is invisible
3546         (gtk_ctree_find_all_by_row_data)
3547         (gtk_ctree_find_all_by_row_data_custom):  new function from
3548         Ronan Bourlier <ronan@radioss.com>. Returns a GList of all
3549         GtkCTreeNodes with row->data == data.
3550
3551 Tue Oct  6 14:05:00 1998  Tim Janik  <timj@gtk.org>
3552
3553         * gtk/testgtk.c (cb_tree_destroy_event): use g_free to free g_malloced
3554         memory (Martin Pool <mbp@wistful.humbug.org.au>).
3555
3556 Mon Oct  5 15:26:30 1998  Raph Levien  <raph@gimp.org>
3557
3558         * gdk/gdkrgb.c (gdk_rgb_convert_0888_br): Fixed a few long's that
3559         should have been guint32. Thanks to Tristan Colgate for finding it.
3560
3561 Sun Oct  4 22:47:22 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
3562
3563         * gtk/gtkcalendar.h:
3564           gtk/gtkcalendar.c: More changes:
3565           - The day with focus is now seperated from the day selected
3566           - The day with focus has the xor's line around it
3567           - The selected day is now standard selected style
3568           - The week names and week numbers are now also drawn
3569             with selected style
3570           - Space now selects the day which has focus
3571
3572 Sun Oct  4 17:55:52 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
3573
3574         * gtk/gtkcalendar.h:
3575           gtk/gtkcalendar.c: Some significant changes, including:
3576           - No longer draw focus around entire widget, only around
3577             the day which has focus
3578           - Draw relief around entire widget like originally planned
3579           - Show header and day names by default 
3580           - Move data private to the widget out of GtkCalendar struct
3581             and only point to it with a gpointer
3582           - Remove some old unused variables from GtkCalendar struct
3583
3584 Sun Oct  4 17:45:43 BST 1998  Tony Gale  <gale@gtk.org>
3585
3586         * docs/gtk_tut.sgml: update I've had sat around:
3587           - Grammar patch from James R. Van Zandt <jrv@vanzandt.mv.com>
3588           - Range Widget update from David Huggins-Daines <bn711@freenet.carleton.ca>
3589           - New Toolbar section from Jacek Wojdel <J.C.Wojdel@cs.tudelft.nl>
3590
3591 1998-10-01  Martin Baulig  <martin@home-of-linux.org>
3592
3593         * gtk/gtkclist.h (GtkCListColumn): Added `visible'.
3594         
3595         * gtk/gtkclist.c (gtk_clist_set_column_visibility): New function.
3596         Makes it possible to individually show and hide columns.
3597         (size_allocate_columns): Adapted to keep track of hidden columns.
3598         (size_allocate_title_buttons): Likewise.
3599
3600 Sat Oct  3 17:54:48 1998  Tim Janik  <timj@gtk.org>
3601
3602         * gtk/gtkargcollector.c (GTK_ARG_COLLECT_VALUE): for unknown foreign
3603         fundamental types, collect an argument of the type returned from
3604         gtk_type_get_varargs_type(). removed the first macro argument which
3605         was just the same as the fundamental type of the *arg passed to
3606         the macro.
3607         * gtk/gtkarg.c (gtk_args_collect): 
3608         * gtk/gtksignal.c (gtk_signal_collect_params): changed callers.
3609
3610         * gtk/gtktypeutils.h: 
3611         * gtk/gtktypeutils.c: new functions gtk_type_set_varargs_type() and
3612         gtk_type_get_varargs_type() to set and query the varargs collect
3613         type used for a fundamental type, registered outside of Gtk.
3614
3615         * gtk/gtkmisc.c (gtk_misc_class_init): changed object arguments
3616         GtkMisc::xalign and GtkMisc::yalign from GTK_TYPE_DOUBLE to
3617         GTK_TYPE_FLOAT.
3618
3619         * gtk/gtkframe.c (gtk_frame_class_init): changed object arguments
3620         GtkFrame::label_xalign and GtkFrame::label_yalign from GTK_TYPE_DOUBLE
3621         to GTK_TYPE_FLOAT.
3622
3623 Sat Oct  3 01:25:24 1998  Lars Hamann  <lars@gtk.org>
3624
3625         * gtk/gtkctree.c (gtk_ctree_insert_gnode) (real_tree_collapse)
3626         (gtk_ctree_link) (gtk_ctree_unlink) (real_tree_expand): 
3627         fixes for assignment errors with GTK_CTREE_NODE_NEXT/PREV
3628
3629         (real_tree_expand) (real_tree_collapse):
3630         don't expand/collapse a leaf
3631
3632 Fri Oct  2 16:10:36 1998  Tim Janik  <timj@gtk.org>
3633
3634         * gtk/gtktypeutils.c (gtk_type_enum_find_value): make sure we don't
3635         segfault when looking up a non-existant value name (reported by
3636         Pablo <pcj+gtk@primenet.com>).
3637
3638 Thu Oct  1 10:40:20 1998  Tim Janik  <timj@gtk.org>
3639
3640         * gtk/gtkclist.h (gtk_clist_prepend):
3641         * gtk/gtkclist.c (gtk_clist_prepend): new function.
3642         (gtk_clist_insert): added g_return_val_if_fail()
3643         statements. accept a row parameter < 0 or > clist->rows to indicate
3644         append mode.
3645         (real_clear): first clean up all internal pointers and lists (e.g.
3646         clist->row_list or clist->rows), then delete the distinct rows. this
3647         is required because of destroy notifiers, we need to have all internal
3648         structures updated and be reentrant.
3649
3650         * gtk/gtkcalendar.h: 
3651         * gtk/gtkcalendar.c: removed the `gtk_calendar_' prefix from the
3652         GtkCalendarClass signal methods.
3653         GtkType and macro fixups, put `void' into () prototypes, avoid C++
3654         style comments, indentation fixes, fixed some g_return_if_fail()
3655         statements.
3656         (gtk_calendar_paint_header):
3657         (gtk_calendar_paint_day_names): 
3658         (gtk_calendar_paint_week_numbers): 
3659         (gtk_calendar_paint_main): made these static functions.
3660         (gtk_calendar_select_month):
3661         (gtk_calendar_select_day):
3662         (gtk_calendar_mark_day):
3663         (gtk_calendar_unmark_day):
3664         (gtk_calendar_get_date): signedness corrections, use guints
3665         rather than gints.
3666         (gtk_calendar_size_request): removed unused variables.
3667
3668 Wed Sep 30 13:11:09 1998  Tim Janik  <timj@gtk.org>
3669
3670         * gtk/gtkitemfactory.c (gtk_item_factory_add_item): list all
3671         widgets in the ->widgets_by_action list that have a callback
3672         defined (not only those with a callback_action!=0).
3673
3674 Sun Sep 27 22:02:48 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
3675
3676         * gtk/gtkcalendar.h:
3677           gtk/gtkcalendar.c:
3678           examples/calendar/gcalendar.c: remove HAVE_FEATURES stuff
3679
3680 Sun Sep 27 02:18:06 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
3681
3682         * gtk/gtkcalendar.h:
3683           gtk/gtkcalendar.c:
3684           examples/calendar: Added gtkcalendar widget and demo
3685
3686 Sat Sep 26 06:15:34 1998  Tim Janik  <timj@gtk.org>
3687
3688         * gtk/gtkclist.c (gtk_clist_sort): 
3689         (gtk_clist_clear): 
3690         (gtk_clist_unselect_all): 
3691         (gtk_clist_select_all): adde g_return_if_fail() statements.
3692
3693 Sat Sep 26 04:46:22 1998  Tim Janik  <timj@gtk.org>
3694
3695         * configure.in: set binary age and interface age to 0.
3696
3697         * gtk/gtkspinbutton.h: 
3698         * gtk/gtkspinbutton.c: changed gtk_spin_button_construct to
3699         gtk_spin_button_configure. gtk_spin_button_construct is still defined
3700         as an alias for gtk_spin_button_configure for source compatibility,
3701         but actuall use is deprecated.
3702         typeness corrections, i.e. gint->gboolean and gint->guint.
3703         added object arguments: GtkSpinButton::value, GtkSpinButton::wrap,
3704         GtkSpinButton::shadow_type, GtkSpinButton::update_policy,
3705         GtkSpinButton::numeric, GtkSpinButton::snap_to_ticks,
3706         GtkSpinButton::adjustment, GtkSpinButton::digits and
3707         GtkSpinButton::climb_rate.
3708         GtkType and macro fixups.
3709
3710 Sat Sep 25 23:33:55 1998  Tim Janik  <timj@gtk.org>
3711
3712         * gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
3713         the *real* geometry position of a window, taken possible window
3714         manager offsets into account.
3715         this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
3716         olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
3717         it does fail though for amiwm which adds windows to a pseudo root
3718         window, and for icewm by a small offset because it defines the
3719         geometry position whithin its border.
3720
3721         * gtk/testgtk.c: added "saved position" test to figure how
3722         gdk_window_get_root_origin() interacts with window managers (repopup
3723         this window to figure ;).
3724
3725 Wed Sep 23 06:09:19 1998  Tim Janik  <timj@gtk.org>
3726
3727         * configure.in: update to Gtk+ version 1.1.3, binary age 1,
3728         interface age 1.
3729
3730         * gtk/gtkobject.c
3731         (gtk_object_ref): 
3732         (gtk_object_unref): check for ->ref_count to be greater than 0 (the
3733         existing code was buggy in letting ->ref_count==0 pass through and
3734         then failing the living_objs_ht assertion).
3735
3736         * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
3737         pixtext fields (Roman Pozlevich <roma@botik.ru>).
3738
3739 Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
3740
3741         * Released GTK+ 1.1.2
3742
3743 Mon Sep 21 01:12:44 1998  Jay Cox  (jaycox@earthlink.net)
3744
3745         * gtk/Makefile.am: use $(PERL) instead of perl
3746         * gtk/gtkcolorsel.c: render properly in non-square aspect ratios.
3747         also much faster to render.
3748
3749 Mon Sep 21 07:44:30 1998  Tim Janik  <timj@gtk.org>
3750
3751         * gtk/gtkobject.c (gtk_object_class_add_signals): reallocate
3752         the required memory block, rather than allocating it newly from
3753         scratch and doing a full-blown block copy on it.
3754
3755 Mon Sep 21 02:30:06 1998  Tim Janik  <timj@gtk.org>
3756
3757         * NEWS file update for upcoming release of Gtk+ version 1.1.2,
3758         binary age 0, interface age 0.
3759
3760         * gtk/gtkmain.c (gtk_init): enforce gtk-modules to always be resident.
3761
3762 Sun Sep 20 18:21:46 1998  Owen Taylor  <otaylor@redhat.com>
3763
3764         * ltmain.sh: Patch to libtool-1.2b to make --disable-static
3765         work.
3766
3767 Sun Sep 20 09:52:39 1998  Owen Taylor  <otaylor@gtk.org>
3768
3769         * HACKING: indent other than GNU indent should be OK
3770           now.
3771
3772         * gtk/genmarshal.pl gtk/Makefile.am: Call indent on file
3773           instead of piping through indent. If indent wasn't
3774           found in ./configure don't bother indenting at 
3775           all.
3776
3777 Fri Sep 18 19:11:10 1998  Owen Taylor  <otaylor@redhat.com>
3778
3779         * gdk/gdk.h: Add names to prototype for gdk_image_new_bitmap.
3780
3781 Fri Sep 18 18:54:59 1998  Jay Cox  (jaycox@earthlink.net)
3782
3783         * gtk/Makefile.am: use $(AWK) instead of awk
3784
3785 1998-09-18  Raja R Harinath  <harinath@cs.umn.edu>
3786
3787         * gtk/Makefile.am (gdk_headers): 
3788         Remove references to $(top_srcdir). 
3789         (gtk.defs, gtktypebuiltins{.h,_vars.c,_ids.c,_evals.c}): Simplify.
3790         * gtk/makeenums.pl (parse_entries): Don't look for $srcdir.
3791
3792 Fri Sep 18 19:58:24 1998  Tim Janik  <timj@gtk.org>
3793
3794         * gtk/gtkobject.h (struct _GtkObject): changed gpointer object_data; to
3795         GData*object_data to cure compiler warnings.
3796
3797 Thu Sep 17 19:06:47 PDT 1998 Manish Singh <yosh@gimp.org>
3798
3799         * install-sh
3800         * missing
3801         * mkinstalldirs: updated to latest automake version
3802
3803 1998-09-17  Raja R Harinath  <harinath@cs.umn.edu>
3804
3805         * gtk/Makefile.am (source_headers): Move `gtkfeature.h' ...
3806         (gtkinclude_HEADERS): ... here.
3807         (gtk.defs): Pass `g' flag to sed, to replace all occurances.
3808
3809 Thu Sep 17 10:49:51 1998  Raph Levien  <raph@gimp.org>
3810
3811         * HACKING: added GNU indent, as it is now required to successfully
3812         build gtk+. Should this be detected in autoconf, possibly?
3813
3814 Tue Sep 15 14:57:30 1998  Owen Taylor  <otaylor@redhat.com>
3815
3816         * Makefile.am gtk-config.in l*: Update to libtool-1.2b,
3817         change library versioning scheme to drop LT_RELEASE
3818         from the -l line, while keeping it in the soname.
3819
3820 Tue Sep 15 14:10:33 1998  Owen Taylor  <otaylor@redhat.com>
3821
3822         * configure.in Makefile.in: define a MAINT-like variable REBUILD
3823         which is set if Perl and awk are found, and autogenerated sources
3824         can be rebuilt. Remove the auto-generated sources from
3825         CVS. 
3826
3827         Add dependencies so that the autogenerated sources are 
3828         rebuilt if the files they depend on change. 
3829         (This unfortunately currently results in the entire
3830         gtk/ directory being rebuilt when any header changes.
3831         Moving all enums to gtkenums.h would fix this.)
3832
3833 Thu Sep 17 05:12:48 1998  Tim Janik  <timj@gtk.org>
3834
3835         * gtk/gtkobject.h: added gtk_object_set_data_destroy and
3836         gtk_object_set_data_destroy_by_id functions to set the destroy
3837         function pointer for an existing data portion.
3838
3839         * gtk/gtkobject.c: removed the GtkObjectData implementation and
3840         made all gtk_object_*data* functions use the GLib equivalents.
3841
3842 1998-09-16  Federico Mena Quintero  <federico@nuclecu.unam.mx>
3843
3844         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): Test whether type
3845         is not equal to GTK_TOOLBAR_CHILD_RADIOBUTTON before checking that
3846         (widget != NULL), otherwise radio button insertion will not work
3847         -- the widget argument is NULL for the first radio button in the
3848         group.
3849
3850 Tue Sep 15 13:09:24 1998  Owen Taylor  <otaylor@redhat.com>
3851
3852         * gdk/gdkimage.c (gdk_image_new): Reverted global changes
3853         of g_new to malloc(), added back in the one place where
3854         it actually mattered. #include <stdlib.h>.
3855
3856         * gdk/gdkrgb.c: g_malloc() to malloc() as above.
3857
3858 Tue Sep 15 11:30:03 1998  Owen Taylor  <otaylor@redhat.com>
3859
3860         * gtk/gtkfilesel.c: Keep a list of directories in which we never
3861         want to stat the entries (like /afs), and assume everything in
3862         those directories is a subdirectory.
3863
3864         - When following a path, try to open components even when
3865         we don't find them in their parent's directory to
3866         support automounters.
3867
3868 Tue Sep 15 11:06:13 1998  Owen Taylor  <otaylor@redhat.com>
3869
3870         * gtk/gtkwindow.c (gtk_window_move_resize): Don't request
3871         a new size from the WM if we asked for the same size
3872         before and our request was rejected.
3873
3874         * gtk/gtkwindow.c (gtk_window_configure_event): If
3875         in response to a request, we get a configure event
3876         with unchanged dimensions, send a synthetic expose
3877         since ForgetGravity won't expose our window.
3878
3879 Mon Sep 14 14:28:24 1998  Owen Taylor  <otaylor@redhat.com>
3880
3881         * gtk/gtktext.c (adjust_adj): Change the way we
3882         set the adjustments on resize so that it tries to
3883         keep the beginning of the text in approximately
3884         the same place. 
3885
3886         Removed assertion that the above change made invalid.
3887
3888 Thu Sep 10 22:19:35 1998  Owen Taylor  <otaylor@redhat.com>
3889
3890         * gtk/gtktext.c: - Save first_cut_pixels when switching
3891         sizes, so that if we switch to the _same_ size,
3892         we don't move lines around.
3893
3894         - Make sure that the text area always has a size of at
3895         least 1x1, then do all computations when realized.
3896
3897         - When fetching lines in recompute_geometry, make
3898         sure we fetch enough lines to cover the screen.
3899         
3900 Mon Sep 14 21:47:35 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
3901
3902         * gdk/gdkimage.c: changed g_new()s to malloc()s and 
3903           g_free()s to free()s to avoid mixing g_new()s with 
3904           free()s.  X itself uses free() on some of the 
3905           malloced memory.
3906
3907 Sat Sep 12 10:44:06 1998  Owen Taylor  <otaylor@redhat.com>
3908
3909         * gtkfilesel.c: Maintain a list of directories like
3910         /afs we know contain only directories, and avoid
3911         stat'ing files in those directories. (Because
3912         stat'ing all files in /afs is extremely expensive)
3913
3914         To support automounters, try to open directories,
3915         even if we couldn't find them when reading their
3916         parent directory.
3917
3918 Thu Sep  3 10:29:03 1998  Owen Taylor  <otaylor@redhat.com>
3919
3920         * gtk.m4: Conditionalize check for GTK_MAJOR_VERSION,
3921         to allow the same gtk.m4 to work for 1.0.x and
3922         1.1.x.
3923
3924 Fri Sep 11 15:25:10 1998  Lars Hamann  <lars@gtk.org>
3925
3926         * gtk/gtkclist.c (gtk_clist_set_selectable): new function
3927         to set/unset the selectable flag of a single row.
3928         (gtk_clist_get_selectable): new function 
3929         to get the state of the selectable flag
3930
3931         * gtk/gtkctree.c (gtk_ctree_node_set_selectable)
3932         (gtk_ctree_node_get_selectable): clist analogons
3933         
3934 Thu Sep 10 17:04:03 1998  Raph Levien  <raph@gimp.org>
3935
3936         * gtk/testrgb.c (testrgb_rgb_test): Small changes to the test
3937         pattern.
3938
3939         * gdk/gdkrgb.c (gdk_rgb_convert_gray4_pack): Fixed some alignment
3940         bugs in the 4bit gray cases.
3941
3942 Wed Sep  9 02:48:44 PDT 1998 Manish Singh <yosh@gimp.org>
3943
3944         * configure.in: added -posix check for NeXTStep
3945
3946         * gtk/testthreads.c: applied part of gtk-joke-980907-0 to use
3947         a unique buffer for each thread.
3948
3949         * docs/gtk-config.1: clarified copyright
3950
3951 Tue Sep  8 05:19:51 1998  Tim Janik  <timj@gtk.org>
3952
3953         * gdk/gdk.c (gdk_init): use g_atexit() instead of ATEXIT.
3954
3955         * gtk/gtkmain.c (gtk_init): use g_atexit() instead of ATEXIT.
3956
3957         * gtk/gtkobject.c (gtk_object_init_type): use g_atexit() instead of
3958         ATEXIT.
3959         
3960         * ltconfig: use GLib's ltconfig which honours lcc.
3961
3962 Mon Sep  7 20:09:23 PDT 1998 Manish Singh <yosh@gimp.org>
3963
3964         * configure.in: comment the -std1 check and save LIBS properly
3965
3966 Sun Sep  6 12:36:23 PDT 1998 Manish Singh <yosh@gimp.org>
3967
3968         * gtk/testrgb.c: #include <stdlib.h>
3969
3970 Sat Sep  5 16:01:19 1998  Owen Taylor  <otaylor@gtk.org>
3971
3972         * gdk/gdkinputxfree.h gdk/gdk.c gdk/gdkinputgxi.h:
3973         When the pointer is grabbed on an input window,
3974         either explicitely, or through press-grab, and
3975         then grabbed on a non-input window, ungrab the
3976         devices.
3977
3978 Sat Sep  5 07:13:19 1998  Tim Janik  <timj@gtk.org>
3979
3980         * gtk/gtktypeutils.h: don't include any gdk headers.
3981         added structure definitions for GtkTypeObject and GtkTypeClass,
3982         which cover the very basic fields of GtkObject and GtkObjectClass,
3983         which are actually used by the type system.
3984         
3985         * gtk/gtktypeutils.c: don't include gtkobject.h or gtkcontainer.h,
3986         we only refer to our own structures. improved class inheritance
3987         sanity checking a bit.
3988
3989         * gtk/gtkobject.h: placed appropriate comments at the beginnings
3990         of the GtkObject and GtkObjectClass structures, which explain
3991         their relationship to GtkTypeObject and GtkTypeClass.
3992
3993         * gtk/gtktypeutils.h:
3994         * gtk/gtkobject.h:
3995         moved GTK_STRUCT_OFFSET(), GTK_CHECK_CAST(), GTK_CHECK_CLASS_CAST(),
3996         GTK_CHECK_TYPE() and GTK_CHECK_CLASS_TYPE() macro definitions from
3997         gtkobject.h to gtktypeutils.h.
3998
3999         * gtk/gtkobject.h:
4000         * gtk/gtkobject.c:
4001         removed gtk_object_check_cast() and gtk_object_check_class_cast()
4002         functions. to keep source compatibility, we can provide macro aliases
4003         for the corresponding gtk_type_* functions. but then again, people
4004         shouldn't have been using these functions anyways since they were part
4005         of Gtk's internal API.
4006
4007         * gtk/gtktypeutils.h:
4008         * gtk/gtktypeutils.c:
4009         implemented gtk_type_check_object_cast() and gtk_type_check_class_cast()
4010         functions to check GtkTypeObject and GtkTypeClass types.
4011
4012 Thu Sep  3 07:16:54 1998  Tim Janik  <timj@gtk.org>
4013
4014         * gtk/gtkctree.h:
4015         * gtk/gtkctree.c: `const' fixups.
4016
4017         * gtk/gtkclist.h:
4018         * gtk/gtkclist.c: `const' fixups and some coding style adaptions.
4019
4020         * gtk/gtkctree.c (gtk_ctree_insert_node): don't dereference *text
4021         if it is passed as NULL.
4022
4023 Wed Sep  2 22:41:40 1998  Raph Levien  <raph@gimp.org>
4024
4025         * gdk/gdkrgb.c (gdk_rgb_select_conv): Fixed 32bpp image depth
4026         big-endian cases. Added a 4bpp packed gray mode (somewhat
4027         incorrectly hardwired to MSB), which should take care of
4028         Stric's hardware.
4029
4030 Thu Sep  3 04:45:57 1998  Tim Janik  <timj@gtk.org>
4031
4032         * gtk/gtkaccelgroup.c (gtk_accel_group_add): plug another small
4033         GtkSIgnalQuery leak.
4034
4035 Thu Sep  3 04:22:20 1998  Tim Janik  <timj@gtk.org>
4036
4037         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current):
4038         GTK_MENU_DIR_CHILD: check for the existance of
4039         menu_shell->active_menu_item before accessing its child.
4040         GTK_MENU_DIR_PREV:
4041         GTK_MENU_DIR_NEXT: if we haven't had an active item and still
4042         don't, make a default selection.
4043
4044 Wed Sep  2 00:28:58 1998  Tim Janik  <timj@gtk.org>
4045
4046         * gtk/gtkwidget.c (gtk_widget_propagate_state): iterate
4047         the children with _forall for sensitivity changes and with
4048         _foreach on pure state changes. this fixes a lot of the
4049         old inclusions of internal widgets into _foreach calls.
4050
4051         * gtk/gtktree.c: removed gtk_tree_foreach, let gtk_tree_forall
4052         do the work. don't walk the subtrees of first level children.
4053
4054         * gtk/gtktreeitem.c: provide a _forall implementation,
4055         which walks the subtrees as well for include_internals.
4056
4057         * gtk/gtkmenuitem.c: provide a _forall implementation, which walks
4058         the submenus as well for include_internals.
4059
4060         * gtk/gtkscrolledwindow.c: removed gtk_scrolled_window_foreach and
4061         implemented gtk_scrolled_window_forall, which will iterate over
4062         the viewport and the scrollbars for gtk_container_forall or
4063         iterate over the viewports children for gtk_container_foreach.
4064
4065         * gtk/gtktoolbar.c: 
4066         * gtk/gtktable.c: 
4067         * gtk/gtkpaned.c:
4068         * gtk/gtkpacker.c:
4069         * gtk/gtkmenushell.c: 
4070         * gtk/gtklist.c: 
4071         * gtk/gtkfixed.c:
4072         * gtk/gtkclist.c:
4073         * gtk/gtkbox.c: 
4074         * gtk/gtkbin.c: 
4075         * gtk/gtknotebook.c:
4076         removed the old gtk_*_foreach functions and provided gtk_*_forall.
4077
4078         * gtk/gtknotebook.c:
4079         (gtk_notebook_real_switch_page): expose tabs.
4080         (gtk_notebook_page_num): new function to return the page number
4081         of a distinct child.
4082         (gtk_notebook_focus): minor fixups. foxus handling is still screwed
4083         under some circumstances.
4084
4085         * gtk/gtktreeitem.c:
4086         (gtk_real_tree_item_select):
4087         (gtk_real_tree_item_deselect): major fixes.
4088         some general fixups wrt queue_redraw, and tree items not being
4089         NO_WINDOW widgets.
4090
4091         * gtk/gtklistitem.c:
4092         (gtk_real_list_item_select): 
4093         (gtk_real_list_item_deselect): 
4094         (gtk_real_list_item_toggle): 
4095         removed unneccessary queue_redraw calls.
4096
4097 Wed Aug 30 09:42:07 1998  Tim Janik  <timj@gtk.org>
4098
4099         * gtk/gtkoptionmenu.c: allow optionmenus to have the focus and
4100         automatically popup the menu on space bar.
4101
4102 Wed Aug 26 06:40:34 1998  Tim Janik  <timj@gtk.org>
4103
4104         * gtk/gtkcontainer.h:
4105         * gtk/gtkcontainer.c: implemented gtk_container_forall() (as a class
4106         method), which acts similar to gtk_container_foreach(), but iterates
4107         over internal children. the GtkContainer::foreach signal vanished in
4108         favour of a new class method ->forall() that optionally includes
4109         internal widgets.
4110
4111         * gtk/gtkclist.c (gtk_clist_init): provide no _foreach implementation
4112         but a _forall implementation, since all child widgets we have are
4113         internal ones.
4114         (column_button_create): set the parent window prior
4115         to gtk_widget_set_parent().
4116
4117         * gtk/gtkwidget.c:
4118         exchanged all calls to gtk_container_foreach() with
4119         gtk_container_forall().
4120
4121         * gtk/gtkwidget.h: 
4122         * gtk/gtkwidget.c: added the GTK_COMPOSITE_CHILD, exported through
4123         the GtkWidget::composite_child argument. to have a widget created
4124         with the flag initially, two new functions got added to wrap a widgets
4125         creation:
4126         gtk_widget_push_composite_flag() and gtk_widget_pop_composite_flag().
4127
4128 Wed Aug 25 23:37:39 1998  Tim Janik  <timj@gtk.org>
4129
4130         * gtk/gtktooltips.h:
4131         * gtk/gtktooltips.c: exported gtk_tooltips_create_window() as
4132         gtk_tooltips_force_window(), so tooltips->tip_window can be accessed
4133         prior to the first tip being set.
4134         don't put an extra reference on the window, since it is a toplevel,
4135         it wont get destroyed from anywhere else.
4136
4137         * overall macro and GtkType fixups.
4138
4139 1998-09-02  Federico Mena Quintero  <federico@nuclecu.unam.mx>
4140
4141         * gtk/gtkcolorsel.c: Replaced "foo == TRUE" and "foo == FALSE"
4142         constructs by more forgiving ones.  (Does anyone else feel like
4143         the color selector need rewriting?).
4144
4145 Tue Sep  1 10:53:52 1998  Owen Taylor  <otaylor@redhat.com>
4146
4147         * gtk/gtkprogress.c (gtk_progress_finalize): Unref
4148         the adjustment.
4149
4150         * gtk/gtkmenu.c: Modified reference counting so
4151         that the reference count from the toplevel that
4152         the menu creates to the menu is invisible to the
4153         application.
4154
4155 Mon Aug 31 21:36:31 1998  Raph Levien  <raph@gimp.org>
4156
4157         * gdk/gdkrgb.c (gdk_rgb_select_conv): Improved the 24bpp
4158         conversion selection logic, so Suns and other big-endian
4159         machines should get faster conv routines. This is also the
4160         point where 4bpp gray and 1bpp are checked in, although I
4161         wouldn't be surprised if 1bpp is a little buggy. This is
4162         synchronized with the 0.0.7 release of GdkRgb.
4163
4164         * gtk/Makefile.am: 
4165         * gtk/testrgb.c: Checked in testrgb.c to CVS, and made the
4166         appropriate change to the Makefile.am
4167
4168 Mon Aug 31 15:18:19 1998  Raph Levien  <raph@gimp.org>
4169
4170         * gdk/gdkrgb.[ch]: Added a gdk_draw_rgb_image_dithalign function,
4171         which is good for images that scroll (makes the dither patterns
4172         align correctly)
4173
4174 Sat Aug 29 14:50:56 PDT 1998 Manish Singh <yosh@gimp.org>
4175
4176         * gdk/gdkcolor.c:
4177         (gdk_colormap_new) (gdk_colormap_get_system):
4178         quell some warnings with g_hash_table_new
4179
4180         * gtk/gtkaccelgroup.c (gtk_accel_group_add): free the GtkSignalQuery
4181         when we're done with it
4182
4183         * gtk/itemfactory.c:
4184         (gtk_item_factory_from_path):
4185         (gtk_item_factory_create_item): free some strings
4186
4187         * gtk/gtklabel.c:
4188         (gtk_label_finalize): free label->pattern when done
4189         (gtk_label_parse_uline): null terminate pattern string, delete
4190         some duplicated code
4191
4192         * gtk/testthreads.c: add #include <unistd.h> for sleep()
4193
4194 Tue Aug 25 16:52:47 1998  Owen Taylor  <otaylor@redhat.com>
4195
4196         * gtk/gtktext.c (recompute_geometry): Make sure the
4197         mark we pass to line start is the beginning of a 
4198         real line, not a wrapped one.
4199
4200 Mon Aug 24 18:37:15 1998  Owen Taylor  <otaylor@redhat.com>
4201
4202         * gtk/gtktext.c: Reference count the fonts used in
4203         the text widget.
4204
4205         * gdk/gdk.h gdk/gdkcolor.c: Rename the color allocation
4206         freeing functions to be more consistent, and more 
4207         convenient; leave the old names in for backwards compatibility.
4208
4209         * gdk/gdkcolor.c gdk/gdkprivate.h: Reference count the
4210         allocations in pseudo-color colormaps to greatly reduce
4211         calls to XAllocColor. Keep a per-colormap hashtable to
4212         speed up finding if there is an already-allocated matching
4213         color.
4214
4215         * gdk/gdkcolor.c: Don't just match read the system colormap
4216         when the colormap is created, but synchronize our copy
4217         with the system colormap periodically.
4218         
4219         * gdk/gdk.c gdk/gdktypes.h gtk/gtkentry.c gtk/gtktext.c: 
4220         Change XIM constants names to match GDK conventions
4221
4222         * gtk/testinput.c: Allow the drawing area to get the focus.
4223
4224         * gtk/testgtk.c: Change around the Text test to demonstrates
4225         multiple fonts, use more colors.
4226
4227         * gtk/gtkwidget.c: Improve gtk_widget_get_colormap()/visual()
4228         so they work after a widget is unrealized.
4229
4230         * gtk/gtktext.[ch]: Remove the requirement that the text
4231         widget be realized before adding text (!) Allocate colors
4232         ourself, instead of requiring the caller allocate them.
4233         Allow changing styles to work properly by keeping track
4234         of the values for a certain property are default or
4235         set explicitely.
4236
4237         * gtk/gtkmenu.h: Added some comments.
4238
4239         * gtk/gtkentry.c: Changes to match XIM constants.
4240
4241         * gtk/gdk.h gdk/gdkwindow.c: Add gdk_drawable_set_data(),
4242         for adding keyed data to drawables. (Uses g_dataset
4243         internally)
4244
4245         * gdk/gdkpixmap.c: Keep track of the colors we allocate,
4246         when creating an XPM - store them as user data for the GdkPixmap,
4247         so we don't leak colors when we create pixmaps from XPM's.
4248
4249         Allocate memory for color information in large blocks instead of 
4250         as many little pieces.
4251         
4252 Mon Aug 24 11:09:32 PDT 1998 Manish Singh <yosh@gimp.org>
4253
4254         * gdk/gdkrgb.c: removed some unused variables
4255
4256         * gtk/gtkclist.c
4257         * gtk/gtkmain.c: #if 0'd out some unused code
4258
4259         * gtk/gtkobject.c: check for NULL object hash table in gtk_object_debug
4260
4261 Mon Aug 24 02:36:53 1998  Tim Janik  <timj@gtk.org>
4262
4263         * gtk/gtkarg.h:
4264         * gtk/gtkarg.c:
4265         * gtk/gtkwidget.h: 
4266         * gtk/gtkwidget.c: 
4267         * gtk/gtkobject.h:
4268         * gtk/gtkobject.c:
4269         * gtk/gtkcontainer.h: 
4270         * gtk/gtkcontainer.c: 
4271         (gtk_object_new):
4272         (gtk_object_set):
4273         (gtk_widget_new):
4274         (gtk_widget_set): 
4275         (gtk_container_add_with_args):
4276         (gtk_container_child_set):
4277         begin the parameter elipsis (...) after the first argument name. this
4278         change is source compatible, since it was always required, even as NULL.
4279         (gtk_args_collect): 
4280         (gtk_object_args_collect): 
4281         (gtk_container_child_args_collect):
4282         changed prototypes to pass first_arg_name, also, pass va_list variable
4283         by value (portability concerns). callers changed.
4284
4285         * gtk/gtkargcollector.c: implemented gtk_arg_collect_value() as
4286         a huge macro GTK_ARG_COLLECT_VALUE() <shrug>. this is needed because we
4287         can't pass va_list variables by reference for portability reasons.
4288
4289 Fri Aug 21 22:40:00  Raph Levien  <raph@gtk.org>
4290
4291         * gdk/gdkrgb.c: added calls to gdk_rgb_init in the get_cmap and
4292         get_visual calls, so that it gets implicitly initialized.
4293
4294 Fri Aug 21 13:06:04 1998  Stuart Parmenter  <pavlov@gimp.org>
4295         * gtk/gtkfeatures.h.in:  added GTK_HAVE_FEATURES_1_1_2 for changes
4296         such as GtkCTree function name changes
4297         
4298 Fri Aug 21 02:31:26 1998  Tim Janik  <timj@gtk.org>
4299
4300         * gtk/gtkmain.h:
4301         * gtk/gtkmain.c (gtk_check_version): added a function to perform a
4302         binary version check, returning a static string for error descriptions,
4303         or NULL on success.
4304
4305 Thu Aug 20 20:08:15 1998  Owen Taylor  <otaylor@redhat.com>
4306
4307         * gtk/gtktext.c ([un]draw_cursor): Check to see if we've
4308         computed our geometry yet, and if not, ignore the request.
4309
4310         * gtk/gtktext.c (correct_cache_insert): Fiddled around
4311         some more. All the bug-test codes seem to work at once
4312         now. (fingers crossed...)
4313
4314 Thu Aug 20 13:04:08 PDT 1998 Manish Singh <yosh@gimp.org>
4315
4316         * gdk/gdkrgb.c: silly visual fixes
4317
4318         * gtk/testgtk.c: call gdk_rgb_init so color preview test actually
4319         works
4320
4321 1998-08-20  Federico Mena Quintero  <federico@nuclecu.unam.mx>
4322
4323         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Do not do
4324         anything if the event's window is not the bin window.
4325         (gtk_handle_box_motion): Likewise.
4326
4327 1998-08-19  Raph Levien  <raph@gimp.org>
4328
4329         * gtk/testgtk.c (create_color_preview): pushed the colormap and
4330         visual so it would work better with GdkRgb.
4331
4332 1998-08-19  Raph Levien  <raph@gimp.org>
4333
4334         * gdk/gdkrgb.c: fixed some bugs in the 565_d mode, and added a
4335         4bpp static_color mode (for vga displays). Also fixed a '64' value
4336         in the dither matrix, which was causing one pixel out of 16k to be
4337         dithered wrong.
4338
4339         * gtk/gtkpreview.{c,h}: Changed it to work with GdkRgb, gutting
4340         most of the contents. This is an API change - any apps that relied
4341         on the internal structure of GtkPreview will need some change -
4342         most notably in the use of reserved colors. The Gimp needed
4343         changes in this regard.
4344
4345 Wed Aug 19 00:11:14 1998  Tim Janik  <timj@gtk.org>
4346
4347         * gtk/gtkmain.c (gtk_init): allow argument parsing in gtk without
4348         G_ENABLE_DEBUG being defined (specifically --gtk-module= and
4349         --g-fatal-warnings), noticed by miguel.
4350
4351 Tue Aug 18 17:54:40 1998  Tim Janik  <timj@gtk.org>
4352
4353         * gtk/gtkrc.c (gtk_rc_parse_file): use g_get_current_dir() instead of
4354         getcwd().
4355
4356         * gdk/gdkprivate.h:
4357         * gdk/gdkglobals.c:
4358         * gdk/gdkwindow.c:
4359         * gdk/gdk.c:
4360         * gtk/gtkwindow.c: 
4361         * gtk/gtkitemfactory.c: 
4362         dropped gdk_progname, use g_get_prgname()/g_set_prgname() instead.
4363
4364         * gtk/gtkselection.c:
4365         * gtk/gtkpreview.c:
4366         * gtk/gtkobject.c: 
4367         * gtk/gtkmain.c: 
4368         * gtk/gtktypeutils.c: indentation fixes due to g_message() use.
4369
4370         * gdk/gdkrgb.c: exchanged occourances of g_print with g_message.
4371
4372 Tue Aug 18 17:22:22 1998  Lars Hamann  <lars@gtk.org>
4373
4374         * gtk/gtknotebook.c (gtk_notebook_switch_focus_tab): 
4375         * gtk/gtknotebook.c (gtk_notebook_update_labels): fix for sigsegv
4376         in case of show_tabs == NULL
4377
4378 Tue Aug 18 03:54:43 1998  Tim Janik  <timj@gtk.org>
4379
4380         * gtk/gtkmain.c (gtk_init): restricted the --g*fatal-* arguments
4381         to --g-fatal-warnings again. this option now causes log levels of
4382         WARNING and CRITICAL to abort().
4383
4384         * gdk/gdk.c: 
4385         * gdk/gdkdnd.c: 
4386         * gdk/gdkcc.c: 
4387         * gdk/gdkfont.c: 
4388         * gdk/gdkwindow.c:
4389         * gdk/gdkvisual.c:
4390         * gtk/gtkwidget.c:
4391         * gtk/gtktypeutils.c:
4392         * gtk/gtktree.c:
4393         * gtk/gtkfontsel.c:
4394         * gtk/gtkmain.c:
4395         * gtk/gtkobject.c:
4396         * gtk/gtkpreview.c:
4397         * gtk/gtkselection.c:
4398         * gtk/gtktext.c:
4399         * gtk/gtktree.c:
4400         * gtk/gtktreeitem.c:
4401         did a global search&replace to substitute g_print() calls with
4402         g_message(). libraries shouldn't use printf(), g_print() or
4403         g_printerr() at all.
4404         a bunch of the replacements should probably be wrapped into the
4405         G{D|T}K_NOTE() macros, so they are special cased for debugging
4406         purposes in a sane way, avoiding all the nasty #ifdef DEBUG_MY_TEDDY
4407         things.
4408
4409         * gdk/gdkdnd.c: added copyright notice.
4410
4411 Mon Aug 17 17:28:00  Raph Levien  <raph@gtk.org>
4412
4413         * gdk/gdkrgb.c: Further speedups of the 565_d case. It's
4414         impressively fast now - about 4.65 Mpix/s on an IBM TP 600
4415         running a PII 233. It's synced with the 0.0.5 release of
4416         GdkRgb.
4417
4418 Tue Aug 18 00:29:13 1998  Lars Hamann  <lars@gtk.org>
4419
4420         * gtk/gtkclist.h:
4421         (struct _GtkCListClass): new class methods:
4422         (sort_list) (insert_row) (remove_row) (set_cell_contents)
4423
4424         * gtk/gtkclist.c :
4425         (cell_empty) (cell_set_text) (cell_set_pixmap) (cell_set_pixtext):
4426         removed and replaced by (set_cell_contents)
4427         (set_cell_contents): function for class method set_cell_contents
4428         (real_insert_row): function for class method insert_row
4429         (real_remoce_row): function for class method remove_row
4430         (real_sort_list): function for class method sort_list
4431         (default_compare): fix to avoid problems with cell types != CELL_TEXT
4432
4433         * gtk/gtkctree.h :
4434         (gtk_ctree_export_to_gnode): new function to export a ctree as gnode 
4435         (gtk_ctree_node_is_visible): new function to return visibility state
4436         of a node
4437         (gtk_ctree_show_stub): new function to set visibility of root stub
4438
4439         renamed functions :
4440         (gtk_ctree_insert) -> (gtk_ctree_insert_node)
4441         (gtk_ctree_remove) -> (gtk_ctree_remove_node)
4442         (gtk_ctree_find_glist_ptr) -> (gtk_ctree_find_node_ptr)
4443         (gtk_ctree_set_text) -> (gtk_ctree_node_set_text)
4444         (gtk_ctree_set_pixmap) -> (gtk_ctree_node_set_pixmap)
4445         (gtk_ctree_set_pixtext) -> (gtk_ctree_node_set_pixtext)
4446         (gtk_ctree_set_shift) -> (gtk_ctree_node_set_shift)
4447         (gtk_ctree_get_cell_type) -> (gtk_ctree_node_get_cell_type)
4448         (gtk_ctree_get_text) -> (gtk_ctree_node_get_text)
4449         (gtk_ctree_get_pixmap) -> (gtk_ctree_node_get_pixmap)
4450         (gtk_ctree_get_pixtext) -> (gtk_ctree_node_get_pixtext)
4451         (gtk_ctree_set_foreground) -> (gtk_ctree_node_set_foreground)
4452         (gtk_ctree_set_background) -> (gtk_ctree_node_set_background)
4453         (gtk_ctree_set_row_data) -> (gtk_ctree_node_set_row_data)
4454         (gtk_ctree_set_row_data_full) -> (gtk_ctree_node_set_row_data_full)
4455         (gtk_ctree_get_row_data) -> (gtk_ctree_node_get_row_data)
4456         (gtk_ctree_moveto) -> (gtk_ctree_node_moveto)
4457         (gtk_ctree_sort) -> (gtk_ctree_sort_node)
4458         (gtk_ctree_is_visibe) -> (gtk_ctree_is_viewable)
4459
4460         * gtk/gtkctree.c :
4461         (cell_empty) (cell_set_text) (cell_set_pixmap) (cell_set_pixtext):
4462         removed and replaced by (set_cell_contents)
4463         (set_cell_contents): function for class method set_cell_contents
4464         (real_insert_row): function for class method insert_row
4465         (real_remoce_row): function for class method remove_row
4466         (real_sort_list): function for class method sort_list
4467         (default_compare): removed. CTree now also compares two GtkCTreeRows
4468         instead of two GtkCTreeNodes.
4469         (gtk_ctree_unlink): call gtk_ctree_collapse if parent is empty after
4470         unlinking the node
4471         (real_tree_expand) (real_tree_collapse): fix for refcounting of
4472         node pixmaps
4473         (set_node_info): call gtk_ctree_node_set_pixtext instead of
4474         manipulating the row itself
4475         
4476         * gtk/testgtk.c: use renamed functions of GtkCTree.
4477         new sample to show gtk_ctree_export_to_gnode and gtk_ctree_insert_gnode
4478         at work.
4479
4480 Mon Aug 17 15:31:38 1998  Tim Janik  <timj@gtk.org>
4481
4482         * gtk/gtkmain.c: removed gtk_input_add_interp.
4483
4484         * gtk/gtkeditable.c (gtk_editable_set_position): fixed bogus "return"
4485         keyword.
4486         (gtk_editable_get_event_time): fix default: case.
4487
4488         * gtk/gtkclist.c (gtk_clist_swap_rows): fixes for lvalue casts.
4489
4490         * gdk/gdkpixmap.c: made a bunch of unexported functions static.
4491
4492         * gdk/gdkcolor.c:
4493         * gdk/gdkvisual.c: include "gdkx.h", since it exports prototypes
4494         of our functions.
4495
4496         * various minor compilation cleanups, such as bogus commas in
4497         enums and similar things.
4498
4499 Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
4500
4501         * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
4502         (thanx raph).
4503
4504 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
4505
4506         * NEWS: updated for 1.1.2
4507         * gtk+.spec: version = 1.1.2
4508
4509 Mon Aug 17 05:10:29 1998  Tim Janik  <timj@gtk.org>
4510
4511         * gtk/gtkmain.c (gtk_init): don't call module initializers multiple
4512         times. changed --gtk-with-module to --gtk-module at owen's request.
4513
4514 Mon Aug 17 03:47:55 1998  Tim Janik  <timj@gtk.org>
4515
4516         * gtk/gtkmain.c (gtk_init): feature a new commandline option
4517         --gtk-with-module=<module> that allows additional loading and
4518         initialization of modules (e.g. GLE).
4519
4520 Mon Aug 17 01:40:00 1998  Tim Janik  <timj@gtk.org>
4521
4522         * configure.in: version bump to 1.1.2, binary age 0, interface age 0.
4523         pass "gmodule" to AM_PATH_GLIB, with that we require libgmodule.so now.
4524
4525         * gtk/gtkmain.c (gtk_init): since glib's g_return*_if_fail macros log
4526         with G_LOG_LEVEL_CRITICAL now, i added "--g-fatal-checks",
4527         "--gdk-fatal-checks" and "--gtk-fatal-checks". that makes up six
4528         different *-fatal-* arguments now. this needs to be revised and
4529         compressed to a reasonable amount of arguments.
4530
4531 Sun Aug 16 20:51:59 1998  Tim Janik  <timj@gtk.org>
4532
4533         * gtk/gtkmain.c (gtk_init): fatal warning option is split up now,
4534         "--g-fatal-warnings" causes fatal warnings in GLib,
4535         "--gdk-fatal-warnings" causes fatal warnings in Gdk,
4536         "--gtk-fatal-warnings" causes fatal warnings in Gtk.
4537
4538         * gtk/Makefile.am: define G_LOG_DOMAIN for gtk.
4539         * gdk/Makefile.am: define G_LOG_DOMAIN for gdk.
4540
4541         * gtk/testgtk.c: 
4542         * gdk/gxid.c:
4543         we need ugly #undef G_LOG_DOMAIN at the start of these files currently,
4544         since automake doesn't support per target _CFLAGS yet.
4545
4546         * configure.in: require GLib 1.1.3.
4547
4548 Sat Aug 15 03:19:30 1998  John Ellis  <johne@bellatlantic.net>
4549
4550         * gtk/gtkctree.[ch] (gtk_ctree_set_drag_compare_func): New function
4551         to set a callback to test if a node in drag can be dropped onto
4552         it's currrent location.
4553         * gtk/gtkctree.c (set_mouse_cursor),(check_cursor): New functions
4554         to change the pointer when a drag destination is not allowed.
4555
4556 Thu Aug 13 21:06:00 1998  Raph Levien  <raph@gtk.org>
4557
4558         * gdk/gdkrgb.c: committing a patch by Ray Lehtiniemi that
4559         speeds up the 565_d case by about 25% total. Thanks Ray!
4560
4561 Thu Aug 13 16:47:44 1998  Owen Taylor  <otaylor@redhat.com>
4562
4563         * Changed GtkSignalFunc back to () from (void). (again!)
4564
4565         * Added file README.cvs-commits
4566         
4567 Thu Aug 13 09:11:11 BST 1998  Tony Gale  <gale@gtk.org>
4568
4569         * docs/gtk_tut.sgml:
4570           - Tidy up of the menufactory example from
4571             Andy Kahn <kahn@zk3.dec.com>
4572           - New section on Range Widgets from
4573             David Huggins-Daines <bn711@freenet.carleton.ca>
4574           - Started a new section on 'Advanced Event and Signal
4575             Handling' - used an email from Owen.
4576           - New appendix on Gdk Event Types
4577           - Added the tictactoe full example code to the
4578             'Code Examples' appendix
4579
4580 Tue Jul 21 12:42:01 1998  Owen Taylor  <otaylor@redhat.com>
4581
4582         * gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() - 
4583           to calculate all the metrics at once of a string, including
4584           things which weren't calculated before.
4585
4586         * gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
4587           MenuItem type, that when put as the first thing in a
4588           menu, makes the menu tearoff. Currently drawn as a
4589           dashed line.
4590
4591         * gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
4592           "hide_on_activate" to the MenuItem class structure to allow
4593           check and radio buttons to be changed with <Space> without
4594           hiding the menu.
4595
4596         * gtk/gtkitemfactory.c: 
4597           - Create a AccelGroup for each MenuShell we create.
4598           - If an '_' appears before a  character 'c' in the path,
4599             then make 'c' an accelerator in the menu's accel group,
4600             and if the menuitem is menubar <alt>C an accelerator 
4601             in the itemfactory's accel group. Double '__' inserts
4602             a literal '_'
4603
4604         * gtk/gtklabel.[ch]: Add support for a pattern arg - 
4605           which is a string. If an '_' appears in this string,
4606           the corresponding position in the label is underlined.
4607
4608           Add gtk_label_parse_uline() convenience function which
4609           takes a string with embedded underlines, sets the
4610           pattern and label, and returns the accelerator keyval.
4611
4612         * gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
4613           Instead, they create a GtkWindow and add themselves
4614           to that. (When torn off, another new feature, they
4615           create another GtkWindow to hold the torn off menu)
4616
4617           New function gtk_menu_set_tearoff_state()
4618         
4619         * gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h: 
4620           Added action signals  for keyboard navigation of menus.
4621
4622         * gtk/gtkmenushell.c: Key press handler which activates
4623           bindings for navigation, and accelerators, for handling
4624           underline accelerators. Exported functions to select 
4625           and activate menu items in a menushell.
4626
4627         * gtk/testgtk.c: Added a new "Item Factory" test which
4628           tests GtkItemFactory and the new keyboard navigation
4629           of menus.
4630
4631 Tue Aug 11 20:52:58 1998  Tim Janik  <timj@gtk.org>
4632
4633         * gtk/gtktypeutils.c (gtk_type_class_init): relookup nodes after
4634         external functions have been called. also relookup nodes after
4635         this function has been invoked.
4636
4637 Tue Aug 11 15:04:52 1998  Owen Taylor  <otaylor@redhat.com>
4638
4639         * gtk/gtktext.[ch]: Removed has_cursor, set the cursor
4640           beginning of Text when creating the Text widget.
4641
4642         * gtk/testgtk.c: Grab the focus on the text widget so
4643           as to test out the above.
4644
4645 Tue Aug 11 14:55:00 1998  Owen Taylor  <otaylor@redhat.com>
4646
4647         * gtk/gtkeditable.c: Reverted part of timj's change of Jul 16. 
4648           ::changed is a notification signal and should have no default
4649           handler. A complete redraw of the Text widget does _not_ need to
4650           be done on every text insertion.
4651
4652 Tue Aug 11 13:07:29 1998  Owen Taylor  <otaylor@redhat.com>
4653         (gtk-abilleira-072198-patch)
4654
4655         * gtk/gtkwindow.[ch]: 
4656           Add gtk_window_set_modal() which sets a flag; when
4657           set the window does a gtk_grab_add() when the window
4658           is shown, and a gtk_grab_remove() when the window
4659           is hidden. 
4660
4661         * gtk/gtkfilesel.[ch]: Test if it is running in modal form and in
4662           that case will run "Create Dir","Delete File" and "Rename File" 
4663           dialogs as modal too.
4664
4665         * gtk/testgtk.c: Added a button with an example of creating modal 
4666           dialog boxes. Including file selection and color selection standard
4667           dialogs.
4668         
4669 Tue Aug 11 00:44:47 1998  Owen Taylor  <otaylor@redhat.com>
4670
4671         * gtk/gtkhscrollbar.c gtk/gtkvscrollbar.c gtk/gtktoolbar.c:
4672           Removed CAN_FOCUS by default from scrollbars, button
4673           children of toolbar. (But not GTK_TOOLBAR_CHILD_WIDGET children)
4674           (Scrollbar definitely good change, toolbar bit more questionable)
4675
4676 Tue Aug 11 17:49:33 1998  Tim Janik  <timj@gtk.org>
4677
4678         * examples/packbox/packbox.c: #include fixes (reported by Asbjoern
4679         Pettersen).
4680
4681 Tue Aug 11 00:35:56 1998  Owen Taylor  <otaylor@redhat.com>
4682
4683         * gdk/gdkgc.c gdk/gdktypes.h: Applied gtk-pedersen-980727-0; 
4684           added all logical operations to gc->function.
4685
4686 Sun Aug  9 23:31:59 1998  Lars Hamann  <lars@gtk.org>
4687
4688         * gtk/gtkclist.c (adjust_scrollbars): Fix for resize bug. Call
4689         gtk_widget_size_allocate instead of gtk_widget_queue_resize
4690         if the visibility state of a scrollbar changes.
4691
4692 Mon Aug 10 12:49:54 1998  Tim Janik  <timj@gtk.org>
4693
4694         * gtk/gtkhbbox.h: fixed an #include statement (reported by Eric Kidd).
4695
4696 Thu Aug  6 22:37:21 1998  Stefan Jeske  <stefan@gtk.org>
4697
4698         * gtk/gtkclist.c: Renamed my_merge and my_mergesort to
4699         gtk_clist_merge and gtk_clist_mergesort. :)
4700
4701 1998-08-06  Martin Baulig  <martin@home-of-linux.org>
4702
4703         * gtk/gtkclist.c: Renamed `merge' -> `my_merge' and
4704         `mergesort' -> `my_mergesort'.
4705
4706 Wed Aug  5 21:12:37 1998  Stefan Jeske  <stefan@gtk.org>
4707
4708         * gtk/gtkenums.h: new enum GtkSortType.
4709         
4710         * gtk/gtkclist.h:
4711         * gtk/gtkclist.c:
4712         Added sorting capabilities to GtkCList. New APIs :
4713         gtk_clist_set_compare_func, gtk_clist_set_sort_column,
4714         gtk_clist_set_sort_type, gtk_clist_sort, gtk_clist_set_auto_sort. 
4715         New internal functions : default_compare, merge, mergesort.
4716
4717         (gtk_clist_append): This is just a wrapper for gtk_clist_insert now.
4718         
4719         (gtk_clist_insert): Modified to handle gtk_clist_append and the
4720         auto sort flag. Changed the return value from void to gint to
4721         return the row number where the element was actually inserted.
4722
4723         (gtk_clist_swap_rows): Return immediately if auto sort flag is set.
4724         
4725         * gtk/gtkctree.h:
4726         * gtk/gtkctree.c:
4727         Removed the auto_sort flag, replaced ctree->node_compare with
4728         clist->compare all over the place, modified default_compare to
4729         match clist's needs. Removed API´s : gtk_ctree_set_auto_sort,
4730         gtk_ctree_set_compare_func. Removed GtkCTreeCompareFunc typedef.
4731
4732         * gtk/testgtk.c: Modified clist/ctree samples to demonstrate
4733         sorting. The lists can be sorted by a column by clicking the 
4734         corresponding title button.
4735         
4736 Tue Aug  4 22:02:49 PDT 1998 Shawn T. Amundson <amundson@gtk.org>
4737
4738         * Released GTK+ 1.1.1
4739
4740 Wed Aug  5 02:57:20 1998  Lars Hamann  <lars@gtk.org>
4741
4742         * gtk/gtkctree.h:
4743         * gtk/gtkctree.c:
4744         (gtk_ctree_find): changed to return a gboolean
4745         (gtk_ctree_insert_gnode): new function for recursive insertion of a
4746         GNode tree.
4747         (gtk_ctree_real_select_recursive): fix for extended selection
4748         (gtk_ctree_sort_recursive): in case node == NULL, sort root nodes too.
4749         (gtk_ctree_set_node_info) (set_node_info): few fixes for expanded flag
4750
4751 Tue Aug  4 16:18:26 1998  Tim Janik  <timj@gtk.org>
4752
4753         * configure.in: version bump to 1.1.1, binary age 0, interface age 0.
4754         GLib version 1.1.1 is now required at minimum.
4755
4756         * docs/Makefile.am: added gtk_tut_fr.sgml to EXTRA_DIST (french version
4757         of the Gtk+ tutorial, contributed by Eric Jacoboni <jaco@dotcom.fr>.
4758
4759 Mon Aug  3 19:24:48 1998  Owen Taylor  <otaylor@redhat.com>
4760  
4761         * gtk/gtktext.c (gtk_text_forward_delete): Undraw the
4762           cursor before (possibly) deleting the cursor's text
4763           property.
4764  
4765         * gtk/gtktext.c (correct_cache_delete): More attempts
4766           to clean the line-start cache up after inserting
4767           a property. Among other things, make sure to
4768           fix up text->current_line, since it is used to 
4769           refetch the changed lines.
4770  
4771 Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
4772
4773         * gtk/gtktable.[ch]: Empty rows/columns of the table
4774         should not have been marked as being able to shrink.
4775         (Fixes problem with shrinking scrollbarless GIMP canvases)
4776
4777 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
4778
4779         * gtk/gtkctree.c (gtk_ctree_find_by_row_data_custom): New public
4780         function to find a row by its data pointer using a custom
4781         comparison function.
4782
4783 Sun Aug 02 22:58:00 1998  George Lebl  <jirka@5z.com>
4784
4785         * gtk/gtkclist.c: draw the buttons during a "draw" as well,
4786           this fixes a bug when the whole widget is made non-sesitive
4787           the buttons weren't redrawn
4788
4789 Mon Aug  3 00:04:09 1998  Lars Hamann  <lars@gtk.org>
4790
4791         * gtk/gtkclist.c (abort_column_resize): reset drag_pos after abort
4792         * gtk/gtkclist.c (gtk_clist_key_press): removed a few unneeded lines
4793         * gtk/gtkcombo.c (gtk_combo_list_key_press): fixed compiler warning
4794
4795 Sun Aug  2 03:08:07 1998  Owen Taylor  <otaylor@gtk.org>
4796
4797         * gdk/gdkwindow.c (gdk_window_reparent): Change 
4798           window_private->parent pointer when reparenting.
4799
4800 Sat Aug  1 22:17:00 1998  Raph Levien  <raph@acm.org>
4801
4802         * gdk/gdkrgb.c: made some minor config changes to unify GdkRgb
4803         with the standalone release.
4804
4805 Fri Jul 31 20:45:07 1998  Lars Hamann  <lars@gtk.org>
4806
4807         * gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
4808         (gtk_clist_button_release) (new_column_width): Few fixes for
4809         column resize. Store resize column in clist->drag_pos.
4810
4811 Thu Jul 31 15:18:36 1998  Lars Hamann  <lars@gtk.org>
4812
4813         * gtk/gtkctree.h 
4814         * gtk/gtkctree.c 
4815         * gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
4816         to GtkCTreeNode *node.
4817
4818         * gtk/gtklist.h : added extended selection mode and auto scrolling.
4819         (struct _GtkList): removed unneeded variables timer, button,
4820         selection_start_pos, selection_end_pos, scroll_direction, have_grab.
4821         Added new variables undo_selection, undo_unselection, last_focus_child,
4822         undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
4823         drag_selection, add_mode.
4824  
4825         New functions :
4826         (gtk_list_extend_selection), (gtk_list_start_selection),
4827         (gtk_list_end_selection), (gtk_list_select_all),
4828         (gtk_list_unselect_all), (gtk_list_scroll_horizontal),
4829         (gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
4830         (gtk_list_toggle_focus_row), (gtk_list_toggle_row),
4831         (gtk_list_undo_selection), (gtk_list_end_drag_selection)
4832         
4833         * gtk/gtklist.c : 
4834         (gtk_list_enter_notify): removed, because auto scrolling now works
4835         with gtk_list_motion_notify
4836  
4837         New functions, needed for auto scrolling :
4838         (gtk_list_motion_notify) (gtk_list_move_focus_child)
4839  
4840         New functions for extended selection support :
4841         (gtk_list_set_anchor), (gtk_list_fake_unselect_all),
4842         (gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
4843         (gtk_list_focus_lost)
4844         
4845         (gtk_list_set_focus_child): modified gtk_container_set_focus_child
4846         function to support auto scrolling, and avoid out-of-sync errors in
4847         case auf GTK_SELECTION_BROWSE
4848         (gtk_list_focus): modified gtk_container_focus function to avoid out
4849         off sync errors in case auf GTK_SELECTION_EXTENDED
4850
4851         * gtk/gtklistitem.h 
4852         * gtk/gtklistitem.c :
4853         New signal functions for key binding support :
4854         (toggle_focus_row), (select_all), (list_item), (unselect_all)
4855         (list_item), (undo_selection), (start_selection), (end_selection)
4856         (extend_selection), (scroll_horizontal), (scroll_vertical),
4857         (toggle_add_mode)
4858         (gtk_list_item_realize): added  GDK_KEY_PRESS_MASK |
4859         GDK_KEY_RELEASE_MASK
4860         (gtk_list_item_draw_focus): modify gc if parent has add_mode set.
4861  
4862         * gtk/gtkcombo.c :
4863         (gtk_combo_popup_button_press):  grab pointer for combo->list
4864         (gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
4865         (gtk_combo_list_key_press): take care of which child HAS_GRAB
4866         (gtk_comb_init): don't connect combo->button with button_release_event
4867
4868 Thu Jul 30 12:39:36 1998  Lars Hamann  <lars@gtk.org>
4869
4870         * gtk/gtkclist.c (gtk_clist_motion): removed a few unneeded lines
4871
4872 Wed Jul 29 23:31:50 1998  Lars Hamann  <lars@gtk.org>
4873
4874         * gtk/gtkclist.c (gtk_clist_motion): column resize now works with
4875         horizontal autoscrolling, GtkCTree's 'reorder ability' now works
4876         with horizontal and vertical autoscrolling.
4877
4878 Tue Jul 28 20:32:03 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
4879
4880         * gtk/docs/man: new directory
4881         * gtk/docs/man/gtk_button.pod: new file, initial gtk_button man page
4882
4883 Tue Jul 28 00:03:20 1998  Lars Hamann  <lars@gtk.org>
4884
4885         * gtk/gtknotebook.c (gtk_notebook_paint): small fix for border drawing
4886         bug
4887
4888 Mon Jul 27 09:18:13 BST 1998  Tony Gale  <gale@gtk.org>
4889
4890         * docs/gtk_tut.sgml: GtkTree section from
4891           David Huggins-Daines <bn711@freenet.carleton.ca>,
4892           add a GtkText widget example
4893         * examples/text/* example/tree/* : new examples for the
4894           GtkTree and GtkText widgets
4895         * docs/gtk_tut.sgml: added an appendix to hold complete code
4896           examples that aren't in a full form elsewhere in the
4897           tutorial (e.g. scribble)
4898
4899 Mon Jul 27 00:46:21 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
4900
4901         * Released GTK+ 1.1.0
4902
4903 Mon Jul 27 04:18:26 1998  Tim Janik  <timj@gtk.org>
4904
4905         * gtkfeatures.h.in: revamped the definitions for 1-1-0, so that all
4906         the new API stuff is reflected in one #define GTK_HAVE_FEATURES_1_1_0.
4907
4908 Mon Jul 27 03:11:20 1998  Tim Janik  <timj@gtk.org>
4909
4910         * gtk/gtkbindings.c (binding_compose_params): fixup, so that enum
4911         values are looked up.
4912
4913         * gtk/gtktypeutils.h:
4914         * gtk/gtktypeutils.c: new functions gtk_type_flags_find_value and
4915         gtk_type_enums_find_value to lookup enum values.
4916
4917         * gtk/gtkctree.h: 
4918         * gtk/gtkctree.c: change enum name from GtkCTreeExpansion to
4919         GtkCTreeExpansionType. fixed signal creations to pass the enum
4920         types not just the base type GTK_TYPE_ENUM.
4921
4922         * gtk/gtkclist.h: 
4923         * gtk/gtkclist.c: fixed signal creations to pass the real enum
4924         types not just the base type GTK_TYPE_ENUM.
4925
4926 Sun Jul 26 14:50:07 1998  Stefan Jeske  <stefan@gtk.org>
4927
4928         * gtk/testgtk.c : 
4929         Began cleanup, e.g. use gtk_widget_show_all instead of many 
4930         gtk_widget_show's. Completely rewrote the button box sample
4931         (only one window now). Removed "miscellaneous" button.
4932
4933 Sun Jul 26 14:48:14 1998  Stefan Jeske  <stefan@gtk.org>
4934
4935         * gtk/gtkvbbox.c (gtk_vbutton_box_size_allocate): 
4936         Fixed wrong allocation for GTK_BUTTONBOX_END.
4937         (allocation->x  =>  allocation->y)
4938
4939 Sun Jul 26 14:06:37 1998  Lars Hamann  <lars@gtk.org>
4940
4941         * gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_button_release)
4942         (abort_column_resize) (gtk_clist_key_press): fix for pointer grab
4943         
4944         * gtk/gtkctree.c (real_tree_select): added check to avoid double
4945         selected rows
4946         (gtk_ctree_button_press)
4947         (gtk_ctree_button_release): fix for pointer grab
4948
4949 Sat Jul 25 13:16:00 1998 Damon Chaplin  <DAChaplin@msn.com>
4950
4951         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): 
4952         Fixed initialization problem - dirty memory could cause problems.
4953         Also checked that bitmapped fonts can be scaled when showing the
4954         available sizes.
4955
4956 Sat Jul 25 02:25:03 1998  Lars Hamann  <lars@gtk.org>
4957
4958         * gtk/gtkctree.c (gtk_ctree_sort_recursive)
4959         (gtk_ctree_sort_recursive): test for node != NULL
4960         (gtk_ctree_is_visible) (gtk_ctree_realize) (gtk_ctree_unrealize)
4961         (gtk_ctree_last) : added sanity checks
4962         * gtk/gtkclist.c (gtk_clist_button_press): removed "no_focus_row"
4963
4964 Fri Jul 24 18:15:49 1998  Lars Hamann  <lars@gtk.org>
4965
4966         * gtk/gtkclist.c (toggle_focus_row): mini code cleanup
4967
4968 Fri, 24 Jul 1998 10:56:22 +0200 Paolo Molaro <lupus@debian.org>
4969
4970         * gtk/gtkfeatures.h.in: added GTK_HAVE_ENUM_VALUE_STRUCT.
4971
4972 Thu Jul 23 00:11:39 1998  Tim Janik  <timj@gtk.org>
4973
4974         * gtk/testgtkrc: introduce testbindings on C-1 for buttons,
4975         to check out binding priorities. someone should really write
4976         gtkrc-mode for emacs.
4977
4978         * gtk/gtkwidget.c (gtk_widget_class_init): remove ugly bindings test.
4979         * gtk/testgtk.c (main): and move it here ;). this test says something
4980         on release of C-9. (this works only if the mouse pointer is on a
4981         spinbutton and there is no focus widget).
4982
4983         * gtk/gtkrc.h:
4984         * gtk/gtkrc.c:
4985         export gtk_rc_parse_color, gtk_rc_parse_state and a new function
4986         gtk_rc_parse_priority to parse path priority types.
4987         export rc tokens.
4988         feature binding parsing.
4989
4990 Wed Jul 22 23:41:17 1998  Tim Janik  <timj@gtk.org>
4991
4992         * gtk/gtkbindings.h: 
4993         * gtk/gtkbindings.c: new function gtk_binding_parse_binding() to
4994         feature binding parsing in rc files.
4995         * gtk/gtkbindings.c (gtk_binding_set_new): bug fix.
4996         * gtk/gtkbindings.c (gtk_binding_pattern_compare): bug fix, we used to
4997         order the bindings with lowest priority first.
4998
4999 Wed Jul 22 15:21:08 PDT 1998 Manish Singh <yosh@gimp.org>
5000
5001         * gdk/gdkrgb.c: actually builds and runs properly on big
5002         endian machines now, because we #include config.h. Also
5003         fixed up a compile error in the WORDS_BIGENDIAN case in
5004         gdk_rgb_convert_565_gray. I made the fix by looking at
5005         patterns in the other code; Raph can you verify this?
5006
5007         * gdk/gdkthreads.c: #include <unistd.h> to quell compiler
5008         warnings
5009
5010 Wed Jul 22 23:00:44 1998  Lars Hamann  <lars@gtk.org>
5011
5012         * gtk/gtkctree.c (tree_select/unselect) (tree_expand/collapse) 
5013         (tree_toggle_expansion) (real_select/unselect_row)
5014         (gtk_ctree_select/unselect) : few fixes for gtk_signal_emits
5015
5016 Wed Jul 15 17:44:47 1998  Owen Taylor  <otaylor@redhat.com>
5017
5018         * gtk/gtktext.c (new_text_property): We free things from
5019         the text property MemChunk, so it needs to be G_ALLOC_AND_FREE.
5020
5021         * Fix up line start cache when splitting a property
5022         during an insert.
5023
5024 Wed Jul 15 21:15:52 1998  Owen Taylor  <otaylor@redhat.com>
5025
5026         * gtk/gtkwidget.c: restauration => restoration
5027
5028 Thu Jul 16 20:11:36 1998  Owen Taylor  <otaylor@redhat.com>
5029
5030         * gdk/gdkxid.c (gdk_xid_table_lookup): If xid_ht
5031         hasn't been created yet, don't do the lookup.
5032
5033 1998-07-20  Raph Levien  <raph@acm.org>
5034
5035         * gdk/gdkrgb.c: More cleanups in the config process.
5036
5037 1998-07-20  Raph Levien  <raph@acm.org>
5038
5039         * gdkrgb.c: Fixed minor config bug preventing big-endian
5040         architectures from working.
5041
5042 Tue Jul 21 06:32:43 1998  Stefan Jeske  <stefan@gtk.org>
5043
5044         * gtk/gtkprogressbar.{c,h} gtk/testgtk.c: Fixed wrong size of
5045         activity indicator. It is settable now as a fraction of the
5046         total width/height using gtk_progress_bar_set_activity_blocks.
5047         Renamed gtk_progress_bar_set_number_of_blocks to
5048         gtk_progress_bar_set_discrete_blocks.
5049
5050 Mon Jul 20 21:28:18 1998  Lars Hamann  <lars@gtk.org>
5051
5052         * gtk/gtkctree.c (gtk_ctree_post_recursive_to_depth)
5053         (gtk_ctree_pre_recursive_to_depth): new functions, recursive process
5054         tree to specified depth
5055         (gtk_ctree_expand_to_depth): expand tree to specified depth
5056         (gtk_ctree_collapse_to_depth): collapse all nodes with level >= depth
5057
5058 Sun Jul 19 23:51:05 1998  Lars Hamann  <lars@gtk.org>
5059
5060         * gtk/gtkclist.c (scroll_vertical): fix for vertical scrolling in case
5061         of GTK_CLIST_ADD_MOD
5062         * gtk/testgtk.c (add1000_clist): changed pixmap
5063
5064 Sat Jul 18 22:59:04 1998  Tim Janik  <timj@gtk.org>
5065
5066         * gtk/gtkmain.h: 
5067         * gtk/gtkmain.c: export gtk_binary_age and gtk_interface_age.
5068
5069         * gtk/gtktypeutils.h:
5070         * gtk/gtkitemfactory.h: remove "void" from prototypes again.
5071
5072 Sat Jul 18 00:54:01 1998  Lars Hamann  <lars@gtk.org>
5073
5074         * gtk/gtknotebook.c (gtk_notebook_set_child_arg): added support for
5075         CHILD_ARG_MENU_LABEL, CHILD_ARG_TAB_LABEL
5076         (gtk_notebook_get_child_arg): added support for CHILD_ARG_MENU_LABEL,
5077         CHILD_ARG_POSITION
5078         (gtk_notebook_reorder_child): new funktion to change position of a
5079         notebook page
5080         (gtk_notebook_draw_arrow): draw left/right arrow with
5081         GTK_SHADOW_ETCHED_IN if focus_tab is first/last tab.
5082
5083         * gtk/gtkstyle.c (gtk_default_draw_arrow):
5084         added GTK_SHADOW_ETCHED_IN/OUT
5085
5086 Sun Jul 19 12:19:16 1998  Stefan Jeske  <stefan@gtk.org>
5087
5088         * gtk/gtkprogress.c gtk/gtkprogress.h gtk/gtkprogressbar.c
5089           gtk/gtkprogressbar.h gtk/Makefile.am gtk/gtk.h gtk/testgtk.c:
5090         Introduced generic GtkProgress widget. Derived GtkProgressBar from
5091         GtkProgress. Made GtkProgressBar much more flexible (see testgtk).
5092
5093 Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
5094
5095         * gtk/gtktypeutils.h
5096         * gtk/gtkitemfactory.h: explicitly specify void in prototype
5097
5098 Fri Jul 17 17:54:02 1998  Lars Hamann  <lars@gtk.org>
5099
5100         * gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
5101         of list
5102
5103 Fri Jul 17 05:30:47 1998  Tim Janik  <timj@gtk.org>
5104
5105         * gtk/gtksignal.c (gtk_handlers_run) (gtk_signal_real_emit):
5106         sropped the approach of copying all signal specific data into a
5107         GtkHandlerInfo structure. we rather keep the signal data on the stack
5108         in gtk_signal_real_emit and pass that over to gtk_handlers_run. this
5109         avoids multiple lookups of the signal pointer and works savely together
5110         with destroy notifiers of handlers.
5111
5112         * gtk/gtkentry.c (gtk_entry_key_press): care for the posssibility that
5113         someone destroys the entry on the ::activate signal.
5114
5115 Fri Jul 17 01:21:32 1998  Tim Janik  <timj@gtk.org>
5116
5117         * gtk/gtkarrow.c (gtk_arrow_expose): use misc->xpad for x calculation
5118         instead of ypad (typo).
5119         (gtk_arrow_set): clear all of the arrow's allocation (left a 1 pixel
5120         border around the allocation).
5121         (gtk_arrow_init): the static requisition needs to be setup in this
5122         function rather than gtk_widget_new(), so arrow creation works without
5123         the gtk_arrow_new() constructing.
5124         (gtk_arrow_expose): return TRUE, since we actually handled the expose.
5125
5126         * gtk/gtkwidget.c (gtk_widget_real_size_request): provide a default
5127         implementation for GtkWidget::size_request, so size requisition for
5128         simple statically sized widgets like GtkArrow works.
5129
5130 Thu Jul 16 14:16:16 PDT 1998 Manish Singh <yosh@gimp.org>
5131
5132         * gtk-config.in: minor changes to gtk-config: --cflags doesn't
5133         prepend -I@libdir@/glib/include anymore, since glib-config handles
5134         it; --libs strips out redundant -L<path>'s properly (there was
5135         code in there to do it before, but it didn't work)
5136
5137 Thu Jul 16 18:24:41 1998  Tim Janik  <timj@gtk.org>
5138
5139         * gtk/gtknotebook.h: 
5140         * gtk/gtknotebook.c: signdness corrections all ove the place.
5141         implementation of object arguments: GtkNotebook::enable_popup,
5142         GtkNotebook::tab_pos, GtkNotebook::tab_border, GtkNotebook::show_tabs,
5143         GtkNotebook::show_border, GtkNotebook::scrollable and GtkNotebook::page.
5144         begun implementation of child args, we have GtkNotebook::tab_label, but
5145         GtkNotebook::menu_label and GtkNotebook::position still lack the
5146         implementation.
5147         (gtk_notebook_remove_page):
5148         (gtk_notebook_current_page): allow negative indices (-1) as alias for
5149         the last page.
5150
5151         * gtk/gtkentry.h:
5152         * gtk/gtkentry.c: GtkType and macro fixups. implementation of object
5153         arguments GtkEntry::max_length and GtkEntry::visibility.
5154         (gtk_entry_adjust_scroll): queue a redraw.
5155
5156         * gtk/gtkeditable.h:
5157         * gtk/gtkeditable.c: GtkType und macro fixups. implementation of
5158         object arguments GtkEditable::text_position and GtkEditable::editable.
5159         new (action) signal GtkEditable::set_editable.
5160         provide a default handler for GtkEditable::changed that queues a redraw.
5161
5162         * gtk/gtktext.h: 
5163         * gtk/gtktext.c: GtkType und macro fixups. override GtkEditable::
5164         set_editable.
5165
5166 Thu Jul 16 14:42:11 1998  Lars Hamann  <lars@gtk.org>
5167
5168         * gtk/gtkctree.c (gtk_ctree_button_release): fix for sigsegv in
5169         case of drag_target == NULL
5170         * gtk/gtkclist.c (gtk_clist_button_press): fix for GTK_2/3BUTTON_PRESS.
5171         Clist did not emit an select_row signal in case of GTK_2/3BUTTON_PRESS.
5172         * gtk/gtkfilesel.c (gtk_file_selection_file_button,
5173         gtk_dir_selection_file_button): fix due to changes in clist's
5174         select_row signal.
5175
5176 Thu Jul 16 01:27:15 1998  Tim Janik  <timj@gtk.org>
5177
5178         * gtk/gtkwidget.h:
5179         * gtk/gtkwidget.c (gtk_widget_set_usize): handle negative values
5180         similar to gtk_widget_set_uposition(). that is: -1=unspecified,
5181         -2=leave untouched. changed the width/height field of GtkWidgetAuxInfo
5182         to be gint16s rather than guint16s, since that's what the code expected
5183         (for a long time actually).
5184
5185         * gtk/gtkviewport.c:
5186         added support for object arguments: GtkViewport::shadow_type,
5187         GtkViewport::vadjustment and GtkViewport::hadjustment.
5188         (gtk_viewport_add): chain gtk_bin_add.
5189
5190         * gtk/gtkscrolledwindow.c: 
5191         added support for object argument: GtkScrolledWindow::hscrollbar_policy,
5192         GtkScrolledWindow::vscrollbar_policy and GtkScrolledWindow::viewport.
5193
5194         * gtk/gtkadjustment.h: 
5195         * gtk/gtkadjustment.c: 
5196         * gtk/gtkctree.h: 
5197         * gtk/gtkclist.h: 
5198         * gtk/gtkctree.c: 
5199         * gtk/gtkclist.c:
5200         * gtk/gtkscrolledwindow.h:
5201         * gtk/gtkscrolledwindow.c:
5202         * gtk/gtkviewport.h:
5203         * gtk/gtkviewport.c:
5204         GtkType and macro fixups.
5205
5206 Thu Jul 16 01:10:02 1998  Lars Hamann  <lars@gtk.org>
5207
5208         * gtk/gtkctree.h :
5209         * gtk/gtkctree.c :
5210         Added focus handling, horizontal and vertical autoscrolling,
5211         extended Selection Mode, key bindings
5212         Added gtk_ctree_toggle_expansion & gtk_ctree_toggle_expansion_recursive
5213         Changed gtk_ctree_scroll_to to gtk_ctree_moveto.
5214         Removed gtk_ctree_clear.
5215         
5216         * gtk/gtkclist.h :
5217         * gtk/gtkclist.c : 
5218         Added focus handling, horizontal and vertical autoscrolling,
5219         extended Selection Mode, key bindings
5220
5221 Wed Jul 15 12:39:27 1998  Raph Levien  <raph@acm.org>
5222
5223         * This checkin integrates GdkRgb version 0.0.3 into the Gtk 1.1
5224         source tree. For more information on GdkRgb, please see:
5225         http://www.levien.com/gdkrgb/
5226
5227         * gtk/gtkfeatures.h.in (GTK_HAVE_GDK_RGB): added this feature. It
5228         bothers me slightly that the feature is in gdk, and this file is
5229         in gtk, but it's probably ok.
5230
5231         * gdk/gdk.h: Added an #include of <gdk/gdkrgb.h>
5232
5233         * gdk/gdkrgb.c:
5234         * gdk/gdkrgb.h: Added this module.
5235
5236         * Makefile.am (EXTRA_DIST): Added gdkrgb.c and gdkrgb.h files.
5237
5238         * configure.in: added AC_C_BIGENDIAN test (needed by GdkRgb).
5239
5240 Wed Jul 15 14:20:10 1998  Tim Janik  <timj@gtk.org>
5241
5242         * gtk/gtksignal.c (gtk_signal_real_emit): pass only the signal_id
5243         to this function. it needs to relookup the signal multiple times.
5244         this fixes spurious segfaults that could show up with signal intensive
5245         code, when classes are created during a pending emission (which is
5246         normal case).
5247
5248 Tue Jul 14 19:12:12 1998  Tim Janik  <timj@gtk.org>
5249
5250         * gtk/gtkbutton.c (gtk_button_set_arg): don't destroy a buttons
5251         child if it isn't a label.
5252
5253 Tue Jul 14 11:41:38 1998  Tim Janik  <timj@gtk.org>
5254
5255         * gtk/gtkdialog.h: 
5256         * gtk/gtkseparator.h: 
5257         * gtk/gtkhseparator.h: 
5258         * gtk/gtkvseparator.h: macro and GtkType fixups.
5259
5260 Tue Jul 14 06:25:46 1998  Tim Janik  <timj@gtk.org>
5261
5262         * gtk/testgtk.c (create_cursors): display the current cursor name.
5263
5264         * gtk/gtktypeutils.h: 
5265         * gtk/gtktypeutils.c (gtk_type_init_builtin_types): cleanups to
5266         the fundamental type definition. the GtkArg union now only covers
5267         the required storage types for argument values. adapted the GTK_VALUE_*
5268         macro set. handle GTK_TYPE_UCHAR. definiton of type set bounds macros.
5269
5270         * gtk/gtkargcollector.c (gtk_arg_collect_value): clean ups of the
5271         code, fixed int/float collection. fixed a bug in the sanity checking
5272         code for GtkObjects.
5273
5274         * gtk/gtkbindings.c (gtk_binding_entry_add_signal): fixups of the
5275         argument collection code.
5276
5277         * gtk/gtksignal.c (gtk_signal_collect_params): use the type set bounds
5278         macros when distinguishing the return type.
5279
5280 Mon Jul 13 12:42:51 1998  George Lebl  <jirka@5z.com>
5281
5282         * gdk/gdkwindow.h: (gdk_window_reparent) check if old_parent_private
5283           is not NULL before trying to g_list_remove the child. A patch
5284           from Michael Lausch.
5285
5286 Sun Jul 12 16:40:06 1998  Tim Janik  <timj@gtk.org>
5287
5288         * gtk/gtkargcollector.c (gtk_arg_collect_value): fix float argument
5289         collection (always casted to doubles upon argument passing).
5290
5291 Sun Jul 12 05:59:26 1998  Tim Janik  <timj@gtk.org>
5292
5293         * gtk/gtktypeutils.c (gtk_type_new): call the base classes'
5294         object_init_func for derived objects with the object's ->klass field
5295         still pointing to the corresponding base class, otherwise overridden
5296         class functions could get called with partly-initialized objects.
5297         (change from Tero Pulkkinen <terop@modeemi.cs.tut.fi>).
5298
5299 Sun Jul 12 02:47:35 1998  Tim Janik  <timj@gtk.org>
5300
5301         * gtk/gtkobject.h:
5302         * gtk/gtkobject.c:
5303         (gtk_object_arg_get_info): new functions which wraps gtk_arg_get_info().
5304
5305         * gtk/gtkcontainer.h:
5306         * gtk/gtkcontainer.c:
5307         (gtk_container_child_arg_get_info): new function which wraps
5308         gtk_arg_get_info().
5309
5310 Fri Jul 10 13:29:53 1998  Tim Janik  <timj@gtk.org>
5311
5312         * gtk/gtkcontainer.c:
5313         (gtk_container_arg_get): 
5314         (gtk_container_arg_set): 
5315         * gtk/gtkobject.c:
5316         (gtk_object_arg_set): 
5317         (gtk_object_arg_get):
5318         strictly check for the associated get/set arg functions. if an
5319         arg is readable or writable, the associated class functions *must*
5320         be provided.
5321
5322 Fri Jul 10 09:37:50 1998  Tim Janik  <timj@gtk.org>
5323
5324         * gtk/gtkaccellabel.c (gtk_accel_label_accelerator_width): only take the
5325         padding into account if there is an accelerator.
5326
5327 Fri Jul 10 05:51:44 1998  Tim Janik  <timj@gtk.org>
5328
5329         * gtk/gtkcontainer.c:
5330         (gtk_container_add_with_args): collect the arguments with
5331         gtk_container_child_args_collect, not through gtk_object_args_collect.
5332         (gtk_container_child_set): likewise.
5333
5334 Fri Jul 10 04:20:35 1998  Tim Janik  <timj@gtk.org>
5335
5336         * gtk/gtktypeutils.h: 
5337         * gtk/gtktypeutils.c: added a new internal type GTK_TYPE_IDENTIFIER
5338         which is derived from GTK_TYPE_STRING.
5339
5340         * gtk/gtkbindings.c: reworked the argument type handling.
5341
5342 Thu Jul  9 21:03:19 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
5343
5344         * gtk/gtkpreview.c: add in just enough support for 1 or 4 bits
5345           so that it seems to allow normal operation in those modes,
5346           although you will only see black  (GIMP toolbar now pops up,
5347           just don't create a new image and GIMP now works in 4 bit.)
5348
5349 Thu Jul  9 20:20:04 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
5350
5351         * gdk/gdkvisuals.c: 4 bit support, increased available_depths
5352           array, which was too low (?)
5353
5354 Fri Jul 10 00:02:04 1998  Tim Janik  <timj@gtk.org>
5355
5356         * gtk/gtkcontainer.h: 
5357         * gtk/gtkcontainer.c: deleted most of the argument handling code, since
5358         that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
5359         we now export a new function gtk_container_child_args_collect().
5360         for consistency with the object arguments, a few functions got renamed:
5361         gtk_container_child_arg_get -> gtk_container_child_get,
5362         gtk_container_child_arg_set -> gtk_container_child_set,
5363         gtk_container_child_arg_getv -> gtk_container_child_getv,
5364         gtk_container_child_arg_setv -> gtk_container_child_setv,
5365         gtk_container_add_with_argv -> gtk_container_addv.
5366         note, gtk_container_add_with_args() remained, because its equivalent
5367         would be gtk_container_add(,, ...) which would break all existing code.
5368         (gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
5369         we expect the `arg_name' argument to be a const static string now.
5370         (gtk_container_get_child_arg_type): function removed.
5371
5372 Thu Jul  9 07:03:04 1998  Tim Janik  <timj@gtk.org>
5373
5374         * gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
5375         this is a static inline function that collects command line arguments
5376         from a va_list. this file can just be included in all places that
5377         need this functionality.
5378
5379         * gtk/gtkarg.h: 
5380         * gtk/gtkarg.c: new files which implement most of the argument
5381         handling stuff from gtkobject.c. also collected a few more
5382         gtk_arg_* utility functions from else places.
5383
5384         * gtk/gtkobject.h: 
5385         * gtk/gtkobject.c: moved most of the argument handling code into
5386         gtkarg.c. we now export gtk_object_args_collect() as a non-public
5387         method with a blind va_list pointer.
5388         (gtk_object_add_arg_type): the `arg_name' argument is required to be a
5389         const static string now.
5390         (gtk_object_get_arg_type): function got removed.
5391
5392         * gtk/gtkwidget.c: 
5393         (gtk_widget_set): 
5394         (gtk_widget_new): adaptions for gtk_object_args_collect().
5395
5396         * gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
5397         fundamental type name so as to have a valid prefix, e.g. "bool"->
5398         "gboolean", "string"->"GtkString" and somesuch, left "void" as is,
5399         though that should probably be something like GtkNone since the
5400         type itself is called GTK_TYPE_NONE.
5401         even the internal type names need to avoid name clashes and must live
5402         in their own namespace, several code portions rely on that.
5403         we should relly have typedefs such as typedef gchar* GtkString; so the
5404         fundamental type names can be used for code dumpers just like with all
5405         the Gtk/Gdk types.
5406
5407 Wed Jul  8 15:31:28 1998  Tim Janik  <timj@gtk.org>
5408
5409         * gtk/gtkbutton.c: handle GTK_RELIEF_HALF, which was introduced to
5410         keep either GTK_STATE_NORMAL for relief buttons (GTK_RELIEF_NONE) or
5411         to still honour GTK_WIDGET_STATE(), e.g. for coloured buttons
5412         (GTK_RELIEF_HALF).
5413         (gtk_button_paint): set the background for prelighted buttons with
5414         GTK_STATE_NORMAL only if GTK_RELIEF_NONE.
5415         (gtk_button_draw_focus): if GTK_RELIEF_NONE, use GTK_STATE_NORMAL for
5416         the shadow type (otherwise we get strange shadows for coloured buttons).
5417         (gtk_button_set_relief): queue a redraw after changing
5418         the relief.
5419         (gtk_button_class_init): 
5420         (gtk_button_set_arg): 
5421         (gtk_button_get_arg): added object argument "GtkButton::relief".
5422
5423         * gtk/gtkenums.h (enum): added GTK_RELIEF_HALF.
5424
5425 Mon Jul  6 18:30:48 1998  Tim Janik  <timj@gtk.org>
5426
5427         * gtk/gtkbutton.h:
5428         * gtk/gtkbutton.c: GtkButtons are now derived from GtkBin. we mirror
5429         GTK_BIN (button)->child to button->child to keep source compatibility.
5430
5431         * gtk/gtkoptionmenu.c:
5432         * gtk/gtkclist.c:
5433         * gtkcheckbutton.c: don't refer to button->child, but
5434         GTK_BIN (button)->child instead.
5435
5436 Mon Jul  6 12:06:23 BST 1998  Tony Gale  <gale@gtk.org>
5437
5438         * docs/gtkfaq.sgml: update anon CVS info
5439
5440 Sat Jul  4 13:16:24 1998  Tim Janik  <timj@gtk.org>
5441
5442         * gtk/*.c: changed reversed_[12] to reserved_[12] in gtk_*_get_type
5443         functions.
5444
5445         * gdk/gdkwindow.c:
5446         * gdk/gdkvisual.c: check for some pointer values to be != NULL, prior
5447         to XFree() calls.
5448
5449 1998-07-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
5450
5451         * gtk/gtkfeatures.h.in: Added GDK_HAVE_FULL_CROSSING_EVENT, since
5452         I seem to have erroneously added it to gtkfeatures.h (not .h.in).
5453
5454 Fri Jul  3 14:55:31 PDT 1998 Manish Singh <yosh@gimp.org>
5455
5456         * gtk/gtkfeatures.h.in: added GTK_HAVE_RELIEF_STYLE
5457
5458 Wed Jul  1 20:58:46 1998  Tim Janik  <timj@gtk.org>
5459
5460         * gtk/gtkwidget.h:
5461         * gtk/gtkwidget.c: temporary implementation of action signal "debug_msg"
5462
5463         * gtk/gtkbindings.c (gtk_binding_entry_add_signal): fixed an off-by-one
5464         error that prevented signal to entry addition for signals with
5465         parameters.
5466
5467 Wed Jul  1 10:05:36 PDT 1998 Manish Singh <yosh@gimp.org>
5468
5469         * ltconfig: fix for properly detecting shared lib support on
5470         SunPro cc (taken from libtool 1.2.a)
5471
5472 Wed Jul  1 03:33:30 1998  Tim Janik  <timj@gtk.org>
5473
5474         * gtk/gtkrc.c: implementation of the "class" keyword for styles.
5475
5476 Tue Jun 30 14:30:37 1998  Tim Janik  <timj@gtk.org>
5477
5478         * gtk/gtkrc.c: fixed lookup order for rc styles. the latest defined
5479         rc set pattern is favoured, this is needed for overriding of style
5480         patterns with subsequently parsed rc files.
5481
5482 Tue Jun 30 12:45:19 1998  Tim Janik  <timj@gtk.org>
5483
5484         * gtk/gtkrc.c: code overhaul for simplicity and more descriptive
5485         error messages.
5486
5487 Tue Jun 30 09:24:40 1998  Tim Janik  <timj@gtk.org>
5488
5489         * gtk/gtkaccelgroup.c (gtk_accelerator_parse): parse "<Release>"
5490         modifier as well.
5491         (gtk_accelerator_name): add "<Release>" to the accelerator name if
5492         neccessary.
5493
5494         * gtk/gtkbindings.c (BINDING_MOD_MASK): take BINDING_MOD_MASK into
5495         account.
5496
5497         * gtk/gtkwidget.c (gtk_widget_real_key_release_event): implemented
5498         default handler for key-release events, which checks for activation
5499         of GDK_RELEASE_MASK key bindings.
5500
5501         * gdk/gdktypes.h (enum): added GDK_RELEASE_MASK to GdkModifierType.
5502
5503 Mon Jun 29 13:39:45 1998  Tim Janik  <timj@gtk.org>
5504
5505         * gtk/gtkarrow.h: GtkType and macro fixups.
5506         * gtk/gtkarrow.c: widget argument implementation: "GtkArrow::arrow_type",
5507         "GtkArrow::shadow_type".
5508
5509 Sun Jun 28 11:39:17 1998  Tim Janik  <timj@gtk.org>
5510
5511         * gtk/gtkalignment.h:
5512         * gtk/gtkbin.h: GtkType and macro fixups.
5513         
5514         * gtk/gtkalignment.c (gtk_alignment_class_init): widget argument
5515         implementation: GtkAlignment::xalign, GtkAlignment::yalign,
5516         GtkAlignment::xscale, GtkAlignment::yscale.
5517
5518 Sun Jun 28 04:29:10 1998  Tim Janik  <timj@gtk.org>
5519
5520         * gtk/gtktypeutils.c (gtk_type_class_init): call the base class init
5521         fucntions from all parent types upon class initialization.
5522
5523         * gtk/gtkcontainer.c:
5524         (gtk_container_get_type): announce gtk_container_base_class_init to
5525         the type system.
5526         (gtk_container_base_class_init): new function to feature base class
5527         initialization.
5528         (gtk_container_get_child_arg): 
5529         (gtk_container_set_child_arg): call the GtkContainerClass get_child_arg
5530         and set_child_arg methods of the class indicated through the argument
5531         name.
5532
5533         * gtk/gtkobject.c:
5534         (gtk_object_base_class_init): new function to feature base class
5535         initialization.
5536         (gtk_object_init_type): announce gtk_object_base_class_init to the type
5537         system.
5538         (gtk_object_class_init): setup the get_arg and set_arg pointers for
5539         GtkObjectClass.
5540         (gtk_object_setv): 
5541         (gtk_object_getv): call the GtkObjectClass get_arg and set_arg methods,
5542         instead of bothering the type system with this.
5543
5544         * gtk/gtkaccellabel.c: 
5545         * gtk/gtkbutton.c: 
5546         * gtk/gtkradiobutton.c: 
5547         * gtk/gtktable.c:
5548         * gtk/gtktogglebutton.c: 
5549         * gtk/gtktipsquery.c: 
5550         * gtk/gtkbox.c: 
5551         * gtk/gtkpacker.c: 
5552         * gtk/gtkwidget.c: 
5553         * gtk/gtkwindow.c: 
5554         * gtk/gtkframe.c: 
5555         * gtk/gtkmisc.c:
5556         * gtk/gtklabel.c: set the object_class->{g|s}et_arg pointers to the
5557         corresponding gtk_*_{g|s]et_arg functions and updated the gtk_*_get_type
5558         functions wrt GtkTypeInfo initialization. changed a lot of the set/get
5559         arg functions to take a GtkObject argument.
5560
5561         gtk/gtkadjustment.c:
5562         gtk/gtkalignment.c:
5563         gtk/gtkarrow.c:
5564         gtk/gtkaspectframe.c:
5565         gtk/gtkbbox.c:
5566         gtk/gtkbin.c:
5567         gtk/gtkcheckbutton.c:
5568         gtk/gtkcheckmenuitem.c:
5569         gtk/gtkclist.c:
5570         gtk/gtkcolorsel.c:
5571         gtk/gtkcombo.c:
5572         gtk/gtkctree.c:
5573         gtk/gtkcurve.c:
5574         gtk/gtkdata.c:
5575         gtk/gtkdialog.c:
5576         gtk/gtkdrawingarea.c:
5577         gtk/gtkeditable.c:
5578         gtk/gtkentry.c:
5579         gtk/gtkeventbox.c:
5580         gtk/gtkfilesel.c:
5581         gtk/gtkfixed.c:
5582         gtk/gtkfontsel.c:
5583         gtk/gtkgamma.c:
5584         gtk/gtkhandlebox.c:
5585         gtk/gtkhbbox.c:
5586         gtk/gtkhbox.c:
5587         gtk/gtkhpaned.c:
5588         gtk/gtkhruler.c:
5589         gtk/gtkhscale.c:
5590         gtk/gtkhscrollbar.c:
5591         gtk/gtkhseparator.c:
5592         gtk/gtkimage.c:
5593         gtk/gtkinputdialog.c:
5594         gtk/gtkitem.c:
5595         gtk/gtkitemfactory.c:
5596         gtk/gtklist.c:
5597         gtk/gtklistitem.c:
5598         gtk/gtkmenu.c:
5599         gtk/gtkmenubar.c:
5600         gtk/gtkmenuitem.c:
5601         gtk/gtkmenushell.c:
5602         gtk/gtknotebook.c:
5603         gtk/gtkoptionmenu.c:
5604         gtk/gtkpaned.c:
5605         gtk/gtkpixmap.c:
5606         gtk/gtkpreview.c:
5607         gtk/gtkprogressbar.c:
5608         gtk/gtkradiomenuitem.c:
5609         gtk/gtkrange.c:
5610         gtk/gtkruler.c:
5611         gtk/gtkscale.c:
5612         gtk/gtkscrollbar.c:
5613         gtk/gtkscrolledwindow.c:
5614         gtk/gtkseparator.c:
5615         gtk/gtkspinbutton.c:
5616         gtk/gtkstatusbar.c:
5617         gtk/gtktext.c:
5618         gtk/gtktoolbar.c:
5619         gtk/gtktooltips.c:
5620         gtk/gtktree.c:
5621         gtk/gtktreeitem.c:
5622         gtk/gtkvbbox.c:
5623         gtk/gtkvbox.c:
5624         gtk/gtkviewport.c:
5625         gtk/gtkvpaned.c:
5626         gtk/gtkvruler.c:
5627         gtk/gtkvscale.c:
5628         gtk/gtkvscrollbar.c:
5629         gtk/gtkvseparator.c: updated the GtkTypeInfo initialization code to
5630         match the modified GtkTypeInfo structure.
5631
5632 Sat Jun 27 23:23:27 PDT 1998 Manish Singh <yosh@gimp.org>
5633
5634         * gtk/testgtk.c: use rand() instead of random() for portability
5635
5636 Sat Jun 27 22:42:28 PDT 1998 Manish Singh <yosh@gimp.org>
5637
5638         * configure.in
5639         * acconfig.h
5640         * gdk/gdk.c: use native Xlib XConvertCase if it's available
5641
5642 Sat Jun 27 15:44:46 1998  Tim Janik  <timj@gtk.org>
5643
5644         * gdk/gdk.c (gdkx_XConvertCase): compatibility function to provide
5645         XConvertCase() functionality from X11R6 on X11R5 systems.
5646
5647 Thu Jun 25 10:50:34 1998  Stefan Jeske  <stefan@gtk.org>
5648
5649         * gdk/gdk.h gdk/gdkfont.c: Added functions gdk_text_height,
5650         gdk_string_height, gdk_char_height to retrieve the exact
5651         height of a text.
5652
5653 Thu Jun 25 07:53:51 BST 1998  Tony Gale  <gale@gtk.org>
5654
5655         * docs/gtk_tut.sgml: add section on GtkCList widget, contributed
5656           by Stefan Mars <mars@lysator.liu.se>
5657         * examples/clist/clist.c examples/clist/Makefile: example code
5658           for GtkCList widget from the Tutorial
5659
5660 Wed Jun 24 16:38:02 1998  Tim Janik  <timj@gtk.org>
5661
5662         * gtk/gtkbin.c (gtk_bin_remove): do not avoid to queue for a resize
5663         if the container is not visible, we might be a toplevel! this holds
5664         for all other base container implementations as well, that are
5665         candidates to derive toplevels from. in general the resizing code will
5666         care about visibility itself.
5667         * gtk/gtkmenushell.c (gtk_menu_shell_remove): likewise.
5668         * gtk/gtkbox.c (gtk_box_remove): likewise.
5669
5670         * gtk/gtkwindow.c (gtk_window_move_resize): save ->use_uposition around
5671         gtk_window_set_hints(), since we haven't calculated the new position
5672         yet.
5673
5674         * gdk/gdkwindow.c (gdk_window_get_pointer): take care that *x, *y and
5675         *mask are alway initialized in a sane way, regardless of the return
5676         value.
5677
5678 Wed Jun 24 14:14:32 1998  Tim Janik  <timj@gtk.org>
5679
5680         * gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
5681         to gtk_container_child_arg_setv, but takes a variable argument list.
5682         new function gtk_container_get_child_arg_type, which is needed by
5683         gtk_object_collect_args.
5684
5685         * gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
5686         take a function pointer to figure the argument type.
5687         adapted callers to pass gtk_object_get_arg_type.
5688         * gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
5689         gtk_object_get_arg_type..
5690
5691         * gtk/gtkpacker.h: 
5692         * gtk/gtkpacker.c:
5693         (gtk_packer_reorder_child): new function to change the packing order
5694         of a child.
5695         (gtk_packer_size_request): 
5696         (gtk_packer_size_allocate): take container->border_width into acount.
5697
5698         * gtk/gtkpacker.c: implemented widget arguments:
5699         "GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
5700         "GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
5701         implemented child arguments:
5702         "GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
5703         "GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
5704         "GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
5705         "GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
5706
5707         * gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
5708         not the alignment.
5709
5710         * gtk/gtkeventbox.h:
5711         * gtk/gtkeventbox.c: GtkType and macro fixups.
5712
5713         * gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
5714         sensitivity of an entry.
5715
5716         * gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
5717         for insensitive base and text.
5718
5719         * gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
5720         widget state dependent.
5721         (gtk_entry_style_set): likewise.
5722         (gtk_entry_state_changed): set background color on state changes.
5723         (gtk_entry_draw_text): for non selected text, use state dependent
5724         colors.
5725
5726         * gtk/gtktogglebutton.c: support for widget arguments
5727         "GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
5728
5729 Wed Jun 24 08:35:45 1998  Stefan Jeske  <stefan@gtk.org>
5730
5731         * gtk/gtkspinbutton.c (gtk_spin_button_spin): Added compatibility 
5732         code for 1.0.x-like parameters. Changed internal interface of
5733         gtk_spin_button_real_spin. Several fixes to avoid emission of
5734         "value_changed" where possible.
5735
5736 Tue Jun 23 22:21:33 PDT 1998 Manish Singh <yosh@gimp.org>
5737
5738         * gtk-boxed.defs: s/GkWidget/GtkWidget/
5739
5740 Wed Jun 24 07:47:29 1998  Tim Janik  <timj@gtk.org>
5741
5742         * gtk/testgtk.c (create_idle_test): added a frame with radio buttons
5743         to select the resize_mode for the idle-labels container.
5744
5745         * gtk/gtkframe.h: 
5746         * gtk/gtkframe.c: GtkType and macro corrections.
5747
5748         * gtk/gtkradiobutton.c (gtk_radio_button_set_arg): new function to
5749         support widget argument "GtkRadioButton::group".
5750
5751 Tue Jun 23 08:01:09 1998  Tim Janik  <timj@gtk.org>
5752
5753         * gtk/gtkcontainer.c (gtk_container_set_resize_mode): queue a resize
5754         unconditionally if resize_mode has changed.
5755
5756         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_init): set
5757         GTK_RESIZE_QUEUE on the scrolled window.
5758         (gtk_scrolled_window_construct): set GTK_RESIZE_PARENT for the vieport.
5759
5760 Tue Jun 23 04:20:30 1998  Tim Janik  <timj@gtk.org>
5761
5762         * gtk/gtkcontainer.h:
5763         * gtk/gtkcontainer.c:
5764         (GTK_IS_RESIZE_CONTAINER): new macro to find out if
5765         a given gtkobject is a container with resize_mode==GTK_RESIZE_PARENT.
5766         (gtk_container_queue_resize): new function to queue a container for
5767         a *size* reallocation (doesn't affect its position, and thus its
5768         parent is left untouched usually).
5769         (gtk_container_get_resize_container): new function to retrive the next
5770         most resize container which is not itself queued for a resize.
5771         (gtk_container_idle_sizer): new function to carefully process the
5772         container_resize_queue since it can change during invokation of
5773         gtk_container_check_resize().
5774         (gtk_container_resize_children): total rework of this function to
5775         properly handle resize containers. makes a lot of assumptions whitch
5776         are stated in the comments.
5777
5778         * gtk/gtkcontainer.c:
5779         (gtk_container_real_check_resize): only requeue ourselves if we are not
5780         a resize container.
5781         (gtk_container_clear_resize_widgets): care for automatic deletion of our
5782         resize_widgets list on size_allocate through a handler connection.
5783
5784         * gtk/gtkwindow.c (gtk_window_shutdown): new functionm to reset the
5785         focus and default widget of a window, so to take the burden from
5786         gtk_widget_unparent.
5787
5788         * gtk/gtkviewport.c: removed gtk_viewport_check_resize, which tried
5789         to be clever, but actually messed up the resize_children logic and
5790         caused unneccessary allocations on its whole branch. besides this,
5791         it messed up the display by not invoking a redraw after the allocation.
5792
5793         * gtk/gtktable.c (gtk_table_set_child_arg): reverted recent change, so
5794         that it is the child again that is queued for a resize.
5795         (gtk_table_attach): likewise.
5796         (gtk_table_remove): likewise.
5797
5798 1998-06-22  Miguel de Icaza  <miguel@nuclecu.unam.mx>
5799
5800         * gtk/gtkentry.h, gtk/gtkentry.c: Export the
5801         gtk_entry_adjust_scroll.  Required if you change the cursor
5802         position and want to sync it up with your code (Midnight Commander
5803         gtk front end needs this).
5804
5805         * gtk/gtktable.c: Deal with tables that have size 0, 0.
5806
5807 Tue Jun 23 12:12:19 BST 1998  Tony Gale  <gale@gtk.org>
5808
5809         * examples/README.1ST: new file to explain how the
5810           code examples should be extracted from the tutorial.
5811
5812 Mon Jun 22 18:43:11 1998  Lars Hamann  <lars@gtk.org>
5813
5814         * gtk/gtkctree.c (draw_row): added new "line style"
5815         GTK_CTREE_LINES_TABBED 
5816         * gtk/gtkctree.c/h (gtk_ctree_find_glist_ptr): new function to
5817         search the glist pointer of an GtkCTreeRow
5818
5819 1998-06-21  Raja R Harinath  <harinath@cs.umn.edu>
5820  
5821         * gtk/Makefile.am (gtk.defs,gtktypebuiltins*): Remove $(srcdir)
5822         from, and clean up, the dependencies.  Generate to intermediate
5823         files to prevent problems with Ctrl-C.
5824
5825         * gtk/genmarshal.pl: Generate `gtkmarshal.[ch]' in $srcdir.
5826
5827 Fri Jun 19 14:46:56 1998  Stefan Jeske  <stefan@gtk.org>
5828
5829         * gtk/gtkspinbutton.h gtk/gtkspinbutton.c gtk/testgtk.c:
5830         - Bug fix for precision problem causing occasional double emission 
5831           of "value_changed" signal (hopefully works now).
5832         - API change (should be binary compatible) : 
5833           new enum GtkSpinType; modified gtk_spin_button_spin to use it.
5834           Modified cursor example appropriately.
5835           To spin by something other than step_/page_increment, use
5836           gtk_spin_button_spin (spin, GTK_SPIN_USER_DEFINED, increment).
5837         - Made GTK_SHADOW_NONE the default. ;)
5838         - Fixed casting of GtkAdjustment* to GtkWidget* in
5839           gtk_spin_button_value_changed.
5840
5841 Fri Jun 19 06:18:19 1998  Tim Janik  <timj@gtk.org>
5842
5843         * gtk/gtkcontainer.c (gtk_container_set_resize_mode): fail silently
5844         for toplevels. if resize_mode changes to GTK_RESIZE_PARENT, clear the
5845         resize widget list before queuing the container for a new reize.
5846         (gtk_container_need_resize): changed return value to FALSE, since this
5847         used to indicate that no further resizes are needed.
5848         (gtk_container_set_arg): 
5849         (gtk_container_get_arg): 
5850         (gtk_container_class_init): implemented GtkContainer::resize_mode
5851         argument.
5852
5853         (gtk_container_resize_children): when we walk up the tree of a resize
5854         widget we need to stop if we are the current parent.
5855
5856         * gtk/gtkwidget.c (gtk_widget_queue_resize): flag the resize child with
5857         GTK_RESIZE_NEEDED for container->resize_mode==GTK_RESIZE_IMMEDIATE.
5858         (gtk_widget_hide_all): retrive the toplevel widget from via
5859         gtk_widget_get_resize_container().
5860
5861 Thu Jun 18 23:08:36 1998  Owen Taylor  <otaylor@gtk.org>
5862
5863         * gtk/gtklist.c (gtk_list_button_press): Only respond
5864           to selection with button 1. This allows context-sensitive
5865           menus to work correctly.
5866
5867 Fri Jun 19 03:29:04 1998  Tim Janik  <timj@gtk.org>
5868
5869         * gtk/gtkaccelgroup.c: 
5870         * gtk/gtkbindings.c: 
5871         * gtk/gtkcontainer.c:
5872         * gtk/gtkitemfactory.c:
5873         * gtk/gtkobject.c: 
5874         * gtk/gtksignal.c:
5875         * gtk/gtkwidget.c: replaced some gtk_object_data_force_id with
5876         g_quark_from_static_string calls to save memory.
5877
5878         * gtk/gtkobject.c (gtk_object_set_data_by_id_full): invoke the destroy
5879         function _after_ the new data has been setup.
5880         minor changes to object data functions to feature the GQuark type.
5881
5882 Thu Jun 18 21:13:54 1998  Owen Taylor  <otaylor@gtk.org>
5883
5884         * gtk/gtkmain.c (gtk_init): Remove --g-fatal-warnings flag
5885           from argv.
5886
5887 Thu Jun 18 20:22:28 1998  Owen Taylor  <otaylor@gtk.org>
5888
5889         * gtk/genmarshal.pl: Modified to be more idiomatic Perl,
5890           to be more readable perl, to spit out stuff that looks
5891           more like readable C, and to pipe output through indent
5892           so output looks a lot like readable C. No functional
5893           changes.
5894
5895 Thu Jun 18 17:43:31 1998  Owen Taylor  <otaylor@gtk.org>
5896
5897         * gtk/gtkpixmap.[ch] (gtk_pixmap_set): Clear the background if
5898           necessary when switching to a masked pixmap. (Based on a patch
5899           from Ullrich Hafner <hafner@informatik.uni-wuerzburg.de>)
5900
5901 Thu Jun 18 16:18:10 1998  Owen Taylor  <otaylor@gtk.org>
5902
5903         * gtk/gtkeditable.[ch]: Added action signals for keyboard
5904           bindings. (move_cursor, kill_word, etc, etc, etc). 
5905
5906           removed the time argument from
5907           gtk_editable_cut/copy/paste_clipboard (source but not
5908           binary incompatible...) Instead get time from
5909           gtk_get_current_event ().
5910         
5911         * gtk/gtktext.c gtk/gtkentry.c: Support the new editable
5912           signals.
5913
5914 Thu Jun 18 02:52:09 1998  Owen Taylor  <otaylor@gtk.org>
5915
5916         Patches from Damon Chaplin <DAChaplin@email.msn.com>:
5917
5918         gtk/gtkfontsel.h: Fixed GtkFontSelectionClass - I forgot to change
5919              parent class to GtkNotebookClass when splitting the widget in
5920              two.  Also updated some comments.
5921
5922         gtk/gtkfontsel.c: Fixed bug when toggling 'Allow scaled bitmaps'
5923                button without a font selected.
5924
5925              Fixed bug in set_font_name - I hadn't updated the code to
5926                search for the style in the font_style clist - it was
5927                still assuming the style row was equal to its index,
5928                but it isn't any more.
5929         
5930              Changed 'Reset' button on filter page to 'Clear Filter'.
5931              Deleted old code relating to the old 'Filter Fonts' toggle
5932              Updated some comments.
5933              Cleared 'Actual Fontname' if no font is set.
5934
5935         gtk/testgtk.c: Fixed problem when 'OK' button is pressed - it was
5936              destroying the GtkFontSelection instead of the
5937              GtkFontSelectionDialog.
5938
5939 Thu Jun 18 02:15:31 1998  Owen Taylor  <otaylor@gtk.org>
5940
5941         * gtk/gtkmain.c (gtk_init): Added --g-fatal-warnings
5942           flag to make all warnings fatal errors.
5943
5944         * gtk/testthreads.c: moved <pthreads.h> include inside 
5945           #ifdef USE_PTHREADS
5946
5947 Thu Jun 18 01:37:31 1998  Owen Taylor  <otaylor@gtk.org>
5948
5949         * gtk/gtkenums.h gtk/gtkcontainer.[ch] gtk/gtkwidget.c 
5950           gtk/gtkmenu.c gtk/gtkviewport.c gtk/gtkwindow.c:
5951
5952         - Added new function gtk_container_set_resize_mode() for
5953           fine-grained control of where resize-queueing is done.
5954
5955         - Removed GtkContainer::need_resize and GtkWindow::move_resize
5956         - Added GtkContainer::check_resize to replace need_resize.
5957
5958         - Added function gtk_container_check_resize() to trigger
5959           queued resizes, and gtk_container_resize_children() to
5960           Figure which children need to be size-allocated. (logic
5961           moved from gtkwindow.c)
5962
5963         - Reorganized code in gtkwindow.c
5964         
5965         - Set the resize-mode for viewports so that resizes within
5966           a viewport don't propagate out of it. 
5967         
5968 1998-06-18  Federico Mena Quintero  <federico@nuclecu.unam.mx>
5969
5970         * gtk/gtkfontsel.c: Use pointer<->int conversion macros to avoid warnings.
5971
5972         * gtk/gtkaccellabel.c (gtk_accel_label_accelerator_width): Use
5973         g_return_val_if_fail, because the function *does* return a value.
5974
5975 Thu Jun 18 03:30:06 1998  Tim Janik  <timj@gtk.org>
5976
5977         * gtk/gtkaccellabel.h:
5978         * gtk/gtkaccellabel.c: new function gtk_accel_label_accelerator_width to
5979         request the size of the accelerator portion of an accel label.
5980         (gtk_accel_label_size_request): don't request for the accelerators size.
5981         (gtk_accel_label_expose_event): only draw the accelerator if we got
5982         enough extra space.
5983
5984         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): request accelerator
5985         width from children.
5986
5987         * gtk/gtkmenu.c (gtk_menu_key_press): when adding an accelerator to an
5988         object (after removal has been requested) check if there is still an
5989         accelerator remaining to avoid adding two accelerators on an object.
5990         this can happen for locked accelerators (or accelerator-frozen widgets).
5991         (gtk_menu_size_request): feature childrens accelerator width in size
5992         requests.
5993
5994         * gtk/gtknotebook.c (gtk_notebook_menu_item_create): use
5995         gtk_widget_freeze_accelerators() for dynamically created menu items.
5996
5997         * gtk/gtksignal.h: 
5998         * gtk/gtksignal.c: new function gtk_signal_handler_pending_by_func()
5999         which will return a handler_id > 0 if the specified function is pending
6000         for `signal_id'.
6001
6002         * gtk/gtkwidget.h:
6003         * gtk/gtkwidget.c: remove gtk_widget_stop_accelerator, which was just
6004         a signal handler function to stop accelerator addition.
6005         added gtk_widget_freeze_accelerators and gtk_widget_thaw_accelerators
6006         which will prevent (undo) any accelerators from being added to or
6007         removed from a widget.
6008
6009 Wed Jun 17 21:59:09 1998  Stefan Jeske  <stefan@gtk.org>
6010
6011         * gtkspinbutton.h gtkspinbutton.c testgtk.c:
6012         Changed GtkSpinButtonUpdatePolicy enum, added keyboard
6013         acceleration, new API gtk_spin_button_set_snap_to_ticks.
6014
6015 Wed Jun 17 03:47:40 1998  Tim Janik  <timj@gtk.org>
6016
6017         * gdk/gdk.h:
6018         * gdk/gdkwindow.c: new function gdk_window_at_pointer() to retrive
6019         the current GdkWindow the pointer is on if there is any.
6020         
6021         * gtk/gtktable.c (gtk_table_init): preallocate a table with one row
6022         and one column, so we don't construction logic at all. changed a few
6023         (x < y - 1) to (x + 1 < y), to avoid failing evaluations due to
6024         unsigned int wraps.
6025
6026         * gtk/gtkwidget.c (gtk_widget_set_parent): removed left over code
6027         portion, added an additional check for parent != widget.
6028
6029         * more GtkType and macro fixups.
6030
6031 1998-06-16  Federico Mena Quintero  <federico@nuclecu.unam.mx>
6032
6033         * gtk/gtkhandlebox.c (draw_textured_frame): Now accepts an extra
6034         "clip" parameter, which is the clipping rectangle to use.  This
6035         eliminates the extremely annoying flicker when exposing parts of
6036         the handlebox.
6037
6038 Tue Jun 16 14:08:08 PDT 1998 Manish Singh <yosh@gimp.org>
6039
6040         * gtk/gtktable.c: fix from TimJ for off-by-one error in table
6041         resizing
6042
6043 Tue Jun 16 06:29:57 1998  Tim Janik  <timj@gtk.org>
6044
6045         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_set_state): check for
6046         != 0 on the argument.
6047
6048         * gtk/gtktable.h: 
6049         * gtk/gtktable.c: new function gtk_table_resize() which allowes
6050         shrinking and expanding of tables. implementation of widget arguments
6051         and child arguments. many signedness corrections.
6052
6053 Mon Jun 15 04:15:03 1998  Tim Janik  <timj@gtk.org>
6054
6055         * gtk/gtkbox.c (gtk_box_set_child_packing): queue the resize for the box
6056         not only the child, otherwise we might end up taking away other
6057         childrens space after the resize.
6058
6059         * gtk/gtkitemfactory.c (gtk_item_factory_parse_menu_path): if we parse
6060         an unknown menu path from any source, that path must always be flagged
6061         as "modified", since we don't really know whether it has its default
6062         value or not.
6063
6064         * gtk/gtktree.c:
6065         * gtk/gtkpacker.c:
6066         * gtk/gtknotebook.c:
6067         * gtk/gtkmenushell.c:
6068         * gtk/gtklist.c:
6069         * gtk/gtkpaned.c:
6070         * gtk/gtkfixed.c: 
6071         * gtk/gtkbutton.c: implement gtk_*_child_type functions.
6072
6073         * gtk/gtkbox.h: 
6074         * gtk/gtkbox.c: type corrections for expand, fill, padding and pack_type
6075         arguments. implemented child arguments.
6076
6077         * more GtkType and macro fixups.
6078
6079 Sun Jun 14 16:30:02 1998  Tim Janik  <timj@gtk.org>
6080
6081         * gtk/gtkcheckbutton.h: GtkType and macro fixups.
6082
6083         * gtk/gtkclist.h: exported the prototypes for gtk_clist_get_vadjustment
6084         and gtk_clist_get_hadjustment.
6085
6086         * gtk/gtkcontainer.c:
6087         implementation of children arguments, new class member functions
6088         (child_type), (get_child_arg) and (set_child_arg) plus a new field
6089         n_child_args.
6090         (gtk_container_child_type): new function which returns the type of a
6091         child that the container expects for its next addition.
6092         (gtk_container_add_child_arg_type): new function to introduce a new
6093         child argument at class creation time.
6094         (gtk_container_query_child_args): new function to query all child
6095         arguments that are supported by a container class.
6096         (gtk_container_child_arg_getv): new fucntion to retrive the value of a
6097         child argument.
6098         (gtk_container_child_arg_setv): new function to set a child argument for
6099         a certain container and child combination.
6100         (gtk_container_add_with_args):
6101         (gtk_container_add_with_argv): new functions to feature addition of a
6102         new child in combination with the setting of certain child arguments.
6103
6104         * gtk/gtktypeuitils.c (gtk_type_class_init): feature initialization of
6105         GtkContainerClass.n_child_args, similar to the GtkObjectClass members.
6106         this should really be done through class cretion hooks some day.
6107
6108         * gtk/gtkcontainer.c: changed type of border_width from gint16 to
6109         guint : 16.
6110
6111         * gtk/gtkpacker.h:
6112         * gtk/gtkpacker.c: renamed all PadX and PadY to pad_x and pad_y to
6113         follow the gtk convention for lower case variable names (important
6114         for language wrappers and widget arguments), and made them guint : 16.
6115
6116         * examples/packer/pack.c: adaptions for the case converted GtkPacker
6117         fields.
6118
6119 Fri Jun 12 16:33:23 1998  Tim Janik  <timj@gtk.org>
6120
6121         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_scanner): do not
6122         change the character pair for single line comments.
6123         (gtk_item_factory_parse_rc): use the cpair_comment_signle specified in
6124         GtkItemFactoryClass.
6125         (gtk_item_factory_parse_rc_string): likewise.
6126
6127 Mon Jun 15 23:39:44 1998  Owen Taylor  <otaylor@gtk.org>
6128
6129         * gtk/gtkfontsel.[ch] (gtk_font_selection_dialog_init): Moved font
6130         lists from the klass structure to a static structure
6131         in gtkfontsel.c; cleans up global the namespace.
6132
6133 Mon Jun 15 22:16:10 1998  Owen Taylor  <otaylor@gtk.org>
6134
6135         * gtk/makeenums.pl (parse_entries): Fix (untriggered)
6136         bug with /*< skip >*/ and remove warning.
6137         
6138 Mon Jun 15 20:14:09 1998  Owen Taylor  <otaylor@gtk.org>
6139
6140         * gtk/Makefile.am: Made the gtkmarshal.* generation
6141         rules maintainer-only.
6142
6143 Mon Jun 15 16:29:45 1998  Owen Taylor  <otaylor@gtk.org>
6144
6145         * gdk/gdktypes.h gdk/gdkprivate.h gtk/gtk*.h 
6146           gtk/Makefile.am gtk/makenums.pl 
6147
6148         Removed out the G_ENUM/FLAGS mechanism in favor
6149         of a perl script that parses the standard headers
6150         (with occasional /*< nick=foo >*/ style overrides)
6151         and extracts the enumerations.
6152
6153           gtk/maketypes.awk: Small improvments to the
6154           translation of names. (Avoid splitting gc into
6155           g_c_.)
6156         
6157 Mon Jun 15 16:25:44 1998  Owen Taylor  <otaylor@gtk.org>
6158
6159         * gtk/gtk.h gtk/gtkfontsel.[ch]: 
6160         Damon Chaplin's <DAChaplin@email.msn.com> Font selection widget.
6161         
6162 Mon Jun 15 15:58:34 1998  Owen Taylor  <otaylor@gtk.org>
6163
6164         * gtk/gtkentry.c:
6165         - Restored gtk_entry_adjust_scroll to static 
6166         - Changed text positioning code so that we always
6167           display as large a portion of the text as possible.
6168
6169 Mon Jun 15 15:42:12 1998  Owen Taylor  <otaylor@gtk.org>
6170
6171         * gtk/gtktext.c (gtk_text_finalize): Free internal
6172         structures of text widget. Also, unreference pixmaps
6173         when unrealizing.
6174         
6175 Sat Jun 13 19:14:39 1998  Owen Taylor  <otaylor@gtk.org>
6176
6177         * gdk/gdkinputcommon.h (gdk_input_device_new): Change
6178         3.3.1 bug workaround to number keys starting at 1.
6179
6180 Sat Jun 13 11:56:57 1998  Owen Taylor  <otaylor@gtk.org>
6181
6182         * docs/gtk_tut.sgml: Fixed urls for complete example
6183         source for scribble+widget-writing examples.
6184
6185 Sat Jun 13 11:48:26 1998  Owen Taylor  <otaylor@gtk.org>
6186
6187         * gdk/gdkpixmap.c (gdk_pixmap_extract_color): 
6188         Patch from Tom Bech <tomb@ii.uib.no>, to handle color
6189         specs of the form c #abcdef [ more keys ] properly.
6190
6191 Sat Jun 13 10:51:56 1998  Stefan Jeske  <stefan@gtk.org>
6192
6193         * gtkspinbutton.h gtkspinbutton.c testgtk.c 
6194         (gtk_spin_button_set_shadow_type):
6195         New API to set the shadow type of the arrow panel.
6196
6197 Fri Jun 12 21:20:42 1998  Owen Taylor  <otaylor@gtk.org>
6198
6199         * gtk/gtkoptionmenu.c (gtk_option_menu_expose): Removed
6200         code for drawing the child in two places at once. Unfortunately,
6201         not only does it not work anymore (because reparenting has
6202         been fixed), but it also triggers reparent/expose loops
6203         in some cases.
6204
6205         * gtk/gtkoptionmenu.c (gtk_option_menu_remove_contents): Removed
6206         an unecessary unrealize.
6207
6208 Fri Jun 12 21:18:56 1998  Owen Taylor  <otaylor@gtk.org>
6209
6210         * gdk/gdkwindow.c (gdk_window_reparent): Update the
6211           old and new parents' child window lists properly.
6212
6213 Fri Jun 12 09:24:47 1998  Tim Janik  <timj@gtk.org>
6214
6215         * gtk/gtkpacker.h:
6216         * gtk/gtkpacker.c: renamed enum GtkAnchor and GtkSide to GtkAnchorType
6217         and GtkSideType, to be consistent with the rest of Gtk's enum
6218         definitions. wrapped the enum definitions with the G_ eunm wrappers.
6219         spelled out the GTK_ANCHOR_* enum values, since single letters don't
6220         work out corectly as nick-names (left the old values as aliases).
6221         some signdness corrections (border-width, spacing), could stand more.
6222
6223 Thu Jun 11 14:38:33 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
6224
6225         * gtk/gtkpacker.c, gtk/gtkpacker.h, gtk/gtk.h, gtk/Makefile.am: 
6226           Added gtkpacker
6227
6228         * examples/packer/pack.c, examples/packer/Makefile: Added
6229           gtkpacker example
6230
6231 Thu Jun 11 13:09:00 1998  Owen Taylor  <otaylor@gtk.org>
6232
6233         * gtk/gtktext.c (remove_cache_line): Fixed broken
6234         list-removal code.
6235
6236         * gtk/gtktext.c: (gtk_text_delete_(forward/backward)_cahr)
6237         Check bounds before deleting.
6238
6239 Wed Jun 10 23:21:33 1998  Owen Taylor  <otaylor@gtk.org>
6240
6241         * autogen.sh: Support ACLOCAL_FLAGS
6242
6243 Wed Jun 10 20:54:37 1998  Owen Taylor  <otaylor@gtk.org>
6244
6245         * gtk-config.in: Added missing quotes.
6246
6247 Wed Jun 10 18:44:22 PDT 1998 Manish Singh <yosh@gimp.org>
6248
6249         * gtk/gtkfeatures.in: #define GTK_HAVE_ACCEL_GROUP
6250
6251 1998-06-10  Raja R Harinath  <harinath@cs.umn.edu>
6252
6253         * acconfig.h (GTK_COMPILED_WITH_DEBUGGING): Renamed from
6254         G_COMPILED_WITH_DEBUGGING.
6255
6256         * configure.in (fd_set): Explain check better.
6257
6258         * acinclude.m4: New file.  Contains `libtool.m4' from libtool-1.2,
6259         the version from which gtk+'s libtool forked.  Needed for people
6260         who use post-1.2 alphas of libtool.
6261
6262 Wed Jun 10 19:36:35 1998  Owen Taylor  <otaylor@gtk.org>
6263
6264         * glib/* Moved to glib module
6265
6266         * INSTALL Makefile.am acconfig.h autogen.sh configure.in
6267           gtk-config.in gtk.m4 gdk/Makefile.am gtk/Makefile.am
6268
6269           configuration changes for the above:
6270          
6271           - Use AM_PATH_GLIB by default to find glib; also accept
6272             a --with-glib option for using an uninstalled glib.
6273          
6274           - Put --enable-debug information into config.h so
6275             that we rebuild when it changes. (was in glibconfig.h)
6276
6277 Wed Jun 10 22:23:27 1998  Lars Hamann  <lars@gtk.org>
6278
6279         * gtk/gtkctree.c (draw_row): adapted clist pixmap clipping
6280
6281         * gtk/gtknotebook.h (struct _GtkNotebookClass):
6282         * gtk/gtknotebook.c (gtk_real_notebook_switch_page): 
6283         added missing argument (according to Joseph Coleman's bug report)
6284
6285         * gtk/gtknotebook.c (gtk_notebook_set_focus_child): new class
6286         function to fix notebook focus handling
6287         
6288 Wed Jun 10 12:57:03 1998  Owen Taylor  <otaylor@gtk.org>
6289
6290         * gdk/gdkcc.c glib/ghash.c glib/glib.h glib/gstring.c
6291           glib/gutils.c glib/testglib.c glib/gdataset.c
6292           gtk/gtkaccelgroup.c gtk/gtkmain.c gtk/gtksignal.c
6293           gtk/gtktext.c gtk/gtkbindings.c:
6294
6295          renamed g_const_pointer => gconstpointer
6296
6297 Wed Jun 10 06:25:17 1998  Tim Janik  <timj@gtk.org>
6298
6299         * gdk/gdk.c (gdk_init): prevent gdk_init() from segfaulting when
6300         invoked with (NULL, NULL); (this worked sometime ago).
6301
6302         * gtk/gtktypeutils.h: 
6303         * gtk/gtktypeutils.c: enum and flags type creation can now be done
6304         through gtk_type_register_enum() and gtk_type_register_flags(),
6305         which allow to specify the enum value arrays directly.
6306         the NULL terminated value arrays can be retrived through
6307         gtk_type_enum_get_values() and gtk_type_flags_get_values();
6308         (gtk_type_children_types): new function to query derived types.
6309
6310 1998-06-09  Raja R Harinath  <harinath@cs.umn.edu>
6311
6312         * gtk/Makefile.am (gtkmarshal.c gtkmarshal.h): Pass $srcdir in
6313         environment to genmarshal.pl.
6314         (gtk.defs,gtktypebuiltins*): Add $(srcdir) where needed (in the
6315         rule), and removed it where not needed (in the dependencies).
6316
6317         * gtk/genmarshal.pl: Look for `gtkmarshal.list' in $srcdir.
6318
6319 Tue Jun  9 18:44:57 1998  Owen Taylor  <otaylor@gtk.org>
6320
6321         * gtk/gtkobject.c: Removed g_object_pointer_hash, which
6322         was just g_direct_hash.
6323
6324 Mon May 25 19:54:20 1998  Owen Taylor  <otaylor@gtk.org>
6325
6326         * configure.in: x_libs=, not $x_libs=. Enough said.
6327           (Case only hit for --disable-xshm)
6328         
6329 Mon May 25 12:08:14 1998  Owen Taylor  <otaylor@gtk.org>
6330
6331         * configure.in (LDFLAGS): Add to $CFLAGS and $LDFLAGS
6332           when testing for X libraries, don't replace them. Because
6333           the user might have specified the path to the X libraries
6334           themself before running configure.
6335
6336         * examples/**.c: Changed all gpointer * to gpointer
6337         
6338 1998-06-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
6339
6340         * gtk/gtkhandlebox.h (struct _GtkHandleBox): Removed the
6341         fleur_cursor field.  Now the cursor is created/destroyed on demand
6342         by the routines that need it.
6343
6344         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): 
6345         (gtk_handle_box_motion): The fleur cursor is created and destroyed
6346         only when needed.
6347
6348 Tue Jun  9 09:57:09 1998  Tim Janik  <timj@gtk.org>
6349
6350         * gtk/gtktypeutils.h: 
6351         * gtk/gtktypeutils.c: renamed the newly created gtk_enum_get_values and
6352         gtk_enum_set_values to gtk_type_enum_get_values and
6353         gtk_type_enum_set_values respectively, since they are actually type
6354         system features.
6355
6356         * gtk/gtktypebuiltins_evals.c: oops, screwed the NULL termination with
6357         my last commit. ;)
6358
6359 Tue Jun  9 01:57:23 1998  Tim Janik  <timj@gtk.org>
6360
6361         * gtk/gtkselection.h: 
6362         * gtk/gtkselection.c: new functions gtk_selection_data_copy and
6363         gtk_selection_data_free.
6364
6365         * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call
6366         for "selection_received", which was completely bogus.
6367         * other fixups to gtk_signal_new() calls all over the place.
6368
6369         * gtk/gtktypebuiltins.h: types as variables (formerly macros).
6370         * gtk/gtktypebuiltins_vars.c: type variable implementations.
6371         * gtk/gtktypebuiltins_ids.c: array entries for builtin type
6372         declarations.
6373         * gtk/gtktypebuiltins_evals.c: enum value arrays.
6374         * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build
6375         gtk.defs.
6376         * gtk/gtk.defs: generated file with scheme syntax for type definitions
6377         of gtk and gdk structures and enums.
6378         * gtk/gtktypeutils.h: 
6379         * gtk/gtktypeutils.c: reworked type ids, so they are variables not
6380         macros anymore (this fixes binary incompatibility with new enum
6381         definitions).
6382
6383         * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible
6384         key bindings for this widget.
6385         * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class'
6386         handler.
6387
6388         * gtk/gtkobject.h:
6389         * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse()
6390         again. new functions gtk_object_class_user_signal_new () and
6391         gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType
6392         flag on the signal creation.
6393
6394 Mon Jun  8 20:52:21 1998  Tim Janik  <timj@gtk.org>
6395
6396         * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
6397
6398 Mon Jun  8 02:52:37 1998  Tim Janik  <timj@gtk.org>
6399
6400         * gdk/gdkprivate.h: 
6401         * gdk/gdktypes.h: 
6402         * gtk/gtkprivate.h: 
6403         * gtk/gtkwidget.h: 
6404         * gtk/gtkobject.h: wrapped enum definitions with glib macros.
6405
6406         * reworked enum value array generation code. gtk.defs is a generated
6407         file now.
6408
6409 Sun Jun  7 14:34:31 1998  Tim Janik  <timj@gtk.org>
6410
6411         * gtk/gtkitemfactory.c (gtk_item_factory_create_menu_entries): feature
6412         check menu items in the compatibility code (this required me to remove
6413         the "<check>" part from the menu item name, grrr).
6414
6415 1998-06-07  Marius Vollmer  <mvo@zagadka.ping.de>
6416
6417         * gdk/gdk.h (gdk_color_copy, gdk_color_free): New prototypes.
6418         * gdk/gdk.c (gdk_color_copy, gdk_color_free): New functions.
6419         
6420 Sun Jun  7 10:53:02 1998  Tim Janik  <timj@gtk.org>
6421
6422         * gtk/gtkitemfactory.h: 
6423         * gtk/gtkitemfactory.c: further additions to fit the gimp's code.
6424         additions to the dumping code to feature GtkPatternSpec.
6425         even found a bug to fix in the original code ;)
6426         
6427 Sun Jun  7 09:36:04 1998  Tim Janik  <timj@gtk.org>
6428
6429         * gtk/gtkitemfactory.c: support different types of callbacks, to
6430         maintain existing code.
6431
6432 Sat Jun  6 06:01:24 1998  Tim Janik  <timj@gtk.org>
6433
6434         * gtk/gtksignal.c (gtk_signal_emitv): fixed an assertment.
6435
6436         * gtk/makeenums.awk: a script to generate the GtkEnumValue arrays from,
6437         this should eventually be done by gentypeinfo.el somewhen.
6438         * gtk/gtkenumvalues.c: new generated file to hold GtkEnumValue arrays.
6439
6440         * gtk/gtktypeutils.h: new function gtk_enum_values() to retrive all the
6441         enum values of an enum type.
6442
6443         * gtk/gtk.defs:
6444         * gtk/gtkcurve.h: 
6445         * gtk/gtkobject.h: 
6446         * gtk/gtkprivate.h: 
6447         * gtk/gtkwidget.h:
6448         * gtk/gtkenums.h: 
6449         brought enum/flags definitions in sync, added a few more enum
6450         definitions for bindings and pattern matching.
6451
6452         * some more macro and GtkType fixups in various places.
6453
6454         * gdk/gdktypes.h (enum): added a new value GDK_AFTER_MASK, which is used
6455         as a key-release modifier for the binding system.
6456
6457 Fri Jun  5 06:06:06 1998  Tim Janik  <timj@gtk.org>
6458
6459         * gtk/gtkmenu.h (struct _GtkMenu): removed GList*children, since it
6460         was a stale list pointer that is already present in GtkMenuShell.
6461
6462         * gtk/gtkmenushell.h (struct _GtkMenuShellClass): added a signal
6463         GtkMenuShell::selection_done which is emitted after the menu shell
6464         poped down again and all possible menu items have been activated.
6465
6466 Thu Jun  4 02:20:42 1998  Tim Janik  <timj@gtk.org>
6467
6468         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): flush the x-queue
6469         before activation of the menuitem, so the menu is actually taken off the
6470         screen prior to any menu item activation.
6471
6472         * gtk/gtkctree.c (gtk_ctree_get_row_data): allow function invokation
6473         for NULL nodes.
6474
6475         * gtk/gtkwidget.h:
6476         * gtk/gtkwidget.c: new function gtk_widget_stop_accelerator to stop
6477         the emission of the "add-accelerator" signal on a widget. this is
6478         usefull to prevent accelerator installation on certain widgets.
6479
6480         * gtk/gtknotebook.c (gtk_notebook_menu_item_create): keep the menu
6481         labels left justified, by setting their alignment. stop accelerator
6482         installation for the menu items, since we use dynamic menus.
6483
6484 Wed Jun  3 06:41:22 1998  Tim Janik  <timj@gtk.org>
6485
6486         * gtk/gtkmenufactory.c: adaptions to use the new accel groups. people
6487         should *really* use GtkItemFactory. this is only for preserving source
6488         compatibility where possible, use of GtkMenuFactory is deprecated as of
6489         now.
6490
6491         * gtk/gtkobject.h (gtk_object_class_add_user_signal): new function
6492         to create user signals of type GTK_RUN_NO_RECURSE. don't know why i
6493         missed this possibility when i added gtk_object_class_add_user_signal
6494         in late january.
6495
6496         * gtk/gtkmain.c (gtk_init): ignore subsequent function calls.
6497
6498 Sun May 31 07:31:09 1998  Tim Janik  <timj@gtk.org>
6499
6500         * gtk/gtkaccelgroup.h: 
6501         * gtk/gtkaccelgroup.c: new implementation of the accelerator concept.
6502
6503         * gtk/gtkaccellabel.h: 
6504         * gtk/gtkaccellabel.c: new widget derived from GtkLabel whitch features
6505         display of the accelerators associated with a certain widget.
6506
6507         * gtk/gtkitemfactory.h: 
6508         * gtk/gtkitemfactory.c: new widget, item factory with automatic rc
6509         parsing and accelerator handling.
6510
6511         * gtk/gtkmenu.c (gtk_menu_reposition): new function to care for
6512         positioning a menu.
6513         (gtk_menu_map): removed the allocation code.
6514         (gtk_menu_size_allocate): care for redrawing of children and resize
6515         our widget->window correctly.
6516         (gtk_menu_key_press): feature the new accelerator groups.
6517
6518         * gtk/gtkmenuitem.c (gtk_menu_item_size_allocate): reposition the
6519         submenu if neccessary.
6520
6521         * gtk/gtkmenuitem.c:
6522         * gtk/gtkcheckmenuitem.c:
6523         * gtk/gtkradiomenuitem.c: use GtkAccelLabel in the *_new_with_label()
6524         function variants.
6525
6526         * gdk/gdk.c:
6527         (gdk_keyval_from_name): 
6528         (gdk_keyval_name): new functions for keyval<->key-name associations.
6529         (gdk_keyval_to_upper): 
6530         (gdk_keyval_to_lower): 
6531         (gdk_keyval_is_upper): 
6532         (gdk_keyval_is_lower): new functions to check/translate keyvalues with
6533         regards to their cases.
6534
6535 Wed May 27 00:48:10 1998  Tim Janik  <timj@gtk.org>
6536
6537         * gtk/gtkwidget.c (gtk_widget_class_path): new function to calculate a
6538         widget's class path.
6539         (gtk_widget_path): new function to calculate a widget's name path.
6540
6541         * gtk/gtkrc.c: newly introduced GtkPatternSpec structures to speed up
6542         pattern matching, features reversed pattern matches.
6543
6544 Thu Jun  4 12:12:11 BST 1998  Tony Gale  <gale@gtk.org>
6545
6546         * examples/extract.sh, examples/extract.awk:
6547           New files to automagically extract code examples from the
6548           tutorial.
6549
6550 Tue Jun  2 20:04:45 1998  Lars Hamann  <lars@gtk.org>
6551
6552         * gtk/gtknotebook.c (gtk_notebook_page_select) (gtk_notebook_focus)
6553         * gtk/gtkcontainer.c (gtk_container_focus_move):
6554         reversed test sequence for GTK_WIDGET_CAN_FOCUS and GTK_IS_CONTAINER
6555
6556 Tue Jun  2 13:04:06 BST 1998  Tony Gale  <gale@gtk.org>
6557
6558         * docs/gtk_tut.sgml: minor changes to support auto
6559           extraction of example code
6560
6561 Mon Jun  1 12:47:56 BST 1998  Tony Gale  <gale@gtk.org>
6562
6563         * docs/gtk_tut_it.sgml: Update of Italian Tutorial
6564           to Tutorial of 24th May, from Daniele Canazza <dcanazz@tin.it>
6565
6566 Fri May 29 13:53:57 BST 1998  Tony Gale  <gale@gtk.org>
6567
6568         * docs/gtk_tut.sgml:
6569           - new section on Events
6570           - change all delete_event callbacks to include
6571             a GdkEvent parameter
6572           - clean up the formatting
6573
6574         * examples - helloworld.c, helloworld2.c, notebook.c,
6575           packbox.c, pixmap.c, progressbar.c, radiobuttons.c,
6576           rulers.c, table.c, wheelbarrow.c: change all delete_event
6577            callbacks to include a GdkEvent parameter.
6578
6579 1998-05-26  Federico Mena Quintero  <federico@nuclecu.unam.mx>
6580
6581         * gdk/gdktypes.h (GdkCrossingMode): New enumeration for the "mode"
6582         field of crossing events.
6583         (struct _GdkEventCrossing): Added the following fields: time, x,
6584         y, x_root, y_root, mode, focus, state.
6585
6586         * gdk/gdk.c (gdk_event_translate): Fill in the new fields of the
6587         crossing event structure.
6588
6589         * gtk/gtkfeatures.h (GDK_HAVE_FULL_CROSSING_EVENT): Annotate
6590         changes to the crossing event structure.
6591
6592 Tue May 26 15:51:28 1998  Radek Doulik  <gis@academy.cas.cz>
6593
6594         * gdk/gdk.c: include gdkx.h always (for GDK_ROOT_WINDOW)
6595
6596 Sun May 24 12:11:38 BST 1998  Tony Gale  <gale@gtk.org>
6597
6598         * docs/gtk_tut.sgml:
6599            - GtkTooltips, update to current API
6600            - change all 'gpointer *data' to 'gpointer data'
6601            - other minor changes
6602
6603 Sat May 23 21:54:05 1998  Owen Taylor  <otaylor@gtk.org>
6604
6605         * configure.in (LDFLAGS): Bomb out with a moderately
6606           helpful message if detection of X libraries fails.
6607
6608 Sat May 23 18:57:06 1998  Owen Taylor  <otaylor@gtk.org>
6609
6610   [ Combination of:
6611      gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>)
6612      gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ]
6613
6614         * gdk/gdk.h gdk/gdkcc.c gdk/gdkfont.c gtk/gtkmain.c
6615           gtk/gtksignal.c gtk/gtktext.c: 
6616
6617           Fixups for warnings from adding const to type of GHashFunc,
6618           GCompareFunc
6619         
6620         * gtk/gtkcombo.c (gtk_combo_entry_key_press): Minor style/
6621           ansi-warnings fixups.
6622
6623 Sat May 23 17:48:58 1998  Owen Taylor  <otaylor@gtk.org>
6624
6625         * gtk/gtkeventbox.c (gtk_event_box_size_allocate): 
6626         Locate child at (border_width,border_width), not
6627         (2*border_width,2*border_width). [ The border is _outside_
6628         widget->window ]
6629         
6630         * gdk/gdk.[ch]: added gdk_screen_width_mm/gdk_screen_height_mm
6631           functions. [From: Alexander Larsson <alla@lysator.liu.se> ]
6632
6633 1998-05-22  Miguel de Icaza  <miguel@nuclecu.unam.mx>
6634
6635         * gtk/gtkfeatures.h.in: Define GTK_HAVE_RC_SET_IMAGE_LOADER, to be
6636         used in gnome-libs
6637
6638 1998-05-22    <sopwith@redhat.com>
6639
6640         * gtk/gtkeventbox.c: Pass size_allocate on to the child
6641         regardless of whether it is visible or not. Also
6642         locate child at (border_width,border_width), not (0,0)
6643
6644 Fri May 22 03:02:40 1998  Owen Taylor  <otaylor@gtk.org>
6645
6646         * gtk/gtkhandlebox.c: Added style_set handler.
6647
6648 Fri May 22 02:55:57 1998  Owen Taylor  <otaylor@gtk.org>
6649  [ From: Chris Lahey  <clahey@umich.edu> ]
6650         
6651         * gtk/gtkeditable.c, gtk/gtkeditable.h,
6652           gtk/gtktext.c, gtk/gtkentry.c: Added get_position,
6653           and set_position functions to get and set the cursor position.
6654
6655         * gtk/gtkeditable.c: Restored "insert_text" and "delete_text" to
6656           signal status. Make GtkText do user-controlled insertion
6657           and deletion through the Editable widget so that these
6658           signals are properly emitted.
6659
6660         * gtk/gtkentry.c: Changed gtk_entry_set_visibility to 
6661           display asterisks instead of empty space when visible = FALSE)
6662
6663 Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
6664
6665         * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
6666         signal.
6667
6668 1998-05-21    <sopwith@redhat.com>
6669
6670         * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a
6671         custom routine for loading images specified in gtkrc's.
6672
6673 Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
6674
6675         * configure.in: Use pthread_attr_init() as a test function,
6676         since most of the rest of -lpthread is macros on DU4.
6677
6678 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
6679
6680         * gtk/gtkcombo.c: implemented completion in the entry.
6681
6682 1998-05-18    <sopwith@moebuis.labs.redhat.com>
6683
6684         * gtk/gtk{debug.h,signal.c,main.c}: Allow GTK_DEBUG=signals
6685
6686 Mon May 18 04:01:41 1998  Tim Janik  <timj@gtk.org>
6687
6688         * gtk/gtkwidget.c (gtk_widget_class_init): changed "proximity-in-event",
6689         "drop-data-available-event", "drop-enter-event" and "drop-leave-event"
6690         to be of runtype GTK_RUN_LAST.
6691
6692         * gtk/gtkcontainer.c (gtk_container_class_init): likewise for
6693         "need-resize".
6694
6695         * gtk/gtktipsquery.c (gtk_tips_query_class_init): likewise for
6696         "widget-selected".
6697
6698 Sat May 16 09:04:32 1998  Tim Janik  <timj@gtk.org>
6699
6700         * gtk/gtkfilesel.c (gtk_file_selection_key_press): g_strdup() the
6701         text retrived from GtkEntry. only intercept the Tab key if there
6702         was some text to complete.
6703
6704 Fri May 15 21:16:54 1998  Owen Taylor  <otaylor@gtk.org>
6705
6706         Basic thread-awareness:
6707
6708         * acconfig.h configure.in: New option --with-threads=[yes/posix/no]
6709
6710         * gdk/Makefile.am gdk/gdkthreads.c: Added new functions 
6711         gdk_threads_[init/enter/leave] for applications, plus
6712         gdk_threads_wake to wake the mainloop thread out of
6713         the select().
6714
6715         * gtk/Makefile.am: gtk/testthreads.c: Test program for threads
6716
6717 Fri May 15 12:08:48 1998  Owen Taylor  <otaylor@gtk.org>
6718
6719         * gtk/testgtk.c (list_clear): Account for the fact
6720         that gtk_list_clear_items is not inclusive. (Clears
6721         [start, end))
6722
6723 Fri May 15 12:31:27 1998  rodo  <doulik@karlin.mff.cuni.cz>
6724
6725         * gdk/gdk.c: include gdkkeysyms.h always
6726         
6727
6728 Fri May 15 09:44:10 1998  Tim Janik  <timj@gtk.org>
6729
6730         * gtk/gtkwidget.h (struct _GtkWidgetClass): corrected returntype of
6731         the visibility_notify_event method and changed method order.
6732
6733 1998-05-14    <sopwith@moebuis.labs.redhat.com>
6734
6735         * gtk/gtkwidget.[ch] Added visibility_notify_event to GtkWidget
6736
6737 Thu May 14 03:04:43 1998  Tim Janik  <timj@gtk.org>
6738
6739         * gtk/gtk.defs: added GtkButtonBoxStyle and GtkOrientation definitions
6740         from Olli Helenius <ollhel@batman.jytol.fi>.
6741
6742         * gtk/gtktypeutils.c (gtk_type_free): new function to take care about
6743         freeing types.
6744         (gtk_type_set_chunk_alloc): new function to allow allocation of new
6745         types from a mem_chunk of certain size (n_chunks==0 indicates allocation
6746         thorugh g_malloc).
6747
6748         * gtk/gtkobject.c (gtk_object_finalize): free an object through
6749         gtk_type_free().
6750
6751         * gtk/gtkbutton.c (gtk_button_get_type): set chunk preallocation for
6752         GtkButtons to 16.
6753         * gtk/gtkmenuitem.c (gtk_menu_item_get_type): likewise (16).
6754         * gtk/gtklabel.c (gtk_label_get_type): likewise (32).
6755
6756 Wed May 13 00:53:52 1998  Owen Taylor  <otaylor@gtk.org>
6757
6758         * gtk/gtktypeutils.c gtk/gtksignal.c gdk/gdkdnd.c: A few more 
6759           GPOINTER_TO_UINT fixes.
6760
6761         * gtk/gtksignal.c: Include <string.h> for memset.
6762
6763 Tue May 12 23:10:53 1998  Owen Taylor  <otaylor@gtk.org>
6764         (Maximilian Bisani <bisani@kawo2.rwth-aachen.de>: gtk-bisani-980320-0)
6765
6766         * gtk/gtkvruler.c gtk/gtkhruler.c gtk/gtkruler.h: 
6767         Cleanups, comments and the ability to have rulers with 
6768         a reversed direction.
6769
6770 Tue May 12 19:37:55 1998  Owen Taylor  <otaylor@gtk.org>
6771
6772         * gtk/gtkrc.c (gtk_rc_parse_file): Fixed up a stat()
6773         that Sopwith missed when changing stat => lstat.
6774
6775 Tue May 12 19:19:29 1998  Owen Taylor  <otaylor@gtk.org>
6776
6777         * gtk/gtkinputdialog.c gtk/gtkgamma.c gtk/gtkrc.c
6778           gtk/gtkcolorsel.c gtk/gtkclist.c gtk/testgtk.c: Use
6779         GPOINTER_TO_INT/GINT_TO_POINTER macros where appropriate.
6780
6781         * gdk/gdk.c: Print sizeof() results
6782         as g_print("%ld", (glong)sizeof(foo)), to deal with
6783         sizeof() being long on Alpha's.
6784
6785         * gtk/testgtk.c: include <string.h> for strlen
6786
6787 Tue May 12 16:56:35 1998  Owen Taylor  <otaylor@gtk.org>
6788         (James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
6789         
6790         * gtk/gtkbbox.h gtk/gtkcolorsel.h gtk/gtkvbbox.h:
6791         Changed #include "gtkfoo.h" to #include <gtk/gtkfoo.h>
6792
6793         * gtk/gtkwindow.[ch]: Added const to gtk_window_set_wmclass
6794
6795 Tue May 12 15:16:10 1998  Owen Taylor  <otaylor@gtk.org>
6796         (From: Christopher James Lahey <clahey@umich.edu>)
6797         
6798         * gtk/gtkbutton.[ch] gtk/gtkenums.h gtk/gtktoolbar.[ch]
6799           gtk/testgtk.c:
6800
6801         Added 'relief' for buttons - they can be either GTK_RELIEF_NORMAL
6802         (old style), or GTK_RELIEF_NONE - no relief in the NORMAL
6803         state. Added gtk_toolbar_{set,get}_button_relief, which set/get
6804         the default relief for the toolbars buttons. Added an
6805         toggle for the toolbar test in testgtk.c.
6806
6807 Tue May 12 00:24:59 1998  Owen Taylor  <otaylor@gtk.org>
6808
6809         * docs/gtk-config.1: Rewritten and hopefully improved.
6810
6811 Mon May 11 20:26:39 PDT 1998 Manish Singh <yosh@gimp.org>
6812
6813         * docs/Makefile.am
6814         * docs/gtk-config.1: added man page for gtk-config by Ben Gertzfield
6815
6816 1998-05-11  Federico Mena Quintero  <federico@nuclecu.unam.mx>
6817
6818         * gtk/gtkpreview.c (gtk_preview_realize): Create the window using
6819         GtkPreview's visual and colormap, otherwise things can BadMatch.
6820
6821         * gtk/testgtk.c (create_color_preview): 
6822         (create_gray_preview): Removed pushing/popping of visual/colormap
6823         now that GtkPreview does things correctly.
6824
6825         * gtk/gtkcolorsel.c (gtk_color_selection_draw_wheel_frame): 
6826         (gtk_color_selection_draw_wheel): Pick the style from the correct
6827         place (the colorsel->wheel_area widget) so that the GCs will match
6828         with where we are going to paint to.
6829
6830         * gtk/testgtk.c (create_color_selection): Removed pushing/popping
6831         of visual/colormap now that GtkColorSelection does things the
6832         right way.
6833
6834 Mon May 11 21:04:51 1998  Owen Taylor  <otaylor@gtk.org>
6835
6836         * gtk/gtkwindow.c (gtk_real_window_move_resize): Use the
6837         previously unused window->need_resize flag to mark if a window's
6838         descendents changed size while the window was not visible. In this
6839         case, when the window becomes visible, we reallocate everything,
6840         since we didn't keep track of what actually changed.
6841
6842         (Fixes bug where changing the popdown strings of a
6843         combo to something of the same length caused them to
6844         blank out, as reported by Todd Dukes <tdukes@ibmoto.com>)
6845
6846 Tue May 12 02:31:57 1998  Tim Janik  <timj@gtk.org>
6847
6848         [security audit by Alan Cox]
6849
6850         * gtk/gtkobject.c (gtk_object_get_arg_type): check for arg_name to not
6851         exceed maximum assumed size.
6852
6853         * gtk/gtkmenufactory.c (gtk_menu_factory_create): check that `path' does
6854         not exceed maximum assumed size.
6855         (gtk_menu_factory_remove): likewise.
6856         (gtk_menu_factory_find_recurse): likewise.
6857
6858 Mon May 11 23:53:38 1998  Tim Janik  <timj@gtk.org>
6859
6860         * gtk/gtkwidget.c (gtk_widget_queue_resize): queue the idle_sizer with
6861         GTK_PRIORITY_INTERNAL - 1, so widgets get first resized and then
6862         redrawn if that is still neccessary. don't allow queueing of already
6863         destructed objects.
6864         (gtk_widget_idle_sizer): proccess the resize queue in a save manner, so
6865         widgets which are in the queue can be destroyed safely, handle
6866         requeueing properly.
6867         (gtk_widget_idle_draw): proccess the redraw queue in a save manner, so
6868         widgets which are in the queue can be destroyed/unrealized safely.
6869
6870 Mon May 11 17:54:44 BST 1998 Tony Gale  <gale@gtk.org>
6871
6872         * gtkfaq.sgml: add question on multi-threading,
6873           minor URL cleanups.
6874
6875 Mon May 11 09:56:45 1998  Tim Janik  <timj@gtk.org>
6876
6877         * configure.in (cflags_set): preserve automake CFLAGS.
6878
6879         * Makefile.am: fully rename the created libraries to libgtk-1.1.la
6880         and libgdk-1.1.la. this means we need to change certain portions of
6881         the Makefile.am on major/minor version bumps.
6882
6883         * ltmain.sh: the -release option is not required anymore.
6884         
6885         * gtk/gtkobject.h (gtk_trace_referencing): compile time check the type
6886         of the first argument to be of type GtkObject. unconditionally compile
6887         this function. removed __GNUC__ dependancy of the gtk_object_ref and
6888         gtk_object_unref macro wrappers for this function.
6889
6890 Mon May 11 02:31:19 1998  Tim Janik  <timj@gtk.org>
6891
6892         * gtk/gtkobject.h:
6893         * gtk/gtkobject.c:
6894         (gtk_object_data_try_key):
6895         (gtk_object_data_force_id): these are now macros substituting the old
6896         functions. we just use the corresponding g_dataset_* functions for
6897         key->id associations. (this is to assure unique key<->id associations).
6898
6899 1998-05-10  Stefan Jeske  <stefan@gtk.org>
6900
6901         * gtk/gtkctree.c (gtk_ctree_is_visible): Changed return value
6902         to gboolean.
6903
6904         * docs/gtk.texi (GtkCTree): Started documentation of GtkCTree.
6905
6906 Sat May  9 20:11:20 1998  Owen Taylor  <otaylor@gtk.org>
6907
6908         * configure.in (LIBS): Try to figure out if this
6909         is Digital Unix and we need -std1 to get the
6910         right prototypes.
6911
6912 Sat May  9 16:30:33 BST 1998 Tony Gale  <gale@gtk.org>
6913
6914         * docs/gtk_tut_it.sgml: update of Italian tutorial
6915           translation from Daniele Canazza <dcanazz@tin.it>
6916
6917 Sat May  9 02:34:41 1998  Tim Janik  <timj@gtk.org>
6918
6919         * gtk/gtkfeatures.h.in: new file used as template for
6920         * gtk/gtkfeatures.h: new file to define macros indicating newly
6921         introduced features, such as GTK_HAVE_SIGNAL_INIT.
6922
6923         * gtk/gtksignal.c:
6924         (gtk_signal_emitv_by_name):
6925         (gtk_signal_emitv):
6926         new functions to emit signals with an already provided parameter set.
6927         (provided by Kenneth Albanowski <kjahds@kjahds.com>).
6928         (gtk_signal_real_emit): prototype changes, so this functions always
6929         gets its parameters and signal structure as arguments.
6930         (gtk_signal_emit): provide the signal structure and parameter list for
6931         gtk_signal_real_emit.
6932         (gtk_signal_emit_by_name): likewise.
6933
6934 Sat May  9 00:03:12 1998  Tim Janik  <timj@gtk.org>
6935
6936         * gtk/gtksignal.c (gtk_signal_handler_unref): reflect the presence of
6937         signal connections through unsetting GTK_CONNECTED.
6938         (gtk_signal_handler_insert): reflect the presence of signal connections
6939         through setting GTK_CONNECTED.
6940         (gtk_signal_real_emit): only check for handler emissions if the object
6941         has the GTK_CONNECTED flag set.
6942         (gtk_signal_handler_pending): don't check for pending handlers if the
6943         GTK_CONNECTED flag is not set for this object.
6944
6945         * gtk/gtkobject.h (enum): new flag GTK_CONNECTED to indicate whether
6946         a GtkObject has signal handler connections.
6947
6948         * gtk/gtkobject.c (gtk_object_real_destroy): only if GTK_CONNECTED is
6949         set for this object call gtk_signal_handlers_destroy().
6950         
6951         * gtk/gtktypeutils.h (GTK_TYPE_IS_A): deprecated macro, since it caused
6952         multiple processing of macro args.
6953
6954         * gtk/gtktypeutils.c:
6955         * gtk/gtkobject.c:
6956         * gtk/gtkwidget.c:
6957         * gtk/gtksignal.c: reverted GTK_TYPE_IS_A back to gtk_type_is_a.
6958
6959 Fri May  8 21:31:50 1998  Owen Taylor  <otaylor@gtk.org>
6960
6961         * gtk/gtkwidget.c (gtk_widget_queue_draw): Free the
6962         draw-queue when we are done. 
6963
6964         (gtk_widget_queue_draw/_queu_resize): Always return
6965         FALSE and avoid having two idles at the same time.
6966         
6967 Fri May  8 21:04:00 1998  Owen Taylor  <otaylor@gtk.org>
6968
6969         * gtk/gtktext.c: Various fixes to make sure cache
6970         lines are freed if line_start_cache doesn't point to the
6971         beginning of the cache.
6972
6973 Thu May  7 09:44:22 1998  Owen Taylor  <otaylor@gtk.org>
6974
6975         * style_set improvements for GtkText and GtkEntry
6976
6977 Thu May  7 19:03:50 1998  Tim Janik  <timj@gtk.org>
6978
6979         * gtk/gtktypeutils.c (gtk_type_unique): asure that the type system has
6980         been initialized.
6981
6982 Thu May  7 12:52:45 1998  Tim Janik  <timj@gtk.org>
6983
6984         * gtk/gtkobject.c (gtk_object_set_data_by_id_full): allocate object
6985         data chunks through a global object data structure list. unlink
6986         object data before invoking its destroy function.
6987         (gtk_object_finalize): slight modification to allow usage of object
6988         data during object finalization.
6989
6990 Thu May  7 10:29:24 1998  Tim Janik  <timj@gtk.org>
6991
6992         * gtk/gtksignal.c (gtk_signal_newv): suport middle dashes ('-') in
6993         signal names, e.g. "signal-name" is now an alias for "signal_name".
6994         (gtk_signal_handler_new): allocate handlers through a global handler
6995         structure list, that's faster than memchunks.
6996         (gtk_emission_new): allocate emissions through a global emission
6997         structure list, that's faster than memchunks.
6998
6999 Thu May  7 05:14:19 1998  Tim Janik  <timj@gtk.org>
7000
7001         * gtk-config.in (--libs): postfix -lg* libraries with LT_RELEASE.
7002
7003         * ltmain.sh: added a new commandline flag -postfix similar to -release,
7004         but will immediately change the library name.
7005
7006         * gdk/Makefile.am:
7007         * gtk/Makefile.am: specify -postfix and -version-info
7008
7009         * configure.in: version bump to 1.1.0. added GTK_INTERFACE_AGE and
7010         GTK_BINARY_AGE. calculate LT_* variables for libtool.
7011
7012 1998-05-06  Federico Mena Quintero  <federico@nuclecu.unam.mx>
7013
7014         * gtk/gtkclist.c (draw_row): Fixed incorrect painting of row
7015         background (fg_set -> bg_set confusion).
7016
7017 1998-05-06  Stefan Jeske  <stefan@gtk.org>
7018
7019         * gtk/testgtk.c (unselect_all): Removed code that caused an
7020         endless loop.
7021
7022 Wed May  6 02:16:34 1998  Tim Janik  <timj@gtk.org>
7023
7024         * gtk/gtksignal.c: reimplemented the signal storage system to use a
7025         linear array rather than a hash table.
7026         be carefull *not* to keep any GtkSignal pointers across invokations
7027         of gtk_signal_next_and_invalidate() and therefore gtk_signal_new[v]().
7028         general code cleanups, made all allocations through memchunks.
7029         (gtk_signal_lookup): we now do the lookup of signals through a key_id
7030         for the signal names to avoid multiple hashing of the signal name on
7031         lookups for the several hirarchy levels of an object.
7032
7033 Tue May  5 19:49:27 1998  Owen Taylor  <otaylor@gtk.org>
7034
7035         * gdk/gdkpixmap.c: Patches from Gordon Matzigkeit
7036         to speed things up and remove code duplication.
7037
7038         Reintegrated buffer overflow patches, and added
7039         some extra paranoia.
7040         
7041 Tue May  5 17:04:14 1998  Owen Taylor  <otaylor@gtk.org>
7042
7043         * gdk/gdk.c (gdk_event_translate): A guint * was
7044         being passed where X expected a Keysym *, and
7045         keysyms are long's on Alpha Linux. This was causing
7046         segfaults in Xlib, apparently because of alignment.
7047         (Bug located by Juergen Haas <haas@forwiss.uni-passau.de>)
7048         
7049 Tue May  5 19:11:27 1998  Owen Taylor  <otaylor@gtk.org>
7050
7051         * gtk/gtkdrawingarea.c (gtk_drawing_area_realize): Always
7052         set GDK_EXPOSURE_MASK for DrawingAreas
7053
7054 Tue May  5 14:32:37 1998  Owen Taylor  <otaylor@gtk.org>
7055
7056         * gtk/gtkwidget.[ch]: removed gtk_widge_propagate_default_style
7057         (superceded by RC file reparsing capabilities)
7058
7059         * gtk/gtkwindow.c: Add handling for _GDK_READ_RFCILES client
7060         events. (Shouldn't be sent to the InputOnly leader, which
7061         it is now by gdk_event_send_clientmessage_toall
7062
7063         * gtk/testgtk.c: Added extra button to rcfiles test
7064         to send out _GDK_READ_RCFILES events.
7065         
7066 Tue May  5 11:03:00 1998  Owen Taylor  <otaylor@gtk.org>
7067
7068         * gtk/gtkselection.c (gtk_selection_clear): Fixed
7069         reversed conditionals that caused segfault on some
7070         platforms.
7071
7072 Tue May  5 00:44:47 1998  Owen Taylor  <otaylor@gtk.org>
7073
7074         * gtk/gtkcontainer.c (gtk_container_set_focus_[hv]adjustment):
7075         cast to GTK_OBJECT for gtk_object_ref.
7076
7077 Tue May  5 15:33:27 1998  Tim Janik  <timj@gtk.org>
7078
7079         * gtk/gtkmain.c (gtk_init): added gtk_signal_init() to avoid repeatedly
7080         checking for signal initialization in gtksignal.c.
7081
7082         * gtk/gtktypeutils.c (TYPE_NODES_BLOCK_SIZE): reseted this to 200 after
7083         a long debugging period ;)
7084
7085 1998-05-05  Stefan Jeske  <stefan@gtk.org>
7086
7087         * gdk/gdkgc.c gdk/gdk.h gtk/gtkctree.c (gdk_gc_set_dashes):
7088         New function to wrap XSetDashes; modified gtkctree.c to use it.
7089
7090 1998-05-04  Federico Mena Quintero  <federico@nuclecu.unam.mx>
7091
7092         * configure.in: Added $x_libs in the other_libraries field in the
7093         check for XShapeCombineMask.
7094
7095 Mon May  4 00:30:11 1998  Tim Janik  <timj@gtk.org>
7096
7097         * gtk/gtktypeutils.h (GTK_TYPE_IS_A): new macro to speedup
7098         gtk_type_is_a().
7099         * gtk/gtktypeutils.c: reimplemented the type storage system to use a
7100         linear array rather than a hash table. it actually speeded up testgtk
7101         for a *considerable* amount. be carefull *not* to keep any GtkTypeNode
7102         pointers across invokations of gtk_type_node_next_and_invalidate() and
7103         therefore gtk_type_unique()!
7104
7105         * gtk/gtkobject.h (GTK_IS_OBJECT_CLASS): new macro to test for the
7106         inheritance of a class pointer.
7107         (GTK_OBJECT): modifications for speedups.
7108         (GTK_IS_OBJECT): likewise.
7109         (GTK_OBJECT_CLASS): likewise.
7110         (suggested by owen).
7111
7112         * gtk/gtkcontainer.h (GTK_IS_CONTAINER_CLASS): new macro.
7113
7114         * gtk/gtkwidget.h (GTK_IS_WIDGET_CLASS): new macro.
7115
7116         * gtk/gtk.defs (GtkTooltips): define GtkTooltips as object not as boxed,
7117         since its derivation changed 4 month ago ;(. showed up with the unique
7118         type name checking code in gtk_type_unique().
7119
7120         * random guint->GtkType and macro fixups.
7121
7122 Sat May  2 23:14:34 1998  Owen Taylor  <otaylor@gtk.org>
7123
7124         * gtk/gtkcurve.c (gtk_curve_graph_events): Ignore
7125         Configure events that would result in a negative
7126         size.
7127
7128 Sun May  3 14:55:34 1998  Owen Taylor  <otaylor@gtk.org>
7129
7130         * docs/gtkfaq.sgml (CPPFLAGS): Added a FAQ entry about
7131         "glibconfig.h" and another about writing another IRC
7132         client.
7133
7134 Sat May  2 00:14:05 1998  Owen Taylor  <otaylor@gtk.org>
7135
7136         * gtk/gtkpreview.c (gtk_trim_cmap): Make sure the
7137         parameters to log are doubles. Digital Unix apparently
7138         is missing the argument in its prototype.
7139
7140 Sun May  3 19:04:46 1998  Owen Taylor  <otaylor@gtk.org>
7141
7142         * gtk/gtklabel.c (gtk_label_state_changed): Don't
7143         force a clear until the widget is actually on
7144         screen.
7145
7146 Sun May  3 21:32:35 1998  Owen Taylor  <otaylor@gtk.org>
7147
7148         * gdk/gdk.c (gdk_event_translate): Grab with OwnerEvents = False
7149         to make this consistent with the gtk-1-0 tree.
7150
7151 Sun May  3 13:38:22 1998  Owen Taylor  <otaylor@gtk.org>
7152
7153         * configure.in acheader.h gdk/gdkwindow.c 
7154         Check for Shape extension both on the client and server
7155         side. (And, more importantly, check for the shape extension
7156         so we may include -lXext even when compiling with --disable-xshm)
7157
7158         Don't set override_redirect on all shaped windows. It isn't
7159         necessary.
7160
7161         * gdk/gdkwindow.c: Set ->colormap to NULL for root 
7162         and foreign windows. Use this to check if we
7163         need to get the colormap from X.
7164
7165 Fri May  1 22:32:47 1998  Owen Taylor  <otaylor@gtk.org>
7166
7167         * gtk/gtkbutton.c (gtk_button_paint): Draw the areas
7168         between the default and the button always in GTK_STATE_NORMAL.
7169
7170         * gtk/gtkrange.c (gtk_range_style_set): Added a style_set
7171         callback.
7172
7173 Fri May  1 16:40:57 1998  Owen Taylor  <otaylor@gtk.org>
7174
7175         * gdk/gdkpixmap.c (gdk_pixmap_colormap_create_from_xpmp[_d]):
7176           Fix a buffer overflow on pixmaps that claim to have
7177           more than 31 characters per pixel.
7178
7179           (gdk_pixmap_read_string): Don't wrap around strings longer
7180           than half of address space ;-)
7181
7182         * gtk/gtk[vh]ruler.c gtk/gtkinputdialog.c: Expand some buffers
7183         that were used for printing integers.
7184
7185         * */* (almost):
7186
7187         Style: All 
7188           int foo () { ... }
7189         changed to
7190           int foo (void) { ... }
7191
7192         Even where there were proper prototypes elsewhere.
7193
7194         * gdk/gxid.c (handle_claim_device): Some extra checks.
7195         It isn't safe against being fed bad X id's, but at
7196         least it should be safe against deleting all your
7197         files.
7198
7199 Sun May  3 19:45:09 1998  Tim Janik  <timj@gtk.org>
7200
7201         * gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
7202         to set the adjustments value when there is no current emission.
7203         [ Removed by mutual agreement owt 5/3/1998 ]
7204
7205         * gtk/gtksignal.c: added new functions to retrive the number of
7206         existing emissions for a certain signal.
7207         (gtk_signal_n_emissions): new function.
7208         (gtk_signal_n_emissions_by_name): new function.
7209
7210 Sun May  3 16:55:43 1998  Tim Janik  <timj@gtk.org>
7211
7212         * gtk/gtkcontainer.c (gtk_container_set_focus_child): new function to
7213         set the current focus_child of a container, does proper referencing and
7214         adjusts the vadjustment/hadjustment associated with the focus widget.
7215
7216         * gtk/gtkwidget.c (gtk_widget_grab_focus): set the focused child on
7217         containers via gtk_container_set_focus_child.
7218
7219         * gtk/gtknotebook.c: modifications to use gtk_container_set_focus_child
7220         where appropriate.
7221
7222         * gtk/gtkcontainer.c (gtk_container_remove): removed unsetting of focus
7223         child since not every child removal goes through this function (this
7224         showed up after gtk_container_set_focus_child() started to reference the
7225         focus_child of a container).
7226
7227         * gtk/gtkwidget.c (gtk_widget_unparent): moved unsetting the focus_child
7228         of a container from gtk_container_remove into this place.
7229
7230 Sat May  2 22:33:45 1998  Tim Janik  <timj@gtk.org>
7231
7232         * gtk/gtksignal.c: added new functions to operate on intermediate
7233         function pointers. implemented incremental blocking.
7234         (gtk_signal_disconnect_by_func): new function.
7235         (gtk_signal_handler_block_by_func): new function.
7236         (gtk_signal_handler_unblock_by_func): new function
7237
7238 Fri May  1 22:45:55 1998  Owen Taylor  <otaylor@gtk.org>
7239
7240         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_allocate):
7241         Always show the scrollbars when the policy is
7242         GTK_POLICY_ALWAYS...
7243
7244 Sat May  2 20:19:03 1998  Tim Janik  <timj@gtk.org>
7245
7246         * gtk/gtkadjustment.c (gtk_adjustment_set_value): only emit
7247         "value_changed" if we really passed a new value.
7248         (gtk_adjustment_changed): new function to emit the "changed" signal.
7249         (gtk_adjustment_set_value): new function to emit the "value_changed"
7250         signal.
7251
7252 Fri May  1 12:28:35 1998  Owen Taylor  <otaylor@gtk.org>
7253
7254         * gtk/gtkcombo.c: Further changes to the way the window
7255         is popped up so that it will be compatible with 
7256         auto-scrolling in the future.
7257
7258 Fri May  1 20:25:29 1998  Tim Janik  <timj@gtk.org>
7259
7260         * gtk/gtkcombo.c (gtk_combo_popup_list): do not just return if
7261         the combo-list is empty since that will cause the combo to operate
7262         on a non existing GtkList window.
7263         (gtk_combo_get_pos): provide the combo list with a usfull default
7264         height if empty.
7265         (gtk_combo_popup_button_press): grab the focus.
7266         (gtk_combo_activate): grab the focus.
7267
7268 Fri May  1 12:06:43 1998  Owen Taylor  <otaylor@gtk.org>
7269
7270         * gtk/gtkwindow.[ch] (gtk_widget_reset_rc_styles): New
7271         function to reset the RC styles for a heirarchy
7272
7273         Clear the window background if necessary in
7274         gtk_window_style_set.
7275
7276         * gtk/gtkrc.[ch]: New function gtk_rc_reparse_all() which
7277         rereads all previously read RC files.
7278
7279         * gdk/gdkwindow.c gdk/gdk.h: New function gdk_window_get_toplevels().
7280         (Should it just be called gdk_get_toplevels?)
7281
7282         * gtk/testgtk.c: New test to reload RC files.
7283
7284 Fri May  1 13:57:36 1998  Tim Janik  <timj@gtk.org>
7285
7286         * gtk/gtkclist.h:
7287         * gtk/gtkclist.c: prefixed all clist flags with GTK_ to avoid name
7288         clashes. redefined GTK_CLIST_SET_FLAGS and GTK_CLIST_UNSET_FLAGS as
7289         GTK_CLIST_SET_FLAG and GTK_CLIST_UNSET_FLAG to automatically add
7290         the GTK_ prefix (this solution involved less changes in the
7291         gtkclist.c code). added a GTK_CLIST_CONSTRUCTED flag to substitute
7292         the mem_chunk==NULL test in gtk_clist_construct. merged in changes
7293         from lars & stefan to support the derivation of GtkCtree.
7294
7295         * gtkctree.h:
7296         * gtkctree.c:
7297         initial import of a tree widget derived from gtkclist, courtesy
7298         of Lars Hamann <lars@gtk.org> and Stefan Jeske <jeske@gtk.org>,
7299         it just damn rocks!
7300
7301 Fri May  1 10:05:44 1998  Tim Janik  <timj@gtk.org>
7302
7303         * gtk/gtklist.c (gtk_list_add): let gtk_list_append_items do the work
7304         for us.
7305         (gtk_list_insert_items):
7306         (gtk_list_remove_items_internal): 
7307         (gtk_list_clear_items): 
7308         remove a possible pointer grab, we might get thrown into a loop
7309         otherwise.
7310         (gtk_list_button_press): grab the pointer *before* selecting the child,
7311         because selection of items may cause the lists children to change,
7312         resulting in a grab release.
7313         (gtk_list_clear_items): use gtk_list_unselect_child() for unselection of
7314         children.
7315         (gtk_list_shutdown): remove all children from the list.
7316         (gtk_real_list_unselect_child): 
7317         (gtk_real_list_select_child): *always* put our internal structures into
7318         sane state *before* signal emisions (i.e. list->selection updates prior
7319         to gtk_list_item_[de]select() calls).
7320
7321         * gtk/gtkcombo.c (gtk_combo_init): adjust the scrollbar if the lists
7322         focused child walks out of the window.
7323         removed CAN_FOCUS for the combo arrow's button since it doesn't react
7324         to keyboard events ("clicked" connection is missing).
7325
7326 Fri May  1 00:42:25 1998  Owen Taylor  <otaylor@gtk.org>
7327
7328         * gdk/gdkwindow.c (gdk_window_get_colormap): Fix up
7329         getting colormap for FOREIGN windows to go along with
7330         Raster's fix for visuals.
7331
7332 Merges from gtk-1-0
7333 ===================
7334         
7335 Thu Apr 30 23:32:51 1998  Owen Taylor  <otaylor@gtk.org>
7336
7337         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_allocate):
7338         Check to catch the case when the viewport fits in either
7339         direction or both, instead of flip-flopping infinitely.
7340
7341         Only show/hide the scrollbars once at the end.
7342
7343 Thu Apr 30 21:56:07 1998  Owen Taylor  <otaylor@gtk.org>
7344
7345         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_foreach): 
7346         Include the scrollbars in the foreach call.
7347         (gtk-fortier-980405-0.patch; 
7348          Patrice Fortier <Patrice.Fortier@aquarel.fr>). 
7349
7350         The notebook widget
7351         really should also include its tabs, but that might cause
7352         problems for programs if they
7353
7354 Thu Apr 30 21:51:52 1998  Owen Taylor  <otaylor@gtk.org>
7355
7356         * gtk/gtkpixmap.c (gtk_pixmap_set): Only request a
7357         resize if the size actually changed. 
7358         (gtk-johannes-980414-0.patch ;  
7359          johannes@nada.kth.se (Johannes Keukelaar) )
7360
7361 Thu Apr 30 10:22:59 1998  Owen Taylor  <otaylor@gtk.org>
7362
7363         * glib/ltmain.sh glib/ltconfig glib/config.sub glib/config.guess:
7364           ltmain.sh ltconfig config.sub config.guess:
7365
7366         Reverted back to libtool-1.2 (plus minor patches) so as not to
7367         force the issue for everyone else.
7368
7369 Thu Apr 30 10:22:59 1998  Owen Taylor  <otaylor@gtk.org>
7370
7371         * glib/ltmain.sh glib/ltconfig glib/config.sub glib/config.guess:
7372         Updated to libtool 1.2a.
7373
7374         * gtk/gtkclist.c: Draw the in-between lines with style->base
7375         instead of style->white.
7376         
7377 Wed Apr 29 15:46:13 1998  Owen Taylor  <otaylor@gtk.org>
7378
7379         * gdk/gdkprivate.h gdk/gdkwindow.c gdk/gdkpixmap.c: 
7380         Cache the colormap and children of a window locally
7381         instead of fetching them from the server when needed.
7382         Huge performance difference for creating/destroying
7383         windows.
7384
7385         * gtk/gtkstyle.c: Find the depth from the cached
7386         visual, instead of asking the server.
7387
7388         * gtk.m4: Distribute the new version which tries to
7389         figure out what went wrong and give helpful error
7390         messages.
7391
7392         * ltmain.sh ltconfig config.sub config.sh: 
7393         Updated to libtool 1.2a
7394
7395         * gtk/gtktext.c: Fixed a bug where the drawn level
7396         was being messed up when the text was scrolled
7397         during a deletion.
7398         
7399 Thu Apr 30 02:42:11 PDT 1998 Manish Singh <yosh@gimp.org>
7400
7401         * gtk/gtkfilesel.c: don't die when naughty people remove parts of
7402         the filesystem under you (fix from Josh)
7403
7404 Thu Apr 30 09:49:14 1998  Tim Janik  <timj@gtk.org>
7405
7406         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_foreach): check
7407         if the viewport already exists before iterating over it, maybe we
7408         haven't been constructed yet.
7409
7410 Thu Apr 30 01:51:00 1998  Tim Janik  <timj@gtk.org>
7411
7412         * gtk/gtkbin.c (gtk_bin_add): made this function issue a warning if
7413         the GtkBin widget already has a child.
7414
7415         * gtk/gtkbox.c (gtk_box_pack_{start|end}):
7416         check that child->parent == NULL;
7417
7418 Tue Apr 28 22:13:54 1998  Owen Taylor  <otaylor@gtk.org>
7419
7420         * gtk/gtkselection.c (gtk_selection_clear): Only return
7421         FALSE when the clear event is been rejected, not when
7422         widget has already lost the selection. (Which should
7423         only happen when we are setting the selection to another
7424         widget ourself.)
7425         
7426 Fri Apr 24 19:07:32 1998  Owen Taylor  <otaylor@gtk.org>
7427
7428         * gtk/gtkfixed.c gtk/gtkpaned.c gtk/gtktable.c:
7429
7430         Removed the "check visibility after gtk_widget_unparent" bug 
7431         in hopefully the last three places.
7432
7433 Tue Apr 28 15:46:41 1998  Tim Janik  <timj@gtk.org>
7434
7435         * gtk/gtkrc.c (gtk_rc_parse_statement): allow the inclusion of other
7436         rc-files.
7437
7438 Mon Apr 27 15:11:52 1998  Tim Janik  <timj@gtk.org>
7439
7440         * gtk/gtkwidget.c (gtk_widget_grab_focus): only allow grabbing of focus
7441         for CAN_FOCUS widgets.
7442
7443         * gtk/testgtk.c (create_scrolled_windows): feature h/v focus
7444         adjustments for the table.
7445         (create_list): feature automatic adjustment of the scrolled window to
7446         always contain the focused child.
7447         (create_main_window): keep the focussed button always inside of the
7448         scrolled windoww.
7449
7450         * gtk/gtkcontainer.c (gtk_real_container_focus): set the h/v focus
7451         adjustments, to contain the allocation of the currently focused child.
7452         (gtk_container_set_focus_hadjustment): new functin to set the
7453         horizontal focus adjustment.
7454         (gtk_container_set_focus_vadjustment): new functin to set the vertical
7455         focus adjustment.
7456
7457         * gtk/gtkadjustment.c (gtk_adjustment_clamp_page): new fucntion to
7458         clamp the currents adjustment page into a specific range.
7459
7460         * random GtkType fixups for gtk_*_get_type() functions.
7461
7462 Fri Apr 24 18:37:16 1998  Owen Taylor  <otaylor@gtk.org>
7463
7464         * gtk/gtktreeitem.c (gtk_tree_item_remove_subtree): 
7465         Account for the fact that gtk_tree_item_remove_subtree
7466         will be called recursively. 
7467
7468         Handle removing a collapsed subtree.
7469
7470         (From Andy Dustman <adustman@comstar.net>)
7471         
7472         * gtk/gtktree.c (gtk_tree_remove_items): Look for the
7473         root tree when removing items from a non-previously
7474         mapped tree.
7475
7476         * gtk/testgtk.c: Added a remove_subtree button.
7477         
7478 Thu Apr 23 23:44:17 1998  Owen Taylor  <otaylor@gtk.org>
7479
7480         * gtk/gtkobject.c (gtk_object_finalize): Notify all weak references
7481         before object removing data. This change fixes a bug where 
7482         removing the last weak references would cause it to be 
7483         triggered.
7484
7485 Wed Apr 15 20:42:46 1998  Owen Taylor  <otaylor@gtk.org>
7486
7487         * gdk/Makefile.am: Removed mostly useless dependency that
7488         was causing problems for SGI's make, when used with
7489         the 'make dist' form of GTK+. (Dependency caused dependencies
7490         to be redone when BUILT_SOURCES changed)
7491
7492 Thu Apr 30 11:18:00 1998  Owen Taylor  <otaylor@gtk.org>
7493
7494         * gtk/gtkcombo.[ch]: Allow the user to use the popup list
7495         like a menu.
7496         
7497         * gtk/gtkmenuitem.c gtk/gtkitem.c: Moved enter/leave handlers
7498         to gtkitem.c so dragging can also work in lists.
7499
7500         * gtk/gtklist.[ch]: Track child enter events and use
7501         those to allow dragging the selection. 
7502
7503 Thu Apr 30 11:16:06 1998  Owen Taylor  <otaylor@gtk.org>
7504
7505         * gtk/gtktext.c: Try enabling background pixmaps for editable text
7506         widgets.  There is a bit of flashing, but not too bad. If you
7507         don't want the flashing, you can always not set a background
7508         pixmap.
7509
7510 Wed Apr 29 15:46:13 1998  Owen Taylor  <otaylor@gtk.org>
7511
7512         * gtk/gtktext.c: Fixed a bug where the drawn level
7513         was being messed up when the text was scrolled
7514         during a deletion.
7515         
7516 1998-04-28  Miguel de Icaza  <miguel@nuclecu.unam.mx>
7517
7518         * gdk/gdk.c (gdk_event_translate): Random debugging fixed this
7519         bug:  There is no need to set the ExposureMask in the XGrabPointer
7520         (this caused DnD programs to crash).
7521
7522 Fri Apr 24 01:29:04 1998  Tim Janik  <timj@gtk.org>
7523
7524         * gtk/gtkaccelerator.h (struct _GtkAcceleratorTable): changed ref_count
7525         field to be of type guint.
7526         * gtk/gtkaccelerator.c (gtk_accelerator_table_unref): added check for
7527         ref_count>0;
7528         (gtk_accelerator_table_install): keep a per object list of accelerator
7529         tables that refer to this object.
7530         (gtk_accelerator_table_remove): remove the accelerator table from the
7531         per object list.
7532         (gtk_accelerator_table_clean): warn if there are any object references
7533         left in an accelerator table upon destruction.
7534         (gtk_accelerator_tables_delete): new function to delete object
7535         references from the accelerator tables associated with this object.
7536
7537         * gtk/gtkwidget.c (gtk_widget_class_init): changed emission of
7538         GtkWidget::install_accelerator to GTK_RUN_LAST so the installation
7539         of an accelerator can be prevented by gtk_signal_emit_stop().
7540         (gtk_widget_real_destroy): call gtk_accelerator_tables_delete (),
7541         so there are no stale pointers in accelerator tables left.
7542
7543 1998-04-22  Federico Mena Quintero  <federico@nuclecu.unam.mx>
7544
7545         * gtk/gtkbin.c (gtk_bin_remove): Remember whether the widget was
7546         visible before we unparent it.
7547
7548 Wed Apr 22 04:15:26 1998  Tim Janik  <timj@gtk.org>
7549
7550         * gtk/gtkmain.c (gtk_handle_current_timeouts): prepend the
7551         running_timeouts list with the tmp_list link itself, not with a new
7552         GList structure pointing to our link. that would fill up memory and
7553         causes the GList.data fields of the running_timeouts list to point to
7554         GList structures and not GtkTimeoutFunction structures which is a
7555         *really* bad thing.
7556         (gtk_handle_current_idles): likewise (exchange "timout" with "idle" in
7557         the above entry ;).
7558
7559 Sat Apr 18 22:18:12 1998  Tim Janik  <timj@gtk.org>
7560
7561         * gtk/gtkradiomenuitem.h: 
7562         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_set_group): new function
7563         ala gtk_radio_button_set_group.
7564         (gtk_radio_menu_item_init): assure that we always have at least a group
7565         that points to self.
7566
7567         * gtk/gtkradiobutton.c (gtk_radio_button_set_group): few cleanups and
7568         added g_return_if_fail() statements.
7569         (gtk_radio_button_init): assure that we always have at least a group
7570         that points to self.
7571
7572 Fri Apr 17 03:05:05 1998  Tim Janik  <timj@gtk.org>
7573
7574         * ChangeLog split up into ChangeLog.pre-1-0 and ChangeLog.
7575
7576 Wed Apr 15 05:13:09 1998  Tim Janik  <timj@gtk.org>
7577
7578         * gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
7579         (Damon Chaplin), which i got wrong when applying Damon's patch the last
7580         time.
7581
7582 Wed Apr 15 20:42:46 1998  Owen Taylor  <otaylor@gtk.org>
7583
7584         * gtk/gtkpreview.c (gtk_preview_get_visuals): Make sure
7585         that when we are running with a non-installed colormap,
7586         in 8-bit pseudo-color, we actually are using the system
7587         visual. (Fixes *Bad Match* errors on Digital Unix machines
7588         with multiple 8-bit pseudo-color visuals)
7589
7590 1998-04-14  Miguel de Icaza  <miguel@nuclecu.unam.mx>
7591
7592         * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
7593         by whoever thought that randomly changing ints to unsigned int
7594         without reviewing the code was a good idea.  It is, btw not
7595         mentioned in the ChangeLog as usual, but I know it was not Elliot
7596         the culprit this time. 
7597
7598 Mon Apr 13 19:16:22 PDT 1998 Shawn T. Amundson <amundson@gtk.org>
7599
7600         * Released GTK+ 1.0.0