]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
New font private structures, related to fontsets.
[~andy/gtk] / ChangeLog.pre-2-6
1 1999-11-07  Tor Lillqvist  <tml@iki.fi>
2
3         * gdk/win32/gdkprivate.h: New font private structures, related to
4         fontsets.
5
6         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
7         gdk_font_list_free(). On X11, will just be wrappers to
8         XListFonts() and XFreeFontNames(). On Win32, the code previously
9         in gtkfontsel.c is now here.
10
11         New function gdk_font_xlfd_create(). On X11 will get the FONT
12         property of the font (for GDK_FONT_FONTs), or call
13         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
14         builds a XLFD style name from the font information in the LOGFONT
15         struct(s).
16
17         New function gdk_font_xlfd_free(), which correspondingly frees the
18         string returned by gdk_font_xlfd_create().
19
20         Implement fontsets on Win32. Add a function that iterates over a
21         wide char string and calls a callback function for each substring
22         of wide chars from the same Unicode subrange (and thus probably
23         available in the same real font).
24
25         Improve the XLFD emulation a bit.
26
27         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
28
29         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
30         Beta3, WM_IME_CHAR messages don't seem to contain the composed
31         multi-byte char as with the Active IMM on Win9x. Oh well, handle
32         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
33         ImmGetCompositionStringW() to get the composed Unicode chars.
34
35         * gdk/win32/gdkgc.c
36         * gdk/win32/gdkdraw.c: Changes needed because of the font private
37         struct changes.
38
39         * gdk/win32/gdk.def: Add the new functions.
40
41 1999-11-04  Tor Lillqvist  <tml@iki.fi>
42
43         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
44         get the Platform SDK to get <dimm.h>.
45
46         * gdk/win32/gdkevents.c: More event handling fixes and
47         simplification. Never generate motion events with is_hint true. We
48         used to do that on bogus grounds earlier. Windows sends
49         WM_MOUSEMOVE messages on button events even if the mouse hasn't
50         moved, ignore these.
51
52         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
53
54         * gdk/win32/gdkglobals.c
55         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
56         the TrackMouseEvent function, and use it.
57
58         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
59         char before calling WideCharToMultiByte in order to get a string
60         for the window title.
61
62         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
63
64         * gdk/win32/gdk.def: Remove obsolete functions.
65
66         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
67         /nodefaultlib and /defaultlib switches.
68
69         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
70
71 1999-10-31  Tor Lillqvist  <tml@iki.fi>
72
73         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
74         EuroSign).
75
76         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
77         same type as GdkWChar, especially on Win32.
78
79         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
80
81         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
82         before passing to Windows GDI for drawing etc. Convert to the
83         system default codepage before passing to Windows as window
84         titles.
85
86         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
87         support changing input locale on the fly.
88
89         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
90         on-the-fly changes. Convert incoming characters from the current
91         codepage to Unicode (and then to a UTF-8 multi-byte string) based
92         on the current input language. Use keysym<->Unicode mapping tables
93         and functions borrowed from xterm sources.
94
95         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
96         editions of Win9x, use the ActiveX-based Active IMM (Input Method
97         Manager) if available. IMEs and the Active IMM are available under
98         the disguise of Chinese, Korean and Japanese support for IE and
99         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
100         support is present in all editions (as long as you install it).
101
102         Call DispatchMessage from gdk_events_queue() (and thus
103         gdk_WindowProc()), instead of duplicating the code in
104         gdk_WindowProc().
105
106         Reworked the grab handling and propagation code, factored out
107         duplicated code snippets into separate functions. Other cleanups,
108         too.
109
110         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
111         the <dimm.h> header describing the Active IMM.
112
113         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
114         just do the same as for "single" fonts.
115
116         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
117         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
118         the new keysyms from gdkkeysyms.h.
119
120         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
121         fontset, so that gtkentry uses wide characters.
122
123         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
124         GTk+'s system directory "gtk+", not "gtk".
125
126 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
127
128         * docs/gtkfaq.sgml: FAQ update
129
130 1999-10-21  Tor Lillqvist  <tml@iki.fi>
131
132         * gdk/win32/gdkprivate.h: Add more font private data.
133
134         * gdk/win32/gdkfont.c
135         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
136         fonts and strings. Now works much better. You still have to
137         have a correct font selected, though. No fontset emulation yet.
138
139 1999-10-19  Tor Lillqvist  <tml@iki.fi>
140
141         * gtk/maketypes.awk: Use G_OS_WIN32.
142
143         * gtk/gtk.def: Add some missing entry points. Also some non-public
144         ones, but PyGTK porter claims to need them.
145
146         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
147         built-in type generation.
148
149 1999-10-14  Tor Lillqvist  <tml@iki.fi>
150
151         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
152         GDK_FONT_FONT fonts (which is all we have for now, we don't
153         emulate fontsets). The X11 version uses plain XDrawString in that
154         case, too. The string passed to gdk_draw_text_wc seems to be in
155         fact (at least, when used by gtkentry and gtktext) either in a
156         single-byte charset, or a DBCS. Not Unicode.
157
158         This fixes the problem in gtkfontsel, where even if you had
159         selected a font with a non-Latin1 charset (windows-greek, for
160         instance), the preview still used Latin-1 glyphs.
161
162         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
163         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
164         (gdk_font_load): Recognize the demibold etc weights, even if we
165         don't have the corresponding constants in the headers.
166         (gdk_font_hash_insert): Use same hash mechanism as in the X11
167         version. Should save font resources a bit, when we don't have
168         multiple HFONTs for the same font.
169
170         * gdk/win32/gdkprivate.h: Add the names field as in the X11
171         version.
172
173 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
174
175         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
176         X values
177
178 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
179
180         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
181         layout support (as mentioned on
182         http://www.jcinteractive.com/gnome-ui/software/widgets/)
183
184 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
185
186         * gtk/fnmatch.c
187         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
188
189 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
190
191         * configure.in (ALL_LINGUAS): Added Galician (gl)
192
193 1999-10-05  Tor Lillqvist  <tml@iki.fi>
194
195         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
196
197         * gdk/win32/gdkcompat.c: New file, actually provide an
198         implementation for the deprecated functions. (Just temporarily.)
199
200         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
201
202         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
203
204         * gdk/win32/gdk.def gtk/gtk.def: Updates.
205
206 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
207
208         * configure.in: Added "uk" to ALL_LINGUAS.
209         
210 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
211
212         * configure.in: correct checking for BeOS check
213
214         * gdk/gdktypes.h
215         * gtk/fnmatch.c
216         * gtk/gtkfilesel.c
217         * gtk/gtkitemfactory.c
218         * gtk/gtkmain.[ch]
219         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
220
221 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
222
223         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
224         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
225         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
226         by Bulgarian). 
227
228 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
229
230         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
231         Fix a reference to window_private->destroyed.   
232
233         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
234         (ugly) setting of an internal GdkWindow member to use
235         a _slightly_ cleaner macro.
236
237         * gdk/gdkprivate.h: Split GdkWindowPrivate into
238         GdkDrawablePrivate and GdkWindowPrivate.
239         Add extra macros for accessing GDK_DRAWABLE_ components.
240
241         * *.[ch]: Massive adjustments for the above, use the
242         new macros in a lot of places.
243
244 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
245
246         * gdk/gdktypes.h: Make GdkDrawable the base type,
247         not GdkWindow.
248
249 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
250
251         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
252
253 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
254
255         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
256
257 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
258
259         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
260         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
261
262         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
263
264         * docs/gtk-config.1: Now autogenerated.
265         * docs/Changes-1.4.txt: started
266         
267 1999-10-03  Tor Lillqvist  <tml@iki.fi>
268
269         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
270         to #ifdef also here.
271
272         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
273         Owen did to the X11 backend.
274
275         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
276         ScrollWindowEx when blitting inside a window, it can't be correct
277         in the general case.
278
279         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
280         WM_GETMINMAXINFO is easier.
281
282         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
283         depth equal to the bitspixel value, not the visual's depth.
284
285         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
286         to 24 even if the bitspixel value is 32.
287
288         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
289         need to check for depth==32 when bpp==32, depth will always be 24.
290
291 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
292
293         * docs/Changes-1.4.txt: Started
294         
295         * gtk/Makefile.am (gdk_headers): Include all the new headers.
296
297         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
298         
299         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
300         into C file.
301         
302         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
303         header to gdkinputprivate.h.
304
305         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
306         unused since before 1.2.
307
308 1999-09-30  Tor Lillqvist  <tml@iki.fi>
309
310         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
311         expand possible hex escapes in the font family (put there by
312         logfont_to_xlfd if the font name isn't a legal XLFD font family,
313         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
314         On Win32, add hex escapes here, too.
315
316 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
317
318         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
319         to #ifdef GDK_WINDOWING_X11.
320
321 [ Merges from gtk-1-2 ]
322
323 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
324
325         * configure.in: fixed "GNU Make" check to pass with new make version
326         3.77.95.
327
328 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
329
330         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
331         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
332         AM_PATH_GTK() macros don't get confused by the -pre1.
333
334 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
335
336         * configure.in (REBUILD): Change check for perl5
337           to check explicitely for v >= 5.002. (5.001
338           does not work with our scripts.)
339
340 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
341
342         * configure.in: evaluate $PERL for the perl version check. added
343         --disable-rebuilds to give the user an option to completely disable
344         any source autogeneration rules.
345
346 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
347
348         * configure.in: evaluate $ac_make when checking for GNU Make.
349
350 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
351
352         * docs/Makefile.am: added generation.txt.
353
354         * Makefile.am: require automake 1.4, build README from README.in and
355         INSTALL from INSTALL.in in dist-hook.
356         
357         * README.in:
358         * INSTALL.in: new files to autogenerate README and INSTALL from.
359
360         * configure.in: figure whether we have GNU Make
361
362         * docs/generation.txt: minor additions/corrections.
363
364 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
365
366         * docs/gtkfaq.sgml: FAQ Update
367
368 July 30, 1999 Elliot Lee <sopwith@redhat.com>
369         
370         * configure.in: Fix autoconf warnings about cross compilation by
371         trying to provide sane defaults for AC_TRY_RUN.
372
373 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
374
375         * ltconfig
376         * ltmain.sh: upgrade to libtool 1.3.3
377
378 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
379
380         * INSTALL: Indicate that the --with-glib= configure
381         time flag is unsupported.
382
383 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
384
385         * docs/generation.txt: Added a file that gives
386         documenation about the autogeneration process for
387         various autogenerated files.
388         
389 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
390
391         * configure.in (LIBS): Look for libgmodule in the
392         right location.
393
394 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
395
396         * docs/gtk_tut.sgml: Removed references to
397         code examples in my directory on gtk.org as
398         they should all be in the tutorial now.
399
400         * docs/gtk_tut.sgml: Added sources for dial-test
401         and scribble-xinput programs that were previously
402         missing.
403
404 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
405
406         * TODO: Added entry about menu keyboard navigation, removed
407         some finished items.
408
409 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
410
411         * acinclude.m4: Standardize on func_dgettext
412         not func_gettext, so that the checks for dgettext
413         actually are paid attention to.
414
415 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
416
417         * configure.in (LIBS): Add $INTLLIBS into $LIBS
418         directly, rather than repeating the checks for
419         gettext.
420
421         * INSTALL: Added information about gettext and
422         NLS support.
423
424         * acinclude.m4 (LIBM): Check for dgettext, not
425         just gettext. This should hopefully fix things wrt
426         systems with old versions of GNU gettext installed.
427
428 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
429
430         * configure.in (LIBS): Look for libgmodule in the
431         right location.
432
433 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
434
435         * autogen.sh: add --enable-maintainer-mode
436
437         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
438
439 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
440
441         * docs/gtk-config.1.in:
442           docs/Makefile.am:
443           configure.in: gtk-config is now generated.
444
445         * docs/gtk-config.1: Removed, now generated.
446
447 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
448
449         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
450         handle CreateNotify itself, still put out a debuging message for
451         --gdk-debug=events. made the ReparentNotify debugging message more
452         verbose.
453         wrap xcoords translation for ConfigureEvents into an error trap,
454         a destroy event may already be pending, and in that case, the
455         actuall coordinate values are not at all critical.
456
457 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
458
459         * gdk/gdkcc.c: Stop leaking the color_hash all over
460         the place. Simplify and improve the logic.
461
462 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
463
464         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
465         for prototypes and function implementations consistent (reported
466         by Tomas Ogren).
467
468 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
469
470         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
471         send_event set in debugging output.
472         (gdk_compress_exposures): default initialize the event so we don't
473         operate on bogus values (namely send_event).
474
475 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
476
477         * gdk/gdkwindow.c: When we receive an unexpected
478         destroy notify on one of our windows, don't just
479         warn about it, also mark our windows as destroyed.
480
481 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
482
483         * gdk/gdkfont.c (gdk_font_hash_insert): Add
484           name => font and name => fontset hashes. The 
485           name => fontset hash is a _big_ win since we
486           weren't previously caching fontsets at all and loading
487           fontsets is expensive. The name => font hash
488           is less of a win, but it does save us from doing
489           repeated XQueryFont calls on the same font.
490
491         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
492           list so we can remove font/fontset from hash.
493
494 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
495
496         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
497           and slightly confusing test. [ XInternAtom (,,TRUE)
498           will never return None ].
499
500 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
501
502         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
503           gdk/gdkwindow.c (gdk_window_set_hints):
504
505         Don't omit setting the properties if flags == 0 -
506         there may be an existing set of properties there
507         already. (Very old bug. Would it be better to
508         delete the property instead?)
509
510         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
511           spelling error in comment.
512
513 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
514
515         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
516           to avoid stomping over gdk_error_warnings.
517
518         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
519           as (bits_per_pixel + 7) / 8. This gives the same
520           result as before for multiples of 8, but actually
521           a "reasonable" value for 1bit or 4bit displays.
522
523 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
524
525         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
526         GNU Make.
527
528 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
529
530         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
531         discarding configure events.
532
533 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
534
535         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
536         refcount is greater than zero.
537
538         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
539
540         * gdk/gdkfont.c (gdk_font_unref): Likewise.
541
542         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
543
544         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
545
546 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
547
548         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
549         that format 32 => sizeof(item) == 4. It really is
550         sizeof(long).
551
552 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
553
554         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
555         core dump at all on X IO errors, only core dump
556         if --enable-debug for X errors.
557
558 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
559
560         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
561         unknown window:" message. disabled ConfigureNotify discarding code,
562         because it led to events being processed out of order.
563
564 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
565
566         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
567
568         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
569         we export this function, supress error warnings and don't reset the
570         error code in the first half of this function.
571
572         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
573         code (instead of just -1) so gdk_error_trap_pop() reveals something
574         actually informative about the error that happened.
575
576         * gdk/*.c:
577         don't rely on gdk_error_code being -1 if an error occoured, but just
578         gdk_error_code != 0.
579
580 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
581
582         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
583         pointer *before* invoking the filter function, so we at least don't
584         crash if a filter is removed that is currently executed. window filters
585         *really* need to be made truely reentrant at some point.
586
587 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
588
589         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
590         PropertyNotify debug messages.
591
592 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
593         
594         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
595         
596         * gdk/gdkim.c: Fix cut-and-paste errors for 
597         x/y and PreeditAttributes/StatusAttributes.
598
599 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
600
601         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
602         G_MAXINT to 2^16 to alleviate overflow problems in
603         various window managers.
604
605 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
606
607         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
608         for fontsets.
609
610 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
611
612         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
613         Initialize size_hints.x and size_hints.y because kwm
614         brokenly pays attention to them.
615         (Bug #1181 -  Lars Heete <hel@admin.de>)
616
617 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
618
619         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
620         return value of gdk_list_visuals(). 
621         (Bug #1193 - Morten Welinder <terra@diku.dk>)
622
623 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
624
625         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
626         XSetIMValues to (void *) when comparing to NULL, to workaround
627         the problem of some compilers barfing since older X headers don't
628         have the prototype for it.
629
630 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
631
632         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
633         for pseudocolor where colormap->colors was double
634         allocated.
635
636         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
637         color value in the hash table with the pixel filled
638         in so when we do later hash table lookups, the color
639         value is correct.
640         
641 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
642
643         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
644         making the call
645
646 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
647
648         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
649         pointed out by Morten Welinder <terra@diku.dk>.
650
651 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
652
653         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
654           default filter from the list
655
656 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
657
658         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
659           default filter from the list
660
661 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
662
663         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
664
665         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
666         g_strdup_printf instead of calcing the length separately
667
668 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
669
670         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
671         that we don't do in many other places. (Fixing duplicate 
672         #include of config.h)
673
674         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
675         Otherwise, #ifndef XINPUT_NONE check in the latter
676         doesn't work. (Bug #546)
677
678 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
679
680         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
681         "None" case insensitive.
682
683 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
684
685         * gdk/gdkselection.c: 
686         Add error traps so if the other end of the connection
687         dies, we survive.
688
689 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
690
691         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
692         dest_xid field into two fields - one for the window
693         to send in messages, one to indicate the last looked
694         up window for caching purposes. This is needed, so
695         that Leave messages get the correct window.
696
697 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
698
699         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
700         Fix warning created by people mucking around
701         with the gsource API.
702
703         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
704         Change mapping between GIOCondition and GdkInputCondition
705         to match the way the Linux kernel does it. This should
706         fix problems where closed pipes were no longer signalling
707         GDK_INPUT_READ on systems with a native poll().
708
709 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
710
711         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
712         explicitly for the string "None" - it is in the XPM
713         spec and some servers treat unknown colors in odd ways
714         (like asking the user!)
715
716 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
717
718         * gdk/gdkevents.c: made "->" into a "." of previous change so
719         it compiles
720
721 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
722
723         * gdk/gdkevents.c (gdk_compress_exposures): Set the
724         window field of the event structure before calling
725         user filters.
726
727 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
728
729         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
730         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
731
732 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
733
734         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
735         intermediate text property - prevents major memory
736         leak when gdk_use_mb.
737         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
738
739 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
740
741         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
742         gtk-a-higuti-990322-[0-3]
743
744         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
745         sizeof(wchar_t) != sizeof (GdkWChar)
746
747         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
748         that was causing -DX_LOCALE not to work.
749
750         * gtk/gtkrc.c (gtk_rc_init):
751         X_LOCALE will never have LC_MESSAGES defined
752
753         * gdk/gdk.c (gdk_init_check):
754         Remove --xim-preedit and --xim-status from argv properly.
755
756         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
757         that the client window is present on the X server
758         before we pass it to the input method.
759
760 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
761
762         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
763         if --display is specified on the command line, than
764         the drag window will not be created on that display.
765         
766 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
767
768         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
769         lookups with only_if_exists == TRUE were inserting
770         bogus values into the atom cache.
771
772 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
773
774         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
775         then reset it to NULL.
776
777         * gdk/gdkcolor.c:
778         (gdk_colors_free): 
779         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
780         key for g_hash_table_remove() in both functions, this prevents us
781         from accessing possibly uninitialized portions of a GdkColor structure
782         where we are only interested in its pixel value.
783
784 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
785
786         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
787         font hash table, if we have a GdkFontPrivate entry for this font
788         already, simply increment its reference count, provided by Olaf Dietsche
789         <olaf.dietsche+list.gtk@netcologne.de>.
790
791 1999-09-21  Tor Lillqvist  <tml@iki.fi>
792
793         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
794         just to be sure.
795
796         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
797         unused variables, leftovers from the X11 version.
798
799         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
800
801         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
802         downcase fields on X11.
803
804 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
805         
806         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
807         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
808
809 1999-09-17  Tor Lillqvist  <tml@iki.fi>
810
811         * gdk/win32/gdk.def: Add gdk_threads_mutex.
812
813         * gtk/makefile.msc: Correct path to libintl.
814
815         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
816         use of gint vs. int, and gint vs. gboolean in headers and
817         definitions. Use GtkType for the *_get_type functions. Note that
818         these changes preserve binary compatibility.
819
820         * gdk/gdk.c
821         * gdk/win32/gdk.c
822         * gdk/gdk.h: Fix inconsistencies: gint vs int.
823
824         * gtk/gtkmain.c
825         * gtk/gtkclist.c
826         * gtk/gtkmenufactory.c
827         * gtk/gtknotebook.c
828         * gtk/gtkwidget.c: Fix inconsistencies, also gint
829         vs. gboolean.
830
831         * gtk/gtkcolorsel.[ch]
832         * gtk/gtkcombo.[ch]
833         * gtk/gtkdrawingarea.[ch]
834         * gtk/gtkgamma.[ch]
835         * gtk/gtkhandlebox.[ch]
836         * gtk/gtkhpaned.[ch]
837         * gtk/gtkhruler.[ch]
838         * gtk/gtkplug.[ch]
839         * gtk/gtkpreview.[ch]
840         * gtk/gtkruler.[ch]
841         * gtk/gtksocket.[ch]
842         * gtk/gtkstatusbar.[ch]
843         * gtk/gtktoolbar.[ch]
844         * gtk/gtkvbbox.[ch]
845         * gtk/gtkvpaned.[ch]
846         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
847         functions.
848
849         * gtk/gtkgamma.h: Fix bug, missing () in call of
850         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
851
852 1999-09-14  Tor Lillqvist  <tml@iki.fi>
853
854         * gdk/gdkcolor.c (gdk_colormap_new)
855         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
856         colormap->colors was allocated twice.
857
858         * gdk/win32/gdk.c: Remove some unused stuff.
859
860         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
861         colormap.
862
863         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
864         * gtk/gtklabel.h (gtk_label_get_type)
865         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
866         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
867         in a couple of places, not guint.
868
869 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
870
871         * configure.in,po/et.po: added Estonian language file
872
873 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
874
875         * configure.in,po/da.po: added Danish file
876
877 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
878
879         * docs/gtkfaq.sgml: Minor FAQ Update
880
881 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
882
883         * docs/gtkfaq.sgml: FAQ update
884
885 1999-08-27  Tor Lillqvist  <tml@iki.fi>
886
887         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
888         way to get window contents continually refreshed while resizing. I
889         didn't like the effects myself, so it's not on by default.
890
891         * gdk/win32/gdkprivate.h: New flag variable
892         gdk_event_func_from_window_proc, FALSE by default.
893
894         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
895         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
896         are passed --gdk-event-func-from-window-proc.
897
898         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
899         and we have am event_func, call it instead of enqueing the event.
900
901 1999-08-23  Tor Lillqvist  <tml@iki.fi>
902
903         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
904         Kelley: Set expose_count in GdkEventExposes correctly.
905
906         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
907         MULTIPLE_WINDOW_CLASSES).
908
909         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
910         for bug in NT, apparently NT *does* draw the end pixel, too, in
911         LineTo with a one-pixel pen, so we don't have to do it ourselves.
912
913 1999-08-21  Tor Lillqvist  <tml@iki.fi>
914
915         Improvements by Hans Breuer: 
916
917         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
918
919         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
920         CS_?REDRAW flags as they cause lots of (late) redraws when "show
921         window contents while dragging" is turned on. Allocate at least
922         one unique class for every GdkWindowType. If support for single
923         window-specific icons is ever needed (eg. Dialog specific), every
924         such window should get its own class.
925
926 1999-08-19  Tor Lillqvist  <tml@iki.fi>
927
928         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
929         error that caused crashes.
930
931 1999-08-17  Tor Lillqvist  <tml@iki.fi>
932
933         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
934         window, use ScrollWindowEx, and call UpdateWindow. This prevents
935         bugs when for instance part of the window was outside the
936         display. Thanks to Philippe Colantoni for finding and fixing this.
937
938 1999-08-16  Tor Lillqvist  <tml@iki.fi>
939
940         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
941         endpoint calculations which were totally wrong. (A little RTFMing
942         helps a lot ;-)
943
944         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
945         from a separate directory, not from gettext, because of licensing
946         issues (we want to use the LGPL version).
947
948         * README.win32: Mention the intl from glibc vs from gettext issue.
949
950 1999-08-13  Tor Lillqvist  <tml@iki.fi>
951
952         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
953         in the key event handling: Now AltGr chars work again. Also,
954         now Alt-digits are passed up as well as Control-digits.
955         Pass keypad plus and minus as normal plus and minus.
956
957 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
958
959         * docs/gtkfaq.sgml: FAQ Update
960
961 1999-07-25  Tor Lillqvist  <tml@iki.fi>
962
963         * README.win32
964         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
965         the Wintab SDK.
966
967         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
968         OK, but getting closer. Guard against bogus tilt data from Wacom
969         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
970         enable easier building without Wintab.
971
972         * gdk/win32/gdkinput.h
973         * gdk/win32/gdkevents.c 
974         * gdk/win32/gdkwindow.c: Minor changes related related to above.
975         
976         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
977         code. As we have just one visual on Win32, no sense to have it in a
978         table, and no need for the hash table.
979
980         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
981         better on white background.
982
983 1999-07-21  Tor Lillqvist  <tml@iki.fi>
984
985         * README.win32: Update gcc build instructions. Mention gettext is
986         GPL.
987
988         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
989         supported cursor size with GetSystemMetrics.
990
991         * gdk/win32/gdkfont.c
992         * gtk/gtkfontsel.c: Guard against some font weight and charset
993         symbols being undefined (in mingw32 headers).
994
995         * gdk/win32/makefile.cygwin
996         * gtk/makefile.cygwin
997         * gtk/gtkthemes.c: No longer need to have differently named
998         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
999
1000 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
1001
1002         * docs/gtkfaq.sgml: Long awaited FAQ update.
1003
1004 1999-07-15  Tor Lillqvist  <tml@iki.fi>
1005
1006         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
1007         it. Obscure bit manipulation needed.
1008
1009         * gdk/win32/gdkevents.c: Logging.
1010         
1011         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
1012         style (file name include compiler name) for theme engines.
1013
1014 1999-07-13  Tor Lillqvist  <tml@iki.fi>
1015
1016         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
1017
1018         * gdk/win32/gdkevents.c: Fix long-standing bug in key
1019         events. The key.string wasn't zero-terminated, still we strdup'ed
1020         it in gdk_event_copy(). Synthesize crossing events for button
1021         events before possible propagation.
1022
1023         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
1024
1025         * gdk/win32/makefile.cygwin
1026         * gtk/makefile.cygwin: Use new DLL naming style for the
1027         GCC-compiled ones.
1028
1029         * gdk/win32/makefile.msc
1030         * gtk/makefile.msc: Cosmetics mostly.
1031
1032         * gtk/gtk.def: Add missing entry points.
1033
1034         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
1035
1036 1999-07-09  Tor Lillqvist  <tml@iki.fi>
1037
1038         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
1039         or height is zero. Don't print a warning if Pie or Arc fails, they
1040         always fail (?) for very narrow ellipses.
1041
1042         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
1043         the part or the destination window corresponding to source area
1044         outside of the source drawable's boundary.
1045
1046         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
1047         anything if less than two points.
1048
1049         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
1050         return NULL. Gtk cut-and-paste inside a single program works
1051         better this way. (It always gets the clipboard contents from
1052         Windows, not from its own copy, which is cleared anyway. I can't
1053         say I fully understand what happens... Emulating the X selection
1054         and property stuff is a bit of a mess.)
1055
1056         * gdk/win32/gdkevents.c
1057         * gdk/win32/gdkproperty.c: A bit more verbose logging.
1058
1059         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
1060         that never got deleted). Revamp gdk_region_shrink.
1061
1062         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
1063         after use.
1064
1065         * gtk/gtk.def: Add some missing entry points.
1066
1067         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
1068         component.
1069
1070 1999-07-04  Tor Lillqvist  <tml@iki.fi>
1071
1072         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
1073         Control-digits specially.
1074
1075 1999-07-03  Tor Lillqvist  <tml@iki.fi>
1076
1077         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
1078
1079 1999-06-28  Tor Lillqvist  <tml@iki.fi>
1080
1081         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
1082         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
1083         finding this.)
1084
1085 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
1086
1087         * gtk+.spec.in: Corrected some typos in files section.
1088         
1089 1999-06-15  Tor Lillqvist  <tml@iki.fi>
1090
1091         * README.win32: Mention using GNU gettext.
1092         * config.h.win32: Enable NLS stuff.
1093         * gtk/makefile.msc: Use GNU gettext.
1094         * gdk/win32/gdkdnd.c: Minor header reorg.
1095         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
1096         cosmetics.
1097         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
1098         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
1099
1100 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
1101
1102         * acinclude.m4
1103         * config.guess
1104         * config.status
1105         * ltconfig
1106         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
1107
1108 1999-05-30  Tor Lillqvist  <tml@iki.fi>
1109
1110         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
1111         SafeAdjustWindowRectEx. Don't override all calls to
1112         AdjustWindowRectEx by it, but use it only in two places: When
1113         creating a new top-level window and when moving a top-level
1114         window.
1115
1116         Use screen coordinate rectangle, not client rectangle, in
1117         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
1118         when we try to place a window so that the decoration (mainly,
1119         title bar) isn't visible.
1120
1121         These changes fix the bug that showed up for instance as the
1122         GIMP's saved top-level windows moving right and down (by an amount
1123         equal to the window decoration) for each session. This bug showed
1124         up also in testgtk's "Saved Position".
1125
1126         gdk_window_resize also redone a bit.
1127
1128 1999-05-25  Tor Lillqvist  <tml@iki.fi>
1129
1130         * gtk/testgtkrc: Add (commented out) Windows-style theme
1131         include line.
1132
1133         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
1134
1135 1999-05-18  Tor Lillqvist  <tml@iki.fi>
1136
1137         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
1138         gdkx.h to a gdk subdirectory, so that applications can include
1139         these with <gdk/*.h> without trouble.
1140
1141         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
1142         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
1143         have their bitmap destroyed.
1144
1145         * gdk/win32/gdk.def: Add gdk_root_parent.
1146
1147 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1148
1149         * configure.in
1150           gtk-config.in
1151           ltconfig
1152           ltmain.sh     
1153           gtk/Makefile.am: changes to compile nicely (with xlib) 
1154           on BeOS
1155
1156 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
1157
1158         * acinclude.m4
1159         * config.guess
1160         * config.sub
1161         * ltconfig
1162         * ltmain.sh: upgrade to libtool 1.3
1163
1164 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
1165
1166         * gtk/gtkclist.c:
1167         * gtk/gtkctree.c: merges from gtk-1-2
1168
1169 1999-04-25  Tor Lillqvist  <tml@iki.fi>
1170
1171         Support added for building using a GNU toolchain on Win32,
1172         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
1173
1174         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
1175         * config.h.win32: Changes for gcc.
1176         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
1177         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
1178         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
1179         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
1180         Protect shl stuff unavaiilable with mingw32 headers.
1181         * gdk/win32/gdkevents.c: Fix typo.
1182         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
1183         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
1184         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
1185         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
1186         the mingw32 headers.
1187         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
1188         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
1189         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
1190         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
1191         Test for NATIVE_WIN32, not _MSC_VER.
1192         * gtk/gtkmain.c: No use warning about developer version on Win32,
1193         there aren't any non-developer versions anyhow.
1194         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
1195         * gtk/makefile.msc: Use pthread from another directory. Minor other
1196         changes. 
1197
1198 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
1199
1200         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
1201           default filter from the list
1202
1203 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
1204
1205         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
1206          when gtk_widget_grab_default() is called for a widget that
1207          is not within a GtkWindow.
1208
1209 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
1210
1211         * docs/gtk_tut.sgml, examples/clist.c: use a
1212           scrolled window in the clist example. Minor
1213           tutorial fixes.
1214
1215 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
1216
1217         * docs/gtk_tut.sgml: Style check from David King
1218           <dking@youvegotmail.net>
1219
1220 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
1221
1222         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
1223         compile with unknown value of GDK_WINDOWING
1224
1225 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
1226
1227         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
1228         after the rule is fired.
1229         (install-exec-local): Install gdkconfig.h only if the contents are
1230         different from the currently installed gdkconfig.h.
1231
1232 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
1233
1234         * gdk/Makefile.am (configexecincludedir): Rename from 
1235         configincludedir so that gdkconfig.h will be installed 
1236         as part of `make install-exec'. 
1237
1238 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
1239
1240         * acinclude.m4
1241         * config.guess
1242         * config.sub
1243         * ltconfig
1244         * ltmain.sh: upgrade to libtool 1.2f
1245
1246         * autogen.sh: libtool is not required to autogen gtk+
1247
1248         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
1249         needed)
1250
1251 1999-03-18  Tor Lillqvist  <tml@iki.fi>
1252
1253         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
1254         declaring gdk variables exported/imported from the DLL. New image
1255         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
1256         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
1257         GDK_DRAG_PROTO_OLE2.
1258
1259         * gdk/gdk.h: Merge in Win32 version: Two new functions,
1260         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
1261         declared only for the Win32 version, but could be in the X11
1262         version as well. (Needed for a Xlib-less gdk_imlib.)
1263         gdk_color_hash should have only one parameter. Declare
1264         gdk_threads_mutex with GDKVAR.
1265         
1266         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
1267         just one parameter.
1268
1269         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
1270         per pixel, not bits.
1271
1272         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
1273         Fetch bpp (which means bits-per-pixel here) from another place on
1274         Win32. Accept also depth==32 (which we might get on Win32) with
1275         bpp==32.
1276
1277         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
1278         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
1279         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
1280         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
1281         in the backend-dependent directory, not in the common gdk
1282         directory.
1283
1284         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
1285         headers.
1286
1287 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
1288
1289         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
1290         want to use the Gtk+ devel version (which is true, and yes - even i am
1291         currently working with the 1.2.x branch). so everyone reading this, you
1292         probably want to issue
1293         cvs checkout -r glib-1-2 glib
1294         and
1295         cvs checkout -r gtk-1-2 gtk+
1296         as your next two comands.
1297
1298 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
1299
1300         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
1301         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
1302
1303         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
1304         file. strongly deprecated the GTK_HAVE_* macros, we provide
1305         GTK_CHECK_VERSION() for people that need to check for certain
1306         Gtk+ versions.
1307
1308         * gtk/gtkcompat.h: removed this from CVS.
1309         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
1310         idea right from the start, it just didn't seem like that back then.
1311
1312 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
1313
1314         * merges from gtk-1-2:
1315
1316 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
1317
1318         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
1319         item factory class has been created.
1320         (gtk_item_factory_parse_rc): likewise.
1321
1322         * gtk/gtkmenu.c:
1323         keep proper references for old_active_menu_item.
1324         (gtk_menu_reparent): unset the usize of the new parent,
1325         so the menu can sanely be size requested and we don't get nasty screen
1326         artefacts upon next reparentation.
1327         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
1328         enter notify. only synthesize enter notifies if the pointer really is
1329         inside the event window.
1330         (gtk_menu_popdown): use gtk_menu_shell_deselect().
1331         (gtk_menu_popup): move the background setting stuff into
1332         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
1333
1334         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
1335         gtk_menu_shell_select_item() to select the new item.
1336         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
1337         do the right thing for deselection as well.
1338
1339 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
1340
1341         * gtk/gtkwidget.[hc]:
1342         (gtk_widget_accelerators_locked): return whether a widget's accelerators
1343         are locked.
1344
1345         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
1346         existing accelerators if the widget's accelerators are locked.
1347
1348 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
1349
1350         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
1351
1352         * gtk/gtkmenu.c: truely forward key press and key release events to
1353         the menu widget from the toplevel or tearoff window. we can't simply
1354         connect to that, we need to stop further processing of the events as
1355         well.
1356
1357 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
1358
1359         * gtk/gtkmenu.c:
1360         (gtk_menu_key_press): pass event->keyval, event->state to
1361         gtk_accelerator_valid, instead of event->keyval twice.
1362         refuse to install single letter accelerators for menus that use
1363         single letter shortcuts.
1364
1365         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
1366         gtk_menu_ensure_uline_accel_group().
1367
1368         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
1369         which will always return an uline accel group, made
1370         gtk_menu_get_uline_accel_group() return NULL if the group isn't
1371         yet created.
1372
1373 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
1374
1375         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
1376
1377         * gtk/gtkclist.c (gtk_clist_column_title_passive):
1378         Leave button sensitive, trap  button_press, button_release,
1379         motion_notify, enter_notify and leave_notify events instead.
1380         (gtk_clist_column_title_active): disconnect event handler.
1381         (gtk_clist_drag_data_get): fixed memory leak. Reported by
1382         Guillaume Laurent <glaurent@worldnet.fr>
1383
1384 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
1385
1386         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
1387         width/height mixups.
1388
1389         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
1390         if needed.
1391
1392 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
1393
1394         * gtk/testgtk.c (create_item_factory): unref the item factory after
1395         window's destruction.
1396
1397         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
1398         count on the menu shell around the menu item's activation, since the
1399         signal emission may cause menu shell destruction.
1400
1401         * gtk/gtkitemfactory.c:
1402         the previous code leaked one accel group per menu. we use
1403         gtk_menu_get_uline_accel_group() now to fix that, and with that
1404         also create the underline accelerator group of the menus only if
1405         required (i.e. an underline accelerator has been specified).
1406         (gtk_item_factory_construct):
1407         (gtk_item_factory_create_item): removed code that would create an
1408         extra accel group for the menu (and leak references).
1409         (gtk_item_factory_create_item): adapted the underline accelerator
1410         installation code to properly feature gtk_menu_get_uline_accel_group().
1411
1412         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
1413         menu->accel_group, this may return NULL if the accelerator group
1414         hasn't been set yet.
1415         added gtk_menu_get_uline_accel_group() to retrive the underline
1416         accelerator group of the menu, this will be created on demand
1417         and proper care is taken about its reference count.
1418
1419         * gtk/gtkitemfactory.h:
1420         * gtk/gtkitemfactory.c:
1421         dumped the approach of keeping a widgets by action list on the
1422         factory since the factory<->widget destroy negotiation didn't work
1423         and would be hard to get going at all. instead we keep a list of
1424         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
1425         persistant throughout a program's life time).
1426         also, i removed the static const gchar *key_* variables, and made
1427         them inline strings (they weren't actually used anyways).
1428         (gtk_item_factory_add_item): update ifactory->items.
1429         (gtk_item_factory_destroy): destroy ifactory->items (and remove
1430         the item factory pointer from the remaining ifactory widgets).
1431         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
1432         list to find the widget.
1433         (gtk_item_factory_get_item): new function that works around
1434         gtk_item_factory_get_widget() limitations, this function will only
1435         return menu items, even for <Branch> entries.
1436
1437 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
1438
1439         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
1440         font hash table, if we have a GdkFontPrivate entry for this font
1441         already, simply increment its reference count, provided by Olaf Dietsche
1442         <olaf.dietsche+list.gtk@netcologne.de>.
1443
1444         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
1445         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
1446
1447 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
1448
1449         * gtk/gtkcontainer.c:
1450         (gtk_container_add_with_args):
1451         (gtk_container_addv):
1452         (gtk_container_add): before adding a child to a conatiner, make sure
1453         it is (default) constructed, this is neccessary because under certain
1454         circumstances the child will get relized and mapped immediatedly, in
1455         which case it has to be constructed already.
1456
1457 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
1458
1459         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
1460         values > 1 as TRUE also.
1461
1462 1999-03-16  Tor Lillqvist  <tml@iki.fi>
1463
1464         * README.win32: New file.
1465                 
1466         * configure.in: Check for lstat.
1467
1468         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
1469         completeness.
1470
1471         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
1472
1473         * gtk/gtk.def: Removed CRs.
1474
1475         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
1476         ..\gdk\win32).
1477
1478         * gdk/win32/makefile.msc: Correct upwards relative paths.
1479         
1480 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
1481
1482         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
1483           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
1484           it was connecting a void function to expose_event and the int
1485           returning function to the draw signal
1486
1487 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
1488
1489         * configure.in:
1490         Use correct path to libgmodule.la when ref'ing uninstalled copy
1491         of glib.  (Already in stable branch, Bug #417)
1492
1493 1999-03-15  Tor Lillqvist  <tml@iki.fi>
1494
1495         Win32 merge and general portability stuff:
1496                 
1497         * acconfig.h,configure.in: Check for <sys/time.h>.
1498
1499         * gdk/win32: New directory (actually, been there for a while).
1500         
1501         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
1502         NATIVE_WIN32, and use these. Always case fold on Win32. No
1503         backslashed escapes on native Win32.
1504
1505         * gtk/{gtk.def,makefile.msc}: New files.
1506
1507         * gtk/Makefile.am: Add above new files.
1508         
1509         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
1510         instead of <strings.h>.
1511
1512         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
1513         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
1514         <unistd.h> appropriately.
1515
1516         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
1517         Use ABS() (from <glib.h>) instead of abs().
1518         
1519         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
1520         of gtk (and thus glib) headers, so that WIN32 will be
1521         defined. With MS C, include <direct.h> for mkdir prototype.
1522
1523         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
1524         some casts, needed by MS C.
1525
1526         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
1527         implemented).
1528
1529         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
1530         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
1531         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
1532
1533         * gtk/gtkmain.h: Mark variables for export/import on Win32.
1534                 
1535         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
1536         the event is not a hint, or its window is not the slider. Needed
1537         on Win32, at least.
1538
1539         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
1540         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
1541         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
1542         a subdirectory of the Windows directory as gtk system
1543         configuration directory.
1544
1545         * gtk/gtkselection.c: No chunks on Win32.
1546
1547         * gtk/gtksocket.c: Not implemented on Win32.
1548
1549         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
1550
1551         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
1552
1553         * gtk/maketypes.awk: Declare variables with a macro that expands to
1554         necessary export/import magic in the case of Win32.
1555                 
1556         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
1557
1558 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
1559
1560         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
1561         since those were meant only for gdki18n.h.  
1562         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
1563         for widechar tests.
1564         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
1565
1566 1999-03-13  Tor Lillqvist  <tml@iki.fi>
1567
1568         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
1569         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
1570
1571         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
1572         installed) to CFLAGS.
1573
1574         * gdk/Makefile.am: Add rules for gdkconfig.h.
1575
1576         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
1577         APIs.
1578
1579         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
1580         gdkx.h anyway when compiling for X11.
1581         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
1582         general): Merge in Win32 version.
1583         
1584         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
1585         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
1586         expansion (if we don't have HAVE_PWD_H), allow for drive
1587         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
1588         included code from Craig Setera's port to Win32 (the one that uses
1589         X11, and the cygwin dll), even if it probably will be abandoned.
1590
1591         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
1592         the user entered one herself.  This way one can complete *.h and
1593         don't get matches on any .help files, for instance.
1594         
1595 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
1596
1597         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
1598         font hash table, if we have a GdkFontPrivate entry for this font
1599         already, simply increment its reference count, provided by Olaf Dietsche
1600         <olaf.dietsche+list.gtk@netcologne.de>.
1601
1602         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
1603         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
1604
1605 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
1606
1607         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
1608         the number of calls to gdk_draw_point() (and thus to X) by
1609         clipping the points by hand.
1610
1611         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
1612         the clip parameter.
1613         (gtk_handle_box_paint): Only paint the handle if the expose area
1614         intersects it.
1615
1616 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
1617
1618         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
1619
1620 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
1621
1622         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
1623         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
1624
1625 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
1626
1627         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
1628          textmode (O_TEXT) for OS/2 version.
1629
1630 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
1631
1632         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
1633         GtkSpinButton, "input" and "output", to make the output more flexible.
1634         The user has to provide a mapping between adjustment->value and the
1635         output string (and vice versa, if the spin button is editable). 
1636         See testgtk for examples.
1637
1638 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
1639
1640         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
1641         new one.
1642         
1643         * configure.in: set gtk+ version to 1.3.0.