]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a way to get
[~andy/gtk] / ChangeLog.pre-2-6
1 1999-08-27  Tor Lillqvist  <tml@iki.fi>
2
3         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
4         way to get window contents continually refreshed while resizing. I
5         didn't like the effects myself, so it's not on by default.
6
7         * gdk/win32/gdkprivate.h: New flag variable
8         gdk_event_func_from_window_proc, FALSE by default.
9
10         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
11         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
12         are passed --gdk-event-func-from-window-proc.
13
14         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
15         and we have am event_func, call it instead of enqueing the event.
16
17 1999-08-23  Tor Lillqvist  <tml@iki.fi>
18
19         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
20         Kelley: Set expose_count in GdkEventExposes correctly.
21
22         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
23         MULTIPLE_WINDOW_CLASSES).
24
25         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
26         for bug in NT, apparently NT *does* draw the end pixel, too, in
27         LineTo with a one-pixel pen, so we don't have to do it ourselves.
28
29 1999-08-21  Tor Lillqvist  <tml@iki.fi>
30
31         Improvements by Hans Breuer: 
32
33         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
34
35         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
36         CS_?REDRAW flags as they cause lots of (late) redraws when "show
37         window contents while dragging" is turned on. Allocate at least
38         one unique class for every GdkWindowType. If support for single
39         window-specific icons is ever needed (eg. Dialog specific), every
40         such window should get its own class.
41
42 1999-08-19  Tor Lillqvist  <tml@iki.fi>
43
44         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
45         error that caused crashes.
46
47 1999-08-17  Tor Lillqvist  <tml@iki.fi>
48
49         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
50         window, use ScrollWindowEx, and call UpdateWindow. This prevents
51         bugs when for instance part of the window was outside the
52         display. Thanks to Philippe Colantoni for finding and fixing this.
53
54 1999-08-16  Tor Lillqvist  <tml@iki.fi>
55
56         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
57         endpoint calculations which were totally wrong. (A little RTFMing
58         helps a lot ;-)
59
60         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
61         from a separate directory, not from gettext, because of licensing
62         issues (we want to use the LGPL version).
63
64         * README.win32: Mention the intl from glibc vs from gettext issue.
65
66 1999-08-13  Tor Lillqvist  <tml@iki.fi>
67
68         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
69         in the key event handling: Now AltGr chars work again. Also,
70         now Alt-digits are passed up as well as Control-digits.
71         Pass keypad plus and minus as normal plus and minus.
72
73 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
74
75         * docs/gtkfaq.sgml: FAQ Update
76
77 1999-07-25  Tor Lillqvist  <tml@iki.fi>
78
79         * README.win32
80         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
81         the Wintab SDK.
82
83         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
84         OK, but getting closer. Guard against bogus tilt data from Wacom
85         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
86         enable easier building without Wintab.
87
88         * gdk/win32/gdkinput.h
89         * gdk/win32/gdkevents.c 
90         * gdk/win32/gdkwindow.c: Minor changes related related to above.
91         
92         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
93         code. As we have just one visual on Win32, no sense to have it in a
94         table, and no need for the hash table.
95
96         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
97         better on white background.
98
99 1999-07-21  Tor Lillqvist  <tml@iki.fi>
100
101         * README.win32: Update gcc build instructions. Mention gettext is
102         GPL.
103
104         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
105         supported cursor size with GetSystemMetrics.
106
107         * gdk/win32/gdkfont.c
108         * gtk/gtkfontsel.c: Guard against some font weight and charset
109         symbols being undefined (in mingw32 headers).
110
111         * gdk/win32/makefile.cygwin
112         * gtk/makefile.cygwin
113         * gtk/gtkthemes.c: No longer need to have differently named
114         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
115
116 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
117
118         * docs/gtkfaq.sgml: Long awaited FAQ update.
119
120 1999-07-15  Tor Lillqvist  <tml@iki.fi>
121
122         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
123         it. Obscure bit manipulation needed.
124
125         * gdk/win32/gdkevents.c: Logging.
126         
127         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
128         style (file name include compiler name) for theme engines.
129
130 1999-07-13  Tor Lillqvist  <tml@iki.fi>
131
132         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
133
134         * gdk/win32/gdkevents.c: Fix long-standing bug in key
135         events. The key.string wasn't zero-terminated, still we strdup'ed
136         it in gdk_event_copy(). Synthesize crossing events for button
137         events before possible propagation.
138
139         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
140
141         * gdk/win32/makefile.cygwin
142         * gtk/makefile.cygwin: Use new DLL naming style for the
143         GCC-compiled ones.
144
145         * gdk/win32/makefile.msc
146         * gtk/makefile.msc: Cosmetics mostly.
147
148         * gtk/gtk.def: Add missing entry points.
149
150         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
151
152 1999-07-09  Tor Lillqvist  <tml@iki.fi>
153
154         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
155         or height is zero. Don't print a warning if Pie or Arc fails, they
156         always fail (?) for very narrow ellipses.
157
158         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
159         the part or the destination window corresponding to source area
160         outside of the source drawable's boundary.
161
162         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
163         anything if less than two points.
164
165         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
166         return NULL. Gtk cut-and-paste inside a single program works
167         better this way. (It always gets the clipboard contents from
168         Windows, not from its own copy, which is cleared anyway. I can't
169         say I fully understand what happens... Emulating the X selection
170         and property stuff is a bit of a mess.)
171
172         * gdk/win32/gdkevents.c
173         * gdk/win32/gdkproperty.c: A bit more verbose logging.
174
175         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
176         that never got deleted). Revamp gdk_region_shrink.
177
178         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
179         after use.
180
181         * gtk/gtk.def: Add some missing entry points.
182
183         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
184         component.
185
186 1999-07-04  Tor Lillqvist  <tml@iki.fi>
187
188         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
189         Control-digits specially.
190
191 1999-07-03  Tor Lillqvist  <tml@iki.fi>
192
193         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
194
195 1999-06-28  Tor Lillqvist  <tml@iki.fi>
196
197         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
198         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
199         finding this.)
200
201 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
202
203         * gtk+.spec.in: Corrected some typos in files section.
204         
205 1999-06-15  Tor Lillqvist  <tml@iki.fi>
206
207         * README.win32: Mention using GNU gettext.
208         * config.h.win32: Enable NLS stuff.
209         * gtk/makefile.msc: Use GNU gettext.
210         * gdk/win32/gdkdnd.c: Minor header reorg.
211         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
212         cosmetics.
213         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
214         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
215
216 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
217
218         * acinclude.m4
219         * config.guess
220         * config.status
221         * ltconfig
222         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
223
224 1999-05-30  Tor Lillqvist  <tml@iki.fi>
225
226         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
227         SafeAdjustWindowRectEx. Don't override all calls to
228         AdjustWindowRectEx by it, but use it only in two places: When
229         creating a new top-level window and when moving a top-level
230         window.
231
232         Use screen coordinate rectangle, not client rectangle, in
233         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
234         when we try to place a window so that the decoration (mainly,
235         title bar) isn't visible.
236
237         These changes fix the bug that showed up for instance as the
238         GIMP's saved top-level windows moving right and down (by an amount
239         equal to the window decoration) for each session. This bug showed
240         up also in testgtk's "Saved Position".
241
242         gdk_window_resize also redone a bit.
243
244 1999-05-25  Tor Lillqvist  <tml@iki.fi>
245
246         * gtk/testgtkrc: Add (commented out) Windows-style theme
247         include line.
248
249         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
250
251 1999-05-18  Tor Lillqvist  <tml@iki.fi>
252
253         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
254         gdkx.h to a gdk subdirectory, so that applications can include
255         these with <gdk/*.h> without trouble.
256
257         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
258         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
259         have their bitmap destroyed.
260
261         * gdk/win32/gdk.def: Add gdk_root_parent.
262
263 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
264
265         * configure.in
266           gtk-config.in
267           ltconfig
268           ltmain.sh     
269           gtk/Makefile.am: changes to compile nicely (with xlib) 
270           on BeOS
271
272 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
273
274         * acinclude.m4
275         * config.guess
276         * config.sub
277         * ltconfig
278         * ltmain.sh: upgrade to libtool 1.3
279
280 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
281
282         * gtk/gtkclist.c:
283         * gtk/gtkctree.c: merges from gtk-1-2
284
285 1999-04-25  Tor Lillqvist  <tml@iki.fi>
286
287         Support added for building using a GNU toolchain on Win32,
288         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
289
290         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
291         * config.h.win32: Changes for gcc.
292         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
293         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
294         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
295         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
296         Protect shl stuff unavaiilable with mingw32 headers.
297         * gdk/win32/gdkevents.c: Fix typo.
298         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
299         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
300         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
301         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
302         the mingw32 headers.
303         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
304         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
305         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
306         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
307         Test for NATIVE_WIN32, not _MSC_VER.
308         * gtk/gtkmain.c: No use warning about developer version on Win32,
309         there aren't any non-developer versions anyhow.
310         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
311         * gtk/makefile.msc: Use pthread from another directory. Minor other
312         changes. 
313
314 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
315
316         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
317           default filter from the list
318
319 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
320
321         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
322          when gtk_widget_grab_default() is called for a widget that
323          is not within a GtkWindow.
324
325 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
326
327         * docs/gtk_tut.sgml, examples/clist.c: use a
328           scrolled window in the clist example. Minor
329           tutorial fixes.
330
331 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
332
333         * docs/gtk_tut.sgml: Style check from David King
334           <dking@youvegotmail.net>
335
336 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
337
338         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
339         compile with unknown value of GDK_WINDOWING
340
341 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
342
343         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
344         after the rule is fired.
345         (install-exec-local): Install gdkconfig.h only if the contents are
346         different from the currently installed gdkconfig.h.
347
348 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
349
350         * gdk/Makefile.am (configexecincludedir): Rename from 
351         configincludedir so that gdkconfig.h will be installed 
352         as part of `make install-exec'. 
353
354 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
355
356         * acinclude.m4
357         * config.guess
358         * config.sub
359         * ltconfig
360         * ltmain.sh: upgrade to libtool 1.2f
361
362         * autogen.sh: libtool is not required to autogen gtk+
363
364         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
365         needed)
366
367 1999-03-18  Tor Lillqvist  <tml@iki.fi>
368
369         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
370         declaring gdk variables exported/imported from the DLL. New image
371         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
372         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
373         GDK_DRAG_PROTO_OLE2.
374
375         * gdk/gdk.h: Merge in Win32 version: Two new functions,
376         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
377         declared only for the Win32 version, but could be in the X11
378         version as well. (Needed for a Xlib-less gdk_imlib.)
379         gdk_color_hash should have only one parameter. Declare
380         gdk_threads_mutex with GDKVAR.
381         
382         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
383         just one parameter.
384
385         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
386         per pixel, not bits.
387
388         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
389         Fetch bpp (which means bits-per-pixel here) from another place on
390         Win32. Accept also depth==32 (which we might get on Win32) with
391         bpp==32.
392
393         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
394         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
395         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
396         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
397         in the backend-dependent directory, not in the common gdk
398         directory.
399
400         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
401         headers.
402
403 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
404
405         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
406         want to use the Gtk+ devel version (which is true, and yes - even i am
407         currently working with the 1.2.x branch). so everyone reading this, you
408         probably want to issue
409         cvs checkout -r glib-1-2 glib
410         and
411         cvs checkout -r gtk-1-2 gtk+
412         as your next two comands.
413
414 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
415
416         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
417         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
418
419         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
420         file. strongly deprecated the GTK_HAVE_* macros, we provide
421         GTK_CHECK_VERSION() for people that need to check for certain
422         Gtk+ versions.
423
424         * gtk/gtkcompat.h: removed this from CVS.
425         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
426         idea right from the start, it just didn't seem like that back then.
427
428 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
429
430         * merges from gtk-1-2:
431
432 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
433
434         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
435         item factory class has been created.
436         (gtk_item_factory_parse_rc): likewise.
437
438         * gtk/gtkmenu.c:
439         keep proper references for old_active_menu_item.
440         (gtk_menu_reparent): unset the usize of the new parent,
441         so the menu can sanely be size requested and we don't get nasty screen
442         artefacts upon next reparentation.
443         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
444         enter notify. only synthesize enter notifies if the pointer really is
445         inside the event window.
446         (gtk_menu_popdown): use gtk_menu_shell_deselect().
447         (gtk_menu_popup): move the background setting stuff into
448         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
449
450         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
451         gtk_menu_shell_select_item() to select the new item.
452         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
453         do the right thing for deselection as well.
454
455 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
456
457         * gtk/gtkwidget.[hc]:
458         (gtk_widget_accelerators_locked): return whether a widget's accelerators
459         are locked.
460
461         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
462         existing accelerators if the widget's accelerators are locked.
463
464 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
465
466         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
467
468         * gtk/gtkmenu.c: truely forward key press and key release events to
469         the menu widget from the toplevel or tearoff window. we can't simply
470         connect to that, we need to stop further processing of the events as
471         well.
472
473 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
474
475         * gtk/gtkmenu.c:
476         (gtk_menu_key_press): pass event->keyval, event->state to
477         gtk_accelerator_valid, instead of event->keyval twice.
478         refuse to install single letter accelerators for menus that use
479         single letter shortcuts.
480
481         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
482         gtk_menu_ensure_uline_accel_group().
483
484         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
485         which will always return an uline accel group, made
486         gtk_menu_get_uline_accel_group() return NULL if the group isn't
487         yet created.
488
489 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
490
491         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
492
493         * gtk/gtkclist.c (gtk_clist_column_title_passive):
494         Leave button sensitive, trap  button_press, button_release,
495         motion_notify, enter_notify and leave_notify events instead.
496         (gtk_clist_column_title_active): disconnect event handler.
497         (gtk_clist_drag_data_get): fixed memory leak. Reported by
498         Guillaume Laurent <glaurent@worldnet.fr>
499
500 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
501
502         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
503         width/height mixups.
504
505         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
506         if needed.
507
508 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
509
510         * gtk/testgtk.c (create_item_factory): unref the item factory after
511         window's destruction.
512
513         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
514         count on the menu shell around the menu item's activation, since the
515         signal emission may cause menu shell destruction.
516
517         * gtk/gtkitemfactory.c:
518         the previous code leaked one accel group per menu. we use
519         gtk_menu_get_uline_accel_group() now to fix that, and with that
520         also create the underline accelerator group of the menus only if
521         required (i.e. an underline accelerator has been specified).
522         (gtk_item_factory_construct):
523         (gtk_item_factory_create_item): removed code that would create an
524         extra accel group for the menu (and leak references).
525         (gtk_item_factory_create_item): adapted the underline accelerator
526         installation code to properly feature gtk_menu_get_uline_accel_group().
527
528         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
529         menu->accel_group, this may return NULL if the accelerator group
530         hasn't been set yet.
531         added gtk_menu_get_uline_accel_group() to retrive the underline
532         accelerator group of the menu, this will be created on demand
533         and proper care is taken about its reference count.
534
535         * gtk/gtkitemfactory.h:
536         * gtk/gtkitemfactory.c:
537         dumped the approach of keeping a widgets by action list on the
538         factory since the factory<->widget destroy negotiation didn't work
539         and would be hard to get going at all. instead we keep a list of
540         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
541         persistant throughout a program's life time).
542         also, i removed the static const gchar *key_* variables, and made
543         them inline strings (they weren't actually used anyways).
544         (gtk_item_factory_add_item): update ifactory->items.
545         (gtk_item_factory_destroy): destroy ifactory->items (and remove
546         the item factory pointer from the remaining ifactory widgets).
547         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
548         list to find the widget.
549         (gtk_item_factory_get_item): new function that works around
550         gtk_item_factory_get_widget() limitations, this function will only
551         return menu items, even for <Branch> entries.
552
553 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
554
555         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
556         font hash table, if we have a GdkFontPrivate entry for this font
557         already, simply increment its reference count, provided by Olaf Dietsche
558         <olaf.dietsche+list.gtk@netcologne.de>.
559
560         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
561         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
562
563 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
564
565         * gtk/gtkcontainer.c:
566         (gtk_container_add_with_args):
567         (gtk_container_addv):
568         (gtk_container_add): before adding a child to a conatiner, make sure
569         it is (default) constructed, this is neccessary because under certain
570         circumstances the child will get relized and mapped immediatedly, in
571         which case it has to be constructed already.
572
573 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
574
575         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
576         values > 1 as TRUE also.
577
578 1999-03-16  Tor Lillqvist  <tml@iki.fi>
579
580         * README.win32: New file.
581                 
582         * configure.in: Check for lstat.
583
584         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
585         completeness.
586
587         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
588
589         * gtk/gtk.def: Removed CRs.
590
591         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
592         ..\gdk\win32).
593
594         * gdk/win32/makefile.msc: Correct upwards relative paths.
595         
596 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
597
598         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
599           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
600           it was connecting a void function to expose_event and the int
601           returning function to the draw signal
602
603 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
604
605         * configure.in:
606         Use correct path to libgmodule.la when ref'ing uninstalled copy
607         of glib.  (Already in stable branch, Bug #417)
608
609 1999-03-15  Tor Lillqvist  <tml@iki.fi>
610
611         Win32 merge and general portability stuff:
612                 
613         * acconfig.h,configure.in: Check for <sys/time.h>.
614
615         * gdk/win32: New directory (actually, been there for a while).
616         
617         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
618         NATIVE_WIN32, and use these. Always case fold on Win32. No
619         backslashed escapes on native Win32.
620
621         * gtk/{gtk.def,makefile.msc}: New files.
622
623         * gtk/Makefile.am: Add above new files.
624         
625         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
626         instead of <strings.h>.
627
628         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
629         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
630         <unistd.h> appropriately.
631
632         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
633         Use ABS() (from <glib.h>) instead of abs().
634         
635         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
636         of gtk (and thus glib) headers, so that WIN32 will be
637         defined. With MS C, include <direct.h> for mkdir prototype.
638
639         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
640         some casts, needed by MS C.
641
642         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
643         implemented).
644
645         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
646         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
647         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
648
649         * gtk/gtkmain.h: Mark variables for export/import on Win32.
650                 
651         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
652         the event is not a hint, or its window is not the slider. Needed
653         on Win32, at least.
654
655         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
656         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
657         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
658         a subdirectory of the Windows directory as gtk system
659         configuration directory.
660
661         * gtk/gtkselection.c: No chunks on Win32.
662
663         * gtk/gtksocket.c: Not implemented on Win32.
664
665         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
666
667         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
668
669         * gtk/maketypes.awk: Declare variables with a macro that expands to
670         necessary export/import magic in the case of Win32.
671                 
672         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
673
674 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
675
676         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
677         since those were meant only for gdki18n.h.  
678         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
679         for widechar tests.
680         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
681
682 1999-03-13  Tor Lillqvist  <tml@iki.fi>
683
684         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
685         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
686
687         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
688         installed) to CFLAGS.
689
690         * gdk/Makefile.am: Add rules for gdkconfig.h.
691
692         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
693         APIs.
694
695         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
696         gdkx.h anyway when compiling for X11.
697         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
698         general): Merge in Win32 version.
699         
700         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
701         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
702         expansion (if we don't have HAVE_PWD_H), allow for drive
703         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
704         included code from Craig Setera's port to Win32 (the one that uses
705         X11, and the cygwin dll), even if it probably will be abandoned.
706
707         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
708         the user entered one herself.  This way one can complete *.h and
709         don't get matches on any .help files, for instance.
710         
711 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
712
713         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
714         font hash table, if we have a GdkFontPrivate entry for this font
715         already, simply increment its reference count, provided by Olaf Dietsche
716         <olaf.dietsche+list.gtk@netcologne.de>.
717
718         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
719         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
720
721 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
722
723         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
724         the number of calls to gdk_draw_point() (and thus to X) by
725         clipping the points by hand.
726
727         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
728         the clip parameter.
729         (gtk_handle_box_paint): Only paint the handle if the expose area
730         intersects it.
731
732 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
733
734         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
735
736 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
737
738         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
739         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
740
741 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
742
743         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
744          textmode (O_TEXT) for OS/2 version.
745
746 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
747
748         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
749         GtkSpinButton, "input" and "output", to make the output more flexible.
750         The user has to provide a mapping between adjustment->value and the
751         output string (and vice versa, if the spin button is editable). 
752         See testgtk for examples.
753
754 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
755
756         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
757         new one.
758         
759         * configure.in: set gtk+ version to 1.3.0.