]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
Define more message types missing from mingw headers.
[~andy/gtk] / ChangeLog.pre-2-6
1 2000-05-13  Tor Lillqvist  <tml@iki.fi>
2
3         * gdk/win32/gdkwin32.h: Define more message types missing from
4         mingw headers.
5
6         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
7         call gdk_window_destroy_notify(). It was never called. This
8         probably meant that the GdkWindow was never freed. Thanks Owen for
9         noticing (!).
10
11         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
12         window as destroyed before calling DestroyWindow(). DestroyWindow()
13         causes a call to the window procedure (gdk_WindowProc), which
14         calls gdk_event_translate(), which calls
15         gdk_window_destroy_notify(), which gets confused unless the window
16         is set as destroyed.
17
18         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
19         this function to indicate it's win32 only. Put inside #ifdef
20         G_ENABLE_DEBUG.
21
22         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
23         debugging function. (gdk_event_translate:) Add a default branch
24         that uses the above function to print debug messages with all
25         Windows messages symbolically.
26
27         * gdk/win32/gdkprivate-win32.h: Declare it, and
28         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
29
30 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
31
32         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
33         public header file.
34
35 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
36
37         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
38
39         * gtk/gtktext.c: made the adjustments no-construct args, simply
40         provide default adjustments.
41         (gtk_text_destroy): release adjustments.
42
43         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
44         adjustment argument non-construct.
45
46         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
47         instead of in finalize.
48         (gtk_progress_get_text_from_value): 
49         (gtk_progress_get_current_text): 
50         (gtk_progress_set_value): 
51         (gtk_progress_get_percentage_from_value): 
52         (gtk_progress_get_current_percentage): 
53         (gtk_progress_set_percentage): 
54         (gtk_progress_configure): ensure an adjustment is present.
55
56 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
57
58         * gtk/gtkcolorsel.[hc]:
59         * gtk/gtkcolorseldialog.[hc]:
60         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
61         their parent implementation, use bit fields for boolean values, don't
62         create unused widgets, usage of glib types, braces go on their own
63         lines, function argument alignment, #include directives etc. etc. etc..
64
65         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
66
67 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
68
69         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
70
71         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
72         of NULL.
73
74         * gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
75         to freed data.
76         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
77
78         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
79         to NULL when the toplevel is getting destroyed.
80         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
81         (gtk_menu_destroy): 
82         (gtk_menu_init): store the information of whether we have to
83         readd the initial child ref_count during destruction in a new
84         GtkMenu field needs_destruction_ref_count.
85
86         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
87         here, those reading: learn from my mistake! ;)
88         in order for set_?adjustment to support a default adjustemnt if
89         invoked with an adjustment pointer of NULL, the code read (pseudo):
90         if (v->adjustment) unref (v->adjustment);
91         if (!adjustment) adjustment = adjustment_new ();
92         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
93         now imagine the first unref to actually free the old adjustment and
94         adjustment_new() creating a new adjustment from the very same memory
95         portion. here, the latter comparision will unintendedly fail, and
96         all hell breaks loose.
97         (gtk_viewport_set_hadjustment):
98         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
99         after unreferencing it.
100
101         * gtk/gtkcontainer.[hc]: removed toplevel registration
102         functions: gtk_container_register_toplevel(),
103         gtk_container_unregister_toplevel() and
104         gtk_container_get_toplevels() which had wrong semantics
105         anyways: it didn't reference and copy the list.
106
107         * gtk/gtkwindow.c: we take over the container toplevel registration
108         bussiness now. windows are registered across multiple destructions,
109         untill they are finalized. the initial implicit reference count
110         users are holding on windows is removed with the first destruction
111         though.
112         (gtk_window_init): ref & sink and set has_user_ref_count, got
113         rid of gtk_container_register_toplevel() call. add window to
114         toplevel_list.
115         (gtk_window_destroy): unref the window if has_user_ref_count
116         is still set, got rid of call to
117         gtk_container_unregister_toplevel().
118         (gtk_window_finalize): remove window from toplevel list.
119         (gtk_window_list_toplevels): new function to return a newly
120         created list with referenced toplevels.
121         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
122
123         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
124         adjustment a non-construct arg.
125         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
126         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
127         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
128
129         * gtk/gtkrange.c: added some realized checks.
130         (gtk_range_destroy): get rid of the h/v adjustments in the
131         destroy handler instead of finalize. remove timer.
132         (gtk_range_get_adjustment): demand create adjustment.
133
134         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
135         we simply create them on demand now and get rid of them in
136         the destroy handler.
137         (gtk_viewport_destroy): get rid of the h/v adjustments in the
138         destroy handler instead of finalize.
139         (gtk_viewport_get_hadjustment): 
140         (gtk_viewport_get_vadjustment): 
141         (gtk_viewport_size_allocate): demand create h/v adjustment
142         if required.
143
144         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
145         gtk_widget_real_destroy () functionality.
146         (gtk_widget_real_destroy): reinitialize with a new style, instead
147         of setting widget->style to NULL.
148
149 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
150
151         * gtk/gtkcalendar.c:
152         * gtk/gtkbutton.c: ported _get_type() implementation over to
153         GType, either to preserve memchunks allocation facilities,
154         or because Gtk+ 1.0 GtkTypeInfo was still being used.
155
156         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
157         over. prepare for ::destroy to be emitted multiple times.
158         removed reference tracer magic. chain into GObjectClass.shutdown()
159         to emit ::destroy signal.
160
161         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
162         fundamental.
163
164         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
165         cludge.
166
167         * gtk/gtksocket.c:
168         * gtk/gtkplug.c:
169         * gtk/gtklayout.c:
170         * gtk/gtklabel.c:
171         * gtk/gtkargcollector.c:
172         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
173         not being a fundamental anymore, and to work with the new
174         type system (nuked fundamental type varargs clutter).
175
176         * gtk/*.c: install finalize handlers in the GObjectClass
177         part of the class structure.
178         changed direct GTK_OBJECT()->klass accesses to
179         GTK_*_GET_CLASS().
180         changed direct object_class->type accesses to GTK_CLASS_TYPE().
181
182         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
183         GType. made most of the GTK_*() type macros and Gtk* typedefs
184         simple wrappers around macros and types provided by GType.
185         most notably, a significant portion of the old API vanished:
186         GTK_TYPE_MAKE(),
187         GTK_TYPE_SEQNO(),
188         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
189         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
190         GTK_TYPE_ARGS,
191         GTK_TYPE_CALLBACK,
192         GTK_TYPE_C_CALLBACK,
193         GTK_TYPE_FOREIGN,
194         GtkTypeQuery,
195         gtk_type_query(),
196         gtk_type_set_varargs_type(),
197         gtk_type_get_varargs_type(),
198         gtk_type_check_object_cast(),
199         gtk_type_check_class_cast(),
200         gtk_type_describe_tree(),
201         gtk_type_describe_heritage(),
202         gtk_type_free(),
203         gtk_type_children_types(),
204         gtk_type_set_chunk_alloc(),
205         gtk_type_register_enum(),
206         gtk_type_register_flags(),
207         gtk_type_parent_class().
208         replacements, where available are described in ../docs/Changes-1.4.txt.
209         implemented compatibility functions for the remaining API.
210
211         * configure.in: depend on glib 1.3.1, use gobject module.
212
213 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
214
215         * TODO.xml: Various updates to current status.
216
217 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
218
219         * gtk.m4: Print out version when test succeeds.
220
221 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
222
223         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
224         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
225         
226         (Original triangle color selector from Simon Budig
227         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
228         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
229         Santiago <mrcooger@cyberverse.com>)
230
231         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
232         out into a separate widget.
233
234         * gtk/testgtk.c: Add some checkbuttons for toggling palette
235         and opacity controls.
236
237 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
238
239         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
240         snuck in prematurely.
241
242 2000-05-07  Tor Lillqvist  <tml@iki.fi>
243
244         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
245         had deleted a ! operator by mistake, which caused
246         GDK_SELECTION_CLEAR events never to be generated, which caused
247         only the first copy to the clipboard from an gtkeditable to
248         actually cause a copy to the Windows clipboard.
249
250 2000-05-06  Tor Lillqvist  <tml@iki.fi>
251
252         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
253         compilation, too. Current mingw gcc distributions include the
254         necessary headers. Also the necessary IIDs are now in mingw
255         headers/libraries, and own definitions unnecessary.
256
257         More hacking on OLE2 DND, still doesn't work though, and thus
258         ifdeffed out.
259
260         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
261         here, too.
262
263 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
264
265         * gdk/nanox/*: nano-X port work in progress.
266         * gdk/simple.c: simple test for Gdk.
267         * README.nanox: notes about the port: read this first!
268         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
269         with nano-X.
270
271 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
272
273         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
274         gdk_window_clear() into common code, implement in terms of
275         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
276         not redirected to the backing rectangle.
277
278 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
279
280         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
281         EXTRA_DIST. It does not work well when the file that
282         everything depends on is not in the tarball.
283
284 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
285
286         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
287         with recursion where process_updates() is called from
288         an expose handler. (GtkTextView is highly broken in
289         doing this, but it should work, so it is a nice test
290         case.)
291
292 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
293
294         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
295         handle the case where updates are queued during processing of
296         updates.
297
298 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
299
300         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
301         window is on gdk_display - use that instead of segfaulting.
302
303 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
304
305         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
306         broken and require an empty arg, give it to them.
307
308 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
309
310         * gtk/gtklabel.h: indentation fixes.
311
312 2000-05-02  Tor Lillqvist  <tml@iki.fi>
313
314         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
315         draw too narrow or too low arcs, they seem to fail, at least with
316         some display drivers.
317
318         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
319
320         Large changes to the Win32 backend, partially made necessary by
321         the changes to the backend-independent internal
322         structures. Attempts to implement similar backing store stuff as
323         on X11. The current (CVS) version of the Win32 backend is *not* as
324         stable as it was before the no-flicker branch was merged. A
325         zipfile with that version is available from
326         http://www.gimp.org/win32/. That should be use by "production"
327         code until this CVS version is usable. (But note, the Win32
328         backend has never been claimed to be "production quality".)
329
330         * README.win32: Add the above comment about versions.
331
332         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
333
334         * gdk/gdk.def: Update.
335
336         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
337         presumably be replaced by some more better mechanism as 1.4 gets
338         closer to release shape.
339
340         * gdk/makefile.{cygwin,msc}: Update.
341
342         * gdk/win32/*.c: Correct inclusions of the backend-specific and
343         internal headers. Change code according to changes in these. Use
344         gdk_drawable_*, not gdk_window_* where necessary.
345
346         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
347         our old DND.
348
349         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
350         to interpret single characters as UTF-8. Thanks to Hans Breuer.
351         Use correct function name in warning messages.
352
353         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
354         GSourceFuncs gdk_event_prepare and gdk_event_check.
355         (gdk_event_get_graphics_expose): Do implement, use
356         PeekMessage. Thanks to Hans Breuer.
357         (event_mask_string): Debugging function to print an GdkEventMask.
358         (gdk_pointer_grab): Use it.
359
360         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
361         (old) book I used claimed was Hangul actually is CJK Unified
362         Ideographs Extension A. Also, Hangul Syllables were missing.
363         Improve logging.
364
365         * gdk/win32/gdkgc-win32.c: Largish changes.
366
367         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
368         g_win32_getlocale() from GLib, and not setlocale() to get current
369         locale name.
370
371         * gdk/win32/gdkprivate-win32.h
372         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
373         gdkwin32.h, similarily as in the X11 backend.
374
375         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
376         assignment was used instead of equals in if test. Thanks to Hans
377         Breuer.
378
379         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
380         the X11 version.
381
382         * gdk/win32/makefile.{cygwin,msc}
383         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
384         path to the Win32 headers that works also with the mingw compiler.
385
386         * gtk/gtkstyle.c: Include <string.h>.
387
388 2000-04-26  Havoc Pennington  <hp@redhat.com>
389
390         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
391         replacing the broken gtk_label_get ()
392
393 2000-04-15  Havoc Pennington  <hp@pobox.com>
394
395         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
396         this keeps scanner scripts from getting confused.
397
398         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
399         data, rather than void
400
401 2000-04-15  Tor Lillqvist  <tml@iki.fi>
402
403         * gtk/gtkclist.c (gtk_clist_motion)
404         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
405         with is_hint FALSE, get x and y from the event. They used to be
406         used uninitialised. The Win32 backend never sends motion events
407         marked as hints. This for instance fixes the annoying file and
408         font selector behaviour in the Win32 version.
409
410 2000-04-14  Tor Lillqvist  <tml@iki.fi>
411
412         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
413         gtk_private_n_signals variables, they are used by some software,
414         sigh.
415
416         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
417         installation directory from the Registry, where the installer
418         should have put it.
419
420 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
421
422         * gdk/x11/Makefile.am: Fix problem with installation directory for
423         gdkx.h
424
425         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
426         <mrcooger@cyberverse.com> so that when selecting menus with the
427         mouse, the first item will not be selected, but when selecting
428         with an accelerator, or navigating left-right on a menubar with
429         the menus popped up, the first item will be selected.
430
431 2000-04-05  Dan Damian  <dand@dnttm.ro>
432
433         * configure.in: Added "ro" to ALL_LINGUAS.
434
435 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
436
437         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
438         indentation.
439
440         * Makefile.am (EXTRA_DIST): Fix typo.
441
442         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
443         to catch gdkconfig.h
444
445         * gtk/gtkitemfactory.c: Added FIXME.
446
447 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
448
449         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
450         s/return_if_fail/return_val_if_fail/g and add a return value.
451
452 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
453
454         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
455         merge slipup.
456
457         * gdk/gdkinput.h: Fix missing line from merge.
458
459 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
460
461         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
462         instead of gdkprivate.h.
463
464 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
465
466         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
467         parent class to correctly be GtkDialogClass.
468
469 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
470
471         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
472         toplevel windows and their immediate children by their parents,
473         since the size of toplevel windows is out of our immediate
474         control and we don't get any real benefit from trying to track
475         this size for clipping.
476
477         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
478         for input_only windows.
479
480         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
481         to fix some hacks and make sure that we don't try to set the
482         background of input only windows.
483
484 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
485
486         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
487         the _really_ internal stuff, and leave gdkprivate.h for the fake private
488         stuff that we've traditionally exposed.
489
490         * gdk/**.c: Use gdkinternals.h where appropriate.
491
492         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
493         not include gdkprivate-x11.h, move all stuff of conceivable public
494         interest into gdkx.h; keep all really private stuff in
495         uninstalled header gdkprivate-x11.h.
496
497         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
498         image->image_put on windows through a new function _gdk_window_draw_image()
499         to allow us to do backing store for images. (Sort of ugly)
500
501         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
502         contexts locally so that we can offset them properly when drawing 
503         onto backing pixmaps.
504
505         * gdk/gdkinput.h: Reindented
506
507         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
508         pixmap or color for the window, so we can properly initialize
509         our double-buffer pixmaps, and also so that we temporarily set
510         a background of None while scrolling.
511
512         * gdk/gdkregion.h: Revise region boolean operators to have an
513         interface that is actually convenient - switch from creating new
514         regions on every op, to "methods" that modify existing regions
515         (A = A OP B). 3 argument forms which allow dest == src, would also
516         be possible, but the current interfaces seem to map nicely
517         onto what needs to be done. (There is quite a lot of region
518         code in GDK now.)
519
520         * gdk/gdkregion.h: Add constructor from rectangle and a copy
521         operator.
522
523         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
524         gdkpoly-generic.h: Copy region code from Xlib, switch it over
525         to 32 bit coordinates, modify it to be mostly GTK+ style
526         and to have interfaces that match gdkregion.h.
527
528         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
529         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
530         create a backing pixmap and redirect all drawing to
531         that backing pixmap until a matching gdk_window_end_paint().
532
533         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
534         Create a special drawable class for GtkWindow's that 
535         redirects the drawing to the backing pixmap as necessary
536         and then calls the real operations in _gdk_windowing_window_class.
537
538         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
539         Store invalid region for each window. Generate expose events for invalid
540         region in an idle. This replaces both the expose compression
541         and the redrawing queuing in GTK+. It is both more efficient and
542         simpler than either one individually and far more so then the
543         combination.
544
545         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
546         Emulate 32 bit coordinates for windows with 16 bit coordinates
547         by offsetting drawing, guffaw scrolling techniques and
548         mapping/unmapping child windows as necessary.
549
550         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
551         where, when invalid regions are processed, the region is stored,
552         and if expose events come in that are detectably duplicate
553         the processed exposes (by comparison of event serial numbers),
554         the stored region is subtracted out of those exposes.
555
556         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
557         regions newly exposed when scrolling or resizing windows.
558         This, combined with forcing processesing of queued invalidated
559         regions, gives nice flicker-free scrolling.
560
561         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
562         invalidated regions after every scroll.
563
564         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
565         emulation in GDK. Its, for all practical purposes just a
566         GtkViewport/GtkFixed hybrid now.
567
568         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
569         (16-bit) structures as necessary instead of just casting.
570
571         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
572         in terms of the structures from gdkregion-generic.c, using appropriate
573         offsets from GDK to X11 coordinates. Cache clip mask and
574         origin and ts origin locally and only flush to the server
575         when drawing, to avoid constantly setting and resetting these
576         values when offsetting GC's for scrolling and backing pixmaps.
577
578         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
579
580         * gtk/gtkcontainer.c: Call process_all_updates at end
581         of resizing to reduce flicker. (Avoids having redraw
582         lag arbitrarily behind resize under some circumstances)
583
584         * gtk/gtkentry.c: Remove old backing store code, and simply take
585         advantage of the new backing store capabilities of GDK.
586
587         * gtk/gtkmain.c: Simple implementation of widget backing
588         store - simply push a paint while handling each expose.
589         (Should really be configurable widget for widget.)
590         
591         * gtk/gtkwidget.c: Remove all the old complicated redraw
592         code, and simply invalidate the GDK windows from
593         gdk_window_queue_clear(), etc. (Sigh, so much carefully
594         debugged complexity ... gone to the winds.)
595
596         Remove all the code for suppressing expose events while
597         resizes are pending; this isn't needed since the invalid
598         areas won't be processed until after the resizes are
599         processed, since they are in a lower priority idle.
600
601 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
602
603         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
604         and height of dest rectangle for non-intersecting rectangles.
605
606 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
607
608         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
609         for GdkRectangle.
610
611 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
612
613         * gdk/gdk{events,image,private,types,window}.h
614          gdk/x11/gdkinputprivate.h: Change all coordinates
615          from int16 to int. Also, Change width and height from
616          unsigned to signed to avoid all the stupid C 
617          signedness bugs.
618
619 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
620
621         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
622         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
623         Add some more detailed checking.
624
625         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
626         New function to retrieve the depth of a drawable.
627
628         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
629         field, reorder fields to save memory. 
630
631 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
632
633         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
634         of the background image instead of scaling the background down to
635         a line.
636
637         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
638         which temporarily set slider to wrong size.
639
640         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
641         queue_clear().
642
643 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
644
645 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
646
647         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
648
649 2000-03-17  Tor Lillqvist  <tml@iki.fi>
650
651         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
652         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
653
654         * gdk/win32/gdkfont-win32.c
655         * gdk/win32/gdkproperty-win32.c
656         * gdk/win32/gdkselection-win32.c
657         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
658         now declared such.
659
660 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
661
662         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
663
664 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
665
666         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
667         is called without trapping X errors.
668
669 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
670
671         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
672         way into the fontset lists.
673
674 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
675
676         * gtk/gtkthemes.h: add extern "C" scope.
677
678 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
679
680         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
681         to make appends to the list constant. (gtk-guy-990901-0.patch)
682
683 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
684
685         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
686         for the typename hash table.
687
688 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
689
690         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
691         to make sure we never divide by zero. 
692         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
693
694 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
695
696         * gtk/gtkfontsel.c: Apply patch from
697         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
698         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
699
700         Also, some cleanups in atom handling.
701
702 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
703
704         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
705         not GtkWidget.
706
707 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
708
709         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
710         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
711         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
712         more guint wrap-around bugs before going to bed.
713
714 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
715
716         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
717         guint wrap arounds in allocation.width.
718
719         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
720         process untill we fit the allocation given.
721
722 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
723
724         * gtk/gtkwidget.c:
725         (gtk_widget_unrealize): guard widget access with ref/unref
726         around signal emission.
727         (gtk_widget_hide): same here, but also check its destroyed
728         state before queueing a resize.
729
730 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
731
732         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
733         of gtk_default_insensitive_bg as insensitive base color.
734
735         * gtk/gtktext.c (gtk_text_style_set): set the background color according
736         to the widget's state.
737         (gtk_text_realize): same here.
738         (gtk_text_state_changed): same here.
739         (draw_bg_rect): compare background color against base[] from
740         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
741
742 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
743
744         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
745         grabs are active, unless a delete event is send to the toplevel
746         of the currently grab holding widget.
747
748 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
749
750         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
751         debugging g_print's.
752
753 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
754
755         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
756         ever make the scrolled-window requisition ever depend on the 
757         visibility state of the scrollbars for the AUTOMATIC policy. 
758         This breaks the GTK+ requisition model, and causes loops.
759
760 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
761
762         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
763         the default font to avoid problems with XFree86-4.0 where the
764         default charset is iso10646-1, not iso8859-1.
765
766 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
767
768         * acinclude.m4
769         * config.guess
770         * config.sub
771         * ltconfig
772         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
773
774         * gtk/Makefile.am: minor cosmetic consistency tweak
775
776 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
777
778         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
779         the activate_time to 0, so that we handle a quick
780         press/release press/release properly and don't suppress
781         the second release. (Red Hat bug #7545)
782
783 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
784
785         * gtk/gtkctree.c (row_delete):
786         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
787         bugs with destruction notifier, *always* update internal
788         structures *before* calling user code.
789
790 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
791
792         A few more fixes for bug #5487, #2051, #2677.
793         * gtk/gtkclist.c : 
794         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
795         not GDK_BUTTON_PRESS.
796         (resync_selection): resync only if selection_mode is
797         GTK_SELECTION_EXTENDED
798         * gtk/gtkctree.c (resync_selection): same here
799
800 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
801
802         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
803         gdk_drag_get_selection() and gtk_menu_detach().
804
805         [ From Jeroen Ruigrok/Asmodai ]
806
807 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
808
809         * gtk/gtknotebook.c (gtk_notebook_size_request): 
810         page->tab_label can be NULL.
811
812 2000-01-25  Havoc Pennington  <hp@pobox.com>
813         
814         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
815         arg is boolean
816
817         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
818
819         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
820
821         * gdk/gdkproperty.c (gdk_property_get): return boolean
822
823         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
824
825         * gdk/gdkim.c (gdk_im_ready): return boolean
826
827         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
828
829         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
830         glib clash, should fix glib)
831
832         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
833         (gdk_get_show_events): return gboolean, and canonicalize 
834         to TRUE/FALSE
835
836         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
837         colormap is private
838         (gdk_colors_alloc): gboolean whether to be contiguous
839         (gdk_color_equal): return gboolean since we are a predicate
840         and not a qsort() (this looks semi-wrong due to glib breakage,
841         IMO glib should be fixed)
842         
843         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
844         (gdk_get_use_xshm): return gboolean
845         (gdk_pointer_is_grabbed): return gboolean
846
847         * gdk/gdk.h: Change prototypes to match all the above changes,
848         and re-run egtk-format-protos as required.
849
850 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
851
852         * gtk/gtkctree.c (resync_selection): 
853         * gtk/gtkclist.c (resync_selection):
854
855         Return immediately if clist->drag_pos < 0. This is a workaround
856         for the corrupt state that the clist gets into when a
857         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
858
859         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
860         
861         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
862         variable from recent commit.
863
864 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
865
866         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
867
868 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
869
870         * gtk/Makefile.am: prefix all autogenerated source that get build in
871         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
872         in builddir. since we subsequently cd into srcdir for autogeneration,
873         the paths have to be stripped from the target file names, thusly we
874         use $(@F) as target names now.
875         put a comment about configure.in's --disable-rebuilds option,
876         which can be used for non-writable source directories, for development
877         setups though, srcdir has to be *writable*.
878
879 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
880
881         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
882           Finish the job of allowing event to be NULL.
883           (Fixes bug #4283, reported by Chris Blizzard)
884
885         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
886           things so that the cursor appears on screen, properly
887           take into account INNER_BORDER.
888           (Fixes bug #4754, reported by Antonio Campos)
889
890 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
891
892         * gtk/gtknotebook.c (gtk_notebook_map): Don't
893           show the tab_label unless it itself is visible.
894
895           gtk/gtknotebook.c (gtk_notebook_size_request):
896           Do a better job of making sure that the visibility
897           of the tab label corresponds to whether it should
898           be mapped or not.
899
900 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
901
902         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
903           Use the requisition, not the allocation, since the
904           allocation has not necessarily been computed yet.
905           (Pointed out by Eugene Osintsev)
906
907 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
908
909         * gtk/gtkstyle.c (gtk_style_new): Dont' set
910           style/base[GTK_STATE_INSENSITIVE] both to
911           gtk_default_insensitive_bg!
912           (Bug #2187, reported by Jonathan Blandford)
913
914         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
915           Add Alt_L, Alt_R to list of invalid accelerators.
916           (Bug #3736, reported by Vlad Harchev)
917
918 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
919
920         * gtk/gtkfilesel.c (open_ref_dir): Fix several
921         bugs which occured after an attempt to open 
922         invalid home directory left cmpl_state->reference_dir == NULL.
923
924          - completion on files in home directory didn't work
925          - completion on an empty string caused  segfault
926
927          (Bug #3768, reported by Steve Ratcliffe)
928
929         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
930         cut and paste error that was causing scales to
931         be incorrectly positioned.
932         (Bug #2956,
933          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
934
935 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
936
937         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
938         when checking for dcgettext, if we've found we needed
939         it for dgettext.
940 +
941 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
942
943         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
944         queue_clear on NO_WINDOW widgets during a reparent,
945         since at that point the window and widget heirarchies
946         are out of sync. This stops crashing in some cases
947         (the scrolled window reparent test, for instance), and
948         _probably_ won't cause drawing errors.
949
950         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
951         test do what it was supposed to do and be robust against
952         window closings, etc. (Bug #2443)
953
954 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
955
956         * gtk/gtkentry.c: Fix return values on mouse events.
957         (Bug #2686, Sky <seb_sky@yahoo.com>)
958
959         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
960         (pointed out by George Lebl)
961
962         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
963         (From Ettore Perazzoli  <ettore@helixcode.com>)
964  
965 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
966
967         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
968         clicks between rows or outside calender area correctly.
969         (Patch from Damon Chaplin)
970
971         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
972         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
973           Call destroy function when overwriting existing data. 
974           (Pointed out by Damon Chaplin)
975
976 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
977
978         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
979           which was causing problems on various systems with Xmu.
980           This hasn't been needed for a very long time.
981           (Fixes #1185 3167)
982
983 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
984
985         * gdk/gdki18n.h: Include <ctype.h> when defining
986           gdk_isw* in terms of is* as a fallback.
987           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
988
989 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
990
991         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
992           realize the widget when it is size allocated!
993           (old, old bug)
994
995         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
996           Removed unused call to gdk_window_get_size() that
997           showed up when the above was fixed.
998
999 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
1000
1001         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
1002           fix up widget->window when the widget is a
1003           NO_WINDOW container widget.
1004
1005 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
1006
1007         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
1008           to account for the fact that feof() does _not_ 
1009           return TRUE on errors, and thus avoid infinite loops
1010           when trying to use gdk_pixmap_create_from_xpm()
1011           on unreadable values.
1012
1013 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
1014
1015         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
1016
1017 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
1018
1019         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
1020           gdk_gc_set_dashes to take gint8 instead of gchar to
1021           make it clearer that it is _not_ a NULL terminated string.
1022
1023         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
1024           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
1025           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
1026           arguments.
1027
1028 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
1029
1030         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
1031         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
1032         background size relative to our allocation, guard against small
1033         allocations, we may have not yet been size allocated.
1034
1035 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
1036
1037         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
1038         not just version == 3. We implement all 3 + most of 4 - 
1039         (we don't support matching text/plain;charset=iso-8859-1
1040         to a dest that expects text/plain). We'll still advertise
1041         3 to be safe, but any client implementing version >= 3
1042         must interoperate with 3.
1043         
1044 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
1045
1046         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
1047         background and gc members, add a warning in gtk_tooltips_set_color()
1048         indicating that this function is deprecated.
1049
1050 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
1051
1052         * docs/gtkfaq.sgml: FAQ Update:
1053           - Minor cleanups (Emmanuel, me)
1054           - New questions:
1055                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
1056                 How can I retrieve the text from a GtkMenuItem? (timj)
1057                 How do I validate/limit/filter the input to a GtkEntry? (me)
1058                 Memory does not seem to be released when I free the list
1059                         nodes I've allocated (timj)
1060
1061 2000-03-07  Tor Lillqvist  <tml@iki.fi>
1062
1063         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
1064         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
1065         for which it is no use to call GetLastError onWin9x.
1066         (gdk_other_api_failed) New function, for general error
1067         reporting without calling GetLastError.
1068         (gdk_win32_api_failed) OTOH, this function always calls
1069         GetLastError. (gdk_win32_last_error_string) Remove this function,
1070         GLib has the equivalent now.
1071
1072         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
1073         call them with function name, file name and line number in the
1074         arguments.
1075
1076         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
1077         functions.
1078         
1079         * gtk/gtk.def: Add some missing entry points.
1080
1081         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
1082         gtk_paned_set_gutter_size, which don't exist any longer, as void.
1083         
1084         Fixes by Hans Breuer:
1085
1086         * gdk/makefile.msc: Update for debugging.
1087
1088         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
1089         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
1090         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
1091         in the dash_list.
1092
1093         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
1094         the x11 backend.
1095
1096         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
1097
1098         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
1099
1100 2000-03-04  Tor Lillqvist  <tml@iki.fi>
1101
1102         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
1103         just pixel value of background colour.
1104
1105         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
1106         containing code snippet previously duplicated in a couple of
1107         places.
1108         
1109         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
1110         gdk_colormap_color.
1111
1112         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
1113         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
1114         events for autorepeated Shift, Control and Alt keys. Use
1115         gdk_colormap_color.
1116
1117         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
1118         pointer is inside the window the cursor of which we are setting,
1119         call SetCursor immediately.
1120
1121         * gdk/win32/makefile.cygwin
1122         * gtk/makefile.cygwin: If we don't have the build number stamp
1123         file, use zero.
1124
1125         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
1126         gtk_paned_set_gutter_size as empty.
1127
1128         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
1129         
1130 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
1131
1132         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
1133           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
1134           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
1135           docs/gtk_tut.sgml docs/gtk.texi TODO:
1136
1137           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
1138
1139 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
1140
1141         * gtk/gtkcalendar.c: Implement num_marked_dates,
1142           and don't emit mutiple day_selected signals on
1143           month_prev.
1144
1145 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
1146
1147         * docs/make-todo (lineno): let title and logo be configurable so
1148         that GNOME can use this script too.
1149
1150         * TODO.xml: added logourl and a title
1151
1152 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
1153
1154         * TODO.xml: Added some UI items, and an explanatory
1155         comment at the top of the file.
1156
1157 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
1158
1159         * TODO.xml: some updates, added abunch of new entries.
1160         a note for those fiddeling with this file, when done
1161         with it, invoke:
1162         $ ./docs/make-todo TODO.xml >/dev/null
1163         and correct output errors before comitting changes.
1164
1165 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
1166
1167         * TODO.xml: Added XML-structured TODO file.
1168         * docs/make-todo: python script to turn TODO.xml into
1169           pretty XML output. 
1170
1171 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
1172
1173         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
1174         the function to let it draw the seven dots, instead of the old,
1175         much maligned, method.
1176         (draw_dot): New function to draw a dot.
1177
1178         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
1179         to draw the handle inside the border width as opposed to outside.
1180         Use paint function instead of gdk_draw_point.
1181
1182         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
1183         to draw the handle inside the border width as opposed to outside.
1184         Use paint function instead of gdk_draw_point.
1185
1186         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
1187         Change indenting to be more GTK like.
1188
1189 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
1190
1191         * docs/gtk_tut.sgml: New section on GtkCalendar
1192         * examples/calendar: Update example code
1193
1194 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
1195
1196         * docs/gtkfaq.sgml: FAQ Update
1197
1198 2000-02-19  Anders Carlsson  <andersca@gnu.org>
1199
1200         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
1201         to prevent the scroll event to be propagated upwards.
1202
1203 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
1204
1205         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
1206         OwnerGrabButtonMask from button entries for
1207         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
1208
1209         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
1210         to the event mask (which will result in button/press release
1211         being added to the event mask on Unix) so scrolling works
1212         for layouts in scroll windows.
1213
1214         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
1215
1216         Patch from Anders Carlsson  <andersca@gnu.org> to add
1217         a scroll event.
1218
1219         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
1220         scrolling to the "Test Scrolling" part of testgtk.
1221  
1222         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
1223  
1224         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
1225         it against GDK_SCROLL.
1226  
1227         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
1228         way of mouse wheel scrolling.
1229  
1230         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
1231  
1232         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
1233  
1234         * gtk/gtkmain.c: Removed previous mouse wheel hack.
1235  
1236         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
1237         gdk_event_mask_table.
1238  
1239         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
1240         GdkEventScroll handler.
1241  
1242         * gdk/gdkevents.h: Added GdkEventScroll structure.
1243  
1244 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
1245
1246         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
1247         and Anders Carlsson to change the Paned widgets so that they
1248         can be dragged from anywhere along the length. Also change
1249         the way that this is drawn to make this apparent.
1250
1251         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
1252         from George Lebl to check that option_menu->menu is present
1253         before getting history.
1254
1255 2000-02-14  Tor Lillqvist  <tml@iki.fi>
1256
1257         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
1258         before the assertion for non-NULL segment list.
1259
1260         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
1261         Seems that pattern brushes *must* be 8x8 pixels! At least on my
1262         machine, but it might be display driver dependent. Sigh, so make
1263         sure the stipple is that size. Does Windows suck or what?
1264
1265         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
1266         places.
1267
1268 2000-02-13  Havoc Pennington  <hp@pobox.com>
1269
1270         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
1271         refcount to 1
1272         (gdk_cursor_new): init refcount to 1
1273
1274         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
1275
1276 2000-02-13  Tor Lillqvist  <tml@iki.fi>
1277
1278         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
1279         so that we don't have to do unnecessary settings to the HDC.
1280
1281         * gdk/win32/gdkdrawable-win32.c
1282         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
1283         gdk_gc_predraw.
1284
1285         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
1286         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
1287         GDI paths, call WidenPath to get the outline of the stroken path,
1288         and then fill the outline (with the brush that was built from the
1289         stipple).
1290
1291         * gdk/win32/gdkgc-win32.c: Factor out common code from
1292         _gdk_win32_gc_new and gdk_win32_gc_set_values into
1293         gdk_win32_gc_values_to_win32values. Use correct colour for
1294         SetBkColor() (Until now the code actually used a random colour in
1295         the call to SetBkColor()... but that didn't show up as not many
1296         GDI APIs use the background colour. Pattern (opaque stippled)
1297         brushes do.)
1298
1299         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
1300         gdk_win32_api_failed): New functions for error logging.
1301
1302         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
1303         WIN32_API_FAILED to call them, passing function or file name and
1304         line number.
1305
1306         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
1307
1308         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
1309         GdkColor for foreground and background in GdkGCWin32Data.
1310
1311         * gdk/makefile.cygwin: Link in the resource object separately.
1312
1313         * gdk/win32/rc/gdk.rc
1314         * gtk/gtk.rc (New file)
1315         * gdk/win32/makefile.cygwin
1316         * gtk/makefile.cygwin: Update build number in DLLs automatically,
1317         as in GLib.
1318
1319 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
1320
1321         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
1322         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
1323         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
1324         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
1325         parameters given and cursor->ref_count. coding style fixups.
1326
1327         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
1328         not GtkWidget.
1329         
1330         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
1331         fix up widget macros and add _GET_CLASS() variant.
1332         
1333         * gtk/*.c: some GtkType fixups.
1334
1335 2000-02-09  Tor Lillqvist  <tml@iki.fi>
1336
1337         * gdk/win32/gdkproperty-win32.c
1338         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
1339         were reversed.
1340
1341 2000-02-04  Tor Lillqvist  <tml@iki.fi>
1342
1343         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
1344         g_filename_to_utf8 to convert the font names Windows gives us from
1345         whatever is the default codepage to UTF-8.
1346         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
1347         in the other direction.
1348
1349         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
1350         error in debugging output.
1351
1352 2000-02-02  Tor Lillqvist  <tml@iki.fi>
1353
1354         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
1355         and height parameters to gdk_window_clear_area(). Not minus one.
1356
1357 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
1358
1359         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
1360         checks if the widget passed to gtk_drag_get_data() was not the
1361         dest widget.
1362
1363 2000-02-01  Tor Lillqvist  <tml@iki.fi>
1364
1365         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
1366         g_filename_from_utf8 functions (which were added a moment ago to
1367         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
1368         size buffers.
1369
1370         gtk_file_selection_get_filename returns the filename in the C
1371         runtime encoding. It calls g_filename_from_utf8, but copies the
1372         returned string to a static buffer, which is returned. I think
1373         this is better than returning the result from g_filename_from_utf8
1374         directly, which would mean all apps that use it would have to free
1375         the return value. Or should this function care about this issue at
1376         all? Maybe a new function with clearly defined semantics.
1377
1378         * gtk/gtkfilesel.h: Add comment about
1379         gtk_file_selection_get_filename returning the filename in the C
1380         runtime's encoding.
1381
1382         * README.win32
1383         * gdk/gdk.def
1384         * gdk/makefile.{cygwin,msc}
1385         * gtk/gtk.def: Updates.
1386
1387         * gdk/gdkcursor-win32.c: Initialise refcount.
1388
1389 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
1390
1391         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
1392
1393 2000-01-30  Havoc Pennington  <hp@pobox.com>
1394
1395         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
1396         destroy
1397
1398         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
1399
1400         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
1401         implemented in platform-specific code
1402
1403         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
1404
1405         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
1406         underscore in front
1407
1408         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
1409         put an underscore in front
1410
1411         * gdk/gdkcursor.c: new file, implements
1412         gdk_cursor_ref/gdk_cursor_unref
1413
1414         * gdk/gdkcursor.h: Refcount GdkCursor
1415
1416         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
1417
1418 2000-01-29  Tor Lillqvist  <tml@iki.fi>
1419
1420         * gdk/gdkwindow.h
1421         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
1422
1423 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
1424
1425         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
1426         structures to properly inherit from GtkWidget not GtkBin.
1427
1428 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
1429
1430         * gtk+.spec.in: Added lib/gtk+/include/* to %files
1431         (bug #5178 - Peter Wainright)
1432         
1433         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
1434         so that it will be installed.
1435         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
1436
1437 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
1438
1439         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
1440         for the GtkStyleClass vtable const.
1441
1442         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
1443         take a const string argument like GtkTranslateFunc. This will
1444         require changes in use code.
1445
1446 2000-01-19  Tor Lillqvist  <tml@iki.fi>
1447
1448         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
1449         semantics (to mimic the X11 backend, which just calls XClearArea)
1450         is to check for zero width (and height), and in that case use the
1451         window's width minus x (height minus y). This fixes for instance
1452         some redraw problems with gtkclist, which were easily noticeable
1453         in the gtk file selection widget.
1454
1455         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
1456         windows.
1457
1458 2000-01-13  Tor Lillqvist  <tml@iki.fi>
1459
1460         * configure.in
1461         * gdk/Makefile.am
1462         * gdk/x11/Makefile.am
1463         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
1464         (bug #5177).
1465         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
1466         out later.
1467
1468 2000-01-09  Tor Lillqvist  <tml@iki.fi>
1469
1470         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
1471         WM_MOVE for iconified or invisible windows. This fixes various
1472         problems when minimising windows. Thanks to Bernd Herd.
1473
1474 2000-01-05  Tor Lillqvist  <tml@iki.fi>
1475
1476         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
1477         backend's draw_lines method, not draw_points.
1478
1479 2000-01-02  Tor Lillqvist  <tml@iki.fi>
1480
1481         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
1482         before Owen's reorganisation: Don't have queued_events and
1483         queued_tail statics in this file, but use gdk_queued_events and
1484         gdk_queued_tail. This makes exposure event compression work again.
1485
1486         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
1487         seem to be needed?
1488
1489 1999-12-30  Tor Lillqvist  <tml@iki.fi>
1490
1491         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
1492         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
1493         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
1494         doesn't do anything.
1495
1496         * gdk/gdk.def: Add gdk_xid_table_insert.
1497
1498         * gdk/win32/gdkprivate-win32.h
1499         * gdk/win32/gdkevents-win32.c
1500         * gdk/win32/gdkinput-win32.c
1501         
1502         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
1503         extension_events field in the GdkWindowWin32Data struct. Use only
1504         the extension_events field in GdkWindowPrivate. Previously one was
1505         set, and the other one tested, which broke tablet
1506         functionality. Thanks to Keishi Suenaga for pointing this out.
1507
1508 1999-12-18  Tor Lillqvist  <tml@iki.fi>
1509
1510         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
1511         When handling a single character (text length == 1), don't handle
1512         it as if it was UTF-8.
1513
1514 1999-12-11  Tor Lillqvist  <tml@iki.fi>
1515
1516         * Makefile.am: Distribute README.win32.
1517         
1518         * gdk/Makefile.am
1519         * gdk/win32/Makefile.am: Distribute Win32 files.
1520
1521         * gdk/makefile.msc: New file.
1522
1523         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
1524         after label).
1525
1526         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
1527         gdk_error_code as GDKVAR, as they are referred outside GDK.
1528
1529         * gdk/win32/makefile.msc: Update.
1530
1531         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
1532         tweaks. Check only if at least one of those Unicode subrange bits
1533         we care for is set. If no code page bits are set, guess (wildly)
1534         based on the charset.
1535
1536         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
1537
1538         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
1539         non-NULL.
1540
1541         * gtk/gtkdnd.c
1542         * gtk/gtklayout.c
1543         * gtk/gtkplug.c
1544         * gtk/gtkselection.c
1545         * gtk/gtksocket.c
1546         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
1547         appropriate. There must be a cleaner way to handle this?
1548
1549         * gtk/gtkrc.c: Must include windows.h on Win32.
1550
1551         * gtk/testgtk.c: No need to include gdkx.h.
1552
1553         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
1554
1555 1999-12-07  Tor Lillqvist  <tml@iki.fi>
1556
1557         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
1558         the rbearing is set to the same as the width, but this should be
1559         fixed.
1560
1561 1999-12-06  Tor Lillqvist  <tml@iki.fi>
1562
1563         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
1564         function. If Windows doesn't tell us what Unicode subranges a font
1565         covers, guesstimate based on the codepages it covers. This will
1566         hopefully help those Windows versions or fonts that don't give us
1567         any useful Unicode subrange information with GetTextCharsetInfo.
1568         Call this function in gdk_font_load_internal.
1569
1570         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
1571         minor changes.
1572
1573 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
1574
1575         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
1576         New function, long needed.
1577
1578 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
1579
1580         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
1581         only_if_exists argument of gdk_atom_intern to
1582         bool.
1583
1584 1999-11-25  Tor Lillqvist  <tml@iki.fi>
1585
1586         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
1587         Fix two copy&paste errors.
1588
1589         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
1590         win32 has changed.
1591
1592         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
1593         GdkWin32SingleFont struct.
1594
1595         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
1596         subranges of loaded fonts. Clear font signature first, in case
1597         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
1598         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
1599
1600         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
1601         Unoffset clip region.
1602
1603 1999-11-23  Tor Lillqvist  <tml@iki.fi>
1604
1605         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
1606         event->any.window before calling filter functions.
1607
1608 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
1609
1610         * gtk/gtkgamma.h: Adapt cast macros to standard.
1611
1612 [ Merges from 1.2 ]
1613
1614 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
1615
1616         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
1617         If translation does not include a '/', use entire
1618         translation instead of crashing.
1619
1620 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
1621
1622         * docs/gtk_tut.sgml:
1623         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
1624
1625 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
1626
1627         * gtk/gtkselection.c (gtk_target_list_remove): Use
1628         g_list_remove_link, not g_list_remove.
1629
1630         [ From Geert Bevin <gbevin@thunderstorms.org> ]
1631         
1632 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
1633
1634         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
1635         statement upon unselection (how the heck did that slip in?).
1636
1637 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
1638
1639         * gtk/gtktext.c (gtk_text_freeze): 
1640         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
1641         in frozen state (and aparently crashes). patch provided by Anders
1642         Melchiorsen <and@kampsax.dtu.dk>.
1643
1644 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
1645
1646         * fix insensitive default/focus widget activation,
1647         reported by Matt Goodall <mgg@isotek.co.uk>.
1648
1649         * gtk/gtkwindow.c (gtk_window_key_press_event): 
1650         (gtk_window_activate_default):
1651         (gtk_window_activate_focus):
1652         return handled=FALSE for actiavtion of insensitive default
1653         widgets. return handled=TRUE for activation of insensitive
1654         focus widgets. don't activate in either case.
1655
1656 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
1657
1658         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
1659         and $glib_cflags to match library order and in the
1660         theory that an old version of GLib is more likely to
1661         be in the include directory for X then vice-versa.
1662         (Bug #2776)
1663
1664 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
1665
1666         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
1667         to determine the locale for fontsets, not LC_MESSAGES;
1668         the user may want English messages with a handling
1669         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
1670         will still be broken) (Bug #2891)
1671
1672 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
1673
1674         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
1675
1676 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
1677
1678         * gtk/gtkrc.ko: Changed the Korean default fontset.
1679
1680 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
1681
1682         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
1683         where when scrolling to the left or top double exposes
1684         were done, causing major slowdowns.
1685
1686 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
1687
1688         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
1689         names to lowercase and alphanumeric, before looking
1690         them up.
1691
1692         * gtk/Makefile.am: Install codeset variant gtkrc files
1693         with normalized names.
1694
1695 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
1696
1697         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
1698         popup menus when the menu is already visible, but its parent
1699         is still hidden, (happens after tornoff window got hidden).
1700
1701 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
1702
1703         * gtk/Makefile.am (install-data-local): Fix
1704         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
1705         deleted, causing error messages on install.
1706
1707 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
1708
1709         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
1710         the handle as well, since we now sometimes ignore
1711         exposes on the handle while resizing.
1712
1713 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
1714
1715         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
1716         extra g_free introduced in one of the last one or two 
1717         commits.
1718
1719 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
1720
1721         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
1722         consistent, put each style that a gtkrc.* file creates
1723         in a unique namespace, remove old files before installing.
1724
1725 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
1726
1727         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
1728         gtk_rc_init is called multiple times. (Yes, people who
1729         do that have bugs in their code.)
1730
1731 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
1732
1733         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
1734         Remove it since it's generated by the Makefile anyway
1735
1736 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
1737
1738         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
1739         device->info.axes for core pointer.
1740
1741 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
1742
1743         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
1744         idle_id, to deal with obsolete, broken C libraries.
1745
1746 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
1747
1748         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
1749         allocation->x/y twice!
1750
1751         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
1752         consistent with gtk_vscale_pos_trough().
1753
1754 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
1755
1756         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
1757         be queueing a resize on a toplevel container between
1758         the time we show it and when we map it. So, we need
1759         to test GTK_WIDGET_VISIBLE() for toplevels, and only
1760         use GTK_WIDGET_DRAWABLE() for child windows.
1761
1762 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
1763
1764         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
1765         (fixes bug #2144)
1766
1767 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
1768
1769         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
1770         container DRAWABLE (instead of VISIBLE), so we don't queue
1771         resizes on non-toplevel containers.
1772
1773 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
1774
1775         * gtk/gtkselection.[ch]: Make the data argument
1776         const guchar *.
1777
1778 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
1779
1780         * gtk/gtkwindow.c: Try to behave sensibly if 
1781         the focus widget is the window itself. (Should
1782         we allow this at all?)
1783
1784 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
1785
1786         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
1787         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
1788         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
1789         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
1790         in prototypes and implementations consistent (Tomas Ogren).
1791
1792         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
1793         before the widget is unparented (reported by damon).
1794
1795         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
1796         since we provide unsigned data anyways.
1797
1798 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
1799
1800         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
1801         the call to gtk_tooltips_layout_text() until later.
1802
1803         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
1804         Call gtk_widget_ensure_style() before using the style.
1805
1806 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
1807
1808         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
1809         for old widgets that don't propagate draws to all
1810         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
1811
1812 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
1813
1814         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
1815         for a redraw but just the widget that requested the resize.
1816
1817 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
1818
1819         * gtk/gtkcontainer.c: added new widget level method
1820         gtk_container_set_reallocate_redraws() and a GtkContainer flag
1821         reallocate_redraws : 1 to reflect the setting, exported this through
1822         the argument system as a boolean ::reallocate_redraws.
1823
1824         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
1825         on the widget because the allocation changes, do so as well for
1826         widget->parent if the parent has reallocate_redraws set to TRUE.
1827         with that containers requesting reallocation redraws get automatically
1828         redrawn if their children changed allocation (this unfortunately
1829         affects also other children that didn't change allocation, but we
1830         cannot work around that before 1.3).
1831
1832 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
1833
1834         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
1835         _and_ height are >0 (not _or_).
1836
1837         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
1838         instead of gtk_container_queue_resize(), which is a core gtk internal
1839         function (must have been on crack when i queued that).
1840
1841         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
1842         we can check more reliably if we want to discard expose events.
1843         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
1844         flag.
1845         
1846         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
1847         we simply trust these events. for deciding whether to discard exposes,
1848         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
1849         
1850 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
1851
1852         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
1853         queues of areas that are completely off screen.
1854
1855         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
1856         logic for handleboxes.
1857
1858         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
1859         check on width/height.
1860
1861 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
1862
1863         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
1864         we are fine with using $@ the way we do (if we actually encounter
1865         brokeness with $@ in VPATH builds because of additional path prefixes,
1866         we need to use $(@F) actually).
1867
1868 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
1869
1870         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
1871         short lived bugs, that would allow language bindings to do surgeries
1872         to our guts.
1873
1874 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
1875
1876         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
1877         where comparison was being done against an uninitialized
1878         value causing intermittant results depending on
1879         compiler flags. Also make it clearer that we aren't
1880         ever initializing the child as 0x0 (though this will
1881         be caught in gtk_widget_size_allocate())
1882
1883 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
1884
1885         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
1886         gtk_window_unset_transient_for() call after we do checks
1887         involving the old transient parent.
1888         [ From Lance Capser <lmc@cyberhighway.net> ]
1889
1890 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
1891
1892         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
1893         an empty file.
1894
1895 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
1896
1897         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
1898         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
1899
1900 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
1901
1902         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
1903         `$@' is valid only in the build dir, not after we've done 
1904         `cd $srcdir'.  Also use `test -f' instead of less portable
1905         `test -e'.
1906
1907 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
1908
1909         * gtk/gtktext.c (correct_cache_insert): Rewrite
1910          for simplicity, and hopefully correctness.
1911          (Fixes bug #1322, which was a segfault when
1912           on some insertions with the properties around
1913           the insertion set up just wrong.)
1914
1915         * gtk/gtktext.c (gtk_text_adjustment): When we receive
1916          a "changed" signal, clamp the new value to the adjustment
1917          bounds to avoid segfaulting if someone tries to change
1918          the adjustment to a bogus value. (Bug #1795)
1919
1920 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
1921
1922         * gtk/gtkmain.c: Ignore unexpected destroy notifies
1923         for children, for toplevel windows handle them
1924         like delete_event.
1925
1926         * gtk/gtkplug.c: Add an unrealize handler so that
1927         we unref plug->socket_window when we are done
1928         with it.
1929
1930 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
1931
1932         * gtk/gtktext.c (clear_area): Fix stupid signedness
1933          problem that was causing background to sometimes
1934          be misaligned.
1935
1936 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
1937
1938         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
1939         
1940         * gtk/gtkmenu.c (gtk_menu_position): Make
1941          sure we never position menus with negative x, y,
1942          since gtk_widget_set_uposition() can't handle that.
1943
1944         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
1945          Modify the positioning code a bit so that we always
1946          put the top-left corner onscreen. (This is for
1947          UI reasons, gtk_menu_position() now takes care of
1948          gtk_widet_set_uposition() brokeness.)
1949
1950 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
1951
1952         * gtk/Makefile.am: fixed up things for -jx, x > 1.
1953
1954 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
1955
1956         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
1957           RC style that is passed in. The lack of the ref
1958           before was a bug. If people worked around this
1959           bug, this will introduce a slight memory leak
1960           in their code. The code should typically look like:
1961
1962             rc_style = gtk_rc_style_new ();
1963             [...]
1964             gtk_widget_modify_style (widget, rc_style);
1965             gtk_rc_style_unref (rc_style);
1966
1967         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
1968           the style if it was already set.
1969
1970         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
1971           style if it was set before.
1972
1973 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
1974
1975         * gtk/testgtk.c (main): Add a check to see if we
1976           are being run from the correct directory and
1977           to quit nicely if we are not.
1978
1979         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
1980           static.
1981
1982 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
1983
1984         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
1985
1986         * gtk/gtkwindow.c:
1987         queue resizes unconditionally (gtk_widget_queue_resize will figure
1988         what to do if the window is not realized).
1989         (gtk_window_move_resize): only recenter the window
1990         for GTK_WIN_POS_CENTER_ALWAYS.
1991         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
1992         the same way as GTK_WIN_POS_CENTER.
1993
1994 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
1995
1996         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
1997         with (!(info->last_flags & GDK_HINT_POS)) instead of
1998         (!info->last_flags & GDK_HINT_POS).
1999
2000         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
2001         new_height unconditionally, because we use these values even if
2002         !default_size_changed && !hints_changed.
2003         comented the (default_size_changed || hints_changed) case with
2004         respect to resize rejects from the window manager.
2005
2006         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
2007         in the zvt condition hack, since this includes the window hints, set
2008         the hints after the handling_resize case.
2009
2010         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
2011         window is initially shown with to the geometry.
2012
2013 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
2014
2015         * gtk/gtkwindow.c (gtk_window_move_resize):
2016         s/size_changed/default_size_changed/g so i know what's
2017         really going on (frying brain on smaller flame now).
2018
2019 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
2020
2021         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
2022         we have size_changed upon handling_resize. this is a gross
2023         workaround for the broken zvt widget and should be removed in
2024         1.3 again (search for FIXME).
2025         Owen provided an accurate comment for this:
2026
2027         /* We could be here for two reasons
2028          *  1) We coincidentally got a resize while handling
2029          *     another resize.
2030          *  2) Our computation of size_changed was completely
2031          *     screwed up, probably because one of our children
2032          *     is broken. It's probably a zvt widget.
2033          *
2034          * For 1), we could just go ahead and ask for the
2035          * new size right now, but doing that for 2)
2036          * might well be fighting the user (and can even
2037          * trigger a loop). Since we really don't want to
2038          * do that, we requeue a resize in hopes that
2039          * by the time it gets handled, the child has seen
2040          * the light and is willing to go along with the
2041          * new size. (this happens for the zvt widget, since
2042          * the size_allocate() above will have stored the
2043          * requisition corresponding to the new size in the
2044          * zvt widget)
2045          *
2046          * This doesn't buy us anything for 1), but it shouldn't
2047          * hurt us too badly, since it is what would have
2048          * happened if we had gotten the configure event before
2049          * the new size had been set.
2050          */
2051
2052 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
2053
2054         * gtk/gtkrc.c: deal properly with the fact that RC
2055           style lists may include rc styles more than once.
2056
2057         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
2058           unused static function.
2059
2060         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
2061           stack of directories of RC files currently being
2062           parsed and implicitely add them to pixmap path.
2063           
2064           This fixes a bug where the directory would get
2065           appended then overwritten by pixmap_path declarations.
2066
2067           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
2068
2069         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
2070           theme's exit function. (Patch from Peter Wainwright,
2071           bug #1454)
2072
2073         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
2074           Add a destroy() handler to take care of removing
2075           group for menu item. (Fixes bug #1197)
2076
2077         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
2078           in warning message.
2079
2080 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
2081
2082         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
2083         roundtrip to figure window's width and height, since we know that
2084         anyways from widget->allocation.
2085
2086 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
2087
2088         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
2089           the hints after we request the new size.
2090
2091 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
2092
2093         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
2094           GTK_WIDGET_REALIZED() assertion - we can compute the
2095           hints before we are realized.
2096
2097         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
2098           hint changing so that we have a value of hints_changed
2099           when we decide whether to constrain the window size.
2100
2101         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
2102
2103         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
2104         change back to G_MAXINT.
2105
2106 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
2107
2108         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
2109         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
2110         contain uncluttered values.
2111         (gtk_window_compute_hints): simply assert that window is realized
2112         and that geometry_info is valid, since we rely on this anyways.
2113         (gtk_window_constrain_size): major cleanups to the code.
2114         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
2115         for the base size, instead of the minimums. use 32767 as max width
2116         and height (like in gtkwindow.c) instead of G_MAXINT.
2117
2118 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
2119
2120         * cleaned up the GtkContainer.need_resize flag handling mess, we
2121         only need to force resize requests when we were prematurely
2122         realized, or our widget tree was modified when we were temporarily
2123         hidden. handling these cases directly upon showing the window (i.e.
2124         while the GdkWindow is still unmapped) avoids the need to wait for
2125         a configure event response and therefore makes the GUI more snappier
2126         and avoids blank windows during the roundtrip.
2127
2128         * gtk/gtkwidget.c:
2129         (gtk_widget_hide): 
2130         (gtk_widget_show): don't queue resizes on toplevels, they know how
2131         to deal with matters.
2132
2133         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
2134         flag directly for not visible resize containers and spare us unecessary
2135         signal emissions.
2136
2137         * gtk/gtkwindow.c:
2138         (gtk_window_realize): if we need to enforce premature size allocation,
2139         queue a container resize so we are correctly resized later on.
2140         (gtk_window_init):
2141         (gtk_window_size_request):
2142         don't freak around with the ->need_resize flag,
2143         gtk_container_queue_resize() will care about that.
2144         (gtk_window_show):
2145         handle initial resizing issues here, we can handle matters better in
2146         this place, especially since we know that our GdkWindow is still
2147         unmapped.
2148         (gtk_window_move_resize):
2149         don't care about ->need_resize at all.
2150         handle size changes properly that occoured while we waited for a
2151         configure event.
2152
2153 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
2154
2155         * gtk/gtkwidget.c (gtk_widget_set_uposition):
2156         * gtk/gtkwindow.[hc] (gtk_window_reposition):
2157         Move the hint setting code from gtk_widget_set_uposition
2158         to here; set the hints so that we respect any previously
2159         set geometry hints.
2160
2161         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
2162         change the window hints here or move the window here,
2163         let that happen in gtk_window_move_resize().
2164
2165 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
2166
2167         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
2168         to already queued resizes (and therefore redraws) on a widget, check
2169         its anchestry as well.
2170
2171         * gtk/gtkcontainer.c:
2172         (gtk_container_queue_resize): clear resize widgets for resize
2173         containers before aborting prematurely. this is especially important
2174         for toplevels which may need imemdiate processing or their resize
2175         handler to be queued.
2176         (gtk_container_dequeue_resize_handler): added new internal function for
2177         gtkwindow.c.
2178
2179         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
2180         configure event, take possible changes in window position into account
2181         as well.
2182         if we request a new window size, queue up a resize handler that will
2183         last until the configure event response arrives.
2184         combined the ->need_resize case (initial show) with the general size
2185         (hints) changed case and added even more comments.
2186         if !auto_shrink, only revert to the old allocation if the new size
2187         is smaller than the current allocation.
2188
2189 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
2190
2191         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
2192                            gtk_window_set_geometry_hints
2193                            gtk_window_set_default_size):
2194         When hints are set, queue a resize so that the hints will
2195         be eventually reset on the toplevel.
2196
2197         * gtk/gtkwindow.c (gtk_window_show): Use
2198         gtk_window_compute_default_size(). Clear the need_resize flag
2199         on the initail map so that we don't unnecessarily trigger the
2200         resize code.
2201
2202         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
2203         into separate functions. Compare the hints we are setting
2204         with what we set last time so that we can accurately
2205         tell when we need to reset the hints.
2206
2207         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
2208         function to figure out the size from requisition
2209         and default_size.
2210
2211         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
2212         from fvwm to constrain a size to the geometry hints.
2213
2214         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
2215         to compare two sets of geometry hints.
2216
2217         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
2218         from gtk_window_set_hints(), just compute the hints,
2219         don't set them.
2220
2221         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
2222         code from gtk_window_move_resize() to separate function,
2223         rationalize a bit.
2224
2225 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
2226
2227         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
2228         structure into a new private structure.
2229
2230         * gtkrc.c: Split GtkRcStyle into public/private.
2231         In the private part, add a list of pointers to the
2232         RcStyle lists this RcStyle participates in.
2233
2234         * gtkrc.c: When a RcStyle is free, remove all
2235         lists referencing it from the 
2236         realized_style_ht hash, and free those lists.
2237         
2238         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
2239         gtk_rc_init(), since that adds the default styles
2240         to the list of parsed RC files again.
2241
2242         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
2243         
2244 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
2245
2246         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
2247         checks that ensure that a widget's allocation is at least 1 in width
2248         and height. (GNOME note: this doesn't affect old panel code anymore,
2249         because GtkSocket will request width and height of at least 1 since
2250         Fri Jul 23).
2251
2252         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
2253         allocated yet (happens if the user realizes the window prematurely),
2254         size request and allocate it.
2255         (gtk_window_size_allocate): guard against guint underflows.
2256
2257 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
2258
2259         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
2260         in gtk_built_sources, so gtk.defs gets built prior to all other
2261         sources.
2262
2263 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
2264
2265         * gtk/Makefile.am:
2266         invoke indent on gtkmarshal.*. 
2267         rewrote source generation rules, use COPYING as oldest source tag for
2268         a piggyback rule to generate all sources from (don't touch it ;).
2269         major cleanups, strip spaces on build rules for GNU Make.
2270
2271         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
2272         source and target files from commandline arguments. don't invoke indent.
2273
2274 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
2275
2276         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
2277         notebook after switch to avoid drawing problems.
2278         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
2279         
2280         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
2281         show them instead. 
2282         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
2283
2284 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
2285
2286         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
2287         notebook after switch to avoid drawing problems.
2288         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
2289         
2290         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
2291         show them instead. 
2292         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
2293
2294 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
2295
2296         * gtk/gtkwindow.c:
2297         we use window->need_resize from configure_event now, to indicate that
2298         the gtkwindow should keep its allocation (e.g. because the user resized
2299         the window through window manager handles). resize_count is now reliably
2300         used to figure whether we got the allocation we requested from the
2301         window manager.
2302         configure events get queued as resizes now, the real stuff (size
2303         computation and allocation) now only goes on in gtk_window_move_resize().
2304         GtkWindow's requisition now contains its *real* requisition (like all
2305         other widgets), *not* taking usize into account.
2306         geometry_info->last_{width|height} is now updated from set_hints() only
2307         so it always contains the last hints we set for the window manager.
2308         made some event handlers return TRUE instead of FALSE.
2309         the overall code should be much more straight forward now, and the
2310         significant code portions are accompanied by comments now.
2311         (gtk_window_set_hints):
2312         removed requisition argument and made it
2313         fetch the requisition through gtk_widget_get_child_requisition.
2314         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
2315         does that now.
2316         (gtk_window_show):
2317         ensure that the widget is realized before calling 
2318         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
2319         ensure that we got properly size requested and allocated before
2320         realization.
2321         (gtk_window_configure_event):
2322         ignore plain window moves, or reallocate the widget tree through the
2323         resize queue otherwise.
2324         (gtk_window_move_resize):
2325         mostly rewrote this function to figure window manager hints more
2326         reliably, coalesce window moves and resizes to reduce configure events
2327         and do actuall size allocations.
2328
2329 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
2330
2331         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
2332         that have a resize pending, because a redraw is already queued for them.
2333
2334         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
2335         hack to clear resize_widgets.
2336
2337         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
2338         for resize containers prior to size allocation. (this is also a bit
2339         ugly, but avoids side effects for stopped emissions and is thus more
2340         reliable).
2341         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
2342
2343         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
2344         function from gtk_tooltips_expose, as we connect to ::expose_event
2345         *and* ::draw now.
2346
2347 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
2348
2349         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
2350         checks.
2351         (gtk_target_list_unref): Likewise.
2352
2353         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
2354
2355 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
2356
2357         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
2358         guard against division by zero. (Fixes bug #1339)
2359
2360 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
2361
2362         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
2363         Prevent the trivial leak of information of allowing
2364         word motion when the entry is not visible.
2365
2366 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
2367
2368         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
2369         modality to error dialog as well as confirmation dialogs.
2370         (Bug #1803, reported by Rosanna Wing Sze Yuen)
2371
2372 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
2373
2374         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
2375         tree->view_lines.
2376         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
2377
2378         * gtk/Makefile.am (install-data-local): Solaris apparently
2379         has various troubles with ln -f; use rm first instead.
2380         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
2381
2382 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
2383
2384         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
2385         use `cp' followed by `rm' (the `rm' was already there).
2386
2387 July 30, 1999 Elliot Lee <sopwith@redhat.com>
2388         
2389         * configure.in: Fix autoconf warnings about cross compilation by
2390         trying to provide sane defaults for AC_TRY_RUN.
2391         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
2392         put them into $(srcdir) when generated. Also add a dependency of
2393         gtksignal.h on gtkmarshal.h for -j builds. 
2394         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
2395
2396 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
2397
2398         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
2399         GDK_THREADS_{LEAVE,ENTER} pair.
2400         (From Paul Fisher <pnfisher@redhat.com>)
2401
2402 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
2403
2404         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
2405         width and height are always >0 (owen).
2406
2407 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
2408
2409         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
2410         change that assured that a widget's allocated with and height are
2411         always >1, since this breaks *buggy* panel code. unfortunately this
2412         back-breaks the gimp's color selector.
2413
2414         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
2415         allocation is always >0 in width and height, before sending the
2416         configure event; this is a *gross* hack to get the gimp back to work.
2417         
2418         * marked both cases with TODO-1.3
2419
2420 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
2421
2422         * gtk/gtktext.c: Don't display wrap indicators when
2423         text is not editable and word wrap is on.
2424
2425 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
2426
2427         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
2428         option menus here as they are not derived from menu shell, assure that
2429         the option menu has a menu we can add items to.
2430
2431 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
2432
2433         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
2434         width/height to (gint) before calculations and check against < 0 to
2435         avoid guint wraparounds.
2436
2437 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
2438
2439         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
2440         width and height is never zero. sanity check both dimensions against
2441         32767 and issue a warning if the allocation is greater than that.
2442
2443 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
2444
2445         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
2446         to g_main_pending() as well.
2447
2448 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
2449
2450         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
2451         call to g_main_iteration() - since that will regrab
2452         GTK+ lock to process events.
2453
2454 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
2455
2456         * gtk/gtkwindow.c
2457         - Regularize with the rest of GTK+ by making widget->requisition
2458           not reflect the set_usize()
2459         - Always recompute geometry hints, then check if they
2460           changed before sending them to the X server. The
2461           previous checks for changes would fail in a number
2462           of circumstances. 
2463
2464 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
2465
2466         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
2467
2468 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
2469
2470         * gtk/gtkdnd.c:
2471         - Code cleanups
2472         - Instantaneously update on modifier key presses
2473         - Allow cancellation of the drag with Escape.
2474
2475 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
2476
2477         * gtk/testgtk.c (create_handle_box): Set the policy
2478         to auto_shrink - otherwise the appearance is rather
2479         strange when flipping between horizontal and vertical.
2480
2481 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
2482
2483         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
2484         (gtk_window_set_default_size): don't change a value if it's < 0.
2485         queue a resize.
2486
2487 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
2488
2489         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
2490
2491 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
2492
2493         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
2494         add an extra "/" when concating "/" + filename.
2495         (From Matt Grossman <mattg@oz.net>)
2496
2497 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
2498
2499         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
2500         for fg_gc if we set it for drawing pixmap.
2501
2502 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
2503
2504         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
2505         
2506         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
2507         already set, call old engine's destroy function and
2508         unref the old engine.
2509
2510 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
2511
2512         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
2513
2514 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
2515
2516         * gtk/gtkaccelgroup.h: mark certain functions as internal.
2517
2518 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
2519
2520         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
2521         expand behaviour changed.
2522
2523         * gtk/gtklabel.c (gtk_label_set_pattern):
2524         (gtk_label_set_justify):
2525         (gtk_label_set_line_wrap):
2526         don't bother invoking queue_clear, the reallocation does
2527         that for us, always free_words so the upcoming resize will
2528         relayout the label's contents.
2529
2530 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
2531
2532         * applied argument implementation patches from Elena Devdariani
2533         <elena@cogent.ca>.
2534
2535         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
2536         ::space_style, ::relief
2537         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
2538         * gtk/gtkpreview.c: ::expand
2539         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
2540         * gtk/gtknotebook.c: ::homogeneous
2541         * gtk/gtklabel.c: ::wrap
2542         * gtk/gtklist.c: ::selection_mode
2543         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
2544         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
2545         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
2546         * gtk/gtkclist.c: ::sort_type
2547         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
2548         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
2549
2550 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
2551
2552         * gtk/gtkstyle.c: Removed ill-thought-out part of last
2553         comment.
2554
2555 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
2556
2557         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
2558         counting right when we have to attach a new style
2559         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
2560
2561         * gtk/gtkstyle.c: Documented the refcounting
2562         peculularities of gtk_style_attach.
2563
2564 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
2565
2566         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
2567         window types.
2568
2569         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
2570         of GTK_TOPLEVEL for creating the window.
2571
2572 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
2573
2574         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
2575         the last argument (reported by Per Winkvist).
2576         
2577 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
2578
2579         Fixes for invisible XOR lines (Frank Loemker
2580         <floemker@TechFak.Uni-Bielefeld.DE>)
2581         
2582         * gtk/gtkclist.c (gtk_clist_realize): Always use
2583         a non-zero pixel for GDK_XOR.
2584
2585         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
2586         Use GDK_INVERT instead of GDK_XOR.
2587
2588 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
2589
2590         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
2591         signals if h/voffsets differ from adjustment values.
2592         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
2593
2594 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
2595
2596         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
2597         ::selection-done emissions up to the topmost menu shell.
2598
2599 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
2600
2601         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
2602         the user data on the window before destroying it.
2603
2604         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
2605         unrealize handler to take care of destroying 
2606         notebook->panel properly. 
2607         (Bug #1198 - Morten Welinder <terra@diku.dk>)
2608
2609         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
2610         of g_new and g_realloc to stop memory leak. (Actually,
2611         we could just use g_realloc(), but I'm not 100% sure
2612         that is portable).
2613         (Bug #1196 - Morten Welinder <terra@diku.dk>)
2614
2615 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
2616
2617         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
2618
2619         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
2620         for fontsets.
2621
2622         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
2623         with bin/button confusion.
2624
2625 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
2626
2627         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
2628         and show how preselection of radio items is done.
2629
2630 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
2631
2632         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
2633         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
2634         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
2635         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
2636         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
2637         * gtk/gtktable.c (gtk_table_attach): 
2638         * gtk/gtklist.c (gtk_list_insert_items): 
2639         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
2640         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
2641         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
2642         * gtk/gtkbin.c (gtk_bin_add): 
2643         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
2644         * gtk/gtkfixed.c (gtk_fixed_put): 
2645         * gtk/gtklayout.c (gtk_layout_put):
2646         general fixups to container_add logic. always realize child if
2647         child->parent is realized, only map the child and queue a resize
2648         if child and child->parent are both visible.
2649
2650 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
2651
2652         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
2653         instead of gtk_container_foreach to walk and unrealize children, so
2654         composite children get also unrealized.
2655         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
2656         (gtk_widget_map): assert that the widget is visible (basic constrain).
2657         (gtk_widget_real_map): assert that the widget is realized (basic
2658         constrain).
2659
2660 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
2661
2662         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
2663
2664 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
2665
2666         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
2667         file for iso-8859-2 locales.
2668
2669         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
2670
2671 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
2672
2673         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
2674          (Pointed out by andy@rz.uni-karlsruhe.de and others).
2675          Remove some suspicious and useless lines. 
2676
2677 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
2678
2679         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
2680         width,height = 0, 0 to mean - here to edge of window,
2681         instead of -1, -1, since the former is all we support.
2682
2683 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
2684
2685         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
2686         when removing from quit_functions list.
2687
2688 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
2689
2690         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
2691
2692 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
2693
2694         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
2695          When redrawing characters on non-visible entry, use appropriate
2696          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
2697
2698 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
2699
2700         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
2701         from drag coordinates.
2702         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
2703         use drag_dest_cell.
2704
2705         * gtk/gtktree (drag_dest_cell)
2706         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
2707         (Bug #1129)
2708
2709 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
2710
2711         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
2712         translate_* fields.
2713         (gtk_item_factory_finalize): invoke translate_notify independant from
2714         translate_data.
2715         (gtk_item_factory_set_translate_func): likewise.
2716         (gtk_item_factory_destroy): only remove ifactory pointer from those
2717         widgets that belong to us (stupid me).
2718
2719 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
2720
2721         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
2722         rc_style list when lookup succeeeds.
2723
2724 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
2725
2726         * gtk/gtkctree.c (resync_selection): 
2727         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
2728         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
2729         bug.
2730
2731 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
2732
2733         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
2734         Add some missing GDK_THREADS_ENTER()/LEAVE around
2735         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
2736
2737 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
2738
2739         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
2740         rather than emit_by_name.
2741
2742         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
2743         on the widget across multiple signal emissions.
2744         (gtk_editable_delete_text): same here.
2745         (gtk_editable_class_init): set widget_class->activate_signal after
2746         editable_signals[ACTIVATE] has been created.
2747
2748 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
2749
2750         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
2751         position here prematurely -- we might not have the
2752         right ->min_position and ->max_position yet.
2753
2754 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
2755
2756         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
2757         Add error traps so if the other end of the connection
2758         dies, we survive.
2759
2760         * gtk/gtkselection.c (gtk_selection_notify): Clean
2761         up properly when selection property retrieval fails.
2762         
2763         * gtk/gtkselection.c (gtk_selection_request): Correctly
2764         reject SelectionRequest notifies where the handler
2765         returns no data.
2766
2767 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
2768
2769         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
2770         when we've previously highlighted.
2771
2772         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
2773         emit two "drag_leave" signals for Motif drops.
2774
2775         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
2776         back the correct status messages when dropping from
2777         Motif onto a proxy window that is rejecting the
2778         drop.
2779
2780 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
2781
2782         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
2783         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
2784         to compare two argument values. added gtk_arg_to_valueloc() to set a
2785         variable from an arg through its location (pointer).
2786
2787         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
2788         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
2789         as gfloat*, uchars are collected as guchar*, ints are collected as
2790         gint*, etc...
2791
2792 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
2793
2794         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
2795         Include <string.h> instead of <strings.h>.
2796
2797         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
2798         (actually, a lot more duplicate includes occur if
2799          you trace through the sequence of #include's)
2800         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
2801         
2802 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
2803
2804         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
2805         gtk-a-higuti-990322-[0-3]
2806
2807         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
2808         that was causing -DX_LOCALE not to work.
2809
2810         * gtk/gtkrc.c (gtk_rc_init):
2811         X_LOCALE will never have LC_MESSAGES defined
2812
2813 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
2814
2815         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
2816         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
2817
2818         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
2819         left/right as well (gtk-michael-980726-0.patch.gz).
2820
2821         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
2822         for pointer values, use gchar instead of char. fixed uline allocation
2823         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
2824         chunks instead of G_ALLOC_ONLY.
2825         (gtk_label_size_request): always alter requisition as passed and leave
2826         widget->requisition alone.
2827         (gtk_label_set_text): allow NULL strings.
2828         (gtk_label_new): likewise.
2829
2830 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
2831
2832         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
2833
2834 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
2835
2836         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
2837         *and* mapped (i.e. drawable).
2838         (gtk_bin_expose): only send exposes to drawable children.
2839
2840         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
2841         (gtk_box_expose): only send exposes to drawable children.
2842
2843         * gtk/gtkhscale.c (gtk_hscale_draw): 
2844         * gtk/gtkvscale.c (gtk_vscale_draw):
2845         hm, this is an ugly one. we first compute the size of our trough area
2846         here (window relative) and then check intersection with the draw_area
2847         which is parent relative because we're a NO_WINDOW widget, so we need
2848         to offset the trough area by allocation.x and allocation.y before the
2849         check. (this must not be done for the background area though, since
2850         that's already computed parent relative).
2851
2852 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
2853
2854         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
2855         unrealize title buttons.
2856
2857 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
2858
2859         * gtk/gtkclist.c (gtk_clist_column_title_passive)
2860         (gtk_clist_column_title_active): 
2861         only connect/disconnect to GtkWidgetClass::event to block mouse events.
2862
2863         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
2864         zero initialize event, removed superfluous gdk_window_get_pointer call
2865
2866         * gtk/gtklist.c (gtk_list_vertical_timeout)
2867         (gtk_list_horizontal_timeout): removed superfluous
2868         gdk_window_get_pointer call
2869
2870 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
2871
2872         * plugging problems reported by "Bruce Mitchener, Jr."
2873         <bruce@puremagic.com> due to a purify session.
2874
2875         * gtk/gtkstyle.c:
2876         (gtk_style_ref): 
2877         (gtk_style_unref): assert ref_count to be > 0.
2878
2879         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
2880         the requisition.
2881         (gtk_clist_set_shift): likewise.
2882
2883         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
2884         adjustments.
2885
2886         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
2887         event before sending it and set send_event to TRUE (which needs to
2888         be done for *all* synthesized events).
2889         (gtk_list_vertical_timeout): likewise.
2890
2891         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
2892         leaks.
2893
2894         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
2895         to TRUE when synthesizing events.
2896
2897 [ *** end of merges from 1.2 *** ]      
2898         
2899 1999-11-21  Tor Lillqvist  <tml@iki.fi>
2900
2901         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
2902         (or copied from gdkconfig.h.win32 on Win32, sigh).
2903
2904         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
2905
2906         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
2907
2908         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
2909
2910         * gdk/gdkconfig.h.win32: New file.
2911
2912         * gdk/win32/makefile.cygwin: Build just a static archive here.
2913
2914         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
2915         for the DLL from the static archive built above.
2916
2917         * gdk/gdk.def: Moved here from the win32 subdirectory.
2918
2919         * gdk/win32/*: Adapt for the changed private struct organisation.
2920
2921         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
2922
2923 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
2924
2925         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
2926         for wheel mice (buttons 4 and 5).
2927
2928 1999-11-18  Tor Lillqvist  <tml@iki.fi>
2929
2930         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
2931         drawables use just the pixel field in the foreground and
2932         background GdkColor of the GdkGC.
2933
2934         gdk_gc_set_{fore,back}ground() are called in the GIMP with
2935         GdkColors containing uninitialized (red,green,blue) fields, and
2936         just the pixel field filled in, and furthermore in the
2937         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
2938         It thus turns out that we really don't need to have the full
2939         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
2940         it later to have just the pixel values.
2941
2942 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
2943
2944         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
2945
2946 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
2947
2948         * docs/gtkfaq.sgml: threads example from Erik Mouw.
2949         New question on GtkLabel background colors.
2950
2951         * docs/gtk_tut.sgml:
2952           - Correct the example code callback
2953             function definitions.
2954           - Update the gtkdial example code, from Frans van Schaik.
2955           - Update setselection.c to current API.
2956
2957         * examples/Makefile examples/*/*.c: Update to code
2958         listed in tutorial.
2959
2960 1999-11-10  Tor Lillqvist  <tml@iki.fi>
2961
2962         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
2963         subrange table (from the "Developing International Software for
2964         WIndows 95 and Windows NT" book) was missing the Hangul syllable
2965         block... Get the loaded font's charset correctly.
2966
2967         (Note that this, and the other *-win32.c files, still really are
2968         the old ones, the win32 subdirectory is not ready for compilation
2969         yet after the reorg.)
2970
2971 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
2972
2973         * gtk/gtkclist.c: Fix off-by-one bug in parameter
2974         check.
2975
2976 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
2977
2978         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
2979         on results of XQueryDeviceState().
2980
2981 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
2982
2983         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
2984         we need to accesss only ->children. We need an accessor
2985         for the children.
2986
2987         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
2988         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
2989         to get rid of gdkx.h include.
2990         
2991         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
2992         and random references to 'None'.
2993
2994         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
2995         Get rid of unused #include <gdk/gdkx.h>
2996
2997         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
2998         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
2999         gdkconfig.h.
3000
3001 1999-11-08  Tor Lillqvist  <tml@iki.fi>
3002
3003         * gdk/win32/gdkdraw.c
3004         * gdk/win32/gdkfont.c
3005         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
3006         following yesterday's changes. (Unrelated to Owen's reorg.)
3007
3008 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
3009
3010         * gdk/x11/gdkinput-gxi.c: Add missing include,
3011           fix GdkWindowPrivate => GdkDrawablePrivate.
3012
3013         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
3014
3015         * gdk/x11/Makefile.am (xinput_sources): Add missing
3016         backslash to fix building with --with-xinput=none
3017
3018 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
3019
3020         Move all X specific code into the x11/ directory.
3021         Aside from shuffling things around, did the following:
3022
3023        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
3024          gdk_arg_context_* - a simple argument parsing system
3025          in the style of popt.
3026
3027        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
3028          gdk/x11/gdkprivate-x11.h:
3029          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
3030          add ->klass and ->klass_data fields. The klass_data
3031          field points to an auxilliary structure that is
3032          windowing system dependent.
3033
3034        * gdk/gdkfont.c: Make most of the measurement functions
3035          simply wrappers around gdk_text_extents().
3036
3037        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
3038          _gdk_font_strlen() function that hides the weird
3039          behavior in gtk+-1.[02] where a string is interpreted
3040          differently for 8-bit and 16-bit fonts.
3041
3042        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
3043          to store common code for synthesizing double/triple
3044          press events.
3045         
3046        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
3047          Make all the function that modify an existing GC
3048          simply wrappers around gdk_gc_set_values().
3049          
3050        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
3051          for throwing out later.
3052
3053        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
3054          GdkImagePrivate and GdkColormapPrivate to have a
3055          windowing system dependent part (GdkFontPrivateX etc.)
3056          that "derives" from the system-independent part.
3057
3058        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
3059          Got rid of the included-source-files for XInput in
3060          favor of automake conditionals. (Which didn't exist
3061          when XInput support was originally added.)
3062
3063        * gdk/gdkrgb.c: Remove the visual id from the debugging
3064          statements since that is X11 specific; print out
3065          type/depth info instead.
3066          
3067
3068 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
3069
3070         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
3071         loading duplicates of hashed fonts.
3072
3073         * gdk/gdk.c (gdk_keysym_convert_case): rename
3074         gdk_XConvertCase to gdk_keysym_convert_case, allow
3075         results to be NULL in the GTK+ style.
3076
3077         * gdk/gdkcompat.h: Started compatibility header
3078         for renames.
3079
3080 1999-11-07  Tor Lillqvist  <tml@iki.fi>
3081
3082         * gdk/win32/gdkprivate.h: New font private structures, related to
3083         fontsets.
3084
3085         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
3086         gdk_font_list_free(). On X11, will just be wrappers to
3087         XListFonts() and XFreeFontNames(). On Win32, the code previously
3088         in gtkfontsel.c is now here.
3089
3090         New function gdk_font_xlfd_create(). On X11 will get the FONT
3091         property of the font (for GDK_FONT_FONTs), or call
3092         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
3093         builds a XLFD style name from the font information in the LOGFONT
3094         struct(s).
3095
3096         New function gdk_font_xlfd_free(), which correspondingly frees the
3097         string returned by gdk_font_xlfd_create().
3098
3099         Implement fontsets on Win32. Add a function that iterates over a
3100         wide char string and calls a callback function for each substring
3101         of wide chars from the same Unicode subrange (and thus probably
3102         available in the same real font).
3103
3104         Improve the XLFD emulation a bit.
3105
3106         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
3107
3108         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
3109         Beta3, WM_IME_CHAR messages don't seem to contain the composed
3110         multi-byte char as with the Active IMM on Win9x. Oh well, handle
3111         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
3112         ImmGetCompositionStringW() to get the composed Unicode chars.
3113
3114         * gdk/win32/gdkgc.c
3115         * gdk/win32/gdkdraw.c: Changes needed because of the font private
3116         struct changes.
3117
3118         * gdk/win32/gdk.def: Add the new functions.
3119
3120 1999-11-04  Tor Lillqvist  <tml@iki.fi>
3121
3122         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
3123         get the Platform SDK to get <dimm.h>.
3124
3125         * gdk/win32/gdkevents.c: More event handling fixes and
3126         simplification. Never generate motion events with is_hint true. We
3127         used to do that on bogus grounds earlier. Windows sends
3128         WM_MOUSEMOVE messages on button events even if the mouse hasn't
3129         moved, ignore these.
3130
3131         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
3132
3133         * gdk/win32/gdkglobals.c
3134         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
3135         the TrackMouseEvent function, and use it.
3136
3137         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
3138         char before calling WideCharToMultiByte in order to get a string
3139         for the window title.
3140
3141         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
3142
3143         * gdk/win32/gdk.def: Remove obsolete functions.
3144
3145         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
3146         /nodefaultlib and /defaultlib switches.
3147
3148         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
3149
3150 1999-10-31  Tor Lillqvist  <tml@iki.fi>
3151
3152         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
3153         EuroSign).
3154
3155         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
3156         same type as GdkWChar, especially on Win32.
3157
3158         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
3159
3160         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
3161         before passing to Windows GDI for drawing etc. Convert to the
3162         system default codepage before passing to Windows as window
3163         titles.
3164
3165         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
3166         support changing input locale on the fly.
3167
3168         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
3169         on-the-fly changes. Convert incoming characters from the current
3170         codepage to Unicode (and then to a UTF-8 multi-byte string) based
3171         on the current input language. Use keysym<->Unicode mapping tables
3172         and functions borrowed from xterm sources.
3173
3174         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
3175         editions of Win9x, use the ActiveX-based Active IMM (Input Method
3176         Manager) if available. IMEs and the Active IMM are available under
3177         the disguise of Chinese, Korean and Japanese support for IE and
3178         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
3179         support is present in all editions (as long as you install it).
3180
3181         Call DispatchMessage from gdk_events_queue() (and thus
3182         gdk_WindowProc()), instead of duplicating the code in
3183         gdk_WindowProc().
3184
3185         Reworked the grab handling and propagation code, factored out
3186         duplicated code snippets into separate functions. Other cleanups,
3187         too.
3188
3189         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
3190         the <dimm.h> header describing the Active IMM.
3191
3192         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
3193         just do the same as for "single" fonts.
3194
3195         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
3196         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
3197         the new keysyms from gdkkeysyms.h.
3198
3199         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
3200         fontset, so that gtkentry uses wide characters.
3201
3202         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
3203         GTk+'s system directory "gtk+", not "gtk".
3204
3205 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
3206
3207         * docs/gtkfaq.sgml: FAQ update
3208
3209 1999-10-21  Tor Lillqvist  <tml@iki.fi>
3210
3211         * gdk/win32/gdkprivate.h: Add more font private data.
3212
3213         * gdk/win32/gdkfont.c
3214         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
3215         fonts and strings. Now works much better. You still have to
3216         have a correct font selected, though. No fontset emulation yet.
3217
3218 1999-10-19  Tor Lillqvist  <tml@iki.fi>
3219
3220         * gtk/maketypes.awk: Use G_OS_WIN32.
3221
3222         * gtk/gtk.def: Add some missing entry points. Also some non-public
3223         ones, but PyGTK porter claims to need them.
3224
3225         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
3226         built-in type generation.
3227
3228 1999-10-14  Tor Lillqvist  <tml@iki.fi>
3229
3230         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
3231         GDK_FONT_FONT fonts (which is all we have for now, we don't
3232         emulate fontsets). The X11 version uses plain XDrawString in that
3233         case, too. The string passed to gdk_draw_text_wc seems to be in
3234         fact (at least, when used by gtkentry and gtktext) either in a
3235         single-byte charset, or a DBCS. Not Unicode.
3236
3237         This fixes the problem in gtkfontsel, where even if you had
3238         selected a font with a non-Latin1 charset (windows-greek, for
3239         instance), the preview still used Latin-1 glyphs.
3240
3241         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
3242         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
3243         (gdk_font_load): Recognize the demibold etc weights, even if we
3244         don't have the corresponding constants in the headers.
3245         (gdk_font_hash_insert): Use same hash mechanism as in the X11
3246         version. Should save font resources a bit, when we don't have
3247         multiple HFONTs for the same font.
3248
3249         * gdk/win32/gdkprivate.h: Add the names field as in the X11
3250         version.
3251
3252 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
3253
3254         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
3255         X values
3256
3257 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
3258
3259         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
3260         layout support (as mentioned on
3261         http://www.jcinteractive.com/gnome-ui/software/widgets/)
3262
3263 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
3264
3265         * gtk/fnmatch.c
3266         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
3267
3268 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
3269
3270         * configure.in (ALL_LINGUAS): Added Galician (gl)
3271
3272 1999-10-05  Tor Lillqvist  <tml@iki.fi>
3273
3274         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
3275
3276         * gdk/win32/gdkcompat.c: New file, actually provide an
3277         implementation for the deprecated functions. (Just temporarily.)
3278
3279         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
3280
3281         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
3282
3283         * gdk/win32/gdk.def gtk/gtk.def: Updates.
3284
3285 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
3286
3287         * configure.in: Added "uk" to ALL_LINGUAS.
3288         
3289 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
3290
3291         * configure.in: correct checking for BeOS check
3292
3293         * gdk/gdktypes.h
3294         * gtk/fnmatch.c
3295         * gtk/gtkfilesel.c
3296         * gtk/gtkitemfactory.c
3297         * gtk/gtkmain.[ch]
3298         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
3299
3300 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
3301
3302         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
3303         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
3304         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
3305         by Bulgarian). 
3306
3307 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
3308
3309         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
3310         Fix a reference to window_private->destroyed.   
3311
3312         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
3313         (ugly) setting of an internal GdkWindow member to use
3314         a _slightly_ cleaner macro.
3315
3316         * gdk/gdkprivate.h: Split GdkWindowPrivate into
3317         GdkDrawablePrivate and GdkWindowPrivate.
3318         Add extra macros for accessing GDK_DRAWABLE_ components.
3319
3320         * *.[ch]: Massive adjustments for the above, use the
3321         new macros in a lot of places.
3322
3323 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
3324
3325         * gdk/gdktypes.h: Make GdkDrawable the base type,
3326         not GdkWindow.
3327
3328 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
3329
3330         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
3331
3332 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
3333
3334         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
3335
3336 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
3337
3338         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
3339         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
3340
3341         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
3342
3343         * docs/gtk-config.1: Now autogenerated.
3344         * docs/Changes-1.4.txt: started
3345         
3346 1999-10-03  Tor Lillqvist  <tml@iki.fi>
3347
3348         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
3349         to #ifdef also here.
3350
3351         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
3352         Owen did to the X11 backend.
3353
3354         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
3355         ScrollWindowEx when blitting inside a window, it can't be correct
3356         in the general case.
3357
3358         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
3359         WM_GETMINMAXINFO is easier.
3360
3361         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
3362         depth equal to the bitspixel value, not the visual's depth.
3363
3364         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
3365         to 24 even if the bitspixel value is 32.
3366
3367         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
3368         need to check for depth==32 when bpp==32, depth will always be 24.
3369
3370 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
3371
3372         * docs/Changes-1.4.txt: Started
3373         
3374         * gtk/Makefile.am (gdk_headers): Include all the new headers.
3375
3376         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
3377         
3378         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
3379         into C file.
3380         
3381         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
3382         header to gdkinputprivate.h.
3383
3384         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
3385         unused since before 1.2.
3386
3387 1999-09-30  Tor Lillqvist  <tml@iki.fi>
3388
3389         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
3390         expand possible hex escapes in the font family (put there by
3391         logfont_to_xlfd if the font name isn't a legal XLFD font family,
3392         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
3393         On Win32, add hex escapes here, too.
3394
3395 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
3396
3397         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
3398         to #ifdef GDK_WINDOWING_X11.
3399
3400 [ Merges from gtk-1-2 ]
3401
3402 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
3403
3404         * configure.in: fixed "GNU Make" check to pass with new make version
3405         3.77.95.
3406
3407 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
3408
3409         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
3410         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
3411         AM_PATH_GTK() macros don't get confused by the -pre1.
3412
3413 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
3414
3415         * configure.in (REBUILD): Change check for perl5
3416           to check explicitely for v >= 5.002. (5.001
3417           does not work with our scripts.)
3418
3419 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
3420
3421         * configure.in: evaluate $PERL for the perl version check. added
3422         --disable-rebuilds to give the user an option to completely disable
3423         any source autogeneration rules.
3424
3425 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
3426
3427         * configure.in: evaluate $ac_make when checking for GNU Make.
3428
3429 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
3430
3431         * docs/Makefile.am: added generation.txt.
3432
3433         * Makefile.am: require automake 1.4, build README from README.in and
3434         INSTALL from INSTALL.in in dist-hook.
3435         
3436         * README.in:
3437         * INSTALL.in: new files to autogenerate README and INSTALL from.
3438
3439         * configure.in: figure whether we have GNU Make
3440
3441         * docs/generation.txt: minor additions/corrections.
3442
3443 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
3444
3445         * docs/gtkfaq.sgml: FAQ Update
3446
3447 July 30, 1999 Elliot Lee <sopwith@redhat.com>
3448         
3449         * configure.in: Fix autoconf warnings about cross compilation by
3450         trying to provide sane defaults for AC_TRY_RUN.
3451
3452 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
3453
3454         * ltconfig
3455         * ltmain.sh: upgrade to libtool 1.3.3
3456
3457 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
3458
3459         * INSTALL: Indicate that the --with-glib= configure
3460         time flag is unsupported.
3461
3462 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
3463
3464         * docs/generation.txt: Added a file that gives
3465         documenation about the autogeneration process for
3466         various autogenerated files.
3467         
3468 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
3469
3470         * configure.in (LIBS): Look for libgmodule in the
3471         right location.
3472
3473 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
3474
3475         * docs/gtk_tut.sgml: Removed references to
3476         code examples in my directory on gtk.org as
3477         they should all be in the tutorial now.
3478
3479         * docs/gtk_tut.sgml: Added sources for dial-test
3480         and scribble-xinput programs that were previously
3481         missing.
3482
3483 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
3484
3485         * TODO: Added entry about menu keyboard navigation, removed
3486         some finished items.
3487
3488 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
3489
3490         * acinclude.m4: Standardize on func_dgettext
3491         not func_gettext, so that the checks for dgettext
3492         actually are paid attention to.
3493
3494 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
3495
3496         * configure.in (LIBS): Add $INTLLIBS into $LIBS
3497         directly, rather than repeating the checks for
3498         gettext.
3499
3500         * INSTALL: Added information about gettext and
3501         NLS support.
3502
3503         * acinclude.m4 (LIBM): Check for dgettext, not
3504         just gettext. This should hopefully fix things wrt
3505         systems with old versions of GNU gettext installed.
3506
3507 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
3508
3509         * configure.in (LIBS): Look for libgmodule in the
3510         right location.
3511
3512 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
3513
3514         * autogen.sh: add --enable-maintainer-mode
3515
3516         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
3517
3518 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
3519
3520         * docs/gtk-config.1.in:
3521           docs/Makefile.am:
3522           configure.in: gtk-config is now generated.
3523
3524         * docs/gtk-config.1: Removed, now generated.
3525
3526 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
3527
3528         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
3529         handle CreateNotify itself, still put out a debuging message for
3530         --gdk-debug=events. made the ReparentNotify debugging message more
3531         verbose.
3532         wrap xcoords translation for ConfigureEvents into an error trap,
3533         a destroy event may already be pending, and in that case, the
3534         actuall coordinate values are not at all critical.
3535
3536 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
3537
3538         * gdk/gdkcc.c: Stop leaking the color_hash all over
3539         the place. Simplify and improve the logic.
3540
3541 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
3542
3543         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
3544         for prototypes and function implementations consistent (reported
3545         by Tomas Ogren).
3546
3547 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
3548
3549         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
3550         send_event set in debugging output.
3551         (gdk_compress_exposures): default initialize the event so we don't
3552         operate on bogus values (namely send_event).
3553
3554 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
3555
3556         * gdk/gdkwindow.c: When we receive an unexpected
3557         destroy notify on one of our windows, don't just
3558         warn about it, also mark our windows as destroyed.
3559
3560 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
3561
3562         * gdk/gdkfont.c (gdk_font_hash_insert): Add
3563           name => font and name => fontset hashes. The 
3564           name => fontset hash is a _big_ win since we
3565           weren't previously caching fontsets at all and loading
3566           fontsets is expensive. The name => font hash
3567           is less of a win, but it does save us from doing
3568           repeated XQueryFont calls on the same font.
3569
3570         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
3571           list so we can remove font/fontset from hash.
3572
3573 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
3574
3575         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
3576           and slightly confusing test. [ XInternAtom (,,TRUE)
3577           will never return None ].
3578
3579 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
3580
3581         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
3582           gdk/gdkwindow.c (gdk_window_set_hints):
3583
3584         Don't omit setting the properties if flags == 0 -
3585         there may be an existing set of properties there
3586         already. (Very old bug. Would it be better to
3587         delete the property instead?)
3588
3589         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
3590           spelling error in comment.
3591
3592 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
3593
3594         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
3595           to avoid stomping over gdk_error_warnings.
3596
3597         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
3598           as (bits_per_pixel + 7) / 8. This gives the same
3599           result as before for multiples of 8, but actually
3600           a "reasonable" value for 1bit or 4bit displays.
3601
3602 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
3603
3604         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
3605         GNU Make.
3606
3607 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
3608
3609         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
3610         discarding configure events.
3611
3612 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
3613
3614         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
3615         refcount is greater than zero.
3616
3617         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
3618
3619         * gdk/gdkfont.c (gdk_font_unref): Likewise.
3620
3621         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
3622
3623         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
3624
3625 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
3626
3627         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
3628         that format 32 => sizeof(item) == 4. It really is
3629         sizeof(long).
3630
3631 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
3632
3633         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
3634         core dump at all on X IO errors, only core dump
3635         if --enable-debug for X errors.
3636
3637 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
3638
3639         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
3640         unknown window:" message. disabled ConfigureNotify discarding code,
3641         because it led to events being processed out of order.
3642
3643 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
3644
3645         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
3646
3647         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
3648         we export this function, supress error warnings and don't reset the
3649         error code in the first half of this function.
3650
3651         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
3652         code (instead of just -1) so gdk_error_trap_pop() reveals something
3653         actually informative about the error that happened.
3654
3655         * gdk/*.c:
3656         don't rely on gdk_error_code being -1 if an error occoured, but just
3657         gdk_error_code != 0.
3658
3659 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
3660
3661         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
3662         pointer *before* invoking the filter function, so we at least don't
3663         crash if a filter is removed that is currently executed. window filters
3664         *really* need to be made truely reentrant at some point.
3665
3666 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
3667
3668         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
3669         PropertyNotify debug messages.
3670
3671 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
3672         
3673         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
3674         
3675         * gdk/gdkim.c: Fix cut-and-paste errors for 
3676         x/y and PreeditAttributes/StatusAttributes.
3677
3678 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
3679
3680         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
3681         G_MAXINT to 2^16 to alleviate overflow problems in
3682         various window managers.
3683
3684 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
3685
3686         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
3687         for fontsets.
3688
3689 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
3690
3691         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
3692         Initialize size_hints.x and size_hints.y because kwm
3693         brokenly pays attention to them.
3694         (Bug #1181 -  Lars Heete <hel@admin.de>)
3695
3696 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
3697
3698         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
3699         return value of gdk_list_visuals(). 
3700         (Bug #1193 - Morten Welinder <terra@diku.dk>)
3701
3702 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
3703
3704         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
3705         XSetIMValues to (void *) when comparing to NULL, to workaround
3706         the problem of some compilers barfing since older X headers don't
3707         have the prototype for it.
3708
3709 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
3710
3711         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
3712         for pseudocolor where colormap->colors was double
3713         allocated.
3714
3715         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
3716         color value in the hash table with the pixel filled
3717         in so when we do later hash table lookups, the color
3718         value is correct.
3719         
3720 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
3721
3722         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
3723         making the call
3724
3725 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
3726
3727         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
3728         pointed out by Morten Welinder <terra@diku.dk>.
3729
3730 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
3731
3732         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
3733           default filter from the list
3734
3735 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
3736
3737         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
3738           default filter from the list
3739
3740 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
3741
3742         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
3743
3744         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
3745         g_strdup_printf instead of calcing the length separately
3746
3747 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
3748
3749         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
3750         that we don't do in many other places. (Fixing duplicate 
3751         #include of config.h)
3752
3753         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
3754         Otherwise, #ifndef XINPUT_NONE check in the latter
3755         doesn't work. (Bug #546)
3756
3757 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
3758
3759         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
3760         "None" case insensitive.
3761
3762 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
3763
3764         * gdk/gdkselection.c: 
3765         Add error traps so if the other end of the connection
3766         dies, we survive.
3767
3768 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
3769
3770         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
3771         dest_xid field into two fields - one for the window
3772         to send in messages, one to indicate the last looked
3773         up window for caching purposes. This is needed, so
3774         that Leave messages get the correct window.
3775
3776 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
3777
3778         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
3779         Fix warning created by people mucking around
3780         with the gsource API.
3781
3782         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
3783         Change mapping between GIOCondition and GdkInputCondition
3784         to match the way the Linux kernel does it. This should
3785         fix problems where closed pipes were no longer signalling
3786         GDK_INPUT_READ on systems with a native poll().
3787
3788 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
3789
3790         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
3791         explicitly for the string "None" - it is in the XPM
3792         spec and some servers treat unknown colors in odd ways
3793         (like asking the user!)
3794
3795 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
3796
3797         * gdk/gdkevents.c: made "->" into a "." of previous change so
3798         it compiles
3799
3800 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
3801
3802         * gdk/gdkevents.c (gdk_compress_exposures): Set the
3803         window field of the event structure before calling
3804         user filters.
3805
3806 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
3807
3808         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
3809         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
3810
3811 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
3812
3813         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
3814         intermediate text property - prevents major memory
3815         leak when gdk_use_mb.
3816         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
3817
3818 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
3819
3820         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
3821         gtk-a-higuti-990322-[0-3]
3822
3823         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
3824         sizeof(wchar_t) != sizeof (GdkWChar)
3825
3826         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
3827         that was causing -DX_LOCALE not to work.
3828
3829         * gtk/gtkrc.c (gtk_rc_init):
3830         X_LOCALE will never have LC_MESSAGES defined
3831
3832         * gdk/gdk.c (gdk_init_check):
3833         Remove --xim-preedit and --xim-status from argv properly.
3834
3835         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
3836         that the client window is present on the X server
3837         before we pass it to the input method.
3838
3839 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
3840
3841         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
3842         if --display is specified on the command line, than
3843         the drag window will not be created on that display.
3844         
3845 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
3846
3847         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
3848         lookups with only_if_exists == TRUE were inserting
3849         bogus values into the atom cache.
3850
3851 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
3852
3853         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
3854         then reset it to NULL.
3855
3856         * gdk/gdkcolor.c:
3857         (gdk_colors_free): 
3858         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
3859         key for g_hash_table_remove() in both functions, this prevents us
3860         from accessing possibly uninitialized portions of a GdkColor structure
3861         where we are only interested in its pixel value.
3862
3863 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
3864
3865         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
3866         font hash table, if we have a GdkFontPrivate entry for this font
3867         already, simply increment its reference count, provided by Olaf Dietsche
3868         <olaf.dietsche+list.gtk@netcologne.de>.
3869
3870 1999-09-21  Tor Lillqvist  <tml@iki.fi>
3871
3872         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
3873         just to be sure.
3874
3875         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
3876         unused variables, leftovers from the X11 version.
3877
3878         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
3879
3880         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
3881         downcase fields on X11.
3882
3883 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
3884         
3885         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
3886         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
3887
3888 1999-09-17  Tor Lillqvist  <tml@iki.fi>
3889
3890         * gdk/win32/gdk.def: Add gdk_threads_mutex.
3891
3892         * gtk/makefile.msc: Correct path to libintl.
3893
3894         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
3895         use of gint vs. int, and gint vs. gboolean in headers and
3896         definitions. Use GtkType for the *_get_type functions. Note that
3897         these changes preserve binary compatibility.
3898
3899         * gdk/gdk.c
3900         * gdk/win32/gdk.c
3901         * gdk/gdk.h: Fix inconsistencies: gint vs int.
3902
3903         * gtk/gtkmain.c
3904         * gtk/gtkclist.c
3905         * gtk/gtkmenufactory.c
3906         * gtk/gtknotebook.c
3907         * gtk/gtkwidget.c: Fix inconsistencies, also gint
3908         vs. gboolean.
3909
3910         * gtk/gtkcolorsel.[ch]
3911         * gtk/gtkcombo.[ch]
3912         * gtk/gtkdrawingarea.[ch]
3913         * gtk/gtkgamma.[ch]
3914         * gtk/gtkhandlebox.[ch]
3915         * gtk/gtkhpaned.[ch]
3916         * gtk/gtkhruler.[ch]
3917         * gtk/gtkplug.[ch]
3918         * gtk/gtkpreview.[ch]
3919         * gtk/gtkruler.[ch]
3920         * gtk/gtksocket.[ch]
3921         * gtk/gtkstatusbar.[ch]
3922         * gtk/gtktoolbar.[ch]
3923         * gtk/gtkvbbox.[ch]
3924         * gtk/gtkvpaned.[ch]
3925         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
3926         functions.
3927
3928         * gtk/gtkgamma.h: Fix bug, missing () in call of
3929         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
3930
3931 1999-09-14  Tor Lillqvist  <tml@iki.fi>
3932
3933         * gdk/gdkcolor.c (gdk_colormap_new)
3934         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
3935         colormap->colors was allocated twice.
3936
3937         * gdk/win32/gdk.c: Remove some unused stuff.
3938
3939         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
3940         colormap.
3941
3942         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
3943         * gtk/gtklabel.h (gtk_label_get_type)
3944         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
3945         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
3946         in a couple of places, not guint.
3947
3948 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
3949
3950         * configure.in,po/et.po: added Estonian language file
3951
3952 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
3953
3954         * configure.in,po/da.po: added Danish file
3955
3956 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
3957
3958         * docs/gtkfaq.sgml: Minor FAQ Update
3959
3960 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
3961
3962         * docs/gtkfaq.sgml: FAQ update
3963
3964 1999-08-27  Tor Lillqvist  <tml@iki.fi>
3965
3966         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
3967         way to get window contents continually refreshed while resizing. I
3968         didn't like the effects myself, so it's not on by default.
3969
3970         * gdk/win32/gdkprivate.h: New flag variable
3971         gdk_event_func_from_window_proc, FALSE by default.
3972
3973         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
3974         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
3975         are passed --gdk-event-func-from-window-proc.
3976
3977         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
3978         and we have am event_func, call it instead of enqueing the event.
3979
3980 1999-08-23  Tor Lillqvist  <tml@iki.fi>
3981
3982         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
3983         Kelley: Set expose_count in GdkEventExposes correctly.
3984
3985         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
3986         MULTIPLE_WINDOW_CLASSES).
3987
3988         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
3989         for bug in NT, apparently NT *does* draw the end pixel, too, in
3990         LineTo with a one-pixel pen, so we don't have to do it ourselves.
3991
3992 1999-08-21  Tor Lillqvist  <tml@iki.fi>
3993
3994         Improvements by Hans Breuer: 
3995
3996         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
3997
3998         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
3999         CS_?REDRAW flags as they cause lots of (late) redraws when "show
4000         window contents while dragging" is turned on. Allocate at least
4001         one unique class for every GdkWindowType. If support for single
4002         window-specific icons is ever needed (eg. Dialog specific), every
4003         such window should get its own class.
4004
4005 1999-08-19  Tor Lillqvist  <tml@iki.fi>
4006
4007         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
4008         error that caused crashes.
4009
4010 1999-08-17  Tor Lillqvist  <tml@iki.fi>
4011
4012         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
4013         window, use ScrollWindowEx, and call UpdateWindow. This prevents
4014         bugs when for instance part of the window was outside the
4015         display. Thanks to Philippe Colantoni for finding and fixing this.
4016
4017 1999-08-16  Tor Lillqvist  <tml@iki.fi>
4018
4019         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
4020         endpoint calculations which were totally wrong. (A little RTFMing
4021         helps a lot ;-)
4022
4023         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
4024         from a separate directory, not from gettext, because of licensing
4025         issues (we want to use the LGPL version).
4026
4027         * README.win32: Mention the intl from glibc vs from gettext issue.
4028
4029 1999-08-13  Tor Lillqvist  <tml@iki.fi>
4030
4031         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
4032         in the key event handling: Now AltGr chars work again. Also,
4033         now Alt-digits are passed up as well as Control-digits.
4034         Pass keypad plus and minus as normal plus and minus.
4035
4036 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
4037
4038         * docs/gtkfaq.sgml: FAQ Update
4039
4040 1999-07-25  Tor Lillqvist  <tml@iki.fi>
4041
4042         * README.win32
4043         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
4044         the Wintab SDK.
4045
4046         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
4047         OK, but getting closer. Guard against bogus tilt data from Wacom
4048         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
4049         enable easier building without Wintab.
4050
4051         * gdk/win32/gdkinput.h
4052         * gdk/win32/gdkevents.c 
4053         * gdk/win32/gdkwindow.c: Minor changes related related to above.
4054         
4055         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
4056         code. As we have just one visual on Win32, no sense to have it in a
4057         table, and no need for the hash table.
4058
4059         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
4060         better on white background.
4061
4062 1999-07-21  Tor Lillqvist  <tml@iki.fi>
4063
4064         * README.win32: Update gcc build instructions. Mention gettext is
4065         GPL.
4066
4067         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
4068         supported cursor size with GetSystemMetrics.
4069
4070         * gdk/win32/gdkfont.c
4071         * gtk/gtkfontsel.c: Guard against some font weight and charset
4072         symbols being undefined (in mingw32 headers).
4073
4074         * gdk/win32/makefile.cygwin
4075         * gtk/makefile.cygwin
4076         * gtk/gtkthemes.c: No longer need to have differently named
4077         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
4078
4079 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
4080
4081         * docs/gtkfaq.sgml: Long awaited FAQ update.
4082
4083 1999-07-15  Tor Lillqvist  <tml@iki.fi>
4084
4085         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
4086         it. Obscure bit manipulation needed.
4087
4088         * gdk/win32/gdkevents.c: Logging.
4089         
4090         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
4091         style (file name include compiler name) for theme engines.
4092
4093 1999-07-13  Tor Lillqvist  <tml@iki.fi>
4094
4095         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
4096
4097         * gdk/win32/gdkevents.c: Fix long-standing bug in key
4098         events. The key.string wasn't zero-terminated, still we strdup'ed
4099         it in gdk_event_copy(). Synthesize crossing events for button
4100         events before possible propagation.
4101
4102         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
4103
4104         * gdk/win32/makefile.cygwin
4105         * gtk/makefile.cygwin: Use new DLL naming style for the
4106         GCC-compiled ones.
4107
4108         * gdk/win32/makefile.msc
4109         * gtk/makefile.msc: Cosmetics mostly.
4110
4111         * gtk/gtk.def: Add missing entry points.
4112
4113         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
4114
4115 1999-07-09  Tor Lillqvist  <tml@iki.fi>
4116
4117         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
4118         or height is zero. Don't print a warning if Pie or Arc fails, they
4119         always fail (?) for very narrow ellipses.
4120
4121         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
4122         the part or the destination window corresponding to source area
4123         outside of the source drawable's boundary.
4124
4125         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
4126         anything if less than two points.
4127
4128         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
4129         return NULL. Gtk cut-and-paste inside a single program works
4130         better this way. (It always gets the clipboard contents from
4131         Windows, not from its own copy, which is cleared anyway. I can't
4132         say I fully understand what happens... Emulating the X selection
4133         and property stuff is a bit of a mess.)
4134
4135         * gdk/win32/gdkevents.c
4136         * gdk/win32/gdkproperty.c: A bit more verbose logging.
4137
4138         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
4139         that never got deleted). Revamp gdk_region_shrink.
4140
4141         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
4142         after use.
4143
4144         * gtk/gtk.def: Add some missing entry points.
4145
4146         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
4147         component.
4148
4149 1999-07-04  Tor Lillqvist  <tml@iki.fi>
4150
4151         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
4152         Control-digits specially.
4153
4154 1999-07-03  Tor Lillqvist  <tml@iki.fi>
4155
4156         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
4157
4158 1999-06-28  Tor Lillqvist  <tml@iki.fi>
4159
4160         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
4161         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
4162         finding this.)
4163
4164 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
4165
4166         * gtk+.spec.in: Corrected some typos in files section.
4167         
4168 1999-06-15  Tor Lillqvist  <tml@iki.fi>
4169
4170         * README.win32: Mention using GNU gettext.
4171         * config.h.win32: Enable NLS stuff.
4172         * gtk/makefile.msc: Use GNU gettext.
4173         * gdk/win32/gdkdnd.c: Minor header reorg.
4174         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
4175         cosmetics.
4176         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
4177         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
4178
4179 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
4180
4181         * acinclude.m4
4182         * config.guess
4183         * config.status
4184         * ltconfig
4185         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
4186
4187 1999-05-30  Tor Lillqvist  <tml@iki.fi>
4188
4189         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
4190         SafeAdjustWindowRectEx. Don't override all calls to
4191         AdjustWindowRectEx by it, but use it only in two places: When
4192         creating a new top-level window and when moving a top-level
4193         window.
4194
4195         Use screen coordinate rectangle, not client rectangle, in
4196         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
4197         when we try to place a window so that the decoration (mainly,
4198         title bar) isn't visible.
4199
4200         These changes fix the bug that showed up for instance as the
4201         GIMP's saved top-level windows moving right and down (by an amount
4202         equal to the window decoration) for each session. This bug showed
4203         up also in testgtk's "Saved Position".
4204
4205         gdk_window_resize also redone a bit.
4206
4207 1999-05-25  Tor Lillqvist  <tml@iki.fi>
4208
4209         * gtk/testgtkrc: Add (commented out) Windows-style theme
4210         include line.
4211
4212         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
4213
4214 1999-05-18  Tor Lillqvist  <tml@iki.fi>
4215
4216         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
4217         gdkx.h to a gdk subdirectory, so that applications can include
4218         these with <gdk/*.h> without trouble.
4219
4220         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
4221         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
4222         have their bitmap destroyed.
4223
4224         * gdk/win32/gdk.def: Add gdk_root_parent.
4225
4226 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
4227
4228         * configure.in
4229           gtk-config.in
4230           ltconfig
4231           ltmain.sh     
4232           gtk/Makefile.am: changes to compile nicely (with xlib) 
4233           on BeOS
4234
4235 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
4236
4237         * acinclude.m4
4238         * config.guess
4239         * config.sub
4240         * ltconfig
4241         * ltmain.sh: upgrade to libtool 1.3
4242
4243 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
4244
4245         * gtk/gtkclist.c:
4246         * gtk/gtkctree.c: merges from gtk-1-2
4247
4248 1999-04-25  Tor Lillqvist  <tml@iki.fi>
4249
4250         Support added for building using a GNU toolchain on Win32,
4251         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
4252
4253         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
4254         * config.h.win32: Changes for gcc.
4255         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
4256         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
4257         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
4258         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
4259         Protect shl stuff unavaiilable with mingw32 headers.
4260         * gdk/win32/gdkevents.c: Fix typo.
4261         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
4262         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
4263         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
4264         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
4265         the mingw32 headers.
4266         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
4267         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
4268         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
4269         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
4270         Test for NATIVE_WIN32, not _MSC_VER.
4271         * gtk/gtkmain.c: No use warning about developer version on Win32,
4272         there aren't any non-developer versions anyhow.
4273         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
4274         * gtk/makefile.msc: Use pthread from another directory. Minor other
4275         changes. 
4276
4277 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
4278
4279         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
4280           default filter from the list
4281
4282 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
4283
4284         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
4285          when gtk_widget_grab_default() is called for a widget that
4286          is not within a GtkWindow.
4287
4288 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
4289
4290         * docs/gtk_tut.sgml, examples/clist.c: use a
4291           scrolled window in the clist example. Minor
4292           tutorial fixes.
4293
4294 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
4295
4296         * docs/gtk_tut.sgml: Style check from David King
4297           <dking@youvegotmail.net>
4298
4299 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
4300
4301         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
4302         compile with unknown value of GDK_WINDOWING
4303
4304 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
4305
4306         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
4307         after the rule is fired.
4308         (install-exec-local): Install gdkconfig.h only if the contents are
4309         different from the currently installed gdkconfig.h.
4310
4311 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
4312
4313         * gdk/Makefile.am (configexecincludedir): Rename from 
4314         configincludedir so that gdkconfig.h will be installed 
4315         as part of `make install-exec'. 
4316
4317 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
4318
4319         * acinclude.m4
4320         * config.guess
4321         * config.sub
4322         * ltconfig
4323         * ltmain.sh: upgrade to libtool 1.2f
4324
4325         * autogen.sh: libtool is not required to autogen gtk+
4326
4327         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
4328         needed)
4329
4330 1999-03-18  Tor Lillqvist  <tml@iki.fi>
4331
4332         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
4333         declaring gdk variables exported/imported from the DLL. New image
4334         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
4335         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
4336         GDK_DRAG_PROTO_OLE2.
4337
4338         * gdk/gdk.h: Merge in Win32 version: Two new functions,
4339         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
4340         declared only for the Win32 version, but could be in the X11
4341         version as well. (Needed for a Xlib-less gdk_imlib.)
4342         gdk_color_hash should have only one parameter. Declare
4343         gdk_threads_mutex with GDKVAR.
4344         
4345         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
4346         just one parameter.
4347
4348         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
4349         per pixel, not bits.
4350
4351         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
4352         Fetch bpp (which means bits-per-pixel here) from another place on
4353         Win32. Accept also depth==32 (which we might get on Win32) with
4354         bpp==32.
4355
4356         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
4357         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
4358         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
4359         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
4360         in the backend-dependent directory, not in the common gdk
4361         directory.
4362
4363         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
4364         headers.
4365
4366 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
4367
4368         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
4369         want to use the Gtk+ devel version (which is true, and yes - even i am
4370         currently working with the 1.2.x branch). so everyone reading this, you
4371         probably want to issue
4372         cvs checkout -r glib-1-2 glib
4373         and
4374         cvs checkout -r gtk-1-2 gtk+
4375         as your next two comands.
4376
4377 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
4378
4379         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
4380         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
4381
4382         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
4383         file. strongly deprecated the GTK_HAVE_* macros, we provide
4384         GTK_CHECK_VERSION() for people that need to check for certain
4385         Gtk+ versions.
4386
4387         * gtk/gtkcompat.h: removed this from CVS.
4388         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
4389         idea right from the start, it just didn't seem like that back then.
4390
4391 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
4392
4393         * merges from gtk-1-2:
4394
4395 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
4396
4397         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
4398         item factory class has been created.
4399         (gtk_item_factory_parse_rc): likewise.
4400
4401         * gtk/gtkmenu.c:
4402         keep proper references for old_active_menu_item.
4403         (gtk_menu_reparent): unset the usize of the new parent,
4404         so the menu can sanely be size requested and we don't get nasty screen
4405         artefacts upon next reparentation.
4406         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
4407         enter notify. only synthesize enter notifies if the pointer really is
4408         inside the event window.
4409         (gtk_menu_popdown): use gtk_menu_shell_deselect().
4410         (gtk_menu_popup): move the background setting stuff into
4411         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
4412
4413         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
4414         gtk_menu_shell_select_item() to select the new item.
4415         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
4416         do the right thing for deselection as well.
4417
4418 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
4419
4420         * gtk/gtkwidget.[hc]:
4421         (gtk_widget_accelerators_locked): return whether a widget's accelerators
4422         are locked.
4423
4424         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
4425         existing accelerators if the widget's accelerators are locked.
4426
4427 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
4428
4429         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
4430
4431         * gtk/gtkmenu.c: truely forward key press and key release events to
4432         the menu widget from the toplevel or tearoff window. we can't simply
4433         connect to that, we need to stop further processing of the events as
4434         well.
4435
4436 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
4437
4438         * gtk/gtkmenu.c:
4439         (gtk_menu_key_press): pass event->keyval, event->state to
4440         gtk_accelerator_valid, instead of event->keyval twice.
4441         refuse to install single letter accelerators for menus that use
4442         single letter shortcuts.
4443
4444         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
4445         gtk_menu_ensure_uline_accel_group().
4446
4447         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
4448         which will always return an uline accel group, made
4449         gtk_menu_get_uline_accel_group() return NULL if the group isn't
4450         yet created.
4451
4452 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
4453
4454         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
4455
4456         * gtk/gtkclist.c (gtk_clist_column_title_passive):
4457         Leave button sensitive, trap  button_press, button_release,
4458         motion_notify, enter_notify and leave_notify events instead.
4459         (gtk_clist_column_title_active): disconnect event handler.
4460         (gtk_clist_drag_data_get): fixed memory leak. Reported by
4461         Guillaume Laurent <glaurent@worldnet.fr>
4462
4463 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
4464
4465         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
4466         width/height mixups.
4467
4468         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
4469         if needed.
4470
4471 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
4472
4473         * gtk/testgtk.c (create_item_factory): unref the item factory after
4474         window's destruction.
4475
4476         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
4477         count on the menu shell around the menu item's activation, since the
4478         signal emission may cause menu shell destruction.
4479
4480         * gtk/gtkitemfactory.c:
4481         the previous code leaked one accel group per menu. we use
4482         gtk_menu_get_uline_accel_group() now to fix that, and with that
4483         also create the underline accelerator group of the menus only if
4484         required (i.e. an underline accelerator has been specified).
4485         (gtk_item_factory_construct):
4486         (gtk_item_factory_create_item): removed code that would create an
4487         extra accel group for the menu (and leak references).
4488         (gtk_item_factory_create_item): adapted the underline accelerator
4489         installation code to properly feature gtk_menu_get_uline_accel_group().
4490
4491         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
4492         menu->accel_group, this may return NULL if the accelerator group
4493         hasn't been set yet.
4494         added gtk_menu_get_uline_accel_group() to retrive the underline
4495         accelerator group of the menu, this will be created on demand
4496         and proper care is taken about its reference count.
4497
4498         * gtk/gtkitemfactory.h:
4499         * gtk/gtkitemfactory.c:
4500         dumped the approach of keeping a widgets by action list on the
4501         factory since the factory<->widget destroy negotiation didn't work
4502         and would be hard to get going at all. instead we keep a list of
4503         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
4504         persistant throughout a program's life time).
4505         also, i removed the static const gchar *key_* variables, and made
4506         them inline strings (they weren't actually used anyways).
4507         (gtk_item_factory_add_item): update ifactory->items.
4508         (gtk_item_factory_destroy): destroy ifactory->items (and remove
4509         the item factory pointer from the remaining ifactory widgets).
4510         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
4511         list to find the widget.
4512         (gtk_item_factory_get_item): new function that works around
4513         gtk_item_factory_get_widget() limitations, this function will only
4514         return menu items, even for <Branch> entries.
4515
4516 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
4517
4518         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
4519         font hash table, if we have a GdkFontPrivate entry for this font
4520         already, simply increment its reference count, provided by Olaf Dietsche
4521         <olaf.dietsche+list.gtk@netcologne.de>.
4522
4523         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
4524         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
4525
4526 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
4527
4528         * gtk/gtkcontainer.c:
4529         (gtk_container_add_with_args):
4530         (gtk_container_addv):
4531         (gtk_container_add): before adding a child to a conatiner, make sure
4532         it is (default) constructed, this is neccessary because under certain
4533         circumstances the child will get relized and mapped immediatedly, in
4534         which case it has to be constructed already.
4535
4536 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
4537
4538         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
4539         values > 1 as TRUE also.
4540
4541 1999-03-16  Tor Lillqvist  <tml@iki.fi>
4542
4543         * README.win32: New file.
4544                 
4545         * configure.in: Check for lstat.
4546
4547         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
4548         completeness.
4549
4550         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
4551
4552         * gtk/gtk.def: Removed CRs.
4553
4554         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
4555         ..\gdk\win32).
4556
4557         * gdk/win32/makefile.msc: Correct upwards relative paths.
4558         
4559 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
4560
4561         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
4562           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
4563           it was connecting a void function to expose_event and the int
4564           returning function to the draw signal
4565
4566 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
4567
4568         * configure.in:
4569         Use correct path to libgmodule.la when ref'ing uninstalled copy
4570         of glib.  (Already in stable branch, Bug #417)
4571
4572 1999-03-15  Tor Lillqvist  <tml@iki.fi>
4573
4574         Win32 merge and general portability stuff:
4575                 
4576         * acconfig.h,configure.in: Check for <sys/time.h>.
4577
4578         * gdk/win32: New directory (actually, been there for a while).
4579         
4580         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
4581         NATIVE_WIN32, and use these. Always case fold on Win32. No
4582         backslashed escapes on native Win32.
4583
4584         * gtk/{gtk.def,makefile.msc}: New files.
4585
4586         * gtk/Makefile.am: Add above new files.
4587         
4588         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
4589         instead of <strings.h>.
4590
4591         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
4592         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
4593         <unistd.h> appropriately.
4594
4595         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
4596         Use ABS() (from <glib.h>) instead of abs().
4597         
4598         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
4599         of gtk (and thus glib) headers, so that WIN32 will be
4600         defined. With MS C, include <direct.h> for mkdir prototype.
4601
4602         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
4603         some casts, needed by MS C.
4604
4605         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
4606         implemented).
4607
4608         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
4609         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
4610         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
4611
4612         * gtk/gtkmain.h: Mark variables for export/import on Win32.
4613                 
4614         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
4615         the event is not a hint, or its window is not the slider. Needed
4616         on Win32, at least.
4617
4618         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
4619         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
4620         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
4621         a subdirectory of the Windows directory as gtk system
4622         configuration directory.
4623
4624         * gtk/gtkselection.c: No chunks on Win32.
4625
4626         * gtk/gtksocket.c: Not implemented on Win32.
4627
4628         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
4629
4630         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
4631
4632         * gtk/maketypes.awk: Declare variables with a macro that expands to
4633         necessary export/import magic in the case of Win32.
4634                 
4635         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
4636
4637 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
4638
4639         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
4640         since those were meant only for gdki18n.h.  
4641         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
4642         for widechar tests.
4643         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
4644
4645 1999-03-13  Tor Lillqvist  <tml@iki.fi>
4646
4647         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
4648         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
4649
4650         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
4651         installed) to CFLAGS.
4652
4653         * gdk/Makefile.am: Add rules for gdkconfig.h.
4654
4655         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
4656         APIs.
4657
4658         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
4659         gdkx.h anyway when compiling for X11.
4660         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
4661         general): Merge in Win32 version.
4662         
4663         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
4664         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
4665         expansion (if we don't have HAVE_PWD_H), allow for drive
4666         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
4667         included code from Craig Setera's port to Win32 (the one that uses
4668         X11, and the cygwin dll), even if it probably will be abandoned.
4669
4670         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
4671         the user entered one herself.  This way one can complete *.h and
4672         don't get matches on any .help files, for instance.
4673         
4674 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
4675
4676         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
4677         font hash table, if we have a GdkFontPrivate entry for this font
4678         already, simply increment its reference count, provided by Olaf Dietsche
4679         <olaf.dietsche+list.gtk@netcologne.de>.
4680
4681         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
4682         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
4683
4684 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
4685
4686         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
4687         the number of calls to gdk_draw_point() (and thus to X) by
4688         clipping the points by hand.
4689
4690         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
4691         the clip parameter.
4692         (gtk_handle_box_paint): Only paint the handle if the expose area
4693         intersects it.
4694
4695 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
4696
4697         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
4698
4699 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
4700
4701         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
4702         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
4703
4704 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
4705
4706         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
4707          textmode (O_TEXT) for OS/2 version.
4708
4709 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
4710
4711         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
4712         GtkSpinButton, "input" and "output", to make the output more flexible.
4713         The user has to provide a mapping between adjustment->value and the
4714         output string (and vice versa, if the spin button is editable). 
4715         See testgtk for examples.
4716
4717 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
4718
4719         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
4720         new one.
4721         
4722         * configure.in: set gtk+ version to 1.3.0.