]> Pileus Git - ~andy/gtk/blob - ChangeLog
0ca83d2ef362ef694cf7f66236f4b6f40065cc4f
[~andy/gtk] / ChangeLog
1 Thu Apr 26 10:54:50 2001  Owen Taylor  <otaylor@redhat.com>
2
3         * gtk/gtkentry.c (strstr_len): Fix optimization that
4         was correct for the use here, but completely incorrect
5         in general.
6
7 Thu Apr 26 10:40:41 2001  Owen Taylor  <otaylor@redhat.com>
8
9         * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
10         until patch adding gtk_window_set_size() is recommitted. 
11
12         * **Makefile.am configure.in gdk/x11/gdkim-11.c
13           gtk/gtkmain.c gtk/gtkimmulticontext.c gtk/gtkmain.c
14           gtk/gtkrc.c: Remove all traces of -DX_LOCALE support.
15           (#10784)
16
17 Wed Apr 25 12:16:36 2001  Owen Taylor  <otaylor@redhat.com>
18
19         * gdk/X11/gdkevents-x11.c (gdk_event_translate): Test for 
20         window == NULL in a number of cases.
21
22         * tests/testdnd.c: Set module path for gdk-pixbuf.
23
24 Thu Apr 19 16:11:07 2001  Owen Taylor  <otaylor@redhat.com>
25
26         * gtk/Makefile.am xembed.h: File containing #defines
27         for XEMBED protocol.
28
29         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: 
30
31         - Change protocol from old plug/socket specific protocol
32           to XEMBED draft
33         - Various fixes to work with GTK+-2.0
34
35         Still quite a bit of work to do here to handle initiation
36         from the socket side (as specified by XEMBED), to handle
37         the more advanced features of XEMBED, and to figure out
38         a good way to handle same-app embedding with less overhead
39         than using full XEMBED.
40
41 Wed Apr 18 16:04:28 2001  Owen Taylor  <otaylor@redhat.com>
42
43         * gtk/gtkwindow.[ch] (gtk_window_real_set_focus): Keep
44         track of whether the toplevel has the focus; only send
45         focus-in events to the focus widget when the window
46         actually has the focus.
47
48 2001-04-25  Havoc Pennington  <hp@pobox.com>
49
50         * gtk/gtkwindow.h: set_decorations_hint and set_functions_hint
51         were still in the header
52
53 2001-04-24  Alexander Larsson  <alexl@redhat.com>
54
55         * gtk/gtkclist.[ch]:
56         * gtk/gtkctree.c:
57         When there is a row highlighted for D'n'D it must alse
58         be painted hightlighted on exposes. Otherwise exposes from
59         the icon being dragged will mess up the hightlight.
60
61         * gtk/gtkfontsel.c:
62         Don't recenter selected font when exposing the font family
63         clist. This means you can now actually scroll the font family
64         list.
65
66         * gtk/gtknotebook.c:
67         Fix focus movement on scrolling tabs that are placed on the left
68         and right.
69
70 2001-04-21  Havoc Pennington  <hp@pobox.com>
71
72         * gtk/gtktextdisplay.c (gtk_text_layout_draw): handle 0-height
73         empty/invisible lines.
74
75         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset)
76         (gtk_text_iter_set_visible_line_index): new functions to set
77         indexes excluding invisible text
78
79         * gtk/gtktextlayout.c (line_display_iter_to_index): get visible 
80         index
81
82         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index)
83         (gtk_text_iter_get_visible_line_offset): new functions to 
84         get indexes excluding invisible text
85
86         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): strip out a
87         bunch of extra padding that served no purpose
88
89         * gtk/gtkdialog.c: Make all the spacings configurable via style
90         properties, for chubbiness configuration in themes
91
92         * tests/testtext.c: fix path to the immodules.
93         
94 Mon Apr 23 18:57:03 2001  Jonathan Blandford  <jrb@redhat.com>
95
96         * gtk/gtksocket.c (gtk_socket_filter_func): add missing '}' that
97         got munched by #endif.
98
99         * gtk/Makefile.am (gtk_plug_c_sources): add missing '\'
100
101         * gtk/gtktreeview.c: Refactored code to clean up a number of
102         events.
103
104         * gtk/gtktreemodel.c (gtk_tree_path_compare): Switched return
105         values to make consistent with other functions.  Spotted by Jeff
106         Franks <jcf@tpg.com.au>.
107
108         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Fixes to signal
109         declaration spotted by Jeff Franks <jcf@tpg.com.au>.
110
111 2001-04-23  Sven Neumann  <sven@gimp.org>
112
113         * gtk/Makefile.am
114         * gtk/gtkplug.c
115         * gtk/gtksocket.c: on request of Owen, reverted my last change 
116         and exclude gtkplug.c/gtksocket.c from the build for non-X11 targets
117
118 2001-04-23  Sven Neumann  <sven@gimp.org>
119
120         * gtk/gtkplug.c: put into #ifdef GDK_WINDOWING_X11 to make GTK+
121         compile for non-X11 targets again
122
123 2001-04-20  Alexander Larsson  <alexl@redhat.com>
124
125         * gtk/gtkcolorsel.[ch]:
126         API Change. Take GdkColor arguments instead of gdouble *.
127         Leave the old gtk_color_selection_set_color for compatibility,
128         but marked deprecated.
129         Do correct rounding when converting RGB <-> HSV.
130         
131         * gtk/gtkcolorseldialog.c:
132         * tests/testgtk.c:
133         Use new GtkColorSelection API.
134
135         * gtk/gtkhsv.c:
136         Fix problem selecting colors in triangle when Hue is 330.
137         Fix some black dots around the HSB triangle.
138         
139         * gtk/gtkfilesel.c:
140         return FALSE from the focus_in_event handler to fix focus problems.
141
142 2001-04-18  Havoc Pennington  <hp@redhat.com>
143
144         * gtk/gtkwindow.c (gtk_window_class_init): add signals and binding
145         set, so keybindings are configurable    
146         (gtk_window_activate_default): Change to activate the focus widget
147         instead if there's a focus widget, to be consistent with the
148         behavior that previously existed in key_press_event
149
150 2001-04-18  Havoc Pennington  <hp@redhat.com>
151
152         * gdk/gdkkeyuni.c: Handle numeric keypad keysyms; bug #50201
153
154 2001-04-18  Havoc Pennington  <hp@redhat.com>
155
156         Close bug #50615:
157         
158         * gtk/gtkstyle.c (gtk_default_draw_layout): Use text_gc to draw
159         the layout
160
161         * gtk/gtktext.c: Use base/text instead of bg/fg throughout
162
163         * gtk/gtkentry.c: Use base/text instead of bg/fg throughout
164
165         * gtk/gtktextdisplay.c: Use base/text instead of bg/fg throughout
166         
167         * gtk/gtkstyle.c (gtk_style_init): make GTK_STATE_SELECTED default
168         to blue for base, in addition to bg
169         
170 2001-04-18  Havoc Pennington  <hp@redhat.com>
171
172         * tests/testgtk.c (create_image): allow shrinking the image window
173         to test that we clip to allocation.
174
175         * gtk/gtkimage.c (gtk_image_expose): clip to allocation,
176         #9845
177
178         * gtk/gtkenums.h: move GtkWrapMode in here, #50472
179
180 Wed Apr 18 14:23:14 2001  Owen Taylor  <otaylor@redhat.com>
181
182         * gdk/x11/gdkimage-x11.c (gdk_image_new): Try changing
183         mode on shm segments to 0600. We'll see who complains.
184
185         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Call
186         _gdk_windowing_window_destroy() AFTER recursing through
187         children.
188
189         * tests/Makefile.am (noinst_PROGRAMS): Build testsocket,
190         testsocket_child on X.
191
192         * tests/testsocket[_child].c: Fix uses of
193         gtk_window_get_default_accel_group().
194
195         [ Merge patch from Ramiro Estrugo  <ramiro@eazel.com> from gtk-1-2 ]
196
197         * gdk/gdkimage.c: (gdk_image_get):
198         Deal with the possibility that XGetImage() might return NULL.
199         Allocate the GdkImagePrivate structure only after XGetImage()
200         succeeds in order not to dereference a NULL ximage pointer.  This
201         prevents a core dump when XGetImage() fails - which is unlikely,
202         but can happen due to race conditions accessing the geometries of
203         drawables.  An x error will still be triggered, but the gdk image
204         wrapper at least wont seg fault.
205         
206 2001-04-18  Havoc Pennington  <hp@redhat.com>
207
208         * gtk/gtkimage.c: fix to properly queue resizes when the image is
209         set
210
211         * gtk/gtktextview.c (gtk_text_view_do_popup): desensitize Paste
212         if the insertion point isn't editable
213
214         * demos/gtk-demo/images.c: Added a GtkImage demo
215
216         * demos/gtk-demo/drawingarea.c: drawing area demo
217         
218         * demos/gtk-demo/menus.c (create_menu): cleanups
219
220 Wed Apr 18 12:15:52 2001  Owen Taylor  <otaylor@redhat.com>
221
222         * gdk/x11/gdkwindow-x11.c gdk/x11/gdkwindow-x11.h 
223           gdk/x11/gdkevents-x11.c: Introduce an extra child
224         of toplevel windows that serves to hold the focus to
225         avoid events being delivered to embedded windows.
226
227         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Introduce
228         some extra variables to clean up code and reduce the
229         number of casts.
230
231         * gdk/x11/gdkwindow-x11.h (struct _GdkXPositionInfo): Use
232         guint for 1 bit bit fields, not gboolean.
233
234 Wed Apr 18 10:04:23 2001  Owen Taylor  <otaylor@redhat.com>
235
236         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Return FALSE,
237         not TRUE. (Fixes #52925)
238
239 Tue Apr 17 18:05:34 2001  Owen Taylor  <otaylor@redhat.com>
240
241         * Released 1.3.4
242
243         * NEWS: Updated
244
245         * gtk/gtktextview.c (gtk_text_view_class_init): Fix to not
246         use GTK_TYPE_ENUM.
247
248 Tue Apr 17 13:47:12 2001  Owen Taylor  <otaylor@redhat.com>
249
250         * configure.in: Don't put -lgthread in GLIB_LIBS, GLIB_DEPLIBS
251
252         * gtk/gtktypeutils.h gtk/gtksignals.h: Restore proper parameter
253         names to compatibility #defines so docs work.
254
255         * gtk/gtkenums.h: Remove GtkMenuFactoryType
256
257         * gtk/gtkwindow.c gtk/gtkdnd.c: Docs cleanups.
258
259         * configure.in: Don't include -lgthread in GLIB_LIBS, GLIB_DEPLIBS
260
261         * tests/testgtkrc: No magenta cursors, please.
262
263         * README.in INSTALL.in HACKING README.cvs-commits: Updated.
264
265         * gtk/gtkenums.h (enum): Remove left over GtkMenuFactoryType.
266         
267 Mon Apr 16 14:38:41 2001  Owen Taylor  <otaylor@redhat.com>
268
269         * gtk/gtklist.c gtk/gtklistitem.c: Remove explicit pointer
270         grabs, since they are no longer necessary.
271
272         * gtk/gtkcombo.c (gtk_combo_popup_button_press): Fix #52926
273         by signal_connect() and call gtk_button_pressed() rather
274         than signal_connect_after().
275
276         * tests/testgtk.c: Restore radio menu items to combos 
277         since they'll look OK with Raleigh, and it is easier
278         than finishing the process of removing them that was
279         started earlier.
280
281 2001-04-16  Hans Breuer  <hans@breuer.org>
282
283         * gdk/gdk.def :
284         * gtk/gtk.def : added all exports required to link PyGtk 0.7.1
285
286         * gdk/gdkfont.h : #define GDK_TYPE gdk_font_get_type ()
287         we are interested in the functions return value not the function address
288         * gdk/gdkvisual.h : same for GDK_TYPE_VISUAL
289
290         * gtk/makefile.msc.in : reflect movement of GDK_TYPEs from gtk to gdk
291
292 2001-04-14  Hans Breuer  <hans@breuer.org>
293
294         * gdk/gdk.def :
295         * gdk/makefile.msc : updated
296
297         * gdk/win32/gdkdrawable.win32 (gdk_win32_draw_rectangle) : if modus is 
298         "fill with tile" do so with new helper function gdk_win32_draw_tiles 
299         (the testgtk::text backgound pixmap is drawn again)
300         Changed SetTextAlign before pango_win32_render to TA_BASELINE to reflect 
301         Win32 Pango change
302         * gdk/win32/gdkprivate-win32.h : prototype for gdk_win32_draw_tiles
303
304         * gdk/win32/gdkproperty-win32.c : first implementation of gdk_setting_get
305         Not sure if the returned settings have the right unit, because I couldn't
306         find any docs for the X version ...
307
308         * gtk/gtk.def :
309         * gtk/makefile.msc.in : updated
310
311 Thu Apr 12 17:41:17 2001  Owen Taylor  <otaylor@redhat.com>
312
313         * gtk-2.0.m4: Fix up to refer to GTK+, not to GLib; fix some
314         wording problems. (Compared to version from Johannes Stezenbach to
315         check correctness.)
316
317 Thu Apr 12 21:04:26 2001  Tim Janik  <timj@gtk.org>
318
319         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): get
320         this to compile.
321
322 2001-04-12  Anders Carlsson  <andersca@codefactory.se>
323
324         * gtk/gtkcellrenderertextpixbuf.c (gtk_cell_renderer_text_pixbuf_class_init): It's pixbuf_pos,
325         not pixbufpos.
326
327         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Fix small typo.
328
329         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property): xpad and ypad
330         are unsigned insts, therefore use g_value_set_uint.
331         (gtk_cell_renderer_set_property): Likewise, use g_value_get_uint.
332
333 Sun Apr  8 05:36:06 2001  Jonathan Blandford  <jrb@webwynk.net>
334
335         * gtk/gtktextview.c (gtk_text_view_class_init): fix a fixme.
336
337         * gtk/gtkcellrendertoggle.c: change GTK_TYPE_POINTER to
338         GTK_TYPE_STRING.
339
340         * gtk/gtktreeview.c: New functions to allow initial column
341         dragging work.
342
343         * gtk/gtktreeviewcolumn.c: Initial column dragging support.
344
345         * tests/testtreefocus.c: give dave some love.
346
347         * tests/testtreesort.c: Modify test to check really long samples.
348
349 2001-04-11  Alexander Larsson  <alexl@redhat.com>
350
351         * gtk-2.0.m4: Pass pkg-config options
352         before the other args so it works even if
353         POSIXLY_CORRECT is set.
354
355 Mon Apr  9 19:02:07 2001  Tim Janik  <timj@gtk.org>
356
357         * configure.in (GTK_MICRO_VERSION): increment version to 1.3.4 (binary
358         0, interface 0).
359
360 2001-04-04  Denis Oliver Kropp  <dok@convergence.de>
361
362         * gtk/gtkcalendar.c (gtk_calendar_button_press):
363         check for action_func != NULL
364
365 2001-04-04  Sven Neumann  <sven@gimp.org>
366
367         * tests/testgtk.c (test_init): corrected path to gtk.immodules
368
369 Wed Apr  4 09:18:18 2001  Tim Janik  <timj@gtk.org>
370
371         * Released Gtk+-1.3.3.
372
373 Wed Apr  4 07:42:23 2001  Tim Janik  <timj@gtk.org>
374
375         * gdk/Makefile.am (EXTRA_DIST): add makeenums.pl to EXTRA_DIST.
376
377 Wed Apr  4 04:13:18 2001  Tim Janik  <timj@gtk.org>
378
379         * gtk/stock-icons/Makefile.am: stay in builddir and read/write
380         files to/from source dir. (if we don't stay in builddir, we
381         can't reach make-inline-pixbuf.
382
383         * gdk/Makefile.am (gdkenumtypes.c): add $(srcdir) to mekeenums.pl
384         deps.
385
386         * configure.in (GTK_MICRO_VERSION): up and away (1.3.3 bin/interface
387         ages 0).
388
389 Tue Apr  3 15:04:45 2001  Jonathan Blandford  <jrb@redhat.com>
390
391         * gtk/gtktreemodelsort.h:  removed set_sort_column, as it was
392         moved to the GtkTreeSortable interface.
393
394         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
395         Make more efficient (fixes #50262).
396
397 Tue Apr  3 13:55:37 2001  Owen Taylor  <otaylor@redhat.com>
398
399         * NEWS: Updated.
400
401         * configure.in: Remove support for uninstalled glib.
402
403         * gtk/gtkdnd.c (gtk_drag_highlight_expose): Return FALSE as
404         so as not to stop emission.
405
406         * gtk-config-2.0.in: Exit with an error message that gtk-config-2.0
407         is no longer supported.
408
409         * Makefile.am gtk/Makefile.am tests/*: Moved all tests
410         into tests, change build order to build modules before
411         gtk/.
412
413         * modules/input/Makefile.am: Move gtk-query-immodules-2.0 invocation
414         to here.
415
416 Tue Apr  3 13:52:57 2001  Tim Janik  <timj@gtk.org>
417
418         * gtk/gtkitemfactory.[hc]: changed gtk_item_factory_dump_items()
419         and gtk_item_factory_dump_rc() GtkPatternSpec argument to
420         GPatternSpec. this is actually unlikely to cause breakage in
421         third-party apps since except for gle, pretty much ever caller
422         passes NULL here.
423
424         * gtk/gtkbindings.[hc]: removed gtk_pattern_*() API.
425
426         * *.c: use g_pattern_*() API.
427
428         * docs/Changes-2.0.txt: GtkPatternSpec->GPatternSpec updates.
429
430         * gtk/gtkstyle.c (gtk_default_draw_resize_grip): assert unhandled
431         directions aren't passed in.
432
433         * gtk/gtksettings.[hc] (_gtk_settings_parse_convert): export conversion
434         functionality to be usable from gtkstyle.c as well, give precedence
435         for conversion to user-supplied parsers.
436         s/_gtk_rc_property_parser_for_type/_gtk_rc_property_parser_from_type/;
437
438         * gtk/gtkstyle.c (_gtk_style_peek_property_value): use
439         _gtk_settings_parse_convert() for rcporperty value conversion.
440
441 2001-04-03  Alexander Larsson  <alexl@redhat.com>
442
443         * gdk/linux-fb/gdkevents-fb.c:
444         Add empty gdk_setting_get().
445
446 Tue Apr  3 05:09:07 2001  Tim Janik  <timj@gtk.org>
447
448         * gtk/gtkmain.c (_gtk_boolean_handled_accumulator): use more elaborate
449         variable names.
450         
451         * gtk/makeenums.pl: touch this so enum files get remade.
452
453 Mon Apr  2 19:36:57 2001  Jonathan Blandford  <jrb@redhat.com>
454
455         * gtk/gtktreestore.c (gtk_tree_store_init):  Bug fix to make trees
456         work again when not sorted.
457
458         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add "collapse_row"
459         and "expand_row" signal, closing bug 52578.
460
461         * gtk/gtktreeview.c (gtk_tree_view_expand_row): Add signal
462         support.
463
464         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): Add signal
465         support.
466
467 Mon Apr  2 18:18:07 2001  Owen Taylor  <otaylor@redhat.com>
468
469         * gdk/gdkevents.h: Add GdkEventSetting event for notification
470         of changes to system settings, gdk_setting_get() to retrieve
471         a single system setting.
472
473         * gdk/x11/gdkevents-x11.c: Bridge gdk_setting_get() and GdkEventSetting
474         to the draft XSETTINGS mechanism.
475
476         * gdk/x11/xsettings-{common,client}.[ch]: Sample-implementation of
477         XSETTINGS.
478
479         * gtk/gtkmain.c gtk/gtksettings.[ch]: Propagate notification
480         of GDK settings changes to the GtkSettings object.
481
482         * gdk/gdkevents.[ch] gdk/gtk/gtksettings.c: Hook up the
483         double-click-timeout property to GDK.
484
485         * gdk/gdkcolor.[ch] gdk/gdkvisual.h gdk/gdkevent.[ch] gdk/gdkfont.[ch]:
486         Define GDK boxed types here.
487
488         * gdk/Makefile.am gdk/makeenums.pl: Generate source files
489         gdk/gdkenumtypes.[ch] for enum definitions.
490
491         * gtk/gtkcompat.h: Add defines for GTK_TYPE_GDK_*
492         * gtk/gtk-boxed.defs: Comment out GDK types
493         * gtk/gtktypeutils.h: Remove GDK types
494         * gtk/Makefile.am: No longer scan GDK headers for enumerataions
495
496 Mon Apr  2 16:41:08 2001  Owen Taylor  <otaylor@redhat.com>
497
498         * Applied patch from Ron Steinke to add signal accumulators
499         so that signals with the convention 'TRUE return means
500         handled' stop emission on a TRUE return.
501
502         * gtk/gtkmain.[ch]: Add private accumulator 
503         _gtk_boolean_handled_accumulator, used throughout GTK+.
504         
505         * gtk/gtkspinbutton.c: Add accumulator for ::output.
506
507         * gtk/gtktipsquery.c: Add accumulator for ::widget_selected
508         
509         * gtk/gtkwidget.c: Add accumulators for event signals,
510         ::drag_motion, ::drag_drop. Use _gtk_boolean_handled_accumator
511         for ::mnemonic-activate.
512
513         * gtk/gtkwindow.c: Add accumulator for ::frame_event
514
515 Mon Apr  2 16:24:21 2001  Owen Taylor  <otaylor@redhat.com>
516
517         * gtk/gtkwidget.c: Add missing include.
518
519 Mon Apr  2 16:56:15 2001  Jonathan Blandford  <jrb@redhat.com>
520
521         * gtk/gtkmarshal.list (VOID:BOXED,BOXED,BOXED,BOXED): new
522         marshaller.
523
524         * gtk/gtktreemodel.c (gtk_tree_model_range_changed): change
525         "changed" signal to "range_changed".
526
527         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix small bug where
528         removing a tree from one model would remove all trees from that
529         model.
530         * gtk/gtktreeview.c (gtk_tree_view_range_changed): use range
531         changed signal instead.
532
533 Mon Apr  2 16:13:58 2001  Owen Taylor  <otaylor@redhat.com>
534
535         * gtk/gtkinvisible.c (gtk_invisible_style_set): Avoid
536         chaining up to parent impl, since we have a INPUT_ONLY
537         window.
538
539         * gtk/gtkentry.[ch]: Add a cursor_color property to set the
540         foreground color for the cursor.
541
542 Mon Apr  2 15:06:13 2001  Owen Taylor  <otaylor@redhat.com>
543
544         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Reference 
545         param spec when caching property values, since we unref it
546         later when we free the style.
547
548         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Dont' free
549         values since they are retrieved with G_VALUE_NO_COPY_CONTENTS.
550
551 Mon Apr  2 10:47:57 2001  Owen Taylor  <otaylor@redhat.com>
552
553         * gtk/gtkwidget.c (gtk_widget_class_init): Fix 
554         G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
555         stupidity.
556
557 Mon Apr  2 00:51:11 2001  Owen Taylor  <otaylor@redhat.com>
558
559         [ First pass at adding style properties. Still needs some definite
560         fine-tuning. ]
561
562         * gtk/gtkbutton.c: Add ::default_spacing style property.
563          
564         * gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
565         ::indicator_spacing style properties.
566
567         * gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
568         style properties.
569
570         * gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
571         rather than a normal property.
572
573         * gtk/gtkwidget.c: Add an ::interior_focus style property to
574         draw focus inside buttons, in the Windows/Java Metal/etc. style.
575
576         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
577         Honor ::interior_focus.
578         
579         * gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is 
580         TRUE.
581
582         * gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
583         Add ::slider_width, ::trough_border, ::stepper_size,
584         ::stepper_spacing style properties.
585
586         * gtk/gtkscale.[ch] Add ::slider-length style property.
587
588 2001-04-02 Alexander Larsson   <alexl@redhat.com>
589
590         * gdk/linux-fb/gdkwindow-fb.c:
591         Add gdk_window_begin_resize_drag and gdk_window_begin_move_drag. Remove some
592         warnings that were spewed on startup.
593
594         * gtk/gtkwindow-decorate.c:
595         gtk_window_reposition -> _gtk_window_reposition
596
597 Sun Apr  1 21:37:22 2001  Owen Taylor  <otaylor@redhat.com>
598
599         * gtk/gtkwidget.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
600         Add boxed type for GtkRequistion. Use it for ::size-request.
601
602         * gtk/gtkstyle.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
603         Add a new GtkBorder structure useful for geometry properties
604         for widgets. Add corresponding GTK_TYPE_BORDER.
605         
606         * gtk/gtkwidget.c (gtk_widget_class_install_style_property):
607         Support automatic parser selection like
608         gtk_settings_install_property_parser().
609
610         * gtk/gtksettings.c (_gtk_rc_property_select_parser): Export
611         functionality for use by gtk_widget_class_install_style_property.
612         Support GTK_TYPE_BORDER, GTK_TYPE_REQUISITION.
613
614 Sun Apr  1 20:48:59 2001  Owen Taylor  <otaylor@redhat.com>
615
616         * gtk/gtkentry.c (gtk_entry_class_init): Make invisible-char
617         g_param_spec_unichar(). 
618
619 Sun Apr  1 23:41:37 2001  Tim Janik  <timj@gtk.org>
620
621         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): raise window for non
622         _NET window managers.
623
624         * gtk/gtkmenufactory.[hc]: cvs removed those files now.
625
626 Sun Apr  1 08:00:13 2001  Tim Janik  <timj@gtk.org>
627
628         * gtk/gtkwidget.[hc]: got rid of gtk_widget_popup(), a function that
629         bad needs to be nuked, not just deprecated.
630
631         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): don't use 
632         gtk_widget_popup().
633
634         * gtk/*.[hc]: s/activate_mnemonic/mnemonic_activate/g;
635         
636         * gtk/gtkmenufactory.[hc]: removed this long-standingly deprecated
637         widget.
638         
639         * docs/Changes-2.0.txt: updates.
640         
641 Sun Apr  1 01:02:54 2001  Jonathan Blandford  <jrb@redhat.com>
642
643         * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed):
644         for (i = 0; i < 100; i ++)
645           g_print ("I will confirm it compile before committing\n");
646
647 Sun Apr  1 00:52:06 2001  Jonathan Blandford  <jrb@redhat.com>
648
649         * gtk/gtktreestore.c: Initial work on implementing the
650         GtkTreeSortable interface.  Basicaly a big cut'n'paste job.
651
652 Sun Apr  1 03:28:14 2001  Tim Janik  <timj@gtk.org>
653
654         * gtk/gtkwidget.c: fixed a bunch of notifications, added
655         reference counts around emissions where the widget is used afterwards.
656         added freeze/thaws around multiple properties being notified.
657         (_gtk_widget_get_aux_info): cleanups.
658         
659         * gtk/gtksettings.c (gtk_settings_install_property): provide
660         default parsing functions for gdkcolor, enums and flags.
661
662         * gtk/gtkwindow.[hc]: partially reverted patch from havoc,
663         applied by owen.
664         backed out gtk_window_get_location(), gtk_window_set_location(),
665         gtk_window_get_size() and gtk_window_set_size(), these
666         have to be sorted out wrg x/y/width/height/default_with/default_height
667         properties.
668         kept a flag in GtkWindowGeometryInfo to handle user
669         resetting default sizes.
670         cleaned up ZVT comments.
671         bunch of assorted bug fixes, notification fixes.
672         (_gtk_window_reposition): make this a really internal function.
673         
674         * gtk/testgtk.c: fixups.
675         
676 2001-03-31  Hans Breuer  <hans@breuer.org>
677
678         * config.h.win32.in : disable USE_MMX for msvc build cause
679         the assembler doesn't fit and is out of my scope. Disable
680         USE_GMODULE for msvc build as wel. The right way to share
681         binaries on win32 would be to use libtiff.dll etc. To reduce
682         installation hassles IMO it's better to include all fileformats
683         builtin to gdk-pixbuf
684
685         * gdk-pixbuf/makefile.msc : new file
686
687         * gdk/gdk.def : updated
688
689         * gdk/win32/gdkevents-win32.c : don't erase the background if
690         .no_bg is set. It improves the scrolling (e.g. of testgtk main
691         buttons
692         * gdk/win32/gdkgeometry-win32.c : added comment about the above
693
694         * gdk/win32/gdkwindow-win32.c : added three new functions like
695         the X version. Only one is implemented, because the other two
696         "gdk_window_begin_(resize|move)_drag" got no docs and appear to
697         be default behaviour on win32 anyway ...
698
699         * gtk/gtk.def : updated
700
701         * gtk/makefile.msc.in : update for new files, use glib-genmarshal
702         from where it was built and add an additional rule to automagically
703         build gtkmarshal.[hc]
704
705         * gtk/gtkfilesel.c (open_new_dir) : don't increase n_entries
706         before array access for the current entry isn't finished
707
708         * gtk/gtktreeitem.c (gtk_tree_item_subtree_button_click) :
709         use g_return_val_if_fail
710
711         * gtk/testgtk.c (window_controls) : don't use the *wrong* size
712         for the static array, but let the compiler calculate it. It
713         makes me wonder if gcc isn't capable to catch bugs like this ...
714
715 2001-03-31  James Henstridge  <james@daa.com.au>
716
717         * gtk/gtkwidget.c (gtk_widget_size_adjust): fix use of magic
718         constant "-1" in the aux info structure.
719
720 2001-03-30  Alexander Larsson  <alexl@redhat.com>
721
722         * gtk/gtkbutton.c (gtk_button_get_property):
723         * gtk/gtklabel.c:
724         Remove leaks.
725         
726         * gtk/gtkcontainer.c:
727         * gtk/gtkhscale.c:
728         * gtk/gtkhscrollbar.c:
729         * gtk/gtklayout.c:
730         * gtk/gtkmisc.c:
731         * gtk/gtkprogress.c:
732         * gtk/gtkprogressbar.c:
733         * gtk/gtkrange.c:
734         * gtk/gtktable.c:
735         * gtk/gtkviewport.c:
736         * gtk/gtkvscale.c:
737         * gtk/gtkvscrollbar.c:
738         * gtk/gtkwidget.c:
739         Property patches, based on patches from John Margaglione and Lee Mallabone.
740
741 Thu Mar 29 21:20:38 2001  Mike Kestner  <mkestner@ameritech.net>
742
743         * gtk/gtkspinbutton.c : added value_changed signal which proxies for the
744         adjustment. Cleaned redundant preconditions (spin != NULL). Added
745         inline API function docs.
746         (gtk_spin_button_new_with_range): New convenience constructor.
747         (gtk_spin_button_set_increments): New adjustment helper.
748         (gtk_spin_button_set_range): New adjustment helper.
749
750         * gtk/testgtk.c : added test of the new convenince constructor and
751         value_changed signals.
752
753 Thu Mar 29 20:20:38 2001  Jonathan Blandford  <jrb@redhat.com>
754
755         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): Now we
756         listen to the reorder signal.
757
758 Wed Mar 28 20:30:26 2001  Owen Taylor  <otaylor@redhat.com>
759
760         * gtk/gtkwidget.[ch] (_gtk_widget_get_aux_info): Add private function
761         to get the aux info structure fo the widget.
762
763         * gtk/gtklabel.c gtk/gtkscrolledwindow.c gtk/gtkwindow.c: Use
764         above function.
765
766         [ Patch from  Havoc Pennington  <hp@redhat.com> ]
767
768         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): function
769         to get the size of the window manager frame, basically the same
770         code that gdk_window_get_root_origin() had
771         (gdk_window_get_root_origin): use gdk_window_get_frame_extents()
772
773         * gtk/gtkwindow.c (gtk_window_set_default_size): use
774         gdk_window_resize() if the window is realized and resizeable
775
776         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): fix
777         typo so that setting gravity works
778
779         * gtk/gtkwindow.c (gtk_window_move_resize): don't ever use
780         allocation if auto_shrink is on, even if the default size
781         has not changed.
782
783         * gtk/gtkwidget.c (gtk_widget_render_icon): remove bogus
784         g_return_if_fail
785
786 Thu Mar 29 16:29:12 2001  Jonathan Blandford  <jrb@redhat.com>
787
788         * gtk/gtkliststore.c (gtk_list_store_iter_changed): Massive
789         reordering/sorting work.  Now pretty much works.
790
791         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Lots of work to make
792         reorder mostly work.  Still need to get the parity correct.
793
794         * gtk/gtktreeviewcolumn.c: Listen for "model" property changed
795         signal, so I can listen for the sort_column_changed signal so I
796         can change my "sort_indicator" property.  Cool.
797
798 Wed Mar 28 00:03:10 2001  Owen Taylor  <otaylor@redhat.com>
799
800         [ Patch from Havoc Pennington, hp@redhat.com ]
801
802         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c:
803         Add functions gdk_window_begin_resize_drag/begin_move_drag
804         to start resizing or moving a toplevel window. This
805         is done either using the _NET_WM_MOVERESIZE protocol,
806         or, if that isn't present, by emulation.
807
808         * gtk/gtkwindow.[ch]: Add functions gtk_begin_move/resize_drag
809         to export the above to GTK+-land.
810
811         * gtk/gtkstyle.[ch]: Add ->draw_resize_grip() paint func.
812         
813         * gtk/gtkwindow.c gdk/gdkwindow.[ch] (gdk_window_constrain_size):
814         Move this function into gdkwindow, since we need it
815         when implementing fallback resizing.
816
817         * gdk/x11/gdkwindow-x11.c: gdk_window_set_geometry_hints.
818         Fix typo when setting gravity.
819
820         * gtk/gtkstatusbar.[ch] (gtk_statusbar_set_has_resize_grip):
821         Add an optional (but on by default) resize grip for resizing 
822         the parent window.
823
824 01-03-29  Alexander Larsson  <alexl@redhat.com>
825
826         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
827         Don't return TRUE from the event handler, that blocks all
828         event signals on the tooltip widget. Now you can press buttons
829         in toolbars again.
830
831 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
832
833         * gtk/testtext.c (create_buffer): Add missing NULL on
834         valist.
835
836         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Fix
837         c-n-p problem with INCONSISTENT property.
838
839         [ Patch from Havoc Pennington  <hp@redhat.com> ]
840
841         * gtk/gtkentry.h (struct _GtkEntryClass): add same populate_popup
842         hook.
843
844         * gtk/gtktextview.h (struct _GtkTextViewClass): add populate_popup
845         signal as a hook for extending the default popup menu
846
847         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
848         use radio menu items for the input method menuitems
849
850         * gtk/gtkimcontextsimple.c (check_hex): do better validation of 
851         inserted unicode from Ctrl-Shift-hex input method
852
853         * gtk/gtktextbtree.c (_gtk_text_btree_insert): remove utf8
854         validatation here, already done at GtkTextBuffer level.
855
856         * gtk/gtkwidget.c (gtk_widget_class_init): add binding set, add
857         popup_menu run action signal and Shift+F10 and Menu keybindings.
858
859         * gtk/gtkentry.c: implement a default handler for popup_menu
860
861         * gtk/gtktextview.c: implement a default handler for popup_menu
862
863         * gtk/gtkmenu.c (gtk_menu_popup): select first item if popup is
864         from a key event
865         
866         * gtk/gtklabel.c: remove "trailer" cruft
867
868 Wed Mar 28 17:27:12 2001  Jonathan Blandford  <jrb@redhat.com>
869
870         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): new function to
871         handle reordering of trees.  Seems to mostly work w/ the exception
872         of the parity flag.
873
874         * gtk/gtktreeview.c (gtk_tree_view_reordered): handle "reordered"
875         signal.
876
877 Wed Mar 28 21:12:37 2001  Tim Janik  <timj@gtk.org>
878
879         * gtk/gtkwidget.h: c++ fixes.
880
881 Sun Mar 25 15:51:28 2001  Owen Taylor  <otaylor@redhat.com>
882
883         * gtk/gtksettings.c (gtk_settings_init): Fix use of uninitialized
884         memory.
885
886 Tue Mar 27 22:36:07 2001  Owen Taylor  <otaylor@redhat.com>
887
888         * gtk/gtkwidget.h gtk/gtkrange.h: Apply patch from 
889         Nils Barth fixing event return values. (#51041)
890
891         * gtk/gtkwidget.c: Fix some return values for default
892         functions.
893
894         * gtk/gtk[vh]scrollbar.c gtk/gtk[vh]range.c: Fix
895         return values for trough_keys functions.
896
897         * gtk/gtkwidget.h (struct _GtkWidgetClass): Fix return
898         value for add_accelerator (shoudl have been a void
899         return.)
900
901         * gtk/gtkcellrenderer.[ch]: gtkcellrenderertoggle.h:
902         Fix return type of EVENT.
903
904         * gtk/gtkmarshal.list gtk/gtktexttag.c: Make EVENT
905         signal return a boolean.
906
907 Tue Mar 27 22:07:44 2001  Jonathan Blandford  <jrb@redhat.com>
908
909         * gtk/gtkliststore.c (gtk_list_store_sort): Fix arguments to
910         reordered signal.
911
912         * tests/testtreesort.c (main): fix spelling.
913
914 Tue Mar 27 20:55:29 2001  Jonathan Blandford  <jrb@redhat.com>
915
916         * gtk/gtkliststore.c: More work on implementing sortable
917         interface.
918
919 Mon Mar 26 15:48:45 2001  Owen Taylor  <otaylor@redhat.com>
920
921         * gtk/gtkwindow.c (gtk_window_list_toplevels): Don't
922         reference the widgets in the resulting list. (#11821)
923         This makes this consistent with gtk_container_children.
924
925         * gtk/gtkwindow.c gtk/gtkwidget.c: Fix up the two
926         uses of gtk_window_list_toplevels.
927
928 Mon Mar 26 15:26:17 2001  Owen Taylor  <otaylor@redhat.com>
929
930         * gtk/gtkimcontext.c (gtk_im_context_set_use_preedit): Add
931         a virtual function to set whether the IM context should use 
932         the preedit string. (#51922)
933         
934 Mon Mar 26 14:42:59 2001  Owen Taylor  <otaylor@redhat.com>
935
936         * gdk/gdkpango.h: Remove stale FIXME comment.
937
938 2001-03-26  Alexander Larsson  <alla@lysator.liu.se>
939
940         * gtk/gtkfilesel.c (gtk_file_selection_get_filename):
941         Fixed bug that returned NULL if a filename was selected.
942
943 2001-03-24  Havoc Pennington  <hp@pobox.com>
944
945         * gtk/gtkthemes.c (gtk_theme_engine_load): improve error message
946         to contain the word "theme"
947
948 2001-03-24  Havoc Pennington  <hp@pobox.com>
949
950         * gtk/gtkhsv.c (gtk_hsv_move): make motion around the ring much
951         slower but finer-grained
952         (gtk_hsv_focus): get initial focus on the ring or triangle 
953         according to tab direction
954
955         * gtk/testgtk.c (main): get rid of weird sleep(1) on exit
956
957 2001-03-23  Havoc Pennington  <hp@pobox.com>
958
959         * gtk/gtkhsv.c: make this somewhat key-navigable
960
961         * gtk/gtkfontsel.c: mnemonics
962
963         * gtk/gtkgamma.c: mnemonics
964
965         * gtk/gtkcolorsel.c: add mnemonics to labels
966
967 2001-03-22  Havoc Pennington  <hp@pobox.com>
968
969         Applied big patch from Seth Lytle to fix event handler return
970         values, slightly modified.
971
972         * gtk/gtkcalendar.c (gtk_calendar_button_press): return TRUE if
973         handled.
974         (gtk_calendar_key_press): return TRUE for GDK_space triggers
975         select_day
976
977         * gtk/gtkclist.c (gtk_clist_button_press): return TRUE if handled
978         (gtk_clist_button_release): return TRUE if handled
979
980         * gtk/gtkcolorsel.c (mouse_release):
981         (palette_activate): 
982         (palette_press): 
983         (palette_new): 
984         (mouse_press): 
985         (get_screen_color): 
986         fixed return type (void to gboolean), return TRUE,
987         added GTK_SIGNAL_FUNC cast
988
989         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fixed return type
990         (void to gboolean), and return TRUE
991         (gtk_combo_button_release): changed return value to TRUE after
992         gtk_grab_add on combo->popwin
993
994         * gtk/gtkctree.c (gtk_ctree_button_press): return TRUE if triggers a
995         collapse or expand
996
997         * gtk/gtkcurve.c (gtk_curve_graph_events): return TRUE for
998         button/motion
999
1000         * gtk/gtkdnd.c (gtk_drag_source_event_cb): return TRUE for button
1001         press/release and motion that trigger act
1002
1003         * gtk/gtkentry.c (gtk_entry_button_release): return TRUE
1004
1005         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): return TRUE
1006         for GDK_Return
1007         
1008         * gtk/gtklist.c (gtk_list_button_press): return TRUE mostly
1009         (gtk_list_button_release): return TRUE if selection
1010
1011         * gtk/gtklistitem.c (gtk_list_item_button_press): return TRUE on
1012         press
1013
1014         * gtk/gtkmenushell.c (gtk_menu_shell_button_press):
1015         (gtk_menu_shell_button_release): chain parent_menu_shell retval
1016
1017         * gtk/gtknotebook.c (gtk_notebook_button_press): return FALSE if
1018         nothing triggered
1019         (gtk_notebook_button_release): return TRUE if we do anything
1020
1021         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): 
1022         (gtk_spin_button_button_release): return TRUE or chained retval
1023
1024         * gtk/gtktext.c (gtk_text_button_press): 
1025         (gtk_text_button_release): return TRUE
1026         (gtk_text_key_press): remove redundant retval code
1027         
1028         * gtk/gtktreeitem.c (gtk_tree_item_button_press): return TRUE if button
1029         and sensitive
1030         (gtk_tree_item_subtree_button_click): changed type to gint, and return
1031         TRUE if sensitive
1032
1033         * gtk/gtktooltips.c (gtk_tooltips_event_handler): deactivate implies 
1034         return TRUE
1035
1036 2001-03-23  Havoc Pennington  <hp@redhat.com>
1037
1038         * gtk/testgtk.c: fix warnings
1039
1040         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): fix return value
1041
1042         * gtk/gtktextview.c: fix warnings
1043
1044         * gtk/gtktext.c (find_cursor_at_line): fix warning
1045
1046         * gtk/gtkselection.c (gtk_selection_notify): fix warning 
1047
1048         * gtk/gtkitemfactory.c (gtk_item_factory_menu_pos): fix signature
1049         of this function
1050
1051         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
1052         fix warning
1053
1054         * gtk/gtkhandlebox.c (gtk_handle_box_style_set): fix warning
1055
1056         * gtk/gtkfontsel.c: fix warning
1057
1058         * gtk/gtkcolorsel.c: fix warnings
1059
1060 2001-03-23  Havoc Pennington  <hp@redhat.com>
1061
1062         * gtk/gtkhandlebox.c: Apply property patch from Lee Mallabone
1063
1064         * gtk/gtkbox.c: Apply property patch from Lee Mallabone
1065
1066         * gtk/gtkcheckmenuitem.c: Apply property patch from Lee Mallabone,
1067         and deprecated gtk_check_menu_item_set_show_toggle().
1068         
1069         * gtk/gtkbutton.c: Apply property patch from Lee Mallabone
1070
1071         * gtk/gtkfilesel.c: Apply property patch from Lee Mallabone
1072
1073         * gtk/gtkframe.c: Apply property patch from Lee Mallabone
1074
1075 2001-03-23  Havoc Pennington  <hp@redhat.com>
1076
1077         * gtk/gtktoolbar.c, gtk/gtkimcontext.c, gtk/gtklabel.c: fix up
1078         some docs
1079
1080 Fri Mar 23 16:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
1081
1082         * gtk/gtktreeviewcolumn.h (GtkCellDataFunc): Forgot to namespace
1083         this.
1084
1085         * gtk/gtktreestore.c (gtk_tree_store_set_value): change from
1086         set_cell to set_value
1087
1088         * gtk/gtkliststore.c (gtk_list_store_set_value): change from
1089         set_cell to set_value
1090
1091 Thu Mar 22 19:27:34 2001  Jonathan Blandford  <jrb@redhat.com>
1092
1093         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
1094         fix braino.
1095         * gtk/gtktreesortable.[ch]: New interface to add cleanup sortable
1096         support.
1097
1098         * gtk/gtktreeview.c: Addition of initial sortable support.
1099
1100         * gtk/gtktreestore.c: Addition of initial sortable support.
1101
1102         * gtk/gtkliststore.c: Addition of initial sortable support.
1103
1104         * gtk/gtkmarshal.list: yet another marshaller.
1105
1106         * gtk/gtktreedatallist.[ch]: shared code between the store models
1107         for handling sorting headers.
1108
1109 2001-03-22  Havoc Pennington  <hp@redhat.com>
1110
1111         * gtk/gtkcontainer.c (gtk_container_set_focus_chain): 
1112         (gtk_container_unset_focus_chain): Add ability to override the 
1113         focus chain for a container explicitly
1114
1115 Thu Mar 22 13:01:44 2001  Tim Janik  <timj@gtk.org>
1116
1117         * gtk/gtklabel.[hc]: some cleanups, fixed mnemonic_widget handling,
1118         added PROP_MNEMONIC_WIDGET.
1119
1120         * gtk/gtkwindow.c (gtk_window_activate_mnemonic): 
1121         (gtk_window_remove_mnemonic): 
1122         (gtk_window_add_mnemonic): fixed assertions.
1123         (gtk_window_activate_mnemonic): constrain modifier checks to those
1124         permitted by gtk_accelerator_get_default_mod_mask().
1125         got rid of gtk_window_get_default_accel_group().
1126
1127         * gtk/gtkwidget.c (gtk_widget_real_activate_mnemonic): handle non
1128         activatable widgets either by focussing or a warning.
1129         added a signal accumulator to ::activate_mnemonic which stops the
1130         emission once a handler returned TRUE.
1131
1132 2001-03-22  Havoc Pennington  <hp@pobox.com>
1133
1134         * gtk/gtktoolbar.c (gtk_toolbar_insert_stock): handle mnemonics in
1135         the stock item label
1136
1137         * gtk/gtklabel.c: s/@gtk_func/gtk_func()/ in docs
1138
1139         * gtk/gtkstock.c (builtin_items): add mnemonics where missing
1140
1141         * demos/gtk-demo/*.c: Add mnemonics all over the place
1142
1143         * gtk/gtklabel.h: mark parse_uline deprecated
1144
1145 2001-03-21  Alexander Larsson  <alexl@redhat.com>
1146
1147         * gtk/gtkitemfactory.[ch]:
1148         Add support for stock and normal imagemenuitems.
1149         
1150         * gtk/testgtk.c:
1151         Add some tests for mnemonics, stock toolbars, stock
1152         and image menuitems in itemfactory and gdk_window_scroll.
1153
1154 2001-03-21  Alexander Larsson  <alexl@redhat.com>
1155
1156         * gtk/gtkbutton.[ch]:
1157         * gtk/gtkdialog.c:
1158         Renamed gtk_button_new_stock() to gtk_button_new_from_stock() and
1159         removed accel_group argument. Renamed gtk_button_new_accel() to
1160         gtk_button_new_with_mnemonic() and removed accel_group argument.
1161
1162         * gtk/gtkcheckbutton.[ch]:
1163         New function gtk_check_button_new_with_mnemonic().
1164
1165         * gtk/gtkentry.c:
1166         Override activate_mnemonic and just grab focus.
1167
1168         * gtk/gtkitemfactory.c:
1169         Don't add menu uline accel group, instead use mnemonics support.
1170
1171         * gtk/gtklabel.[ch]:
1172         New support for mnemonics.
1173
1174         * gtk/gtkmarshal.list:
1175         Needed BOOLEAN:BOOLEAN for activate_mnemonic.
1176
1177         * gtk/gtkmenu.[c]:
1178         * gtkmenushell.c:
1179         Use mnemonics instead of accel groups for uline
1180         support in menu items.
1181         Removed gtk_menu_get_uline_accel_group() and
1182         gtk_menu_ensure_uline_accel_group().
1183
1184         * gtk/gtkmenuitem.c:
1185         Override activate_mnemonic to handle switching between
1186         menu items if there are collisions.
1187         
1188         * gtk/gtknotebook.c:
1189         Connect to activate_mnemonic on the tab_label, so that
1190         activating it switches to that notebook page.
1191
1192         * gtk/gtkwidget.[ch]:
1193         Add activate_mnemonic signal. New function
1194         gtk_widget_activate_mnemonic() to emit it.
1195         Default implementation does activate/grab_focus.
1196
1197         * gtk/gtkwindow.[ch]:
1198         Add support for mnemonics in windows.
1199         New functions:
1200         gtk_window_add_mnemonic, gtk_window_remove_mnemonic,
1201         gtk_window_activate_mnemonic, gtk_window_set_mnemonic_modifier
1202
1203         * gtk/testgtk.c:
1204         Update to function name changes.
1205         
1206 2001-03-21  Alexander Larsson  <alexl@redhat.com>
1207
1208         * gtk/gtkimagemenuitem.[c]:
1209         Add gtk_image_menu_item_new_from_stock()
1210
1211 Tue Mar 20 15:00:43 2001  Jonathan Blandford  <jrb@redhat.com>
1212
1213         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
1214         Fix buglet in meeting.
1215
1216 2001-03-19  Havoc Pennington  <hp@redhat.com>
1217
1218         * gtk/gtkiconfactory.c: Make GtkIconSource an opaque datatype, and
1219         add a bunch of accessor functions. This is because we have
1220         reasonable expectations of extending what fields it contains in
1221         the future.
1222
1223         * gtk/gtkstyle.c (gtk_default_render_icon): adapt to icon source
1224         changes
1225
1226         * gtk/gtkrc.c (gtk_rc_parse_icon_source): fix to use new
1227         GtkIconSource   
1228
1229 Mon Mar 19 15:53:36 2001  Owen Taylor  <otaylor@redhat.com>
1230
1231         * gtk/gtkitemfactory.c gtk/testgtk.c: Handle quoting of / with \; properly
1232         handle __ in paths, quote " and \n in gtk_item_factory_dump_items().
1233
1234         * gtk/gtkadjustment.[ch] gtk/gtkclist.c gtk/gtkhruler.c gtk/gtklayout.c 
1235           gtk/gtklist.c gtk/gtkprogress.[ch] gtk/gtkprogressbar.[ch] gtk/gtkrange.[ch]
1236           gtk/gtkruler.[ch] gtk/gtkscale.c gtk/gtkscrolledwindow.c gtk/gtkspinbutton.[ch]
1237           gtk/gtktext.c gtk/gtktextview.c gtk/gtkvruler.c gtk/testgtk.c:
1238         Change float to double everywhere with the exception of 0<->1.0 alignment
1239         and GtkCurve.
1240
1241 2001-03-19  Tor Lillqvist  <tml@iki.fi>
1242
1243         * gdk/win32/gdkdrawable-win32.c
1244         * gdk/win32/gdkimage-win32.c: Use correct casts in debugging
1245         output.
1246
1247         * demos/testpixbuf-drawable.c: If GDK_WINDOWING_WIN32, include
1248         gdkwin32.h.
1249
1250 2001-03-18  Tor Lillqvist  <tml@iki.fi>
1251
1252         * gdk/win32/gdkevents-win32.c (print_window_state): New function.
1253         print_event_state, print_event): Use preprocessor macro to make
1254         code more compact. Print also GDK_WINDOW_STATE events.
1255         (synthesize_crossing_events): Remove the old #ifdeffed-out code.
1256         
1257         * gtk/gtk.def
1258         * gtk/makefile.mingw.in: Update.
1259
1260         * gtk/gtkmain.h: Check for G_PLATFORM_WIN32, not only G_OS_WIN32,
1261         to catch also Cygwin.
1262
1263 Sun Mar 18 01:15:30 2001  Tim Janik  <timj@gtk.org>
1264
1265         * gtk/gtkspinbutton.[hc]: added rc-style argument
1266         GtkSpinButton::shadow_type.
1267         removed spin_button->shadow_type, gtk_spin_button_set_shadow_type()
1268         and ARG_SHADOW_TYPE as it doesn' make much sense to try to override
1269         rc-style settings.
1270
1271         * gtk/gtkfixed.c: removed gtk_fixed_paint() (was unused).
1272
1273         * gtk/gtkwidget.c: quark cleanups.
1274
1275         * gtk/gtkrc.[hc]: added gtk_rc_scanner_new() to create an rc-file
1276         scanner with appropriate configuration, renamed GtkRcStyleClass.clone
1277         to create_rc_style() (we don't do cloning in standard OO sense).
1278         added per rc style properties.
1279         
1280         * gtk/gtkstyle.[hc]: added code to retrive pspec conformant rc-style
1281         property values and for caching those. some cleanups.
1282         
1283         * gtk/Makefile.am: -DG_DISABLE_CONST_RETURNS.
1284         
1285         * gtk/gtksettings.[hc]: new file for global rc-file properties
1286         (at least currently, should get extended to support X properties
1287         and other communication mechanisms).
1288         
1289         * gtk/gtkwidget.[hc]: added style property support:
1290         (gtk_widget_class_install_style_property_parser): install style
1291         property pspec with parser function for rc-file values other
1292         than LONG, DOUBLE or STRING.
1293         (gtk_widget_class_install_style_property): same as above without
1294         parser (parsers are going to be needed quite infrequently).
1295         (gtk_widget_style_get_property): retrive style property value.
1296         (gtk_widget_style_get_valist): same as above with varargs support,
1297         has NOCOPY semantics.
1298         (gtk_widget_style_get): wrapper around gtk_widget_style_get_valist().
1299
1300 Fri Mar 16 18:24:53 2001  Jonathan Blandford  <jrb@redhat.com>
1301
1302         * demos/gtk-demo/main.c (row_activated_cb): modified to use
1303         "row_activated" signal.
1304
1305         * gtk/gtktreeview.c (gtk_tree_view_row_activated): oh, the
1306         stupidity.  Lets actually pass in the row with this signal...
1307
1308 Fri Mar 16 18:01:17 2001  Jonathan Blandford  <jrb@redhat.com>
1309
1310         * gtk/gtktreeviewcolumn.[ch]: s/GTK_TREE_COLUMN/GTK_TREE_VIEW_COLUMN
1311
1312         * gtk/gtktreeview.c (gtk_tree_view_row_activated): New signal.
1313
1314         * gtk/gtktreeview.c (gtk_tree_view_destroy): moved pretty much
1315         everything into the ::destroy function, and freed a lot more.
1316
1317 2001-03-16  Havoc Pennington  <hp@redhat.com>
1318
1319         * gtk/gtkwidget.h (struct _GtkWidgetAuxInfo): change to use gint
1320         instead of gint16, to avoid overflow issues, since sizes > 16-bit
1321         are now allowed.
1322
1323 2001-03-16  Havoc Pennington  <hp@redhat.com>
1324
1325         * Applied patch from Nils Barth (bug # 51041) to 
1326         replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
1327         in various places.
1328
1329 2001-03-15  Havoc Pennington  <hp@redhat.com>
1330         
1331         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): add varargs 
1332         for properties to set on the tag.
1333
1334         * gtk/testtext.c: fixups to reflect create_tag change
1335         
1336         * gtk/gtktexttag.c (gtk_text_tag_set_property):
1337         background/foreground stipple are objects, not boxed.
1338
1339         * demos/gtk-demo/textview.c: intellihancing
1340
1341 Fri Mar 16 11:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
1342
1343         * gtk/gtktreeview.c (gtk_tree_view_set_model): Fixed some
1344         braindeadness spotted by Jamie Strachan <frostfreek@yahoo.com>.
1345
1346 2001-03-16  Alexander Larsson  <alexl@redhat.com>
1347
1348         * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
1349         Fix sign error with queued region translations.
1350
1351 2001-03-15  HideToshi Tajima  <tajima@happy>
1352
1353         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
1354         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_location):
1355         * gtk/gtkentry.c (update_im_cursor_location): 
1356         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_location):
1357         * gtk/gtkimcontext.h (struct _GtkIMContextClass): rename
1358         set_cursor_pos to set_cursor_location in GtkInputContext class
1359
1360 Thu Mar 15 18:22:44 2001  Jonathan Blandford  <jrb@redhat.com>
1361
1362         * gtk/gtkcellrenderer.h: Changed prototype to allow for getting
1363         the location of the cell relative to its area.
1364         * gtk/gtkcell*: modified for above change
1365         * gtk/gtktreeview.c: modified for above change.
1366
1367 Wed Mar 14 13:58:32 2001  Jonathan Blandford  <jrb@redhat.com>
1368
1369         * gtk/gtktreeview.c (gtk_tree_view_set_model): Ref the model.
1370          (gtk_tree_view_finalize): actually unref the model.  Thanks to
1371         Jamie Strachan <frostfreek@yahoo.com> for noticing this error.
1372
1373 2001-03-14  Havoc Pennington  <hp@redhat.com>
1374
1375         * gtk/gtkdata.h, gtk/gtkdata.c: Delete.
1376         
1377         * gtk/gtk.h: remove gtkdata.h
1378
1379         * gtk/Makefile.am: remove gtkdata
1380         
1381         * gtk/gtktext.c (gtk_text_set_adjustments): connect to "destroy"
1382         not "disconnect" on the adjustments.
1383         
1384         * gtk/gtktooltips.h, gtk/gtktooltips.c: derive from GtkObject not
1385         GtkData
1386
1387         * gtk/gtkadjustment.h, gtk/gtkadjustment.c: derive from GtkObject
1388         not GtkData
1389
1390         * configure.in: handle case where X render exists, but Pango lacks
1391         Xft support.
1392
1393 2001-03-15 Alexander Larsson  <alexl@redhat.com>
1394
1395         * gtk/gtktoolbar.[ch]:
1396         New functions gtk_toolbar_set_icon_size and gtk_toolbar_insert_stock
1397         to add stock items to toolbars.
1398
1399         * gtk/Makefile.am:
1400         Remove ../gdk/gdkim.h from gdk_headers.
1401
1402 2001-03-15  Sven Neumann  <sven@gimp.org>
1403
1404         * gdk/gdkim.h: removed
1405         
1406         * gdk/gdkprivate.h
1407         * gdk/x11/gdkim-x11.c: do not include gdkim.h 
1408
1409 2001-03-14  HideToshi Tajima  <tajima@happy.sunsoft.eng.sun.com>
1410
1411         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_pos):
1412         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_pos):
1413         * gtk/gtkimcontext.h (struct _GtkIMContextClass): add
1414         set_cursor_pos() virtual method
1415
1416         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_class_init):
1417         (gtk_im_context_xim_set_cursor_pos): add implementation for
1418         set_cursor_pos() method
1419
1420         * gtk/gtkentry.c (recompute_idle_func): set current cursor
1421         position to input methods
1422
1423 Mon Mar 12 21:02:08 2001  Jonathan Blandford  <jrb@redhat.com>
1424
1425         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Fix up focus
1426         code a lot.
1427
1428         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): use
1429         g_mem_chunk.
1430         (_gtk_tree_data_list_alloc): use g_mem_chunk.
1431         (_gtk_tree_data_list_node_to_value): Fix to switch on
1432         G_TYPE_FUNDAMENTAL.
1433         (_gtk_tree_data_list_value_to_node): Fix to switch on
1434         G_TYPE_FUNDAMENTAL.
1435         (_gtk_tree_data_list_node_copy): Fix to switch on
1436         G_TYPE_FUNDAMENTAL.
1437
1438 2001-03-12  Havoc Pennington  <hp@redhat.com>
1439
1440         * gtk/gtkwindow.c (gtk_window_class_init): Patch from John Margaglione 
1441         to convert to new property API. Also, change default_width and
1442         default_height get_property to return 0 as the flag value for
1443         "unset"; -1 is not a valid value for these fields.
1444
1445 2001-03-12  Havoc Pennington  <hp@redhat.com>
1446
1447         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: Switch to using an
1448         enum with registration for icon sizes, instead of strings.
1449
1450         * gtkimage.h, gtkimage.c, gtkstyle.h, gtkstyle.c, gtkwidget.h, 
1451         gtkwidget.c: Fix to reflect GtkIconSize
1452         
1453 2001-03-12  Alexander Larsson  <alexl@redhat.com>
1454
1455         Make GtkFB compile and link.
1456         
1457         * gdk/linux-fb/gdkdrawable-fb2.c:
1458         window->mapped to GDK_WINDOW_IS_MAPPED(). 
1459         
1460         * gdk/linux-fb/gdkwindow-fb.c:
1461         window->mapped to GDK_WINDOW_IS_MAPPED(). 
1462         Added gdk_window_shape_combine_region.
1463         Added assorted placeholders for unimplemented new GdkWindow API calls.
1464
1465 2001-03-12  Alexander Larsson  <alexl@redhat.com>
1466
1467         * gtk/gtkfilesel.c:
1468         Add more test when converting filenames from/to utf-8.
1469         Don't allow entering text in the filename entry which isn't allowed in
1470         a filename. Just beep instead.
1471
1472 2001-03-12  Alexander Larsson  <alexl@redhat.com>
1473
1474         * gtk/gtkclist.c:
1475         Scroll using gdk_window_scroll(). Don't wait for exposes.
1476         Move the column headers in an order that makes them flash less.
1477
1478 2001-03-10  Hans Breuer  <hans@breuer.org>
1479
1480         * gdk/gdk.def : updated
1481
1482         * gdk/win32/gdkgc-win32.c : pixmaps are visible again, due
1483         to offseting the clip_mask at the right place
1484
1485         * gdk/win32/gdkwindow-win32.c : don't create background brushes
1486         for all the gdkClasses, especially not for the input_only case.
1487         Otherwise flickering wont be avoidable, because we don't get
1488         WM_ERASEBKGND message for these windows.
1489
1490         * gdk/win32/gdkevents-win32.c : initialize event->expose.region
1491         and fixed massive redraw problems apparently triggered by Alexanders 
1492         recent change. Not fully understood the GDK_EXPOSE / WM_PAINT handling
1493         but it seems to work quite well :-)
1494
1495         * gdk/win32/gdkprivate-win32.h : added _gdk_window_process_expose
1496         prototype
1497
1498 Sat Mar 10 12:15:31 2001  Jonathan Blandford  <jrb@redhat.com>
1499
1500         * gtk/gtktreestore.c (gtk_tree_store_set_cell): Fix a stupid typo.
1501         (gtk_list_store_set_cell): Fix a stupid typo.
1502
1503 Fri Mar  9 20:36:21 2001  Jonathan Blandford  <jrb@redhat.com>
1504
1505         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): Make
1506         select_all not work if you're in SINGLE mode (it doesn't make that
1507         much sense, anyway.)
1508
1509         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
1510         handle types more sanely.
1511         (_gtk_tree_data_list_value_to_node): handle types more sanely.
1512         (_gtk_tree_data_list_node_copy): handle types more sanely.
1513
1514         * gtk/gtkliststore.c (gtk_list_store_set_cell): fix to work with
1515         GValue better. Converts the type as well.
1516
1517         * gtk/gtktreestore.c (gtk_tree_store_set_cell): fix to work with
1518         GValue better. Converts the type as well.
1519
1520 Wed Mar  7 20:47:41 2001  Owen Taylor  <otaylor@redhat.com>
1521
1522         * gtk/gtktext.c gtk/gtkoldeditable.[ch] gdk/gdk.[ch]
1523         gdk/Makefile.am gdk/x11/Makefile.am gdk/x11/gdkevents-x11.c 
1524         gdk/x11/gdkglobals-x11.c gdk/x11/gdkprivate-x11.c
1525         gdk/x11/gdkx.h gdk/x11/gdkim-x11.c: Remove old XIM code.
1526
1527         * gdk/win32/gdkim-win32.c gdk/linux-fb/gdkim-fb.c: Remove
1528         gdk_im/gdk_ic.
1529
1530 2001-03-09  Hans Breuer  <hans@breuer.org>
1531
1532         * gdk/gdk.def : updated
1533
1534         * gdk/win32/gdkevents-win32.c : don't ask input_only windows
1535         for their palette
1536
1537         * gdk/win32/gdkgeometry-win32.c : reflect GdkWindowObject::mapped
1538         removing
1539
1540         * gdk/win32/gdkwindow-win32.c : reflect GdkWindowObject::mapped
1541         removing and implemented Havoc's GdkWindow state functions; 
1542         stick/unstick only as no-op, cause I don't know how to emulate 
1543         on win32 ...
1544
1545         * gtk/gtk.def : updated
1546
1547         * gtk/gtkbox.c (gtk_box_get_spacing) : use g_return_val_if_fail ()
1548
1549         * gtk/gtktypeutils.c : #include <string.h>
1550
1551         * gtk/gtkwindow.h : declare gtk_window_set_decorated ()
1552
1553 Fri Mar  9 09:31:55 2001  Tim Janik  <timj@gtk.org>
1554
1555         * gtk/gtkwidget.c (gtk_widget_class_init): fixed signals with
1556         GDK_TYPE_DRAG_CONTEXT, it needs to be marshaled as an object,
1557         not a boxed.
1558
1559 2001-03-09  Alexander Larsson  <alexl@redhat.com>
1560
1561         * docs/Changes-2.0.txt:
1562         Document expose event->region change and that gtk_widget_event
1563         doesn't allow passing expose events.
1564
1565         * gdk/gdkevents.h:
1566         Add region to expose event.
1567         
1568         * gdk/gdkevents.c:
1569         Handle event->region in gdk_event_copy() and gdk_event_free().
1570
1571         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
1572         Generate expose_event->region when creating expose events.
1573
1574         * gdk/x11/gdkevents-x11.c:
1575         Generate expose events with regions when translating X events.
1576
1577         * gtk/gtkcontainer.[ch]:
1578         Default expose handler that propagates expose events to NO_WINDOW
1579         children. New function gtk_container_propagate_expose()
1580
1581         * gtk/gtkwidget.[ch]:
1582         Moved gtk_widget_event implementation to gtk_widget_event_internal.
1583         gtk_widget_event calls gtk_widget_event_internal but doesn't allow
1584         expose events. New function gtk_widget_send_expose() to send expose
1585         events. New function gtk_widget_region_intersect() to calculate
1586         window/region intersections.
1587         
1588         * gtk/gtkmain.c (gtk_main_do_event):
1589         Use gdk_window_begin_paint_region() instead of gdk_window_begin_paint_rect().
1590         Use gtk_widget_send_expose() to send expose events.
1591         
1592         * gtk/gtkbin.c:
1593         * gtk/gtkbox.c:
1594         * gtk/gtkfixed.c:
1595         * gtk/gtkimagemenuitem.c:
1596         * gtk/gtklist.c:
1597         * gtk/gtkpacker.c:
1598         * gtk/gtktable.c:
1599         * gtk/gtktree.c:
1600         Remove expose handler, using the default container implementation
1601         instead.
1602         
1603         * gtk/gtkbutton.c:
1604         * gtk/gtkcheckbutton.c:
1605         * gtk/gtkeventbox.c:
1606         * gtk/gtkfixed.c:
1607         * gtk/gtkhandlebox.c:
1608         * gtk/gtklayout.c:
1609         * gtk/gtklistitem.c:
1610         * gtk/gtkmenu.c:
1611         * gtk/gtkmenubar.c:
1612         * gtk/gtkmenuitem.c:
1613         * gtk/gtknotebook.c:
1614         * gtk/gtkoptionmenu.c:
1615         * gtk/gtkpaned.c:
1616         * gtk/gtkscrolledwindow.c:
1617         * gtk/gtktogglebutton.c:
1618         * gtk/gtktoolbar.c:
1619         * gtk/gtktreeitem.c:
1620         * gtk/gtkviewport.c:
1621         Chain expose handler to parent class handler. Use
1622         gtk_container_propagate_expose() to propagate exposes.
1623
1624         * gtk/gtkclist.c (check_exposures):
1625         * gtk/gtktext.c (process_exposes):
1626         Use gtk_widget_send_expose instead of gtk_widget_event.
1627
1628 Thu Mar  8 19:40:28 2001  Jonathan Blandford  <jrb@redhat.com>
1629
1630         * gtk/gtktreeview.c (gtk_tree_view_destroy): Add destroy function.
1631
1632 Thu Mar  8 19:18:27 2001  Jonathan Blandford  <jrb@redhat.com>
1633
1634         * gtk/gtktreeview.c (gtk_tree_view_unref_tree_helper): Actually
1635         unref the nodes.   Fixes bug #50058.
1636
1637         * gtk/gtktreemodel.c (gtk_tree_model_ref_node): change
1638         "::ref_iter" to "::ref_node".
1639         (gtk_tree_model_unref_node): change "::unref_iter" to
1640         "::unref_node". Fixes bug #50064.
1641
1642 Thu Mar  8 17:40:09 2001  Jonathan Blandford  <jrb@redhat.com>
1643
1644         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): add
1645         support for invisible cells.
1646          (gtk_tree_view_bin_expose): ditto
1647
1648 Thu Mar  8 16:36:00 2001  Jonathan Blandford  <jrb@redhat.com>
1649
1650         * gtk/gtktreemodel.c (gtk_tree_model_get_type): add prerequesite
1651         on gobjects.
1652
1653         * tests/testtreefocus.c (main): New test file.
1654
1655         * tests/testtreeview.c: update to latest glib changes.
1656
1657         * tests/testtreecolumns.c: update to latest glib changes.
1658
1659 Thu Mar  8 18:13:20 2001  Tim Janik  <timj@gtk.org>
1660
1661         * gtk/testgtk.c: re-enabled event watcher emission hooks.
1662
1663 Thu Mar  8 16:51:21 2001  Tim Janik  <timj@gtk.org>
1664
1665         * *.c: added accumulator data argument to g_signal_newc()
1666         functions.
1667
1668         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): 
1669         * gtk/gtktreeview.c (gtk_tree_view_setup_model): 
1670         * gtk/treestoretest.c (make_window):
1671         s/g_signal_connect/g_signal_connectc/.
1672
1673         * gtk/gtktextbuffer.c: completed signal arg fixups,
1674         they also needed G_SIGNAL_TYPE_STATIC_SCOPE flag.
1675
1676 Thu Mar  8 00:02:30 2001  Owen Taylor  <otaylor@redhat.com>
1677
1678         * gtk/gtkwidget.[ch] (gtk_widget_get_name): Make
1679         G_CONST_RETURN.
1680
1681         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add a 
1682         ::hierarchy-changed signal when a widget changes
1683         from anchored to unanchored or vice versa.
1684         (anchored means 
1685          gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW) != NULL.)
1686         Use a private flag to keep track of this efficiently.
1687
1688 2001-03-07  Havoc Pennington  <hp@redhat.com>
1689
1690         * gtk/testgtk.c (create_spins): uglify so that size request gets
1691         tested.
1692
1693         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Base size
1694         request on values for upper/lower, completes #6152
1695
1696 Wed Mar  7 20:07:22 2001  Owen Taylor  <otaylor@redhat.com>
1697
1698         * Makefile.am: Remove gtk-config-2.0 again.
1699         (Grrrr, pkg-config. And stops make loops.)
1700
1701 Thu Mar  8 00:18:29 2001  Tim Janik  <timj@gtk.org>
1702
1703         * gtk/gtksignal.[hc]: removed old emission hook API.
1704         
1705         * docs/Changes-2.0.txt: fixed sections.
1706         
1707         * gtk/gtktextbuffer.c: signal arg fixups.
1708
1709 2001-03-07  Havoc Pennington  <hp@redhat.com>
1710
1711         * gtk/gtktextview.c (invalidated_handler): use PRIORITY_VALIDATE
1712
1713         * gtk/gtktextview.h (GTK_TEXT_VIEW_PRIORITY_VALIDATE): add this
1714         here, bug #50368; changed to be GDK_PRIORITY_REDRAW + 5, instead
1715         of GDK_PRIORITY_REDRAW + 1, so you can insert stuff in between the
1716         validation and the redraw which is higher priority than the
1717         validation.
1718
1719 2001-03-07  Havoc Pennington  <hp@redhat.com>
1720
1721         * gtk/gtkentry.c (gtk_entry_get_property): remove trailer
1722         (gtk_entry_set_property): remove trailer
1723
1724         * gtk/gtkentry.c (gtk_entry_set_width_chars): 
1725         (gtk_entry_get_width_chars): new functions, to set size request to 
1726         a given number of characters
1727
1728         * gtk/testgtk.c (create_dialog): beef up the dialog test slightly
1729
1730         * gtk/gtkdialog.c (gtk_dialog_set_has_separator): new function
1731         (gtk_dialog_get_has_separator): new function
1732         (run_delete_handler): fix to not emit "response" signal
1733         because we already did in the delete event handler installed
1734         at dialog creation time.
1735         
1736         * gtk/gtkdialog.h: add a has_separator property,
1737         add GTK_DIALOG_NO_SEPARATOR flag
1738
1739 2001-03-07  Havoc Pennington  <hp@redhat.com>
1740
1741         * gtk/gtkwindow.c (gtk_window_set_decorated): new function, turns
1742         off decorations for a window.
1743
1744         * demos/gtk-demo/button_box.c (create_bbox): adapt to button box
1745         changes
1746
1747         * gtk/gtklabel.c (gtk_label_get_layout_offsets): new function 
1748         to get location of PangoLayout inside the label, closes #51198
1749
1750         * gtk/testgtk.c (create_bbox): fix up button box usage
1751
1752         * gtk/testcalendar.c (create_calendar): fix up button box usage
1753
1754         * gtk/gtkfilesel.c (gtk_file_selection_init): fixup buttonbox usage
1755
1756         * gtk/gtkdialog.c (gtk_dialog_init): fixup buttonbox usage
1757
1758         * gtk/gtkhbbox.h: deprecations
1759
1760         * gtk/gtkvbbox.h: deprecations
1761
1762         * gtk/gtkbox.c (gtk_box_get_spacing): new function, used to
1763         emulate deprecated gtk_button_box_get_spacing
1764
1765         * gtk/gtkbbox.h: deprecate some useless functions, remove entirely 
1766         the "set global default" functions
1767         (struct _GtkButtonBox): remove "spacing" field, use the one from 
1768         GtkBox base class
1769
1770         * gtk/gtkbbox.c (_gtk_button_box_child_requisition): rename with uscore
1771
1772         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): If we fail to
1773         render the icon, return the missing image icon.
1774
1775         * gtk/gtkimage.c (gtk_image_set_from_file): fall back to missing
1776         image icon if the load fails.   
1777
1778         * gtk/gtkstock.h (GTK_STOCK_MISSING_IMAGE): Add stock icon for use
1779         when no image is found; should be the Netscape "missing image"
1780         icon eventually but for now is a random image
1781
1782         * gtk/gtkwindow.c (gtk_window_set_role): new function, sets the 
1783         role for the session manager
1784
1785         * gtk/testgtk.c (dnd_drop): remove use of GTK_WINDOW_DIALOG
1786
1787         * gtk/gtkcompat.h (GTK_WINDOW_DIALOG): compat #define
1788         GTK_WINDOW_DIALOG GTK_WINDOW_TOPLEVEL
1789
1790         * gtk/gtkenums.h (enum GtkWindowType): remove GTK_WINDOW_DIALOG
1791
1792 Wed Mar  7 13:24:57 2001  Tim Janik  <timj@gtk.org>
1793
1794         * gtk/*.c: marshaller fixes.
1795         
1796         * gtk/gtkmarshal.list: extreme cleanup.
1797
1798         * gtk/gtktreeview.c (gtk_tree_view_class_init): disable interface
1799         param spec for now.
1800
1801         * gtk/gtktexttag.c (gtk_text_tag_set_property): use g_value_get_boxed()
1802         where appliable.
1803
1804         * gtk/gtktypeutils.[hc]: updates to GLib API changes.
1805         special cased autogenerated boxed types from gtktypebuiltins_ids.c
1806         which are not reference counted:
1807         GtkSelectionData, GdkEvent, GdkColor, GtkTextIter, PangoTabArray,
1808         PangoFontDescription, GtkTreeIter and GtkTreePath.
1809
1810 Thu Mar  1 03:58:56 2001  Tim Janik  <timj@gtk.org>
1811
1812         * gtk/gtktreeselection.h: 
1813         * gtk/gtktreemodel.c:
1814         * gtk/gtktreedatalist.[hc]: fixed includes. no gobject/*
1815         file should be included directly, and gobject/gmarshal.h
1816         as well as gtk/gtkmarshal.h even can't be included directly.
1817
1818         * Makefile.am: grr, install gtk-config-2.0.
1819
1820         * gtk/testgtk.c:
1821         * gtk/simple.c:
1822         * gtk/gtkmenu.c:
1823         * gtk/gtkitemfactory.c: use g_object_connect() instead of
1824         passing "*signal*::*" args to gtk_widget_set().
1825         
1826         * gtk/gtktypeutils.[hc]: got rid of GTK_TYPE_SIGNAL.
1827         
1828         * gtk/*.c: removed trailer arg from property setters and getters.
1829         macro fixups.
1830
1831 2001-03-07  Alexander Larsson  <alexl@redhat.com>
1832
1833         * gtk/gtklabel.c (set_markup): Removed warning
1834
1835 Tue Mar  6 19:59:12 2001  Jonathan Blandford  <jrb@redhat.com>
1836
1837         * gtk/gtkcellrenderer.h (struct _GtkCellRenderer): Add visible
1838         field to allow you to hide cell renderers.
1839
1840         * gtk/gtkcellrenderer.c: Add support for invisible cells.
1841
1842         * gtk/gtktreeview.c: Add support for invisible cells.
1843
1844 Tue Mar  6 17:25:07 2001  Jonathan Blandford  <jrb@redhat.com>
1845
1846         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_clicked):
1847         Add "clicked" signal back to columns.
1848
1849         * ChangeLog: remove conflict markers.
1850
1851 Tue Mar  6 10:45:45 2001  Owen Taylor  <otaylor@redhat.com>
1852
1853         * gtk/gtkbutton.c: Add animation of activation by, on 
1854         activate, pressing the button, and adding a timeout that 
1855         releases the button after 250ms or on key release and
1856         emits ::clicked. (#51501)
1857
1858         * gtk/gtkdialog.c: Bit of a hack - for buttons in the
1859         action area, we connect to ::clicked instead of ::activate
1860         so the dialog stays up through the animation.
1861
1862 Mon Mar  5 16:38:15 2001  Owen Taylor  <otaylor@redhat.com>
1863
1864         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): Only
1865         check the ignore_enter flag for the menu shell that
1866         the item is actually a child of, not for attached
1867         submenus. (#51536)
1868
1869 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
1870
1871         * gtk/gtkmain.c (gtk_propagate_event): Only do special
1872         special key-press grab handling for widgets within
1873         GtkWindows. Otherwise, fall through to normal case.
1874
1875         This prevents key events being sent twice to GtkInvisible
1876         widgets, which can cause all sorts of mischief.
1877
1878 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
1879
1880         * gtk/gtkmain.c (gtk_propagate_event): When a grab
1881         widget is in effect, give the grab widget a first
1882         crack at KEY_PRESS/RELEASE events. (#424)
1883
1884 2001-03-06  James Henstridge  <james@daa.com.au>
1885
1886         * gtk/gtkwidget.c (gtk_widget_class_init): set the class closure
1887         offset for the window_state_event to point at window_state_event
1888         rather than no_expose_event.
1889
1890 Mon Mar  5 19:10:15 2001  Jonathan Blandford  <jrb@redhat.com>
1891
1892         * gtk/gtkimmodule.h: fix busted /* comment */
1893
1894 Mon Mar  5 15:07:05 2001  Jonathan Blandford  <jrb@redhat.com>
1895
1896         * gtk/gtktreeview.c: Apply patch from John Margaglione to add
1897         object properties.
1898
1899 Mon Mar  5 14:55:19 2001  Jonathan Blandford  <jrb@redhat.com>
1900
1901         * gtk/gtkcellrenderertoggle.c: Apply patch from Lee Mallabone to
1902         add object properties.
1903
1904         * gtk/gtkcellrenderertextpixbuf.c: Apply patch from Lee Mallabone
1905         to add object properties.
1906
1907         * gtk/gtkcellrenderertext.c: Apply patch from Lee Mallabone to add
1908         object properties.
1909
1910         * gtk/gtkcellrendererpixbuf.c: Apply patch from Lee Mallabone to
1911         add object properties.
1912
1913         * gtk/gtkcellrenderer.c: Apply patch from Lee Mallabone to add
1914         object properties.
1915
1916 Mon Mar  5 14:38:54 2001  Jonathan Blandford  <jrb@redhat.com>
1917
1918         * gtk/gtktreemodel.c: renamed "child_toggled" to
1919         "has_child_toggled".
1920
1921         * gtk/gtktreeview.c: Handle removing columns better.  Updated to
1922         handle new signal name.
1923
1924         * gtk/gtktreestore.c: Updated to handle new signal name.
1925         * gtk/gtklisttore.c: Updated to handle new signal name.
1926         * gtk/gtktreemodelsort.c: Updated to handle new signal name.
1927
1928 2001-03-05  Alexander Larsson  <alexl@redhat.com>
1929
1930         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state):
1931         Set GDK_WINDOW_TYPE_HINT_MENU on tearoff window.
1932
1933 2001-03-05  Michael Natterer  <mitch@gimp.org>
1934
1935         * gtk/gtklabel.c: Made the "parent_class" pointer static. The
1936         pixbuf-engine coincidentially also failed to make one of it's
1937         parent_class pointers static, causing overwriting of GtkLabel's
1938         parent_class pointer in pixbuf_style_class_init().
1939         (Will commit the fix to the pixbuf-engine too).
1940
1941 2001-03-05  Alexander Larsson  <alexl@redhat.com>
1942
1943         * gdk/gdkwindow.h:
1944         Added GdkWindowTypeHint type. Added modal_hint field to GdkWindindow.
1945         New functions gdk_window_set_type_hint, gdk_window_set_modal_hint and
1946         gdk_window_set_icon_list for net wmspec functionality.
1947
1948         * gdk/x11/gdkwindow-x11.c:
1949         Set _NEW_WM_STATE_MODAL from window->modal_hint in set_inital_hints.
1950         Implement gdk_window_set_type_hint, gdk_window_set_modal_hint and
1951         gdk_window_set_icon_list.
1952         Added gdk_wmspec_change_state helper function and used it in the code.
1953         Set _NET_WM_ICON_NAME in gdk_window_set_title and gdk_window_set_icon_name.
1954
1955         * gtk/gtkdialog.c (gtk_dialog_init):
1956         Set GDK_WINDOW_TYPE_HINT_DIALOG.
1957
1958         * gtk/gtkhandlebox.c (gtk_handle_box_realize):
1959         Set GDK_WINDOW_TYPE_HINT_TOOLBAR.
1960
1961         * gtk/gtkwindow.c:
1962         new function gtk_window_set_type_hint.
1963         On realize, set type hint and modal hint.
1964
1965         * gtk/gtkwindow.h:
1966         Added type_hint field and gtk_window_set_type_hint.
1967
1968 2001-03-05  Alexander Larsson  <alexl@redhat.com>
1969
1970         * gtk/gtklabel.[ch]:
1971         Convert from GtkArg to GParam (originally based on patch from Lee Mallabone).
1972         New function gtk_label_get_accel_keyval () to get the underline accelerator
1973         of the label. Setting the label pattern overrides other attributes.
1974
1975 Mon Mar  5 14:51:10 MET 2001  Sven Neumann  <sven@gimp.org>
1976
1977         * gtk/gtkrc.c: fixed compiler warnings by inserting some consts.
1978         Added missing initializers to gtk_rc_style_init().
1979
1980 Sun Mar 04  07:30:03 2001 CET Mikael Hermansson <mikeh@bahnhof.se>
1981
1982         * gtk/gtktextview.c: fixed bug #51097 about setting 
1983         gtk_text_view_set_border_window_size() if the widget is 
1984         already realized.
1985
1986 Sat Mar  3 16:59:16 2001  Owen Taylor  <otaylor@redhat.com>
1987
1988         * gdk/gdkpango.h gdk/x11/gdkwindow-x11.c: Doc fixes
1989
1990         * gdk/win32/gdkinput.c (gdk_device_get_axis): Remove doc
1991         comment. Won't do to have duplicated doc comments between
1992         the platform subdirs.
1993
1994 Sat Mar  3 16:26:33 2001  Owen Taylor  <otaylor@redhat.com>
1995
1996         * gdk/x11/gdkmain-x11.c gdk/x11/gdkkeys-x11.c 
1997           gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.c:
1998
1999         Detectable auto-repeat - make a repeating key generate
2000         press/press/press/release instead of press/release pairs.
2001
2002         If we have Xkb and XkbSetDectableAutoRepeat supports
2003         that, we do it that way. Otherwise, when we get
2004         a release event, we check ahead with XPending to see
2005         if the next key is a KeyPress with the same keycode
2006         and timestamp. (Not 100% reliable, but pretty close.)
2007           
2008 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
2009         
2010         * gtk/gtkmain.c (gtk_propagate_event): Only do special
2011         special key-press grab handling for widgets within
2012         GtkWindows. Otherwise, fall through to normal case.
2013  
2014         This prevents key events being sent twice to GtkInvisible
2015         widgets, which can cause all sorts of mischief.
2016  
2017 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
2018  
2019         * gtk/gtkmain.c (gtk_propagate_event): When a grab
2020         widget is in effect, give the grab widget a first
2021         crack at KEY_PRESS/RELEASE events. (#424)
2022  
2023 Sat Mar  3 15:39:49 2001  Owen Taylor  <otaylor@redhat.com>
2024
2025         * gtk/gtkentry.c (gtk_entry_button_press): Add shift-clicking
2026         to extend the selection. (Roughly based on patch
2027         from Jay Cox, #50939)
2028
2029         * gtk/gtkentry.c (gtk_entry_button_press): Fix triple-clicking
2030         to properly handle previous GDK_BUTTON_PRESS. 
2031         (Patch from Jay Cox, #50938)
2032
2033         * gtk/gtkentry.c (gtk_entry_real_delete_text): Move the
2034         '\0' back along with the deleted text. (#51148)
2035
2036 Mon Jan 22 14:31:29 2001  Owen Taylor  <otaylor@redhat.com>
2037
2038         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Unshift
2039         the group when extracting it from the X keyboard event.
2040
2041         * modules/input/Makefile.am modules/input/imipa.c: 
2042         Simple module for entering IPA. (Do we need a 
2043         gtk-stupid-input-tricks CVS module?)
2044
2045 Sat Mar  3 13:32:47 2001  Owen Taylor  <otaylor@redhat.com>
2046
2047         * gtk/gtkimmodule.c (gtk_im_module_init): Remove spurious
2048         const.
2049
2050         * gdk-pixbuf-2.0.pc.in gtk+-2.0.pc.in: Fix include path.
2051
2052         * gtk/gtkdialog.c (gtk_dialog_set_default_response): If there
2053         is no focus widget for the dialog currently, grab the focus as well
2054         as the default.
2055
2056         * gtk/gtkdialog.c (gtk_dialog_set_default_response): Get
2057         the action area's children to iterate through, not the
2058         dialog's children.
2059
2060 Sat Mar  3 13:21:27 2001  Owen Taylor  <otaylor@redhat.com>
2061
2062         * tests/Makefile.am tests/testsocket.c tests/testsocket_child.c:
2063         Add plug-socket tests. (Won't work worth a darn until I commit
2064         the rest of the plug-socket changes, but no reason these
2065         can't go into CVS now.)
2066
2067 2001-03-02  Havoc Pennington  <hp@redhat.com>
2068
2069         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_flush): use
2070         _gdk_region_get_xrectangles()
2071
2072         * gdk/x11/gdkmain-x11.c (_gdk_region_get_xrectangles): new function
2073
2074         * gtk/testgtk.c (create_shapes): add test for shape_combine_region
2075
2076         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_region): new
2077         function, contributed by Ron Steinke    
2078
2079         * gdk/x11/gdkevents-x11.c (gdk_wmspec_supported): rename
2080         gdk_net_wm_supports
2081
2082         * gdk/gdkregion-generic.c (gdk_region_get_rectangles): 
2083         New function, contributed by Ron Steinke
2084
2085         * gtk/gtkentry.c (gtk_entry_get_layout_offsets): New function, 
2086         used to line up the text in the entry when using the entry for
2087         editable sheet cell hacks
2088
2089         * gtk/testgtk.c (create_entry): test the activate_default setting
2090         on GtkEntry
2091
2092         * gtk/gtkentry.c (gtk_entry_set_activates_default): New function to 
2093         cause the entry to activate the default button for a dialog when 
2094         activated
2095         (gtk_entry_get_activates_default): new function
2096
2097 Wed Feb 28 19:10:43 2001  Owen Taylor  <otaylor@redhat.com>
2098
2099         * gtk/gtkclist.c (real_remove_row): Patch from ChiDeok
2100         Hwang to move call to sync_selection() up a few lines
2101         to before the row list is modified, to fix crash when
2102         removing rows in the undo_selection list.
2103
2104         (Test case provided by Daniel Elstner:
2105
2106         http://mail.gnome.org/archives/gtk-list/2001-February/msg00359.html)
2107
2108 Fri Feb 23 15:06:48 2001  Owen Taylor  <otaylor@redhat.com>
2109
2110         * gtk/gtktree.c (gtk_tree_class_init): Do the setting
2111         of tree->root_tree in parent_set rather than _map(), 
2112         fixing #50892 in a bit better manner.
2113
2114 Thu Feb 22 17:07:58 2001  Owen Taylor  <otaylor@redhat.com>
2115
2116         * gtk/gtkmenu.c (gtk_menu_popup): Don't flip cursor. (#50934)
2117
2118 Tue Feb  2 11:22:33 2001  Jody Goldberg <jgoldberg@home.com>
2119
2120         * gtk/gtkstyle.c : Remove duplicate fwd decl for
2121         gtk_default_draw_shadow.
2122
2123 ue Feb 20 11:40:58 2001  Owen Taylor  <otaylor@redhat.com>
2124
2125         * gdk/gdkimage.c (gdk_image_new): Remove excess 
2126         warning, make warnings more verbose, treat a error
2127         in shmat as permanent, and don't try again.
2128         (#51163, Ed Randall.)
2129
2130 Mon Feb 19 20:15:28 2001  Owen Taylor  <otaylor@redhat.com>
2131
2132         * gtk/gtkrange.c (gtk_range_timer_1st_time): Add an initial
2133         delay for the first click before starting to scroll.
2134         (based on #51026, gtk-enf-990512-0.patch, Eric Fisher)
2135
2136         * gtk/gtktext.c: GtkText should have I-beam cursor. 
2137         (based on gtk-enf-990513-1.patch, Eric Fisher.)
2138
2139 Mon Feb 19 16:42:19 2001  Owen Taylor  <otaylor@redhat.com>
2140
2141         * gtk/gtklayout.c (gtk_layout_allocate_child): Tiny
2142         cleanup to remove some references to unused
2143         ->xoffset, ->yoffset.
2144
2145 Mon Feb 19 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>
2146
2147         * gdk/gdkrgb.c (gdk_rgb_convert_555_br): Fix incorrect
2148         mask. (#51039, fix from Martin Maierhofer)
2149
2150 Fri Feb 16 20:09:42 2001  Owen Taylor  <otaylor@redhat.com>
2151
2152         * gtk/gtkctree.c (gtk_ctree_class_init): Add bindings
2153         for unshifted + and shifted = for non-us keyboards.
2154         Make <Control>+ and <Control>- work as well as 
2155         <Control>KP_Plus, <Control>KP_Minus for recursive
2156         open/close.  (#2682, René Seindal)
2157
2158 Fri Feb 16 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
2159
2160         * gtk/gtkmenushell.c (gtk_real_menu_shell_cancel): Unset
2161         the active menu item before deactivating the menu,
2162         so gtk_menu_popdown doesn't change the history. (#50964)
2163         
2164 Fri Feb 16 15:55:22 2001  Owen Taylor  <otaylor@redhat.com>
2165
2166         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): 
2167         draw lines with text_gc rather than black_gc.
2168         (Patch from Vlad Harchev <hvv hippo ru>, #50926)
2169
2170 Thu Mar  1 19:50:56 2001  Jonathan Blandford  <jrb@redhat.com>
2171
2172         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
2173         Move handling of buttons fully in gtktreeviewcolumn.  This code is
2174         less interrelated then it was, but it still requires the
2175         GtkTreeView to map it.
2176
2177         * test/testtreecolumn.c: Now I can add a column to one view,
2178         remove it, add it to the another view, remove it, then re-add it
2179         to the first.  Nifty.
2180
2181 Thu Mar  1 13:14:27 GMT 2001  Tony Gale <gale@gtk.org>
2182
2183         * docs/tutorial/gtk-tut.sgml: Minor corrections
2184
2185 Wed Feb 28 16:36:46 2001  Jonathan Blandford  <jrb@redhat.com>
2186
2187         * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize
2188         GtkRowReference.
2189
2190 2001-02-28  Havoc Pennington  <hp@redhat.com>
2191
2192         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove draw_focus and
2193         draw_default
2194         (gtk_widget_draw_focus): remove this function; we could instead
2195         make it just gtk_widget_draw(), but in most cases I think the
2196         result would be broken user code, so think it's better to have
2197         that code not compile and get fixed
2198         (gtk_widget_draw_default): ditto
2199
2200         * gtk/gtkwidget.c: Add default handlers for focus_in_event and
2201         focus_out_event that set/unset GTK_HAS_FOCUS and call queue_draw
2202         
2203         * gtk/gtkwindow.c (gtk_window_set_default): just queue a draw when
2204         widgets lose/get the default, instead of calling draw_default
2205         
2206         * docs/Changes-2.0.txt: note about all this
2207
2208         Then fixed every widget in GTK, I won't list all the filenames.
2209
2210 Tue Feb 27 19:32:53 2001  Jonathan Blandford  <jrb@redhat.com>
2211
2212         * gtk/gtktreemodel.c (deleted_callback): Proxy out to
2213         _gtk_tree_row_reference_deleted.
2214         (inserted_callback): Proxy out to
2215         _gtk_tree_row_reference_inserted.
2216         (_gtk_tree_row_reference_new_from_view): Somewhat yukky hack to
2217         get around signal emission ordering problem.
2218
2219         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
2220         fix to work with SINGLE 
2221         (_gtk_tree_selection_internal_select_node): Major sanitization on
2222         selections.  SINGLE now seems to work.
2223
2224         * tests/Makefile.am: add testtreecolumn.c:
2225
2226         * tests/testtreecolumn.c: New test.  Mostly points out selection
2227         bugs currently, but will test columns later.
2228
2229         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Fix really nasty
2230         selection bug.  I hate touching this code -- it's scary.
2231
2232 2001-02-26  Havoc Pennington  <hp@redhat.com>
2233
2234         * gtk/testgtk.c: test the window state stuff
2235
2236         * gtk/gtkwindow.c (gtk_window_present): new function, makes a
2237         window come to the user's attention as if it were just created
2238         (gtk_window_iconify): new function
2239         (gtk_window_deiconify): new function
2240         (gtk_window_stick): new function
2241         (gtk_window_unstick): new function
2242         (gtk_window_maximize): new function
2243         (gtk_window_unmaximize): new function
2244
2245         * gtk/gtkwidget.h, gtk/gtkwidget.c: add window_state_event signal
2246
2247         * gtk/gtkmain.c (gtk_main_do_event): handle GDK_WINDOW_STATE
2248
2249         * gdk/x11/gdkevents-x11.c: create window state events when
2250         appropriate
2251         (gdk_wmspec_supported): new function
2252
2253         * gdk/x11/gdkwindow-x11.c (gdk_window_iconify): handle
2254         iconification before showing the window
2255         (gdk_window_deiconify): new function
2256         (gdk_window_stick): new function
2257         (gdk_window_unstick): new function
2258         (gdk_window_maximize): new function
2259         (gdk_window_unmaximize): new function
2260
2261         * gdk/gdkwindow.c: store the window state in the window; 
2262         change to using the GDK_WINDOW_STATE_WITHDRAWN flag instead of
2263         window->mapped.
2264         (gdk_window_get_state): return the current window state
2265
2266         * gdk/gdkevents.c (gdk_event_get_time): handle GDK_WINDOW_STATE
2267         (gdk_event_get_state): handle GDK_WINDOW_STATE
2268         (gdk_synthesize_window_state): function to create the window state
2269         events
2270
2271         * gdk/gdkevents.h (struct _GdkEventWindowState): new type of
2272         event, for changes to "window state" such as maximized, sticky, 
2273         etc.
2274         
2275         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): new function,
2276         focuses a window
2277
2278         * gdk/x11/gdkmain-x11.c (_gdk_wmspec_supported): new function, 
2279         finds out if we support a given WM spec hint
2280
2281 Tue Feb 27 13:37:38 GMT 2001  Tony Gale <gale@gtk.org>
2282
2283         * docs/faq/gtk-faq.sgml: New question re memory leaks.
2284
2285 2001-02-25  Hans Breuer  <hans@breuer.org>
2286
2287         * gdk/gdk.h : changed #ifdef GDK_DISBALE_DEPRECARED to #ifndef
2288         cause we want to loose those prototypes only in the latter case
2289
2290         * gdk/win32/gdkevents-win32.c : can't cast from GdkPixmap to
2291         GdkPixmapImplWin32 because it itsn't derived from it. Use the
2292         impl member variable instead
2293
2294         * gtk/gtk.def : updated
2295
2296         * gtk/gtklist.c : 
2297         * gtk/gtkmenus.c : include <string.h> for memset ()
2298
2299         * gtk/makefile.msc.in : updated and don't define GTK_COMPILATION
2300         for everthing built here, but for gtk-x.x.dll only. This solves
2301         problem of indifferent gtk type definitions
2302
2303 Sat Feb 24 20:11:39 2001  Jonathan Blandford  <jrb@redhat.com>
2304
2305         * gtk/gtkclipboard.h: actually put /* */ around #endif comment.
2306
2307 Fri Feb 23 17:50:13 2001  Jonathan Blandford  <jrb@redhat.com>
2308
2309         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Only draw the
2310         column that is exposed.
2311
2312         (_gtk_tree_view_update_size): Changed name from set_size, and
2313         changed function to do more work, and not force people calling it
2314         to figure out the size.  Simplifies a lot of code elsewhere.
2315
2316 2001-02-23  Alexander Larsson  <alexl@redhat.com>
2317
2318         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf):
2319         return solid masks for xpms that have no transparent color.
2320         This makes the ..._create_from_xpm... API backwards
2321         compatible.
2322
2323 2001-02-23  Tor Lillqvist  <tml@iki.fi>
2324
2325         * README.win32: Update. Mention the gtk-1-3-win32-production
2326         branch.
2327
2328         * gdk/win32/bdfcursor.c: New file. A program that generates
2329         xcursors.h. Thanks to Stefan Ondrejicka.
2330
2331         * gdk/win32/xcursors.h: New file, contains the X cursor font in a
2332         compact format.
2333
2334         * gdk/win32/Makefile.am (EXTRA_DIST): Add new files.
2335
2336         * gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): New
2337         function, uses xcursors.h.
2338         (gdk_cursor_new): Use _gdk_win32_data_to_wcursor to generate
2339         cursor from inline data instead of using LoadCursor() to generate
2340         it from a resource.
2341
2342         * gdk/win32/gdkevents-win32.c (gdk_event_translate): At button up
2343         event, must check the Windows message for mouse button state, as
2344         the GDK event state might not have been built if it is
2345         undelivered. Remove one goto.
2346
2347         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Call
2348         SetCursor() if the current cursor as returned by GetCursor() is
2349         the window's previous cursor. The ChildWindowFromPoint() test
2350         apparently didn't work correctly.
2351
2352         * gdk/win32/rc/*.cur: Remove.
2353
2354         * gdk/win32/rc/gdk.rc.in: Remove cursors.
2355
2356         * gdk/win32/rc/Makefile.am (EXTRA_DIST): Remove from here, too.
2357
2358         * gtk/makefile.{mingw,msc}.in: Updates.
2359
2360 Wed Feb 21 20:56:50 2001  Jonathan Blandford  <jrb@redhat.com>
2361
2362         * gtk/gtktreemodel.h: add functions for signal emission.
2363
2364         * gtk/gtktreestore.c: move to use above functions instead of
2365         g_signal_emit.
2366
2367         * gtk/gtkliststore.c: ditto
2368
2369 Wed Feb 21 15:41:34 2001  Jonathan Blandford  <jrb@redhat.com>
2370
2371         * gtk/gtktreestore.c: removed signals.  Moved to inherit from
2372         GObject instead of GtkObject.
2373
2374         * gtk/gtkliststore.c: ditto.
2375
2376         * gtk/gtktreemodelsort.c: ditto.
2377
2378         * gtk/gtktreemodel.c (gtk_tree_model_base_init): moved signals to
2379         GtkTreeModelIface, instead of in each model.
2380
2381 2001-02-21  Havoc Pennington  <hp@redhat.com>
2382
2383         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_child_anchor):
2384         unbreak this function
2385
2386         * gtk/gtkentry.c: apply patch from Lee Mallabone to add object 
2387         properties
2388
2389         * gtk/gtkcurve.c: apply patch from Lee Mallabone to add object
2390         properties
2391
2392         * gtk/gtkcombo.c: apply patch from Lee Mallabone to add object 
2393         properties
2394
2395         * gtk/gtkentry.c (gtk_entry_set_max_length): have this take -1 to
2396         mean unset the max length
2397
2398 Wed Feb 21 14:23:05 2001  Jonathan Blandford  <jrb@redhat.com>
2399
2400         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data_func):
2401         Changed name to be set_cell_data_func to make it clear what
2402         the functino does.  Close bug #51069.
2403
2404 Tue Feb 20 16:49:00 2001  Jonathan Blandford  <jrb@redhat.com>
2405
2406         * gtk/testgtk.c (main): Remove turning on of profiling malloc,
2407         have memory actually freed.  Keeps box running longer.
2408
2409 2001-02-21  Alexander Larsson  <alexl@redhat.com>
2410         
2411         * gtk/gtkseparatormenuitem.[ch]:
2412         Added new menu separator item. The drawing and size handling
2413         is still done in GtkMenuItem, but the API is a bit more sane.
2414         
2415         * gtk/Makefile.am:
2416         Add gtkseparatormenuitem.[ch].
2417
2418         * gtk/gtk.h:
2419         Add gtkseparatormenuitem.h.
2420         
2421         * gtk/gtkentry.c:
2422         * gtk/gtkmenufactory.c:
2423         * gtk/gtktextview.c:
2424         Use the new API for menu separators.
2425         
2426         * demos/gtk-demo/menus.c (create_menu):
2427         Add some GtkSeparatorMenuItem demo code.
2428
2429 2001-02-20  Havoc Pennington  <hp@redhat.com>
2430
2431         * gtk/gtkaspectframe.c: Convert to new property API, patch from 
2432         Lee Mallabone
2433
2434         * gtk/gtkarrow.c: Convert to new property API, patch from 
2435         Lee Mallabone
2436
2437 Tue Feb 20 14:26:41 2001  Jonathan Blandford  <jrb@redhat.com>
2438
2439         * tests/testtreeview.c (toggled_callback): fix to reflect change
2440         in GtkTreeModelStore.
2441
2442 Tue Feb 20 12:16:12 2001  Jonathan Blandford  <jrb@redhat.com>
2443
2444         * gtk/gtkiconfactory.c (gtk_icon_set_new_from_pixbuf): New
2445         function to create an icon set from a pixbuf.
2446
2447 2001-02-20  Alexander Larsson  <alexl@redhat.com>
2448
2449         * gtk/gtkcellrenderertext.[ch]:
2450         Add a "markup" property.
2451
2452         * gtk/treestoretest.c:
2453         Use the markup property, remove some leftover stuff from
2454         GtkTreeModelMapping.
2455
2456 2001-02-20  Alexander Larsson  <alexl@redhat.com>
2457
2458         * gtk/gtklabel.c (gtk_label_set_selectable):
2459         Queue a redraw if the selectable setting was changed.
2460
2461 2001-02-20  Alexander Larsson  <alexl@redhat.com>
2462
2463         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
2464         Actually copy the whole gc, not just the public parts.
2465         
2466         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
2467         GDK_WINDOW_TEMP are not toplevel. Fixes selectable
2468         labels.
2469
2470 2001-02-19  Havoc Pennington  <hp@pobox.com>
2471
2472         * gdk/gdkwindow.c: docs
2473
2474         * gdk/gdkrgb.c: docs
2475
2476         * gdk/gdkregion-generic.c: docs
2477
2478         * gdk/gdkgc.c (gdk_gc_set_values): docs
2479
2480         * gdk/gdkdraw.c: docs
2481
2482         * gdk/gdkdrawable.h: deprecate drawable get/set data
2483
2484 Mon Feb 19 20:37:35 2001  Jonathan Blandford  <jrb@redhat.com>
2485
2486         * demos/gtk-demo/dialog.c: Add simple new demo.
2487
2488 2001-02-19  Havoc Pennington  <hp@redhat.com>
2489
2490         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): add
2491         insert_child_anchor signal, bug #50245
2492
2493         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): change
2494         from create_child_anchor, so the anchor is passed in
2495
2496         * gtk/gtktextchild.c (gtk_text_child_anchor_new): new function
2497         (_gtk_widget_segment_new): have the child anchor object passed in, 
2498         instead of creating it.
2499
2500         * gtk/gtktextbuffer.c (gtk_text_buffer_modified): rename
2501         to gtk_text_buffer_get_modified
2502
2503 2001-02-19  Havoc Pennington  <hp@redhat.com>
2504
2505         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): hmm, someone
2506         changed GLib without fixing GTK
2507
2508         * gtk/gtkrange.h: Rename all the stupid implementation detail 
2509         functions to have an underscore in front. Most of them should 
2510         probably just go away, but for starters don't export them.
2511         Bug #50482
2512
2513 2001-02-19  Havoc Pennington  <hp@redhat.com>
2514
2515         * gdk/gdkcolor.h: test was backward, so deprecated functions were
2516         excluded by default
2517
2518         * gtk/gtkstyle.c (gtk_default_draw_diamond): draw etched in/out,
2519         clean up the old code a bit
2520
2521         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): draw
2522         inconsistent state
2523
2524         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator):
2525         draw inconsistent state
2526
2527         * gtk/testgtk.c (create_toggle_buttons): add test for inconsistent
2528         (create_menu): add inconsistent test
2529
2530         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_set_inconsistent):
2531         new function
2532         (gtk_check_menu_item_get_inconsistent): new function
2533         (gtk_real_check_menu_item_draw_indicator): draw the inconsistent
2534         state (using etched in for now)
2535
2536         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator):
2537         draw inconsistent state
2538
2539         * gtk/gtktogglebutton.c (gtk_toggle_button_set_inconsistent): new
2540         function, used when the user has selected a range of stuff in
2541         different states
2542         (gtk_toggle_button_get_inconsistent): accessor for that
2543         (gtk_toggle_button_paint): draw inconsistent state (etched in?
2544         don't know what else to do)
2545
2546 2001-02-19  Hans Breuer <hans@breuer.org>
2547
2548         * gtk/gtk.def : updated exported symbols
2549
2550         * gtk/makefile.msc.in : updated
2551
2552         * gtk/gtkstyle.c (gtk_style_realize) : gets called without
2553         a colormap, when invoked from testgtk::entry. I'm not sure where
2554         the bug is, but g_return_if_fail (GDK_IS_COLORMAP (colormap));
2555         avoids immediate crashing ...
2556
2557         * gtk/gtkmain.c (check_setugid) : totally disabled on win32;
2558         any objections ?
2559
2560         * gtk/gtktreemodel.c : called G_VALUE_LCOPY with an extra
2561         0 parameter. At least msvc doesn't like macros with var args. 
2562         I simply removed the extra 0, was it a feature or a typo ?
2563
2564         * gtk/gtktreeviewcolumn.[hc] (gtk_tree_view_column_set_func) :
2565         removed the extra indirection from the GtkTreeViewColumnFunc parameter,
2566         because the value assignment to the internal struct wasn't working.
2567         I'm not absolutely sure. The problem could have been resolved by
2568         changing the "func" declartion in the struct, but was the pointer
2569         to the function pointer intended ?
2570
2571         * gtk+/gtk/gtktreedatalist.c : include gboxed.h
2572
2573         * gdk/gdk.def : updated exported symbols
2574
2575         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_image) :
2576         only use SetDIBitsToDevice if there is a palette at the drawable
2577         and the image is GDK_VISUAL_PSEUDO_COLOR
2578
2579         * gdk/win32/gdkkeys-win32.c : msvc still has no <unistd.h> ...
2580
2581         * gdk/win32/gdkwindow-win32.c : #include "gdk.h" /* gdk_rectangle_intersect */
2582
2583         * gdk/*/makefile.msc : updated
2584
2585 2001-02-19  Havoc Pennington  <hp@redhat.com>
2586
2587         * demos/gtk-demo/Makefile.am (INCLUDES): GDK_DISABLE_COMPAT_H,
2588         GDK_DISABLE_DEPRECATED (we need to merge those two #defines)
2589
2590         * gdk/x11/gdkmain-x11.c (gdk_key_repeat_disable): nuke
2591         (gdk_key_repeat_restore): nuke
2592
2593         * gdk/gdk.c (gdk_exit_func): #if 0 this for now, don't install it
2594         (gdk_init_check): no atexit func
2595
2596         * gdk/gdkrgb.h: mark some stuff deprecated
2597
2598         * gdk/gdkcolor.h: mark some stuff deprecated
2599         
2600         * gdk/gdk.h: deprecated gdk_exit, gdk_input_*
2601
2602         * gdk/gdkfont.h: bracket in GDK_DISABLE_DEPRECATED
2603
2604 2001-02-16  Havoc Pennington  <hp@redhat.com>
2605
2606         * gtk/gtkvscrollbar.c (gtk_vscrollbar_trough_keys): use the visual
2607         scroll steps.
2608
2609         * gtk/gtkvscale.c (gtk_vscale_trough_keys): use the visual scroll
2610         steps, and add Ctrl-arrow shortcuts for paging visually as with
2611         HScale, since Page Up and Page Down move logically.
2612
2613         * gtk/gtkenums.h (GtkScrollType): add GTK_SCROLL_STEP_UP,
2614         GTK_SCROLL_STEP_DOWN, etc. for visual scroll directions
2615         
2616         * gtk/gtkrange.c (gtk_range_key_press): handle the visual scroll
2617         steps
2618         (gtk_range_scroll): handle the visual steps
2619
2620         * gtk/gtklist.c (gtk_list_scroll_horizontal): handle the up/down
2621         scroll steps
2622
2623         * gtk/gtkhscale.c (gtk_hscale_trough_keys): use the visual scroll
2624         steps, not the logical ones.
2625
2626         * gtk/gtkclist.c (move_focus_row): handle the up/down scroll steps
2627         (scroll_vertical): handle up/down steps
2628
2629 2001-02-19 Alexander Larsson  <alexl@redhat.com>
2630
2631         * gdk/linux-fb/gdkimage-fb.c (gdk_image_new_bitmap):
2632         Copy data and free data with free().
2633
2634         * gdk-pixbuf/gdk-pixbuf.c:
2635         * gdk-pixbuf/io-jpeg.c:
2636         * gdk-pixbuf/io-png.c:
2637         Use g_try_malloc/g_free instead malloc/free.
2638         
2639         * gdk-pixbuf/test-gdk-pixbuf.c:
2640         Must... initialize... gobject...
2641         
2642         * gdk-pixbuf/pixops/timescale.c:
2643         * gtk/gtkcalendar.c:
2644         Use g_malloc instead of malloc.
2645         
2646 2001-02-19 Alexander Larsson  <alla@lysator.liu.se>
2647
2648         * gtk/testgtkrc:
2649         Comment out property assignments, these don't work yet.
2650
2651 2001-02-17  Havoc Pennington  <hp@pobox.com>
2652
2653         * gtk/gtkalignment.c (gtk_alignment_class_init): clean this up a
2654         bit.
2655
2656 2001-02-17  Havoc Pennington  <hp@pobox.com>
2657
2658         * gtk/gtklabel.c (gtk_label_ensure_layout): fix screwup with
2659         shadowed variables that had broken size request in some cases,
2660         leading to bogus tooltips (#50996)
2661
2662 2001-02-06  Jon K Hellan  <hellan@acm.org>
2663
2664         Implement fast browsing of tooltips, bug #50619
2665         
2666         * gtk/gtktooltips.h (struct _GtkTooltips): Add use_sticky_delay
2667         and last_popdown
2668         
2669         * gtk/gtktooltips.c (gtk_tooltips_init): Initialize sticky_delay,
2670         use_sticky_delay and last_popdown.
2671         (gtk_tooltips_draw_tips, gtk_tooltips_set_active_widget): Record
2672         time of popdown.
2673         (gtk_tooltips_set_active_widget): Unset sticky behaviour if widget
2674         is NULL.
2675         (gtk_tooltips_recently_shown): New static function.  Return true
2676         if < sticky_delay has elapsed since last popdown.
2677         (gtk_tooltips_event_handler): Display window after sticky_delay
2678         (presumably < normal delay) if < STICKY_REVERT_DELAY has elapsed
2679         since last popdown.
2680         
2681 2001-02-17  Havoc Pennington  <hp@pobox.com>
2682
2683         * gtk/gtktypeutils.h (GtkSignalFunc): change it to take (void)
2684         instead of (). #6394
2685
2686         * gtk/gtkprogressbar.c (gtk_progress_bar_get_text): Add
2687         G_CONST_RETURN, make it return by reference, #50473
2688         
2689 Sat Feb 17 06:47:27 2001  Tim Janik  <timj@gtk.org>
2690
2691         * gtk/gtkmenu.c (gtk_menu_motion_notify): default initialize the
2692         generated ENTER_NOTIFY event with 0, otherwise not explicitely
2693         setup fields contain garbage (e.g. subwindow, breaking
2694         gdk_drawable_ref() upon event copy).
2695         (gtk_menu_stop_navigating_submenu_cb): same here.
2696
2697         * gtk/gtklist.c (gtk_list_vertical_timeout): 
2698         * gtk/gtklist.c (gtk_list_horizontal_timeout): 
2699         * gtk/gtkclist.c (vertical_timeout): 
2700         * gtk/gtkclist.c (horizontal_timeout): change direct assignment
2701         default-zero-intialization for unions to memset(,0,), as unions are
2702         not fully default-zero-initialized by compilers (GdkEvent x = { 0, };
2703         has to become GdkEvent x; memset (&x, 0, sizeof (x)); )
2704
2705         * gtk/gtktreeview.c (gtk_tree_view_set_rows_drag_source): scratch
2706         g_closure_sink() warning.
2707
2708         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): 
2709         * gtk/gtktreestore.c (gtk_tree_store_set_valist): 
2710         * gtk/gtkliststore.c (gtk_list_store_set_valist): 
2711         fix G_VALUE_COLLECT() and G_VALUE_LCOPY() calls.
2712         
2713 Fri Feb 16 17:49:59 2001  Jonathan Blandford  <jrb@redhat.com>
2714
2715         * gtk/gtktreestore.[hc], gtk/gtkliststore.[ch]: removed
2716         gtk_*_store_get, and moved to GtkTreeModel.
2717
2718         * gtk/gtktreemodel.h (gtk_tree_model_set{v,}): Added
2719
2720         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): added.
2721
2722         * gtk/Makefile.am: remove gtktreemodelmapping.[ch]
2723
2724         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_func): let you
2725         set the func.
2726
2727         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
2728         freeze/thaw notify between setting all the properties for a cell.
2729
2730         * gtk/gtk.h: remove gtktreemodelsimple.h, and gtktreemodelmapping.h
2731
2732 2001-02-15  Havoc Pennington  <hp@redhat.com>
2733
2734         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): convert
2735         the X coordinates so they're with respect to the line, rather than 
2736         with respect to the layout.
2737
2738         * gtk/gtkalignment.c: Convert to new property API, patch from Lee
2739         Mallabone
2740
2741         * gtk/testgtk.c (create_range_controls): add vscale tests, 
2742         and inverted test
2743
2744         * gtk/gtkrange.c (gtk_range_set_inverted): new function to fix 
2745         #50806
2746
2747         * gtk/gtkentry.c (gtk_entry_get_text): add G_CONST_RETURN
2748
2749         * gtk/gtktextiter.h (gtk_text_iter_is_last): rename 
2750         gtk_text_iter_is_end
2751
2752         * gtk/gtktextbuffer.h (gtk_text_buffer_get_last_iter):
2753         rename gtk_text_buffer_get_end_iter
2754
2755         * gtk/testgtk.c (create_labels): Add test for selectable
2756
2757         * gtk/gtkentry.c (gtk_entry_draw_text): Use new GDK API to draw
2758         the selection stuff. This code is kind of broken since it doesn't 
2759         use the theme engine.
2760
2761         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
2762         fix infinite loop and y offset problem
2763         (gdk_draw_layout_line_with_colors): fix foreground color handling
2764
2765         * gtk/gtklabel.h, gtk/gtklabel.c: Implement a "selectable" flag 
2766         that makes the label selectable.
2767         
2768         * gtk/gtklabel.c (gtk_label_style_set): recreate the label's
2769         layout when the style is set, since fonts etc. could have changed.      
2770
2771 Fri Feb 16 14:22:05 2001  Jonathan Blandford  <jrb@redhat.com>
2772
2773         * gtk/Makefile.am: Removed gtktreemodelsimple.[ch]
2774
2775         * gtk/gtktreemodelsimple.[ch]: removed.
2776
2777 2001-02-16  Alexander Larsson  <alexl@redhat.com>
2778
2779         * gtk/gtktreemodelmapping.[ch]:
2780         New files. Implement GtkTreeModelMapping.
2781         
2782         * gtk/Makefile.am:
2783         Add gtktreemodelmapping.[ch].
2784         
2785         * gtk/gtk.h:
2786         Add gtktreemodelmapping.h
2787
2788         * gtk/treestoretest.c:
2789         Test the GtkTreeModelMapping
2790
2791 Tue Feb 13 13:16:09 2001  Jonathan Blandford  <jrb@redhat.com>
2792
2793         * demos/gtk-demo/panes.c (create_pane_options): If we're going to
2794         have a demo, we might as well pass in real values.  Thanks to
2795         clahey for pointing this out.
2796
2797 2001-02-14  Havoc Pennington  <hp@pobox.com>
2798
2799         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_remove): add
2800         "static" to a private function
2801         (gtk_image_menu_item_class_init): remove destroy handler,
2802         add "image" object property
2803
2804 2001-02-13  Alexander Larsson  <alla@lysator.liu.se>
2805
2806         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region):
2807         Add a shortcut if the window and the current clip_region doesn't
2808         overlap. This is needed when there are a lot of windows in a
2809         window. The layout test in testgtk is a good test.
2810
2811         * gdk/linux-fb/gdkwindow-fb.c:
2812         Whitespace fix.
2813
2814 2001-02-13  Sven Neumann  <sven@convergence.de>
2815
2816         * demos/testanimation.c: replaced deprecated gtk_drawing_area_size
2817
2818 2001-02-13  Alexander Larsson  <alexl@redhat.com>
2819
2820         * gdk/linux-fb/gdkcursor-fb.c (gdk_fb_cursor_unhide):
2821         Don't reference last_cursor if it is null. Fixes crash when rotating
2822         the screen before having moved the mouse.
2823
2824         * gdk/linux-fb/gdkcc-fb.c: Zapp!
2825
2826         * gdk/linux-fb/Makefile.am: Don't compile gdkcc-fb.c
2827
2828         * gdk/linux-fb/gdkwindow-fb.c: Fix typo. width->height. Fixes redraw 
2829         when using 90 or 270 degrees rotation.
2830
2831 2001-02-12  Havoc Pennington  <hp@pobox.com>
2832
2833         * gdk/gdkpango.c (gdk_pango_get_gc): fix bug where 
2834         it always set the foreground, even if we were only using
2835         a stipple.
2836         (gdk_draw_layout_line_with_colors): new function, allow
2837         override colors
2838         (gdk_draw_layout_with_colors): new function, allow override
2839         colors
2840         (gdk_pango_layout_line_get_clip_region): function to get the clip
2841         region for a logical text range
2842         (gdk_pango_layout_get_clip_region): get the clip region for a
2843         logical text range
2844
2845         * gdk/x11/gdkcolor-x11.c: forward declare gdk_colormap_sync(),
2846         (gdk_colormap_new): fix call to gdk_colormap_sync() so it has 
2847         the right number of arguments.
2848
2849         * gtk/gtktextbtree.c (gtk_text_btree_node_check_consistency):
2850         enhance the function to check that node data corresponds to a 
2851         view still belonging to the tree.
2852
2853         * gtk/gtktreeview.c (gtk_tree_view_changed): we were leaking the 
2854         GtkTreePath
2855         (gtk_tree_view_inserted): ditto
2856         (gtk_tree_view_child_toggled): ditto
2857
2858         * gtk/gtktreemodel.c (gtk_tree_path_append_index): use realloc to
2859         simplify this code.
2860
2861         * gtk/gtkcellrenderertext.c (get_layout): fix leak of 
2862         a PangoAttrList
2863
2864         * demos/gtk-demo/main.c (load_file): Fix leak of a GString
2865
2866         * gtk/gtkentry.c (gtk_entry_realize): Fix leak of a GdkCursor
2867
2868         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): consider toggle
2869         size in the size request 
2870         (gtk_menu_bar_size_allocate): consider toggle size here
2871
2872         * gtk/gtkimagemenuitem.h, gtkimagemenuitem.c: Menu item
2873         that displays a widget in the toggle slot
2874
2875         * gtk/testgtk.c: test GtkImageMenuItem
2876
2877         * gtk/Makefile.am, gtk/gtk.h: Add GtkImageMenuItem
2878         
2879         * gtk/gtkmenuitem.h: Use "gint" not "guint16" for toggle size
2880         request and allocation
2881
2882         * gtk/gtkmenu.c (gtk_menu_size_request): use gint not guint16
2883
2884         * gtk/gtkcheckmenuitem.c
2885         (gtk_check_menu_item_toggle_size_request): ditto
2886         
2887 Mon Feb 12 23:43:30 2001  Owen Taylor  <otaylor@redhat.com>
2888
2889         * gtk/Makefile.am (gdk_headers): Remove gdkcc.h 
2890         reference.
2891
2892         * configure.in gtk/gtkmain.c: Add checks for setuid/setgid,
2893         and refuse to initialize GTK+ if they fail.
2894
2895 Mon Feb 12 15:02:07 2001  Owen Taylor  <otaylor@redhat.com>
2896
2897         * configure.in: Add check for gtk-doc version.
2898
2899 Thu Feb  8 17:18:26 2001  Owen Taylor  <otaylor@redhat.com>
2900
2901         * gtk/gtklabel.c (gtk_label_size_request): Fix bug
2902         where the xpad/ypad was only being used on one side!
2903
2904 2001-02-11  Tor Lillqvist  <tml@iki.fi>
2905
2906         * gdk/win32/gdkcolor-win32.c (gdk_colormap_query_color): New
2907         function, copied from X11 version.
2908
2909         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Eliminate
2910         DestroyCursor failures. The reason for the problem (despite the
2911         inconsistent messages from GetLastError()) was that
2912         DestroyCursor() cannot be called while a cursor is set in a
2913         window. Set the new cursor first and then destroy the old one.
2914         Thanks to jpe@archaeopteryx.com.
2915
2916         * gdk/win32/gdkcc-win32.c: Remove.
2917
2918         * gdk/win32/Makefile.am: Remove from here, too.
2919         
2920         * gdk/gdk.def
2921         * gdk/makefile.mingw.in: Update. Godbye GdkColorContext.
2922
2923         * gtk/gtk.def
2924         * gtk/makefile.mingw.in: Updates.
2925
2926 2001-02-08  Havoc Pennington  <hp@redhat.com>
2927
2928         * gtk/gtkbin.c (gtk_bin_add): better error message if you try to
2929         add a widget to a bin that already has a child.
2930
2931         * gdk/gdkcc.h, gdk/gdkcc-x11.c: Remove GdkColorContext, #50512
2932
2933         * docs/Changes-2.0.txt: note that GdkColorContext is gone.
2934         
2935         * gdk/x11/Makefile.am (libgdk_x11_la_SOURCES): remove gdkcc-x11.c
2936
2937         * gdk/gdk.h: remove gdkcc.h
2938
2939         * gdk/Makefile.am (gdk_public_h_sources): remove gdkcc.h
2940
2941         * gtk/gtkpixmap.c (build_insensitive_pixmap): rewrite using
2942         GdkPixbuf, since the previous implementation was GdkColorContext
2943         dependent.
2944
2945         * gtk/testgtk.c (create_pixmap): add test for insensitive GtkPixmap
2946         
2947 Thu Feb  8 19:00:00 2001  Jonathan Blandford  <jrb@redhat.com>
2948
2949         * gtk/gtktreeview.c (TREE_VIEW_VERTICAL_SEPARATOR): moved back to
2950         a sane value!
2951
2952 2001-02-08  Havoc Pennington  <hp@redhat.com>
2953
2954         * gtk/gtkstyle.c (get_darkened_gc): let's darken colors, not
2955         lighten them.
2956
2957 2001-02-08  Havoc Pennington  <hp@redhat.com>
2958
2959         * gtk/gtktextview.c (gtk_text_view_destroy_layout): remove
2960         validation idle
2961
2962         * demos/gtk-demo/main.c (create_tree): adjust to changes in text
2963         cell renderer
2964
2965         * demos/pixbuf-demo.c (timeout): remove deprecated
2966         gtk_widget_draw
2967
2968         * demos/testpixbuf-save.c (main): remove deprecated
2969         gtk_drawing_area_size
2970
2971         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): allocate
2972         buttons even if the model isn't setup. gtk_tree_view_check_dirty()
2973         at the start of the allocation.
2974         (gtk_tree_view_check_dirty): handle column->button == NULL, handle
2975         unsetup or NULL model.
2976
2977         * gtk/gtkstyle.c (gtk_default_draw_flat_box): drawing for the 
2978         even/odd/sorted cells in the tree view.
2979
2980         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
2981         bugfixes
2982
2983         * gtk/gtktreeview.c: assorted bugfixy stuff. Draw the row
2984         backgrounds with draw_flat_box using different detail for even/odd
2985         rows.
2986
2987         * gtk/gtkrbtree.c, gtkrbtree.h: Keep track of the parity of each
2988         row, so we can draw the alternating colors thing
2989
2990         * gtk/gtktexttag.c (gtk_text_tag_set_property): if we change a
2991         property from a synonym property, notify for the synonym.
2992         Also, nuke the background_gdk_set and foreground_gdk_set synonyms
2993         (gtk_text_tag_get_property): Always return the font, even if
2994         all its fields aren't set
2995
2996         * gtk/gtkcellrenderertext.h (struct _GtkCellRendererText): don't
2997         store the attr list; it leaves us with no way to change attributes
2998         in _render according to the render flags, and no way to implement
2999         get_property. Instead store all the specific text attributes. 
3000         Separate whether an attribute is enabled from its value. Sync all
3001         properties with GtkTextTag, make them all consistent, etc.
3002
3003         * gtk/gtkcellrenderer.h: Add a flag GTK_CELL_RENDERER_SORTED so
3004         renderers can highlight the sort row/column     
3005
3006         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_property): use
3007         accessor functions to get values; this has the side effect of
3008         showing up which accessor functions were missing. Added those.
3009
3010         * gtk/gtktreeviewcolumn.h: Replace set_justification with
3011         set_alignment, to be consistent with GtkLabel, GtkMisc
3012
3013         * gtk/gtktreeviewcolumn.c: Added code to display sort indicator
3014         arrow.
3015
3016         * gtk/Makefile.am (gtk_public_h_sources): add gtktreesortable.h
3017
3018         * gtk/gtktreesortable.h: updates in here
3019
3020 2001-02-07  Sven Neumann  <sven@convergence.de>
3021
3022         * gtk/gtkentry.c (gtk_entry_draw_text): convert area_height to 
3023         pango dimensions after painting the background. We used to draw
3024         gigantic flat boxes here.
3025
3026 Mon Feb  5 22:05:57 2001  Owen Taylor  <otaylor@redhat.com>
3027
3028         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Fix syntax
3029         error introduced with earlier commit) (pointed out by
3030         Ollie Lho)
3031
3032 Mon Feb  5 12:25:06 2001  Owen Taylor  <otaylor@redhat.com>
3033
3034         * gtk/gtkbutton.c: Remove calls to gtk_grab_add/gtk_grab_remove,
3035         which are no longer necessary.
3036
3037 Mon Feb  5 13:22:54 GMT 2001  Tony Gale <gale@gtk.org>
3038
3039         * docs/faq/gtk-faq.sgml: s/MISK/MISC/
3040
3041 2001-02-04  Tor Lillqvist  <tml@iki.fi>
3042
3043         * gdk/gdk.def
3044         * gdk/win32/gdkim-win32.c (gdk_ic_attr_new, gdk_ic_attr_destroy):
3045         Provide dummy implementations.
3046
3047 Sun Feb  4 07:55:17 2001  Tim Janik  <timj@gtk.org>
3048
3049         * gtk/gtksignal.h: removed gtk_signal_init() compat define.
3050
3051         * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument
3052         GTypeDebugFlags debug_flags and pass it on to g_type_init ();
3053         deprecated this function.
3054
3055         * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as
3056         argument.
3057
3058 Sun Feb  4 07:45:45 2001  Tim Janik  <timj@gtk.org>
3059
3060         * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS.
3061
3062 2001-02-03  Havoc Pennington  <hp@pobox.com>
3063
3064         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Fix bug reported by
3065         Mikael Hermansson with patch from Mikael (if there was a toggle
3066         start one after the first character in the range, this function
3067         was broken). Bug #50380
3068
3069 Sat Feb  3 11:28:03 2001  Owen Taylor  <otaylor@redhat.com>
3070
3071         * configure.in: Remove confusing comment about X11.
3072
3073 Fri Feb  2 19:21:23 2001  Owen Taylor  <otaylor@redhat.com>
3074
3075         * gdk/gdkwindow.c (gdk_propagate_shapes): Surround additional
3076         regions with HAVE_SHAPE_EXT. (#50511, Eric Ding)
3077         
3078 Fri Feb  2 18:31:54 2001  Owen Taylor  <otaylor@redhat.com>
3079
3080         * gdk/x11/gdkimage-x11.c: Remove definition of _XOPEN_SOURCE, since
3081         it breaks things on BSD. If you want to compile GTK+ with
3082         -ansi -pedantic, you should supply CPP_FLAGS=_XOPEN_SOURCE 
3083         when configuring, since GTK+ simply can't be "pure ANSI" 
3084         in the header files it uses. (#8170, Greg Hudson)
3085
3086 2001-02-02  Havoc Pennington  <hp@redhat.com>
3087
3088         * gtk/gtkwindow.c: docs
3089
3090         * gtk/gtkwidget.c: docs
3091         (gtk_widget_set_colormap): add a reference to the colormap
3092         (gtk_widget_get_default_colormap): add a reference to the colormap
3093
3094         * gtk/gtktextbtree.c (gtk_text_mark_set_visible): docs
3095
3096         * gtk/gtktextiter.c: docs
3097
3098         * gtk/gtkmain.c (gtk_propagate_event): docs
3099
3100         * gtk/gtkpaned.c (gtk_paned_get_position): docs
3101         (gtk_paned_set_position): docs
3102
3103         * gtk/gtktreesortable.h (struct _GtkTreeSortableIface): Initial
3104         sort interface, no implementation yet.
3105
3106         * demos/testpixbuf.c (new_testrgb_window): replace
3107         gtk_drawing_area_size() with gtk_widget_set_usize()
3108
3109         * demos/testpixbuf-drawable.c (main): ditto
3110         
3111         * gtk/testgtk.c: remove use of GtkStatusbarMsg
3112
3113         * gtk/gtktextbuffer.c: docs
3114
3115         * gtk/gtkstock.c: docs
3116
3117         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_shadow_type): docs
3118
3119         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): docs
3120
3121         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): fix docs
3122         
3123         * gtk/gtkimage.c: add some docs in here
3124         (gtk_image_size_request): change name of
3125         gtk_widget_render_stock_icon
3126         (gtk_image_get_icon_set): don't dup returned string
3127         (gtk_image_get_icon_set): don't dup returned string
3128
3129         * gtk/gtkwidget.c (gtk_widget_render_icon): rename from 
3130         gtk_widget_render_stock_icon(), more consistent with gtkstyle.h
3131         and gtkiconfactory.h functions
3132
3133         * gtk/gtkiconfactory.c: add some docs in here
3134
3135         * gtk/gtkmain.c (gtk_get_default_language): document
3136         (gtk_get_current_event): document
3137         (gtk_get_current_event_state): document
3138         (gtk_get_event_widget): document
3139
3140         * gtk/gtkentry.c (gtk_entry_set_invisible_char): document
3141
3142         * gtk/gtkcontainer.c: Add some documentation
3143         (gtk_container_add): give a more explanatory warning on adding an
3144         already-parented widget, this is kind of a FAQ and also a common
3145         typo that's easier to debug with a nice warning 
3146
3147         * gtk/gtkcellrenderertoggle.c
3148         (gtk_cell_renderer_toggle_get_active): remove, I was on crack
3149         adding this, it's useless
3150         (gtk_cell_renderer_toggle_set_active): remove
3151         (gtk_cell_renderer_toggle_get_radio): add
3152
3153         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): don't allow
3154         the NULL cell renderer, that doesn't make any sense to me. 
3155
3156         * demos/gtk-demo/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED,
3157         demo code should never use deprecated features.
3158
3159         * demos/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED, demo
3160         code should never use deprecated features.
3161
3162         * gtk/gtkwidget.h: Mark gtk_widget_draw, gtk_widget_queue_clear,
3163         gtk_widget_queue_clear_area deprecated
3164
3165         * gtk/gtklayout.h: mark gtk_layout_freeze/gtk_layout_thaw
3166         deprecated
3167
3168         * gtk/gtklabel.h: mark gtk_label_get() deprecated
3169
3170         * gtk/gtkimage.h: mark the legacy GtkImage functions that took 
3171         a GdkImage deprecated, replaced by new consistently-named
3172         functions       
3173
3174         * gtk/gtkmain.h: Mark gtk_exit() deprecated
3175
3176         * gtk/gtkdrawingarea.h: mark gtk_drawing_area_size deprecated
3177
3178         * gtk/gtkstyle.h: mark gtk_draw_string, gtk_paint_string 
3179         deprecated
3180
3181         * gtk/gtkstatusbar.h: Move GtkStatusbarMsg to the .c file, 
3182         so it won't appear in docs and confuse people.
3183
3184         * gtk/gtkprogressbar.h: Mark all the old methods deprecated
3185
3186         * gtk/gtkprogress.h: Mark all methods deprecated, mark the cast
3187         macros deprecated. (can't mark the type itself deprecated, since
3188         GtkProgressBar is not deprecated and we need the type decl to use
3189         GtkProgressBar)
3190
3191         * gtk/gtkpixmap.h: Mark deprecated
3192
3193         * gtk/gtkoldeditable.h: Mark deprecated
3194
3195         * gtk/gtklist.h: Mark deprecated
3196
3197         * gtk/gtklabel.h: delete "GtkLabelWord" typedef, not used 
3198         for anything anymore.
3199
3200         * gtk/gtkctree.h: Mark deprecated
3201
3202         * gtk/gtkclist.h: Mark deprecated
3203
3204         * gtk/gtkpreview.h: Mark deprecated
3205
3206         * gtk/gtkpacker.h: Mark deprecated
3207
3208         * gtk/gtktipsquery.h: Mark deprecated
3209
3210         * gtk/gtkinputdialog.h: Add comment that it will move out of GTK
3211
3212         * gtk/gtkvruler.h: Add comment that it will move out of GTK
3213
3214         * gtk/gtkhruler.h: Add comment that it will move out of GTK
3215
3216         * gtk/gtkruler.h: Add comment that it will move out of GTK
3217
3218         * gtk/gtkgamma.h: Add comment that it will move out of GTK
3219
3220         * gtk/gtkcurve.h: Add comment that it will move out of GTK
3221
3222 Fri Feb  2 17:16:09 2001  Owen Taylor  <otaylor@redhat.com>
3223
3224         * gdk/x11/gdkcolor-x11.c (gdk_colormap_sync): Make
3225         gdk_colormap_sync private since it was never exported
3226         in a header file.
3227
3228         * gdk/x11/gdkcolor-x11.c (gdk_colormap_new): Fill in
3229         colormap->colors[] for StaticGray, StaticColor colormaps.
3230
3231         * gdk/gdkpixbuf-drawable.c: Fix problems where image->bpp
3232         was being used as if it was image->bits_per_pixel.
3233
3234         * gdk/gdkimage.h, gdk/x11/gdkimage-x11.c: Save the bits-per-pixel
3235         for the image in the GdkImage structure since it isn't
3236         reconstructable, and we need it to handle packed types
3237
3238         * gdk/win32/gdkimage-win32.c: Set image->bits_per_pixel. (I'm making
3239         the assumption that on Win32 image->bits_per_pixel == image->depth,
3240         always.
3241
3242         * gdk/linux-fb/gdkimage-fb.c: Set image->bits_per_pixel.
3243
3244         * gdk/gdkrgb.c (gdk_rgb_select_conv): Exit with an informative
3245         warning message if no converter can be found. 
3246
3247 Fri Feb  2 15:09:51 2001  Owen Taylor  <otaylor@redhat.com>
3248
3249         * gtk/fnmatch.c (FOLD): Fix problem with passing signed
3250         chars to isupper() / tolower(). (#567)
3251
3252         * examples/packer/pack.c: Add GINT_TO_POINTER, GPOINTER_TO_INT
3253         to clear up 64-bit warnings. (#567)
3254
3255 Fri Feb  2 12:26:50 2001  Owen Taylor  <otaylor@redhat.com>
3256
3257         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Get rid of
3258         a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
3259
3260         * gtk/gtkrc.c Makefile.am: Use $(libdir), not $(exe_prefix),
3261         since some people set $(libdir) separately. (#1290, David Kaelbling)
3262
3263 Thu Feb  1 18:25:46 2001  Owen Taylor  <otaylor@redhat.com>
3264
3265         * gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not
3266         defined, define MAXPATHLEN to 2048. (The Hurd doesn't have
3267         MAXPATHLEN, but the code here depends on a fixed value.)
3268         (#4524)
3269
3270 Wed Jan 31 22:01:04 2001  Owen Taylor  <otaylor@redhat.com>
3271
3272         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Handle the case
3273         where child == NULL and handle_position == RIGHT or BOTTOM. (#8041g)
3274
3275 Wed Jan 31 21:20:39 2001  Owen Taylor  <otaylor@redhat.com>
3276
3277         * gtk/gtkctree.c (real_tree_move): If the node being moved isn't
3278         viewable there is no way that moving the node will cause the 
3279         focus row to become not viewable, so omit check on the visibility
3280         of new_sibling, which is irrelevant. (Fixes #8002, David Helder)
3281
3282 Wed Jan 31 20:38:17 2001  Owen Taylor  <otaylor@redhat.com>
3283
3284         * gtk/gtkentry.c (gtk_entry_commit_cb): Delete the current
3285         selection before inserting new text.
3286
3287 Wed Jan 31 18:49:33 2001  Owen Taylor  <otaylor@redhat.com>
3288
3289         * gtk/gtkoptionmenu.c (gtk_option_menu_item_state_changed_cb):
3290         Make the sensitivity of the reparented child track that of
3291         the original parent menu item. (#34218, David Hodson)
3292
3293         * gtk/gtkoptionmenu.c (gtk_option_menu_item_destroy_cb): Handle
3294         the case where the current item is destroyed properly.
3295
3296         * gtk/gtkoptionmenu.c: Some additional code cleanups and fix
3297         some edge cases with child-less menuitems.
3298         
3299 Wed Jan 31 17:16:13 2001  Owen Taylor  <otaylor@redhat.com>
3300
3301         * gtk/gtkcombo.c (gtk_combo_window_key_press): Make Return
3302         key pop down window. (#12074, Jon K Hellan)
3303
3304 Wed Jan 31 16:21:42 2001  Owen Taylor  <otaylor@redhat.com>
3305
3306         * gtk/gtklist.c (gtk_list_signal_item_toggle): Don't allow
3307         toggling of rows off in BROWSE or EXTENDED mode. (#12072, Jon K Hellan) 
3308         The solution here isn't perfect - you get an extraneous
3309         emission of "toggle", which could conceivably confuse an app,
3310         but better than the current situation. LXR search seems to
3311         indicate that no apps in GNOME CVS connect to "toggle".
3312
3313 Wed Jan 31 15:46:13 2001  Owen Taylor  <otaylor@redhat.com>
3314
3315         * gtk/Makefile.am (libgtkinclude_HEADERS): Move gtkcompat.h from
3316         gtk_public_h_sources to directly here to avoid warning when
3317         building srcdir != builddir. (#9656)
3318
3319 Tue Jan 30 19:49:02 2001  Owen Taylor  <otaylor@redhat.com>
3320
3321         * gtk/gtkrange.c: Patch from Kipp Hickman to make the event
3322         handlers in gtkrange.c return the proper values (TRUE == handled)
3323         (#10316).
3324
3325         This is just the tip of the iceberg, but gtkrange.c is the
3326         most common place where the propagation is problematical,
3327         and also a place where it is almost certainly safe to change
3328         this in the stable branch.
3329
3330         (You don't want right click popups on a range control or anything...)
3331
3332 Tue Jan 30 18:57:59 2001  Owen Taylor  <otaylor@redhat.com>
3333
3334         * gtk/gtktext.c (clear_focus_area): We need to clear the focus
3335         area on focus out, even if a background pixmap isn't set.
3336         (#13941)
3337         
3338 Tue Jan 30 18:24:10 2001  Owen Taylor  <otaylor@redhat.com>
3339
3340         * gtk/gtknotebook.c (gtk_notebook_set_shape): Fix from Sean Cunningham
3341         to deal with setting the shape properly when scrolling arrows are
3342         turned on, but not visible because there is sufficient space.
3343         (#13432)
3344
3345 Tue Jan 30 16:39:25 2001  Owen Taylor  <otaylor@redhat.com>
3346
3347         * gtk/gtkitemfactory.c (gtk_item_factory_delete_item): For menu
3348         items with submenus, destroy the item along with the submenu.
3349         (#7841, Brian Masney(?)) Also, handle paths of the form '<foo>/abcd...' 
3350         properly.
3351
3352         * gtk/testgtk.c (menu_items): Add a dummy branch that we delete
3353         later.
3354
3355 Tue Jan 30 15:51:25 2001  Owen Taylor  <otaylor@redhat.com>
3356
3357         * gtk/gtkwindow.c (gtk_window_real_set_focus): Fix a problem where
3358         the focus widget sometimes wasn't drawn with the default if there
3359         was no default widget.
3360
3361         * gtk/gtkstyle.c (gtk_style_real_unrealize): free colors,
3362         unreference pixmaps. 
3363
3364         * gtk/gtkstyle.c (gtk_style_realize): Reference colormap
3365         for some extra safety.
3366
3367 Mon Jan 29 19:00:01 2001  Owen Taylor  <otaylor@redhat.com>
3368
3369         * gtk/gtk{ctree.c,clist.c} (set_cell_contents): Handle setting
3370         the text of a cell to the old pointer value better, by
3371         copying the new text before freeing the old text. Some code
3372         cleanup. (#8079, Karl Nelson)
3373
3374 Mon Jan 29 16:50:19 2001  Owen Taylor  <otaylor@redhat.com>
3375
3376         * gtk/gtklabel.[ch] gtk/gtkframe.[ch]: Make gtk_label_get_text()
3377         gtk_frame_get_label() non strdup'ing, and G_CONST_RETURN.
3378
3379 Mon Jan 29 15:22:51 2001  Owen Taylor  <otaylor@redhat.com>
3380
3381         * gtk/gtkmenu.c (gtk_menu_remove): When removing an
3382         item from a menu, check to see if it matches 
3383         menu->old_active_menu_item, and if so, unref and clear
3384         old_active_menu_item (Patch from Pavel Cisler)
3385
3386         * gtk/gtkmenushell.c (gtk_menu_shell_remove): Unset 
3387         menu_shell->active_menu_item, if it is the child being
3388         removed. (Patch based on that of Gene Ragan, #50337)
3389
3390 2001-01-31  Alexander Larsson  <alla@lysator.liu.se>
3391
3392         * gdk/linux-fb/gdkselection-fb.c: 
3393         * gdk/linux-fb/gdkcolor-fb.c: 
3394         * gdk/linux-fb/gdkdrawable-fb2.c: 
3395         * gdk/linux-fb/gdkfont-fb.c: 
3396         * gdk/linux-fb/gdkim-fb.c: 
3397         * gdk/linux-fb/gdkinput.c: 
3398         * gdk/linux-fb/gdkkeyboard-fb.c: 
3399         * gdk/linux-fb/gdkmain-fb.c: 
3400         * gdk/linux-fb/gdkrender-fb.c: 
3401         A bunch of whitespace cleanup.
3402         
3403 2001-01-30  Havoc Pennington  <hp@pobox.com>
3404
3405         * gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in 
3406         #ifdef GTK_ENABLE_BROKEN.
3407
3408         * gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
3409         GTK_ENABLE_BROKEN just before including the broken headers.
3410         
3411         * gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
3412         deprecated types registered.
3413
3414         * gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
3415         we have to test the broken stuff.
3416
3417         * docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
3418         
3419 2001-01-30  Havoc Pennington  <hp@redhat.com>
3420
3421         * gtk/gtkliststore.c (gtk_list_store_insert_before): fix bug in
3422         here where prev pointer was set to the wrong thing
3423
3424         * gtk/gtktreemodel.c (gtk_tree_path_is_ancestor): new function
3425         (gtk_tree_path_is_descendant): new function
3426
3427         * gtk/gtkliststore.c (gtk_list_store_iter_n_children): return
3428         cached length
3429         (gtk_list_store_get_iter): don't modify iter if we can't get the
3430         path.
3431
3432         * gtk/gtkliststore.h (struct _GtkListStore): cache the length
3433         
3434         * gtk/gtktreednd.h: add virtual function row_drop_possible() to
3435         GtkTreeDragDest
3436
3437         * gtk/gtktreestore.c (copy_node_data): fix varargs type error that
3438         was causing segfault
3439
3440         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_copy): set next
3441         pointer to NULL
3442
3443         * gtk/gtktreestore.c (gtk_tree_store_append): fix memleak
3444
3445         * gtk/gtkliststore.c (gtk_list_store_iter_next): don't modify iter
3446         on returning FALSE
3447         (gtk_list_store_iter_children): ditto
3448         (gtk_list_store_iter_nth_child): ditto
3449         (gtk_list_store_iter_nth_child): ditto
3450         (gtk_list_store_iter_parent): ditto
3451
3452         * gtk/gtktreestore.c (gtk_tree_store_get_path): g_return_if_fail
3453         on iter->user_data != NULL instead of silently accepting it.
3454         (gtk_tree_store_iter_next): ditto. Also, don't modify iter unless
3455         we are returning TRUE.
3456         (gtk_tree_store_iter_children): ditto
3457         (gtk_tree_store_iter_nth_child): ditto
3458         (gtk_tree_store_iter_parent): ditto
3459         (gtk_tree_store_insert): remove handling of parent->user_data ==
3460         NULL, replace with parent == NULL       
3461
3462         * gtk/gtktreemodel.c (inserted_callback): put some fixes in here,
3463         and a comment explaining things
3464
3465         * gtk/gtktreestore.c: add GtkTreeDragSource/GtkTreeDragDest
3466         interface support to GtkTreeStore.
3467
3468         * gtk/gtktreemodel.c (gtk_tree_path_prev): didn't properly return
3469         FALSE if no prev, fix
3470
3471         * gtk/gtktreeview.c (set_source_row): use a row reference
3472         (set_dest_row): use a row reference
3473
3474 Sat Jan 27 15:52:02 2001  Jonathan Blandford  <jrb@redhat.com>
3475
3476         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
3477         stupid typo pointed out by Kristian Rietveld <kristian@planet.nl>.
3478         (gtk_tree_selection_select_iter): The same as above.
3479
3480 2001-01-26  Havoc Pennington  <hp@redhat.com>
3481
3482         * gtk/gtktreemodel.c, gtk/gtktreemodel.h: add GtkTreeRowReference
3483         which holds a handle to a specific row (particular set of values
3484         in the model, i.e. pointer-identity row).
3485
3486         * gtk/gtktreeview.c, gtk/gtktreeprivate.h, gtk/gtktreeselection.c:
3487         use GtkTreeRowReference for anchor, cursor, and drag_dest_row.
3488         Still need to use it for the src/dest row saved on the drag context.
3489
3490 2001-01-26  Havoc Pennington  <hp@redhat.com>
3491
3492         * gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
3493
3494         * gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
3495         not offset by TREE_VIEW_HEADER_HEIGHT
3496         (gtk_tree_view_tree_to_widget_coords): fix to not offset by
3497         TREE_VIEW_HEADER_HEIGHT
3498
3499         * configure.in (included_loaders): for me, --with-included-loaders
3500         generates the error "the specified loader yes does not exist",
3501         i.e. the arg defaults to "yes", so change test for value ""
3502         to test for value "yes", and include all loaders in that case.
3503
3504         * gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
3505
3506         * gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
3507         handle TREE_VIEW_VERTICAL_SEPARATOR
3508         (gtk_tree_view_bin_expose): fix to consider the row offset as
3509         pointing halfway into vertical separator.       
3510         (gtk_tree_view_draw_node_focus_rect): ditto
3511
3512         * gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
3513         --gtk-debug=updates, which causes gdk_window_set_debug_updates
3514         (TRUE) to be called.
3515
3516         * gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
3517         debug mode where the invalid region is colored in on invalidate,
3518         so you can see the flicker and know whether your redraw code is 
3519         doing a good job.
3520
3521         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in 
3522         tree window coordinates (clip rect is in tree window coords)
3523
3524         * gtk/Makefile.am: add gtktreednd.[hc]
3525
3526         * gtk/gtkliststore.c: implement gtktreednd interfaces.
3527
3528         * gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
3529         drag-and-drop data operations on a model (so we can set up tree
3530         drag-and-drop automatically)
3531
3532         * gtk/testgtk.c: Add a window to change sensitivity in the
3533         GtkLabel test; add a way to change the entry frame in GtkEntry
3534         test
3535
3536         * gtk/gtkentry.c (gtk_entry_set_has_frame): 
3537         (gtk_entry_get_has_frame): new functions to remove the frame
3538         around an entry
3539         (gtk_entry_size_request): shrink requisition if no frame
3540         (gtk_entry_draw_focus): don't draw frame if no frame
3541
3542         * gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
3543         checks inside a cell renderer
3544         (gtk_default_draw_option): ditto for options
3545
3546         * gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
3547         children from the alignment, not the button
3548         (gtk_tree_view_column_init): ref/sink the column, to emulate
3549         GObject refcounting.
3550
3551         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
3552         
3553         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
3554         Use theme functions to draw the toggles 
3555
3556         * gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
3557
3558         * gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
3559         GdkPangoAttrEmbossed to use in rendering insensitive text
3560
3561         * gdk/gdkpango.c (gdk_draw_layout_line): render new properties
3562
3563         * gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
3564         using new GDK features
3565         
3566 2001-01-24  Alexander Larsson  <alexl@redhat.com>
3567
3568         * gtk/gtkimage.c:
3569         Splitted gtk_image_clear into gtk_image_clear() and
3570         gtk_image_reset(). Call gtk_image_clear() in ::destroy
3571         to avoid leaks.
3572
3573         * gtk/gtklabel.c (set_markup):
3574         Don't leak text.
3575
3576         * gtk/gtktextlayout.c:
3577         Always free display->shaped_objects.
3578
3579         * gtk/testgtk.c (create_clist):
3580         Don't leak custom style.
3581
3582 2001-01-23  Alexander Larsson  <alexl@redhat.com>
3583
3584         * gtk/gtkcolorsel.c (grab_color_at_mouse):
3585         Don't leak image. Simplify using gdk_colormap_query_color().
3586         (gtk_color_selection_init): Don't leak dropper_pixmap and mask.
3587
3588         * linux-fb/gdkcolor-fb.c:
3589         Implemented gdk_colormap_query_color.
3590
3591 2001-01-23  Alexander Larsson  <alexl@redhat.com>
3592
3593         * linux-fb/gdkcursor-fb.c:
3594         Don't leak built-in cursors.
3595
3596         * linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_polygon):
3597         Don't leak tmp_points.
3598
3599         * linux-fb/gdkfont-fb.c (gdk_font_from_description):
3600         Don't modify desc. Don't leak font if the PangoFont
3601         isn't found.
3602         
3603         * linux-fb/gdkgc-fb.c (gdk_fb_gc_finalize):
3604         Free dash_list.
3605
3606         * linux-fb/gdkkeyboard-fb.c (gdk_fb_handle_key):
3607         Don't leak string.
3608         
3609 2001-01-20  Havoc Pennington  <hp@pobox.com>
3610
3611         * gtk/gtktexttag.h (enum GtkWrapMode): rename member fields
3612         from GTK_WRAPMODE_WORD to GTK_WRAP_WORD, etc., seems nicer to 
3613         me, matches Pango
3614
3615 2001-01-22  Havoc Pennington  <hp@redhat.com>
3616
3617         * demos/testanimation.c: fix to reflect gdk-pixbuf changes
3618
3619         * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes
3620
3621         * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: 
3622         Remove, move back to gdk-pixbuf
3623
3624         * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents
3625         to all the word functions
3626
3627         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return
3628         before doing anything on NULL layout or if we don't have the focus
3629
3630         * gtk/testtext.c (fill_example_buffer): "justification"
3631
3632         * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute
3633         to be called "justification" not "justify"
3634
3635         * demos/gtk-demo/textview.c (create_tags): "justification"
3636         
3637         * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
3638
3639 2001-01-22  Alexander Larsson  <alexl@redhat.com>
3640
3641         * gdk/gdkwindow.c (gdk_window_invalidate_region):
3642         Don't leak visible_region. Use visible_region instead of region.
3643         
3644         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
3645         Don't do extra gdk_drawable_ref(). This is not X.
3646         (gdk_fb_window_find_focus, gdk_fb_change_focus): make sure
3647         gdk_fb_focused_window is ref:ed.
3648         (gdk_fb_window_send_crossing_events): Watch out for destroyed
3649         windows.
3650
3651 2001-01-22  Alexander Larsson  <alexl@redhat.com>
3652
3653         * gtk/gtkwindow-decorate.c (gtk_decorated_window_realize):
3654         Don't leak the PangoFontDescriptor.
3655
3656 Sun Jan 21 09:58:00 2001  Jonathan Blandford  <jrb@redhat.com>
3657
3658         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): Make fail
3659         when not realized.
3660         (gtk_tree_view_scroll_to_cell): Make work when not realized.
3661         (gtk_tree_view_realize): add scroll_to support
3662         (gtk_tree_view_finalize): add a finalize method.  Populate.
3663         (gtk_tree_view_insert_column): ref and sink the column.
3664         (gtk_tree_view_append_column): ref and sink the column.
3665         (gtk_tree_view_queue_draw_node): New function to handle redrawing
3666         individual nodes.  Should make the code much more efficient, if
3667         actually used.
3668
3669 2001-01-19  Havoc Pennington  <hp@redhat.com>
3670
3671         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
3672         byte_offset variable was being used to mean both "offset into
3673         layout" and "offset into buffer line" which was no longer true
3674         with addition of preedit string; fix
3675
3676 2001-01-19  Havoc Pennington  <hp@redhat.com>
3677
3678         * demos/gtk-demo/main.c (button_press_event_cb): sync to tree changes
3679
3680         * gtk/gtkrbtree.c (_gtk_rbtree_node_find_offset): fix this
3681         function
3682
3683         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_widget):
3684         implement
3685
3686         * gtk/gtktreeview.c (gtk_tree_view_move_to): rename
3687         scroll_to_cell, matches TextView scroll functions better
3688         (gtk_tree_view_tree_to_widget_coords): new function
3689         (gtk_tree_view_widget_to_tree_coords): new function
3690         (gtk_tree_view_get_visible_rect): new function
3691         (gtk_tree_view_get_path_at_pos): accept negative coordinates
3692         (gtk_tree_view_draw_node_focus_rect): new function moved from
3693         draw_focus, also, use width of bin_window as width of the focus
3694         rect
3695         (gtk_tree_view_expand_row): fix bug where it didn't recognize
3696         already-expanded rows
3697         (gtk_tree_view_get_cell_rect): new function
3698         (gtk_tree_view_get_path_at_pos): return the click position
3699         relative to the passed-in cell
3700         (gtk_tree_view_set_expander_column): new function
3701
3702         * configure.in: remove gtk-config-2.0 chmod
3703
3704         * gtk/gtktextview.c (gtk_text_view_drag_motion): small cleanups,
3705         and properly handle drags with targets we don't understand
3706         (gtk_text_view_drag_end): don't stop scrolling, the source isn't
3707         scrolling anyway
3708         (gtk_text_view_drag_drop): stop scrolling here though, and set the
3709         mark invisible
3710
3711         * gtk/gtkdnd.c (gtk_drag_dest_find_target): export as a public
3712         function
3713         (gtk_drag_dest_get_target_list): new function
3714         (gtk_drag_dest_set_target_list): new function
3715         
3716         * gtk/gtktreeview.c: Add a bunch of drag-and-drop implementation
3717
3718         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add fields
3719         related to drag-and-drop
3720
3721 2001-01-19  Alexander Larsson  <alexl@redhat.com>
3722
3723         * gdk/linux-fb/gdkprivate-fb.h:
3724         Define EMULATE_GDKFONT.
3725         Add extra pango_font stuff to GfkFontPrivate.
3726         
3727         * gdk/linux-fb/gdkdrawable-fb2.c:
3728         * gdk/linux-fb/gdkfont-fb.c:
3729         If EMULATE_GDKFONT defined, implement a slow lame GdkFont
3730         emulation using PangoFont.
3731
3732 2001-01-17  Havoc Pennington  <hp@pobox.com>
3733
3734         * gtk/gtkprogressbar.c, gtk/gtkprogressbar.h: Add "getters" for
3735         all the non-deprecated set_foo functions. Added missing object
3736         properties, and added g_object_notify() to setters. 
3737         Wrote docs.
3738         
3739 2001-01-18  Tor Lillqvist  <tml@iki.fi>
3740
3741         * gtk/gtkmain.c
3742         * gtk/gtkrc.c: (Win32) Use the new
3743         g_win32_get_package_installation_(sub)directory() functions.
3744
3745         * config.h.win32.in: New file.
3746         
3747         * config.h.win32: Removed.
3748
3749         * configure.in: Output config.h.win32.
3750
3751         * Makefile.am: Add it to EXTRA_DIST.
3752
3753         * gtk/gtk.def: Update.
3754
3755 Wed Jan 17 16:22:54 2001  Owen Taylor  <otaylor@redhat.com>
3756
3757         * gtk/gtklabel.c (gtk_label_size_request): Set the
3758         attributes onto the PangoLayout even if they are newly
3759         created from label->pattern.
3760
3761 Tue Jan  9 11:20:48 2001  Owen Taylor  <otaylor@redhat.com>
3762
3763         * gdk/x11/gdkdnd-x11.c: Remove unused variable.
3764
3765         * gtk/gtkdnd.c: Encapsulate storing and retrieving info
3766         structures in functions. Fixes bug where gtk_dataset_*
3767         was accidentally still being used in one place, causing
3768         every dest side event to be treated independently.
3769
3770         * gtk/gtkdnd.c: Remove last vestages of handling
3771         ::draw (fixes warning)
3772         
3773         * gtk/gtkentry.[ch]: Add drag and drop support.
3774
3775         * gtk/gtkdnd.[ch] gtk/gtktextview.c gtk/gtkentry.c: Add
3776         new function gtk_check_drag_threshhold() for checking
3777         to check if (dx,dy) has exceeded the threshhold for starting
3778         a drag and use it everywhere.
3779
3780 Mon Jan  8 11:58:05 2001  Owen Taylor  <otaylor@redhat.com>
3781
3782         * gtk+-2.0.pc.in gdk-pixbuf-2.0.pc.in (Cflags): Remove -I${includedir},
3783         add -I{includedir}/gtk-2.0.
3784
3785         * gtk/gtktreeview.[ch] gtktreemodelsort.[ch] gtknotebook.c
3786         gdk/gdk-pixbuf.h: Doc fixups.
3787         
3788         * gtk/gtkobject.h: Remove trailing , from enum
3789
3790 2001-01-17 Alexander Larsson <alexl@redhat.com> 
3791
3792         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_shadow_fb_draw_arc):
3793         Doh! Mixed up x and y.
3794
3795         * gdk/linux-fb/gdkglobals-fb.c:
3796         Removed gdk_fb_pointer_grab_window_events,
3797         added _gdk_fb_pointer_grab_owner_events and
3798         _gdk_fb_keyboard_grab_owner_events.
3799
3800         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab):
3801         Set all button mask if GDK_BUTTON_MOTION_MASK set. Send
3802         crossing events before grabbing. Set _gdk_fb_pointer_grab_owner_events.
3803         (gdk_fb_pointer_ungrab): Unset _gdk_fb_pointer_grab_owner_events
3804         Send crossing events after ungrab finished.
3805         (gdk_keyboard_grab): Set ..._owner_events
3806         (type_masks): Move out of function.
3807         (gdk_fb_other_event_window, gdk_fb_pointer_event_window,
3808         gdk_fb_keyboard_event_window): New functions, return the
3809         window an event should be targeted at. Handles grabs and
3810         event propagation. Can return NULL.
3811         (gdk_event_make): Remove event_mask checking. Now always
3812         returns an event.
3813                 
3814         * gdk/linux-fb/gdkkeyboard-fb.c:
3815         * gdk/linux-fb/gdkproperty-fb.c:
3816         * gdk/linux-fb/gdkselection-fb.c:
3817         Use new event_window/gdk_event_make() behaviour.
3818         
3819         * gdk/linux-fb/gdkmouse-fb.c:
3820         Use new event_window/gdk_event_make() behaviour.
3821         Only send motion events if in the same window.
3822         If grabbed, use cursor from window if sibling of grabbed
3823         window, and cursor from grabbed window otherwise.
3824
3825         * gdk/linux-fb/gdkprivate-fb.h:
3826         Update gdk_fb_window_send_crossing_events, gdk_event_make
3827         and grab varaible declarations. Add gdk_fb_*_event_window().
3828
3829         * gdk/linux-fb/gdkwindow-fb.c:
3830         Use new event_window/gdk_event_make() behaviour.
3831         Keep correct track of focus window.
3832         (gdk_window_set_events): Set all specific button motion masks
3833         if GDK_BUTTON_MOTION_MASK set.
3834
3835         * gtk/gtkdnd.c (gtk_drag_update):
3836         Free info->last_event if gdk_drag_motion returned FALSE.
3837
3838 2001-01-16  Tor Lillqvist  <tml@iki.fi>
3839
3840         * gdk/win32/gdkwindow-win32.c (gdk_window_show, gdk_window_hide):
3841         Eliminate redraws when input-only windows are shown or
3842         hidden. Thanks to jpe@archaeopteryx.com.
3843
3844 Tue Jan 16 13:13:13 GMT 2001  Tony Gale <gale@gtk.org>
3845
3846         * docs/faq/gtk-faq.sgml: FAQ update:
3847           - Update to bugzilla
3848           - Add GTK+ and security/SUID/SGID
3849           - Add DnD question
3850
3851 2001-01-16  Alexander Larsson  <alla@lysator.liu.se>
3852
3853         * gdk/linux-fb/gdkdnd-fb.c:
3854         Some cleanups.
3855         
3856 2001-01-15  Havoc Pennington  <hp@pobox.com>
3857
3858         * tests/testtreeview.c: add test stuff for CellRendererToggle
3859
3860         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_model): add this
3861         accessor
3862
3863         * gtk/gtkcellrenderertoggle.c: distinguish different event types,
3864         only toggle on button press (would do release like GtkButton, but
3865         we'd need implicit grab code for treeview cells)
3866
3867 2001-01-16  Tor Lillqvist  <tml@iki.fi>
3868
3869         * gdk/win32/gdkvisual-win32.c: Include <stdlib.h> for getenv().
3870
3871         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't use
3872         GDK_COLORMAP_PRIVATE_DATA on a potentially NULL GdkColormap.
3873
3874         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Adapt calls
3875         to g_{locale,filename}_{to,from}_utf8 to match current API.
3876
3877         * gtk/makefile.msc.in (gtk_OBJECTS)
3878         * gtk/makefile.mingw.in (gtk_OBJECTS): Add gtkwindow-decorate.
3879
3880         * gtk/gtk.def: Update.
3881
3882 2001-01-15  Tor Lillqvist  <tml@iki.fi>
3883
3884         * gdk/win32/gdkevents-win32.c (synthesize_crossing_events): New
3885         implementaion that more closely mimics the events that an X server
3886         would generate. Especially, properly generate GDK_NOTIFY_VIRTUAL and
3887         GDK_NOTIFY_NONLINEAR_VIRTUAL crossing events. This makes buttons
3888         with nested preview widgets, for instance, more responsive when
3889         you move the mouse quickly into them.
3890         (find_window_for_pointer_event): Make it actually compile.
3891         (gdk_event_translate): Set send_event to the value of
3892         InSendMessage (). This doesn't really mean the same as X11's
3893         send_event flag, but is close enough, says jpe@archaeopteryx.com
3894
3895 2001-01-15  Alexander Larsson  <alexl@redhat.com>
3896
3897         * gdk/linux-fb/gdkdnd-fb.c:
3898         Implemented drag and drop.
3899         Seems to be mostly working. I sometimes get an assert from gtkdnd.c:2664
3900         when it tries to free and then copy the same event (info->last_event).
3901         I am not sure about why this happens, but will continue looking.
3902
3903 2001-01-15  Alexander Larsson  <alexl@redhat.com>
3904
3905         * gdk/linux-fb/gdkwindow-fb.c:
3906         Use gdk_window_invalidate_rect instead of
3907         gdk_window_invalidate_rect_clear to minimise flashing.
3908         When hiding windows you need to clear the root window though.
3909
3910 2001-01-15  Alexander Larsson  <alexl@redhat.com>
3911
3912         * gdk/linux-fb/gdkdrawable-fb2.c:
3913         For optization, add an full_shapes argument to gdk_fb_clip_region.
3914         If this is false, only the cliprects of the shapes are used.
3915
3916         * gdk/linux-fb/gdkprivate-fb.h:
3917         Export gdk_fb_window_peek_shape.
3918         Add full_shapes to gdk_fb_clip_region.
3919
3920         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
3921         When moving a window, don't clear everything under the it, just the
3922         root window. Makes stuff faster and flash less.
3923         (gdk_window_get_pointer): Correctly handle offseted shapes, due to
3924         USE_CHILD_SHAPE. (gdk_fb_window_peek_shape): Return the correct
3925         offset of the shape.
3926         
3927
3928 2001-01-12  Havoc Pennington  <hp@redhat.com>
3929
3930         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): offset the 
3931         current invalid region, fixes redraw bug while scrolling the 
3932         text widget
3933
3934         * gtk/gtktextview.c, gtk/gtktextview.h:
3935         Rearrange the scrolling/validation/etc. code in a major way, 
3936         so it seems to make sense to me. Probably isn't genuinely that
3937         much better, but...
3938
3939         * gtk/gtktexttag.c (set_fg_color): fix name of property used for
3940         notifies
3941
3942         * gtk/gtktextmark.c (gtk_text_mark_get_left_gravity): new function
3943
3944 2001-01-12  Alexander Larsson  <alla@lysator.liu.se>
3945
3946         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_set_rotation):
3947         Hide mouse pointer while rotation. Show it afterwards.
3948
3949 2001-01-12  Alexander Larsson  <alexl@redhat.com>
3950
3951         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region): Take shaped
3952         windows in consideration when generating clip region.
3953
3954         * gdk/linux-fb/gdkfb.h:
3955         Huge HACK. Added GDK_FB_USE_CHILD_SHAPE.
3956
3957         * gdk/linux-fb/gdkprivate-fb.h:
3958         Add shape to GdkWindowFBDatat.
3959         exported gdk_fb_window_get_abs_shape().
3960         removed gdk_fb_draw_lines declaration.
3961
3962         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_impl_fb_init):
3963         Init shape to NULL. (gdk_fb_window_send_crossing_events): Don't
3964         send focus changes when there is a grabbed window.
3965         (gdk_window_get_pointer): Handle shaped windows.
3966         (gdk_fb_region_create_from_bitmap): Convert bitmap to region.
3967         (gdk_fb_window_peek_shape): Returns the shape for a window,
3968         handles GDK_FB_USE_CHILD_SHAPE.
3969         (gdk_fb_window_get_abs_shape): Returns the shape of the window,
3970         offseted to absolute positions. Handles GDK_FB_USE_CHILD_SHAPE.
3971         (gdk_window_shape_combine_mask): Implement.
3972
3973         * gtk/gtkwindow-decorate.c:
3974         HACK! Set GDK_FB_USE_CHILD_SHAPE on window->frame to make sure
3975         setting the shape of a window makes the window transparent.
3976
3977 2001-01-11  Havoc Pennington  <hp@redhat.com>
3978
3979         * gtk/gtktreemodelsimple.h: Oops, broke some macros
3980
3981 2001-01-10  Havoc Pennington  <hp@redhat.com>
3982
3983         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clear_attributes):
3984         add this function, bug 40251
3985
3986         * gtk/gtktreemodelsimple.h (GTK_TYPE_TREE_MODEL_SIMPLE): fix name
3987         of type macro   
3988
3989 2001-01-11  Alexander Larsson  <alexl@redhat.com>
3990
3991         * acconfig.h:
3992         Added ENABLE_SHADOW_FB
3993
3994         * configure.in:
3995         Added --disable-shadowfb
3996
3997         * gdk/linux-fb/gdkcursor-fb.c:
3998         Update shadowfb when updating cursor
3999
4000         * gdk/linux-fb/gdkdrawable-fb2.c:
4001         Added wrappers for shadowfb that calls  the normal drawable
4002         methods, but calls gdk_shadow_fb_update(bounding box) when
4003         GdkWindows are drawed to.
4004         Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
4005         which also returns the bounding box.
4006
4007         * gdk/linux-fb/gdkfb.h:
4008         Added GdkFBAngle type and gdk_fb_set_rotation declaration.
4009
4010         * gdk/linux-fb/gdkgeometry-fb.c:
4011         Update shadowfb when scrolling window.
4012
4013         * gdk/linux-fb/gdkglobals-fb.c:
4014         Add _gdk_fb_screen_angle.
4015         
4016         * gdk/linux-fb/gdkkeyboard-fb.c:
4017         Test code for screen rotation. Shift-F2 in the xlate driver
4018         rotates the screen.
4019
4020         * gdk/linux-fb/gdkmain-fb.c:
4021         Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
4022
4023         * gdk/linux-fb/gdkmouse-fb.c:
4024         Use fb_width/height instead of modeinfo.xres/yres.
4025
4026         * gdk/linux-fb/gdkprivate-fb.h:
4027         Added fb_men, fb_width, fb_height & fb_stride. When using
4028         shadow fb these can differ from the framebuffer stuff.
4029         Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
4030         gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
4031         _gdk_fb_screen_angle. Removed CM, RP.
4032
4033         * gdk/linux-fb/gdkrender-fb.c:
4034         Added code for shadowfb handling and screen rotation using
4035         shadowfb.
4036
4037         * gdk/linux-fb/gdkwindow-fb.c:
4038         Use fb_mem, fb_stride, fb_width, fb_height.
4039         Added recompute_rowstride to reset the rowstride of all windows.
4040         Added gdk_fb_recompute_all() which recomputes rootwindow size,
4041         window abs positions and window rowstrides. Usefull when the
4042         rotation has changed.
4043
4044 Thu Jan 11 13:16:50 GMT 2001  Tony Gale <gale@gtk.org>
4045
4046         * docs/faq/gtk-faq.sgml: update to make web site updating easier
4047
4048 2001-01-10  Havoc Pennington  <hp@redhat.com>
4049
4050         * gtk/gtktreestore.c (gtk_tree_store_insert_before): handle case
4051         where sibling == iter
4052         (gtk_tree_store_insert_after): handle sibling == iter
4053         (gtk_tree_store_prepend): remove stamp checks
4054         (gtk_tree_store_insert_before): ditto
4055         (gtk_tree_store_append): ditto
4056         (gtk_tree_store_get_path): ditto
4057         (gtk_tree_store_get_value): ditto
4058         (gtk_tree_store_iter_has_child): ditto
4059         (gtk_tree_store_iter_n_children): ditto
4060         (gtk_tree_store_iter_nth_child): ditto
4061         (gtk_tree_store_insert_after): ditto
4062         (gtk_tree_store_is_ancestor): ditto
4063         (gtk_tree_store_iter_depth): ditto
4064         (gtk_tree_store_insert_before): assert that sibling's parent is
4065         the same as the passed-in parent
4066         (gtk_tree_store_insert_after): assert that sibling's parent is
4067         the same as the passed-in parent
4068
4069         
4070         * gtk/gtktreemodel.c (gtk_tree_model_get_first): new convenience 
4071         function to get the first iterator in a model
4072         
4073         * gtk/gtktreestore.c (gtk_tree_store_get_root_iter): remove,
4074         conventionally the "root" in this sense is just NULL afaict.
4075
4076         * gtk/gtkliststore.c (gtk_list_store_insert_before): handle case
4077         where sibling == iter
4078         (gtk_list_store_insert_after): handle case where sibling == iter
4079
4080         * tests/testtreeview.c (run_automated_tests): fairly lame basic
4081         automated tests for ListStore, TreeStore
4082
4083         * gtk/gtkliststore.c (gtk_list_store_remove): update tail pointer
4084         (gtk_list_store_insert): update tail pointer, and fix it to work
4085         (gtk_list_store_insert_before): update tail pointer, and fix it to work
4086         (gtk_list_store_append): use tail to be faster
4087         (gtk_list_store_prepend): fix it, update tail pointer
4088         (gtk_list_store_insert_after): fix it, update tail pointer
4089
4090         * gtk/gtkliststore.h (struct _GtkListStore): add tail pointer for 
4091         the list
4092
4093 2001-01-09  Havoc Pennington  <hp@redhat.com>
4094
4095         * gtk/gtklabel.c (gtk_label_expose): don't draw if label->layout
4096         is NULL due to a pending resize
4097
4098         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): don't set the
4099         column width to values less than 1
4100
4101         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_width): clamp
4102         width to be between min/max width, and still set the width 
4103         even if autosize is turned on, so the tree view can use this 
4104         function in order to autosize.
4105         (gtk_tree_view_column_init): set initial width to 1 not 0
4106
4107         * gtk/gtktreeview.c (gtk_tree_view_size_request_buttons): use
4108         setter function to modify column width, so we get notification
4109         (gtk_tree_view_insert_iter_height): ditto
4110         (gtk_tree_view_calc_size): ditto
4111         (gtk_tree_view_check_dirty): ditto
4112
4113         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add
4114         properties to change all the interesting attributes of the tree
4115         view column.
4116         (gtk_tree_view_column_set_header_clickable): rename set_clickable
4117         (gtk_tree_view_column_get_clickable): add
4118         (gtk_tree_view_column_set_cell_renderer): don't unset the current
4119         attributes; assume a cell renderer with equivalent object
4120         properties has been swapped in. Do g_object_notify().
4121         (gtk_tree_view_column_set_visible): g_object_notify
4122         (gtk_tree_view_column_get_sizing): rename from get_col_type
4123         (gtk_tree_view_column_set_sizing): g_object_notify
4124         (gtk_tree_view_column_set_width): add g_object_notify
4125         (gtk_tree_view_column_set_min_width): ditto
4126         (gtk_tree_view_column_set_max_width): ditto
4127         (gtk_tree_view_column_set_title): ditto
4128         (gtk_tree_view_column_set_clickable): ditto
4129         (gtk_tree_view_column_set_widget): ditto
4130         (gtk_tree_view_column_set_justification): ditto
4131
4132 2001-01-09  Havoc Pennington  <hp@redhat.com>
4133
4134         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): handle case where
4135         there are no rows in the model
4136
4137         * gtk/gtkliststore.c (gtk_list_store_iter_children): if parent is
4138         NULL, then return the start of the list
4139
4140         * gtk/gtktreeview.c (gtk_tree_view_setup_model): don't build tree
4141         if we can't get any rows from an empty model 
4142
4143         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): remove
4144         extraneous * after function pointer typedef usage
4145
4146         * Makefile.am: don't specify full path to cp and rm
4147
4148         * gtk/gtkcellrenderertextpixbuf.c
4149         (gtk_cell_renderer_text_pixbuf_get_size): check width/height !=
4150         NULL before dereferencing, fixes a segfault that happened from
4151         time to time
4152
4153         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
4154         use gdk_pixbuf_render_to_drawable_alpha() to get alpha channel,
4155         and reindent the function
4156         (gtk_cell_renderer_pixbuf_get_size): indentation
4157
4158         * gtk/gtkdialog.c (gtk_dialog_run): destroy main loop only after
4159         we quit it
4160         (gtk_dialog_add_buttons_valist): add g_return_if_fail
4161         (gtk_dialog_set_default_response): New function, to set default
4162         button
4163         (gtk_dialog_set_response_sensitive): New function, to set 
4164         sensitivity of buttons
4165
4166         * gtk/gtkcellrendererpixbuf.c
4167         (gtk_cell_renderer_pixbuf_get_property): allow getting a NULL pixbuf
4168         (gtk_cell_renderer_pixbuf_set_property): allow setting a NULL pixbuf
4169
4170         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
4171         handle any G_TYPE_OBJECT subclass, not just the base class, and 
4172         also boxed types.
4173         (_gtk_tree_data_list_value_to_node): ditto
4174
4175         * gtk/gtkrbtree.c: Run _gtk_rbtree_test at strategic points if 
4176         --gtk-debug=tree
4177
4178         * gtk/gtkmain.c: add GTK_DEBUG_TREE
4179
4180         * gtk/gtkdebug.h: add GTK_DEBUG_TREE
4181
4182 2001-01-09  Tor Lillqvist  <tml@iki.fi>
4183
4184         * gdk/win32/gdkevents-win32.c: Implement better mouse
4185         capturing. Do use SetCapture(). Thanks to jpe@archaeopteryx.com.
4186         (find_window_for_pointer_event): New function.
4187         (gdk_event_translate): Use it when handling mouse events.
4188
4189 2001-01-09  Alexander Larsson  <alla@lysator.liu.se>
4190
4191         * configure.in:
4192         Added --with-included-loaders option
4193
4194         * gdk-pixbuf/Makefile.am:
4195         * gdk-pixbuf/gdk-pixbuf-io.c:
4196         Add support for including selected gdk-pixbuf loaders only.
4197
4198         * gtk/gtkwindow.c (gtk_window_set_frame_dimensions,
4199         gtk_window_set_has_frame):
4200         Added inline documentation.
4201
4202         * gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
4203         * docs/reference/gdk/tmpl/windows.sgml:
4204         Added inline documentation.
4205
4206 Mon Jan  8 14:42:06 2001  Jonathan Blandford  <jrb@redhat.com>
4207
4208         * gtk/gtktreeview.c (gtk_tree_view_realize_buttons): Skip
4209         realizing buttons that have already been realized.
4210
4211 Mon Jan  8 14:06:29 2001  Jonathan Blandford  <jrb@redhat.com>
4212
4213         * tests/testtreeview.c (main): Show menu items before adding to
4214         option menu.
4215
4216         * gtk/gtktreeview.c (gtk_tree_view_set_model): Keep the columns
4217         around if we kill them.
4218
4219         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
4220         Return if we pass in a NULL model.
4221
4222 2001-01-08  Havoc Pennington  <hp@redhat.com>
4223
4224         * tests/testtreeview.c: hack on this some
4225
4226         * gtk/gtktreestore.c (gtk_tree_store_setv): rename
4227         gtk_tree_store_set_valist, v is for arrays, valist for varargs
4228         list
4229         (gtk_tree_store_getv): rename gtk_tree_store_get_valist
4230
4231         * gtk/gtkliststore.h: Add varargs set() and get() convenience
4232         functions
4233
4234 2001-01-08  Alexander Larsson  <alexl@redhat.com>
4235
4236         * gtk/gtkwindow-decorate.[hc]:
4237         * gtk/Makefile.am:
4238         New files. Contains an implementation of a minimal WM for
4239         linux-fb.
4240
4241         * gtk/gtkwindow.h:
4242         Add the possibility for GtkWindows to specify a frame. This
4243         is used for the window decoration code, but could concievably
4244         be used for X programs too (xmms style windows).
4245         GtkWindow->frame is the toplevel window if the window is framed.
4246         The signal frame_event gets all events that are targeted to
4247         GtkWindow->frame.
4248         (_gtk_window_constrain_size): Exported for usage by gtkwindow-decorate.c.
4249         
4250         * gtk/gtkwindow.c:
4251         Implement gtk_window_set_has_frame and gtk_window_set_frame_dimensions.
4252         Call out to gtkwindow-decorate.c for WM support in linx-fb.
4253
4254 2001-01-08  Alexander Larsson  <alexl@redhat.com>
4255
4256         * docs/README.linux-fb:
4257         Correct filename ~/.pangoft2_aliases
4258
4259         * gdk/gdkwindow.h:
4260         Added new function gdk_window_get_decorations.
4261
4262         * gdk/linux-fb/gdkfb.h:
4263         Removed _gdk_window_get_decorations declaration.
4264         Renamed _gdk_window_set_child_handler to
4265         gdk_fb_window_set_child_handler.
4266
4267         * gdk/linux-fb/gdkwindow-fb.c:
4268         Renamed _gdk_window_set_child_handler to
4269         gdk_fb_window_set_child_handler.
4270
4271         * gdk/x11/gdkwindow-x11.c:
4272         New function gdk_window_get_mwm_hints().
4273         Implemented gdk_window_get_decorations.
4274
4275         * docs/reference/gdk/tmpl/windows.sgml:
4276         * docs/reference/gdk/gdk-sections.txt:
4277         Added gdk_window_get_decorations docs.
4278         
4279 2001-01-08  Alexander Larsson  <alla@lysator.liu.se>
4280
4281         * gdk/linux-fb/gdkwindow-fb.c (_gdk_fb_window_find_focus,
4282         gdk_fb_window_find_focus, gdk_fb_send_focus_change,
4283         gdk_fb_window_send_crossing_events):
4284         Possibly send focus events when the mouse moves from one
4285         window to another.
4286
4287 2001-01-07  Tor Lillqvist  <tml@iki.fi>
4288
4289         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title,
4290         gdk_window_new): Adapt calls to g_{locale,filename}_{to,from}_utf8
4291         to match current API.
4292
4293         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): If a secret
4294         environment variable is set, don't call g_error when on a
4295         palettized (PseudoColor) display. Some people want to use GTK+ 
4296         in 256-colour mode even though works only partially.
4297
4298         * gdk/gdk.def
4299         * gtk/gtk.def
4300         * gtk/makefile.mingw.in: Update.
4301
4302 2001-01-05  Havoc Pennington  <hp@redhat.com>
4303
4304         * tests/testtreeview.c: hack on this a bit
4305
4306         * gtk/gtktextlayout.c (gtk_text_layout_class_init):
4307         s/GTK_RUN_LAST/G_SIGNAL_RUN_LAST
4308
4309         * gtk/gtktreemodelsimple.h (GTK_IS_TREE_MODEL_SIMPLE_CLASS): 
4310         was spelled incorrectly
4311         (GTK_IS_TREE_MODEL_SIMPLE): ditto
4312
4313         * gtk/gtktreeview.c (gtk_tree_view_set_headers_clickable): rename
4314         from gtk_tree_view_set_headers_active   
4315
4316         * gtk/gtktexttag.c:
4317         (gtk_text_tag_get_property): handle PROP_DIRECTION
4318         (gtk_text_tag_set_property): g_object_notify when we toggle the _set
4319         properties, bug 40235
4320
4321         * gtk/gtktextiter.c (gtk_text_iter_forward_to_delimiters): rename
4322         forward_to_line_end
4323
4324 Fri Jan  5 16:16:29 2001  Owen Taylor  <otaylor@redhat.com>
4325
4326         * gtk/{gtkcalender.c,gtkfilesel.c,gtkimcontext.c},
4327         modules/input/gtkimcontextxim.c: Adapt to new prototypes
4328         for unicode,locale,filename conversion functions.
4329
4330 2001-01-05  Havoc Pennington  <hp@redhat.com>
4331
4332         * gtk/gtktextiter.c (gtk_text_iter_ends_line): this function was
4333         broken if called on the first position in the buffer.
4334
4335         * gtk/gtktextlayout.c (line_display_index_to_iter): fix
4336         forward_to_delimiters to be called only if we aren't already at
4337         the delimiters.
4338
4339 2001-01-05  Havoc Pennington  <hp@redhat.com>
4340
4341         * demos/gtk-demo/main.c (create_tree): Oops, that didn't link. Fix.
4342
4343 2001-01-05  Alexander Larsson  <alexl@redhat.com>
4344
4345         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_drawable_finalize): free
4346         colormap in here. Sync from X port.
4347         (gdk_fb_set_colormap): allow the colormap to be NULL if you like.
4348         Sync from X port.
4349         (gdk_fb_clip_region): Comment out g_warning about empty clip region.
4350         This happens now and then, and i don't think it is a bug.
4351         (gdk_fb_draw_polygon): Correctly add extra point if startpoint
4352         != endpoint.
4353         (gdk_fb_draw_lines): Don't draw dashed lines if line_style is
4354         GDK_LINE_SOLID.
4355
4356         * gdk/linux-fb/gdkfont-fb.c: Return bogus GdkFont that has
4357         some of the fields filled in at least.
4358
4359         * gdk/linux-fb/miwideline.c: The widths argument to miLineArcI, and
4360         miLineArcD is no more, remove it from the function definition.
4361
4362 2001-01-04  Havoc Pennington  <hp@redhat.com>
4363
4364         * gtk/gtktreeselection.c (gtk_tree_selection_get_tree_view): add
4365         this
4366
4367         * gtk/gtktreemodel.h (struct _GtkTreeIter): rename fields to
4368         user_data instead of tree_node
4369
4370         * gtk/gtktreeprivate.h (TREE_VIEW_COLUMN_WIDTH): rename from
4371         TREE_VIEW_COLUMN_SIZE
4372
4373         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): rename
4374         "size" field to "width" finishes bug 40061
4375
4376         * gtk/gtkcellrenderer.h: Use GtkCellRendererState instead of guint
4377         for bitfields, bug 40268
4378
4379 2001-01-04  Havoc Pennington  <hp@redhat.com>
4380
4381         Rename some stuff:
4382         
4383         s/gtk_tree_view_column_set_size/gtk_tree_view_column_set_width/g;
4384
4385         s/GtkModelSimple/GtkTreeModelSimple/g;
4386         s/GTK_MODEL_SIMPLE/GTK_TREE_MODEL_SIMPLE/g;
4387         s/gtk_model_simple/gtk_tree_model_simple/g;
4388         s/gtkmodelsimple/gtktreemodelsimple/g;
4389
4390         s/gtk_tree_view_column_set_header_active/gtk_tree_view_column_set_header_clickable/g;
4391
4392         s/GtkTreeViewColumnType/GtkTreeViewColumnSizing/g;
4393         s/column_set_col_type/column_set_sizing/g;
4394
4395         s/GtkTreeSelectionType/GtkTreeSelectionMode/g;
4396         s/gtk_tree_selection_set_type/gtk_tree_selection_set_mode/g;
4397
4398         s/GtkCellRendererType/GtkCellRendererState/g;
4399         
4400         * gtk/gtkcellrenderertoggle.c: remove _ macro, include gtkintl.h
4401         (gtk_cell_renderer_toggle_class_init): change "state" property to
4402         "active", to match GtkToggleButton
4403         (gtk_cell_renderer_toggle_get_active): new function, bug
4404         40269
4405         (gtk_cell_renderer_toggle_set_active): new function
4406         (gtk_cell_renderer_toggle_set_property): route changes to toggle
4407         state through gtk_cell_renderer_set_active
4408
4409 Thu Jan  4 15:46:18 2001  Jonathan Blandford  <jrb@redhat.com>
4410
4411         * gtk/gtkmodelsimple.c: Changed a bunch of boxed types to pointers
4412         temporarily until they work again.  Brought up to date with
4413         changes in the model.
4414         * gtk/gtkmodelsimple.h: Brought up to date with changes in the
4415         model.
4416
4417 2001-01-04  Havoc Pennington  <hp@redhat.com>
4418
4419         * gtk/gtktextlayout.c (line_display_index_to_iter): if index is
4420         equal to the line length, then position iterator before paragraph 
4421         separators. Fixes crash reported by Mikael Hermansson when
4422         pressing left arrow from the start of a line.   
4423
4424         * gtk/gtktextiter.c (iter_set_from_byte_offset): Add g_error
4425         about byte indexes off the end
4426         (iter_set_from_char_offset): add g_error about char offsets
4427         off the end
4428
4429 2001-01-03  Havoc Pennington  <hp@redhat.com>
4430
4431         * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
4432
4433         * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use 
4434         of private functions; remove inclusion of private headers.
4435
4436         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this 
4437         function, so we don't need private functions in gtktextdisplay.c
4438
4439         * gtk/gtktextiterprivate.h: underscore-ification
4440
4441         * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
4442         to instead say "only useful to implement widgets"
4443
4444         * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
4445         GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
4446         GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
4447
4448         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
4449         This function was completely broken
4450
4451         * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
4452
4453         * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
4454
4455         * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
4456
4457         * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
4458
4459         * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
4460
4461         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
4462
4463         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
4464         gtk_paint_layout
4465
4466         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
4467         gtk_paint_layout
4468
4469         * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
4470         Progress on bug 40103. Add draw_layout to draw a PangoLayout.
4471         (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
4472         which were not implemented.     
4473
4474         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
4475         insert_pixbuf signal. Rename delete_text to delete_range since it
4476         also deletes pixbufs and child anchors. This almost closes bug
4477         40245 (still need to deal with child anchors)
4478
4479         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
4480         insert_pixbuf, change signal names as appropriate, change types of
4481         signals taking marks/tags to have the specific type, not just
4482         G_TYPE_OBJECT
4483         
4484         * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; 
4485         closes bug 40051
4486
4487         * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
4488         unnecessary remove_contents() call
4489         (gtk_option_menu_class_init): add a "changed" signal, closes
4490         bug 40039
4491         (gtk_option_menu_update_contents): emit "changed" if the 
4492         active menu item changes
4493
4494         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
4495         cast to GtkObject, reported by Jonas Borgstrom
4496         (gdk_pixbuf_loader_finalize): don't close the loader on finalize;
4497         we can't do stuff with side effects in finalize. Instead, spew a
4498         warning if the loader isn't closed.
4499
4500         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
4501         colormap in here, non-X ports probably need to sync to this change
4502
4503         * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove 
4504         assertion that colormap != NULL, you can set the colormap to NULL
4505         if you like.
4506         
4507         * Makefile.am: remove gtk-config-2.0
4508
4509         * configure.in: Use pkg-config to locate GLib. Remove
4510         separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
4511         and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
4512         Use pkg-config to locate Pango. Output correct Pango libs to
4513         gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
4514
4515         * Makefile.am (pkgconfig_DATA): install only target-specific pc
4516         files
4517         (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
4518         X11 pc files
4519
4520         * gtk+-2.0.pc.in (Requires): require the GDK for the current target
4521         unref from here
4522
4523 2001-01-03  Alexander Larsson  <alla@lysator.liu.se>
4524
4525         * configure.in:
4526         Change GTK_NO_CHECK_CASTS to G_DISABLE_CAST_CHECKS.
4527
4528 Tue Jan  2 16:23:05 2001  Owen Taylor  <otaylor@redhat.com>
4529
4530         * gtk/gtktextlayout.c
4531         (gtk_text_layout_move_iter_to_previous_line): Fix unitialized
4532         variable when moving back onto a single line.
4533
4534 2001-01-01  Havoc Pennington  <hp@redhat.com>
4535
4536         * gtk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
4537
4538         * gdk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
4539
4540         * configure.in (LIBTOOL_EXPORT_OPTIONS): define
4541         LIBTOOL_EXPORT_OPTIONS with options to control symbol export
4542
4543 2001-01-01  Havoc Pennington  <hp@redhat.com>
4544
4545         * gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
4546
4547         * gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for 
4548         GtkTextAttributes
4549
4550         * gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug 
4551         #40246
4552         (gtk_text_attributes_copy_values): rename from 
4553         gtk_text_attributes_copy
4554         (gtk_text_attributes_copy): a more standard GTK copy function, 
4555         which returns a new object
4556
4557 2001-01-01  Havoc Pennington  <hp@redhat.com>
4558
4559         * gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
4560         
4561         * gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
4562         don't fill in tree_view->priv->selection, kind of an unexpected
4563         side effect
4564
4565         * gtk/gtkcellrenderertext.c: Remove definition of _ and include
4566         gtkintl.h
4567         
4568         * gtk/gtkcellrenderer.c: Remove definition of _ and include
4569         gtkintl.h
4570         (gtk_cell_renderer_get_property): remove calls to g_value_init
4571
4572         * gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
4573         gtkintl.h
4574
4575         * gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
4576         and include gtkintl.h
4577         (gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
4578         property names
4579
4580         * gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
4581         GtkTreeSelection
4582         (_gtk_tree_selection_new_from_with_view): rename, return
4583         GtkTreeSelection
4584         (_gtk_tree_selection_set_tree_view): rename with uscore
4585         (gtk_tree_selection_get_selected): fill in the "model" out param
4586         first, so it gets filled in even if we return at the top of the 
4587         function
4588         (gtk_tree_selection_real_select_all): add a comment and an else{}
4589         to clarify this a bit
4590         (gtk_tree_selection_real_unselect_all): add the same else{}
4591
4592         * gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
4593         set_tree_view to have underscore prefixes, move them to the
4594         private header, fix return type of new_with_tree_view
4595         (struct _GtkTreeSelection): mark struct
4596         fields private  
4597
4598         * gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
4599         GtkTreeModelFlags, not a guint
4600         (gtk_tree_path_prev): return gboolean not gint
4601         (gtk_tree_path_up): return gboolean not gint
4602
4603         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
4604         return GtkTreeModelFlags, not a guint
4605
4606         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
4607         that child model is non-null before unrefing it
4608         (g_value_int_compare_func): make this a qsort compare func, not 
4609         a boolean predicate
4610
4611         * gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
4612         (add -umn to the end), and mark it unimplemented
4613         (gtk_tree_model_sort_resort): remove, this wasn't implemented, and 
4614         I don't see what it's for - doesn't the model always sort itself?
4615         (gtk_tree_model_sort_set_compare): this had the wrong signature
4616
4617         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
4618         Fix the docs to say that it destructively replaces existing
4619         attributes (previously said that it added attributes).
4620         (gtk_tree_view_column_set_visible): canonicalize bool before
4621         equality testing. Also, check for realization before
4622         hiding/showing the tree_column->window; if this window could exist
4623         before realization, then it's busted and needs fixing, we can't 
4624         create GDK resources pre-realization. Also, remove
4625         superfluous queue_resize(), since set_size() does that for us.
4626         (gtk_tree_view_column_set_col_type): check realization before 
4627         using tree_column->window
4628
4629         * gtk/gtktreedatalist.c: fix filename in copyright notice
4630
4631 2000-12-31  Havoc Pennington  <hp@pobox.com>
4632
4633         * gtk/gtktextview.c: Rearrange all the
4634         scroll-while-dragging-or-selecting code to be different, not
4635         necessarily better. ;-)
4636         (gtk_text_view_scroll_to_mark): Change this
4637         function to take within_margin as a fraction instead of a pixel
4638         value, and to take alignment arguments (indicating where to align 
4639         the mark inside the visible area)
4640         
4641         * gtk/testtextbuffer.c (fill_buffer): fix bad cast of GtkTextTag
4642         to GtkObject
4643
4644         * gtk/gtktextiter.c (gtk_text_iter_set_line_offset): change
4645         behavior so that offsets past the end of the line are not 
4646         allowed, and an offset equal to the line length moves the iterator
4647         to the next line
4648         (gtk_text_iter_set_line_index): make parallel change
4649         (gtk_text_iter_get_bytes_in_line): add this function
4650         
4651         * gtk/gtktextbtree.c (_gtk_text_line_byte_locate): change handling
4652         of byte indexes off the end of the line; byte index at the end of
4653         the line now returns FALSE and doesn't fill in the requested
4654         values, byte index past the end of the line is an error.  Also,
4655         don't allow -1 offset anymore, since its meaning is unclear.
4656
4657         This change exposes some bug in visual cursor motion, where we
4658         end up with a huge invalid byte index; needs fixing. Symptom of 
4659         bug is a crash when you hit up arrow.
4660         
4661         (_gtk_text_line_char_locate): match the change to byte_locate
4662
4663         * gtk/gtktextiter.c (find_by_log_attrs): Handle iteration backward
4664         from start of line properly. fixes bug reported by Mikael
4665         Hermansson where backspace would delete all text before the
4666         cursor.
4667
4668 2000-12-30  Tor Lillqvist  <tml@iki.fi>
4669
4670         * gdk/win32/gdkwindow-win32.c
4671         (gdk_window_impl_win32_get_visible_region): New function, as in
4672         the X11 backend.
4673         (gdk_window_new, gdk_window_set_title): Use g_locale_from_utf8()
4674         instead of duplicating the same code here.
4675
4676         * gdk/win32/gdkwin32.h (GDK_COLORMAP_PRIVATE_DATA): Use
4677         GDK_COLORMAP macro.
4678
4679         * gdk/win32/gdkevents-win32.c (gdk_event_funcs): Use NULL as
4680         destroy function.
4681         (gdk_event_translate): Use GDK_COLORMAP_PRIVATE_DATA to correctly
4682         access that.
4683
4684         * gtk/gtk.def: Update.
4685
4686         * gtk/makefile.mingw.in: Use glib-genmarshal from $(GLIB)/gobject.
4687
4688 2000-12-30  Havoc Pennington  <hp@pobox.com>
4689
4690         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set the system
4691         colormap on input only windows, to avoid special cases all over
4692         the code for these windows.
4693
4694 2000-12-26  Tor Lillqvist  <tml@iki.fi>
4695
4696         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): Call g_error if
4697         we are on a palettized display ("PseudoColor" in X11), as the code
4698         for that doesn't work anyway, and never has.
4699
4700 2000-12-22  Alexander Larsson  <alexl@redhat.com>
4701
4702         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
4703         Don't use isprint() for chars > 255.
4704
4705 2000-12-21  Havoc Pennington  <hp@redhat.com>
4706
4707         * tests/testtreeview.c: more work
4708
4709 2000-12-21  Alexander Larsson  <alexl@redhat.com>
4710
4711         * docs/README.linux-fb:
4712         Update the docs to the new pangoft2 way.
4713
4714 2000-12-21  Alexander Larsson  <alexl@redhat.com>
4715
4716         * configure.in:
4717         For linux-fb get the pangoft2 cflags and libs. This needs a recent
4718         pango version.
4719         Remove modules/linux-fb/Makefile.
4720
4721         * gdk/linux-fb/gdkdrawable-fb2.c:
4722         Render glyphs using freetype.
4723
4724         * gdk/linux-fb/gdkfb.h:
4725         Add new fb-specific functions needed for managing windows.
4726
4727         * gdk/linux-fb/gdkmain-fb.c:
4728         Remove gdk_font_init/fini() calls.
4729
4730         * gdk/linux-fb/gdkpango-fb.c:
4731         Remove old implementation. Use pangoft2 instead.
4732
4733         * gdk/linux-fb/gdkprivate-fb.h:
4734         Remove PangoFBFont and related stuff.
4735
4736         * gdk/linux-fb/gdkwindow-fb.c:
4737         Implement drawable->get_visible_region.
4738         Implement support for _gdk_window_set_child_handler () and
4739         _gdk_window_get_decorations().
4740
4741         * modules/Makefile.am:
4742         Remove linux-fb subdir.
4743
4744         * modules/linux-fb/*:
4745         Removed all.
4746         
4747 2000-12-20  Jonathan Blandford  <jrb@redhat.com>
4748
4749         * gtk/gtkcellrenderer*.c (::get_property): remove g_value_init
4750         calls, as they are no longer needed.
4751
4752         * gtk/gtktreemodelsort.c: Fix up the comparison code.
4753         
4754         * gtk/gtktreemodel.h: Start work on ::reordered signal.  Need to
4755         figure out how to emit a signal on an interface.
4756
4757 2000-12-20  Havoc Pennington  <hp@redhat.com>
4758
4759         * tests: new directory to contain tests, gtk/test* should move
4760         here sometime (with appropriate on-cvs-server hackery)
4761
4762         * tests/testtreeview.c, tests/Makefile.am: a test
4763         
4764         * configure.in (AC_OUTPUT): add tests/Makefile
4765
4766         * gtk/gtktexttag.c (gtk_text_tag_get_property): Add "invisible"
4767         and "invisible_set" which were missing
4768
4769         * gtk/gtkrbtree.h: some cheesy indentation fix
4770         
4771 2000-12-20  Alexander Larsson  <alexl@redhat.com>
4772
4773         * gtk/gtkinvisible.c (gtk_invisible_realize):
4774         Attach the style to the window so that the style it is not
4775         leaked when unrealizing the window.
4776
4777 2000-12-18  Havoc Pennington  <hp@redhat.com>
4778
4779         * gtk/gtktextview.c (gtk_text_view_delete_from_cursor): do
4780         begin/end user action where appropriate
4781         (gtk_text_view_commit_handler): add begin/end user action
4782
4783         * gtk/gtktextbuffer.c: add begin/end user action signals, and
4784         bracket interactive operations with begin/end user action pair.
4785         
4786         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): remove
4787         "interactive" arg from insert_text and delete_text signals.
4788         Add begin_user_action, end_user_action signals
4789         (gtk_text_buffer_begin_user_action): 
4790         (gtk_text_buffer_end_user_action): New functions to delimit 
4791         a user-visible action
4792
4793         * gtk/gtkmarshal.list: update to reflect changes to gtktextbuffer
4794         signals.
4795         
4796 2000-12-18  Havoc Pennington  <hp@redhat.com>
4797
4798         * gdk/gdkevents.c (gdk_event_get_state): wow, that implementation
4799         was pretty non-working.
4800
4801         * gtk/testtext.c (fill_file_buffer): make this a bit more robust
4802         by passing the length to g_utf8_validate().
4803
4804 2000-12-16  Havoc Pennington  <hp@pobox.com>
4805
4806         * gtk/gdk-pixbuf-loader.h, gtk/gdk-pixbuf-loader.c: 
4807         Port to GObject, can go back in gdk-pixbuf after setting up 
4808         a gdk-pixbuf-marshal.h header over there.
4809
4810         * gtk/gtktreeview.c: s/SEPERATOR/SEPARATOR/g;
4811         (gtk_tree_view_class_init): specify GTK_TYPE_ADJUSTMENT for signal
4812         args
4813         (gtk_tree_view_init): don't unset GTK_NO_WINDOW, it shouldn't be
4814         set
4815         (gtk_tree_view_realize_buttons): don't gtk_widget_show() buttons
4816         here, do it when we create the buttons later
4817         (gtk_tree_view_realize_buttons): add some g_return_if_fail 
4818         (gtk_tree_view_map): paranoia checks that column->button is shown 
4819         and unmapped
4820         (gtk_tree_view_size_request): only request visible children.
4821         Move header size calculation in here, for cleanliness, and 
4822         to maintain invariants for child widgets if we eventually 
4823         let users set different children inside the buttons
4824         (gtk_tree_view_map_buttons): factor out code to map buttons,
4825         since it was being called several times
4826         (gtk_tree_view_size_allocate_buttons): move_resize the drag
4827         windows instead of just moving them; their height may change 
4828         if we allow random widgets in there, or the theme changes.
4829         (gtk_tree_view_size_allocate): move button size allocation 
4830         above emitting the scroll signals, to ensure a sane state when we
4831         hit user code
4832         (gtk_tree_view_button_release): remove queue_resize after
4833         tree_view_set_size(), set_size() will handle any resize queuing
4834         that's needed
4835         (gtk_tree_view_focus_in): just queue a draw, don't fool with
4836         draw_focus goo
4837         (gtk_tree_view_focus): use gtk_get_current_event() and
4838         gdk_event_get_state()
4839         (gtk_tree_view_deleted): don't queue_resize() after calling set_size()
4840         (gtk_tree_view_build_tree): fix a "if (foo); {}" bug - i.e. remove
4841         semicolon
4842         (gtk_tree_view_create_button): show the button here
4843         (gtk_tree_view_button_clicked): actually emit the clicked signal
4844         on the column
4845         (_gtk_tree_view_set_size): return right away if the size is
4846         unchanged, as a cheesy optimization
4847         (gtk_tree_view_setup_model): rename set_model_realized to 
4848         setup_model to match the flag that indicates whether we've 
4849         called it
4850         (gtk_tree_view_get_hadjustment): create adjustment if it doesn't
4851         exist, because set_scroll_adjustment does that and it shouldn't
4852         matter what order you call these in
4853         (gtk_tree_view_get_vadjustment): ditto
4854         (gtk_tree_view_set_headers_visible): canonicalize the bool, 
4855         for paranoia
4856         (gtk_tree_view_set_headers_visible): call
4857         gtk_tree_view_map_buttons() instead of using cut-and-paste code
4858         (gtk_tree_view_append_column): clarify whether the return value
4859         is the count of columns before or after, and do the increment 
4860         separately from the return statement so you can tell from the code.
4861         (gtk_tree_view_remove_column): ditto
4862         (gtk_tree_view_insert_column): ditto
4863         (gtk_tree_view_get_column): remove g_return_if_fail for columns
4864         outside the existing range, the docs say that outside-range
4865         columns are allowed, so we handle them as documented. (Presumably
4866         this allows a nice loop with column != NULL as test.)
4867         (gtk_tree_view_move_to): document what 0.0, 0.5, 1.0 alignments 
4868         mean (left/right/center etc.).
4869         (gtk_tree_view_collapse_all): only queue a draw if we're mapped
4870         (gtk_tree_view_expand_row): add docs
4871         (gtk_tree_view_collapse_row): add docs
4872
4873         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clicked): new
4874         function to emit the clicked signal on a column
4875         
4876         * gdk/gdkevents.c (gdk_event_get_state): new function, to get the
4877         state of an event
4878         (gdk_event_get_time): don't treat GDK_SCROLL 
4879         as a button event, remove default case from switch so gcc 
4880         will whine if we don't explicitly handle all event types
4881
4882         * gtk/gtktreeselection.h: added some FIXME 
4883         
4884         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): rename
4885         "columns" to "n_columns" and "column" to "columns" for clarity
4886
4887 2000-12-16  Havoc Pennington  <hp@pobox.com>
4888         
4889         * gtk/gtktextiter.c: General cleanup of the log attr iteration
4890         stuff. This should make e.g. the delete key work again in the
4891         text widget...
4892         (gtk_text_iter_forward_cursor_positions): handle negative count
4893         (gtk_text_iter_backward_cursor_positions): handle negative count
4894         (gtk_text_iter_forward_word_ends): handle negative count
4895         (gtk_text_iter_backward_word_starts): handle negative count
4896
4897         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h,
4898         gtk/gtktexttag.c, gtk/gtktexttagtable.h, gtk/gtktexttagtable.c, 
4899         gtk/gtktextbuffer.h, gtk/gtktextbuffer.c: Convert everything to 
4900         GObject. No doubt will cause breakage.
4901
4902         * demos/gtk-demo/textview.c: remove hacks around
4903         non-GObject-ification of the text objects
4904
4905         * demos/gtk-demo/main.c (main): use g_object_set() to manipulate 
4906         the text tag
4907         
4908 2000-12-14  Havoc Pennington  <hp@pobox.com>
4909
4910         * configure.in: only AC_DEFINE(HAVE_XFT) if we actually determined
4911         that we have Xrender
4912
4913 Thu Dec 14 20:22:31 2000  Owen Taylor  <otaylor@redhat.com>
4914
4915         * gdk/{gdkdrawable.[ch],gdkpixmap.c,gdkwindow.c,x11/gdkwindow.c}:
4916         Add two virtualized functions gdk_drawable_get_clip_region - to
4917         get the clip region when drawing.
4918         
4919         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Rewrite to simple
4920         use invalidate_region.
4921
4922         * gdk/gdkwindow.c (gdk_window_invalidate_region): Clip to visible
4923         region.
4924
4925         * acconfig.h configure.in: Check for Xft. For now, assume
4926         that if Xft is found, Pango was compiled with Xft support
4927         as well.
4928
4929         * gdk/gdkcolor.h gdk/x11/gdkcolor-x11.c: Add 
4930         gdk_colormap_query_color().
4931         
4932         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_glyphs): Draw
4933         with Xft if appropriate.
4934
4935         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Create
4936         a pangoxft context if we have XFT and the environment
4937         variable GD_USE_XFT is set.
4938         
4939         * gdk/x11/gdkx.h (struct _GdkGCX11): Cache the fg_pixel
4940         and also possibly an XftDraw structure.
4941
4942         * gtk/gtkfontsel.c: Handle the case where the font from the
4943         style doesn't match any of the fonts a bit better.
4944         
4945         * gtk/testgtk.c: Add tabs between directional segments for
4946         hebrew/arabic test. (Not really necessary, just a little
4947         prettier.)
4948
4949 2000-12-14  Havoc Pennington  <hp@redhat.com>
4950
4951         * gtk/testtext.c (fill_file_buffer): fix unicode validation when
4952         reading a file
4953
4954 2000-12-14  Havoc Pennington  <hp@redhat.com>
4955
4956         * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove
4957         unused call to get_last_line()
4958
4959         * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER
4960         here until boxed is working (and maybe after that - we should
4961         really not gratuitously break old code)
4962
4963         * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out
4964         specific types for font_desc and tabs args, move them to
4965         GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get 
4966         fixed. Move GdkColor args to GTK_TYPE_POINTER also.
4967
4968         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily
4969         use GTK_TYPE_POINTER for signal signatures as a hack-around
4970
4971         * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and
4972         PangoTabArray
4973
4974         * gtk/gtktextlayout.c (line_display_iter_to_index): 
4975         make static
4976         (line_display_index_to_iter): make static
4977
4978         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
4979         to marshal a string not a boxed
4980
4981         * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text
4982
4983         * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char
4984         since the UTF-8 isn't validated yet
4985
4986         * gtk/gtktextsegment.c (char_segment_check_func): don't require
4987         lines to end in '\n'
4988         
4989         * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use
4990         forward_to_delimiters, and grapheme boundaries
4991         (gtk_text_view_delete_from_cursor): properly handle non-newline
4992         delimiters, and grapheme boundaries
4993
4994         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename
4995         to gtk_text_iter_forward_to_delimiters, and make it work properly
4996         if empty lines end with a character other than '\n'
4997
4998         * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor
4999         position
5000
5001 2000-12-15  Tor Lillqvist  <tml@iki.fi>
5002
5003         * gdk/makefile.{mingw.in,msc} (gdk_OBJECTS): Add gdkkeys.
5004
5005         * gtk/gtk.def
5006         * gdk/gdk.def: Update.
5007
5008         * gdk/win32/gdkmain-win32.c
5009         * gdk/win32/gdkkeys-win32.c: New file. Move some functions from
5010         gdkmain-win32.c here.
5011
5012         * gdk/win32/makefile.mingw.in (all): No need to make
5013         gdk-win32res.o here, the makefile one step up will call us to make
5014         it.
5015
5016         * gdk/win32/makefile.{mingw.in,msc} (gdk_win32_OBJECTS): Add
5017         gdkkeys-win32.
5018
5019         * gdk/win32/gdkcolor-win32.c: Silence gcc -Wall.
5020
5021         * gdk/win32/gdkevents-win32.c (gdk_events_init): Remove leftover
5022         call to g_source_add().
5023
5024         * gdk/win32/gdkgc-win32.c (BitmapToRegion): Plug memory
5025         leak. Thanks to Andreas Kemnade.
5026
5027 2000-12-13  Havoc Pennington  <hp@pobox.com>
5028
5029         * gtk/gtktextbtree.h: Remove double _ in front of some functions
5030
5031         * gtk/gtktext*.[hc]: update accordingly
5032         
5033 2000-12-13  Havoc Pennington  <hp@pobox.com>
5034
5035         * gtk/gtktextbtree.h: Put _ in front of every function in this 
5036         header file
5037
5038         * gtk/gtktext*.[hc]: update to reflect renamed btree functions
5039
5040 2000-12-13  Alex Larsson  <alexl@redhat.com>
5041
5042         * gdk/linux-fb/gdkmouse-fb.c (mouse_devs):
5043         Add support for ps2 intellimouse.
5044
5045         * gdkkeyboard-fb.c:
5046         Move shift-F1 repaint handling to xlate handler only.
5047         
5048         * docs/README.linux-fb:
5049         Add imps2 to docs.
5050         Document the new refresh keys.
5051         
5052 Tue Dec 12 23:46:44 2000  Tim Janik  <timj@gtk.org>
5053
5054         * gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
5055
5056         * gtk/gtkbox.c: change property types from (u)long to (u)int for
5057         ::position and ::padding.
5058
5059         * gtk/gtkcontainer.c: make ::border_width an INT property.
5060
5061         * gtk/gtkpacker.c: make ::position an INT property.
5062
5063         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
5064         guard against NULL h/v scrollbars, since this is used at construction
5065         time.
5066
5067         * gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
5068         internal gtk_clist_constructor().
5069
5070         * gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
5071         gtk_ctree_constructor().
5072
5073         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
5074         ::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
5075
5076         * docs/reference/Makefile.am: fun stuff, disabled docs generation
5077         again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
5078
5079         * gtk/gtkwidget.[hc]:
5080         removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
5081         and gtk_widget_get().
5082         (gtk_widget_new): use g_object_new_valist().
5083         (gtk_widget_set): use g_object_set_valist().
5084
5085         * gtk/gtkobject.[hc]:
5086         removed gtk_object_arg_get_info(), gtk_object_getv(),
5087         gtk_object_query_args(), gtk_object_newv(),
5088         gtk_object_class_add_signals(),
5089         gtk_object_class_user_signal_new(),
5090         gtk_object_class_user_signal_newv(),
5091         gtk_object_arg_set(), gtk_object_arg_get(),
5092         gtk_object_args_collect(),
5093         gtk_object_default_construct(),
5094         gtk_object_constructed(),
5095         GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
5096         removed nsignals, signals and n_args members from GtkObjectClass.
5097         (gtk_object_new): use g_object_new_valist().
5098         (gtk_object_set): use g_object_set_valist().
5099         (gtk_object_get): use g_object_get_valist().
5100         
5101         * gtk/gtkcompat.h: define gtk_object_default_construct().
5102         
5103         * gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
5104         g_object_new().
5105
5106         * gtk/*.c: removed gtk_object_class_add_signals() from class_init()
5107         fucntions, cleaned up method assignments (make sure your structures
5108         are setup properly before calling out). removed all GTK_CONSTRUCTED
5109         hacks ;)
5110
5111 Tue Dec 12 11:52:16 2000  Owen Taylor  <otaylor@redhat.com>
5112
5113         * gtk/gtkclist.c (gtk_clist_optimal_column_width): Fix 
5114         off-by-one error in checks. (Dave Lambert)
5115
5116 2000-12-12  Alexander Larsson  <alexl@redhat.com>
5117
5118         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_close, raw_close):
5119         Don't free gdk_fb_keyboard twice.
5120
5121 Tue Dec 12 08:24:42 2000  Tim Janik  <timj@gtk.org>
5122
5123         * gtk/testgtk.c:
5124         (create_tooltips): 
5125         (create_statusbar): get rid of object_signal:: GtkObject argument uses,
5126         use GObject swapped_signal:: properties instead.
5127
5128         * gtk/gtkcellrenderertoggle.c: 
5129         * gtk/gtkcellrenderertextpixbuf.c: 
5130         * gtk/gtkcellrenderertext.c: 
5131         * gtk/gtkcellrendererpixbuf.c: 
5132         * gtk/gtkcellrenderer.c:
5133         * gtk/gtktreeviewcolumn.c: s/[sg]et_param/[sg]et_property/, fixed
5134         missing warnings for invalid property ids, install properties
5135         with g_object_class_install_property() now.
5136         
5137         * gtk/gtksignal.c:
5138         (gtk_signal_emit): let g_signal_emit_valist() collect the values for us.
5139         
5140 Wed Oct 25 14:17:43 2000  Owen Taylor  <otaylor@redhat.com>
5141         
5142         * gtk/gtkwidget.[ch] (gtk_widget_is_focus): Add a function
5143         to determine if a window is the focus widget within
5144         its toplevel.
5145
5146         * gtk/gtkcontainer.[ch]: Fix the return type of ::focus
5147         to be boolean.
5148
5149         * gtk/gtkcontainer.c (gtk_container_real_focus): Move handling 
5150         of the case where the container CAN_FOCUS to here instead
5151         of having it in each individual move-the-focus place.
5152
5153         * gtk/gtkcontainer.c: Rewrite handling of left-right and up-down
5154         focusing to be geometric in a much more obvious sense. Arrowing
5155         around is still non-intuitive because it isn't perfect and
5156         because entries, etc, grab the arrow keys, but it at least
5157         usually will do what you expect now.
5158         
5159         * gtk/gtknotebook.[ch]: Many cleanups. Moved docs inline in this
5160         file.
5161
5162         * gtk/gtknotebook.c: Change tabs to be a single item in
5163         the focus chain. Make movement of focus on tabs with arrow
5164         keys wrap around.
5165         
5166         * gtk/gtknotebook.c (gtk_notebook_find_child): Add
5167         CHECK_FIND_CHILD macro to give informative error messages
5168         instead of silent returns.
5169
5170         * gtk/gtknotebook.c (gtk_notebook_init): Set the RECEIVES_DEFAULT 
5171         flag since we handle GdkReturn on the tabs.
5172
5173         * gtk/gtknotebook.c (gtk_notebook_expose_tabs): Invalidate
5174         windows rather than sending expose events directly.
5175
5176         * gtk/gtknotebook.[ch] docs/Changes-2.0.txt: Move structure 
5177         definition for GtkNotebookPage into .c file, since it is private.
5178
5179         * gtk/testgtk.c (create_notebook): Add option for 
5180         testing borderless notebook.
5181
5182         * gtk/testgtk.c (page_switch): Removed egregious poking
5183         around in GTK+ internals.
5184
5185         * docs/widget-system.txt: Remove references to GTK_REDRAW_PENDING.
5186
5187         * gtk/gtkclist.[ch]: Remove key press handler, handle focusing
5188         properly through gtk_clist_focus. Make the title headers a
5189         single item in the tab-focus chain, and make left-right wrap
5190         around.
5191
5192         * gtk/gtkwindow.c (gtk_window_focus): Add a custom
5193         focus method so that wrapping around works properly.
5194
5195         * gtk/gtktreeview.c: Remove calls to gtk_container_set_focus_child() - 
5196         that is handled for the widget now. 
5197
5198 Mon Dec 11 11:41:12 2000  Owen Taylor  <otaylor@redhat.com>
5199
5200         * gtk/gtkinvisible.c (gtk_invisible_init): Flag invisible
5201         widgets as TOPLEVEL.
5202
5203         * gtk/gtkwidget.c (gtk_widget_queue_resize): Don't assume
5204         TOPLEVEL widgets are containers.
5205
5206         * gtk/gtkinvisible.h: Remove useless include.
5207
5208 2000-12-11  Havoc Pennington  <hp@redhat.com>
5209
5210         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
5211         Handle chopping off \r\n and 0x2029 in addition to \n before
5212         passing to PangoLayout
5213
5214         * gtk/gtkimcontextsimple.c
5215         (gtk_im_context_simple_get_preedit_string): 
5216         return an empty string if no match is pending
5217
5218         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): add
5219         assertion that the returned preedit string was sane
5220
5221         * gtk/gtktext*.[hc], gtk/testtext.c, gtk/testtextbuffer.c:
5222         s/gtk_text_iter_next_char/gtk_text_iter_forward_char/g;
5223         s/gtk_text_iter_prev_char/gtk_text_iter_backward_char/g;
5224
5225 Mon Dec 11 10:02:26 2000  Owen Taylor  <otaylor@redhat.com>
5226
5227         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_finalize): 
5228         Fix up finalizer to chain to its parent.
5229
5230 2000-12-11  Alexander Larsson  <alexl@redhat.com>
5231
5232         * docs/README.linux-fb (GDK_KEYBOARD_TYPE):
5233         Clearified the difference between the keyboard types. Wrote a note
5234         about the magic sysrq key to get out of raw mode.
5235
5236 2000-12-09  James Henstridge  <james@daa.com.au>
5237
5238         * gdk/linux-fb/gdkmouse-fb.c (GdkFBMouseDevice): add prot struct
5239         member to hold masks for detecting the start of a protocol packet.
5240         (mouse_devs): add packet start masks for ps2 and ms device types.
5241         Left the mask for fidmour blank, as I have no idea what it should
5242         be.
5243         (handle_mouse_io): skip bytes until we get to the start of a
5244         packet.  My Logitech mouse seems to be passing an extra NULL pad
5245         byte, and GPM does a similar thing here.
5246         (gdk_fb_mouse_ms_open): changed error message to not say psaux, as
5247         this is the ms mouse driver.
5248         (gdk_fb_mouse_ms_packet): fix up button handling, which was
5249         completely broken except for button1.  It was checking the wrong
5250         bit in the packet for the status of the right mouse button, and
5251         wrongly assuming right == button2 rather than 3.  I fixed that and
5252         also added support for middle button (button2).
5253
5254 2000-12-08  Havoc Pennington  <hp@redhat.com>
5255
5256         * gtk/gtktextbtree.c (gtk_text_btree_insert): fix breakage here
5257         that cause a segfault on text insertion
5258
5259         * gtk/gtktextchild.c (gtk_text_child_anchor_queue_resize): fix 
5260         warning
5261
5262         * gtk/gtktextiter.c (test_log_attrs): use
5263         _gtk_text_buffer_get_line_log_attrs to speed things up a bit
5264
5265         * gtk/gtktextbuffer.c (_gtk_text_buffer_get_line_log_attrs): 
5266         Get log attrs for a line, using a cache stored on the buffer
5267         
5268         * gtk/gtkcolorsel.h (GTK_COLOR_SELECTION_GET_CLASS): fix typo,
5269         reported by Jeff Franks
5270
5271 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
5272
5273         * gdk/linux-fb/gdkmouse-fb.c (gdk_fb_mouse_ms_open):
5274         /dev/ttyS0 -> /dev/mouse
5275
5276 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
5277
5278         * gdk/linux-fb/gdkfont-fb.c (gdk_fontset_load):
5279         Added dummy gdk_fontset_load.
5280
5281 2000-12-08  Alexander Larsson  <alexl@redhat.com>
5282
5283         * docs/README.linux-fb:
5284         * docs/Makefile.am:
5285         Initial GtkFB docs.
5286         
5287         * gdk/linux-fb/Makefile.am:
5288         Define GDK_DATA_PREFIX.
5289
5290         * gdk/linux-fb/gdkmain-fb.c:
5291         Fix typo.
5292         Change default display to /dev/fb0.
5293
5294         * gdk/linux-fb/gdkpango-fb.c:
5295         Add $(prefix)/share/fonts/ to font path.
5296         
5297 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
5298
5299         * gdk/linux-fb/gdkkeyboard-fb.c:
5300         New file containing the abstracted keyboard driver. Most code
5301         taken from gdkinput-ps2.c
5302
5303         * gdk/linux-fb/gdkinput-ps2.c:
5304         Removed file.
5305         
5306         * gdk/linux-fb/Makefile.am:
5307         Added gdkkeyboard-fb.c, removed gdkinput-ps2.c.
5308
5309         * gdk/linux-fb/gdkcolor-fb.c:
5310         display->fb was renamed to display->fb_fd.
5311
5312         * gdk/linux-fb/gdkcursor-fb.c:
5313         gdk_mouse_get_info -> gdk_fb_mouse_get_info
5314
5315         * gdk/linux-fb/gdkinput.c:
5316         Moved gdk_input_init here from gdkinput-ps2.c
5317
5318         * gdk/linux-fb/gdkmain-fb.c:
5319         display->fb was renamed to display->fb_fd.
5320         Now the tty and the console is opened here instead
5321         of in the keyboard driver. Also check GDK_VT to see what
5322         tty to open.
5323         Move gdk_beep () here from gdkinput-ps2.c
5324         gdk_mouse_get_info -> gdk_fb_mouse_get_info
5325
5326         * gdk/linux-fb/gdkmouse-fb.c:
5327         Add header.
5328         gdk_mouse_get_info -> gdk_fb_mouse_get_info
5329         Return correct keyboard modifiers.
5330         GDK_MOUSETYPE -> GDK_MOUSE_TYPE for consistancy
5331
5332         * gdk/linux-fb/gdkprivate-fb.h:
5333         Add tty and vt info to display.
5334         Add orignal modeinfo storage to display
5335         Update global functions
5336
5337         * gdk/linux-fb/gdkwindow-fb.c:
5338         Added gdk_fb_window_find_focus().
5339         gdk_mouse_get_info -> gdk_fb_mouse_get_info
5340
5341 2000-12-07  Havoc Pennington  <hp@pobox.com>
5342
5343         * gdk/x11/gdkkeys-x11.c (gdk_keymap_lookup_key): fix name of 
5344         function, noticed by Alex
5345
5346 2000-12-06  Elliot Lee  <sopwith@redhat.com>
5347
5348         * configure.in: Detect freetype properly
5349
5350         * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of
5351         above.
5352
5353 2000-12-06  Alexander Larsson  <alexl@redhat.com>
5354
5355         * gdk/linux-fb/Makefile.am:
5356         Add gdkmouse-fb.c
5357         
5358         * gdk/linux-fb/gdkmouse-fb.c:
5359         New file. Abstracted the mouse drivers a bit.
5360
5361         * gdk/linux-fb/gdkcursor-fb.c:
5362         The cursor hide/show functions was moved here from gdkinput-ps2.c.
5363
5364         * gdk/linux-fb/gdkinput-ps2.c:
5365         Removed old mouse handling code. Moved cursor handling code
5366         to gdkcursor-fb.c, moved gdk_fb_window_send_crossing_events() to
5367         gdkwindow-fb.c. gdk_input_get_mouseinfo was renamed to
5368         gdk_mouse_get_info.
5369
5370         * gdk/linux-fb/gdkmain-fb.c:
5371         Pass NULL pointers for x,y in gdk_mouse_get_info call.
5372
5373         * gdk/linux-fb/gdkprivate-fb.h:
5374         Removed public gdk_fb_find_common_ancestor, added and renamed
5375         functions for the new mouse handling code.
5376
5377         * gdk/linux-fb/gdkwindow-fb.c:
5378         Moved gdk_fb_window_send_crossing_events here. added global
5379         variable gdk_fb_window_containing_pointer. made
5380         gdk_fb_find_common_ancestor static. gdk_input_get_mouseinfo was
5381         renamed to gdk_mouse_get_info.
5382
5383 2000-12-06  Alexander Larsson  <alexl@redhat.com>
5384
5385         * gdk/linux-fb/gdkevents-fb.c:
5386         Update to match latest gmain/gsource changes.
5387
5388         * gdk/linux-fb/gdkinput-ps2.c:
5389         Bogus gdk_keymap_get_entries_for_keycode implementation so that
5390         it links. Will be implemented later.
5391
5392 2000-12-03  Havoc Pennington  <hp@pobox.com>
5393
5394         * gdk/Makefile.am: add gdkkeys.[hc]
5395
5396         * gdk/gdkkeys.h, gdk/gdkkeys.c: Move all the keyval stuff to these
5397         files from gdk.h, gdk.c; add GdkKeymap type and operations on it.
5398
5399         * acconfig.h, configure.in: add checks and command line options
5400         for XKB
5401
5402         * gdk/x11/gdkkeys-x11.c: Implement the above functions
5403         
5404         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Put the keycode
5405         and group in the key event
5406
5407         * gdk/gdkevents.h (struct _GdkEventKey): Add a hardware_keycode
5408         field with the low-level hardware key code, and a group
5409         field with the keyboard group
5410
5411         * gdk/x11/gdkprivate-x11.h: include config.h for HAVE_XKB,
5412         and declare a couple globals used for keymap handling
5413         
5414         * gtk/gtkimcontextsimple.c: Implement ISO 14755 input method,
5415         hold down Shift-Control and type a hex number to get a Unicode 
5416         character corresponding to the hex number
5417         (gtk_im_context_simple_get_preedit_string): Fix cursor position
5418         (return bytes not chars)
5419
5420 2000-12-05  Elliot Lee  <sopwith@redhat.com>
5421
5422         * gdk/gdkcolor.h: Make GdkColor specify element sizes
5423         to avoid waste on 64-bit platforms.
5424
5425 Tue Dec  5 15:49:31 2000  Owen Taylor  <otaylor@redhat.com>
5426
5427         * INSTALL: Fix link to PNG home, remove reference
5428         to fribidi.
5429
5430         * gdk/x11/gdkevents-x11.c: Fix up for new GMain API.
5431         
5432         * gdk/win32/gdkevents-win32.c: Fix up for new GMain API. (Not
5433         tested.)
5434
5435         * gtk/gtkcheckmenuitem.c: Permanently turn on
5436         always_show_toggle.
5437
5438         * gtk/gtkclist.c (gtk_clist_get_pixtext): Allow mask to 
5439         be NULL. (Vladimir Klebanov, #26545)
5440
5441         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text): Fix 
5442         some signed/unsigned comparison problems. (#6510,
5443         David Kaelbling)
5444
5445         * gtk/gtkwidget.[ch] (gtk_widget_is_ancestor): Change
5446         return type to boolean (Oskar Liljeblad, #18648)
5447
5448 2000-12-05  Alexander Larsson  <alexl@redhat.com>
5449
5450         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_display_new):
5451         Remove bogus colormap setting.
5452
5453 2000-12-05  Alexander Larsson  <alexl@redhat.com>
5454
5455         * gdk/linux-fb/gdkcolor-fb.c:
5456         More complete colormap handling. Now GdkRGB work in 8 bpp modes.
5457
5458         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_image):
5459         Must set colormap.
5460         
5461 Tue Dec  5 13:17:53 GMT 2000  Tony Gale <gale@gtk.org>
5462
5463         * docs/tutorial/gtk-tut.sgml: DND updates
5464
5465 2000-12-05  Alexander Larsson  <alla@lysator.liu.se>
5466
5467         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
5468         Remove old debug g_warning().
5469         (gdk_fb_draw_drawable): The src argument can be either a wrapper
5470         or an implementation, just pass the implementation to draw_drawable_2.
5471         
5472         * gdk/linux-fb/gdkprivate-fb.h:
5473         Added GDK_IS_DRAWABLE_IMPL_FBDATA()
5474
5475         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
5476         clear and invalidate area when window is destroyed.
5477         (send_map_events): Remove old commented out code.
5478
5479 2000-12-05  Alexander Larsson  <alexl@redhat.com>
5480
5481         * gdk/linux-fb/gdkpango-fb.c:
5482         Use italic instead of oblique in font aliases.
5483         
5484         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic,
5485         _gdk_fb_gc_calc_state): Support GDK_XOR, add g_warning for
5486         other unsupported functions.
5487
5488 2000-12-04  Havoc Pennington  <hp@redhat.com>
5489
5490         * gtk/gtkpaned.c (gtk_paned_expose): fix this to be sane
5491
5492         * gtk/gtkvpaned.c (gtk_vpaned_expose): Add an expose handler
5493
5494         * gtk/gtkhpaned.c (gtk_hpaned_expose): Add an expose handler
5495
5496         * gtk/gtknotebook.c (gtk_notebook_draw_tab): put in a temporary 
5497         hack to avoid infinite loops (synthetic expose event) - 
5498         Owen has more appropriate fixes in a branch he'll check in later.
5499
5500         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle paragraph
5501         separator, CR, and CRLF as line ends
5502
5503         * gtk/gtktextbtree.c (gtk_text_btree_insert): on insertion, break
5504         into lines using pango_find_paragraph_boundary(); other bits of
5505         the widget are still going to be broken if the boundary isn't '\n'
5506         though
5507
5508 2000-12-04  Alexander Larsson  <alexl@redhat.com>
5509
5510         * gdk/linux-fb/gdkfont-fb.c (gdk_text_width): Divide size by 2, not
5511         multiply.
5512
5513         * gdk/linux-fb/gdkpango-fb.c:
5514         Copied some 26.6 scaling macros from pango to clean up the rounding.
5515         (pango_fb_font_get_glyph_info): Correct sign on x value.
5516
5517         * gdk/linux-fb/gdkprivate-fb.h:
5518         Removed unreferenced external functions.
5519
5520         * modules/linux-fb/Makefile.am: Use ` instead of '.
5521
5522         * modules/linux-fb/basic.c:
5523         Remove dead code. In particular the dummy lang engine which broke all
5524         pango layouts in GtkFB. Don't include tables-big.i anymore.
5525
5526         * modules/linux-fb/tables-big.i:
5527         Upgrade to latest version from pango. Left for reference, basic_ranges
5528         moved to basic.c.
5529         
5530 2000-12-04  Havoc Pennington  <hp@redhat.com>
5531
5532         Fix bugs Alex found:
5533         
5534         * gtk/gtktooltips.c (gtk_tooltips_force_window): nuke connection
5535         to "draw"
5536
5537         * gtk/gtkdnd.c (gtk_drag_highlight): nuke connection to "draw"
5538
5539         * gtk/gtkcolorsel.c (palette_new): nuke connection to "draw"
5540
5541         * gtk/gtklistitem.c (gtk_list_item_expose): Put the old _draw() 
5542         implementation in here, apparently the expose() implementation was
5543         dead code.
5544
5545 2000-12-04  Alexander Larsson  <alexl@redhat.com>
5546
5547         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
5548         Return positive descent.
5549
5550 2000-12-02  Havoc Pennington  <hp@pobox.com>
5551
5552         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove "draw" virtual
5553         method and signal
5554         
5555         * gtk/gtkwidget.c (gtk_widget_draw): Now just queues a draw then
5556         calls gdk_window_process_updates() to push the exposes through
5557         (gtk_widget_class_init): No more draw signal, no
5558         gtk_widget_real_draw()  
5559         
5560         * gtk/gtkbin.c (gtk_bin_draw): remove
5561
5562         * gtk/gtkbox.c (gtk_box_draw): remove
5563
5564         * gtk/gtkbutton.c (gtk_button_draw): remove
5565
5566         * gtk/gtkcalendar.c (gtk_calendar_draw): remove
5567
5568         * gtk/gtkcheckbutton.c (gtk_check_button_draw): remove
5569
5570         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_draw): remove
5571
5572         * gtk/gtkclist.c (gtk_clist_draw): remove
5573
5574         * gtk/gtkentry.c (gtk_entry_draw): remove
5575
5576         * gtk/gtkeventbox.c (gtk_event_box_draw): remove
5577
5578         * gtk/gtkfixed.c (gtk_fixed_draw): remove
5579
5580         * gtk/gtkframe.c (gtk_frame_draw): remove
5581
5582         * gtk/gtkhandlebox.c (gtk_handle_box_draw): remove
5583
5584         * gtk/gtkhpaned.c (gtk_hpaned_draw): remove
5585
5586         * gtk/gtklayout.c (gtk_layout_draw): remove
5587
5588         * gtk/gtklist.c (gtk_list_draw): remove
5589
5590         * gtk/gtklistitem.c (gtk_list_item_draw): remove
5591
5592         * gtk/gtkmenu.c (gtk_menu_draw): remove
5593
5594         * gtk/gtkmenubar.c (gtk_menu_bar_draw): remove
5595
5596         * gtk/gtkmenuitem.c (gtk_menu_item_draw): remove
5597
5598         * gtk/gtknotebook.c (gtk_notebook_draw): remove
5599
5600         * gtk/gtkoptionmenu.c (gtk_option_menu_draw): remove
5601
5602         * gtk/gtkpacker.c (gtk_packer_draw): remove
5603
5604         * gtk/gtkrange.c (gtk_range_draw): remove
5605
5606         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_draw): remove
5607
5608         * gtk/gtkspinbutton.c (gtk_spin_button_draw): remove
5609
5610         * gtk/gtktable.c (gtk_table_draw): remove
5611
5612         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_draw): remove
5613
5614         * gtk/gtktext.c (gtk_text_draw): remove
5615
5616         * gtk/gtktextview.c (gtk_text_view_draw): remove
5617
5618         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): remove
5619
5620         * gtk/gtktoolbar.c (gtk_toolbar_draw): remove
5621
5622         * gtk/gtktree.c (gtk_tree_draw): remove
5623
5624         * gtk/gtktreeitem.c (gtk_tree_item_draw): remove
5625
5626         * gtk/gtktreeview.c (gtk_tree_view_draw): remove
5627
5628         * gtk/gtkviewport.c (gtk_viewport_draw): remove
5629
5630         * gtk/gtkvpaned.c (gtk_vpaned_draw): remove
5631
5632         * gtk/gtkvscale.c (gtk_vscale_draw): remove
5633
5634         * gtk/gtkwindow.c (gtk_window_draw): remove
5635
5636 2000-20-01  Anders Carlsson  <andersca@gnu.org>
5637
5638         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): Fix bug when
5639         a GtkToggleButton is both insensitive and active, it was being
5640         drawn by the GtkButton draw handler which doesn't check the
5641         state. Now it's calling gtk_toggle_button_paint instead.
5642         
5643 2000-12-01  Havoc Pennington  <hp@redhat.com>
5644
5645         * gtk/gtktextdisplay.c (gtk_text_layout_draw): don't create
5646         dangling pointers to the appearance attributes from the 
5647         line display
5648
5649         * gdk/gdkdraw.c (gdk_drawable_get_image): allow negative
5650         width/height to mean "full width/height of drawable"
5651
5652         * gtk/gtktextview.h, gtk/gtktextview.c: Implement double/triple
5653         click to select word/line
5654         
5655         * gtk/gtktextiter.c (test_log_attrs): include paragraph delimiters 
5656         when getting log attrs. Get a slice, so that pixmaps and stuff
5657         are properly handled.
5658
5659         * gtk/gtktextbuffer.c (paste): Fix pasting to work properly if you
5660         paste into the selection (replaces selection now, previously
5661         crashed or added to selection). Reveals longstanding btree bug -
5662         select multiple lines, middle-click on the selection, boom. This
5663         isn't related to my changes though.
5664
5665         * gtk/gtkentry.c (gtk_entry_move_forward_word): Update to reflect
5666         PangoLogAttrs changes
5667         (gtk_entry_move_backward_word): ditto
5668
5669         * gtk/gtktextlayout.h, gtk/gtktextlayout.c: Make the iter motion
5670         functions return bool whether the iter moved onto a
5671         dereferenceable position.
5672  
5673         * gtk/gtktextview.h, gtk/gtktextview.c: Add a bunch of public
5674         functions for motion in terms of display lines.
5675
5676         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): Add function to
5677         get the buffer a mark is inside
5678         
5679 2000-12-01  Alexander Larsson  <alexl@redhat.com>
5680
5681         * gdk/linux-fb/Makefile.am:
5682         * modules/linux-fb/Makefile.am:
5683         Freetype 2 final uses freetype-config
5684
5685         * gdk/linux-fb/gdkpango-fb.c:
5686         Upgrade to use Freetype 2 final.
5687         More flexible support for font aliases, this also fixes a bug with
5688         GtkFontSelector, as the aliases must be visible in the font/family list,
5689         or GtkFontSelector reads uninitialized memory.
5690
5691 2000-11-30 Hidetoshi Tajima  <tajima@eng.sun.com>
5692
5693         * modules/input/gtkimcontextxim.c (setup_im): Add NULL argument to
5694         XGetIMValues to properly terminate variable argument list, and do
5695         NULL return check for ic_values and xim_styles.
5696
5697         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset):
5698         Restore preedit state after XmbResetIC().
5699         
5700         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic):
5701         XvaCreateNestedList() should take XvaNestedList, but not
5702         XvaNestedList*.
5703
5704         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset,
5705         preedit_draw_callback, preedit_caret_callback): Match
5706         "preedit-changed" signal name to "preedit_changed" to be
5707         consistent to the spec.
5708
5709         * gtk/gtkimcontextsimple.c (check_table):
5710         Match "preedit-changed" to "preedit_changed" to be consistent
5711         to the spec.
5712
5713 Thu Nov 30 23:03:04 2000  Owen Taylor  <otaylor@redhat.com>
5714
5715         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Properly handle
5716         gc->clip_region == NULL>
5717
5718 2000-11-30  Tor Lillqvist  <tml@iki.fi>
5719
5720         Changes by Hans Breuer:
5721         
5722         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
5723         Dont't use negative width and height as max_hints. This fixes
5724         Owen's recent testgtk changes for win32.
5725
5726         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get,
5727         gdk_win32_hdc_release): These are exported and may be called with
5728         other drawable types than our GdkDrawableImplWin32 (?).
5729
5730         * gdk/gdkwindow.c: Backing store appears to work on Windows now,
5731         so always #define USE_BACKING_STORE.
5732
5733         * gtk/gtktextdisplay.c (render_layout_line): Use g_print instead
5734         of printf for debugging output.
5735
5736         * gtk/gtktextlayout.c (allocate_child_widgets): Ditto.
5737         
5738         * gtk/gtktextview.c (gtk_text_view_child_allocated): Ditto.
5739
5740         * gtk/gtkmain.h (GTKMAIN_C_VAR): Win32 fix for dllimport
5741         declaration.
5742
5743         * gtk/gtktexttypes.h: Ditto.
5744
5745         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): Return a value
5746         (GDK_VoidSymbol) also if in case of arg check failure.
5747
5748         * gtk/gtkimcontextsimple.c
5749         (gtk_im_context_simple_get_preedit_string): Don't assign cursor
5750         position to the pointer, but to the variable it points to.
5751
5752         * gtk/makefile.msc.in (DEFINES): Define GTK_VERSION.
5753
5754         * gtk/gtk.def: Updates.
5755
5756 2000-11-29  Elliot Lee  <sopwith@redhat.com>
5757
5758         * gtk/gtkmodelsimple.c: Inherits from GTK_TYPE_OBJECT, not
5759         GTK_TYPE_TREE_MODEL.
5760
5761 2000-11-29  Alexander Larsson  <alexl@redhat.com>
5762
5763         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description):
5764         Set the size of the font from the description.
5765         (gdk_text_width): Gross hack that calculates the width
5766         of text by text_length * size/2. This is necessary because
5767         GtkLabel does some ugly gtk_string_width call to calculate
5768         an good size.
5769         (linux-fb/gdkprivate-fb.h): Removed unused field FT_Face.
5770
5771 Wed Nov 29 13:39:19 GMT 2000  Tony Gale <gale@gtk.org>
5772
5773         * docs/tutorial/gtk-tut.sgml: DND updates
5774
5775 2000-11-29  Alexander Larsson  <alexl@redhat.com>
5776
5777         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
5778         If you pass width or height == 0 to gdk_window_clear_area they
5779         should be calculated from the window size.
5780
5781 2000-11-29  Alexander Larsson  <alexl@redhat.com>
5782
5783         * gdk/linux-fb/gdkinput-ps2.c (move_pointer): If there is
5784         a grab, but no grab-cursor, use the cursor from the grabbed
5785         window. (gdk_fb_window_send_crossing_events): Send normal
5786         enter/leave notifications if grab and owner_events == TRUE.
5787
5788 2000-11-29  Alexander Larsson  <alexl@redhat.com>
5789
5790         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
5791         Do implicit button grabs, even if the window doesn't
5792         want the event.
5793         (gdk_fb_window_send_crossing_events): If there is a
5794         grab, only the grabbed window gets normal enter/leave
5795         notifications. On ungrab go from grabbed window to current.
5796         Don't send any notification to b when propagating from c -> b.
5797         If setting a grab on window, don't set prev_window.
5798         (handle_mouse_input): Send enter/leave events to the window the
5799         mouse is over, not the grabbed one.
5800         
5801 2000-11-28  Elliot Lee  <sopwith@redhat.com>
5802
5803         * gdk/gdkregion-generic.c: Zap warning.
5804         * modules/input/Makefile.am: Only build im-xim if USE_X11 is enabled
5805         * gtk/gtkrc.c: s/strcpy/memcpy/ to save a few nanoseconds.
5806
5807 2000-11-28  Alexander Larsson  <alla@lysator.liu.se>
5808
5809         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
5810         The cursor should be hidden if it is part of either the
5811         source or destination region. Not only if it is in both.
5812         (gdk_window_set_transient_for): Silence warnings.
5813
5814 2000-11-28  Alexander Larsson  <alexl@redhat.com>
5815
5816         * gdk/linux-fb/mifillarc.c (miFillArcSliceSetup):
5817         The default mode in X is Pie Arcs, therefore that is
5818         what Gtk+ uses.
5819
5820 2000-11-28  Alexander Larsson  <alexl@redhat.com>
5821
5822         * gdk/linux-fb/gdkinput-ps2.c:
5823         Implement correct EnterNotify/LeaveNotify:
5824         (gdk_fb_window_send_crossing_events): New function that sends
5825         all GdkCrossingEvents from the last mouse-window to the specified
5826         destination.
5827         (gdk_fb_window_visibility_crossing): Removed function.
5828         (handle_mouse_input): Use gdk_fb_window_send_crossing_events()
5829         (send_button_event, gdk_fb_cursor_reset): Use gdk_window_at_pointer
5830         instead of gdk_window_get_pointer() for better readability.
5831
5832         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab,
5833         gdk_fb_pointer_ungrab): Use gdk_fb_window_send_crossing_events.
5834
5835         * gdk/linux-fb/gdkprivate-fb.h:
5836         removed gdk_fb_window_visibility_crossing, added
5837         gdk_fb_window_send_crossing_events and gdk_fb_find_common_ancestor.
5838
5839         gdk/linux-fb/gdkwindow-fb.c (gdk_fb_find_common_ancestor):
5840         New function that finds the least common ancestor of two windows.
5841         (gdk_window_show, gdk_window_hide):
5842         Use gdk_fb_window_send_crossing_events.
5843         (gdk_fb_window_move_resize): Send configure events to toplevel
5844         windows. Use gdk_fb_window_send_crossing_events.
5845
5846 2000-11-27  Havoc Pennington  <hp@redhat.com>
5847
5848         * gtk/gtkprivate.h (enum): Remove a trailing comma
5849
5850 2000-11-27  Federico Mena Quintero  <federico@helixcode.com>
5851
5852         * gtk/gtkspinbutton.c (gtk_spin_button_set_adjustment): Connect to
5853         the "changed" callback of the adjustment.  We need to redraw the
5854         spin button's arrows when the adjustment's range changes.
5855         (adjustment_changed_cb): Draw the arrows.
5856         (gtk_spin_button_value_changed): Draw the arrows.
5857
5858 2000-11-23  Alexander Larsson  <alexl@redhat.com>
5859
5860         * gdk/linux-fb/gdkselection-fb.c:
5861         Initial selection implementation.
5862
5863         * gtk/gtkselection.c:
5864         if GDK_WINDOWING_FB defined, include linux-fb/gdkfb.h and look up
5865         requestor in gtk_selection_request.
5866         
5867         * gdk/linux-fb/gdkfb.h, gdk/linux-fb/gdkglobals-fb.c:
5868         Added gdk_selection_property atom.
5869
5870         * gdk/linux-fb/gdkprivate-fb.h:
5871         Export _gdk_selection_window_destroyed.
5872         Removed mask_off_x/y from GdkCursorPrivateFB.
5873         Removed hbearing, added top, left to PangoFBGlyphInfo.
5874
5875         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
5876         Call _gdk_selection_window_destroyed
5877         (_gdk_windowing_window_init): Don't call gdk_cursor_new() before
5878         the root window has been created.
5879         (static_dx_hack, static_dy_hack, compare_draw_rects,
5880         gdk_fb_window_move_resize): Remove unnecessary sort of rectangles
5881         in region. They are already sorted. Instead just traverse them in
5882         reverse if draw_direction < 0.
5883         
5884         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
5885         Double-clicks must be sent after the normal button_press.
5886         (gdk_fb_cursor_unhide): Remove usage of mask_off_x/y. Clean up.
5887         
5888         * gdk/linux-fb/gdkgeometry-fb.c (gdk_window_scroll):
5889         Pass _gdk_fb_screen_gc instead of NULL.
5890
5891         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
5892         Initialize gdk_selection_property.
5893         (gdk_event_make): Remove unused code.
5894
5895         * gdk/linux-fb/gdkcursor-fb.c:
5896         Make the pixmap for the cursor the same size as the mask. Also remove
5897         the mask_off_x/y fields in GdkCursorPrivateFB and combine
5898         _gdk_cursor_new_from_pixmap() and gdk_cursor_new_from_pixmap()
5899         Now the whole cursor is visible.
5900
5901         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
5902         Fix bug where xdest+height instead of ydest+height was used
5903         to calculate if the source and dest overlapped. This fixes the
5904         redraw bug when the main window in testgtk was scrolled when
5905         partially covered by a tall window.
5906         Copy rectangles in region in order depending on draw_direction.
5907         Also moved the draw_direction flipping of start_y and end_y into
5908         the gc functions, as this might not be what all of them want.
5909         (gdk_fb_draw_lines): Support dashed lines.
5910         (gdk_fb_draw_glyphs): Clean up glyph placement. Also fix positioning
5911         so that the text is positioned correctly (was 1 pixel high).
5912
5913         gdk/linux-fb/gdkgc-fb.c:
5914         Initialize cap_style to GTK_CAP_BUTT. This fixes a problem where
5915         all lines were drawn a pixel to short. Also checked the default of
5916         the rest of the values, and they're the same as X now.
5917
5918         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_glyph_info):
5919         Clean up pixel positioning of the glyphs. Just use bgy->top and
5920         bgy->left. Also used PANGO_PIXEL where appropriate and added 0.5
5921         to all divisions to get correct rounding behaviour.
5922
5923         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_draw_drawable_generic,
5924         gdk_fb_draw_drawable_memmove, gdk_fb_draw_drawable_aa_24):
5925         Moved start_y/end_y flip into draw_drawable implementations.
5926         Flip also x rendering when draw_direction < 0.
5927         Remove unneccesary multiply with draw_direction.
5928
5929 Wed Nov 22 14:11:19 GMT 2000  Tony Gale <gale@gtk.org>
5930
5931         * docs/tutorial/gtk-tut.sgml:
5932           - get rid of gtk_toggle_button_toggled FUD
5933           - start DND section - needs work - based on:
5934                 http://wolfpack.twu.net/docs/gtkdnd/
5935
5936 2000-11-22  Alexander Larsson  <alexl@redhat.com>
5937
5938         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
5939         Correct calculation of font metrics. Now GtkEntrys have sane
5940         size.
5941
5942 2000-11-22  Alexander Larsson  <alexl@redhat.com>
5943
5944         * gdk/gdktypes.h:
5945         Add new type GdkSpan
5946         
5947         * docs/reference/gdk/gdk-sections.txt,
5948         docs/reference/gdk/tmpl/regions.sgml, gdk/gdkregion-generic.c,
5949         gdk/gdkregion.h:
5950         Implement and document gdk_region_spans_intersect_foreach.
5951
5952         * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkrender-fb.c:
5953         Add new file gdkrender-fb.c which contains all core
5954         rendering code.
5955         Add gdk_fb_fill_rectangle_generic (old rectangle code) and
5956         gdk_fb_fill_rectangle_simple_16, gdk_fb_fill_rectangle_simple_32
5957         (optimized rectangle fillers).
5958
5959         * gdk/linux-fb/gdkdrawable-fb2.c:
5960         Move all rendering code to gdkrender-fb.c.
5961         Change from using GdkRectangles and GdkSegments for spans to GdkSpan.
5962         Use the new span intersection functions in gdk_fb_fill_spans.
5963         gdk_fb_draw_rectangle() clips filled rectangles and calls
5964         gc->fill_rectangle with the result.
5965         gdk_fb_fill_spans() gets extra argument "sorted".
5966
5967         * gdk/linux-fb/gdkevents-fb.c:
5968         Remove unused includes and defines.
5969         New function gdk_fb_get_time() to get correct time for events.
5970
5971         * gdk/linux-fb/gdkinput-ps2.c:
5972         Use gdk method of generating multiple-clicks (gdk_event_button_generate)
5973         Make sure to set the time of all events.
5974
5975         * gdk/linux-fb/gdkmain-fb.c:
5976         Use gdk_fb_get_time ().
5977
5978         * gdk/linux-fb/gdkprivate-fb.h:
5979         New virtual GC calls: fill_span & fill_rectangle.
5980         Export gdk_fb_get_time().
5981         gdk_fb_fill_spans() gets extra argument "sorted".
5982
5983         * gdk/linux-fb/mi*.c:
5984         Use GdkSpan instead of GdkRectangle.
5985         Pass correct sorted to gdk_fb_fill_spans. (sorted value taken
5986         from XFree 4 source)
5987         
5988 2000-11-22    <jrb@redhat.com>
5989
5990         * gtk/gtktreeview.c (gtk_tree_view_calc_size): It's amazing what
5991         reversing the order in an if statement will do.  Doing so managed
5992         to make the treemodelsort half work.  Other half will follow after
5993         I get the insert function fully fixed.
5994
5995 2000-11-21  Elliot Lee  <sopwith@redhat.com>
5996         * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
5997         more than 2 bits. Besides, I need to implement an evil hack. :)
5998
5999 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
6000
6001         * docs/tutorial/gtk-tut.sgml: minor corrections
6002
6003 2000-11-20  Jonathan Blandford <jrb@redhat.com>
6004         * gtk/gtktreemodelsort.h: Add convertion functions to let you
6005           convert to and from relative path's and iters.
6006
6007         * gtk/treestoretest.c: move to having a sorted/unsorted view.  Start
6008           testing sorting functions a bit better.  Currently broken -- will
6009           fix in morning.
6010
6011 2000-11-20  Havoc Pennington  <hp@redhat.com>
6012
6013         * gtk/gtkwidget.c: Documented a bunch of functions in here
6014         (gtk_widget_realize): Warn if you try to realize
6015         a widget with no parent that isn't a toplevel
6016         (gtk_widget_intersect): return a gboolean
6017
6018 2000-11-20  Havoc Pennington  <hp@redhat.com>
6019
6020         * gtk/gtktextview.c, gtk/gtktextlayout.c, gtk/gtktextchild.c,
6021         gtk/testtext.c: Semi-finish widget embedding. Need guffaw
6022         scrolling to be implemented in GDK to finish. Also, right now
6023         we just size_allocate all children on every layout change,
6024         which is pretty lame. Test commented out of testtext.c, 
6025         until it works better.
6026
6027 2000-11-20  Alexander Larsson  <alla@lysator.liu.se>
6028
6029         * gdk/linux-fb/gdkdrawable-fb2.c:
6030         Removed unused arguments from gdk_fb_drawable_get_pixel().
6031
6032         * gdk/linux-fb/gdkinput-ps2.c (handle_input_ps2):
6033         Renamed fidur specific mouse packet data in MouseDevice to
6034         generic. Used it in ps2 mouse handling code to avoid blocking
6035         reads.
6036
6037 Sat Nov 18 18:00:17 2000  Jonathan Blandford  <jrb@redhat.com>
6038
6039         * demos/gtk-demo/main.c: Changed to have the list become
6040         non-italic when the demo window is destroyed through an external
6041         event (like a close button).  Doing so found three bugs in the
6042         widget.
6043
6044         * demos/gtk-demo/*.c (do_*): Changed to return the toplevel window.
6045
6046         * gtk/gtkliststore.c (gtk_list_store_set_cell): emit "change" when
6047         we actually set the cell.
6048
6049         * gtk/gtktreestore.c (gtk_tree_store_set_cell): ditto
6050
6051         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
6052         free a leaked path.  Thanks memprof.
6053
6054 Sat Nov 18 11:58:17 2000  Owen Taylor  <otaylor@redhat.com>
6055
6056         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Fix 
6057         off-by-one error when destroying allocated segments
6058         on failure. (Elliot)
6059
6060 Sat Nov 18 11:45:09 2000  Owen Taylor  <otaylor@redhat.com>
6061
6062         * gtk/gtkcalendar.c: Patch from ChiDeok Hwang to fix
6063         memleaks found by Evan Martin.
6064
6065 Fri Nov 17 20:14:20 2000  Owen Taylor  <otaylor@redhat.com>
6066
6067         * Released 1.3.2
6068         
6069         * NEWS: Updates for 1.3.2
6070
6071 2000-11-17  Tor Lillqvist  <tml@iki.fi>
6072
6073         * gdk/gdkevents.h: Add comment that GdkXEvent isn't only for XEvent,
6074         but in general for window system specific events.
6075
6076         * gtk/gtk.def
6077         * gtk/makefile.mingw.in
6078         * gtk/makefile.msc.in: Update.
6079         
6080         * gtk/gtktexttypes.h: Mark variables for export/import from DLL.
6081
6082 Thu Nov 16 16:11:39 2000  Owen Taylor  <otaylor@redhat.com>
6083
6084         * gtk/Makefile.am (EXTRA_DIST): Do not, in any circumstances,
6085         distribute gtk.immodules.
6086
6087         * gtk/Makefile.am (install-data-local): Don't install the
6088         gtk.immodules file created for the uninstalled modules;
6089         instead run gtk-query-immodules after install
6090
6091 Wed Nov 15 21:51:31 2000  Owen Taylor  <otaylor@redhat.com>
6092
6093         * modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
6094         -rpath to the right install location.
6095
6096         * modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
6097         -export-dynamic.
6098
6099         * gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
6100         properly.
6101
6102 2000-11-15  Havoc Pennington  <hp@pobox.com>
6103
6104         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): Apply
6105         patch from Mikael Hermansson to temporarily stop blinking while
6106         the user is using the keyboard to type or navigate. 
6107
6108         Also, when blinking, stay on for longer than we stay off. Also,
6109         return from start_cursor_blink if !cursor_visible, to save
6110         checking that flag all over the place before we call
6111         start_cursor_blink.
6112
6113 Thu Nov 16 01:25:51 2000  Robert Brady  <robert@suse.co.uk>
6114
6115         * gtk/gtkrc.*: Remove the locale-specific gtkrc's, as they
6116         only contain a "fontset" line, which is now ignored.
6117
6118         * gtk/gtkentry.c (gtk_entry_button_release): Make 
6119         double-click-to-select-word work.
6120         
6121 Wed Nov 15 20:16:54 2000  Owen Taylor  <otaylor@redhat.com>
6122
6123         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
6124         Don't move back one char when we are actually at the end of the 
6125         paragraph.
6126
6127 2000-11-15  Robert Brady  <robert@suse.co.uk>
6128
6129         * modules/input/iminuktitut.c (inuktitut_compose_seqs): 
6130         'o' < 'p'.
6131         
6132         * gtk/gtkmain.c: s/CODSET/CODESET/, include <libintl.h> for
6133         bind_textdomain_codeset.
6134
6135         (gtk_init_check): Make the warning about translating default:LTR
6136         sterner.
6137         
6138 Wed Nov 15 18:39:40 2000  Owen Taylor  <otaylor@redhat.com>
6139
6140         * **/Makefile.am : remove unecessary rules for win32-specific
6141         config-substituted targets. If you want these rules, use
6142         --enable-maintainer-mode (called automatically by autogen.sh).
6143         Stops a lot of unneccessary make-time warnings.
6144
6145         * gtk/gtktext{layout,display}.c: Factor in total width as
6146         well as screen when figuring alignment for word-wrap as well as
6147         no wrap; this is necessary to handle lines that cannot be wrapped
6148         at all.
6149
6150 2000-11-15  Havoc Pennington  <hp@redhat.com>
6151
6152         * gtk/testtext.c: Implement essential color cycling feature
6153
6154 2000-11-15  Havoc Pennington  <hp@redhat.com>
6155
6156         * gtk/gtktextview.c (changed_handler): Invalidate the side windows
6157         when we invalidate the main window.
6158
6159         * gtk/testtext.c (create_view): Get rid of text_changed_callback,
6160         GtkTextView will now invalidate the side windows for us when text
6161         changes.
6162
6163 Wed Nov 15 16:02:20 2000  Owen Taylor  <otaylor@redhat.com>
6164
6165         * gtk/gtktextview.c (changed_handler): Call scroll_calc_now()
6166         unconditionally, since we may need to update the horizontal
6167         scrollbars even if the height didn't change.
6168
6169         * gtk/gtktextlayout.c (add_preedit_attrs): Always get
6170         the extra attrs, since some of them affect size.
6171
6172         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Factor in
6173         x_offset correctly.
6174
6175 2000-11-15  Havoc Pennington  <hp@redhat.com>
6176
6177         * gtk/gtktextlayout.c (set_para_values): If indent is negative,
6178         don't move the first line out into the margin, instead move the
6179         whole paragraph in order to make space for the first line within 
6180         the margin
6181
6182 2000-11-15  Havoc Pennington  <hp@redhat.com>
6183
6184         * gtk/gtktextview.c (changed_handler): offset redraw rect by
6185         xoffset in addition to yoffset, so horizontal scrolling doesn't
6186         break redraws
6187
6188 2000-11-15  Havoc Pennington  <hp@redhat.com>
6189
6190         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove extra pixel
6191         from the cursor
6192         (render_layout_line): fix reversed test that caused weird
6193         underlines to get drawn
6194
6195 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
6196
6197         * gdk/linux-fb/gdkprivate-fb.h:
6198         Fix debug macros.
6199         
6200 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
6201
6202         * gdk/linux-fb/gdkprivate-fb.h:
6203         Added virtual functions set_pixel, get_color,
6204         fill_span and draw_drawable to the GC.
6205         Added global _gdk_fb_screen_gc to use instead of
6206         NULL when drawing to the screen.
6207         Added _gdk_fb_gc_calc_state() prototype.
6208
6209         * gdk/linux-fb/gdkgc-fb.c:
6210         Call _gdk_fb_gc_calc_state() on any gc state change.
6211
6212         * gdk/linux-fb/gdkglobals-fb.c:
6213         Add _gdk_fb_screen_gc
6214                 
6215         * gdk/linux-fb/gdkdrawable-fb2.c:
6216         _gdk_fb_gc_calc_state() calculates best functions
6217         for the GC state and depth.
6218         Moved bpp specialized code to separate functions.
6219         Added optimized 24 bpp AA draw_drawable.
6220
6221         * gdk/linux-fb/gdkevents-fb.c:
6222         Silence gcc warning.
6223
6224         * gdk/linux-fb/gdkimage-fb.c:
6225         Use _gdk_fb_screen_gc
6226
6227         * gdk/linux-fb/gdkwindow-fb.c:
6228         Init and use _gdk_fb_screen_gc
6229
6230         * gdk/linux-fb/mitypes.h:
6231         Remove unused types.
6232
6233 2000-11-14  Havoc Pennington  <hp@pobox.com>
6234
6235         * gtk/gtktextlayout.c (add_cursor): use PANGO_PIXELS() to convert
6236         to pixels
6237
6238 2000-11-14  Havoc Pennington  <hp@pobox.com>
6239
6240         * gtk/testtextbuffer.c (fill_buffer): change "offset" to "rise"
6241
6242         * gtk/gtktexttypes.h (GTK_TEXT_UNKNOWN_CHAR): Add macro for
6243         unknown char, no real reason we were using a variable. 
6244         Remove gtk_text_unknown_char variable. Fix all the text widget
6245         files accordingly.
6246
6247         * gtk/gtktexttypes.c: Change "unknown character" to 0xFFFC, 
6248         since the Unicode spec seems to prefer that character for our
6249         purposes.
6250
6251 Wed Nov 15 02:18:01 2000  Robert Brady  <robert@suse.co.uk>
6252
6253         * gtk/gtkrc.c (gtk_rc_get_im_module_file): The return 
6254         value of g_getenv() isn't freeable, so g_strdup it.
6255
6256         * modules/input/inuktitut.c: Inuktitut input method.
6257
6258         * modules/input/Makefile.am: Build this.
6259         
6260 2000-11-14  Elliot Lee  <sopwith@redhat.com>
6261
6262         * gtk/Makefile.am: Install gtk.immodules, needed for operation
6263         of gtk programs.
6264
6265 Tue Nov 14 20:13:06 2000  Owen Taylor  <otaylor@redhat.com>
6266
6267         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): Fix
6268         reversed > that was causing Home to go to end of previous line.
6269
6270         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): Ignore
6271         modified-keypresses (leave for bindings.)
6272
6273         * modules/input/Makefile.am: Remove useless -export-dynamic
6274         from module LDFLAGS.
6275
6276 2000-11-14  Havoc Pennington  <hp@redhat.com>
6277
6278         * gdk/gdkpango.c (gdk_draw_layout_line): Draw underlines one pixel
6279         higher.
6280
6281         * gtk/gtktextdisplay.c (render_layout_line): Take rise into
6282         account. Also, render rise, underline, background, etc. for
6283         pixbufs as well as text. Also, draw underlines one pixel higher.
6284
6285         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): Add a
6286         PangoAttribute for the rise, so it gets drawn properly. Also,
6287         add the GtkTextAppearance attribute for pixbuf/widget segments
6288         as well; we should go ahead and have rise, underline, background,
6289         stipple work for those
6290
6291         * gtk/gtktexttag.c: Rename "offset" property to "rise" to match
6292         Pango
6293
6294 2000-11-15  Tor Lillqvist  <tml@iki.fi>
6295
6296         * gtk/makefile.{mingw,msc}.in (gtk_OBJECTS): Add new objects.
6297
6298         * gtk/gtk.def: Update.
6299
6300         * gtk/gtkrc.c: Can't check for G_OS_WIN32 until glib.h has been
6301         included.
6302         (gtk_rc_get_im_module_file): Use run-time installation directory
6303         on Win32.
6304
6305         * gdk/win32/rc/gdk.rc: Remove.
6306         * gdk/win32/rc/gdk.rc.in: New file.
6307         * gdk/win32/rc/Makefile.am: New file
6308         * gdk/win32/Makefile.am: Corresponding changes.
6309
6310         * gtk/gtk.rc: Remove.
6311         * gtk/gtk-win32.rc.in: New file.
6312         * gtk/Makefile.am: Corresponding changes.
6313
6314         * configure.in: Corresponding changes.
6315
6316         * gtk/gtkcompat.h.win32: Remove, useless. A distribution already
6317         has a built gtkcompat.h. Developers using CVS code on Win32 can
6318         hand-edit it from gtkcompat.h.in.
6319
6320         * gtk/makefile.{mingw,msc}.in: Correspondingly don't try to make
6321         gtkcompat.h from gtkcompat.h.win32.
6322
6323 2000-11-14  Havoc Pennington  <hp@redhat.com>
6324
6325         * gtk/gtktextview.c (gtk_text_view_drag_motion): Fix drag-and-drop
6326         to default to GDK_ACTION_MOVE if the drag is within a single
6327         widget. Defaults to GDK_ACTION_COPY between widgets.
6328
6329 Mon Nov 13 14:43:48 2000  Owen Taylor  <otaylor@redhat.com>
6330
6331         * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir
6332
6333         * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk
6334
6335         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles
6336         srcdir != builddir
6337
6338         * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk
6339
6340         * configure.in (GTK_VERSION): Up to 1.3.2
6341
6342         * modules/input/Makefile.am (im_xim_la_SOURCES): Add 
6343         gtkimcontextxim.h
6344
6345         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add
6346         missing doc comment.
6347
6348 2000-11-14  Alexander Larsson  <alexl@redhat.com>
6349
6350         * modules/linux-fb/basic.c:
6351         Use the glib iconv wrappers.
6352
6353 2000-11-13  Havoc Pennington  <hp@pobox.com>
6354
6355         * demos/gtk-demo/textview.c: spiff up the demo a bit; reveals
6356         still more bugs.
6357
6358         * gtk/gtktextview.c (gtk_text_view_value_changed): don't try to
6359         scroll the GdkWindows before realization.
6360
6361 2000-11-13  Havoc Pennington  <hp@redhat.com>
6362
6363         * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug 
6364         where GC didn't always get updated properly
6365
6366         * demos/gtk-demo/textview.c (create_tags): Use subattributes
6367         of fonts instead of setting the entire font
6368
6369         * gtk/testtext.c (fill_example_buffer): Use "size" instead of
6370         setting entire font
6371
6372         * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings
6373
6374         * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into 
6375         a bunch of individually-settable font attributes. You can still 
6376         use the "font" and "font_desc" args, they just set all the font
6377         attributes at once.
6378
6379 2000-11-13 Elliot Lee <sopwith@redhat.com>
6380
6381         * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
6382
6383 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
6384
6385         * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
6386         * gtk/gtktreemodel.c (gtk_tree_path_free): ditto
6387
6388         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): make
6389         work better.
6390
6391 2000-11-13  Havoc Pennington  <hp@redhat.com>
6392
6393         * gtk/gtkimmodule.c (gtk_im_module_init): Free the filename of 
6394         the module file.
6395
6396         * gtk/gtktexttag.c (gtk_text_attributes_copy): fix memory leak of
6397         dest->language
6398
6399         * gtk/testtext.c: Test pixels above/below/inside paragraphs
6400         settings
6401
6402         * gtk/gtktextview.c: Implement object args and setters/getters for
6403         all the aspects of the GtkTextAttributes that are not set from
6404         GtkWidget attributes. This is spacing, justification, margins,
6405         etc.
6406
6407         (gtk_text_view_set_arg)
6408         (gtk_text_view_get_arg): implement get/set for editable, wrap mode
6409         args
6410         (gtk_text_view_class_init): Add args for justify, left_margin,
6411         right_margin, indent, and tabs
6412         
6413
6414         * gtk/gtktextlayout.c (set_para_values): fix to display indent
6415         attribute properly
6416
6417         * gtk/gtktexttag.c: Remove left_wrapped_line_margin attribute, 
6418         replace with indent attribute
6419
6420         * gtk/gtktextlayout.c (set_para_values): multiply indent by
6421         PANGO_SCALE
6422
6423         * gtk/gtktextdisplay.c (render_para): Use PangoLayoutIter,
6424         rearranging code to do that
6425         (gtk_text_layout_draw): Pass in the y for the whole LineDisplay,
6426         i.e. don't subtract the top_margin first, just to keep
6427         all margin-futzing in one place.
6428
6429         * gdk/gdkpango.c (gdk_draw_layout): Use PangoLayoutIter
6430
6431         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Remove
6432         special case of last line, Pango now handles this itself.
6433         (gtk_text_layout_get_iter_at_pixel): Fix incorrect clamp of the 
6434         Y coordinate
6435         (gtk_text_layout_move_iter_to_x): port to use PangoLayoutIter
6436         (find_display_line_above): wasn't moving the byte index as it
6437         iterated over lines, so always returned byte 0. Also, port to use
6438         PangoLayoutIter.
6439         (find_display_line_below): same problem as
6440         find_display_line_above. Also, port to use PangoLayoutIter.
6441
6442 2000-11-13  Alexander Larsson  <alexl@redhat.com>
6443
6444         * gdk/linux-fb/*.[ch]:
6445         Massive reindent to gtk+ standard. My hands hurt.
6446
6447         * gdk/linux-fb/gdkcolor-fb.c:
6448         Move GdkColorPrivateFB from inherited to windowing_data
6449
6450         * gdk/linux-fb/gdkcursor-fb.c:
6451         _gdk_cursor_new_from_pixmap made static
6452
6453         * gdk/linux-fb/gdkdnd-fb.c:
6454         GdkDragContextPrivate moved to windowing_data
6455
6456         * gdk/linux-fb/gdkdrawable-fb2.c:
6457         Removed endian.h, use glib endianness macros instead
6458         Some cleanups in the usage of GDK_DRAWABLE_FBDATA
6459         and GDK_DRAWABLE_IMPL_FBDATA
6460
6461         * gdk/linux-fb/gdkfont-fb.c:
6462         Add empty gdk_font_load(). Needed for linking of Gtk+.
6463
6464         * gdk/linux-fb/gdkimage-fb.c:
6465         Removed endian.h, use glib endianness macros instead
6466         Moved GdkImagePrivateFB to windowing_data
6467         gdk_image_new_bitmap didn't always allocate enough
6468         memory.
6469
6470         * gdk/linux-fb/gdkinput-ps2.c:
6471         Added semi-working support for MS serial mice.
6472
6473         * gdk/linux-fb/gdkprivate-fb.h:
6474         s/GdkWindowPrivate/GdkWindowObject/
6475         Removed GdkWindowPrivate typedef
6476         s/GDK_DRAWABLE_P/GDK_DRAWABLE_FBDATA/
6477         Removed GDK_DRAWABLE_P
6478         Move GdkColorPrivateFB from inherited to windowing_data
6479         Moved GdkImagePrivateFB to windowing_data
6480
6481         * gdk/linux-fb/gdkvisual-fb.c:
6482         Removed some unused debug code.
6483
6484         * gdk/linux-fb/gdkwindow-fb.c:
6485         Use stock cursors instead of including X headers.
6486         s/GdkWindowPrivate/GdkWindowObject/
6487
6488         * gdk/linux-fb/mitypes.h:
6489         Removed unused types.
6490
6491         * modules/linux-fb/basic.c:
6492         Use the pango fribidi wrappers.
6493
6494 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
6495
6496         * gdk/linux-fb/gdkcolor-fb.c, gdk/nanox/gdkmain-nanox.c,
6497         gdk/win32/gdkcolor-win32.c, gdk/win32/gdkwin32id.c,
6498         gdk/x11/gdkcolor-x11.c, gdk/x11/gdkvisual-x11.c, gdk/x11/gdkxid.c,
6499         gtk/gtkgc.c, gtk/gtkrc.c, gtk/gtktext.c: GCompareFunc ->
6500         GEqualFunc where applicable.
6501         
6502         * gdk/linux-fb/gdkpango-fb.c: pango_font_description_compare ->
6503         pango_font_description_equal as changed in pango.
6504         
6505         * gdk/nanox/gdkmain-nanox.c: gdk_xid_compare -> gdk_xid_equal.
6506
6507         * gdk/win32/gdkcolor-win32.c: gdk_colormap_cmp -> gdk_colormap_equal.
6508
6509         * gdk/win32/gdkwin32id.c: gdk_handle_compare -> gdk_handle_equal.
6510
6511         * gdk/x11/gdkcolor-x11.c: gdk_colormap_cmp -> gdk_colormap_equal.
6512
6513         * gdk/x11/gdkvisual-x11.c: gdk_visual_compare -> gdk_visual_equal.
6514
6515         * gdk/x11/gdkxid.c: gdk_xid_compare -> gdk_xid_equal.
6516
6517         * gtk/gtkgc.c: gtk_gc_key_compare -> gtk_gc_key_equal and
6518         gtk_gc_drawable_compare -> gtk_gc_drawable_equal.
6519
6520         * gtk/gtkrc.c: gtk_rc_style_compare -> gtk_rc_style_equal and
6521         gtk_rc_styles_compare -> gtk_rc_styles_equal.
6522
6523 2000-11-12  Havoc Pennington  <hp@pobox.com>
6524
6525         * demos/gtk-demo/Makefile.am (democodedir): change demo install
6526         dir to datadir/gtk+-2.0/demo
6527
6528         * demos/gtk-demo/textview.c: Text widget demo; reveals all 
6529         sorts of text widget and Pango font bugs. Urgh.
6530
6531         * demos/gtk-demo/Makefile.am (demos): Add textview.c
6532
6533         * demos/gtk-demo/main.c (create_tree): Add instructions at top of
6534         tree that you should double click to see the demo. Fix 
6535         types of variables to reflect changed return values from 
6536         GtkTreeStore and GtkTreeViewColumn constructors.
6537
6538         * gtk/gtktextbuffer.c (gtk_text_buffer_new): ref/sink the
6539         newly-created buffer to prepare for GObject semantics
6540
6541         * gtk/testtext.c: don't leak the buffer with GObject semantics
6542
6543         * gtk/testtextbuffer.c: ditto
6544         
6545 2000-11-12  Havoc Pennington  <hp@pobox.com>
6546
6547         Rename this testgtk to gtk-demo to avoid confusion, and 
6548         install it so people can use it as a supplement to 
6549         the documentation.
6550         
6551         * demos/gtk-demo: Moved from demos/testgtk
6552
6553         * demos/testgtk: Removed
6554
6555         * configure.in: make Makefile in gtk-demo
6556         
6557         * demos/gtk-demo/Makefile.am: Install sample source to 
6558         datadir/gtk-demo (maybe there's a better place?), and 
6559         rename the binary to gtk-demo
6560         
6561         * demos/gtk-demo/main.c (load_file): Load installed sample
6562         source if source isn't found in pwd.
6563
6564 2000-11-09  Havoc Pennington  <hp@pobox.com>
6565
6566         * gtk/gtkentry.c (gtk_entry_class_init): Add an "invisible_char" 
6567         argument to set the char displayed when visibility == FALSE
6568         (gtk_entry_create_layout): If !entry->visible, replace 
6569         all chars with the "invisible char"
6570
6571         * gtk/testgtk.c: Test the invisible_char deal
6572         
6573 Mon Nov 13 02:16:33 2000  Robert Brady  <robert@suse.co.uk>
6574
6575         * gtk/gtkstyle.c (gtk_style_init): Fall back to "fixed" if we
6576         can't get a native font in the right encoding.
6577
6578 Mon Nov 13 00:09:29 2000  Robert Brady  <robert@suse.co.uk>
6579
6580         * configure.in: Chinese .pos have been renamed to zh_CN and zh_TW
6581         respectively.
6582
6583 Sun Nov 12 19:11:42 2000  Owen Taylor  <otaylor@redhat.com>
6584
6585         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
6586         Fix warning when moving between paragraphs.
6587
6588         * gtk/gtkentry.[ch]: Change move => move_cursor, 
6589         delete => delete_from_cursor, insert => insert_at_cursor
6590
6591 Sun Nov 12 22:52:51 2000  Robert Brady  <robert@suse.co.uk>
6592
6593         * modules/input/imviqr.c: A vietnamese VIQR-based input method.
6594
6595         * modules/input/imthai-broken.c: A Thai input method for use if
6596         Thai keys are really generating Latin1 keysyms.
6597
6598         * modules/input/Makefile.am: Build these.
6599
6600 Sun Nov 12 22:15:35 2000  Robert Brady  <robert@suse.co.uk>
6601
6602         * gtk/gtkfileselection.c, gdk/win32/gdkfont-win32.c: 
6603         g_filename_{to,from}_utf8 now takes an extra parameter.
6604
6605         * gtk/gtkcalendar.c (gtk_calendar_init): Convert output of
6606         strftime into UTF-8.
6607
6608         (column_from_x, gtk_calendar_paint_day_names): Support RTL
6609         calendars.
6610
6611         (gtk_calendar_paint_day_names): Draw day names in the right 
6612         place.
6613         
6614 Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>
6615
6616         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
6617         problem with using result of g_get_charset() backwards -
6618         pointed out by Mikael Hermansson <mikeh@bahnhof.se>.
6619
6620         * gtk/gtkwindow.c (gtk_window_compute_hints): Support
6621         negative min_width/height and max_width/height to
6622         mean "requisition"; this allows setting a window
6623         to be user-resizable in only one direction easily.
6624
6625         * gtk/testgtk.c (create_main_window): Remove hard-coded
6626         usize - set a default size in the vertical direction.
6627
6628 Sun Nov 12 13:33:01 2000  Owen Taylor  <otaylor@redhat.com>
6629
6630         * gtk/gtkrange.c: Add some missing casts. Support 
6631         2 and 3 button clicks on the arrows to mean 
6632         "move by pages" and "jump to end". (Like gtkspinbutton)
6633
6634 2000-11-12 Hans Breuer <Hans@Breuer.Org>
6635
6636         * gdk/win32/makefile.msc : reflect build module changes
6637
6638         * gdk/win32/gdkcursor-win32.c : can't cast to impl type directly
6639         from GdkPixmap*, cast implementation member instead.
6640
6641         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_drawable) : The
6642         passed in drawable is of type GdkDrawableImplWin32, the GdkPixmap *src 
6643         maybe either GdkDrawable or GdkDrawableImpl. Corrected all casts, add
6644         more Gdi functions return value checking. 
6645         (gdk_win32_draw_image) : use IMAGE_PRIVATE_DATA to get on the
6646         GdkImagePrivateWin32 *.
6647
6648         * gdk/win32/gdkevents-win32.c : Disable the SetCapture call to make
6649         menus useable again. Add #pragma message to keep reminded on this issue.
6650         (gdk_event_translate) : don't generate GDK_EXPOSE events for InputOnly
6651         windows. This allows to enable backing store on Win32!
6652
6653         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image) : the passed
6654         in drawable is of impl type. Correct specific type checks appropriate.
6655  
6656         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data) : check 
6657         GDK_WINDOW_DESTROYED before allocating new resources.
6658
6659         * gdk/win32/gdkselection-win32.c : Handle GDK_WINDOW_DESTROYED case
6660
6661         * gdk/win32/gdkwindow-win32.c : more Gdi return value checking,
6662         (gdk_window_foreign_new) initialize parent handle.
6663         (gdk_window_destroy_notify) add GDK_IS_WINDOW check
6664
6665         * gdk/win32/gdkgeometry-win32.c (_gdk_window_move_resize_child) :
6666         Let the GDI invalidate the window on MoveWindow call to fix scrolling
6667         problems (e.g. main buttons in testgtk). 
6668
6669 Sat Nov 11 23:07:30 2000  Owen Taylor  <otaylor@redhat.com>
6670
6671         * gtk/gtkentry.c (gtk_entry_key_press): Call 
6672         gtk_widget_activate for GDK_Return.
6673
6674         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): Fix handling
6675         of preedit cursor position.
6676
6677 Sun Nov  5 04:24:53 2000  Owen Taylor  <otaylor@redhat.com>
6678
6679         * gtk/gtkcellrenderertextpixbuf.c: Make parent_class
6680         static.
6681
6682 Tue Sep 19 10:54:22 2000  Owen Taylor  <otaylor@redhat.com>
6683
6684         * modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
6685         out support for multiple locales; that simple doesn't
6686         work reliably with current Xlib
6687
6688         * gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
6689         gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c: 
6690         Add support for positioning the cursor within the preedit string.
6691
6692 Mon Sep 18 23:56:32 2000  Owen Taylor  <otaylor@redhat.com>
6693
6694         * modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
6695         at XIM input method module.
6696
6697         * gtk/gtktextview.c: Check for bindings after passing
6698         events to im context filter.
6699
6700 Mon Sep 18 11:50:51 2000  Owen Taylor  <otaylor@redhat.com>
6701
6702         * gtk/gtktextlayout.c (add_preedit_attrs): Handle
6703         empty attribute lists properly.
6704
6705 Sun Sep 17 10:08:16 2000  Owen Taylor  <otaylor@redhat.com>
6706
6707         * gtk/queryimmodules.c (main): Return non-zero exit
6708         status if errors were encountered querying any
6709         modules.
6710
6711         * modules/input/Makefile.am (moduledir): remove
6712         leftover bin program target.
6713
6714         * docs/make-todo: Fix typo in error message.
6715
6716 Sat Sep 16 14:04:30 2000  Owen Taylor  <otaylor@redhat.com>
6717
6718         * configure.in: Add modules/input/Makefile
6719
6720 Sat Sep 16 14:01:52 2000  Owen Taylor  <otaylor@redhat.com>
6721
6722         * gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
6723         don't include gtkthemes.h.
6724
6725         * gtk/testgtk.c gtk/testtext.c: Set environment variables
6726         to point
6727
6728         * gtk/Makefile.am: Add new .c and .h files, build 
6729         gtk-query-immodules and use it to create a gtk.immodules
6730         file for use of test programs.
6731
6732         * gtk/gtkpreview.c: remove extra blank line.
6733
6734 Sat Sep 16 13:21:04 2000  Owen Taylor  <otaylor@redhat.com>
6735
6736         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table): 
6737         Add the ability to add extra tables beyond the default
6738         one, and also the ability to have compose sequences 
6739         that are prefixes of other compose sequences. 
6740
6741         * gtk/gtkimcontextsimple.c: Export a preedit string which
6742         consists of possible candidates for keystrokes that have
6743         been entered but not yet committed.
6744
6745         * gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
6746         gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
6747
6748         * gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems): 
6749         Add a function to add input-method switching menu items
6750         to a menu.
6751
6752         * gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
6753         when switching input methods.
6754
6755         * gtk/gtkimcontextsimple.[ch]: Change the format of
6756         the compose table to allow compose tables of different
6757         lengths / sequence.
6758
6759 Sat Sep 16 13:05:48 2000  Owen Taylor  <otaylor@redhat.com>
6760
6761         * gtk/gtkimmodule.[ch]: Support routines for loading
6762         GtkIMContext implementations dynamically at runtime.
6763
6764         * modules/input/imcyrillic-translit.c: A sample input
6765         method (based on GtkIMContextSimple with an extra table),
6766         which demonstrates preedit strings and the module
6767         system for input modules
6768
6769         * gtk/queryimmodules.c: Program to query the available
6770         input modules and write the results into a file.
6771          
6772         * gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
6773         extra config options "im_module_file" (cache file for
6774         input method modules), and "im_module_path" - path
6775         to look for modules when generating cache file.
6776
6777         This doesn't scale.
6778
6779 Sat Sep 16 13:09:06 2000  Owen Taylor  <otaylor@redhat.com>
6780
6781         * gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the 
6782         generic code from gtkthemes into a new abstraction
6783         GtkModule which has the logic for implementing
6784         a loadable module which implements a number of 
6785         GObject types.
6786
6787 Sat Sep 16 13:07:13 2000  Owen Taylor  <otaylor@redhat.com>
6788
6789         * gtk/gtkeditable.[ch]: Convert GtkEditable from
6790         a class into an interface  
6791         
6792         * gtk/gtkoldeditable.[ch]: Move the old editable
6793         implementation into here, so legacy widgets can
6794         still rely on the implemenation. GtkOldEditable
6795         exports GtkEditable. Make selection handling
6796         code use new text conversion functions (and
6797         handle UTF-8 as a side-effect). Use GtkClipboard
6798         for CLIPBOARD.
6799
6800         * gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
6801         Adopt to match above changes.
6802
6803         * gtk/gtkentry.[ch]: Implement GtkEditable directly,
6804         avoid GtkOldEditable implementation. Restructure
6805         to reduce number of places that modify state directly.
6806         Move to GtkBindingSet. Display the preedit string.
6807         Queue recomputation of PangoLayout and scroll position
6808         to improve effiency of doing complex changes naively.
6809         Add a menu with cut/copy/paste and input method selection.
6810
6811 Thu Sep 14 22:11:05 2000  Owen Taylor  <otaylor@redhat.com>
6812
6813         * gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
6814         to set preedit string and attributes; display preedit string by
6815         inserting string and attributes at cursor when creating the
6816         GtkTextLineDisplay.
6817
6818         * gtk/gtktextlayout.c: Move all conversions between byte
6819         positions in PangoLayout and GtkTextIter into new functions
6820         line_display_iter_to_index/index_to_iter that properly
6821         handle the preedit string.
6822
6823         * gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
6824         it to return const char * (eventually will end up
6825         as GCONST char *, most likely.)
6826
6827         * gtk/gtktextview.[ch]: Handle the preedit string, call
6828         gtk_im_context_reset() as necessary, add a menu to switch
6829         input methods.
6830         
6831         * gtk/gtktextlayout.[ch]: Remove useless
6832         gtk_text_layout_get_log_attrs() function.
6833
6834 2000-11-11  Tor Lillqvist  <tml@iki.fi>
6835
6836         * gdk/gdk.def
6837         * gtk/gtk.def: Update.
6838
6839         * gdk/win32/*.c: Add last argument to g_type_register_static()
6840         calls.
6841
6842         * gdk/win32/gdkwindow-win32.c: Silence gcc -Wall.
6843
6844         * gdk/win32/gdkevents-win32.c: Handle MSH_MOUSEWHEEL messages
6845         generated by older wheel mouse drivers. Get the correct y
6846         coordinate from WM_MOUSEWHEEL messages.
6847
6848         * gdk/win32/gdkgc-win32.c (gdk_win32_cap_style_to_string,
6849         gdk_win32_fill_style_to_string, gdk_win32_function_to_string,
6850         gdk_win32_join_style_to_string, gdk_win32_line_style_to_string):
6851         Debugging functions.
6852
6853         * gdk/win32/gdkprivate-win32.h: Declare them.
6854
6855         * gdk/win32/gdkinput-win32.h: Add declaration for
6856         gdk_input_window_destroy().
6857
6858         * gtk/makefile.mingw.in: Pass -DGTK_VERSION. Add gtktreemodel.o.
6859
6860 Fri Nov 10 19:06:41 2000  Jonathan Blandford  <jrb@redhat.com>
6861
6862         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): New
6863         function to help handle keeping things in sync.
6864
6865 Fri Nov 10 12:10:34 2000  Jonathan Blandford  <jrb@redhat.com>
6866
6867         * gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
6868         BOXED marshallers.
6869
6870         * gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
6871         (gtk_list_store_class_init): use the new BOXED marshallers.
6872
6873         * gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
6874         new_with_values to new_with_types.
6875         (gtk_tree_store_get_column_type): add this.
6876         (gtk_tree_store_class_init): use the new BOXED marshallers.
6877
6878         * gtk/gtkmarshal.list: Added a number of BOXED marshallers to
6879         mirror some POINTER marshallers.
6880
6881 Thu Nov  9 11:23:22 2000  Jonathan Blandford  <jrb@redhat.com>
6882
6883         * gtk/gtktreemodel.h (struct _GtkTreeIter): added more fields to
6884         allow more interesting iterators.  Also, made the lifecycle of
6885         iterators more explicit.
6886
6887         * gtk/gtktreemodelsort.[ch]: New model for sorting.
6888
6889         * gtk/gtk-boxed.defs (GtkTreeIter, GtkTreePath): Added two boxed
6890         types.
6891
6892 2000-11-09  Alexander Larsson  <alexl@redhat.com>
6893
6894         * demos/testgtk/menus.c:
6895         Changes to make the new testgtk compile after
6896         gtk_menu_append was removed.
6897
6898         * gdk/linux-fb/gdkdrawable-fb2.c
6899         (gdk_fb_get_depth, gdk_fb_get_visual,
6900         gdk_drawable_impl_fb_class_init): Implement
6901         these drawable functions. Now GtkImages work again.
6902
6903         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Change prototype.
6904
6905         * gdk/linux-fb/gdkprivate-fb.h (_gdk_fb_get_image): Change prototype.
6906         
6907         * gdk/linux-fb/gdkmain-fb.c (fb_modes_parse_mode,
6908         gdk_fb_setup_mode_from_name, gdk_fb_set_mode, gdk_fb_display_new);
6909         Parse /etc/fb.modes, use the environment variables GDK_DISPLAY_MODE,
6910         GDK_DISPLAY_DEPTH, GDK_DISPLAY_WIDTH, GDK_DISPLAY_HEIGHT.
6911
6912 2000-11-08  Havoc Pennington  <hp@pobox.com>
6913
6914         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add visible and
6915         visible_set args, don't know where these had gone, I thought they
6916         used to be there
6917
6918         * gtk/testtext.c: Add a menu item to apply invisibility tag;
6919         now we can test the feature and see that it's totally broken.
6920
6921 2000-11-08  Havoc Pennington  <hp@pobox.com>
6922
6923         Make DND copy pixbufs and tags when source and target share a 
6924         tag table.
6925         
6926         * gtk/gtktextview.c (gtk_text_view_drag_data_get): provide the
6927         in-process GTK_TEXT_BUFFER_CONTENTS target
6928         (gtk_text_view_drag_data_received): Paste from
6929         GTK_TEXT_BUFFER_CONTENTS if we receive it.
6930
6931 2000-11-08  Alexander Larsson  <alexl@redhat.com>
6932
6933         * docs/Changes-2.0.txt: Add note about GtkMenuPositionFunc
6934         API changes.
6935
6936         * gtk/gtkmenu.c: Add support for scrolling menus.
6937         Remove gtk_menu_append/prepend/insert, these have been moved to
6938         gtkcompat.h as #defines.
6939
6940         * gtk/gtkcompat.h.in:
6941         Add compatibility #defines for gtk_menu_append/prepend/insert
6942
6943         * gtk/gtkmenu.h: Add data needed for scrolling menus.
6944         GtkMenuPositionFunc gets an extra argument push_in.
6945         gtk_menu_append/prepend/insert removed.
6946         
6947         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Change menu
6948         positioning behaviour to fit to scrolling menus.
6949
6950         * gtk/gtkmenuitem.c (gtk_menu_item_forall): Don't recurse
6951         into menuitem->submeny. That is wrong, and broke torn
6952         off submenus of torn off menus, since they were unrealized
6953         when the first menu was unrealized.
6954
6955         * gtk/gtkmenushell.[ch]: Virtualize gtk_menu_shell_insert() and
6956         gtk_menu_shell_select_item() since these need to be overridden in
6957         GtkMenu.
6958
6959         * gtk/gtkoptionmenu.c (gtk_opttion_menu_position): Change menu
6960         positioning behaviour to fit to scrolling menus.
6961         (gtk_option_menu_key_press, gtk_option_menu_button_press): Select
6962         the current item so that it is prelighted when the menu pops up.
6963         This is a workaround to the fact that the menu doesn't get the
6964         initial enter event (due to grabs).
6965
6966         * gtk/gtkfilesel.c, gtk/gtkinputdialog.c, gtk/testgtk.c:
6967         s/gtk_menu_append/gtk_menu_shell_append/
6968
6969         * gtk/gtknotebook.c:
6970         s/gtk_menu_insert/gtk_menu_shell_insert/
6971
6972         * gtk/testgtk.c (create_menu, create_menus):
6973         Create the first menu with 50 items so that menu scrolling
6974         can be tested.
6975         
6976         
6977         Patch from Jonathan Blandford  <jrb@redhat.com>
6978
6979         * gtk/gtkmenuitem.[ch] (gtk_menu_item_toggle_size_request): new
6980         system to handle size requests.  First, we ask what the size of
6981         the toggle is.  Then, when allocating the size, we allocate the
6982         toggle_size first.  This way we can have multiple menu-item
6983         classes w/o needing a seperate class for each.
6984
6985         * gtk/gtkmenu.c (gtk_menu_size_request): Actually use the new system.
6986         * gtk/gtkmenu.c (gtk_menu_size_allocate): Use the new system.
6987
6988         * gtk/gtkcheckmenuitem.c
6989         (gtk_check_menu_item_toggle_size_request): New function to handle
6990         the toggle size-request.
6991
6992 2000-11-07  Havoc Pennington  <hp@redhat.com>
6993
6994         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location):
6995         Half-ass somewhat fix this function, so that scrolling to the
6996         insertion point works. Pango hacking is in the future to really
6997         fix it.
6998
6999         * gtk/gtktextview.c (gtk_text_view_drag_data_get): Don't calculate
7000         length of data, no longer used.
7001
7002         * gtk/gtktextbuffer.c (gtk_text_buffer_finalize): move destroy
7003         method contents in here, get rid of destroy method
7004         (gtk_text_buffer_insert_range): Fix some g_return_if_fail checks
7005         that were backward. Remove debug spew.
7006         (cut_or_copy): Make the clipboard work with insert_range to
7007         preserve tags and pixbufs, not just the primary selection.
7008
7009 2000-11-07  Havoc Pennington  <hp@redhat.com>
7010
7011         * gtk/gtktextmark.c (gtk_text_mark_is_visible): rename 
7012         to gtk_text_mark_get_visible
7013
7014         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): fix
7015         bug that was generating an invalid iterator
7016
7017         * gtk/gtktextiter.c (gtk_text_iter_get_offset): move call to
7018         ensure_char_offsets() in front of code placing the iter in an
7019         invalid state.
7020
7021         * gtk/gtktextbuffer.c (gtk_text_buffer_paste_primary):
7022         make override_location arg const
7023         (paste): Replace the selection if we paste into the 
7024         current selection
7025
7026         * gtk/gtkselection.h: Remove "GtkSelectioData"
7027         (struct _GtkSelectionData): move the definition here.
7028
7029         * gtk/gtktextbuffer.c (gtk_text_buffer_update_primary_selection):
7030         Export the GTK_TEXT_BUFFER_CONTENTS target for in-process copies
7031
7032         * gtk/gtktextiter.c (gtk_text_iter_get_tags): New function
7033
7034         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_range): implement
7035         (gtk_text_buffer_insert_range_interactive): implement
7036         (gtk_text_buffer_get_tags): Remove, replaced by
7037         gtk_text_iter_get_tags()
7038
7039         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Add a search
7040         limit parameter, to avoid infinite linear scan.
7041         (gtk_text_iter_backward_search): Add search limit
7042         (gtk_text_iter_forward_find_char): Add search limit
7043         (gtk_text_iter_backward_find_char): Add search limit
7044
7045 2000-11-07  Alexander Larsson  <alla@lysator.liu.se>
7046
7047         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
7048         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkimage-fb.c,
7049         gdk/linux-fb/gdkpango-fb.c, gdk/linux-fb/gdkpixmap-fb.c,
7050         gdk/linux-fb/gdkwindow-fb.c:
7051         use g_object_new() instead of g_type_create_instance() which
7052         is a private function for fundamental type implementations.
7053
7054         * gdk/linux-fb/gdkinput-ps2.c:
7055         Use MEDIUMRAW instead of RAW keycodes. Remove keyboard state-table
7056         instead just store the current modifier state. Add a (somewhat broken)
7057         keyboard input parser for XLATE mode too, if we couldn't use MEDIUMRAW.
7058         Rename exported function gdk_input_ps2_get_mouseinfo to
7059         gdk_input_get_mouseinfo.
7060
7061         * gdk/linux-fb/gdkmain-fb.c, gdk/linux-fb/gdkprivate-fb.h,
7062         gdk/linux-fb/gdkwindow-fb.c:
7063         gdk_input_ps2_get_mouseinfo was renamed to gdk_input_get_mouseinfo.
7064         
7065
7066 2000-11-02  Havoc Pennington  <hp@redhat.com>
7067
7068         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
7069         use stock buttons. Should be 100% source compatible, appropriate
7070         filesel fields now point to dialog->vbox and dialog->action_area.
7071         On the bizarre side, dialog->action_area and filesel->action_area
7072         are not the same widget.
7073         (gtk_file_selection_init): Put some padding around the selection
7074         entry, so it isn't touching the GtkDialog separator.    
7075
7076         * gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog, 
7077         use stock buttons, etc. Should also be source compatible.
7078         Set the dialog default title in _init not _new().
7079         
7080         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
7081         Use stock buttons; don't put a button box inside the existing
7082         dialog button box. Don't bother with push/pop colormap anymore.
7083
7084         * gtk/gtkdialog.h (GtkResponseType): Add a bunch of more 
7085         specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
7086         for message dialog, and necessary for the font selection and color
7087         selection with help and apply buttons.
7088         
7089         * gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer 
7090         to the created button widget. Set GTK_CAN_DEFAULT on the button.
7091         (gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
7092         between buttons, put less padding around the action area.
7093         (gtk_dialog_run): Exit on unmap rather than on destroy. 
7094         This will also exit the loop if the widget is hidden.
7095         (gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
7096         instead of GTK_RESPONSE_NONE; since we're already adding a bunch
7097         of GTK_RESPONSE_* stuff, this seems cleaner, and lets you 
7098         special-case delete event.
7099
7100         * gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
7101         formatting
7102         
7103 Sun Nov  5 05:32:39 2000  Tim Janik  <timj@gtk.org>
7104
7105         * gtk/testgtk.c (uposition_stop_configure): provide a toggle
7106         button to temporarily disable position recording in the
7107         "saved position" test.
7108
7109 Sat Nov  4 05:37:17 2000  Tim Janik  <timj@gtk.org>
7110
7111         * gtk/gtkthemes.c: added compat code that temporarily implements
7112         GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
7113         going to be revamped by owen's upcoming GtkModule patches, but
7114         untill then people want gtk to build, right? ;)
7115
7116 2000-11-04  Havoc Pennington  <hp@pobox.com>
7117
7118         * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member
7119         list
7120
7121         * docs/Changes-2.0.txt: Add note about
7122         gtk_container_get_toplevels()
7123
7124         * gtk/gtktextview.h: formatting
7125         
7126         * gtk/gtktextview.c: don't start descriptions with "Returns",
7127         confuses gtk-doc
7128
7129 Sat Nov  4 10:12:27 2000  Owen Taylor  <otaylor@redhat.com>
7130
7131         * autogen.sh: When doing sanity checking on ACLOCAL_FLAGS,
7132         look for glib-2.0.m4 not glib.m4. (Ali Abdin)
7133
7134 2000-11-03  Havoc Pennington  <hp@redhat.com>
7135
7136         * gtk/gtktexttagtable.c: Docs
7137         (gtk_text_tag_table_size): return a signed int
7138
7139         * gtk/gtktexttag.c: s/tkxt/text/g; write documentation
7140         (gtk_text_tag_event): make the event_object a GObject
7141
7142         * gtk/gtktextview.c: Write API docs for all functions.
7143
7144         * gtk/gtktextview.h: add GTK_TEXT_WINDOW_PRIVATE as return value
7145         for gtk_text_view_get_window_type() called on one of the private
7146         windows.
7147
7148         * gtk/gtktextview.c: Instead of accessing text_view->buffer
7149         directly, call get_buffer() which demand-creates a default
7150         buffer. So gtk_text_view_new() can be used to create a view with a
7151         default buffer in it, if you just want an empty text box users can
7152         put data in. Useful for GUI builders also.
7153
7154 2000-11-03  Pablo Saratxaga <pablo@mandrakesoft.com>
7155
7156         * gtk/gtkrc.zh_TW.*: moved gtkrc.zh_TW.Big5 to gtkrc.zh_TW.big5;
7157         the charset encodign portion MUST be in lowercase.
7158         * gtk/gtkrc.az: added file for Azeri language
7159
7160 2000-11-03  Havoc Pennington  <hp@redhat.com>
7161
7162         Get widgets working on the btree/buffer side. Display of them 
7163         still doesn't work.
7164         
7165         * gtk/gtktextview.c: start implementing child widget stuff
7166
7167         * gtk/gtktextiter.c (gtk_text_iter_get_child_anchor): new function
7168
7169         * gtk/gtktextlayout.c: handle embedded widgets
7170
7171         * gtk/gtktextdisplay.c: handle embedded widgets
7172
7173         * gtk/gtktextchild.c: Implement all the child anchor goo
7174
7175         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor): New
7176         function
7177
7178         * gtk/gtktextbtree.c: Add child anchor table to the btree struct
7179         (insert_pixbuf_or_widget_segment): abstract out common portions of 
7180         creating a child anchor or a pixbuf segment.
7181         (gtk_text_btree_create_child_anchor): new function
7182         (gtk_text_btree_unregister_child_anchor): new function
7183
7184         * gtk/gtkmarshal.list: added VOID:OBJECT,INT,INT for the
7185         allocate_child signal on GtkTextLayout
7186
7187         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): fix bogus return
7188         values
7189         (gtk_text_iter_get_child_anchor): new function
7190
7191         * gtk/gtktextbuffer.c (gtk_text_buffer_real_changed): Add a
7192         default handler for the changed signal, which calls
7193         gtk_text_buffer_set_modified(), instead of just always emitting
7194         changed then calling set_modified() manually. I guess this is
7195         maybe more flexible. It seems logical.
7196
7197 Fri Nov  3 08:58:38 2000  Tim Janik  <timj@gtk.org>
7198
7199         * gtk/gtkobject.c: _g_signal_handlers_destroy() is prefixed with '_'
7200         now.
7201
7202         * gtk/gtksignal.c: use g_signal_connect_closure_by_id() now.
7203
7204 Thu Nov  2 14:10:51 2000  Owen Taylor  <otaylor@redhat.com>
7205
7206         * gdk/x11/gdkdnd-x11.c: Fix a bunch of functions that should have
7207         been marked static.
7208
7209 2000-11-02  Havoc Pennington  <hp@redhat.com>
7210
7211         * gtk/testgtk.c (create_labels): had a test backward
7212
7213         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Copy the client-side GC
7214         fields, so the dest GC ends up with the correct clip origin, 
7215         etc. Fixes a bug where colored labels didn't redraw 
7216         properly.
7217
7218 2000-11-02  Alexander Larsson  <alexl@redhat.com>
7219
7220         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
7221         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkpango-fb.c,
7222         gdk/linux-fb/gdkpixmap-fb.c, gdk/linux-fb/gdkwindow-fb.c:
7223         Add last argument to t_type_register_static call.
7224         
7225         * gdk/linux-fb/gdkdrawable-fb2.c:
7226         Add last argument to t_type_register_static call.
7227         export the get_image drawable virtual function.
7228
7229         * gdk/linux-fb/gdkimage-fb.c:
7230         Add last argument to t_type_register_static call.
7231         rename gtk_image_get to _gdk_fb_get_image and
7232         export it for use by gdkdrawable-fb2.
7233
7234         * gdk/linux-fb/gdkprivate-fb.h:
7235         export _gdk_fb_get_image.
7236
7237         * gdk/linux-fb/gdkselection-fb.c:
7238         Add new api call stubs.
7239
7240         * gtk/Makefile.am:
7241         Missing ( in linux-fb part.
7242
7243         * modules/linux-fb/Makefile.am:
7244         Must link with gdk_pixbuf or get unresolved symbol.
7245
7246 2000-11-01  Havoc Pennington  <hp@pobox.com>
7247
7248         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Use 
7249         GTK_TYPE_TEXT_ITER and BOXED marshallers
7250
7251         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): ditto
7252
7253         * gtk/gtktexttag.c (gtk_text_tag_class_init): ditto
7254         
7255         * gtk/gtk-boxed.defs: add GtkTextIter
7256
7257         * gtk/gtkmarshal.list: Add marshallers for text widget that 
7258         properly use OBJECT and BOXED
7259
7260 2000-11-01  Havoc Pennington  <hp@redhat.com>
7261
7262         * gtk/testgtk.c (create_labels): Test set_markup_with_accel()
7263
7264         * gtk/gtklabel.c (set_markup): Convert the unichar to a GDK keyval
7265         before returning it. 
7266         
7267 2000-11-01  Havoc Pennington  <hp@redhat.com>
7268
7269         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
7270         Clip the rectangle to be rendered to the drawable, since
7271         get_from_drawable() requires a region within the drawable
7272
7273 2000-11-01  Havoc Pennington  <hp@redhat.com>
7274
7275         * gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
7276         from coordinates.
7277
7278 Wed Oct 25 20:10:57 2000  Owen Taylor  <otaylor@redhat.com>
7279
7280         * gdk/gdkevents.c (gdk_event_copy): Only ref the window if
7281         it isn't NULL.
7282
7283 2000-11-01  Havoc Pennington  <hp@pobox.com>
7284
7285         * gtk/gtklabel.c (gtk_label_set_attributes): Set a PangoAttrList
7286         on a label
7287         (gtk_label_finalize): unref the attr list if any.
7288
7289         * gtk/testgtk.c (create_get_image): close test on second click
7290         (make_message_dialog): close dialog if it exists
7291
7292         * gdk/gdkpango.c (gdk_draw_layout): Handle rise attribute
7293
7294         * gdk-2.0.pc.in (Requires): Make it require gdk-pixbuf-2.0 not
7295         gdk-pixbuf
7296
7297         * gtk/gtklabel.c (gtk_label_set_markup): new function to set label
7298         from Pango markup format
7299         (gtk_label_set_markup_with_accel): ditto but with accelerator
7300         parsing
7301
7302         * gtk/gtkimage.c (gtk_image_expose): reformatting.
7303
7304         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable): Hack to
7305         reflect current state of GDK - use gdk_drawable_get_colormap, etc.
7306         Check GDK_IS_WINDOW() not !GDK_IS_PIXMAP() to decide whether to 
7307         call gdk_window_get_origin().
7308
7309         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
7310         implement GDK_PIXBUF_ALPHA_FULL
7311         
7312 Wed Nov  1 03:43:42 2000  Tim Janik  <timj@gtk.org>
7313
7314         * gtk/gtksignal.c (gtk_signal_compat_matched): make use of
7315         g_signal_handlers_block_matched, g_signal_handlers_unblock_matched and
7316         g_signal_handlers_disconnect_matched to block/unblock and disconnect
7317         multiple handlers respectively, instead of only treating the
7318         first handler found (bug reported by owen).
7319
7320 Mon Oct 30 19:23:50 2000  Jonathan Blandford  <jrb@redhat.com>
7321
7322         * gtk/gtktreeview.c (gtk_tree_view_expand_row): New function.
7323
7324         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): New function.
7325
7326         * gtk/gtktreeview.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c
7327         gtk/gtktreestore.h, gtk/gtktreeview.h, gtk/gtktreeviewcolumn.c,
7328         gtk/gtktreeviewcolumn.h: Fixed inline docs.
7329
7330         * docs/reference/gtk/tree_widget.sgml: Proto intro to the tree
7331         widget.  Needs writing someday.
7332
7333         * docs/reference/gtk/tmpl/gtktree*sgml: Added the tree widget to
7334         the docs.
7335
7336 2000-10-30  Havoc Pennington  <hp@redhat.com>
7337
7338         * gtk/gtktextview.h, gtk/gtktextview.c:
7339         Rename delete_at_cursor delete_from_cursor, and 
7340         move to move_cursor.
7341
7342 2000-10-30  Havoc Pennington  <hp@redhat.com>
7343
7344         * gtktextbtree.c, gtktextbtree.h, gtktextbuffer.c,
7345         gtktextbuffer.h, gtktextchild.c, gtktextchild.h,
7346         gtktextchildprivate.h, gtktextdisplay.c, gtktextdisplay.h,
7347         gtktextiter.c, gtktextiter.h, gtktextiterprivate.h,
7348         gtktextlayout.c, gtktextlayout.h, gtktextmark.c, gtktextmark.h,
7349         gtktextmarkprivate.h, gtktextsegment.c, gtktextsegment.h,
7350         gtktexttag.c, gtktexttag.h, gtktexttagprivate.h,
7351         gtktexttagtable.c, gtktexttagtable.h, gtktexttypes.c,
7352         gtktexttypes.h, gtktextview.c, gtktextview.h:
7353
7354         Massive reindentation and reformatting. Arg alignment and comments
7355         still need fixing in various places.
7356
7357 2000-10-30  Havoc Pennington  <hp@redhat.com>
7358
7359         * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals
7360         to be named insert_at_cursor and delete_at_cursor so C++ can
7361         handle them.
7362
7363 2000-10-28  Tor Lillqvist  <tml@iki.fi>
7364
7365         * gtk/gtkrc.c (gtk_rc_append_default_module_path): Make sure not
7366         to get a double directory separator in case the home directory
7367         ends with one. This would cause trouble especially on Windows,
7368         where the path will be confused with the syntax for an an UNC
7369         (network share) path \\server\share\path.
7370         (gtk_rc_add_initial_default_files): Ditto.
7371
7372 Sat Oct 28 02:33:09 2000  Robert Brady  <robert@suse.co.uk>
7373
7374         * gtk/gtkmarshal.list: add new marshallers for GtkTextView.
7375
7376         * gtk/gtktextview.c: Use correct marshallers.
7377
7378 Fri Oct 27 17:56:26 2000  Jonathan Blandford  <jrb@redhat.com>
7379
7380         * gtk/gtkliststore.c: Not sure how this ever worked.  Fixed it to
7381         use new iter stuff, and added all the appropriate signals et al.
7382
7383         * gtk/gtktreedatalist.h: s/gtk/_gtk to further reinforce that this
7384         code is internal to gtk only.
7385
7386 2000-10-28  Tor Lillqvist  <tml@iki.fi>
7387
7388         * gtk/gtk.def
7389         * gtk/makefile.{mingw,msc}.in: Adjust to Tim's changes. Use
7390         glib-genmarshal etc.
7391
7392 Fri Oct 27 20:15:00 2000  Tim Janik  <timj@gtk.org>
7393
7394         * gtk/Makefile.am: added dependancies for testtextbuffer which broke
7395         parallel builds.
7396
7397 Fri Oct 27 18:51:44 2000  Tim Janik  <timj@gtk.org>
7398
7399         * gtk/gtksignal.[hc]: adapt to GSignal signature changes.
7400
7401 2000-10-27  Robert Brady  <robert@suse.co.uk>
7402
7403         * configure.in (ALL_LINGUAS): Add en@IPA (English, phonetic), 
7404         en_GB (British), ia (Interlingua).
7405
7406 2000-10-26  Havoc Pennington  <hp@redhat.com>
7407
7408         * gtk/gtktextiter.c (my_strrstr): fix constness warning
7409
7410         Fixed output of:
7411         nm -g -l .libs/libgtk-x11-1.3.so | grep ' T ' | grep -v gtk_ | grep -v GTK_
7412         
7413         * gtk/gtktextsegment.c (char_segment_new): rename
7414         (_char_segment_new_from_two_strings): rename
7415         (_toggle_segment_new): rename
7416         
7417         * gtk/gtkclipboard.c (ensure_clipboard_widget): make this static
7418         (make_clipboard_widget): make it static
7419         (text_get_func): static
7420         (text_clear_func): static
7421
7422         * gtk/gtkcolorsel.c (adjustment_changed): make this function
7423         static
7424         (hex_changed): make it static
7425         (hsv_changed): make it static
7426         (opacity_entry_changed): make it static
7427
7428         * gtk/gtktextbtree.c (change_node_toggle_count): rename with _gtk
7429         (toggle_segment_check_func): rename with _gtk
7430
7431         * gtk/gtktextchild.c (_pixbuf_segment_new): rename with _gtk
7432         (_widget_segment_new): rename
7433         (_widget_segment_add): rename
7434         (_widget_segment_remove): rename
7435         (_widget_segment_ref): rename
7436         (_widget_segment_unref): rename
7437
7438         * gtk/gtktextmark.c (_mark_segment_new): Rename
7439         _gtk_mark_segment_new   
7440
7441 2000-10-26  Havoc Pennington  <hp@redhat.com>
7442
7443         * gtk/gtkmarshal.list: add new marshallers used by the text widget
7444         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
7445         types
7446
7447         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
7448         marshaller types
7449
7450         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
7451         gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
7452         license on these files.
7453
7454         * gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
7455         work.
7456
7457         * gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to 
7458         runtime random number different for each tree, instead of 
7459         a constant I made up.
7460
7461 Thu Oct 26 07:36:16 2000  Tim Janik  <timj@gtk.org>
7462
7463         * gtk/Makefile.am: buncha cleanups, kludged build sources
7464         dependencies with a Makefile: oldest-source-stamp dependancy
7465         for the moment. automake is really fighting us here, with
7466         intentionally not allowing user-defined rules or dependancies
7467         prior to it's -include $(DEP_FILES) statement. sucks rocks!
7468
7469         * gtk/Makefile.am: added gtktextlayout.h and gtktextdisplay.h
7470         to public headers. tehy have a comment stating that they are
7471         "semi-public" aren't included by gtk.h and if enums popup there,
7472         they can be /*< skip >*/-ed.
7473
7474         * gtk/gtktextlayout.h: 
7475         * gtk/gtktextdisplay.h: indentation fixes, comment fixes,
7476         added LGPL... <SIGH>
7477
7478 Wed Oct 25 20:40:25 2000  Jonathan Blandford  <jrb@redhat.com>
7479
7480         * gtk/gtktreemodel.h: Got rid of GtkTreeNode, and changed it to
7481         GtkTreeIter.  Added iterators everywhere.
7482
7483         * gtk/gtktreeviewcolumn.c: Changed to use the iterators.
7484
7485         * gtk/gtktreeviewselection.c: Changed to use the iterators.
7486
7487         * gtk/gtktreestore.c: Changed to use the iterators.
7488
7489         * gtk/gtkliststore.c: Commented out the code.  Will convert to
7490         iterators tomorrow.
7491
7492         * gtk/gtkmodelsimple.c: Commented out the code.  Will convert to
7493         iterators tomorrow.
7494
7495         * gtk/treestoretest.c: Changed to use iterators.
7496
7497         * demos/testgtk/main.c: Moved to use the new iterator system.
7498
7499 Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>
7500
7501         * gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
7502         localization misbehaviour.
7503
7504         * gtk/gtk-boxed.defs: nuked "boxed" type GtkCTreeNode, since it's
7505         a useless type without copy/free.
7506
7507         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_TYPE_POINTER instead
7508         of GTK_TYPE_CTREE_NODE.
7509
7510 Thu Oct 26 00:51:52 2000  Tim Janik  <timj@gtk.org>
7511
7512         * gtk/gtksignal.c:
7513         (gtk_signal_emitv): use g_value_set_static_{string|boxed} where
7514         applicable.
7515
7516         * gtk/gtk-boxed.defs (GtkSelectionData): specify
7517         gtk_selection_data_copy and gtk_selection_data_free
7518         do GtkSelectionData work as params in signals.
7519
7520 Wed Oct 25 20:47:41 2000  Tim Janik  <timj@gtk.org>
7521
7522         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
7523         implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
7524         couldn't they at least give it a non-standard name?
7525         
7526         * gtk/gtktextlayout.c: arg! yet another implementation of
7527         gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
7528
7529         * gtk/gtktextbuffer.c: gotcha! captured a vagabonding
7530         gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
7531         home. now i know this _is_ a conspiracy.
7532
7533         * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
7534         ::state-changed.
7535
7536         * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): 
7537         (gtk_accel_group_create_add): marshaller signature fixups.
7538
7539         * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
7540         pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
7541
7542         * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
7543         anymore.
7544
7545 Tue Oct 24 23:59:21 2000  Tim Janik  <timj@gtk.org>
7546
7547         * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
7548         due to the signal system changes, it wouldn't build currently. to
7549         be fixed soon.
7550
7551         * docs/Changes-2.0.txt: GtkSignal/GSignal updates.
7552
7553         * gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
7554         so it needs gtk_marshal_VOID__ENUM() instead of
7555         gtk_marshal_NONE__UINT().
7556
7557         * gdk/gdk*.c: adapted type registration functions.
7558
7559         * gtk/gtkbindings.c:
7560         * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
7561         gone.
7562
7563         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
7564
7565         * gtk/gtkobject.c:
7566         (gtk_object_destroy):
7567         (gtk_object_shutdown): fixed recursion guards. basically we have to
7568         catch the case where any of GObject.shutdown() or gtk_object_destroy()
7569         is called during ::destroy, and avoid recursion there.
7570
7571         * gtk/gtktypeutils.c:
7572         * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
7573         boxed_copy/boxed_free. this needs a more general solution based on a
7574         publically installed code-generator utility.
7575
7576         * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
7577         glib's gobject has support for that now.
7578         define GtkSignalMarshaller in terms of GSignalCMarshaller.
7579
7580 Mon Oct 23 09:36:42 2000  Tim Janik  <timj@gtk.org>
7581
7582         * gtk/gtksignal.[hc]:
7583         * gtk/gtkmarshal.[hc]:
7584         * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
7585         compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
7586         removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
7587         care of that.
7588
7589         * *.c: marshaller name fixups.
7590
7591         * gtk/gtkmarshal.list: added a comment briefing the format.
7592
7593 Sun Oct 22 23:14:39 2000  Tim Janik  <timj@gtk.org>
7594
7595         * gtk/gtksignal.[hc]: nuked old implementation. we mostly have
7596         compatibility macros here now. more specifically, most of
7597         the API is preserved (yes, _most_, nonwithstanding the
7598         following exceptions listed, the API is stil lHUGE ;)
7599         things that got removed completely:
7600         GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
7601         gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
7602         gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
7603         gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
7604         gtk_signal_remove_emission_hook().
7605         non-functional functions variants:
7606         gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
7607         the GtkCallbackMarshal argument to gtk_signal_connect_full() is
7608         not supported anymore.
7609         (gtk_signal_compat_matched): new internal function to aid
7610         implementation of the compatibility macros, it  provides
7611         functionality to block/unblock/disconnect handlers based
7612         on func/data.
7613
7614         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
7615
7616         * *.c: adaptions to new type registration API signatures.
7617
7618 Fri Oct 20 15:26:33 2000  Tim Janik  <timj@gtk.org>
7619
7620         * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
7621
7622 2000-10-25  Robert Brady  <robert@suse.co.uk>
7623
7624         * gdk/x11/gdkproperty-x11.c (gdk_property_get, gdk_property_change,
7625         gdk_property_delete): If window == NULL, assume the root window.
7626         (restoring the behaviour that was in 1.2).
7627         
7628         * gtk/testtext.c (save_buffer): Allow creation of new files when
7629         saving.
7630
7631         (fill_file_buffer): Don't die if a UTF-8 sequence is split across
7632         calls to read().
7633
7634 2000-10-25  Tor Lillqvist  <tml@iki.fi>
7635
7636         * gdk/gdkwindow.c: Include x11/gdkx.h only when building for X11.
7637
7638         * gdk/win32/gdkdrawable-win32.c
7639         * gdk/win32/gdkimage-win32.c
7640         * gdk/win32/gdkprivate-win32.h: Corresponding changes as in the
7641         X11 backend.
7642
7643         * gdk/win32/gdkcc-win32.c
7644         * gdk/win32/gdkcolor-win32.c
7645         * gdk/win32/gdkfont-win32.c
7646         * gdk/win32/gdkinput-win32.c
7647         * gdk/win32/gdkmain-win32.c
7648         * gdk/win32/gdkproperty-win32.c: Silence gcc -Wall.
7649
7650 2000-10-24  Havoc Pennington  <hp@redhat.com>
7651
7652         * gtk/gtktextview.c (gtk_text_view_scroll_to_mark_adjusted): make
7653         it a static function
7654
7655         * gtk/gtktextbtree.c (gtk_text_btree_tag): Gee, maybe we should
7656         redraw text when a tag is applied to it.
7657
7658         * gtk/gtktexttag.c (gtk_text_tag_affects_size)
7659         (gtk_text_tag_affects_nonsize_appearance): private functions to
7660         see if a tag requires various kinds of redraw/layout to be queued
7661         up.
7662
7663         * gtk/gtktexttag.h (struct _GtkTextTag): Remove relief crackrock
7664
7665         * gtk/testtext.c (fill_example_buffer): Put the cursor 
7666         at the start of the buffer, so search works by default
7667
7668         * gtk/gtktextiter.c (lines_match): init match_start always
7669
7670         * gtk/gtktextbuffer.c (gtk_text_buffer_get_iter_at_line_index): New
7671         function, get iter at a line + a byte index
7672
7673         * gtk/gtktextiter.c (gtk_text_iter_set_line_index): New function,
7674         to set byte position within a line
7675         (gtk_text_iter_check): remove leftover G_BREAKPOINT thing
7676
7677 2000-10-23  Havoc Pennington  <hp@redhat.com>
7678
7679         * gtk/testtext.c: Re-enable the "find" dialog
7680
7681         * gtk/testgtk.c: Add test for gdk_drawable_get_image
7682         
7683         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix bug where
7684         the arguments to gdk_draw_drawable were in the wrong order
7685         (gdk_window_paint_init_bg): This function was ignoring the
7686         init_region, instead of clipping to it, so the entire backing
7687         pixmap was cleared on every begin_paint()
7688         (gdk_window_begin_paint_region): Hmm, the same list-walking bug
7689         was in here again, the loop kept using the same GtkWindowPaint
7690         over and over.
7691         (gdk_window_begin_paint_region): Fix a bug where we had two
7692         x_offset instead of x_offset and y_offset
7693
7694         * gdk/gdkdraw.c (gdk_drawable_get_image): get composite drawable
7695         before we get the image.
7696         (gdk_draw_drawable): get the composite before we draw the drawable.
7697         (gdk_drawable_real_get_composite_drawable): default
7698         get_composite_drawable implementation that returns the drawable 
7699         itself
7700
7701         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Add
7702         get_composite_drawable virtual function
7703
7704         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix a cheesy
7705         list-walking bug
7706
7707         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable): Add a hack to
7708         make this work if the source drawable is a GdkDrawableImplX11
7709         instead of a public drawable type. This is really broken; the
7710         problem is that GdkDrawable needs a virtual method get_xid(), but
7711         of course that doesn't work in practice. Enter RTTI.
7712
7713         Also, improve mismatched depth message.
7714
7715         * gdk/gdkpixmap.c (gdk_pixmap_get_image): Implement get_image for
7716         GdkPixmap
7717
7718         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_class_init):
7719         install _gdk_x11_get_image as our implementation of get_image
7720         
7721         * gdk/x11/gdkimage-x11.c (gdk_image_get): Rename to
7722         _gdk_x11_get_image and export for use in gdkdrawable-x11.c
7723
7724         * gdk/gdkimage.c (gdk_image_get): Make this just a wrapper around
7725         gdk_drawable_get_image
7726
7727         * gdk/gdkdraw.c (gdk_drawable_get_image): call virtual get_image
7728
7729         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Virtualize
7730         get_image
7731
7732         * gtk/gtktreestore.c (gtk_tree_store_get_node): remove weird
7733         trailing semicolon after for loop
7734
7735 Mon Oct 23 12:07:57 2000  Owen Taylor  <otaylor@redhat.com>
7736
7737         * gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
7738         where font_desc for widget's context lagged widget's font_desc by
7739         one step.
7740
7741 2000-10-22  Tor Lillqvist  <tml@iki.fi>
7742
7743         * gdk/win32/gdkgc-win32.c
7744         * gdk/win32/gdkimage-win32.c: Remove gcc -Wall warnings.
7745
7746         * gtk/makefile.mingw.in
7747         * gtk/gtk.def: Updates.
7748
7749         * gtk/testgtk.c: sleep() is called _sleep in MS's C
7750         library.
7751
7752         * gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
7753
7754         * gtk/makefile.msc: Remove
7755
7756         * gtk/makefile.msc.in: New file, like makefile.mingw.in.
7757
7758         * gtk/Makefile.am: Add it.
7759
7760         * configure.in: Generate it.
7761
7762         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
7763         * gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
7764         something even if not implemented, to satisfy picky MSVC.
7765
7766         Patches by Hans Breuer:
7767         
7768         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_glyphs): Call
7769         SetBkMode() and SetTextAlign() before calling
7770         pango_win32_render().
7771
7772         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values):
7773         Set hcliprgn to NULL after destroying it.
7774         (gdk_gc_set_clip_rectangle): Delete hcliprgn and set to NULL.
7775
7776         * gdk/win32/gdkgeometry-win32.c
7777         (_gdk_windowing_window_queue_antiexpose): More effective
7778         implementation.
7779
7780         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use drawable's
7781         depth as default, not the visual's.
7782
7783         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Guard
7784         against empty title.
7785
7786         * gdk/win32/gdkprivate-win32.h: Define a helper macro,
7787         IMAGE_PRIVATE_DATA.
7788
7789         * gdk/win32/gdkimage-win32.c: Use it.
7790
7791 2000-10-22  Robert Brady  <robert@suse.co.uk>
7792
7793         * configure.in: Check for bind_textdomain_codeset
7794
7795         * gtk/gtkmain.c (gtk_init_check): If bind_textdomain_codeset 
7796         present, make use of it.
7797
7798         Add a translatable string "default:LTR" which, if translated
7799         to "default:RTL", will cause the default direction to be
7800         Right-to-Left.
7801
7802         * gtk/gtkrange.h, gtk/gtkrange.c: Take into account the widget 
7803         direction if marked as flippable.
7804
7805         * gtk/gtkhscale.c: Mark widget as flippable.
7806         
7807 2000-10-04  Havoc Pennington  <hp@redhat.com>
7808
7809         * gtk/testgtk.c (create_buttons): create some stock buttons
7810         with the default accel group
7811         (create_image): test some new GtkImage features
7812         (make_message_dialog): test GtkMessageDialog
7813         (create_modal_window): fix someone's bizzarro indentation
7814
7815         * gtk/gtkwindow.h, gtk/gtkwindow.c: Implement 
7816         GTK_WIN_POS_CENTER_ON_PARENT. 
7817         Add "destroy with parent" setting, which means the window goes
7818         away with its transient parent.
7819         (gtk_window_get_default_accel_group): get the default accel group
7820         for the window.
7821         (gtk_window_set_destroy_with_parent): set/unset destroy with
7822         parent flag
7823         (gtk_window_read_rcfiles): invalidate icon set caches
7824         after reloading rcfiles 
7825
7826         * gtk/gtkenums.h (GtkWindowPosition): add
7827         GTK_WIN_POS_CENTER_ON_PARENT, which centers a dialog 
7828         on its parent window when the dialog is mapped for the first time.
7829
7830         * gtk/gtkmessagedialog.h, gtk/gtkmessagedialog.c: Add 
7831         a simple message dialog class
7832         
7833         * gtk/gtkdialog.c (gtk_dialog_init): Connect delete event 
7834         handler to emit response signal, and maybe later it would
7835         honor a hide_on_delete flag - though that isn't there yet.
7836         Set border width on the vbox to 2, so we get some padding.      
7837         Use a button box for the action area.
7838         (gtk_dialog_key_press): synthesize a delete event if Esc
7839         is pressed and the GtkWidget key press handler didn't 
7840         handle the escape key.
7841         (gtk_dialog_new_with_buttons): new function creates a dialog
7842         with some default buttons in it.
7843         (gtk_dialog_add_action_widget): add an activatable widget
7844         as a button in the dialog - you can also add a non-activatable
7845         widget by accessing the action area directly.
7846         (gtk_dialog_add_button): add a simple button - stock ID or 
7847         label - to the action area
7848         (gtk_dialog_response): emit response signal
7849         (gtk_dialog_run): block waiting for the dialog, return 
7850         the response. Override normal delete_event behavior, so that 
7851         delete_event does nothing inside gtk_dialog_run().
7852
7853         * gtk/gtkdialog.h, gtk/gtkdialog.c: Add "response" signal
7854         emitted when an action widget is clicked or the dialog gets
7855         delete_event
7856
7857         * gtk/gtk.h: add gtkmessagedialog.h
7858
7859         * gtk/Makefile.am: add gtkmessagedialog.[hc]
7860
7861 2000-10-18  Havoc Pennington  <hp@redhat.com>
7862
7863         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): Fix a bug 
7864         where any number of empty lines would get skipped
7865
7866         * gtk/gtktextiter.h: Remove padding from GtkTextIter; live on the
7867         edge.
7868
7869         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): enhance the
7870         warning about invalid iterators (explain more thoroughly)
7871         (gtk_text_iter_in_region): rename gtk_text_iter_in_range
7872
7873         * gtk/gtktextview.c (FOCUS_EDGE_WIDTH): Make focus rectangle less
7874         big
7875
7876         * demos/*.c: Add error handling
7877
7878         * gtk/gtktextbuffer.c: don't modify const iterators
7879
7880         * gtk/gdk-pixbuf-loader.c: Add full error handling here
7881
7882         * gtk/gtkimage.c (gtk_image_set_from_file): ignore errors
7883         on file load
7884
7885         * gtk/gtkiconfactory.c: Update to reflect addition of error
7886         handling to gdk-pixbuf loaders
7887
7888 Wed Oct 18 11:14:05 2000  Owen Taylor  <otaylor@redhat.com>     
7889
7890         * configure.in demos/Makefile.am demos/testgtk/*: Start of work to
7891         move to new modularized testgtk.
7892
7893 2000-10-17  Jonathan Blandford  <jrb@redhat.com>
7894
7895         * gtk/gtktreeview.c: Draw the arrows correctly.
7896
7897         * gtk/gtktreemodel.c: Added user docs.
7898
7899         * gtk/gtk.h: remove gtktreedatalist.h.
7900
7901         * gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
7902         parent when generating my type.
7903
7904         * gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
7905         POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
7906
7907 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
7908
7909         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move
7910         GtkTreeModel from object to interface.
7911
7912 2000-10-16  Havoc Pennington  <hp@redhat.com>
7913
7914         * gtk/gtktreeviewcolumn.c: #include gtklabel.h, fixing 
7915         compilation
7916
7917 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
7918
7919         * gtk/gtktreeselection.c: Add API documentation to all public
7920         functions.
7921
7922         * gtk/gtktreeviewcolumn.c: Added API documentation to all public
7923         functions.
7924
7925 2000-10-15  Jonathan Blandford  <jrb@redhat.com>
7926
7927         * gtk/gtktreeview.c (gtk_tree_view_insert_column): New function
7928         proposed by Guy Harris <gharris@flashcom.net>.  Also, added API
7929         docs to all public functions.
7930
7931         * gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
7932         gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
7933         gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
7934         gtk/gtktreemodel.h, gtk/gtktreeselection.c,
7935         gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
7936         issue.
7937
7938 2000-10-14  Robert Brady  <robert@suse.co.uk>
7939
7940         * configure.in: Added "fa" (Persian) to ALL_LINGUAS.
7941
7942 2000-10-12  Jonathan Blandford  <jrb@redhat.com>
7943
7944         * gtk/gtktreedatalist.[ch] (gtk_tree_data_list_value_to_node): Added
7945         values other then G_TYPE_STRING.
7946         * gtk/gtktreeselection.c: Minor commenting updates.
7947         * gtk/gtktreeview.c: Format updates.
7948
7949 2000-10-09  Tor Lillqvist  <tml@iki.fi>
7950
7951         * README.win32: Update.
7952
7953         * gdk/win32/gdkgeometry-win32.c (gdk_window_clip_changed): Add two
7954         lines that had been deleted by mistake (?).
7955
7956         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Handle
7957         also the case fg==white and bg==black (but still not randomly
7958         coloured cursors). Thanks to Wolfgang Sourdeau.
7959
7960         * gdk/win32/*.c: Silence gcc -Wall.
7961
7962         * gtk/gtk.def: Add missing entry points.
7963
7964         Fixes by Hans Breuer:
7965
7966         * gdk/makefile.msc
7967         * gdk/win32/makefile.msc: Update.
7968
7969         * gdk/testgdk.c: If compiling with debugging (with _DEBUG defined,
7970         some MSVC thing, presumably), cause breakpoint on failures. Add
7971         GDK_NOR case. Call g_log_set_always_fatal.
7972
7973         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_insert): Handle
7974         should be pased by reference.
7975         
7976         * gdk/win32/gdkprivate-win32.h: Correct declaration accordingly.
7977         
7978         * gdk/win32/*.c: Correct calls to gdk_win32_handle_table_insert.
7979
7980         * gdk/win32/gdkevents-win32.c
7981         * gdk/win32/gdkwindow-win32.c: Handle WM_CREATE.
7982
7983         * gdk/win32/gdkgc-win32.c: Fix mixups of drawable and
7984         implementation object.
7985
7986         * gdk/win32/gdkimage-win32.c (gdk_image_get): Handle drawables,
7987         not just windows.
7988         
7989         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize):
7990         Use the wrapper object.
7991         
7992 2000-10-06  Havoc Pennington  <hp@redhat.com>
7993
7994         * Makefile.am (SRC_SUBDIRS): contrib subdir
7995
7996         * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library,
7997         so it can be used in Xlib version
7998
7999         * demos/testpixbuf.c (update_timeout): error checking from 1.0
8000         tree
8001
8002         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync
8003         change from 1.0 tree that returns first frame of animation
8004         if the loaded file is an animation.
8005
8006         * contrib: add new directory to hold stuff that comes with GTK+
8007         but isn't really part of GTK+ (for now, gdk-pixbuf-xlib)
8008         
8009         * configure.in: add contrib/*
8010
8011 2000-10-05  Havoc Pennington  <hp@redhat.com>
8012
8013         * demos/testpixbuf-save.c: add pixbuf save test
8014
8015         * demos/Makefile.am: add testpixbuf-save.c
8016
8017 2000-10-05  Jonathan Blandford  <jrb@redhat.com>
8018
8019         * gtk/gtktree.h (GTK_TREE_SELECTION): Replaced with
8020         GTK_TREE_SELECTION_OLD to prevent conflict with gtktreeselection.c
8021         * gtk/testgtk.c: s/GTK_TREE_SELECTION/GTK_TREE_SELECTION_OLD/
8022         * gtk/gtktreeselection.[ch]: Replaced
8023         "node_selected"/"node_unselected" signal with "selection_changed"
8024         signal.
8025
8026 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
8027
8028         * gtk/gtk{tree,cell}?*.[ch]: Checked in initial draft of the new
8029         tree widget.
8030
8031 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
8032
8033         * gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
8034         drawing.
8035
8036 Wed Oct  4 15:52:15 2000 Owen Taylor  <otaylor@redhat.com>
8037
8038         * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
8039         Move list pointer forwards before removing item from
8040         list. (Crash reported by Salmaso Raffaele)
8041
8042         * gdk/gdkwindow.h: Remove spurious trailing ,
8043
8044         * gdk/Makefile.am (LDFLAGS): You can't do interlibrary
8045         dependencies on uninstalled libraries, sorry folks.
8046
8047 2000-10-04  Havoc Pennington  <hp@redhat.com>
8048
8049         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
8050         gtk/gtkiconfactory.c: Fix copyrights    
8051
8052         * demos/testpixbuf.c: add inline pixbuf test
8053         
8054 Mon Sep 25 15:05:17 2000  Owen Taylor  <otaylor@redhat.com>
8055
8056         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c (gdk_window_iconify):
8057         Add gdk_window_iconify.
8058
8059         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c
8060         (gdk_window_set_geometry_hints): Add win_gravity
8061         to geometry structure.
8062
8063         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
8064         Implement _NET_WM_PING.
8065
8066         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check):
8067         Set _NET_WM_PID on the client leader.
8068
8069         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_name):
8070         Handle UTF-8 better.
8071
8072         * gdk/x11/gdkwindow-x11.c (gdk_window_set_title): Handle
8073         UTF-8 better, set _NET_WM_NAME as well. Only set
8074         icon name if it hasn't previously been explicitely 
8075         set.
8076
8077 2000-10-03  Havoc Pennington  <hp@redhat.com>
8078
8079         * gtk/testtextbuffer.c: clean up trailing whitespace,
8080         add extensive tests for tag toggle iteration.
8081         
8082         * gtk/gtktextiter.c (MAX_LINEAR_SCAN): decrease linear scan 
8083         distance
8084
8085         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
8086         optimize case where the tag root is on level 1
8087         (gtk_text_line_previous_could_contain_tag): attempt to implement
8088         (gtk_text_line_next_could_contain_tag): Abstract out node_compare
8089         functionality
8090
8091         * gtk/gtktextiter.c (gtk_text_iter_backward_to_tag_toggle):
8092         Implement this, though not very efficiently.
8093
8094         * gtk/gtktextiterprivate.h: reformat
8095
8096         * gtk/gtktextiter.c (gtk_text_iter_get_char): return 0 on the end
8097         iterator
8098
8099         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_interactive): Fix
8100         this to properly revalidate the iterators.
8101
8102         * gtk/gtktextview.c (gtk_text_view_delete): fix control-K to work
8103         properly at the end of the line (and therefore on empty lines)
8104
8105         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Gee,
8106         maybe we should return a value...
8107
8108 2000-10-03  Tor Lillqvist  <tml@iki.fi>
8109
8110         * config.h.win32: Guard definition of alloca(). glib.h now handles
8111         that.
8112
8113         * gdk/gdk.def
8114         * gtk/gtk.def: Add new entry points.
8115
8116         Changes just to make GTK+ build without errors on Win32. No hope
8117         of it working in its current state, though...:
8118         
8119         * gdk/win32/gdkselection-win32.c: Remove gcc -Wall warnings.  Add
8120         some functions from the X11 backend, just to make GTK+ build.
8121
8122         * gdk/makefile.mingw.in
8123         * gtk/makefile.mingw.in: Use correct gdk_pixbuf version
8124         number. Add new object files.
8125
8126         * gtk/gtkclipboard.c: Include gdkwin32.h on Win32. Use
8127         GetMessageTime to get timestamp (where on X11 uses
8128         gdk_x11_get_server_time()).
8129
8130 2000-10-02  Havoc Pennington  <hp@pobox.com>
8131
8132         * gtk/gtktextview.c: text_window_* weren't static and should have
8133         been.
8134         Start work on child widgets; not yet complete, syncing to 
8135         office computer.
8136
8137         * gtk/gtktextchild.h: change this to contain a public interface,
8138         starting work on child interfaces.
8139         * gtk/gtktextchildprivate.h: move private interfaces here
8140
8141         * gtk/Makefile.am: update to reflect gtktextchildprivate.h
8142
8143         * gtk/gtktextview.h, gtk/gtktextview.c, gtk/gtktextbuffer.h,
8144         gtk/gtktextbuffer.c, gtk/gtktextiter.h, gtk/gtk/textiter.c, 
8145         gtk/gtktextmark.c: copyright notices
8146
8147         * gtk/gtktextmarkprivate.h: reformat, and put _ in front of
8148         internal functions      
8149
8150         * gtk/gtktextchild.c (_pixbuf_segment_new): put _ in front of
8151         internal function
8152
8153         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
8154         Reformatting    
8155
8156 2000-09-30  Havoc Pennington  <hp@pobox.com>
8157
8158         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Handle
8159         NULL start/end pointers
8160
8161         * gtk/gtktextbuffer.c: Write some docs
8162         (gtk_text_buffer_get_selection_bounds): Allow start/end to be
8163         NULL, so you can just check whether there's a selection.        
8164
8165         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): No need to 
8166         cleanup_line or segments_changed ourselves, it gets done 
8167         in unlink_segment
8168
8169         * gtk/gtktextmark.h:
8170         s/gtk_text_mark_deleted/gtk_text_mark_get_deleted/
8171         
8172         * gtk/gtktextsegment.h: Clean up some indentation and naming mess
8173
8174         * gtk/gtktextmark.c: delete some more old Tk cruft
8175
8176         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_mark): add ref to
8177         mark before removing it, so we can emit MARK_DELETED with a valid
8178         pointer.
8179         (gtk_text_buffer_mark_set): hold ref across signal emission
8180
8181         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): improve
8182         whining about attempts to delete special marks
8183
8184         * gtk/gtktextbuffer.c (_gtk_text_buffer_spew): Prepend with
8185         underscore, since it's internal.
8186
8187         * gtk/gtktextbuffer.h: Remove find_string prototype, this is 
8188         now implemented in terms of iterators in gtktextiter.h
8189
8190         * gtk/gtktextbuffer.c (gtk_text_buffer_set_text): 
8191         New function, destructively sets contents of buffer. Also 
8192         a convenient way to clear the buffer by setting text to ""
8193
8194         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): reformat
8195         multiline string literal
8196
8197         * gtk/testtext.c (text_changed_callback): Redraw line numbers if
8198         text changes.
8199
8200         * gtk/gtktextiter.c (forward_char): Return FALSE if new location 
8201         is not dereferenceable
8202         (gtk_text_iter_forward_lines): fix return value
8203
8204 2000-09-29  Havoc Pennington  <hp@redhat.com>
8205
8206         * gtk/gtktexttag.c (gtk_text_tag_set_priority): fix indentation
8207
8208         * gtk/gtktextview.c: Implement drag thresholding; change functions 
8209         that set border window size to have nicer name
8210         (gtk_text_view_mark_set_handler):  Fix this to have the 
8211         right signature.
8212
8213         * gtk/testtextbuffer.c (fill_buffer): Update with pixbuf changes
8214
8215         * gtk/testtext.c: Update with API changes, put line numbers on 
8216         both sides.
8217         
8218         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): Replace get_pixmap
8219         with this
8220
8221         * gtk/gtktextchild.h, gtk/gtktextchild.c: replace all pixmap with
8222         pixbuf; delete a big block of #if 0 Tk code
8223
8224         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_pixbuf): Replace 
8225         insert_pixmap with insert_pixbuf
8226
8227 2000-09-29  Martin Baulig  <baulig@suse.de>
8228
8229         * gdk-pixbuf.pc.in: Renamed to gdb-pixbuf-2.0.pc.in to avoid
8230         confusion with the GdkPixbuf of the GNOME 1.x platform.
8231
8232 2000-09-29  Havoc Pennington  <hp@pobox.com>
8233
8234         * gtk/gtktextview.c: Implement the side windows.
8235
8236         * gtk/testtext.c: Implement simple line numbering in the 
8237         left side window; seems to make scrolling sloooow. Oops.
8238         Also, cursor blink is for some reason causing redraws
8239         of the line numbers. Should investigate...
8240
8241 2000-09-28  Havoc Pennington  <hp@redhat.com>
8242
8243         * gtk/gtktextview.c: Set up infrastructure to deal with lots of 
8244         scrolling child windows, and draw focus rectangle properly.
8245         
8246         (gtk_text_view_buffer_to_window_coords):
8247         Coordinate transformation to deal with all these freaking windows
8248         and offsets
8249         (gtk_text_view_window_to_buffer_coords): transform the other way
8250
8251         * gtk/testtext.c (create_buffer): Update to match Pango API change
8252
8253         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Go over the
8254         anonymous tags
8255         (foreach_unref): don't emit remove signal from finalize, just
8256         set tag's parent to NULL
8257
8258 2000-09-26  Havoc Pennington  <hp@redhat.com>
8259
8260         * gtk/gtkiconfactory.c (gtk_icon_set_clear): remove
8261         Fix some warnings       
8262
8263 2000-09-26  Havoc Pennington  <hp@redhat.com>
8264
8265         * gtk/Makefile.am (gtk_private_h_sources): Move more text widget
8266         headers into the private header list
8267
8268         * Makefile.am (pkgconfig_DATA): install pkg-config files
8269
8270         * configure.in: add pkg-config files
8271
8272         * gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
8273
8274         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
8275         outstanding icon caches on theme change.
8276
8277         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three 
8278         important types:
8279
8280         (GtkIconSource): Specification for creating a pixbuf 
8281         appropriate for a direction/state/size triplet from 
8282         a source pixbuf or filename
8283
8284         (GtkIconSet): List of GtkIconSource objects that are used to
8285         create the "same" icon (e.g. an OK button icon), and cache for
8286         rendered icons
8287
8288         (GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
8289         up the icon set for a given stock ID.  GTK maintains a stack of
8290         GtkIconFactory to search, and applications or libraries can add
8291         additional icon factories on top of the stack
8292         
8293         * gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse 
8294         the set of GtkIconSource specified for a given stock ID into 
8295         a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the 
8296         RcStyle, under the specified stock ID.
8297
8298         * gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
8299         render_icon used to derive a GdkPixbuf from a GtkIconSource.
8300         This allows people to theme how prelight, insensitive, etc. are
8301         done.
8302
8303         (gtk_style_lookup_icon_set): Look up a stock ID in the list of
8304         icon factories for a style, and return the resulting 
8305         icon set if any.
8306
8307         (gtk_style_render_icon): Render an icon using the render_icon 
8308         method in the GtkStyleClass.
8309
8310         * gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon): 
8311         Use the style for a given widget to look up a stock ID, get the
8312         icon set, and render an icon using the render_icon method 
8313         of the style
8314
8315         * gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
8316         (contains information about a stock item), the built-in stock item
8317         IDs, and functions to add/lookup stock items.
8318
8319         * gtk/stock-icons/*: Stock icons that come with GTK
8320
8321         * gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
8322         a button based on a GtkStockItem
8323         (gtk_button_new_accel): Takes a uline string and accel group, and
8324         installs the accelerator.
8325
8326         * gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
8327         image-display widget.
8328
8329 2000-09-25  Havoc Pennington  <hp@redhat.com>
8330
8331         * gtk/gtktexttypes.c: Remove Latin1 conversion stuff
8332
8333         * gtk/gtktextbtree.c (gtk_text_btree_node_remove_data): 
8334         Fix a bug when removing node data, we didn't properly 
8335         re-splice the linked list after removing the data.
8336
8337         * gtk/gtktextview.c (gtk_text_view_key_press_event): Pass through 
8338         GDK_Tab as literal tab, Ctrl-Tab to tab to focus widget
8339
8340         * gtk/gtktextbuffer.c (selection_received): fix g_convert usage
8341
8342         * gtk/gtktextlayout.c (set_para_values): Set tab array 
8343         for the layout from the GtkTextTag.
8344
8345         * gtk/gtktexttypes.h: delete tab and search cruft, 
8346         remove g_convert() in favor of GLib version
8347
8348         * gtk/gtktexttypes.c: remove tab implementation from here,
8349         move to Pango
8350
8351         * gtk/gtktexttag.h, gtk/gtktexttag.c: Implement 
8352         tab stuff using new PangoTabArray from Pango
8353
8354         * gtk/gtktexttag.c (gtk_text_attributes_fill_from_tags): Remove
8355         unused border_width stuff
8356
8357 Thu Sep 14 12:21:12 2000  Owen Taylor  <otaylor@redhat.com>
8358
8359         * gtk/gtktexttypes.[ch]: Remove g_convert (moved to
8360         glib) and now useless utf_to_latin1() latin1_to_utf()
8361
8362         * gtk/gtktextview.[ch]: Change ::move_insert and
8363         ::delete_text action signals to ::move and ::delete;
8364         create the signals with the right enumeration type,
8365         not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
8366         C-v bindings, change Home, End to move to beginning/end
8367         of line, Add C-Home C-End to move to beginning/end
8368         of buffer. Change ::cut_text to ::cut_clipboard, etc;
8369         combine ::scroll_text into ::move; use new GtkSelectionData
8370         functions to simplify DND text handling.
8371         
8372         * gtk/gtkenums.h gtk/gtktextview.h: Move movement,
8373         deletion enumerations here, rename enumeration values to 
8374         be consistently plural.
8375
8376         * gtk/gtktextbuffer.c: Use new clipboard interfaces
8377         for cut/copy/paste and primary selection.
8378
8379         * gtk/gtktextbuffer.[ch]: Remove excess time and
8380         'interactive' arguments from cut/copy/paste;
8381         rename cut to cut_clipboard, etc; remove
8382         gtk_text_buffer_get_clipboard_contents().
8383
8384         * gtk/gtktextlayout.[ch]: Add 
8385         gtk_text_layout_move_iter_to_line_end() to move the iter to 
8386         line ends.
8387
8388         * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
8389         Functions to set or get a UTF-8 string on the selection
8390         data.
8391
8392         * gtk/gtkclipboard.[ch]: New, simplified selection handling
8393         interfaces.
8394
8395         * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
8396         created widgets - one of these is useless if we don't.
8397
8398         * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
8399         a public function clear all targets registered for the
8400         widget.
8401
8402         * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
8403         Never call gtk_widget_realize() - that was just asking
8404         for bizarre side-effects.
8405
8406         * gtk/gtkselection.c (gtk_selection_owner_set): Call
8407         gdk_selection_owner_set even if the widget is the
8408         same so that we reliably update the timestamp on
8409         the server.
8410
8411         * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a 
8412         gdk_x11_get_server_time() function.
8413         
8414         * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
8415         gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
8416         Add some tricky filtering on serial numbers for
8417         selection clear events to fix up long-standard
8418         race condition FIXME's in gtkselection.c.
8419
8420         * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
8421         routines to convert from utf8 to compound text or
8422         STRING and from a text property to UTF-8.
8423
8424         * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add 
8425         a convenience function gdk_get_current_event_time().
8426
8427         * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
8428         and free selection_data->data properly
8429
8430 Sat Sep  9 10:23:53 2000  Owen Taylor  <otaylor@redhat.com>
8431
8432         * gtk/gtkthemes.c: Remove some unecessary includes.
8433
8434 2000-09-08  Jonathan Blandford  <jrb@redhat.com>
8435
8436         * gtk/gtktextdisplay.c
8437         * gtk/gtktextlayout.c
8438         * gtk/gtktexttag.c
8439         * gtk/gtktexttag.h
8440         * gtk/testtext.c: Change the overstrike property to strikethrough,
8441         to closer match pango.
8442
8443 Fri Sep  8 14:28:00 2000  Owen Taylor  <otaylor@redhat.com>
8444
8445         * gtk/gtktextview.c: Fix up visibility so that focus,
8446         cursor_visible and blink interact properly.  Reenable cursor blink
8447         which had been roughly disabled. Make blink and focus
8448         properly per-view.
8449
8450         * gtk/gtktextlayout.[ch] (gtk_text_layout_set_cursor_visible):
8451         Add a flag for whether to display insertion cursor and
8452         a function to set the flag.
8453
8454         * gtk/gtktextlayout.c (gtk_text_layout_get_line_yrange): Change
8455         get_line_y() to get_line_yrange(), to be a bit more generally
8456         useful.
8457
8458 Thu Sep 07 20:54:33 2000  George Lebl <jirka@5z.com>
8459
8460         * gtk/gtkmenu.c:  in gtk_menu_set_submenu_navigation_region
8461           do stop_navigating_submenu, to clear last timeout properly.
8462           Also in gtk_menu_motion_notify move ignore_enter above
8463           the conditional to make it always happen as suggested by Owen
8464
8465 2000-09-07  Tor Lillqvist  <tml@iki.fi>
8466
8467         * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o
8468
8469         * gdk/win32/gdkwin32.h: Add more definitions missing from the free
8470         w32api headers.
8471
8472         * gdk/win32/gdkprivate-win32.h: Add a couple of missing
8473         declarations.
8474
8475         * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings.
8476         (gdk_win32_get_colormap): A line had been deleted by mistake.
8477
8478         * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too.
8479         (gdk_event_translate): Handle more virtual keycodes to be able to
8480         generate GDK events for Control-comma, Control-period, etc.
8481
8482         * gtk/gtk.def: Add some missing entry points.
8483
8484 Thu Sep  7 11:47:02 2000  Owen Taylor  <otaylor@redhat.com>
8485
8486         * gtk/gtktextbuffer.c gtk/gtkimcontext.c gtk/gtkwidget.c:
8487         Doc comment fixing. (Mostly non-matching parameter names.)
8488
8489         * gtk/gtkcalendar.c gtk/gtklist.c gtk/gtknotebook.c: Modify
8490         comments a little to avoid looking like a doc comment.
8491
8492         * gtk/gtkspinbutton.h (GTK_INPUT_ERROR): Change INPUT_ERROR to
8493         GTK_INPUT_ERROR. (Should the mechanism for erros in spin button
8494         conversions be changed to GError?)
8495
8496         * gtk/gtkcolorsel.c (GTK_CUSTOM_PALETTE_WIDTH/HEIGHT): 
8497         Move private #defines into .c file.
8498
8499         * gtk/gtktexttag.c (gtk_text_tag_class_init): Alphabetize
8500         order of argument addition, remove duplicates.
8501
8502         * gtk/gtkaspectframe.h (struct _GtkAspectFrameClass):
8503         parent class is FrameClass, not BinClass.
8504
8505         * gtk/gtk.h: Add gtkinvisible, which was missing.
8506         (It's occasionalyl useful for client apps, if seldom.)
8507
8508         * gdk/gdktypes.h: Remove obsolete GDK_CORE_POINTER
8509         #define.
8510
8511 Wed Sep  6 09:53:15 2000  Owen Taylor  <otaylor@redhat.com>
8512
8513         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Use X-space
8514         coordinates when creating window, instead of GDK-space
8515         coordinates. (Avoid BadValue on too large windows.)
8516
8517 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
8518
8519         * configure.in (use_mmx_asm): Remove conftest* after use along the
8520         lines of AC_TRY_COMPILE.        
8521         
8522         * gtk/gtkrc.c (gtk_rc_parse_file): Use g_path_get_dirname instead
8523         of g_dirname, which is deprecated.
8524         (gtk_rc_parse_any): Removed calls to
8525         g_scanner_{freeze,thaw}_symbol_table, which are deprecated.
8526
8527         * gtk/gtkbindings.c (binding_entry_new, binding_entry_destroy):
8528         Removed calls to g_hash_table_{freeze,thaw}, as they are
8529         deprecated now.
8530
8531         * gtk/testtext.c (buffer_pretty_name): Use g_path_get_basename
8532         instead of g_basename.
8533         
8534 2000-09-04 Elliot Lee <sopwith@redhat.com>
8535         
8536         * gdk/gdkpixbuf.h: Put text after #endif inside a comment to avoid
8537         ANSI warning.
8538
8539 Sun Sep 03 00:47:08 2000  George Lebl <jirka@5z.com>
8540
8541         * gtk/gtkwidget.h:  Add some documenting comments about 
8542           GTK_CAN_DEFAULT, GTK_HAS_DEFAULT and GTK_RECEIVES_DEFAULT
8543           just as owen said on irc.
8544
8545         * gtk/gtkwindow.c (gtk_window_set_default):  Don't blindly
8546           set HAS_DEFAULT.  Only set it if there isn't another window
8547           holding it (a focus window which RECEIVES_DEFAULT) and only unset
8548           it if the widget is not the focused window with RECEIVES_DEFAULT.
8549           This fixes weird double default bugs in dialogs which has things
8550           call gtk_window_set_default at times.
8551
8552 Fri Sep  1 22:39:07 2000  Owen Taylor  <otaylor@redhat.com>
8553
8554         * gtk/gtkmenu.[ch] TODO.xml: Apply patch from
8555         Nils Barth and David Santiago to improve submenu
8556         navigation. The patch does this by creating a triangular
8557         region from the point where the pointer leaves the
8558         menu to the submenu.  While the pointer is in
8559         that region and a timeout has not expired, events 
8560         that would cause the active submenu to change are
8561         ignored.
8562
8563 Fri Sep  1 15:34:46 2000  Owen Taylor  <otaylor@redhat.com>
8564
8565         * gdk/x11/gdkwindow-x11.c (gdk_window_move): Fix bug where
8566         moving a toplevel window immediately after sizing it would
8567         result in it being sized back to the old size since 
8568         impl->width, impl->height aren't updated until we hear
8569         back from the server. There is still a (longstanding) bug
8570         here that gdk_window_get_size() will give the wrong size
8571         until we do hear back.
8572
8573 2000-08-31  Havoc Pennington  <hp@redhat.com>
8574
8575         * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, 
8576         gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, 
8577         gtk/gtktexttagprivate.h, gtk/gtktextview.c:
8578         Rename GtkTextStyleValues to GtkTextAttributes
8579
8580 2000-08-31  Havoc Pennington  <hp@pobox.com>
8581
8582         * gtk/gtktextbtree.c (GtkTextBTree): cache end line, 
8583         for rapid testing whether an iterator is the end iterator
8584         (gtk_text_btree_new): init end line cache
8585         (gtk_text_line_is_last): use fast cached line to 
8586         see if we're the last line.
8587         (get_last_line): use cached line here too, should 
8588         speed up some random unrelated code.
8589         
8590 2000-08-30  Havoc Pennington  <hp@pobox.com>
8591
8592         * gtk/gtkmarshal.list: Add marshallers for changed GtkTextBuffer
8593         signals.
8594
8595         * gtk/gtktextbuffer.h: Add "interactive" arg to insert_text and
8596         delete_text signals. This allows the signals to be used for
8597         implementing undo.
8598
8599         * gtk/gtktextbuffer.c: Change signal handler signatures; 
8600         provide "interactive" argument when emitting insert_text or
8601         delete_text signal.
8602         
8603 2000-08-30  Havoc Pennington  <hp@pobox.com>
8604
8605         * gtk/gtktextbuffer.c: Docs
8606
8607 Fri Aug 25 12:16:15 2000  Owen Taylor  <otaylor@redhat.com>
8608
8609         * gdk/x11/gdkimage-x11.c: remove GDK_IMAGE_SHARED_PIXMAP
8610         from switch statements, since Tor removed the enumeration
8611         value.
8612         
8613         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
8614         s/GDK_IS_WINDOW/GDK_IS_DRAWABLE/.
8615
8616 2000-08-29 Elliot Lee <sopwith@redhat.com>
8617         * */*.h: Use G_GNUC_CONST.
8618
8619 2000-08-27  Havoc Pennington  <hp@pobox.com>
8620
8621         * gtk/gtktextiter.c, gtk/gtktextiter.h: wrote lots of API docs,
8622         minor indentation fixes, inserted some FIXME about stuff I
8623         realized was broken while documenting it.
8624         (gtk_text_iter_get_pixmap): allow out params to be NULL, following
8625         GTK convention  
8626
8627 Tue Aug 22 12:33:24 2000  Owen Taylor  <otaylor@redhat.com>
8628
8629         * gtk/testgtk.c (create_styles): Fix double free of
8630         font desc.
8631
8632 Mon Aug 21 22:39:18 2000  Owen Taylor  <otaylor@redhat.com>
8633
8634         * gtk/gtkwidget.[ch]: Add gtk_widget_modify_{fg,bg,text,base,font}.
8635         
8636         * gtk/testgtk.c (create_styles): Add a test for modifying
8637         the style through gtk_widget_modify_*.
8638
8639         * gtk/gtkwidget.c (gtk_widget_get_modifier_style): Add
8640         a function to get the current modifier style.
8641
8642         * gtk/gtkwidget.c (gtk_widget_modify_style): Make a copy
8643         of the passed in GtkRcStyle instead of ref'ing it.
8644
8645         * gtk/gtkrc.[ch]: Add gtk_rc_style_copy().
8646
8647 2000-08-20  Tor Lillqvist  <tml@iki.fi>
8648
8649         * gdk/gdkimage.h
8650         * gdk/win32/gdkimage-win32.c: No need any longer on Win32 for the
8651         shared memory image+pixmap GdkImage type, or
8652         gdk_image_bitmap_new(). They were used in the gdk_imlib port, but
8653         I am dropping that.
8654
8655         * gtk/gtkmain.h: On Win32, use a #define to map gtk_init() to
8656         actually call gtk_init_abi_check(), passing also
8657         sizeof(GtkWindow). Ditto for gtk_init_check(). 
8658
8659         * gtk/gtk.def
8660         * gtk/gtkmain.c: (gtk_init_abi_check, gtk_init_check_abi_check):
8661         New functions, used to check that the GTK+-using code has been
8662         compiled using the correct compiler and switches. In particular,
8663         with gcc one has to use the -fnative-struct switch as GTK+ is
8664         compiled with that.
8665
8666 Fri Aug 18 17:27:46 2000  Owen Taylor  <otaylor@redhat.com>
8667
8668         * gtk/gtkclist.c (gtk_clist_merge): Don't leave dangling
8669         ->prev fields when merging lists. (Found simultaneously
8670         by Pawel Salek and Jakub Jelinek)
8671
8672 2000-08-12  Tor Lillqvist  <tml@iki.fi>
8673
8674         * gdk/gdk.def
8675         * gtk/gtk.def: Add missing entries.
8676
8677         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Use
8678         OUT_TT_ONLY_PRECIS, try to get a TrueType font.
8679
8680         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): New
8681         function. Dummy implementation at this point.
8682
8683         * gtk/makefile.mingw.in: Fix typo. Add testtext and testtextbuffer
8684         rules. Undefine GTK_COMPILATION when compiling the test programs.
8685         
8686         * gtk/gtkdebug.h: Mark gtk_debug_flags for export/import.
8687
8688 2000-08-11  Tor Lillqvist  <tml@iki.fi>
8689
8690         * gtk/gtkfilesel.c: Add more calls to g_filename_{to,from}_utf8()
8691         to convert back and forth from UTF-8 and the "system" (or "current
8692         locale") charset when necessary. Indentation/spacing cleanup.
8693
8694 2000-08-10  Havoc Pennington  <hp@redhat.com>
8695
8696         * Makefile.am (snapshot): Change the format of the snapshot
8697         version to match glib
8698
8699         * gdk/win32/Makefile.am (EXTRA_DIST): remove gdkinputprivate.h
8700         from EXTRA_DIST since it doesn't seem to exist
8701
8702 2000-08-10  Tor Lillqvist  <tml@iki.fi>
8703
8704         * gtk/gtkfilesel.c (open_new_dir): Use the "system codepage"
8705         version of the directory name (not the UTF-8 one) when building
8706         the path name to stat().
8707
8708 2000-08-03  Elliot Lee  <sopwith@redhat.com>
8709
8710         * gdk/gdkpango.c (gdk_draw_layout_line): Don't shape runs with a
8711         PANGO_ATTR_SHAPE set.
8712
8713 Thu Aug  3 09:17:06 2000  Owen Taylor  <otaylor@redhat.com>
8714
8715         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Applied patch from
8716         Peter Osterlund to simplify the code while keeping the
8717         functionality the same.
8718
8719 Wed Aug  2 14:57:38 2000  Owen Taylor  <otaylor@redhat.com>
8720
8721         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Move
8722         is_viewable() test further inside the function, since removing the 
8723         window from the redraw list without clearing ->update_area
8724         was also very broken.
8725
8726 2000-08-02  Tor Lillqvist  <tml@iki.fi>
8727
8728         * configure.in: Check for <unistd.h>.
8729
8730 2000-08-01  Martin Baulig  <baulig@suse.de>
8731
8732         * gtk/gtkmain.c (gtk_init_check): Use g_message() and not g_warning()
8733         to display the message that this is a development version of GTK+.
8734
8735 Mon Jul 31 18:37:36 2000  Owen Taylor  <otaylor@redhat.com>
8736
8737         * gtk/gtkentry.c (entry_adjust_scroll): Fix problem where computation
8738         was depending on widget->allocation instead of the width of text_area,
8739         which was incorrect for subclasses like GtkSpinButton.
8740
8741         * gdk/gdkpango.c (gdk_draw_layout): Fix a couple of typos
8742         with width == 1 tests that should be width == -1.
8743
8744 Mon Jul 31 16:45:48 2000  Owen Taylor  <otaylor@redhat.com>
8745
8746         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Replace broken, 
8747         (broken, Elliot, every single window blank on X) custom code with call
8748         to gdk_window_is_viewable() which a) prevents code duplicate and
8749         b) works. 
8750
8751 2000-07-31  Elliot Lee  <sopwith@redhat.com>
8752
8753         * gtk/gtkcolorsel.c: We really do need to include gdkfb.h in order
8754         to get the GDK_PARENT_ROOT() macro to work.
8755         * gtk/gtkmarshal.list: Add NONE:STRING,POINTER
8756         * gdk/gdkwindow.c: Don't send expose events, or invalidate pieces
8757         of, windows that aren't shown.
8758         * gdk/linux-fb: Redraw-when-menu-hidden solved, plus a bunch of
8759         pointer grab stuff.
8760
8761 Mon Jul 31 13:53:16 BST 2000  Tony Gale <gale@gtk.org>
8762
8763         * docs/gtkfaq.sgml docs/gtk-faq.sgml:
8764           s/gtk_main_iteration/g_main_iteration/
8765
8766           Did this already in change:
8767                 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
8768           don't know how it got reverted.
8769
8770 2000-07-31  Stanislav Brabec  <utx@penguin.cz>
8771
8772         * gdk/gdk.c: #ifdef G_ENABLE_DEBUG around gdk_arg_debug_cb and
8773         gdk_arg_no_debug_cb to fix compilation problem with --disable-debug.
8774
8775         * gdk/Makefile.am: Link gdk against actually compiled gdk_pixbuf-1.3,
8776         not gdk_pixbuf.
8777
8778 2000-07-30  Pablo Saratxaga <pablo@mandrakesoft.com>
8779
8780         * configure.in,po/{sp,sr}.po: Added Serbian files
8781
8782 2000-07-30  Tor Lillqvist  <tml@iki.fi>
8783
8784         * gdk/Makefile.am: Add makefile.mingw.in to EXTRA_DIST.
8785
8786         * gdk/win32/gdkevents-win32.c (gdk_events_init, gdk_events_queue):
8787         Remove the g_pipe_readable_msg stuff. Not needed with new GLib
8788         GIOChannel implementation.
8789
8790         * gdk/win32/gdkinput.c
8791         * gdk/win32/gdkpango-win32.c: Update license name here, too.
8792
8793         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_lookup): Fix
8794         definition to match prototype.
8795
8796         * gtk/makefile.mingw.in: Add libiconv CFLAGS and LIBS.
8797
8798 2000-07-27  Elliot Lee  <sopwith@redhat.com>
8799
8800         * gtk/gdk-pixbuf-loader.[ch]: Add gdk_pixbuf_loader_new_with_type
8801         function, to allow handling image formats that cannot be detected
8802         by looking at content alone.
8803
8804 Thu Jul 27 13:13:21 BST 2000  Tony Gale <gale@gtk.org>
8805
8806         * docs/tutorial/*.gif *.jpg *.eps
8807           Update these to the same look-n-feel.
8808           Why does including images in DocBook suck so badly?
8809
8810 Thu Jul 27 05:06:29 2000  Tim Janik  <timj@gtk.org>
8811
8812         * gtk/gtktable.c: applied patch from Phil Thompson
8813         <phil@river-bank.demon.co.uk> that enables space settings for
8814         the last row/columns as well.
8815
8816 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
8817
8818         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
8819         updates the license headers to the GNU Lesser General Public License,
8820         as well as updating the copyright year to 2000.
8821
8822 2000-07-26  Robert Brady  <rwb197@zepler.org>
8823
8824         * configure.in: Cause GETTEXT_PACKAGE to be consistent in config.h
8825           and po/Makefile, was installing and looking for them under gtk20
8826           and gtk2 respectively.
8827
8828 2000-07-25  Havoc Pennington  <hp@redhat.com>
8829
8830         * gtk/testtext.c: Comment out some stuff that depends on the rest
8831         of my patches.
8832
8833 2000-07-25  Havoc Pennington  <hp@redhat.com>
8834
8835         * gtk/gtkmarshal.list: Add NONE:POINTER,POINTER,INT for the text
8836         buffer
8837
8838 2000-07-25  Havoc Pennington  <hp@redhat.com>
8839
8840         * gtk/testtext.c, gtk/testtextbuffer.c: update to reflect text
8841         widget changes.
8842
8843         * gtk/gtktextview.h: To be consistent with usage of "line"
8844         throughout the API to mean "newline-terminated thingy", change
8845         MOVEMENT_LINE to be MOVEMENT_WRAPPED_LINE, and MOVEMENT_PARAGRAPH
8846         to MOVEMENT_LINE.
8847
8848         (GtkTextView): Add flags for default editability, and whether to
8849         show the cursor. Add functions to get/set that. Add 
8850
8851         (gtk_text_view_get_iter_location): new function
8852
8853         * gtk/gtktexttypes.h: Move GtkTextLine typedef from here to
8854         gtktextlayout.h
8855         (g_convert): Add g_convert temporarily, will go in glib in a bit
8856         
8857         * gtk/gtktexttagtable.h: include gtktexttag.h, and define
8858         GtkTextTagTableForeach instead of brokenly using GHFunc.
8859         Change gtk_text_tag_table_foreach() so it doesn't use GHFunc.
8860
8861         * gtk/gtktexttagprivate.h: Remove GtkTextStyleValues from here,
8862         moved to public header.
8863
8864         * gtk/gtktexttag.h: Rename the "elide" attribute of tags to
8865         "invisible", since "elide" was a bad name.
8866         (gtk_text_tag_get_priority): Added
8867
8868         (GtkTextStyleValues): put this in public header, along with
8869         functions to use it.
8870
8871         * gtk/gtktextmarkprivate.h: Include more headers, since we no
8872         longer include gtktextbtree.h.
8873
8874         * gtk/gtktextmark.h: Add gtk_text_mark_ref, gtk_text_mark_unref,
8875         gtk_text_mark_deleted
8876
8877         * gtk/gtktextlayout.h: Don't include the "really private" headers,
8878         only buffer/iter. Forward declare GtkTextLIne and GtkTextLineData
8879         to make this possible. Now we only need to install
8880         gtktextlayout.h, not gtktextbtree.h and gtktext*private.h.
8881         (However the Makefile.am isn't changed yet because of the
8882         logistics of merging gtk-hp-patches piecemeal)
8883
8884         * gtk/gtktextiterprivate.h: include btree header, so it compiles;
8885         rename gtk_text_iter_get_line to gtk_text_iter_get_text_line since
8886         gtk_text_iter_get_line is now used in the public API for a
8887         different purpose.
8888
8889         * gtk/gtktextiter.h: Clean up function names to be more
8890         consistent. Always call char offset "offset" and byte index
8891         "index". A "line" is always a line number. 
8892
8893         (gtk_text_iter_is_last): new function, more efficient than 
8894         the existing way to check
8895         (gtk_text_iter_is_first): new function, also more efficient
8896
8897         (gtk_text_iter_up_lines, gtk_text_iter_down_lines): Remove these
8898
8899         (gtk_text_iter_next_char, gtk_text_iter_prev_char): Renamed from 
8900         gtk_text_iter_forward_char, etc.
8901
8902         (gtk_text_iter_forward_to_tag_toggle): Renamed from
8903         forward_find_tag_toggle, since this isn't a linear search
8904
8905         (GtkTextCharPredicate): rename from GtkTextViewCharPredicate
8906
8907         (gtk_text_iter_forward_search, gtk_text_iter_backward_search): 
8908         New functions, search for a buffer substring.
8909
8910         * gtk/gtktextbuffer.h: Add fields to store whether a paste is
8911         interactive and default editable (since we need to store that info
8912         until we receive the selection data).
8913
8914         Remove all the _at_char and at_line etc. versions of functions;
8915         only have iterator versions.
8916
8917         Add _interactive() versions of functions, that consider the
8918         editability of text. (FIXME add interactive flag to the 
8919         insert/delete signals per Darin's suggestion)
8920
8921         (gtk_text_buffer_get_tag_table): new function, demand-creates the
8922         tag table if necessary
8923
8924         Remove declaration of gtk_text_buffer_get_iter_from_string
8925
8926         (_gtk_text_buffer_get_btree): private/internal function, added.
8927         
8928
8929         * gtk/gtktextbtree.h: Remove forward decl of GtkTextLineData.
8930         (gtk_text_line_is_last): new function
8931
8932 2000-07-25  Havoc Pennington  <hp@redhat.com>
8933
8934         * gtk/gtkprogressbar.h: Implement new sane, 5-function API for
8935         using GtkProgressBar. See Changes-2.0.txt for details.
8936
8937         * gtk/gtkprogressbar.c: Add object arguments "fraction" and
8938         "pulse_step" which are the equivalent of
8939         gtk_progress_bar_set_pulse_step and gtk_progress_bar_set_fraction.
8940         Implement new API.
8941         
8942         * gtk/gtkprogress.h (struct _GtkProgress): Add a field
8943         (use_text_format) to mark whether text set on the progress bar is
8944         a format string. Deprecate entire GtkProgress interface.
8945
8946         * gtk/gtkprogress.c (gtk_progress_init): init use_text_format to TRUE
8947         (gtk_progress_build_string): make this a no-op if use_text_format
8948         is FALSE
8949
8950         * docs/Changes-2.0.txt: Describe progress bar changes.
8951
8952 2000-07-25  Tor Lillqvist  <tml@iki.fi>
8953
8954         * Makefile.am: Include the build directory.
8955
8956         * configure.in: Generate build/Makefile, build/win32/Makefile,
8957         gdk/, gdk/win32/, and gtk/makefile.mingw.
8958
8959         * config.h.win32: Add USE_GMODULE and USE_MMX for gdk-pixbuf.
8960         Add GETTEXT_PACKAGE.
8961         
8962         * gdk/gdk.def
8963         * gtk/gtk.def: Updates.
8964
8965         * gdk/gdkfont.h
8966         * gdk/gdkpixmap.h: Remove temporary Win32-only functions, we don't
8967         need them any longer.
8968
8969         * gdk/gdkinput.h: Mark gdk_core_pointer for export/import.
8970
8971         * gdk/makefile.mingw.in: Define GDK_COMPILATION. Link with
8972         PANGOWIN32_LIBS and gdk_pixbuf.
8973
8974         * gdk/win32: Compiles, but no doubt doesn't work at all.
8975
8976         * gdk/win32/makefile.mingw.in: Define GDK_COMPILATION. 
8977
8978         * gdk/win32/gdkinput.c: New file, temporarily.
8979         
8980         * gdk/win32/gdkinput-win32.h: New file
8981
8982         * gdk/win32/gdkinputprivate.h: Remove.
8983
8984         * gdk/win32/gdkpango-win32.c: New file.
8985
8986         * gtk/makefile.mingw.in: New file
8987
8988         * gtk/makefile.cygwin: Removed
8989         
8990         * gtk/Makefile.am: Update accordingly.
8991
8992         * gtk/gtkrc.[ch] (gtk_win32_get_installation_directory): Renamed and
8993         made externally visible.
8994
8995         * gtk/gtkmain.c: Use it.
8996         
8997         * gtk/gtktextdisplay.c: No need to include pangox.h, pango.h
8998         is enough.
8999
9000         * gtk/gtktypeutils.c: Mark glib_debug_objects for import.
9001
9002 2000-07-24 Elliot Lee <sopwith@redhat.com>
9003         * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
9004         individual backends already.
9005         * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
9006         again. Yes, there really is a good reason for this, if you are using the gdkregion
9007         internals, and if you're not, why do you care?
9008         * gdk/gdkwindow.c: Fix inverted condition
9009         * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
9010         * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
9011         * gtk/gtkrange.c: Redraw trough when moving.
9012         * gtk/gtktypeutils.c: Fix warning by adding const cast.
9013         * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
9014
9015 2000-07-23  Tor Lillqvist  <tml@iki.fi>
9016
9017         * configure.in: Check for mkstemp and sigsetjmp. Output
9018         gdk-pixbuf/makefile.mingw and gdk-pixbuf/pixops/makefile.mingw.
9019
9020         More work on GDK for Win32. Still in an intermediate state.
9021
9022         * gdk/makefile.cygwin
9023         * gdk/win32/makefile.cygwin: Removed.
9024         
9025         * gdk/makefile.mingw.in
9026         * gdk/win32/makefile.mingw.in: New files.
9027
9028         * gdk/Makefile.am
9029         * gdk/win32/Makefile.am: Generate and distribute them.
9030
9031         * gdk/win32/gdkwindow-win32.h
9032         * gdk/win32/gdkdrawable-win32.h
9033         * gdk/win32/gdkpixmap-win32.h: New files.
9034
9035         * gdk/win32/gdkcolor-win32.c
9036         * gdk/win32/gdkcursor-win32.c
9037         * gdk/win32/gdkdrawable-win32.c
9038         * gdk/win32/gdkgc-win32.c
9039         * gdk/win32/gdkimage-win32.c
9040         * gdk/win32/gdkprivate-win32.h
9041         * gdk/win32/gdkwin32.h: Update data structures. Cosmetics:
9042         Rename fields and variables called xcursor, xid, etc (these names
9043         were leftovers from the X11 backend) to hcursor, hwnd, hbitmap etc.
9044
9045 Sat Jul 22 17:41:26 2000  Owen Taylor  <otaylor@redhat.com>
9046
9047         * gtk/gtkentry.[ch]: Fix some problems with vertical
9048         alignment.
9049
9050         * gtk/gtkentry.c (gtk_entry_find_position): Fix 
9051         char/byte confusion.
9052
9053 Sat Jul 22 11:16:05 2000  Owen Taylor  <otaylor@redhat.com>
9054
9055         * gtk/gtktextview.c (changed_handler): Fix bug where
9056         redraw wasn't being done properly when height of
9057         dirty region changed.
9058
9059         * demos/Makefile.am: Remove various references to
9060         -lgmodule
9061
9062 Fri Jul 21 15:28:13 2000  Owen Taylor  <otaylor@redhat.com>
9063
9064         * gtk/gtktextlayout.[ch], gtk/gtktextdisplay.c: Use new
9065         PangoAttrShape to reserve space for pixmaps, add 
9066         GSList *pixmaps to GtkTextLineDisplay, draw the pixmaps
9067         in the display functions.
9068         
9069         * gtk/testgtk.c (create_layout): Set some more exotic
9070         scrolled window options
9071
9072         * gtk/gtkscrolledwindow.[ch] (gtk_scrolled_window_set_shadow_type):
9073         Add function to set the shadow type of a window, to allow
9074         putting a shadow around widgets such as GtkLayout or GnomeCanvas
9075         which don't draw their own frame.
9076
9077 Fri Jul 21 16:34:42 BST 2000  Tony Gale <gale@gtk.org>
9078
9079         * docs/tutorial/package-db-tutorial.sh: New file for
9080           packaging DocBook format tutorial
9081
9082 Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>
9083
9084         * docs/tutorial/gtk-tut.sgml: Minor updates
9085
9086         * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
9087
9088 2000-07-19  Tor Lillqvist  <tml@iki.fi>
9089
9090         * gtk/gtksignal.c: Fix C++ comment.
9091
9092         * gtk/gtkimmulticontext.c
9093         * gtk/gtktextbtree.c: Remove gccisms: Don't use __FUNCTION__,
9094         don't return value from void functions.
9095
9096         * gtk/gtk.def: Add gtk_rc_style_unref.
9097
9098 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
9099
9100         * gdk-pixbuf/gdk-pixbuf.h, gtk/gtkhsv.h, gtk/gtktextbtree.h,
9101         gtk/gtktextbuffer.h, gtk/gtktextchild.h, gtk/gtktextdisplay.h,
9102         gtk/gtktextiter.h, gtk/gtktextiterprivate.h, gtk/gtktextlayout.h,
9103         gtk/gtktextmarkprivate.h, gtk/gtktextsegment.h, gtk/gtktexttag.h,
9104         gtk/gtktexttagtable.h, gtk/gtktexttypes.h, gtk/gtktextview.h,
9105         gtk/gtktypeutils.h: Include files outside of the extern "C"
9106         block. Makes some C++ compiler happy. Reported by Denis Vakatov
9107         <vakatov@peony.nlm.nih.gov>.
9108
9109 Wed Jul 19 14:07:57 BST 2000  Tony Gale <gale@gtk.org>
9110
9111         * docs/tutorial/gtk-tut.sgml: Yet more clean ups.
9112           Completes first pass. Hurrah!
9113
9114 Tue Jul 18 17:17:55 BST 2000  Tony Gale <gale@gtk.org>
9115
9116         * docs/tutorial/gtk-tut.sgml: More clean ups.
9117
9118 Mon Jul 17 18:52:38 2000  Owen Taylor  <otaylor@redhat.com>
9119
9120         * gtk/gtkentry.c (gtk_entry_draw_text): Restore code to
9121         paint the background of the text area which was accidentally
9122         removed at some point.
9123
9124         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch] gtk/gtkthemes.[ch]: 
9125           
9126          - Move most of the functionality from the theme vtable
9127            into GtkRcStyleClass and GtkStyleClass. The moved
9128            vtable functions were changed a bit in the move to
9129            work better in their new home.
9130
9131          - Get rid of the engine and engine_data fields from
9132            GtkRcStyle and GtkStyle; instead the theme
9133            engine derives theme-specific subclasses of GtkRcStyle
9134            and GtkStyle
9135
9136          - Add extra dlsym() found entry point to themes,
9137            theme_create_rc_style().
9138
9139         * gtk/gtkstyle.c: Copy xthickness, ythickness fields
9140         in gtk_style_real_copy.
9141
9142         * gtk/themes.[ch]: add a function gtk_theme_engine_register_type()
9143         to register a type associated with an engine. (The engine
9144         won't be unloaded as there is an instance of the type.)
9145
9146
9147 Mon Jul 17 18:19:06 BST 2000  Tony Gale <gale@gtk.org>
9148
9149         * docs/tutorial/gtk-tut.sgml: Clean ups.
9150
9151 Mon Jul 17 13:59:29 BST 2000  Tony Gale <gale@gtk.org>
9152
9153         * docs/tutorial/gtk-tut.sgml: Initial DocBook version. Lots
9154           of cleaning up to do.
9155
9156 2000-07-15  Tor Lillqvist  <tml@iki.fi>
9157
9158         * gdk/testgdk.c: New file, quick hack to test backends for
9159         pixel-by-pixel correctness of the most simple graphic operations.
9160
9161 Fri Jul 14 20:30:25 2000  Owen Taylor  <otaylor@redhat.com>
9162
9163         * Really release 1.3.1
9164         
9165         * gtk-config-2.0.in gtk-2.0.m4: Fix up to correspond to new
9166         include structure.
9167
9168 Fri Jul 14 18:40:39 2000  Owen Taylor  <otaylor@redhat.com>
9169
9170         * Released 1.3.1
9171
9172 Fri Jul 14 16:21:26 2000  Owen Taylor  <otaylor@redhat.com>
9173
9174         * gtk/gtktextlayout.c: use FALSE for size_only most
9175         of the time when calling gtk_text_layout_get_line_display()
9176         to avoid causing double reshapes when a redraw follows
9177         immediately after.
9178
9179 Tue Jul 11 11:13:40 2000  Owen Taylor  <otaylor@redhat.com>
9180
9181         * gtk/gtkrange.c (gtk_range_default_[hv]slider_update): Invalidate
9182         appropriate region and gdk_window_process_updates() so trough
9183         updating doesn't lag behind the window being scrolled.
9184
9185         * gdk/gdkgc.c: Make parent_class pointer static.
9186          
9187 Sun Jul  9 21:31:23 2000  Owen Taylor  <otaylor@redhat.com>
9188
9189         * gdk/gdk-pixbuf.c gtk/gdk-pixbuf-loader.c gtk/gtktextview.c:
9190         include <string.h>.
9191          
9192         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Fix
9193         cut-and-paste error in computing memory offset for 4 channels.
9194
9195 Fri Jul 14 14:05:02 2000  Owen Taylor  <otaylor@redhat.com>
9196
9197         * gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string): Remove
9198         gtk_rc_append_default_pixmap_path(), since it wasn't
9199         adding an interesting path and we don't have a meaningful
9200         default for this value.
9201
9202 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
9203
9204         * configure.in Makefile.am gtk-config.m4 gtk.m4: Move
9205         gtk-config to gtk-config-2.0 move gtk_.m4 to
9206         gtk-2.0.m4
9207
9208         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
9209         gdk/Makefile.am demos/Makefile.am: Change 
9210         library names to libgtk-1.3.la, etc, so that we
9211         can distinguish gtk-1.2 and gtk-2.0 on the linkline.
9212
9213         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
9214         gdk/Makefile.am gdk/x11/Makfile.am
9215         Move include files into /usr/include/gtk-2.0, 
9216         /usr/lib/gtk-2.0/include/
9217          
9218         * autogen.sh acconfig.h configure.in gtk/gtkmain.c
9219         gtk/gtkintl.h: Change package for gettext from 
9220         gtk+ to gtk20. Put hack in autogen.sh to modify
9221         po/Makefile.in.in after gettextize to make this
9222         possible.
9223
9224         * gtk+.spec: Some updates, not tested.
9225
9226         * gdk-pixbuf/Makefile.am: Move loaders into
9227         $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders.
9228
9229         * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations
9230         $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir
9231         to THEMENAME/gtk-2.0/. Move engine directory  to
9232         $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
9233         
9234 2000-07-12  Tor Lillqvist  <tml@iki.fi>
9235
9236         Win32 changes, still doesn't build though.
9237
9238         * gdk/makefile.cygwin
9239         * gdk/win32/makefile.cygwin
9240         * gtk/makefile.cygwin: Updates.
9241
9242         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Use the same
9243         default values for fg and bg pixel as X11 does (0 and 1), not
9244         black and white. Use PS_ENDCAP_FLAT and PS_JOIN_MITER by default.
9245         Use 0 for pen width by default (treated as 1 anyway later, but for
9246         apps that might check the value in the GdkGC).
9247         (gdk_win32_hdc_get, gdk_win32_hdc_release): New functions, public
9248         interface to gdk_gc_predraw and _postdraw.
9249
9250         * gdk/win32/gdkwin32.h
9251         * gdk/gdk.def: Add gdk_win32_hdc_{get,release}.
9252
9253         * gdk/win32/gdkcolor-win32.c (gdk_colormap_alloc1): Remove
9254         extraneous semicolon.
9255
9256         * gdk/win32/gdkdrawable-win32.c: Check also for pen_width == 0.
9257
9258         * gdk/win32/gdkimage-win32.c (gdk_image_new): Use the visual's depth,
9259         not the Win32 bitspixel value.
9260
9261         * gdk/win32/gdkcc-win32.c:
9262         * gdk/win32/gdkcolor-win32.c 
9263         * gdk/win32/gdkprivate-win32.h
9264         * gdk/win32/gdkwin32.h: Changes to make compilable, with new
9265         GDK object structure.
9266
9267 Tue Jul 11 20:59:35 2000  Tim Janik  <timj@gtk.org>
9268
9269         * docs/tutorial/gtk_tut_12.es.sgml (name): 
9270         * docs/tutorial/gtk_tut_it.sgml (name): 
9271         * docs/tutorial/gtk_tut_fr.sgml (name): 
9272         * docs/tutorial/gtk_tut.sgml (name): scratched notion of completely
9273         outdated email adress: s/timj@psynet.net/timj@gtk.org/.
9274
9275 Tue Jul 11 13:10:57 BST 2000  Tony Gale <gale@gtk.org>
9276
9277         * docs/faq/gtk-faq.sgml: Cleanup indenting and various
9278           small changes.
9279
9280 Tue Jul 11 08:04:58 2000  Tim Janik  <timj@gtk.org>
9281
9282         * gtk/gtktree.c (gtk_real_tree_select_child): eek, i've never seen
9283         a bug here, never been here and never fixed anything ;(
9284         (don't segfault if tree->root_tree is NULL, which happens prior
9285         to widget realization, but puke instead).
9286
9287 Tue Jul 11 06:38:42 2000  Tim Janik  <timj@gtk.org>
9288
9289         * gtk/gtkrc.h: add xthickness and ythickness to GtkRcStyle and
9290         add the necessary tokens.
9291
9292         * gtk/gtkrc.c (gtk_rc_style_init): properly initiality the rc style.
9293         (gtk_rc_style_to_style): copy thicknesses.
9294         (gtk_rc_init_style): apply thicknesses.
9295         (gtk_rc_parse_style): parse xthickness and ythickness.
9296
9297         * gdk/x11/gdkdnd-x11.c: silence compiler in switch() statements.
9298
9299         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): 
9300         (gdk_window_new): 
9301         (_gdk_windowing_window_init): 
9302         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new): 
9303         (gdk_pixmap_create_from_data): 
9304         (gdk_bitmap_create_from_data): 
9305         (gdk_pixmap_new): 
9306         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
9307         (gdk_image_new): 
9308         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): 
9309         * gdk/x11/gdkdnd-x11.c (gdk_drag_context_new): 
9310         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get):
9311         (gdk_colormap_get_system): 
9312         (gdk_colormap_new): 
9313         * gdk/gdkwindow.c (gdk_window_init): 
9314         * gtk/gtkstyle.c (gtk_style_new):
9315         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
9316         * gdk/gdkpixmap.c (gdk_pixmap_init): 
9317         * gtk/gtkrc.c (gtk_rc_style_new):
9318         use g_object_new() instead of g_type_create_instance() which
9319         is a private function for fundamental type implementations.
9320
9321 Thu Jul  6 16:12:14 2000  Owen Taylor  <otaylor@redhat.com>
9322
9323         * configure.in: Add check for db2html
9324
9325 Thu Jul  6 14:53:05 2000  Owen Taylor  <otaylor@redhat.com>
9326
9327         * gtk/gtktypeutils.c (gtk_type_init): Add a temporary 
9328         hack to set glib_debug_objects based on gtk_debug_flags.
9329
9330 Thu Jul  6 14:12:13 2000  Owen Taylor  <otaylor@redhat.com>
9331
9332         * INSTALL.in: Update the Prerequisites section.
9333
9334         * Makefile.am demos/Makefile.am docs/Makefile.am
9335         docs/tutorial/Makefile.am gdk/x11/Makefile.am
9336         gdk/linux-fb/Makefile.am: Dist fixes
9337
9338 Thu Jul  6 12:26:03 2000  Owen Taylor  <otaylor@redhat.com>
9339
9340         * NEWS: 10,000 foot view of 1.3.1 changes.
9341
9342 Thu Jul  6 11:54:03 2000  Owen Taylor  <otaylor@redhat.com>
9343
9344         * gdk/gdk.h gdk/gdktypes.h gdk/linux-fb/gdkmain-fb.c
9345         gdk/nanox/gdkmain-nanox.c gdk/win32/gdkevents-win32.c
9346         gdk/win32/gdkinput-win32.c gdk/win32/gdkwin32.h
9347         gdk/x11/gdkmain-x11.c: 
9348
9349         Patch from George Lebl to add a GdkGrabStatus enumeration to use
9350         as a return value of gdk_*_grab(). Previously, we just
9351         returned the X11 values directly.
9352
9353 Thu Jul  6 11:27:44 2000  Owen Taylor  <otaylor@redhat.com>
9354
9355         * gdk/x11/Makefile.am: Patch from George Lebl to 
9356         install all the headers in the right place.
9357
9358 Tue Jul  4 13:13:01 BST 2000  Tony Gale <gale@gtk.org>
9359
9360         * docs/faq/gtk-faq.sgml: Add remaining sections. Completes
9361           initial conversion to DocBook.
9362
9363 2000-07-04  Tor Lillqvist  <tml@iki.fi>
9364
9365         * README.win32: Improve a bit.
9366
9367         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle also
9368         WM_SYSCHAR, and other changes to get handling of Alt+nnn or
9369         Alt+0nnn on the numpad (used to enter characters by numeric code
9370         from current DOS or ANSI codepage) working correctly, as in other
9371         Windows apps.
9372
9373         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Use
9374         same argument validity tests as in X11 version.
9375         (_gdk_cursor_destroy): Use DestroyCursor, not DestroyIcon.
9376
9377         * gdk/win32/gdkwin32.h: Add also WM_MOUSEWHEEL and CopyCursor
9378         definitions in case missing from headers.
9379
9380         * gdk/win32/gdkwindow-win32.c (gdk_win32_window_destroy): Also
9381         destroy the window-specific cursor.
9382         (RegisterGdkClass): Use the global gdk_ProgInstance instead of
9383         calling GetModuleHandle(NULL).
9384         (gdk_window_set_cursor): Reworked to always copy the passed cursor
9385         with CopyCursor before setting it as the window-specific
9386         cursor. It is OK for the caller to destroy the GdkCursor (and thus
9387         also its Windows cursor) after calling this function. Destroy any
9388         previous window-specific cursor.
9389
9390 Mon Jul  3 17:54:49 2000  Owen Taylor  <otaylor@redhat.com>
9391
9392         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): 
9393         font charset is iso8859-1, not iso-8859-1.
9394
9395 Mon Jul  3 17:08:14 2000  Owen Taylor  <otaylor@redhat.com>
9396
9397         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale):
9398         Use g_get_charset() instead of g_get_codeset().
9399
9400         * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: 
9401         Comment out some strdup'ing functions to keep timj
9402         happy until we finish fighting this out.
9403
9404 Mon Jul  3 14:24:16 2000  Owen Taylor  <otaylor@redhat.com>
9405
9406         * gtk/gtkwidget.c (gtk_widget_draw): Ignore calls with
9407         <= width or height.
9408
9409         * gtk/gtktable.c (gtk_table_attach): Fix missed merge
9410         from 1.2 for parent/child states.
9411
9412         * gdk/gdkgc.c (gdk_gc_set_rgb_fg/bg_color): Fix a couple
9413         of typos.
9414
9415         * gdk/gdkevents.[ch]: Remove press/xtilt/ytilt fields of
9416         event structures, replace with a generic axes field. Replace 
9417         deviceid/sourec with GdkDevice *device.
9418
9419         * gdk/gdkevents.[ch] (gdk_event_get_axis): Add function
9420         to extract particular axis use value from event. (Also
9421         can be used for normal X/Y.)
9422
9423         * gdk/gdkinput.h gdk/x11/gdkinput*: Major revision;
9424         allow for arbitrary number of axes, namespace everything
9425         as gdk_device_*. Replace guint32 deviceid with GdkDevice *
9426         everywhere.
9427
9428         * gdk/x11/{gdkmain-x11.c,gdkevent-x11.c,gdkinput*}: 
9429         Get rid of the gdk_input_vtable setup if favor of simply
9430         defining the functions in gdkinput-none/gxi/xfree.c in
9431         a similar fashion to the way that the port structure is 
9432         done.
9433
9434         * gtk/gtkdnd.c: Fix fields of synthesized button press event
9435         for new event structures. 
9436
9437         * gtk/gtkinputdialog.c gtk/testinput.c: Revise to match
9438         new device interfaces.
9439
9440 Sun Jul  2 18:19:50 2000  Owen Taylor  <otaylor@redhat.com>
9441
9442         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_layout): Add a 'text' argument to
9443         set the initial text.
9444
9445         * gtk/gtkaccellabel.c gtk/gtkcalendar.c gtk/gtkclist.c
9446         gtk/gtkentry.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c
9447         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvruler.c
9448         gtk/gtkvscale.c: Adapt to new argument of create_pango_layout().
9449
9450         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
9451         pango_layout_set_font_description to simplify.
9452
9453 Sun Jul  2 17:43:41 2000  Owen Taylor  <otaylor@redhat.com>
9454
9455         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
9456         pango_layout_set_font_description to simplify.
9457
9458 Sun Jul  2 17:06:40 2000  Owen Taylor  <otaylor@redhat.com>
9459
9460         * gtk/gtkcalendar.c gtk/gtkclist.c gtk/gtkctree.c gtk/gtkhscale.c
9461         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvscale.c gtk/gtkaccellabel.c: Use
9462         pango_layout_get_pixel_extents() to remove a large number of '/ PANGO_SCALE'.
9463
9464         * gtk/gtk[hv]ruler.c gtk/gtklabel.c: replace some / PANGO_SCALE with
9465         PANGO_PIXELS() macro.
9466
9467 Sun Jul  2 15:24:41 2000  Owen Taylor  <otaylor@redhat.com>
9468
9469         * gtk/gtkwidget.[ch] (gtk_widget_get_pango_context): Add new function
9470         that returns a PangoContext owned by the widget and updated to
9471         match future changes in the widget. Also, make 
9472         gtk_widget_create_pango_layout() use this context. If we ever
9473         add a ::changed signal to PangoContext, this will make things
9474         much more convenient. 
9475
9476         * gtk/gtkentry.c gtk/gtklabel.c: Call pango_layout_context_changed()
9477         in the appropriate places instead of destroying the layouts and
9478         creating new ones.
9479
9480         * gtk/gtkfontsel.[ch] gtk/gtkclist.c: Use gtk_widget_get_pango_context()
9481         in a few strategic places.
9482
9483 Sun Jul  2 14:37:58 2000  Owen Taylor  <otaylor@redhat.com>
9484
9485         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Call 
9486         gtk_widget_size_request() on reparented child, if one. Otherwise,
9487         queue_resize() on the child never results in it getting size-requested
9488         at all.
9489
9490         * gtk/testgtk.c (build_option_menu): Remove silly radio-menu-items
9491         in option menus, so that (with luck) people won't copy it into
9492         their apps in the future.
9493
9494         * gtk/gtkoptionmenu.c: Connect ::size_request on the menu
9495         to gtk_option_menu_calc_size. This isn't perfect, but should fix
9496         a lot of problems with changing the size of the menu's menu
9497         items after adding it to the option menu.
9498
9499         * gtk/gtktexttag.c: Include gtkmain.h for gtk_get_default_language().
9500
9501         * gtk/gtkwidget.[ch]: Add a ::direction_changed that triggers when
9502         the text direction for a widget changes.
9503
9504         * gtk/gtk{entry.c,label.[ch],textview.[ch]} gtk/testgtk.c: Use
9505         ::direction_changed to get rid of various hacks.
9506
9507 Sun Jul  2 13:19:12 2000  Owen Taylor  <otaylor@redhat.com>
9508
9509         * docs/Changes-2.0.txt: Move Changes-1.4.txt to the appropriate
9510         name.
9511
9512 Sun Jul  2 13:06:26 2000  Owen Taylor  <otaylor@redhat.com>
9513
9514         * gdk/x11/gdkpixmap-x11.[ch] Changes-1.4.txt: Add a is_foreign
9515         flag to the structure. Do not call XFreePixmap on pixmaps created
9516         by gdk_pixmap_foreign_new().
9517
9518 Sun Jul  2 12:45:50 2000  Owen Taylor  <otaylor@redhat.com>
9519
9520         * gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
9521         value using GdkRGB functionality given GdkColormap and GdkColor.
9522         (name not final, waiting for inspiration.)
9523         
9524         * gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
9525         set the foreground/background of a GC using the GC's colormap
9526         and GdkRGB. (name not final, waiting for inspiration.)
9527
9528         * gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from 
9529         gdk_rgb_get_cmap(), put #define in gdkcompat.h.
9530
9531         * gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
9532         gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
9533         purely a function of the corresponding colormap. Make
9534         gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
9535
9536         * gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
9537         gdk_pixbuf_*create_from_xpm_* in terms of
9538         gdk_pixbuf_new_from_xpm_data(), move into platform independent
9539         code.
9540
9541         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
9542         advantage of the new draw_rgb_32_image_dithalign.
9543
9544         * gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
9545
9546         * gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
9547         on each created GC.
9548
9549         * gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
9550
9551         * gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
9552         which we initialize from the drawable when the GC is created,
9553         if the drawable has a colormap.
9554
9555         * gdk/x11/gdkgc-x11.c: include string.h for memset.
9556
9557         * gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
9558
9559         * gtk/gtklayout.[ch]: Remove unsed configure serial member.
9560
9561 Sat Jul  1 16:28:32 2000  Owen Taylor  <otaylor@redhat.com>
9562
9563         * gdk/x11/gdkevents-x11.c (gdk_event_translate): When
9564         actually returning expose events, make sure to set
9565         the count field properly.
9566
9567         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): Fix
9568         accidentally reintroced bug which always cleared
9569         the graphics_exposures value. 
9570
9571 Wed Jun 28 18:03:09 BST 2000  Tony Gale <gale@gtk.org>
9572
9573         * docs/faq/gtk-faq.sgml: Change DocBook layout slightly
9574
9575 Wed Jun 28 17:49:05 BST 2000  Tony Gale <gale@gtk.org>
9576
9577         * docs/faq/gtk-faq.sgml: Finish Section 6. Add Section 7.
9578
9579 Wed Jun 28 13:31:55 BST 2000  Tony Gale <gale@gtk.org>
9580
9581         * docs/faq/gtk-faq.sgml: Start of Section 6.
9582
9583 Mon Jun 26 19:37:04 2000  Owen Taylor  <otaylor@redhat.com>
9584
9585         * configure.in: Put 1.3.1 in warning message, not 1.3.0.
9586         
9587         (Fixes problem with drawing childless frames. Pointed out
9588         by and a first patch from Anders)
9589         
9590         * gtk/gtkframe.c (gtk_frame_compute_child_allocation): Always
9591         compute a child_allocation, even if we don't have a child.
9592
9593         * gtk/gtkaspectframe.c (gtk_aspect_frame_compute_child_allocation):
9594         Always chain to the parent's impl, even if we don't have a child.
9595
9596 Mon Jun 26 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
9597
9598         * gdk/gdkrgb.c: If possible, create only a single shm segment and
9599         use multiple parts of it instead of creating a bunch of separate
9600         segments, since the maximum number of segments per system is not
9601         large. (This might be worth backporting to GTK+-1.2.x if we make a
9602         new release )
9603
9604         * gdk/gdkrgb.c: Localize a bunch of variables into the GdkRgbInfo
9605         structure in preparation for per-colormap GdkRGB.
9606
9607         * gdk/x11/gdkimage-x11.c (gdk_image_new): Don't set gdk_use_xshm
9608         to False when we get EINVAL from shmget so that the caller of
9609         gdk_image_new can retry with a smaller segment size.
9610
9611 Mon Jun 26 13:01:16 BST 2000  Tony Gale <gale@gtk.org>
9612
9613         * docs/faq/gtk-faq.sgml: Add Sections 4 & 5.
9614
9615 Fri Jun 23 17:54:23 2000  Tim Janik  <timj@gtk.org>
9616
9617         * configure.in: make the current version number 1.3.1 (binary age 0,
9618         interface age 0).
9619         
9620         * gtkfeatures.h, gtkfeatures.h.in: dejavue, get rid of these *again*,
9621         gtkcompat.h is all we want.
9622
9623         * gtk/gtktypeutils.[hc]: define most of the primitive types in terms of
9624         GLib primitive types. fixed g_type_register_fundamental() argument
9625         ordering.
9626
9627         * gtk-config.in (lib_gtk): add -lgdk_pixbuf so third party code
9628         compiles.
9629
9630         * gdk-pixbuf-loader.[hc]: get rid of unistd.h include.
9631         object code cleanup, comment trigraph fixes, etc...
9632
9633 2000-06-23  Havoc Pennington  <hp@redhat.com>
9634
9635         * gtk/gtktextview.c (gtk_text_view_set_buffer): Use anonymous mark 
9636         instead of making up a bogus name for first_para_mark
9637
9638         * gtk/gtkstatusbar.h, gtk/gtkstatusbar.c: Allow 
9639         0 as a context ID
9640
9641 Thu Jun 22 17:43:51 BST 2000  Tony Gale <gale@gtk.org>
9642
9643         * docs/faq/gtk-faq.sgml: Change filename. Add Section 3.
9644
9645 2000-06-21  Havoc Pennington  <hp@pobox.com>
9646
9647         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Fix bug where
9648         we didn't check window->bg_pixmap != GDK_NO_BG.
9649
9650         * gtk/gdk-pixbuf-loader.c: Change to reflect GObject-ification of
9651         gdk-pixbuf
9652
9653 Thu Jun 22 14:02:19 BST 2000  Tony Gale <gale@gtk.org>
9654
9655         * docs/faq/gtk-faq.sgm: Move file to here.
9656           TODO: Update Makfile.am 
9657
9658 Thu Jun 22 13:41:09 BST 2000  Tony Gale <gale@gtk.org>
9659
9660         * docs/gtk-faq.sgm: Add Section 2
9661
9662 Thu Jun 22 08:43:45 BST 2000  Tony Gale <gale@gtk.org>
9663
9664         * docs/gtk-faq.sgm: New file. Start of DocBook
9665           version of the FAQ.
9666
9667 Wed Jun 21 23:04:17 2000  Owen Taylor  <otaylor@redhat.com>
9668
9669         * configure.in (GDK_PIXBUF_MAJOR): Define version
9670         numbers for GDK_PIXBUF_*, as they get substituted
9671         into a header file. Need to consider versioning
9672         for gdk-pixbuf more carefully later.
9673
9674 2000-06-21  Raja R Harinath  <harinath@cs.umn.edu>
9675
9676         Work with srcdir != builddir.   
9677         * demos/testanimation.c: Don't include "gdk-pixbuf.h".  Use
9678         <gtk/gdk-pixbuf-loader.h>, not "gtk-pixbuf/gdk-pixbuf-loader.h".
9679         * demos/testpixbuf.c: Likewise.
9680         * demos/testpixbuf-scale.c: Don't include "gdk-pixbuf.h".
9681         * demos/testpixbuf-drawable.c: Don't include "gdk-pixbuf.h".  Use
9682         <gdk/x11/gdkx.h>.
9683         * demos/pixbuf-demo.c: Use <gtk/gtk.h> not "gtk.h".  Don't include
9684         "gdk-pixbuf.h".
9685         * demos/Makefile.am (INCLUDES): Remove unneeded directories.
9686
9687 Wed Jun 21 19:45:02 2000  Owen Taylor  <otaylor@redhat.com>
9688
9689         * TODO.xml: Change 1.4 version numbers to 2.0.
9690
9691 Wed Jun 21 19:29:08 2000  Owen Taylor  <otaylor@redhat.com>
9692
9693         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf-drawable.c: Indentation
9694         fixups to GTK+ standard.
9695
9696 Wed Jun 21 16:38:13 2000  Owen Taylor  <otaylor@redhat.com>
9697
9698         * gdk-pixbuf/* docs/reference/gdk-pixbuf/*: Welcome aboard,
9699         gdk-pixbuf.
9700
9701         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
9702         fixups for GObject.
9703
9704         * gdk/Makefile.am gdk/gdkpixbuf-render.[ch] gdk/gdkpixbuf.[ch]: Bits of 
9705         gdk-pixbuf with GDK dependencies moved into GDK.
9706         
9707         * gtk/Makefile.am gtk/gdk-pixbuf-loader.[ch]: Temporarily
9708         move gdk-pixbuf-loader here until GObject has signals.
9709
9710         * demos/: New directory of demos. Move demos from
9711         gdk-pixbuf here.
9712
9713         * demos/pixbuf-init.c: Small bit of code to check for
9714         loaders in ../gdk-pixbuf/.libs/gdk-pixbuf, and if found,
9715         set GDK_PIXBUF_MODULEDIR appropriately.
9716
9717         * gdk/gdkcompat.h: Remove GDK_DRAWABLE_PIXMAP compat
9718         define which no longer makes sense.
9719
9720 2000-06-21  Havoc Pennington  <hp@redhat.com>
9721
9722         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Use
9723         gtk_get_default_language
9724
9725         * gtk/gtkmain.h, gtk/gtkmain.c (gtk_get_default_language): 
9726         new function to get the default language
9727
9728         * gtk/gtktexttagprivate.h, gtk/gtktexttag.c, gtktextview.c: 
9729         s/gtk_text_view_style_values/gtk_text_style_values/
9730
9731         * gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktexttagprivate.h:
9732         Add a "language" field to tags.
9733
9734         (gtk_text_tag_set_arg): Fix bug in setting
9735         "bg_full_height_set" tag.
9736
9737 2000-06-21  Havoc Pennington  <hp@redhat.com>
9738
9739         * gtk/gtktextiter.h: Use gunichar instead of gint when appropriate
9740         in the interfaces
9741
9742         * gtk/gtktexttypes.c: Remove UTF functions, use glib 
9743         stuff instead when possible.
9744
9745         * gtk/gtktexttypes.h: Delete some unused constants
9746
9747         * gtktextbtree.c, gtktextiter.c, gtktextsegment.c, gtktextview.c,
9748         testtextbuffer.c: use glib instead of custom unicode routines
9749
9750 Wed Jun 21 12:50:58 2000  Owen Taylor  <otaylor@redhat.com>
9751
9752         * docs/es/: Removed mistakenly added generated sgml
9753
9754         * docs/{gdk.texi,gtk.texi,gdk.sgml} macros.texi texinfo.tex:
9755         Remove outdated info files.
9756
9757         * docs/gtk_tut* docs/package_tutorial.sh docs/tutorial:
9758         Moved tutorial files into subdir
9759
9760         * docs/gtkfaq.sgml docs/faq/gtkfaq.sgml: Move FAQ into
9761         subdir.
9762
9763         * docs/man/gtk_button.pod: Remove. (contents will be
9764         integrated into gtk-reference button page.)
9765
9766         * configure.in docs/Makefile.am docs/tutorial/Makefile.am
9767         docs/faq/Makefile.am: Adjust for new organization
9768
9769 2000-06-21 Christopher Blizzard  <blizzard@redhat.com>
9770
9771         * gdk/x11/Makefile.am (install-data-local): use $(mkinstalldirs)
9772         not $(MKINSTALLDIRS)
9773
9774 Wed Jun 21 12:24:28 2000  Owen Taylor  <otaylor@redhat.com>
9775
9776         * gtk/testgtk.c (create_text): Finish the job Elliot started
9777         of removing font setting test for text widget. (Since text widget
9778         and GdkFont are not deprecated, and cause portability problems.)
9779
9780 Wed Jun 21 11:41:43 2000  Owen Taylor  <otaylor@redhat.com>
9781
9782         * gtk/gtkentry.c gtk/gtkimcontextsimple.c gtk/gtklabel.c
9783         gtk/gtktexttypes.c gtk/testtext.c modules/linux-fb/basic.c:
9784         Remove use of libunicode in favor of new GLib functions.
9785
9786         * gtk/gtkcolorsel.c: Remove conditional includes for FB, win32,
9787         nano-x, framebuffer. The X11 include is just a hack until we get
9788         the necessary functions in gdkcolor.h, so there is no reason to
9789         add other includes of platforms.
9790
9791         * gtk/gtkwindow.c (gtk_window_compute_default_size): Revert 
9792         window bigger than the screen change.
9793
9794         * gtk/testgtk.c: Revert some random changes from Elliot
9795         that had no particular point and were causing testgtkrc
9796         not to function correctly.
9797         
9798         * gdk/gdkregion-generic.h: Revert change from Elliot. Just
9799         because GdkSegment and GdkRegionBox have the same fields,
9800         it doesn't mean that 'typedef GdkSegment GdkRegionBox'
9801         results in clearer code.
9802
9803         * gdk/x11/gdkinput-x11.c (gdk_input_common_select_events,
9804         gdk_input_translate_coordinates): Fix missed GdkObjectification
9805
9806 2000-06-18  Elliot Lee  <sopwith@redhat.com>
9807
9808         * gdk/Makefile.am, gdk/*/Makefile.am: Fix conditionality to work the "right" way.
9809         * gtk/gtk{plug,socket}.h: Missed commits from previous.
9810
9811 2000-06-20  Havoc Pennington  <hp@redhat.com>
9812
9813         * modules/linux-fb/Makefile.am: Make this compile
9814         without framebuffer enabled
9815
9816         * gdk/linux-fb/Makefile.am: Add conditional to not build
9817         framebuffer unless specified in configure
9818
9819         * gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
9820         the size of the target instead of source if -1 was passed for
9821         width/height
9822
9823         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
9824         width/height confusion.
9825
9826 2000-06-19  Havoc Pennington  <hp@redhat.com>
9827
9828         * gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
9829         GDK_DRAWABLE_XID. In the future, we probably want to make it
9830         faster with G_DISABLE_CHECKS turned on.
9831
9832 2000-06-14  Havoc Pennington  <hp@redhat.com>
9833
9834         * gdk/Makefile.am: add gdkpixmap.c
9835
9836         * gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
9837         s/gdk_image_init/_gdk_windowing_image_init
9838
9839         * gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
9840         ref/unref
9841
9842         * gdk/gdkcolor.h: make GdkColormap a GObject subclass
9843
9844         * gdk/gdkcompat.h: remove GdkWindowType compat, since
9845         GdkWindowType is now non-deprecated; 
9846         change gdk_window_get_type() compat to be
9847         gdk_window_get_window_type().
9848
9849         * gdk/gdkdnd.h: make GdkDragContext a GObject.
9850
9851         * gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
9852         virtual GObject. Make all functions call into the vtable.
9853         Move gdk_image_put() guts in here. Remove GdkDrawableType
9854         and gdk_drawable_get_type(), these are now GdkWindow-specific.
9855         draw_image, get_depth, get_size, set_colormap, get_colormap,
9856         get_visual added to the vtable.
9857         
9858         * gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual 
9859         GObject. Virtualize everything. 
9860         (gdk_gc_new_with_values): remove check for destroyed window,
9861         because now GdkWindow::create_gc will check this.
9862         (gdk_gc_set_values): New function to set GC values, this 
9863         was already implemented but wasn't in the header
9864
9865         * gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
9866
9867         * gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
9868         _gdk_window_draw_image(), remove _gdk_windowing_window_class,
9869         remove _gdk_window_class; add _gdk_window_impl_get_type() and
9870         _gdk_pixmap_impl_get_type(). Rename gdk_window_init to
9871         _gdk_windowing_window_init, rename gdk_image_init to
9872         _gdk_windowing_image_init.
9873         
9874         * gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
9875         (gdk_draw_layout): Remove check for destroyed window, 
9876         because all the drawable methods already check it.
9877         
9878         * gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
9879         Add gdkpixmap.c which contains implementation of GdkDrawable
9880         virtual table (by chaining to a platform-specific implementation
9881         object).
9882         
9883         * gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP, 
9884         GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
9885         GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
9886         GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
9887         GdkColormapPrivate. 
9888
9889         * gdk/gdktypes.h: #include <glib-object.h>
9890
9891         * gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
9892         Move most functionality to platform-specific implementation
9893         object. GdkWindow itself now handles the backing store, then
9894         chains to the platform-specific implementation.
9895         (gdk_window_get_window_type): return GdkWindowType of the window.
9896         (gdk_window_peek_children): New routine, returns the children of 
9897         a GdkWindow
9898         (gdk_window_get_children): Was in X11-specific code and did 
9899         XQueryTree. Changed to simply return a copy of window->children; 
9900         so it can go in cross-platform code.
9901         
9902         * gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
9903
9904         * gdk/x11/gdkcolor-x11.c: implement X-specific parts of 
9905         GdkColormap; just changed to use the new private data instead
9906         of casting to GdkColormapPrivate.
9907
9908         * gdk/x11/gdkcursor-x11.c: added a couple typechecks to 
9909         gdk_cursor_new().
9910
9911         * gdk/x11/gdkdnd-x11.c: Change the way we access private fields 
9912         (private data member in the GObject). 
9913         (xdnd_manager_source_filter): Function had broken 
9914         error handling, fix it (use gdk_error_trap_push).
9915
9916         * gdk/x11/gdkdrawable-x11.c: This file now implements
9917         a base class for GdkWindowImplX11/GdkPixmapImplX11. This 
9918         base class is purely for the convenience of the X port,
9919         and not part of the interface to cross-platform GDK.
9920
9921         * gdk/x11/gdkevents-x11.c: Reflect various renamings.
9922         
9923         * gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
9924         specific to X, and returned by the create_gc virtual method
9925         of GdkDrawableImplX11. 
9926         (gdk_x11_gc_set_dashes): Change this to take an array of gint8
9927         rather than gchar, this was also changed in the GdkGC vtable.
9928         (gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
9929         mask is 0, return immediately, instead of checking every flag.
9930         This is faster, and keeps us from segfaulting if values is NULL
9931         and the mask contains some nonzero flags.
9932
9933         * gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
9934         GdkWindow.
9935
9936         * gdk/x11/gdkglobals-x11.c: change type of grab window, since 
9937         GdkWindowPrivate is gone.
9938
9939         * gdk/x11/gdkim-x11.c: rename things that got renamed.
9940
9941         * gdk/x11/gdkimage-x11.c: implement in terms of GObject, and 
9942         remove the image_put stuff that got transferred to GdkDrawable.
9943         
9944         * gdk/x11/gdkinput.c: renamings
9945
9946         * gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
9947
9948         * gdk/x11/gdkpixmap-x11.c: GObject conversion
9949
9950         * gdk/x11/gdkprivate-x11.h: indentation fixes
9951
9952         * gdk/x11/gdkproperty-x11.c: renamings
9953
9954         * gdk/x11/gdkselection-x11.c: renamings
9955
9956         * gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now 
9957         implements the platform-specific "impl" object.
9958         Moved gdk_window_get_children to gdk/gdkwindow.c
9959
9960         * gdk/x11/gdkx.h: Remove all the private structs and private datas
9961         that no longer exist. Add declaration of GdkGCX11 object here.
9962         Fix all the macros to still work. 
9963
9964         * gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
9965         GdkDragContext from the boxed types since they are now GObjects.
9966
9967         * gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
9968         moved xthickness/ythickness into the instance. GtkStyleClass
9969         functions are now in the standard vtable for GtkStyle, so you have
9970         to create a GObject subclass to write a theme engine.
9971         (gtk_style_copy): fixed a leaked PangoFontDescription
9972         (gtk_style_init): renamed gtk_style_realize, so gtk_style_init
9973         can be the standard GObject function.
9974         
9975         * Throughout GTK:
9976         s/style->klass->[xy]thickness/style->[xy]thickness
9977         s/pango_layout_unref/g_object_unref/
9978
9979         * gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
9980         
9981         * gtk/gtksocket.c: Use gdk_window_get_user_data() instead of 
9982         accessing GDK internals.
9983
9984         * gtk/gtkwidget.c: Use gdk_window_peek_children() instead of 
9985         accessing GDK internals.
9986
9987 2000-06-18  Elliot Lee  <sopwith@redhat.com>
9988
9989         * gtk/gtkwindow.c: Don't allow creation of a window bigger than the screen.
9990
9991         * gtk/gtkrange.c: Fix the mega-jumpy-with-lagged-events scrollbar
9992         problem by calculating event position relative to the trough
9993         rather than the slider.
9994         * gtk/gtkdnd.c, gtk/gtkcolorsel.c: Include FB headers if appropriate.
9995
9996         * gdk/gdkgc.h: Add GDK_NOR.
9997
9998         * configure.in, Makefile.am: Add modules top level dir
9999         * configure.in: Only use pangox library if building x11 target.
10000         * gdk/gdkdnd.h: Add GDK_DRAG_PROTO_LOCAL enum for future intra-app use.
10001
10002 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
10003
10004         * gtk/gtkcolorsel.c: Change private class member to be named
10005         private_data throughout the file.
10006
10007         * gtk/gtkcolorsel.h (struct _GtkColorSelection): Change private to
10008         private_data to avoid clashing with keyword.
10009
10010 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
10011
10012         * gdk/gdkdnd.h: Add comment to remove warning.
10013
10014 Sun Jun 18 15:35:35 2000  Pablo Saratxaga <pablo@mandrakesoft.com>
10015
10016         * gtk/gtkrc.cp1251,gtk/Makefile.am: the cp1251 is also used by
10017         Byelorussian language; changed the Makefile and file names 
10018         to reflect that.
10019
10020 Mon Jun 12 16:58:40 2000  Owen Taylor  <otaylor@redhat.com>
10021
10022         * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw
10023         rather than gdk_window_hide; this makes things work
10024         correctly if the window is programmatically hidden while
10025         iconified.
10026
10027 Sun Jun 11 12:46:19 2000  Owen Taylor  <otaylor@redhat.com>
10028
10029         * gtk/gtkdnd.c (gtk_drag_set_default_icon): Fix
10030         cut and paste typo where wrong pixmap was being
10031         unref'ed. (Pointed out by a friend of KUSANO Takayuki.)
10032
10033 Sun Jun 11 10:22:36 2000  Owen Taylor  <otaylor@redhat.com>
10034
10035         * gtk/gtkselection.c (gtk_selection_bytes_per_item):
10036         Add helper function to compute format / bytes 
10037         relationship. Use in a couple places to fix up
10038         errors which assume 8 * format.
10039
10040         * gtk/gtkselection.c (gtk_selection_request): Use 32
10041         rather than 8 * sizeof (GdkAtom), to work correctly
10042         on Alpha.
10043
10044 Thu Jun  8 21:54:51 2000 Christopher Blizzard  <blizzard@redhat.com>
10045
10046         * gtk/Makefile.am (DEPS): deps include libgtk-x11.la, not
10047         libgtk.la
10048         (LDADDS): include libgtk-x11.la and libgdk-x11.la, not the non-x11
10049         versions
10050
10051         * gtk/gtklabel.c (gtk_label_get_text): Make sure that the error
10052         checking macros return NULL since the function has a return value.
10053
10054 Wed Jun  7 15:44:42 2000  Owen Taylor  <otaylor@redhat.com>
10055
10056         * gtk/Makefile.am (LDFLAGS): Add missing backslash that was keeping
10057         GTK+ from building at all.
10058
10059         * gdk/Makefile.am (gdk_c_sources): Fix up some indentation issues.
10060
10061 Mon Jun  5 19:32:53 CEST 2000 Paolo Molaro <lupus@linuxcare.com>
10062
10063         * configure.in, gtk-config.in, gdk/Makefile.am, gdk/*/Makefile.am,
10064         gtk/Makefile.am: make it possible to configure gtk for different
10065         targets on the same platform. The library name is now 
10066         libgtk-$target-$version.so. gtk-config accepts a --target x11|nanox|linux-fb
10067         flag. Only the x11 target compiles right now.
10068         * gdk/gdkregion-generic.h, gdk/gdkregion-generic.c, gdk/gdkpoly-generic.h,
10069         gdk/gdkpolyreg-generic.c: move generic region code in the main GDK dir.
10070         * gdk/nanox/gdk*generic*: delete generic region code.
10071         * gdk/linux-fb/gdk*generic*: delete generic region code.
10072         * README.nanox: update information.
10073         
10074 Tue Jun  6 10:53:59 2000  Owen Taylor  <otaylor@redhat.com>
10075
10076         * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
10077         prepend not append. (Pointed out by Brett Hall.)
10078
10079 Tue Jun  6 01:59:57 2000  Owen Taylor  <otaylor@redhat.com>
10080
10081         * gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
10082
10083 Mon Jun  5 16:00:09 2000  Owen Taylor  <otaylor@redhat.com>
10084
10085         * gdk/gdk.c (gdk_init_check): Add call to g_type_init() - we'll
10086         need this later, and this makes sure that the atexit for
10087         glib gets called after that for GDK, so atexits are
10088         properly ordered for object leak checking.
10089
10090         * gdk/gdk.c (gdk_exit_func): Call gdk_windowing_exit().
10091
10092         * gdk/x11/gdkmain-x11.c (gdk_windowing_exit): Call 
10093         pango_x_shutdown_display()
10094
10095         * gtk/simple.c (main): Close window on destroy.
10096
10097 Mon Jun  5 11:50:02 2000  Owen Taylor  <otaylor@redhat.com>
10098
10099         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): We need
10100         to treat initial creation different from setting with 
10101         regards to the graphics-exposures parameter, so add a parameter
10102         indicating whether this is initial or not.
10103
10104 Mon Jun  5 13:29:31 2000  Owen Taylor  <otaylor@redhat.com>
10105
10106         * gdk/x11/gdkevents-x11.c: Hack gdk_event_get_graphics_expose()
10107         to sort of work by adding an extra return_exposes arg
10108         to gdk_event_translate() - it might be better to simply
10109         deprecate the function altogether and force people to rewrite
10110         without it. gdk_window_scroll() handles most of it, and where
10111         gdk_window_scroll() doesn't work, simply redrawing more does.
10112
10113         * gtk/gtkwidget.c (gtk_widget_set_default_direction): Fix up
10114         assertion.
10115
10116         * gtk-config.in: Include PANGO_CFLAGS/LIBS.
10117
10118         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Remove a 
10119         bunch of pretty much useless /* Print debugging info */ comments 
10120         which had drifted away from the code they were commenting.
10121
10122 2000-06-02  Havoc Pennington  <hp@pobox.com>
10123
10124         * gtk/testtextbuffer.c: Test program to make sure GtkTextBuffer
10125         is in working order.
10126         
10127         * gtk/testtext.c: Change to reflect anonymous mark API
10128
10129         * gtk/gtktextview.c: Convert from mark names to GtkTextMark*.
10130
10131         * gtk/gtktexttag.h (struct _GtkTextTag): remove the affects_size
10132         field, which was unused.
10133
10134         * gtk/gtktextmarkprivate.h (GTK_IS_TEXT_MARK): add this macro,
10135         saves some typing.
10136
10137         * gtk/gtktextbuffer.c: Switch from mark names to GtkTextMark*   
10138
10139         * gtk/gtktextbtree.c (gtk_text_btree_new): set the not_deleteable
10140         flag on the insertion point and selection bound
10141
10142         Throughout, use GtkTextMark instead of GtkTextLineSegment, and 
10143         make mark-manipulation functions take a GtkTextMark* instead of a
10144         mark name.
10145         
10146         * gtk/gtktextmarkprivate.h: Add a "not_deleteable" flag to 
10147         GtkTextMarkBody; will be used to detect attempts to delete
10148         the permanent marks (insert and selection bound)
10149
10150         * gtk/Makefile.am (noinst_PROGRAMS): add testtextbuffer 
10151
10152 Fri Jun  2 12:56:01 2000  Owen Taylor  <otaylor@redhat.com>
10153
10154         * gtk/gtkwidget.c (gtk_widget_init): Initialize DOUBLE_BUFFERED
10155         flag to on.
10156
10157         * gtk/gtkwidget.c (gtk_widget_draw) gtk/gtkmain.c (gtk_main_do_event): 
10158         Honor DOUBLE_BUFFRED_FLAG
10159
10160         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a
10161         function to set the DOUBLE_BUFFERED flag.
10162
10163         * gtk/gtkwidget.h: Add GTK_DOUBLE_BUFFERED flag to indicate whether
10164         or not exposes done on the widget should be double-buffered.
10165
10166         * gtk/gtkenums.h (GtkTextDirection): Reverse order of enumerations
10167         to be what would be expected. (Fixes problem with a
10168         g_return_if_fail() validating a TextDirection enumeration)
10169
10170 Thu Jun  1 23:05:13 2000  Owen Taylor  <otaylor@redhat.com>
10171
10172         * gtk/gtkwidget.c: Remove all references to 
10173         offscreen flag which was no longer used.
10174
10175         * gtk/gtkprivate.h (enum): Remove unused flags and compress.
10176
10177         * gtk/gtkframe.c (gtk_frame_set_label_widget): Check
10178         for non-null label_widget->parent.
10179
10180         * gtk/gtkentry.c: Get rid of code to deal with PangoAttribute 
10181         which no longer was used.
10182
10183         * gdk/gdkpango.c (gdk_pango_context_get_info): make static.
10184
10185         * gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
10186         for null arguments.
10187
10188         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
10189         check for destroyed windows.
10190
10191 Thu Jun  1 13:48:45 2000  Owen Taylor  <otaylor@redhat.com>
10192
10193         * gtk/gtkimmulticontext.c: Add a finalize method and unref
10194         the slave context there.
10195
10196         * gtk/gtkinvisible.[ch]: Make reference counting behavior
10197         identical to GtkWindow.
10198
10199 Thu Jun  1 01:54:11 2000  Owen Taylor  <otaylor@redhat.com>
10200
10201         * Makefile.am gdk/gdkpango.c: Copy the layout render function from
10202         pangox to here, so we can write them independent of rendering
10203         system, using GDK primitives.
10204
10205         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
10206         gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
10207         since we have a rendering-system independent implementation in
10208         terms of draw_glyphs().
10209         
10210         * gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
10211         function to render a single line.
10212
10213         * gdk/x11/gdkpango.c: Move the guts of this file mostly
10214         into ../gdkpango.c, which simplifies things, since we
10215         don't have to deal with raw X gc's.
10216
10217 Fri May 19 04:28:16 2000  Owen Taylor  <otaylor@redhat.com>
10218
10219         * gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
10220         get the logical attributes for a given GtkTextLine.
10221
10222 Tue May 30 16:05:39 2000  Owen Taylor  <otaylor@redhat.com>
10223
10224         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
10225         g_locale_get_codeset() to g_get_codeset() change.
10226
10227 Tue May 30 15:03:19 2000  Owen Taylor  <otaylor@redhat.com>
10228
10229         * gtk/testcalendar.c (calendar_font_selection_ok): Use font
10230         descriptions.
10231
10232         * gtk/gtkentry.c (gtk_entry_draw_text): Center text within
10233         the entry.
10234
10235         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
10236         redoing (vastly simplifying) for Pango. Still needs quite
10237         a bit of work. (Size selection is currently poor. List of 
10238         predefined sizes is not a good idea, since all of these
10239         sizes won't necessarily be distinct.)
10240
10241 Tue May 30 13:50:19 2000  Owen Taylor  <otaylor@redhat.com>
10242
10243         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
10244         CODESET results for LANG=C.
10245
10246 Mon May 29 15:49:10 2000  Owen Taylor  <otaylor@redhat.com>
10247
10248         * gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
10249         which takes a stringized pango font description;
10250         ignore the older 'font' and 'fontset' declarations.
10251
10252         * gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
10253         field with a GdkFont derived via gdk_font_from_description(),
10254         for compatibility. (Should we just remove it entirely?
10255         Probably too much compatibility breakage, but people
10256         should be migrating to the new Pango stuff as quickly
10257         as possible.)
10258
10259 Mon May 29 15:47:41 2000  Owen Taylor  <otaylor@redhat.com>
10260
10261         * gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
10262
10263 Mon May 29 15:44:46 2000  Owen Taylor  <otaylor@redhat.com>
10264
10265         * gtk/gtkcalender.c: Roughly pango-ized. Really needs 
10266         redoing; there are some bugs in size allocation right
10267         now, the semi-existant distinction between header / day
10268         fonts was removed, but, with Pango, could actually
10269         be made functional in a nice way.
10270         
10271         * gtk/testcalender: Move calender from examples into this
10272         directory as a test program. (We really need to restrcture
10273         testgtk into a whole directory full of tests for every
10274         widget or functionality group, separated into multiple .c
10275         files.)
10276
10277 Mon May 29 15:19:56 2000  Owen Taylor  <otaylor@redhat.com>
10278
10279         * gtk/testgtk.c (file_exists): Fix stupid typo that
10280         was keeping RC file from being loaded.
10281
10282         * gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
10283         RC file font code.
10284
10285 Mon May 29 14:31:27 2000  Owen Taylor  <otaylor@redhat.com>
10286
10287         * gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
10288         Add function to load a GdkFont from a PangoFontDescription.
10289
10290 2000-05-29  Tor Lillqvist  <tml@iki.fi>
10291
10292         * gdk/win32/gdkevents-win32.c (gdk_WindowProc): The local "event"
10293         variable should be of type GdkEventPrivate.
10294
10295 Fri May 26 17:16:40 2000  Owen Taylor  <otaylor@redhat.com>
10296
10297         * gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
10298         to have any widget for the label, use a GtkLabel widget
10299         to display the text. (Based partially on a patch from
10300         Anders Carlson.)
10301
10302         (Quite a bit of code reorganization - strip 90% of the
10303         guts out of gtkaspectframe and add a single virtual
10304         func to GtkFrameClass - compute_child_allocation.)
10305
10306 Fri May 26 12:00:02 2000  Owen Taylor  <otaylor@redhat.com>
10307
10308         * gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
10309         (Removed clist->row_center_offset field because caching
10310         it wasn't saving time or code, added private function
10311         _gtk_clist_create_cell_layout()).
10312
10313 Wed May 24 15:59:37 2000  Owen Taylor  <otaylor@redhat.com>
10314
10315         * gtk/gtkaccellabel.c: Pangoized.
10316
10317         * gtk/[hv]ruler.c: Pangoized
10318
10319 Mon May 22 19:23:59 2000  Owen Taylor  <otaylor@redhat.com>
10320
10321         * gtk/gtkfilesel.c (gtk_file_selection_init):
10322         Use gtk_clist_set_column_auto_resize() to remove need
10323         need for manual column width computations.
10324
10325 Mon May 22 18:50:26 2000  Owen Taylor  <otaylor@redhat.com>
10326
10327         * gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel, 
10328         ensuring Pango correctness, and considerably simplifying the
10329         code.
10330         
10331         * gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
10332
10333         * gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
10334         getting of numbers of lines.
10335
10336         * gtk/gtklabel.c (gtk_label_size_request): Set the requisition
10337         to the actual requested width of the lable, not to the wrap
10338         width we set.
10339
10340         * gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
10341
10342         * gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
10343           gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
10344
10345         * gtk/gtktextview.c: Fix structure inheritance.
10346
10347         * gtk/gtkprogressbar.c: Pangoize.
10348
10349 Mon May 22 15:47:30 2000  Owen Taylor  <otaylor@redhat.com>
10350
10351         * gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
10352         in a function.
10353
10354         * gtk/gtktextlayout.c (find_display_line_above): Fixed
10355         bug with computing line tops.
10356
10357         * gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
10358
10359 Thu May 18 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
10360
10361         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
10362         and y_offset coordinates to do what we need now. (The offset between
10363         buffer and layout coordinates has been reintroduced, but is a 
10364         bit different than before.)
10365
10366         * gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
10367         handle the adjustments ourselves, and scroll as necessary using
10368         the new gdk_window_scroll().
10369         
10370         The advantage of this is that when we are incrementally revalidating,
10371         we are essentially rearranging things around the visible portion
10372         of the screen. With the old setup, the visible portion of the
10373         screen was moved around in the layout, so scrolling and redrawing
10374         to track that caused jumping of the display. Since we now
10375         control the scrolling ourselves, we can suppress this and
10376         only redraw when things actually change.
10377
10378 Thu May 18 18:47:25 2000  Owen Taylor  <otaylor@redhat.com>
10379
10380         * gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
10381         the region not just redisplay it after-all, since we store the
10382         cursors in the LineDisplay. (Ugly interactions here between
10383         GtkLayout and GtkTextBTree here.)
10384         
10385         * gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
10386
10387 Thu May 18 18:43:21 2000  Owen Taylor  <otaylor@redhat.com>
10388
10389         * gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
10390         Added function to scroll contents of a window while keeping the
10391         window constant. Works by XCopyArea or guffaw-scrolling depending
10392         on the details of how the window is set up. (guffaw-scrolling
10393         still needs to be filled in.)
10394
10395 Wed May 17 22:36:53 2000  Owen Taylor  <otaylor@redhat.com>
10396
10397         * gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
10398         move the debugging that was tied to a global variable
10399         to that.
10400
10401         * gtk/gtkmarshal.list: Add NONE:INT,INT,INT
10402
10403         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
10404         validated flag, in line data instead of setting height/width to
10405         -1. This allows us to perform operations with partially invalid
10406         buffer (using the old size for invalid lines) and thus to do
10407         incremental vaidation. Keep height/width aggregates up to date
10408         when deleting text and rebalancing the tree.
10409
10410         * gtk/gtktextbtree.[ch]: Add functions validate a line
10411         (gtk_text_btree_validate_line), and to validate up
10412         to a number of pixels (gtk_text_btree_validate).
10413
10414         * gtk/gtktextlayout.[ch]: Add an ::invalidated signal
10415         that indicates that something is changed and a revalidation
10416         pass is needed. Change ::need_repaint to ::changed, and
10417         make it take old and new yranges instead of a rectangle.
10418
10419         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
10420         the line_data_destroy() function from 
10421         gtk_text_btree_add_view() to a virtual function in 
10422         GtkTextLayout
10423
10424         * gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
10425         since we are handling partial repaints in a different fashion
10426         now.
10427
10428         * gtk/gtktextbtree.[ch]: Only repaint the changed portion
10429         of the selection instead of queueing a repaint on the
10430         entire widget.
10431
10432         * gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
10433         get_selection_bounds() down to btree, make the function
10434         in buffer a wrapper around the btree function.
10435
10436         * gtk/gtktextlayout.[ch]: Add functions to check if the
10437         layout is valid and to recompute either a range of pixels
10438         aroudn a line or a certain total number of pixels.
10439
10440         * gtk/gtktextlayout.[ch]: Cache a single line display;
10441         now that we only redraw the needed portions, the hit rate
10442         for this cache is quite high.
10443         
10444         * gtk/gtktextview.[ch]: Keep track of the first paragraph
10445         on the screen so that when re-laying-out the buffer, we can
10446         keep the same place. This requires connecting to ::value_changed
10447         on the adjustments
10448
10449         * gtk/gtktextview.[ch]: Add idle functions to revalidate
10450         the buffer after we receive an ::invalidated signal.
10451         
10452 Wed May 17 22:10:47 2000  Owen Taylor  <otaylor@redhat.com>
10453
10454         * gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
10455         to max of allocation and layout size, not just to the
10456         layout size.
10457
10458         * gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size): 
10459         Invalidate window so it gets redrawn properly.
10460
10461         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
10462         to mean the entire window.
10463
10464         * gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
10465         into public header.
10466
10467 Mon May 15 14:51:31 2000  Owen Taylor  <otaylor@redhat.com>
10468
10469         * gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
10470         to get the name of a mark.
10471
10472         * gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
10473         to find the paragraph from a y position.
10474
10475 Thu May 11 12:57:20 2000  Owen Taylor  <otaylor@redhat.com>
10476
10477         * gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
10478         nodes have width/height >= 0, not > 0.
10479
10480 Tue May  9 21:29:06 2000  Owen Taylor  <otaylor@redhat.com>
10481
10482         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
10483         Add a size_only flag, so when we only need the size, we don't create
10484         useless appearance attributes.
10485
10486         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
10487         duplicate setting of font description.
10488
10489         * gtk/gtkscale.c: Use PANGO_SCALE instead of 1000 
10490
10491 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
10492
10493         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
10494         EXTRA_DIST. It does not work well when the file that
10495         everything depends on is not in the tarball.
10496
10497 Wed Apr 26 00:56:14 2000  Owen Taylor  <otaylor@redhat.com>
10498
10499         * gtk/testgtk.c: Some hacks and fixes so that it basically
10500         works when not sitting in the GTK+ build tree.
10501
10502 2000-05-03  Havoc Pennington  <hp@redhat.com>
10503
10504         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
10505         Properly determine the ordering of the tag root and the current
10506         line within the tree. Previous algorithm only worked if the tag
10507         root's immediate parent was the common root of both the current
10508         line and the tag root.
10509
10510 Wed Apr 26 00:43:00 2000  Owen Taylor  <otaylor@redhat.com>
10511
10512         * gtk/gtktextlayout.c (set_para_values): Fix some bugs in
10513         alignment.
10514
10515         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
10516         the widget text directional dynamically.
10517
10518         * gtk/gtktextview.[ch]: Added functions to get and set default
10519         wrap mode.
10520
10521 Tue Apr 25 23:47:38 2000  Owen Taylor  <otaylor@redhat.com>
10522
10523         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
10524         in cursor location computation.
10525
10526 Tue Apr 25 23:22:59 2000  Owen Taylor  <otaylor@redhat.com>
10527
10528         * gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
10529         vadjusment values properly when layout gets smaller.
10530
10531         * gtk/gtktextview.c (need_repaint_handler): Areas being
10532         passed in are far completely inaccurate, and sometimes
10533         too small, so, for now, just queue a redraw on the
10534         whole visible region.
10535
10536 2000-04-25  Havoc Pennington  <hp@redhat.com>
10537
10538         * gtk/gtktextbtree.c (summary_destroy): new function to 
10539         destroy tag summary nodes
10540         (gtk_text_line_next_could_contain_tag): this function was 
10541         totally broken if the line passed in wasn't below the tag
10542         root. Fix it.
10543         (gtk_text_btree_first_could_contain_tag): In the tag == NULL 
10544         "wildcard" case, we have to do a linear scan. Blah.
10545         (gtk_text_btree_last_could_contain_tag): In tag == NULL case,
10546         we have to do the linear scan
10547         (tag_removed_cb): When a tag is removed from the tag table, 
10548         remove the GtkTextTagInfo node from the btree.
10549         (gtk_text_btree_spew): Implement the spew function, for 
10550         our debugging pleasure.
10551
10552 Tue Apr 25 19:40:18 2000  Owen Taylor  <otaylor@redhat.com>
10553
10554         * gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
10555         a problem with referring to the wrong buffer.
10556
10557         * gtk/gtkentry.c: Fix focus-in/focus-out confusion.
10558
10559         * gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
10560         font description to gtk_style_new() - otherwise things
10561         don't work without a .gtkrc file.
10562
10563         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
10564         tags table if we create it ourself, too.
10565
10566         * gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
10567         it was conflicting with XKB modifiers.
10568
10569         * gtk/gtktextview.[ch]: Add simple support for 
10570         GtkIMContext.
10571
10572 Mon Apr 24 19:34:18 2000  Owen Taylor  <otaylor@redhat.com>
10573
10574         * gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
10575         with deletion from last commit.
10576
10577 Mon Apr 24 19:29:40 2000  Owen Taylor  <otaylor@redhat.com>
10578
10579         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
10580         in the context from the current locale.
10581         
10582         * gtk/gtkentry.c (gtk_entry_size_request): Use language from the
10583         context, not hardcoded value.
10584
10585         * gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
10586         not logical.
10587
10588 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
10589
10590         * gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
10591         attributes - that doesn't handle partial-glyph selection
10592         properly. Instead use new pango_layout_line_get_x_ranges()
10593         functionality to draw the selection.
10594
10595         * gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
10596         now properly handles out-of-range coordinates.
10597
10598         * gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
10599
10600         * gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
10601         public.
10602
10603         * gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
10604         for paragraphs opposite to the base direction of the widget.
10605
10606         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
10607
10608         * gtk/gtktextlayout.c: Don't split segments on marks, since that
10609         causes Arabic words to reshape as you cursor through.
10610
10611         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
10612         cursor position when moving vertically with the arrow keys and
10613         scrolling with page-up/page-down. (Arrow keys save only the X,
10614         scrolling saves both X and Y.)
10615
10616         This means you can line-up / line-down or page-up / page-down
10617         without losing your place, and also that moving vertically
10618         with the cursor keys keeps the same X position, not the same
10619         character count:
10620
10621         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
10622         arrow keys move by display lines, not paragraphs.
10623
10624 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
10625
10626         * gtk/gtklayout.c: Make sure that the bin window is at least
10627         as big as the allocation. (Should we also make sure that the
10628         bin window is big enough to completely cover widget->window?)
10629
10630         * gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
10631         function to get the onscreen rectangle.
10632
10633         * gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
10634         for offsets in window coordinates.
10635
10636 Sun Apr 16 16:13:27 2000  Owen Taylor  <otaylor@redhat.com>
10637
10638         * gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
10639         confusion.
10640
10641         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
10642         from the widget direction.
10643
10644         * gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg): 
10645         Add a "direction" attribute.
10646
10647         * gtk/gtktextview.c: global s/tkxt/text_view/.
10648
10649         * gtk/testtext.c: Added long block of text in Arabic, to test out
10650         the direction attributes. (Some problems with the shaping system
10651         for arabic become obvious - like the fact the cursor splits words
10652         into unjoined pieces.)
10653
10654 Fri Apr 14 12:54:34 2000  Owen Taylor  <otaylor@redhat.com>
10655
10656         * gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
10657
10658         * gtk/gtktextlayout.c: Fix up alignment.
10659
10660         * gtk/testtext.c: Add some tests for centering, wrapping.
10661
10662 Fri Apr 14 09:26:22 2000  Owen Taylor  <otaylor@redhat.com>
10663
10664         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
10665         Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
10666         If we wrote GTK+-specific layout-render function this could just replace
10667         the draw_layout() operation in the vtable.
10668
10669         * gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to 
10670         pango_layout_get_cursor_pos() and use that function.
10671
10672         * gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
10673         is a non-static symbol.
10674
10675         * gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
10676         with gtk_text_btree_find_line_by_y()
10677
10678         * gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
10679         renderer that handles GtkTextAppearance attributes.
10680
10681         * gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h: 
10682
10683           - Move the values in the style that don't affect geometry into a
10684             GtkTextAppearance structure.
10685           - Change underline to take a PangoUnderline and "font" a string
10686             representation of a font description
10687           - Add a "font_desc" attribute which takes a FontDescription structure.
10688
10689         * gtk/gtktextlayout.[ch]:
10690
10691           - Get rid of the display-line list per each line. Instead, we
10692             generate, on demand, a GtkTextLineDisplay structure which]
10693             contains a PangoLayout * and other necesary information
10694             (offsets, cursor locations) for displaying a paragraph.
10695           - Get rid of the code to wrap lines, create display chunks,
10696             etc. Instead, we just go through a paragraph and convert
10697             it into the necessary inputs to a PangoLayout.
10698           - Implement a new attribute type, GtkTextAttrAppearance. This
10699             holds a GtkTextAppearance, and is used to pass colors, 
10700             stipple, etc, through from the layout to the display without
10701             having to use lots and lots of individual attributes.
10702           - Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
10703             in terms of PangoLayout functions.
10704         
10705         * gtk/gtktextview.c: 
10706          
10707           - Handle passing the necessary PangoContext to the layout
10708           - Some fixups in painting to deal with the automatic backing store
10709             and offsetting of GTK+-1.4
10710           - Add a style_set handler so that the default style reacts
10711             properly to theme changes.
10712         
10713         * gtk/gtktext?*.[ch]: Random code-style fixes.
10714
10715         * gtk/testtext.c: Substitute in languages that Pango handles now for Thai
10716
10717 Mon Apr 10 10:33:45 2000  Owen Taylor  <otaylor@redhat.com>
10718
10719         * gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
10720         in original form preparatory to Pango-ization and gdkimcontext-ization.
10721
10722 Thu Apr  6 19:25:39 2000  Owen Taylor  <otaylor@redhat.com>
10723
10724         * gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
10725         so that we can derive from gtkimcontext in language bindings properly.
10726
10727 Thu Apr  6 16:02:52 2000  Owen Taylor  <otaylor@redhat.com>
10728
10729         * gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
10730         Add a compose table including (almost) all the compose combinations
10731         from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
10732         data in the XIM implementation.
10733
10734         * gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
10735         Moved functions to convert keyvalues from and to unicode here from
10736         the win32 port and made them public.
10737
10738 Wed Apr  5 16:37:29 2000  Owen Taylor  <otaylor@redhat.com>
10739
10740         * gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
10741
10742 Wed Apr  5 16:27:45 2000  Owen Taylor  <otaylor@redhat.com>
10743
10744         * gtk/gtkimcontext.[ch]: Base class for new input context system
10745
10746         * gtk/gtkimmulticontext.[ch]: Proxy input context that allows
10747         the real input context implementation to be loaded from modules
10748         and switched on the fly.
10749
10750         * gtk/gtkcontextsimple.[ch]: Simple implementation of an input
10751         context that just does direct keysymbol => unicode translation.
10752
10753         * gtk/gtkentry.[ch]: Start switching editing over to using
10754         GtkInputContext. (No handling of preedit yet.)
10755
10756 Wed Apr  5 15:48:41 2000  Owen Taylor  <otaylor@redhat.com>
10757
10758         * gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
10759         many substitutions. (klass should not be subsituted.)
10760
10761 Wed Apr  5 00:18:14 2000  Owen Taylor  <otaylor@redhat.com>
10762
10763         * configure.in: Add checks for Pango
10764
10765         * configure.in docs/Makefile.am: Add test for sgml2html
10766         and allow 'make dist' without building html, but print out
10767         warnings in that case. (For making snapshots)
10768
10769         * gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
10770         Add Pango libraries and C flags
10771
10772         * gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
10773         Add function (gdk_draw_layout) to draw a pango layout.
10774
10775         * gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
10776         for getting Pango contexts for GDK.
10777
10778         * gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
10779
10780         * gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
10781         editing.
10782
10783         * gtk/gtkentry.c: Hack in simple Hebrew input with direct
10784         keysym => unicode translations. More languages can be added
10785         here, but real input-method support is needed.
10786
10787         * docs/Changes-1.4.txt: Added note about entry behavior.
10788         
10789         * gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
10790         to set the reading direction for a widget and the global direction.
10791         Add test which allows toggling the global direction. Two private
10792         flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
10793
10794         * gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
10795           gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c 
10796
10797         * gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
10798
10799         * gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
10800         underlining now handled by Pango.
10801
10802         * gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
10803         to RCStyle and Style. (Having both this and the old font name and GdkFont 
10804         is temporary.)
10805
10806         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added 
10807         convenience functions for creating contexts and layouts for widgets.
10808
10809         * gtk/testgtk.c: Enhance label tests with multilingual labels.
10810
10811 2000-05-29  Jonathan Blandford  <jrb@redhat.com>
10812
10813         * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
10814         titles to be active, even if they aren't visible.
10815         (gtk_clist_column_titles_passive):  Ditto.
10816
10817 2000-05-21  Nils Barth  <nils_barth@post.harvard.edu>
10818
10819         * gtkmenu.c:
10820         * gtkmenu.h:
10821         * gtktypeutils.h: Spelling/grammar fixes in comments.
10822
10823 Tue May 23 12:25:07 CEST 2000 lupus <lupus@debian.org>
10824
10825         * gdk/nanox/*.h: add missing header files.
10826
10827 Fri May 19 11:52:59 2000  Tim Janik  <timj@gtk.org>
10828
10829         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set
10830         send_event to TRUE.
10831         (gtk_drawing_area_size): queue a resize.
10832
10833 Sun Mar 26 03:21:28 2000  Tim Janik  <timj@gtk.org>
10834
10835         * gtk/gtksignal.c (gtk_signal_handlers_destroy): when unref-ing
10836         the handlers, also invalidate them. bug nailed down by Karl Nelson
10837         <kenelson@ece.ucdavis.edu>.
10838
10839 Fri May 19 06:49:23 2000  Tim Janik  <timj@gtk.org>
10840
10841         * gtk/gtkfontsel.c (gtk_font_selection_get_font_name): handle
10842         "(nil)" foundries, patch from Grigorios Magklis.
10843
10844         * gtk/gtkfontsel.c (gtk_font_selection_load_font): don't crash
10845         on non-available fonts, based on a patch by Grigorios Magklis
10846         <maglis@cs.rochester.edu>.
10847
10848 2000-05-18  Elliot Lee  <sopwith@redhat.com>
10849
10850         * gdk/x11/gdkregion-generic.c: If a region does not have any
10851         rectangles, or if the specified rectangle is not in the region, then return GDK_OVERLAP_RECTANGLE_OUT
10852         instead of GDK_OVERLAP_RECTANGLE_IN.
10853
10854 2000-05-17  Jonathan Blandford  <jrb@redhat.com>
10855
10856         * gtk/gtklayout.c (gtk_layout_map): Remove references to
10857         OFFSCREEN, as it is no longer necessary.
10858
10859 Wed May 17 10:52:12 2000  Owen Taylor  <otaylor@redhat.com>
10860
10861         * gtk/gtkcolorsel.c: Patch from David Santiago
10862         <mrcooger@cyberverse.com> to change things so that the 
10863         indicator of the active palette entry is done independently,
10864         not via the focus, since it should always be visible.
10865
10866 2000-05-17  Tor Lillqvist  <tml@iki.fi>
10867
10868         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Plug same
10869         refcount leaks as in the X11 backend.
10870
10871         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Logging
10872         cosmetics.
10873
10874         * gdk/win32/gdkwindow-win32.c: Similar changes as in X11
10875         backend. Add _gdk_windowing_window_destroy().
10876
10877         * gtk/gtkcolorsel.c: Include correct backend-specific header.
10878         Don't use XColor unless on X11. (No GDK_VISUAL_STATIC_COLOR
10879         either, but these probably do exist on nanox?)
10880         
10881         * gtk/gtkhsv.c: Use G_PI (fresh from <glib.h>) instead of M_PI
10882         which isn't necessarily defined by <math.h>.
10883
10884         * gtk/gtkobject.c (gtk_object_init): Don't go up the class
10885         ancestry past GtkObject.
10886
10887         * gtk/gtktypeutils.h: Mark GTK_TYPE_IDENTIFIER for export/import
10888         from DLL on Win32.
10889
10890         * gtk/gtk.def: Update corresponding to recent changes.
10891
10892         * gtk/makefile.{cygwin,msc}: Updates.
10893
10894 Fri May 12 18:46:51 2000  Owen Taylor  <otaylor@redhat.com>
10895
10896         * docs/Changes-1.4.txt: A bit of editing.
10897
10898         * gdk/gdkwindow.c (_gdk_window_clear_update_area) 
10899         * gdk/x11/gdkwindow-x11.c (gdk_window_hide): Add a function
10900         to clear the update area for the window, and clear it
10901         when hiding a window.
10902
10903         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Ignore
10904         if window destroyed.
10905
10906         * gdk/gdkwindow.c (gdk_window_end_paint): Likewise.
10907
10908         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c gdk/gdkinternals.h: Move 
10909         gdk_window_destroy() to the generic code, since there was a lot of 
10910         window-system-independent logic it in. Add a function:
10911         
10912          _gdk_window_destroy() 
10913
10914         to the internal API to destroy a window without unreferencing it.
10915         Add a function:
10916
10917          _gdk_windowing_window_destroy()
10918
10919         That does the windowing-system-dependent part of destroying 
10920         the window.
10921
10922 Fri May 12 11:07:41 2000  Owen Taylor  <otaylor@redhat.com>
10923
10924         * gtk/testgtk.c: Fix various memory leaks of pixmaps.
10925
10926 Fri May 12 11:06:10 2000  Owen Taylor  <otaylor@redhat.com>
10927
10928         * gtk/gtkwidget.c docs/Changes-1.4.txt (gtk_widget_shape_combine_mask): 
10929         Make gtk_widget_shape_combine_mask() keep a reference count on
10930         the pixmap since it keeps it around.
10931
10932 Fri May 12 10:53:29 2000  Owen Taylor  <otaylor@redhat.com>
10933
10934         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix refcount
10935         leak.
10936
10937         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix refcount
10938         leak with event filters.
10939
10940 Thu May 11 14:29:44 2000  Owen Taylor  <otaylor@redhat.com>
10941
10942         * gtk/gtkdnd.c (gtk_drag_dest_set_internal): Remove the
10943         signal handlers with the right data arguments. (Fixes
10944         some warnings when a widget was repeatedly set as a drag
10945         destination.)
10946
10947         * gdk/x11/gdkdnd-x11.c (gdk_window_register_dnd): Set data on the
10948         window so we can avoid avoid setting the DND properties on the
10949         toplevel window repeatedly.
10950
10951 2000-05-13  Tor Lillqvist  <tml@iki.fi>
10952
10953         * gdk/win32/gdkwin32.h: Define more message types missing from
10954         mingw headers.
10955
10956         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
10957         call gdk_window_destroy_notify(). It was never called. This
10958         probably meant that the GdkWindow was never freed. Thanks Owen for
10959         noticing (!).
10960
10961         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
10962         window as destroyed before calling DestroyWindow(). DestroyWindow()
10963         causes a call to the window procedure (gdk_WindowProc), which
10964         calls gdk_event_translate(), which calls
10965         gdk_window_destroy_notify(), which gets confused unless the window
10966         is set as destroyed.
10967
10968         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
10969         this function to indicate it's win32 only. Put inside #ifdef
10970         G_ENABLE_DEBUG.
10971
10972         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
10973         debugging function. (gdk_event_translate:) Add a default branch
10974         that uses the above function to print debug messages with all
10975         Windows messages symbolically.
10976
10977         * gdk/win32/gdkprivate-win32.h: Declare it, and
10978         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
10979
10980 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
10981
10982         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
10983         public header file.
10984
10985 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
10986
10987         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
10988
10989         * gtk/gtktext.c: made the adjustments no-construct args, simply
10990         provide default adjustments.
10991         (gtk_text_destroy): release adjustments.
10992
10993         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
10994         adjustment argument non-construct.
10995
10996         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
10997         instead of in finalize.
10998         (gtk_progress_get_text_from_value): 
10999         (gtk_progress_get_current_text): 
11000         (gtk_progress_set_value): 
11001         (gtk_progress_get_percentage_from_value): 
11002         (gtk_progress_get_current_percentage): 
11003         (gtk_progress_set_percentage): 
11004         (gtk_progress_configure): ensure an adjustment is present.
11005
11006 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
11007
11008         * gtk/gtkcolorsel.[hc]:
11009         * gtk/gtkcolorseldialog.[hc]:
11010         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
11011         their parent implementation, use bit fields for boolean values, don't
11012         create unused widgets, usage of glib types, braces go on their own
11013         lines, function argument alignment, #include directives etc. etc. etc..
11014
11015         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
11016
11017 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
11018
11019         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
11020
11021         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
11022         of NULL.
11023
11024         * gtk/gtkcombo.c (gtk_combo_item_destroy): don't keep references
11025         to freed data.
11026         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
11027
11028         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
11029         to NULL when the toplevel is getting destroyed.
11030         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
11031         (gtk_menu_destroy): 
11032         (gtk_menu_init): store the information of whether we have to
11033         readd the initial child ref_count during destruction in a new
11034         GtkMenu field needs_destruction_ref_count.
11035
11036         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
11037         here, those reading: learn from my mistake! ;)
11038         in order for set_?adjustment to support a default adjustemnt if
11039         invoked with an adjustment pointer of NULL, the code read (pseudo):
11040         if (v->adjustment) unref (v->adjustment);
11041         if (!adjustment) adjustment = adjustment_new ();
11042         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
11043         now imagine the first unref to actually free the old adjustment and
11044         adjustment_new() creating a new adjustment from the very same memory
11045         portion. here, the latter comparision will unintendedly fail, and
11046         all hell breaks loose.
11047         (gtk_viewport_set_hadjustment):
11048         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
11049         after unreferencing it.
11050
11051         * gtk/gtkcontainer.[hc]: removed toplevel registration
11052         functions: gtk_container_register_toplevel(),
11053         gtk_container_unregister_toplevel() and
11054         gtk_container_get_toplevels() which had wrong semantics
11055         anyways: it didn't reference and copy the list.
11056
11057         * gtk/gtkwindow.c: we take over the container toplevel registration
11058         bussiness now. windows are registered across multiple destructions,
11059         untill they are finalized. the initial implicit reference count
11060         users are holding on windows is removed with the first destruction
11061         though.
11062         (gtk_window_init): ref & sink and set has_user_ref_count, got
11063         rid of gtk_container_register_toplevel() call. add window to
11064         toplevel_list.
11065         (gtk_window_destroy): unref the window if has_user_ref_count
11066         is still set, got rid of call to
11067         gtk_container_unregister_toplevel().
11068         (gtk_window_finalize): remove window from toplevel list.
11069         (gtk_window_list_toplevels): new function to return a newly
11070         created list with referenced toplevels.
11071         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
11072
11073         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
11074         adjustment a non-construct arg.
11075         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
11076         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
11077         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
11078
11079         * gtk/gtkrange.c: added some realized checks.
11080         (gtk_range_destroy): get rid of the h/v adjustments in the
11081         destroy handler instead of finalize. remove timer.
11082         (gtk_range_get_adjustment): demand create adjustment.
11083
11084         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
11085         we simply create them on demand now and get rid of them in
11086         the destroy handler.
11087         (gtk_viewport_destroy): get rid of the h/v adjustments in the
11088         destroy handler instead of finalize.
11089         (gtk_viewport_get_hadjustment): 
11090         (gtk_viewport_get_vadjustment): 
11091         (gtk_viewport_size_allocate): demand create h/v adjustment
11092         if required.
11093
11094         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
11095         gtk_widget_real_destroy () functionality.
11096         (gtk_widget_real_destroy): reinitialize with a new style, instead
11097         of setting widget->style to NULL.
11098
11099 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
11100
11101         * gtk/gtkcalendar.c:
11102         * gtk/gtkbutton.c: ported _get_type() implementation over to
11103         GType, either to preserve memchunks allocation facilities,
11104         or because Gtk+ 1.0 GtkTypeInfo was still being used.
11105
11106         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
11107         over. prepare for ::destroy to be emitted multiple times.
11108         removed reference tracer magic. chain into GObjectClass.shutdown()
11109         to emit ::destroy signal.
11110
11111         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
11112         fundamental.
11113
11114         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
11115         cludge.
11116
11117         * gtk/gtksocket.c:
11118         * gtk/gtkplug.c:
11119         * gtk/gtklayout.c:
11120         * gtk/gtklabel.c:
11121         * gtk/gtkargcollector.c:
11122         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
11123         not being a fundamental anymore, and to work with the new
11124         type system (nuked fundamental type varargs clutter).
11125
11126         * gtk/*.c: install finalize handlers in the GObjectClass
11127         part of the class structure.
11128         changed direct GTK_OBJECT()->klass accesses to
11129         GTK_*_GET_CLASS().
11130         changed direct object_class->type accesses to GTK_CLASS_TYPE().
11131
11132         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
11133         GType. made most of the GTK_*() type macros and Gtk* typedefs
11134         simple wrappers around macros and types provided by GType.
11135         most notably, a significant portion of the old API vanished:
11136         GTK_TYPE_MAKE(),
11137         GTK_TYPE_SEQNO(),
11138         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
11139         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
11140         GTK_TYPE_ARGS,
11141         GTK_TYPE_CALLBACK,
11142         GTK_TYPE_C_CALLBACK,
11143         GTK_TYPE_FOREIGN,
11144         GtkTypeQuery,
11145         gtk_type_query(),
11146         gtk_type_set_varargs_type(),
11147         gtk_type_get_varargs_type(),
11148         gtk_type_check_object_cast(),
11149         gtk_type_check_class_cast(),
11150         gtk_type_describe_tree(),
11151         gtk_type_describe_heritage(),
11152         gtk_type_free(),
11153         gtk_type_children_types(),
11154         gtk_type_set_chunk_alloc(),
11155         gtk_type_register_enum(),
11156         gtk_type_register_flags(),
11157         gtk_type_parent_class().
11158         replacements, where available are described in ../docs/Changes-1.4.txt.
11159         implemented compatibility functions for the remaining API.
11160
11161         * configure.in: depend on glib 1.3.1, use gobject module.
11162
11163 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
11164
11165         * TODO.xml: Various updates to current status.
11166
11167 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
11168
11169         * gtk.m4: Print out version when test succeeds.
11170
11171 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
11172
11173         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
11174         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
11175         
11176         (Original triangle color selector from Simon Budig
11177         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
11178         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
11179         Santiago <mrcooger@cyberverse.com>)
11180
11181         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
11182         out into a separate widget.
11183
11184         * gtk/testgtk.c: Add some checkbuttons for toggling palette
11185         and opacity controls.
11186
11187 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
11188
11189         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
11190         snuck in prematurely.
11191
11192 2000-05-07  Tor Lillqvist  <tml@iki.fi>
11193
11194         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
11195         had deleted a ! operator by mistake, which caused
11196         GDK_SELECTION_CLEAR events never to be generated, which caused
11197         only the first copy to the clipboard from an gtkeditable to
11198         actually cause a copy to the Windows clipboard.
11199
11200 2000-05-06  Tor Lillqvist  <tml@iki.fi>
11201
11202         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
11203         compilation, too. Current mingw gcc distributions include the
11204         necessary headers. Also the necessary IIDs are now in mingw
11205         headers/libraries, and own definitions unnecessary.
11206
11207         More hacking on OLE2 DND, still doesn't work though, and thus
11208         ifdeffed out.
11209
11210         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
11211         here, too.
11212
11213 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
11214
11215         * gdk/nanox/*: nano-X port work in progress.
11216         * gdk/simple.c: simple test for Gdk.
11217         * README.nanox: notes about the port: read this first!
11218         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
11219         with nano-X.
11220
11221 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
11222
11223         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
11224         gdk_window_clear() into common code, implement in terms of
11225         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
11226         not redirected to the backing rectangle.
11227
11228 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
11229
11230         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
11231         EXTRA_DIST. It does not work well when the file that
11232         everything depends on is not in the tarball.
11233
11234 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
11235
11236         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
11237         with recursion where process_updates() is called from
11238         an expose handler. (GtkTextView is highly broken in
11239         doing this, but it should work, so it is a nice test
11240         case.)
11241
11242 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
11243
11244         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
11245         handle the case where updates are queued during processing of
11246         updates.
11247
11248 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
11249
11250         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
11251         window is on gdk_display - use that instead of segfaulting.
11252
11253 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
11254
11255         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
11256         broken and require an empty arg, give it to them.
11257
11258 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
11259
11260         * gtk/gtklabel.h: indentation fixes.
11261
11262 2000-05-02  Tor Lillqvist  <tml@iki.fi>
11263
11264         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
11265         draw too narrow or too low arcs, they seem to fail, at least with
11266         some display drivers.
11267
11268         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
11269
11270         Large changes to the Win32 backend, partially made necessary by
11271         the changes to the backend-independent internal
11272         structures. Attempts to implement similar backing store stuff as
11273         on X11. The current (CVS) version of the Win32 backend is *not* as
11274         stable as it was before the no-flicker branch was merged. A
11275         zipfile with that version is available from
11276         http://www.gimp.org/win32/. That should be use by "production"
11277         code until this CVS version is usable. (But note, the Win32
11278         backend has never been claimed to be "production quality".)
11279
11280         * README.win32: Add the above comment about versions.
11281
11282         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
11283
11284         * gdk/gdk.def: Update.
11285
11286         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
11287         presumably be replaced by some more better mechanism as 1.4 gets
11288         closer to release shape.
11289
11290         * gdk/makefile.{cygwin,msc}: Update.
11291
11292         * gdk/win32/*.c: Correct inclusions of the backend-specific and
11293         internal headers. Change code according to changes in these. Use
11294         gdk_drawable_*, not gdk_window_* where necessary.
11295
11296         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
11297         our old DND.
11298
11299         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
11300         to interpret single characters as UTF-8. Thanks to Hans Breuer.
11301         Use correct function name in warning messages.
11302
11303         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
11304         GSourceFuncs gdk_event_prepare and gdk_event_check.
11305         (gdk_event_get_graphics_expose): Do implement, use
11306         PeekMessage. Thanks to Hans Breuer.
11307         (event_mask_string): Debugging function to print an GdkEventMask.
11308         (gdk_pointer_grab): Use it.
11309
11310         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
11311         (old) book I used claimed was Hangul actually is CJK Unified
11312         Ideographs Extension A. Also, Hangul Syllables were missing.
11313         Improve logging.
11314
11315         * gdk/win32/gdkgc-win32.c: Largish changes.
11316
11317         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
11318         g_win32_getlocale() from GLib, and not setlocale() to get current
11319         locale name.
11320
11321         * gdk/win32/gdkprivate-win32.h
11322         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
11323         gdkwin32.h, similarily as in the X11 backend.
11324
11325         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
11326         assignment was used instead of equals in if test. Thanks to Hans
11327         Breuer.
11328
11329         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
11330         the X11 version.
11331
11332         * gdk/win32/makefile.{cygwin,msc}
11333         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
11334         path to the Win32 headers that works also with the mingw compiler.
11335
11336         * gtk/gtkstyle.c: Include <string.h>.
11337
11338 2000-04-26  Havoc Pennington  <hp@redhat.com>
11339
11340         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
11341         replacing the broken gtk_label_get ()
11342
11343 2000-04-15  Havoc Pennington  <hp@pobox.com>
11344
11345         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
11346         this keeps scanner scripts from getting confused.
11347
11348         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
11349         data, rather than void
11350
11351 2000-04-15  Tor Lillqvist  <tml@iki.fi>
11352
11353         * gtk/gtkclist.c (gtk_clist_motion)
11354         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
11355         with is_hint FALSE, get x and y from the event. They used to be
11356         used uninitialised. The Win32 backend never sends motion events
11357         marked as hints. This for instance fixes the annoying file and
11358         font selector behaviour in the Win32 version.
11359
11360 2000-04-14  Tor Lillqvist  <tml@iki.fi>
11361
11362         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
11363         gtk_private_n_signals variables, they are used by some software,
11364         sigh.
11365
11366         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
11367         installation directory from the Registry, where the installer
11368         should have put it.
11369
11370 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
11371
11372         * gdk/x11/Makefile.am: Fix problem with installation directory for
11373         gdkx.h
11374
11375         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
11376         <mrcooger@cyberverse.com> so that when selecting menus with the
11377         mouse, the first item will not be selected, but when selecting
11378         with an accelerator, or navigating left-right on a menubar with
11379         the menus popped up, the first item will be selected.
11380
11381 2000-04-05  Dan Damian  <dand@dnttm.ro>
11382
11383         * configure.in: Added "ro" to ALL_LINGUAS.
11384
11385 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
11386
11387         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
11388         indentation.
11389
11390         * Makefile.am (EXTRA_DIST): Fix typo.
11391
11392         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
11393         to catch gdkconfig.h
11394
11395         * gtk/gtkitemfactory.c: Added FIXME.
11396
11397 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
11398
11399         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
11400         s/return_if_fail/return_val_if_fail/g and add a return value.
11401
11402 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
11403
11404         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
11405         merge slipup.
11406
11407         * gdk/gdkinput.h: Fix missing line from merge.
11408
11409 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
11410
11411         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
11412         instead of gdkprivate.h.
11413
11414 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
11415
11416         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
11417         parent class to correctly be GtkDialogClass.
11418
11419 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
11420
11421         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
11422         toplevel windows and their immediate children by their parents,
11423         since the size of toplevel windows is out of our immediate
11424         control and we don't get any real benefit from trying to track
11425         this size for clipping.
11426
11427         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
11428         for input_only windows.
11429
11430         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
11431         to fix some hacks and make sure that we don't try to set the
11432         background of input only windows.
11433
11434 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
11435
11436         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
11437         the _really_ internal stuff, and leave gdkprivate.h for the fake private
11438         stuff that we've traditionally exposed.
11439
11440         * gdk/**.c: Use gdkinternals.h where appropriate.
11441
11442         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
11443         not include gdkprivate-x11.h, move all stuff of conceivable public
11444         interest into gdkx.h; keep all really private stuff in
11445         uninstalled header gdkprivate-x11.h.
11446
11447         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
11448         image->image_put on windows through a new function _gdk_window_draw_image()
11449         to allow us to do backing store for images. (Sort of ugly)
11450
11451         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
11452         contexts locally so that we can offset them properly when drawing 
11453         onto backing pixmaps.
11454
11455         * gdk/gdkinput.h: Reindented
11456
11457         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
11458         pixmap or color for the window, so we can properly initialize
11459         our double-buffer pixmaps, and also so that we temporarily set
11460         a background of None while scrolling.
11461
11462         * gdk/gdkregion.h: Revise region boolean operators to have an
11463         interface that is actually convenient - switch from creating new
11464         regions on every op, to "methods" that modify existing regions
11465         (A = A OP B). 3 argument forms which allow dest == src, would also
11466         be possible, but the current interfaces seem to map nicely
11467         onto what needs to be done. (There is quite a lot of region
11468         code in GDK now.)
11469
11470         * gdk/gdkregion.h: Add constructor from rectangle and a copy
11471         operator.
11472
11473         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
11474         gdkpoly-generic.h: Copy region code from Xlib, switch it over
11475         to 32 bit coordinates, modify it to be mostly GTK+ style
11476         and to have interfaces that match gdkregion.h.
11477
11478         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
11479         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
11480         create a backing pixmap and redirect all drawing to
11481         that backing pixmap until a matching gdk_window_end_paint().
11482
11483         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
11484         Create a special drawable class for GtkWindow's that 
11485         redirects the drawing to the backing pixmap as necessary
11486         and then calls the real operations in _gdk_windowing_window_class.
11487
11488         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
11489         Store invalid region for each window. Generate expose events for invalid
11490         region in an idle. This replaces both the expose compression
11491         and the redrawing queuing in GTK+. It is both more efficient and
11492         simpler than either one individually and far more so then the
11493         combination.
11494
11495         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
11496         Emulate 32 bit coordinates for windows with 16 bit coordinates
11497         by offsetting drawing, guffaw scrolling techniques and
11498         mapping/unmapping child windows as necessary.
11499
11500         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
11501         where, when invalid regions are processed, the region is stored,
11502         and if expose events come in that are detectably duplicate
11503         the processed exposes (by comparison of event serial numbers),
11504         the stored region is subtracted out of those exposes.
11505
11506         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
11507         regions newly exposed when scrolling or resizing windows.
11508         This, combined with forcing processesing of queued invalidated
11509         regions, gives nice flicker-free scrolling.
11510
11511         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
11512         invalidated regions after every scroll.
11513
11514         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
11515         emulation in GDK. Its, for all practical purposes just a
11516         GtkViewport/GtkFixed hybrid now.
11517
11518         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
11519         (16-bit) structures as necessary instead of just casting.
11520
11521         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
11522         in terms of the structures from gdkregion-generic.c, using appropriate
11523         offsets from GDK to X11 coordinates. Cache clip mask and
11524         origin and ts origin locally and only flush to the server
11525         when drawing, to avoid constantly setting and resetting these
11526         values when offsetting GC's for scrolling and backing pixmaps.
11527
11528         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
11529
11530         * gtk/gtkcontainer.c: Call process_all_updates at end
11531         of resizing to reduce flicker. (Avoids having redraw
11532         lag arbitrarily behind resize under some circumstances)
11533
11534         * gtk/gtkentry.c: Remove old backing store code, and simply take
11535         advantage of the new backing store capabilities of GDK.
11536
11537         * gtk/gtkmain.c: Simple implementation of widget backing
11538         store - simply push a paint while handling each expose.
11539         (Should really be configurable widget for widget.)
11540         
11541         * gtk/gtkwidget.c: Remove all the old complicated redraw
11542         code, and simply invalidate the GDK windows from
11543         gdk_window_queue_clear(), etc. (Sigh, so much carefully
11544         debugged complexity ... gone to the winds.)
11545
11546         Remove all the code for suppressing expose events while
11547         resizes are pending; this isn't needed since the invalid
11548         areas won't be processed until after the resizes are
11549         processed, since they are in a lower priority idle.
11550
11551 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
11552
11553         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
11554         and height of dest rectangle for non-intersecting rectangles.
11555
11556 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
11557
11558         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
11559         for GdkRectangle.
11560
11561 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
11562
11563         * gdk/gdk{events,image,private,types,window}.h
11564          gdk/x11/gdkinputprivate.h: Change all coordinates
11565          from int16 to int. Also, Change width and height from
11566          unsigned to signed to avoid all the stupid C 
11567          signedness bugs.
11568
11569 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
11570
11571         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
11572         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
11573         Add some more detailed checking.
11574
11575         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
11576         New function to retrieve the depth of a drawable.
11577
11578         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
11579         field, reorder fields to save memory. 
11580
11581 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
11582
11583         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
11584         of the background image instead of scaling the background down to
11585         a line.
11586
11587         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
11588         which temporarily set slider to wrong size.
11589
11590         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
11591         queue_clear().
11592
11593 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
11594
11595 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
11596
11597         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
11598
11599 2000-03-17  Tor Lillqvist  <tml@iki.fi>
11600
11601         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
11602         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
11603
11604         * gdk/win32/gdkfont-win32.c
11605         * gdk/win32/gdkproperty-win32.c
11606         * gdk/win32/gdkselection-win32.c
11607         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
11608         now declared such.
11609
11610 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
11611
11612         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
11613
11614 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
11615
11616         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
11617         is called without trapping X errors.
11618
11619 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
11620
11621         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
11622         way into the fontset lists.
11623
11624 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
11625
11626         * gtk/gtkthemes.h: add extern "C" scope.
11627
11628 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
11629
11630         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
11631         to make appends to the list constant. (gtk-guy-990901-0.patch)
11632
11633 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
11634
11635         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
11636         for the typename hash table.
11637
11638 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
11639
11640         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
11641         to make sure we never divide by zero. 
11642         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
11643
11644 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
11645
11646         * gtk/gtkfontsel.c: Apply patch from
11647         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
11648         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
11649
11650         Also, some cleanups in atom handling.
11651
11652 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
11653
11654         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
11655         not GtkWidget.
11656
11657 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
11658
11659         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
11660         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
11661         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
11662         more guint wrap-around bugs before going to bed.
11663
11664 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
11665
11666         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
11667         guint wrap arounds in allocation.width.
11668
11669         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
11670         process untill we fit the allocation given.
11671
11672 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
11673
11674         * gtk/gtkwidget.c:
11675         (gtk_widget_unrealize): guard widget access with ref/unref
11676         around signal emission.
11677         (gtk_widget_hide): same here, but also check its destroyed
11678         state before queueing a resize.
11679
11680 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
11681
11682         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
11683         of gtk_default_insensitive_bg as insensitive base color.
11684
11685         * gtk/gtktext.c (gtk_text_style_set): set the background color according
11686         to the widget's state.
11687         (gtk_text_realize): same here.
11688         (gtk_text_state_changed): same here.
11689         (draw_bg_rect): compare background color against base[] from
11690         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
11691
11692 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
11693
11694         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
11695         grabs are active, unless a delete event is send to the toplevel
11696         of the currently grab holding widget.
11697
11698 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
11699
11700         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
11701         debugging g_print's.
11702
11703 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
11704
11705         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
11706         ever make the scrolled-window requisition ever depend on the 
11707         visibility state of the scrollbars for the AUTOMATIC policy. 
11708         This breaks the GTK+ requisition model, and causes loops.
11709
11710 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
11711
11712         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
11713         the default font to avoid problems with XFree86-4.0 where the
11714         default charset is iso10646-1, not iso8859-1.
11715
11716 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
11717
11718         * acinclude.m4
11719         * config.guess
11720         * config.sub
11721         * ltconfig
11722         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
11723
11724         * gtk/Makefile.am: minor cosmetic consistency tweak
11725
11726 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
11727
11728         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
11729         the activate_time to 0, so that we handle a quick
11730         press/release press/release properly and don't suppress
11731         the second release. (Red Hat bug #7545)
11732
11733 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
11734
11735         * gtk/gtkctree.c (row_delete):
11736         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
11737         bugs with destruction notifier, *always* update internal
11738         structures *before* calling user code.
11739
11740 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
11741
11742         A few more fixes for bug #5487, #2051, #2677.
11743         * gtk/gtkclist.c : 
11744         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
11745         not GDK_BUTTON_PRESS.
11746         (resync_selection): resync only if selection_mode is
11747         GTK_SELECTION_EXTENDED
11748         * gtk/gtkctree.c (resync_selection): same here
11749
11750 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
11751
11752         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
11753         gdk_drag_get_selection() and gtk_menu_detach().
11754
11755         [ From Jeroen Ruigrok/Asmodai ]
11756
11757 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
11758
11759         * gtk/gtknotebook.c (gtk_notebook_size_request): 
11760         page->tab_label can be NULL.
11761
11762 2000-01-25  Havoc Pennington  <hp@pobox.com>
11763         
11764         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
11765         arg is boolean
11766
11767         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
11768
11769         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
11770
11771         * gdk/gdkproperty.c (gdk_property_get): return boolean
11772
11773         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
11774
11775         * gdk/gdkim.c (gdk_im_ready): return boolean
11776
11777         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
11778
11779         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
11780         glib clash, should fix glib)
11781
11782         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
11783         (gdk_get_show_events): return gboolean, and canonicalize 
11784         to TRUE/FALSE
11785
11786         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
11787         colormap is private
11788         (gdk_colors_alloc): gboolean whether to be contiguous
11789         (gdk_color_equal): return gboolean since we are a predicate
11790         and not a qsort() (this looks semi-wrong due to glib breakage,
11791         IMO glib should be fixed)
11792         
11793         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
11794         (gdk_get_use_xshm): return gboolean
11795         (gdk_pointer_is_grabbed): return gboolean
11796
11797         * gdk/gdk.h: Change prototypes to match all the above changes,
11798         and re-run egtk-format-protos as required.
11799
11800 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
11801
11802         * gtk/gtkctree.c (resync_selection): 
11803         * gtk/gtkclist.c (resync_selection):
11804
11805         Return immediately if clist->drag_pos < 0. This is a workaround
11806         for the corrupt state that the clist gets into when a
11807         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
11808
11809         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
11810         
11811         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
11812         variable from recent commit.
11813
11814 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
11815
11816         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
11817
11818 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
11819
11820         * gtk/Makefile.am: prefix all autogenerated source that get build in
11821         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
11822         in builddir. since we subsequently cd into srcdir for autogeneration,
11823         the paths have to be stripped from the target file names, thusly we
11824         use $(@F) as target names now.
11825         put a comment about configure.in's --disable-rebuilds option,
11826         which can be used for non-writable source directories, for development
11827         setups though, srcdir has to be *writable*.
11828
11829 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
11830
11831         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
11832           Finish the job of allowing event to be NULL.
11833           (Fixes bug #4283, reported by Chris Blizzard)
11834
11835         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
11836           things so that the cursor appears on screen, properly
11837           take into account INNER_BORDER.
11838           (Fixes bug #4754, reported by Antonio Campos)
11839
11840 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
11841
11842         * gtk/gtknotebook.c (gtk_notebook_map): Don't
11843           show the tab_label unless it itself is visible.
11844
11845           gtk/gtknotebook.c (gtk_notebook_size_request):
11846           Do a better job of making sure that the visibility
11847           of the tab label corresponds to whether it should
11848           be mapped or not.
11849
11850 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
11851
11852         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
11853           Use the requisition, not the allocation, since the
11854           allocation has not necessarily been computed yet.
11855           (Pointed out by Eugene Osintsev)
11856
11857 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
11858
11859         * gtk/gtkstyle.c (gtk_style_new): Dont' set
11860           style/base[GTK_STATE_INSENSITIVE] both to
11861           gtk_default_insensitive_bg!
11862           (Bug #2187, reported by Jonathan Blandford)
11863
11864         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
11865           Add Alt_L, Alt_R to list of invalid accelerators.
11866           (Bug #3736, reported by Vlad Harchev)
11867
11868 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
11869
11870         * gtk/gtkfilesel.c (open_ref_dir): Fix several
11871         bugs which occured after an attempt to open 
11872         invalid home directory left cmpl_state->reference_dir == NULL.
11873
11874          - completion on files in home directory didn't work
11875          - completion on an empty string caused  segfault
11876
11877          (Bug #3678, reported by Steve Ratcliffe)
11878
11879         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
11880         cut and paste error that was causing scales to
11881         be incorrectly positioned.
11882         (Bug #2956,
11883          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
11884
11885 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
11886
11887         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
11888         when checking for dcgettext, if we've found we needed
11889         it for dgettext.
11890 +
11891 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
11892
11893         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
11894         queue_clear on NO_WINDOW widgets during a reparent,
11895         since at that point the window and widget heirarchies
11896         are out of sync. This stops crashing in some cases
11897         (the scrolled window reparent test, for instance), and
11898         _probably_ won't cause drawing errors.
11899
11900         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
11901         test do what it was supposed to do and be robust against
11902         window closings, etc. (Bug #2443)
11903
11904 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
11905
11906         * gtk/gtkentry.c: Fix return values on mouse events.
11907         (Bug #2686, Sky <seb_sky@yahoo.com>)
11908
11909         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
11910         (pointed out by George Lebl)
11911
11912         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
11913         (From Ettore Perazzoli  <ettore@helixcode.com>)
11914  
11915 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
11916
11917         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
11918         clicks between rows or outside calender area correctly.
11919         (Patch from Damon Chaplin)
11920
11921         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
11922         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
11923           Call destroy function when overwriting existing data. 
11924           (Pointed out by Damon Chaplin)
11925
11926 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
11927
11928         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
11929           which was causing problems on various systems with Xmu.
11930           This hasn't been needed for a very long time.
11931           (Fixes #1185 3167)
11932
11933 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
11934
11935         * gdk/gdki18n.h: Include <ctype.h> when defining
11936           gdk_isw* in terms of is* as a fallback.
11937           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
11938
11939 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
11940
11941         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
11942           realize the widget when it is size allocated!
11943           (old, old bug)
11944
11945         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
11946           Removed unused call to gdk_window_get_size() that
11947           showed up when the above was fixed.
11948
11949 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
11950
11951         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
11952           fix up widget->window when the widget is a
11953           NO_WINDOW container widget.
11954
11955 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
11956
11957         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
11958           to account for the fact that feof() does _not_ 
11959           return TRUE on errors, and thus avoid infinite loops
11960           when trying to use gdk_pixmap_create_from_xpm()
11961           on unreadable values.
11962
11963 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
11964
11965         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
11966
11967 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
11968
11969         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
11970           gdk_gc_set_dashes to take gint8 instead of gchar to
11971           make it clearer that it is _not_ a NULL terminated string.
11972
11973         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
11974           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
11975           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
11976           arguments.
11977
11978 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
11979
11980         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
11981         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
11982         background size relative to our allocation, guard against small
11983         allocations, we may have not yet been size allocated.
11984
11985 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
11986
11987         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
11988         not just version == 3. We implement all 3 + most of 4 - 
11989         (we don't support matching text/plain;charset=iso-8859-1
11990         to a dest that expects text/plain). We'll still advertise
11991         3 to be safe, but any client implementing version >= 3
11992         must interoperate with 3.
11993         
11994 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
11995
11996         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
11997         background and gc members, add a warning in gtk_tooltips_set_color()
11998         indicating that this function is deprecated.
11999
12000 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
12001
12002         * docs/gtkfaq.sgml: FAQ Update:
12003           - Minor cleanups (Emmanuel, me)
12004           - New questions:
12005                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
12006                 How can I retrieve the text from a GtkMenuItem? (timj)
12007                 How do I validate/limit/filter the input to a GtkEntry? (me)
12008                 Memory does not seem to be released when I free the list
12009                         nodes I've allocated (timj)
12010
12011 2000-03-07  Tor Lillqvist  <tml@iki.fi>
12012
12013         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
12014         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
12015         for which it is no use to call GetLastError onWin9x.
12016         (gdk_other_api_failed) New function, for general error
12017         reporting without calling GetLastError.
12018         (gdk_win32_api_failed) OTOH, this function always calls
12019         GetLastError. (gdk_win32_last_error_string) Remove this function,
12020         GLib has the equivalent now.
12021
12022         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
12023         call them with function name, file name and line number in the
12024         arguments.
12025
12026         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
12027         functions.
12028         
12029         * gtk/gtk.def: Add some missing entry points.
12030
12031         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
12032         gtk_paned_set_gutter_size, which don't exist any longer, as void.
12033         
12034         Fixes by Hans Breuer:
12035
12036         * gdk/makefile.msc: Update for debugging.
12037
12038         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
12039         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
12040         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
12041         in the dash_list.
12042
12043         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
12044         the x11 backend.
12045
12046         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
12047
12048         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
12049
12050 2000-03-04  Tor Lillqvist  <tml@iki.fi>
12051
12052         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
12053         just pixel value of background colour.
12054
12055         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
12056         containing code snippet previously duplicated in a couple of
12057         places.
12058         
12059         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
12060         gdk_colormap_color.
12061
12062         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
12063         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
12064         events for autorepeated Shift, Control and Alt keys. Use
12065         gdk_colormap_color.
12066
12067         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
12068         pointer is inside the window the cursor of which we are setting,
12069         call SetCursor immediately.
12070
12071         * gdk/win32/makefile.cygwin
12072         * gtk/makefile.cygwin: If we don't have the build number stamp
12073         file, use zero.
12074
12075         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
12076         gtk_paned_set_gutter_size as empty.
12077
12078         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
12079         
12080 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
12081
12082         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
12083           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
12084           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
12085           docs/gtk_tut.sgml docs/gtk.texi TODO:
12086
12087           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
12088
12089 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
12090
12091         * gtk/gtkcalendar.c: Implement num_marked_dates,
12092           and don't emit mutiple day_selected signals on
12093           month_prev.
12094
12095 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
12096
12097         * docs/make-todo (lineno): let title and logo be configurable so
12098         that GNOME can use this script too.
12099
12100         * TODO.xml: added logourl and a title
12101
12102 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
12103
12104         * TODO.xml: Added some UI items, and an explanatory
12105         comment at the top of the file.
12106
12107 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
12108
12109         * TODO.xml: some updates, added abunch of new entries.
12110         a note for those fiddeling with this file, when done
12111         with it, invoke:
12112         $ ./docs/make-todo TODO.xml >/dev/null
12113         and correct output errors before comitting changes.
12114
12115 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
12116
12117         * TODO.xml: Added XML-structured TODO file.
12118         * docs/make-todo: python script to turn TODO.xml into
12119           pretty XML output. 
12120
12121 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
12122
12123         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
12124         the function to let it draw the seven dots, instead of the old,
12125         much maligned, method.
12126         (draw_dot): New function to draw a dot.
12127
12128         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
12129         to draw the handle inside the border width as opposed to outside.
12130         Use paint function instead of gdk_draw_point.
12131
12132         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
12133         to draw the handle inside the border width as opposed to outside.
12134         Use paint function instead of gdk_draw_point.
12135
12136         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
12137         Change indenting to be more GTK like.
12138
12139 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
12140
12141         * docs/gtk_tut.sgml: New section on GtkCalendar
12142         * examples/calendar: Update example code
12143
12144 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
12145
12146         * docs/gtkfaq.sgml: FAQ Update
12147
12148 2000-02-19  Anders Carlsson  <andersca@gnu.org>
12149
12150         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
12151         to prevent the scroll event to be propagated upwards.
12152
12153 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
12154
12155         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
12156         OwnerGrabButtonMask from button entries for
12157         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
12158
12159         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
12160         to the event mask (which will result in button/press release
12161         being added to the event mask on Unix) so scrolling works
12162         for layouts in scroll windows.
12163
12164         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
12165
12166         Patch from Anders Carlsson  <andersca@gnu.org> to add
12167         a scroll event.
12168
12169         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
12170         scrolling to the "Test Scrolling" part of testgtk.
12171  
12172         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
12173  
12174         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
12175         it against GDK_SCROLL.
12176  
12177         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
12178         way of mouse wheel scrolling.
12179  
12180         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
12181  
12182         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
12183  
12184         * gtk/gtkmain.c: Removed previous mouse wheel hack.
12185  
12186         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
12187         gdk_event_mask_table.
12188  
12189         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
12190         GdkEventScroll handler.
12191  
12192         * gdk/gdkevents.h: Added GdkEventScroll structure.
12193  
12194 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
12195
12196         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
12197         and Anders Carlsson to change the Paned widgets so that they
12198         can be dragged from anywhere along the length. Also change
12199         the way that this is drawn to make this apparent.
12200
12201         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
12202         from George Lebl to check that option_menu->menu is present
12203         before getting history.
12204
12205 2000-02-14  Tor Lillqvist  <tml@iki.fi>
12206
12207         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
12208         before the assertion for non-NULL segment list.
12209
12210         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
12211         Seems that pattern brushes *must* be 8x8 pixels! At least on my
12212         machine, but it might be display driver dependent. Sigh, so make
12213         sure the stipple is that size. Does Windows suck or what?
12214
12215         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
12216         places.
12217
12218 2000-02-13  Havoc Pennington  <hp@pobox.com>
12219
12220         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
12221         refcount to 1
12222         (gdk_cursor_new): init refcount to 1
12223
12224         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
12225
12226 2000-02-13  Tor Lillqvist  <tml@iki.fi>
12227
12228         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
12229         so that we don't have to do unnecessary settings to the HDC.
12230
12231         * gdk/win32/gdkdrawable-win32.c
12232         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
12233         gdk_gc_predraw.
12234
12235         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
12236         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
12237         GDI paths, call WidenPath to get the outline of the stroken path,
12238         and then fill the outline (with the brush that was built from the
12239         stipple).
12240
12241         * gdk/win32/gdkgc-win32.c: Factor out common code from
12242         _gdk_win32_gc_new and gdk_win32_gc_set_values into
12243         gdk_win32_gc_values_to_win32values. Use correct colour for
12244         SetBkColor() (Until now the code actually used a random colour in
12245         the call to SetBkColor()... but that didn't show up as not many
12246         GDI APIs use the background colour. Pattern (opaque stippled)
12247         brushes do.)
12248
12249         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
12250         gdk_win32_api_failed): New functions for error logging.
12251
12252         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
12253         WIN32_API_FAILED to call them, passing function or file name and
12254         line number.
12255
12256         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
12257
12258         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
12259         GdkColor for foreground and background in GdkGCWin32Data.
12260
12261         * gdk/makefile.cygwin: Link in the resource object separately.
12262
12263         * gdk/win32/rc/gdk.rc
12264         * gtk/gtk.rc (New file)
12265         * gdk/win32/makefile.cygwin
12266         * gtk/makefile.cygwin: Update build number in DLLs automatically,
12267         as in GLib.
12268
12269 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
12270
12271         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
12272         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
12273         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
12274         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
12275         parameters given and cursor->ref_count. coding style fixups.
12276
12277         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
12278         not GtkWidget.
12279         
12280         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
12281         fix up widget macros and add _GET_CLASS() variant.
12282         
12283         * gtk/*.c: some GtkType fixups.
12284
12285 2000-02-09  Tor Lillqvist  <tml@iki.fi>
12286
12287         * gdk/win32/gdkproperty-win32.c
12288         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
12289         were reversed.
12290
12291 2000-02-04  Tor Lillqvist  <tml@iki.fi>
12292
12293         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
12294         g_filename_to_utf8 to convert the font names Windows gives us from
12295         whatever is the default codepage to UTF-8.
12296         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
12297         in the other direction.
12298
12299         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
12300         error in debugging output.
12301
12302 2000-02-02  Tor Lillqvist  <tml@iki.fi>
12303
12304         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
12305         and height parameters to gdk_window_clear_area(). Not minus one.
12306
12307 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
12308
12309         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
12310         checks if the widget passed to gtk_drag_get_data() was not the
12311         dest widget.
12312
12313 2000-02-01  Tor Lillqvist  <tml@iki.fi>
12314
12315         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
12316         g_filename_from_utf8 functions (which were added a moment ago to
12317         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
12318         size buffers.
12319
12320         gtk_file_selection_get_filename returns the filename in the C
12321         runtime encoding. It calls g_filename_from_utf8, but copies the
12322         returned string to a static buffer, which is returned. I think
12323         this is better than returning the result from g_filename_from_utf8
12324         directly, which would mean all apps that use it would have to free
12325         the return value. Or should this function care about this issue at
12326         all? Maybe a new function with clearly defined semantics.
12327
12328         * gtk/gtkfilesel.h: Add comment about
12329         gtk_file_selection_get_filename returning the filename in the C
12330         runtime's encoding.
12331
12332         * README.win32
12333         * gdk/gdk.def
12334         * gdk/makefile.{cygwin,msc}
12335         * gtk/gtk.def: Updates.
12336
12337         * gdk/gdkcursor-win32.c: Initialise refcount.
12338
12339 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
12340
12341         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
12342
12343 2000-01-30  Havoc Pennington  <hp@pobox.com>
12344
12345         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
12346         destroy
12347
12348         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
12349
12350         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
12351         implemented in platform-specific code
12352
12353         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
12354
12355         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
12356         underscore in front
12357
12358         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
12359         put an underscore in front
12360
12361         * gdk/gdkcursor.c: new file, implements
12362         gdk_cursor_ref/gdk_cursor_unref
12363
12364         * gdk/gdkcursor.h: Refcount GdkCursor
12365
12366         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
12367
12368 2000-01-29  Tor Lillqvist  <tml@iki.fi>
12369
12370         * gdk/gdkwindow.h
12371         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
12372
12373 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
12374
12375         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
12376         structures to properly inherit from GtkWidget not GtkBin.
12377
12378 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
12379
12380         * gtk+.spec.in: Added lib/gtk+/include/* to %files
12381         (bug #5178 - Peter Wainright)
12382         
12383         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
12384         so that it will be installed.
12385         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
12386
12387 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
12388
12389         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
12390         for the GtkStyleClass vtable const.
12391
12392         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
12393         take a const string argument like GtkTranslateFunc. This will
12394         require changes in use code.
12395
12396 2000-01-19  Tor Lillqvist  <tml@iki.fi>
12397
12398         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
12399         semantics (to mimic the X11 backend, which just calls XClearArea)
12400         is to check for zero width (and height), and in that case use the
12401         window's width minus x (height minus y). This fixes for instance
12402         some redraw problems with gtkclist, which were easily noticeable
12403         in the gtk file selection widget.
12404
12405         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
12406         windows.
12407
12408 2000-01-13  Tor Lillqvist  <tml@iki.fi>
12409
12410         * configure.in
12411         * gdk/Makefile.am
12412         * gdk/x11/Makefile.am
12413         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
12414         (bug #5177).
12415         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
12416         out later.
12417
12418 2000-01-09  Tor Lillqvist  <tml@iki.fi>
12419
12420         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
12421         WM_MOVE for iconified or invisible windows. This fixes various
12422         problems when minimising windows. Thanks to Bernd Herd.
12423
12424 2000-01-05  Tor Lillqvist  <tml@iki.fi>
12425
12426         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
12427         backend's draw_lines method, not draw_points.
12428
12429 2000-01-02  Tor Lillqvist  <tml@iki.fi>
12430
12431         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
12432         before Owen's reorganisation: Don't have queued_events and
12433         queued_tail statics in this file, but use gdk_queued_events and
12434         gdk_queued_tail. This makes exposure event compression work again.
12435
12436         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
12437         seem to be needed?
12438
12439 1999-12-30  Tor Lillqvist  <tml@iki.fi>
12440
12441         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
12442         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
12443         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
12444         doesn't do anything.
12445
12446         * gdk/gdk.def: Add gdk_xid_table_insert.
12447
12448         * gdk/win32/gdkprivate-win32.h
12449         * gdk/win32/gdkevents-win32.c
12450         * gdk/win32/gdkinput-win32.c
12451         
12452         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
12453         extension_events field in the GdkWindowWin32Data struct. Use only
12454         the extension_events field in GdkWindowPrivate. Previously one was
12455         set, and the other one tested, which broke tablet
12456         functionality. Thanks to Keishi Suenaga for pointing this out.
12457
12458 1999-12-18  Tor Lillqvist  <tml@iki.fi>
12459
12460         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
12461         When handling a single character (text length == 1), don't handle
12462         it as if it was UTF-8.
12463
12464 1999-12-11  Tor Lillqvist  <tml@iki.fi>
12465
12466         * Makefile.am: Distribute README.win32.
12467         
12468         * gdk/Makefile.am
12469         * gdk/win32/Makefile.am: Distribute Win32 files.
12470
12471         * gdk/makefile.msc: New file.
12472
12473         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
12474         after label).
12475
12476         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
12477         gdk_error_code as GDKVAR, as they are referred outside GDK.
12478
12479         * gdk/win32/makefile.msc: Update.
12480
12481         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
12482         tweaks. Check only if at least one of those Unicode subrange bits
12483         we care for is set. If no code page bits are set, guess (wildly)
12484         based on the charset.
12485
12486         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
12487
12488         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
12489         non-NULL.
12490
12491         * gtk/gtkdnd.c
12492         * gtk/gtklayout.c
12493         * gtk/gtkplug.c
12494         * gtk/gtkselection.c
12495         * gtk/gtksocket.c
12496         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
12497         appropriate. There must be a cleaner way to handle this?
12498
12499         * gtk/gtkrc.c: Must include windows.h on Win32.
12500
12501         * gtk/testgtk.c: No need to include gdkx.h.
12502
12503         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
12504
12505 1999-12-07  Tor Lillqvist  <tml@iki.fi>
12506
12507         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
12508         the rbearing is set to the same as the width, but this should be
12509         fixed.
12510
12511 1999-12-06  Tor Lillqvist  <tml@iki.fi>
12512
12513         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
12514         function. If Windows doesn't tell us what Unicode subranges a font
12515         covers, guesstimate based on the codepages it covers. This will
12516         hopefully help those Windows versions or fonts that don't give us
12517         any useful Unicode subrange information with GetTextCharsetInfo.
12518         Call this function in gdk_font_load_internal.
12519
12520         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
12521         minor changes.
12522
12523 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
12524
12525         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
12526         New function, long needed.
12527
12528 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
12529
12530         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
12531         only_if_exists argument of gdk_atom_intern to
12532         bool.
12533
12534 1999-11-25  Tor Lillqvist  <tml@iki.fi>
12535
12536         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
12537         Fix two copy&paste errors.
12538
12539         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
12540         win32 has changed.
12541
12542         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
12543         GdkWin32SingleFont struct.
12544
12545         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
12546         subranges of loaded fonts. Clear font signature first, in case
12547         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
12548         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
12549
12550         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
12551         Unoffset clip region.
12552
12553 1999-11-23  Tor Lillqvist  <tml@iki.fi>
12554
12555         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
12556         event->any.window before calling filter functions.
12557
12558 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
12559
12560         * gtk/gtkgamma.h: Adapt cast macros to standard.
12561
12562 [ Merges from 1.2 ]
12563
12564 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
12565
12566         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
12567         If translation does not include a '/', use entire
12568         translation instead of crashing.
12569
12570 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
12571
12572         * docs/gtk_tut.sgml:
12573         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
12574
12575 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
12576
12577         * gtk/gtkselection.c (gtk_target_list_remove): Use
12578         g_list_remove_link, not g_list_remove.
12579
12580         [ From Geert Bevin <gbevin@thunderstorms.org> ]
12581         
12582 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
12583
12584         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
12585         statement upon unselection (how the heck did that slip in?).
12586
12587 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
12588
12589         * gtk/gtktext.c (gtk_text_freeze): 
12590         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
12591         in frozen state (and aparently crashes). patch provided by Anders
12592         Melchiorsen <and@kampsax.dtu.dk>.
12593
12594 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
12595
12596         * fix insensitive default/focus widget activation,
12597         reported by Matt Goodall <mgg@isotek.co.uk>.
12598
12599         * gtk/gtkwindow.c (gtk_window_key_press_event): 
12600         (gtk_window_activate_default):
12601         (gtk_window_activate_focus):
12602         return handled=FALSE for actiavtion of insensitive default
12603         widgets. return handled=TRUE for activation of insensitive
12604         focus widgets. don't activate in either case.
12605
12606 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
12607
12608         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
12609         and $glib_cflags to match library order and in the
12610         theory that an old version of GLib is more likely to
12611         be in the include directory for X then vice-versa.
12612         (Bug #2776)
12613
12614 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
12615
12616         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
12617         to determine the locale for fontsets, not LC_MESSAGES;
12618         the user may want English messages with a handling
12619         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
12620         will still be broken) (Bug #2891)
12621
12622 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
12623
12624         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
12625
12626 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
12627
12628         * gtk/gtkrc.ko: Changed the Korean default fontset.
12629
12630 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
12631
12632         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
12633         where when scrolling to the left or top double exposes
12634         were done, causing major slowdowns.
12635
12636 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
12637
12638         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
12639         names to lowercase and alphanumeric, before looking
12640         them up.
12641
12642         * gtk/Makefile.am: Install codeset variant gtkrc files
12643         with normalized names.
12644
12645 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
12646
12647         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
12648         popup menus when the menu is already visible, but its parent
12649         is still hidden, (happens after tornoff window got hidden).
12650
12651 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
12652
12653         * gtk/Makefile.am (install-data-local): Fix
12654         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
12655         deleted, causing error messages on install.
12656
12657 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
12658
12659         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
12660         the handle as well, since we now sometimes ignore
12661         exposes on the handle while resizing.
12662
12663 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
12664
12665         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
12666         extra g_free introduced in one of the last one or two 
12667         commits.
12668
12669 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
12670
12671         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
12672         consistent, put each style that a gtkrc.* file creates
12673         in a unique namespace, remove old files before installing.
12674
12675 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
12676
12677         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
12678         gtk_rc_init is called multiple times. (Yes, people who
12679         do that have bugs in their code.)
12680
12681 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
12682
12683         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
12684         Remove it since it's generated by the Makefile anyway
12685
12686 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
12687
12688         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
12689         device->info.axes for core pointer.
12690
12691 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
12692
12693         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
12694         idle_id, to deal with obsolete, broken C libraries.
12695
12696 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
12697
12698         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
12699         allocation->x/y twice!
12700
12701         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
12702         consistent with gtk_vscale_pos_trough().
12703
12704 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
12705
12706         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
12707         be queueing a resize on a toplevel container between
12708         the time we show it and when we map it. So, we need
12709         to test GTK_WIDGET_VISIBLE() for toplevels, and only
12710         use GTK_WIDGET_DRAWABLE() for child windows.
12711
12712 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
12713
12714         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
12715         (fixes bug #2144)
12716
12717 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
12718
12719         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
12720         container DRAWABLE (instead of VISIBLE), so we don't queue
12721         resizes on non-toplevel containers.
12722
12723 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
12724
12725         * gtk/gtkselection.[ch]: Make the data argument
12726         const guchar *.
12727
12728 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
12729
12730         * gtk/gtkwindow.c: Try to behave sensibly if 
12731         the focus widget is the window itself. (Should
12732         we allow this at all?)
12733
12734 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
12735
12736         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
12737         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
12738         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
12739         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
12740         in prototypes and implementations consistent (Tomas Ogren).
12741
12742         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
12743         before the widget is unparented (reported by damon).
12744
12745         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
12746         since we provide unsigned data anyways.
12747
12748 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
12749
12750         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
12751         the call to gtk_tooltips_layout_text() until later.
12752
12753         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
12754         Call gtk_widget_ensure_style() before using the style.
12755
12756 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
12757
12758         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
12759         for old widgets that don't propagate draws to all
12760         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
12761
12762 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
12763
12764         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
12765         for a redraw but just the widget that requested the resize.
12766
12767 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
12768
12769         * gtk/gtkcontainer.c: added new widget level method
12770         gtk_container_set_reallocate_redraws() and a GtkContainer flag
12771         reallocate_redraws : 1 to reflect the setting, exported this through
12772         the argument system as a boolean ::reallocate_redraws.
12773
12774         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
12775         on the widget because the allocation changes, do so as well for
12776         widget->parent if the parent has reallocate_redraws set to TRUE.
12777         with that containers requesting reallocation redraws get automatically
12778         redrawn if their children changed allocation (this unfortunately
12779         affects also other children that didn't change allocation, but we
12780         cannot work around that before 1.3).
12781
12782 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
12783
12784         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
12785         _and_ height are >0 (not _or_).
12786
12787         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
12788         instead of gtk_container_queue_resize(), which is a core gtk internal
12789         function (must have been on crack when i queued that).
12790
12791         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
12792         we can check more reliably if we want to discard expose events.
12793         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
12794         flag.
12795         
12796         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
12797         we simply trust these events. for deciding whether to discard exposes,
12798         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
12799         
12800 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
12801
12802         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
12803         queues of areas that are completely off screen.
12804
12805         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
12806         logic for handleboxes.
12807
12808         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
12809         check on width/height.
12810
12811 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
12812
12813         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
12814         we are fine with using $@ the way we do (if we actually encounter
12815         brokeness with $@ in VPATH builds because of additional path prefixes,
12816         we need to use $(@F) actually).
12817
12818 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
12819
12820         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
12821         short lived bugs, that would allow language bindings to do surgeries
12822         to our guts.
12823
12824 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
12825
12826         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
12827         where comparison was being done against an uninitialized
12828         value causing intermittant results depending on
12829         compiler flags. Also make it clearer that we aren't
12830         ever initializing the child as 0x0 (though this will
12831         be caught in gtk_widget_size_allocate())
12832
12833 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
12834
12835         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
12836         gtk_window_unset_transient_for() call after we do checks
12837         involving the old transient parent.
12838         [ From Lance Capser <lmc@cyberhighway.net> ]
12839
12840 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
12841
12842         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
12843         an empty file.
12844
12845 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
12846
12847         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
12848         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
12849
12850 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
12851
12852         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
12853         `$@' is valid only in the build dir, not after we've done 
12854         `cd $srcdir'.  Also use `test -f' instead of less portable
12855         `test -e'.
12856
12857 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
12858
12859         * gtk/gtktext.c (correct_cache_insert): Rewrite
12860          for simplicity, and hopefully correctness.
12861          (Fixes bug #1322, which was a segfault when
12862           on some insertions with the properties around
12863           the insertion set up just wrong.)
12864
12865         * gtk/gtktext.c (gtk_text_adjustment): When we receive
12866          a "changed" signal, clamp the new value to the adjustment
12867          bounds to avoid segfaulting if someone tries to change
12868          the adjustment to a bogus value. (Bug #1795)
12869
12870 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
12871
12872         * gtk/gtkmain.c: Ignore unexpected destroy notifies
12873         for children, for toplevel windows handle them
12874         like delete_event.
12875
12876         * gtk/gtkplug.c: Add an unrealize handler so that
12877         we unref plug->socket_window when we are done
12878         with it.
12879
12880 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
12881
12882         * gtk/gtktext.c (clear_area): Fix stupid signedness
12883          problem that was causing background to sometimes
12884          be misaligned.
12885
12886 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
12887
12888         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
12889         
12890         * gtk/gtkmenu.c (gtk_menu_position): Make
12891          sure we never position menus with negative x, y,
12892          since gtk_widget_set_uposition() can't handle that.
12893
12894         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
12895          Modify the positioning code a bit so that we always
12896          put the top-left corner onscreen. (This is for
12897          UI reasons, gtk_menu_position() now takes care of
12898          gtk_widet_set_uposition() brokeness.)
12899
12900 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
12901
12902         * gtk/Makefile.am: fixed up things for -jx, x > 1.
12903
12904 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
12905
12906         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
12907           RC style that is passed in. The lack of the ref
12908           before was a bug. If people worked around this
12909           bug, this will introduce a slight memory leak
12910           in their code. The code should typically look like:
12911
12912             rc_style = gtk_rc_style_new ();
12913             [...]
12914             gtk_widget_modify_style (widget, rc_style);
12915             gtk_rc_style_unref (rc_style);
12916
12917         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
12918           the style if it was already set.
12919
12920         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
12921           style if it was set before.
12922
12923 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
12924
12925         * gtk/testgtk.c (main): Add a check to see if we
12926           are being run from the correct directory and
12927           to quit nicely if we are not.
12928
12929         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
12930           static.
12931
12932 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
12933
12934         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
12935
12936         * gtk/gtkwindow.c:
12937         queue resizes unconditionally (gtk_widget_queue_resize will figure
12938         what to do if the window is not realized).
12939         (gtk_window_move_resize): only recenter the window
12940         for GTK_WIN_POS_CENTER_ALWAYS.
12941         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
12942         the same way as GTK_WIN_POS_CENTER.
12943
12944 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
12945
12946         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
12947         with (!(info->last_flags & GDK_HINT_POS)) instead of
12948         (!info->last_flags & GDK_HINT_POS).
12949
12950         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
12951         new_height unconditionally, because we use these values even if
12952         !default_size_changed && !hints_changed.
12953         comented the (default_size_changed || hints_changed) case with
12954         respect to resize rejects from the window manager.
12955
12956         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
12957         in the zvt condition hack, since this includes the window hints, set
12958         the hints after the handling_resize case.
12959
12960         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
12961         window is initially shown with to the geometry.
12962
12963 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
12964
12965         * gtk/gtkwindow.c (gtk_window_move_resize):
12966         s/size_changed/default_size_changed/g so i know what's
12967         really going on (frying brain on smaller flame now).
12968
12969 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
12970
12971         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
12972         we have size_changed upon handling_resize. this is a gross
12973         workaround for the broken zvt widget and should be removed in
12974         1.3 again (search for FIXME).
12975         Owen provided an accurate comment for this:
12976
12977         /* We could be here for two reasons
12978          *  1) We coincidentally got a resize while handling
12979          *     another resize.
12980          *  2) Our computation of size_changed was completely
12981          *     screwed up, probably because one of our children
12982          *     is broken. It's probably a zvt widget.
12983          *
12984          * For 1), we could just go ahead and ask for the
12985          * new size right now, but doing that for 2)
12986          * might well be fighting the user (and can even
12987          * trigger a loop). Since we really don't want to
12988          * do that, we requeue a resize in hopes that
12989          * by the time it gets handled, the child has seen
12990          * the light and is willing to go along with the
12991          * new size. (this happens for the zvt widget, since
12992          * the size_allocate() above will have stored the
12993          * requisition corresponding to the new size in the
12994          * zvt widget)
12995          *
12996          * This doesn't buy us anything for 1), but it shouldn't
12997          * hurt us too badly, since it is what would have
12998          * happened if we had gotten the configure event before
12999          * the new size had been set.
13000          */
13001
13002 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
13003
13004         * gtk/gtkrc.c: deal properly with the fact that RC
13005           style lists may include rc styles more than once.
13006
13007         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
13008           unused static function.
13009
13010         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
13011           stack of directories of RC files currently being
13012           parsed and implicitely add them to pixmap path.
13013           
13014           This fixes a bug where the directory would get
13015           appended then overwritten by pixmap_path declarations.
13016
13017           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
13018
13019         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
13020           theme's exit function. (Patch from Peter Wainwright,
13021           bug #1454)
13022
13023         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
13024           Add a destroy() handler to take care of removing
13025           group for menu item. (Fixes bug #1197)
13026
13027         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
13028           in warning message.
13029
13030 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
13031
13032         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
13033         roundtrip to figure window's width and height, since we know that
13034         anyways from widget->allocation.
13035
13036 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
13037
13038         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
13039           the hints after we request the new size.
13040
13041 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
13042
13043         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
13044           GTK_WIDGET_REALIZED() assertion - we can compute the
13045           hints before we are realized.
13046
13047         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
13048           hint changing so that we have a value of hints_changed
13049           when we decide whether to constrain the window size.
13050
13051         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
13052
13053         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
13054         change back to G_MAXINT.
13055
13056 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
13057
13058         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
13059         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
13060         contain uncluttered values.
13061         (gtk_window_compute_hints): simply assert that window is realized
13062         and that geometry_info is valid, since we rely on this anyways.
13063         (gtk_window_constrain_size): major cleanups to the code.
13064         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
13065         for the base size, instead of the minimums. use 32767 as max width
13066         and height (like in gtkwindow.c) instead of G_MAXINT.
13067
13068 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
13069
13070         * cleaned up the GtkContainer.need_resize flag handling mess, we
13071         only need to force resize requests when we were prematurely
13072         realized, or our widget tree was modified when we were temporarily
13073         hidden. handling these cases directly upon showing the window (i.e.
13074         while the GdkWindow is still unmapped) avoids the need to wait for
13075         a configure event response and therefore makes the GUI more snappier
13076         and avoids blank windows during the roundtrip.
13077
13078         * gtk/gtkwidget.c:
13079         (gtk_widget_hide): 
13080         (gtk_widget_show): don't queue resizes on toplevels, they know how
13081         to deal with matters.
13082
13083         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
13084         flag directly for not visible resize containers and spare us unecessary
13085         signal emissions.
13086
13087         * gtk/gtkwindow.c:
13088         (gtk_window_realize): if we need to enforce premature size allocation,
13089         queue a container resize so we are correctly resized later on.
13090         (gtk_window_init):
13091         (gtk_window_size_request):
13092         don't freak around with the ->need_resize flag,
13093         gtk_container_queue_resize() will care about that.
13094         (gtk_window_show):
13095         handle initial resizing issues here, we can handle matters better in
13096         this place, especially since we know that our GdkWindow is still
13097         unmapped.
13098         (gtk_window_move_resize):
13099         don't care about ->need_resize at all.
13100         handle size changes properly that occoured while we waited for a
13101         configure event.
13102
13103 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
13104
13105         * gtk/gtkwidget.c (gtk_widget_set_uposition):
13106         * gtk/gtkwindow.[hc] (gtk_window_reposition):
13107         Move the hint setting code from gtk_widget_set_uposition
13108         to here; set the hints so that we respect any previously
13109         set geometry hints.
13110
13111         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
13112         change the window hints here or move the window here,
13113         let that happen in gtk_window_move_resize().
13114
13115 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
13116
13117         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
13118         to already queued resizes (and therefore redraws) on a widget, check
13119         its anchestry as well.
13120
13121         * gtk/gtkcontainer.c:
13122         (gtk_container_queue_resize): clear resize widgets for resize
13123         containers before aborting prematurely. this is especially important
13124         for toplevels which may need imemdiate processing or their resize
13125         handler to be queued.
13126         (gtk_container_dequeue_resize_handler): added new internal function for
13127         gtkwindow.c.
13128
13129         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
13130         configure event, take possible changes in window position into account
13131         as well.
13132         if we request a new window size, queue up a resize handler that will
13133         last until the configure event response arrives.
13134         combined the ->need_resize case (initial show) with the general size
13135         (hints) changed case and added even more comments.
13136         if !auto_shrink, only revert to the old allocation if the new size
13137         is smaller than the current allocation.
13138
13139 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
13140
13141         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
13142                            gtk_window_set_geometry_hints
13143                            gtk_window_set_default_size):
13144         When hints are set, queue a resize so that the hints will
13145         be eventually reset on the toplevel.
13146
13147         * gtk/gtkwindow.c (gtk_window_show): Use
13148         gtk_window_compute_default_size(). Clear the need_resize flag
13149         on the initail map so that we don't unnecessarily trigger the
13150         resize code.
13151
13152         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
13153         into separate functions. Compare the hints we are setting
13154         with what we set last time so that we can accurately
13155         tell when we need to reset the hints.
13156
13157         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
13158         function to figure out the size from requisition
13159         and default_size.
13160
13161         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
13162         from fvwm to constrain a size to the geometry hints.
13163
13164         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
13165         to compare two sets of geometry hints.
13166
13167         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
13168         from gtk_window_set_hints(), just compute the hints,
13169         don't set them.
13170
13171         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
13172         code from gtk_window_move_resize() to separate function,
13173         rationalize a bit.
13174
13175 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
13176
13177         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
13178         structure into a new private structure.
13179
13180         * gtkrc.c: Split GtkRcStyle into public/private.
13181         In the private part, add a list of pointers to the
13182         RcStyle lists this RcStyle participates in.
13183
13184         * gtkrc.c: When a RcStyle is free, remove all
13185         lists referencing it from the 
13186         realized_style_ht hash, and free those lists.
13187         
13188         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
13189         gtk_rc_init(), since that adds the default styles
13190         to the list of parsed RC files again.
13191
13192         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
13193         
13194 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
13195
13196         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
13197         checks that ensure that a widget's allocation is at least 1 in width
13198         and height. (GNOME note: this doesn't affect old panel code anymore,
13199         because GtkSocket will request width and height of at least 1 since
13200         Fri Jul 23).
13201
13202         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
13203         allocated yet (happens if the user realizes the window prematurely),
13204         size request and allocate it.
13205         (gtk_window_size_allocate): guard against guint underflows.
13206
13207 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
13208
13209         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
13210         in gtk_built_sources, so gtk.defs gets built prior to all other
13211         sources.
13212
13213 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
13214
13215         * gtk/Makefile.am:
13216         invoke indent on gtkmarshal.*. 
13217         rewrote source generation rules, use COPYING as oldest source tag for
13218         a piggyback rule to generate all sources from (don't touch it ;).
13219         major cleanups, strip spaces on build rules for GNU Make.
13220
13221         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
13222         source and target files from commandline arguments. don't invoke indent.
13223
13224 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
13225
13226         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
13227         notebook after switch to avoid drawing problems.
13228         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
13229         
13230         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
13231         show them instead. 
13232         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
13233
13234 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
13235
13236         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
13237         notebook after switch to avoid drawing problems.
13238         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
13239         
13240         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
13241         show them instead. 
13242         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
13243
13244 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
13245
13246         * gtk/gtkwindow.c:
13247         we use window->need_resize from configure_event now, to indicate that
13248         the gtkwindow should keep its allocation (e.g. because the user resized
13249         the window through window manager handles). resize_count is now reliably
13250         used to figure whether we got the allocation we requested from the
13251         window manager.
13252         configure events get queued as resizes now, the real stuff (size
13253         computation and allocation) now only goes on in gtk_window_move_resize().
13254         GtkWindow's requisition now contains its *real* requisition (like all
13255         other widgets), *not* taking usize into account.
13256         geometry_info->last_{width|height} is now updated from set_hints() only
13257         so it always contains the last hints we set for the window manager.
13258         made some event handlers return TRUE instead of FALSE.
13259         the overall code should be much more straight forward now, and the
13260         significant code portions are accompanied by comments now.
13261         (gtk_window_set_hints):
13262         removed requisition argument and made it
13263         fetch the requisition through gtk_widget_get_child_requisition.
13264         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
13265         does that now.
13266         (gtk_window_show):
13267         ensure that the widget is realized before calling 
13268         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
13269         ensure that we got properly size requested and allocated before
13270         realization.
13271         (gtk_window_configure_event):
13272         ignore plain window moves, or reallocate the widget tree through the
13273         resize queue otherwise.
13274         (gtk_window_move_resize):
13275         mostly rewrote this function to figure window manager hints more
13276         reliably, coalesce window moves and resizes to reduce configure events
13277         and do actuall size allocations.
13278
13279 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
13280
13281         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
13282         that have a resize pending, because a redraw is already queued for them.
13283
13284         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
13285         hack to clear resize_widgets.
13286
13287         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
13288         for resize containers prior to size allocation. (this is also a bit
13289         ugly, but avoids side effects for stopped emissions and is thus more
13290         reliable).
13291         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
13292
13293         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
13294         function from gtk_tooltips_expose, as we connect to ::expose_event
13295         *and* ::draw now.
13296
13297 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
13298
13299         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
13300         checks.
13301         (gtk_target_list_unref): Likewise.
13302
13303         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
13304
13305 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
13306
13307         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
13308         guard against division by zero. (Fixes bug #1339)
13309
13310 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
13311
13312         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
13313         Prevent the trivial leak of information of allowing
13314         word motion when the entry is not visible.
13315
13316 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
13317
13318         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
13319         modality to error dialog as well as confirmation dialogs.
13320         (Bug #1803, reported by Rosanna Wing Sze Yuen)
13321
13322 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
13323
13324         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
13325         tree->view_lines.
13326         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
13327
13328         * gtk/Makefile.am (install-data-local): Solaris apparently
13329         has various troubles with ln -f; use rm first instead.
13330         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
13331
13332 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
13333
13334         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
13335         use `cp' followed by `rm' (the `rm' was already there).
13336
13337 July 30, 1999 Elliot Lee <sopwith@redhat.com>
13338         
13339         * configure.in: Fix autoconf warnings about cross compilation by
13340         trying to provide sane defaults for AC_TRY_RUN.
13341         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
13342         put them into $(srcdir) when generated. Also add a dependency of
13343         gtksignal.h on gtkmarshal.h for -j builds. 
13344         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
13345
13346 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
13347
13348         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
13349         GDK_THREADS_{LEAVE,ENTER} pair.
13350         (From Paul Fisher <pnfisher@redhat.com>)
13351
13352 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
13353
13354         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
13355         width and height are always >0 (owen).
13356
13357 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
13358
13359         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
13360         change that assured that a widget's allocated with and height are
13361         always >1, since this breaks *buggy* panel code. unfortunately this
13362         back-breaks the gimp's color selector.
13363
13364         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
13365         allocation is always >0 in width and height, before sending the
13366         configure event; this is a *gross* hack to get the gimp back to work.
13367         
13368         * marked both cases with TODO-1.3
13369
13370 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
13371
13372         * gtk/gtktext.c: Don't display wrap indicators when
13373         text is not editable and word wrap is on.
13374
13375 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
13376
13377         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
13378         option menus here as they are not derived from menu shell, assure that
13379         the option menu has a menu we can add items to.
13380
13381 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
13382
13383         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
13384         width/height to (gint) before calculations and check against < 0 to
13385         avoid guint wraparounds.
13386
13387 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
13388
13389         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
13390         width and height is never zero. sanity check both dimensions against
13391         32767 and issue a warning if the allocation is greater than that.
13392
13393 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
13394
13395         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
13396         to g_main_pending() as well.
13397
13398 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
13399
13400         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
13401         call to g_main_iteration() - since that will regrab
13402         GTK+ lock to process events.
13403
13404 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
13405
13406         * gtk/gtkwindow.c
13407         - Regularize with the rest of GTK+ by making widget->requisition
13408           not reflect the set_usize()
13409         - Always recompute geometry hints, then check if they
13410           changed before sending them to the X server. The
13411           previous checks for changes would fail in a number
13412           of circumstances. 
13413
13414 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
13415
13416         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
13417
13418 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
13419
13420         * gtk/gtkdnd.c:
13421         - Code cleanups
13422         - Instantaneously update on modifier key presses
13423         - Allow cancellation of the drag with Escape.
13424
13425 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
13426
13427         * gtk/testgtk.c (create_handle_box): Set the policy
13428         to auto_shrink - otherwise the appearance is rather
13429         strange when flipping between horizontal and vertical.
13430
13431 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
13432
13433         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
13434         (gtk_window_set_default_size): don't change a value if it's < 0.
13435         queue a resize.
13436
13437 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
13438
13439         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
13440
13441 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
13442
13443         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
13444         add an extra "/" when concating "/" + filename.
13445         (From Matt Grossman <mattg@oz.net>)
13446
13447 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
13448
13449         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
13450         for fg_gc if we set it for drawing pixmap.
13451
13452 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
13453
13454         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
13455         
13456         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
13457         already set, call old engine's destroy function and
13458         unref the old engine.
13459
13460 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
13461
13462         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
13463
13464 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
13465
13466         * gtk/gtkaccelgroup.h: mark certain functions as internal.
13467
13468 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
13469
13470         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
13471         expand behaviour changed.
13472
13473         * gtk/gtklabel.c (gtk_label_set_pattern):
13474         (gtk_label_set_justify):
13475         (gtk_label_set_line_wrap):
13476         don't bother invoking queue_clear, the reallocation does
13477         that for us, always free_words so the upcoming resize will
13478         relayout the label's contents.
13479
13480 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
13481
13482         * applied argument implementation patches from Elena Devdariani
13483         <elena@cogent.ca>.
13484
13485         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
13486         ::space_style, ::relief
13487         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
13488         * gtk/gtkpreview.c: ::expand
13489         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
13490         * gtk/gtknotebook.c: ::homogeneous
13491         * gtk/gtklabel.c: ::wrap
13492         * gtk/gtklist.c: ::selection_mode
13493         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
13494         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
13495         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
13496         * gtk/gtkclist.c: ::sort_type
13497         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
13498         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
13499
13500 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
13501
13502         * gtk/gtkstyle.c: Removed ill-thought-out part of last
13503         comment.
13504
13505 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
13506
13507         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
13508         counting right when we have to attach a new style
13509         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
13510
13511         * gtk/gtkstyle.c: Documented the refcounting
13512         peculularities of gtk_style_attach.
13513
13514 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
13515
13516         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
13517         window types.
13518
13519         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
13520         of GTK_TOPLEVEL for creating the window.
13521
13522 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
13523
13524         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
13525         the last argument (reported by Per Winkvist).
13526         
13527 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
13528
13529         Fixes for invisible XOR lines (Frank Loemker
13530         <floemker@TechFak.Uni-Bielefeld.DE>)
13531         
13532         * gtk/gtkclist.c (gtk_clist_realize): Always use
13533         a non-zero pixel for GDK_XOR.
13534
13535         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
13536         Use GDK_INVERT instead of GDK_XOR.
13537
13538 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
13539
13540         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
13541         signals if h/voffsets differ from adjustment values.
13542         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
13543
13544 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
13545
13546         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
13547         ::selection-done emissions up to the topmost menu shell.
13548
13549 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
13550
13551         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
13552         the user data on the window before destroying it.
13553
13554         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
13555         unrealize handler to take care of destroying 
13556         notebook->panel properly. 
13557         (Bug #1198 - Morten Welinder <terra@diku.dk>)
13558
13559         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
13560         of g_new and g_realloc to stop memory leak. (Actually,
13561         we could just use g_realloc(), but I'm not 100% sure
13562         that is portable).
13563         (Bug #1196 - Morten Welinder <terra@diku.dk>)
13564
13565 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
13566
13567         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
13568
13569         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
13570         for fontsets.
13571
13572         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
13573         with bin/button confusion.
13574
13575 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
13576
13577         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
13578         and show how preselection of radio items is done.
13579
13580 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
13581
13582         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
13583         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
13584         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
13585         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
13586         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
13587         * gtk/gtktable.c (gtk_table_attach): 
13588         * gtk/gtklist.c (gtk_list_insert_items): 
13589         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
13590         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
13591         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
13592         * gtk/gtkbin.c (gtk_bin_add): 
13593         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
13594         * gtk/gtkfixed.c (gtk_fixed_put): 
13595         * gtk/gtklayout.c (gtk_layout_put):
13596         general fixups to container_add logic. always realize child if
13597         child->parent is realized, only map the child and queue a resize
13598         if child and child->parent are both visible.
13599
13600 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
13601
13602         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
13603         instead of gtk_container_foreach to walk and unrealize children, so
13604         composite children get also unrealized.
13605         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
13606         (gtk_widget_map): assert that the widget is visible (basic constrain).
13607         (gtk_widget_real_map): assert that the widget is realized (basic
13608         constrain).
13609
13610 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
13611
13612         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
13613
13614 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
13615
13616         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
13617         file for iso-8859-2 locales.
13618
13619         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
13620
13621 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
13622
13623         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
13624          (Pointed out by andy@rz.uni-karlsruhe.de and others).
13625          Remove some suspicious and useless lines. 
13626
13627 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
13628
13629         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
13630         width,height = 0, 0 to mean - here to edge of window,
13631         instead of -1, -1, since the former is all we support.
13632
13633 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
13634
13635         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
13636         when removing from quit_functions list.
13637
13638 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
13639
13640         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
13641
13642 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
13643
13644         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
13645          When redrawing characters on non-visible entry, use appropriate
13646          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
13647
13648 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
13649
13650         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
13651         from drag coordinates.
13652         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
13653         use drag_dest_cell.
13654
13655         * gtk/gtktree (drag_dest_cell)
13656         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
13657         (Bug #1129)
13658
13659 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
13660
13661         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
13662         translate_* fields.
13663         (gtk_item_factory_finalize): invoke translate_notify independant from
13664         translate_data.
13665         (gtk_item_factory_set_translate_func): likewise.
13666         (gtk_item_factory_destroy): only remove ifactory pointer from those
13667         widgets that belong to us (stupid me).
13668
13669 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
13670
13671         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
13672         rc_style list when lookup succeeeds.
13673
13674 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
13675
13676         * gtk/gtkctree.c (resync_selection): 
13677         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
13678         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
13679         bug.
13680
13681 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
13682
13683         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
13684         Add some missing GDK_THREADS_ENTER()/LEAVE around
13685         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
13686
13687 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
13688
13689         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
13690         rather than emit_by_name.
13691
13692         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
13693         on the widget across multiple signal emissions.
13694         (gtk_editable_delete_text): same here.
13695         (gtk_editable_class_init): set widget_class->activate_signal after
13696         editable_signals[ACTIVATE] has been created.
13697
13698 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
13699
13700         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
13701         position here prematurely -- we might not have the
13702         right ->min_position and ->max_position yet.
13703
13704 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
13705
13706         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
13707         Add error traps so if the other end of the connection
13708         dies, we survive.
13709
13710         * gtk/gtkselection.c (gtk_selection_notify): Clean
13711         up properly when selection property retrieval fails.
13712         
13713         * gtk/gtkselection.c (gtk_selection_request): Correctly
13714         reject SelectionRequest notifies where the handler
13715         returns no data.
13716
13717 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
13718
13719         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
13720         when we've previously highlighted.
13721
13722         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
13723         emit two "drag_leave" signals for Motif drops.
13724
13725         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
13726         back the correct status messages when dropping from
13727         Motif onto a proxy window that is rejecting the
13728         drop.
13729
13730 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
13731
13732         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
13733         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
13734         to compare two argument values. added gtk_arg_to_valueloc() to set a
13735         variable from an arg through its location (pointer).
13736
13737         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
13738         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
13739         as gfloat*, uchars are collected as guchar*, ints are collected as
13740         gint*, etc...
13741
13742 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
13743
13744         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
13745         Include <string.h> instead of <strings.h>.
13746
13747         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
13748         (actually, a lot more duplicate includes occur if
13749          you trace through the sequence of #include's)
13750         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
13751         
13752 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
13753
13754         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
13755         gtk-a-higuti-990322-[0-3]
13756
13757         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
13758         that was causing -DX_LOCALE not to work.
13759
13760         * gtk/gtkrc.c (gtk_rc_init):
13761         X_LOCALE will never have LC_MESSAGES defined
13762
13763 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
13764
13765         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
13766         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
13767
13768         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
13769         left/right as well (gtk-michael-980726-0.patch.gz).
13770
13771         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
13772         for pointer values, use gchar instead of char. fixed uline allocation
13773         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
13774         chunks instead of G_ALLOC_ONLY.
13775         (gtk_label_size_request): always alter requisition as passed and leave
13776         widget->requisition alone.
13777         (gtk_label_set_text): allow NULL strings.
13778         (gtk_label_new): likewise.
13779
13780 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
13781
13782         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
13783
13784 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
13785
13786         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
13787         *and* mapped (i.e. drawable).
13788         (gtk_bin_expose): only send exposes to drawable children.
13789
13790         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
13791         (gtk_box_expose): only send exposes to drawable children.
13792
13793         * gtk/gtkhscale.c (gtk_hscale_draw): 
13794         * gtk/gtkvscale.c (gtk_vscale_draw):
13795         hm, this is an ugly one. we first compute the size of our trough area
13796         here (window relative) and then check intersection with the draw_area
13797         which is parent relative because we're a NO_WINDOW widget, so we need
13798         to offset the trough area by allocation.x and allocation.y before the
13799         check. (this must not be done for the background area though, since
13800         that's already computed parent relative).
13801
13802 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
13803
13804         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
13805         unrealize title buttons.
13806
13807 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
13808
13809         * gtk/gtkclist.c (gtk_clist_column_title_passive)
13810         (gtk_clist_column_title_active): 
13811         only connect/disconnect to GtkWidgetClass::event to block mouse events.
13812
13813         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
13814         zero initialize event, removed superfluous gdk_window_get_pointer call
13815
13816         * gtk/gtklist.c (gtk_list_vertical_timeout)
13817         (gtk_list_horizontal_timeout): removed superfluous
13818         gdk_window_get_pointer call
13819
13820 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
13821
13822         * plugging problems reported by "Bruce Mitchener, Jr."
13823         <bruce@puremagic.com> due to a purify session.
13824
13825         * gtk/gtkstyle.c:
13826         (gtk_style_ref): 
13827         (gtk_style_unref): assert ref_count to be > 0.
13828
13829         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
13830         the requisition.
13831         (gtk_clist_set_shift): likewise.
13832
13833         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
13834         adjustments.
13835
13836         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
13837         event before sending it and set send_event to TRUE (which needs to
13838         be done for *all* synthesized events).
13839         (gtk_list_vertical_timeout): likewise.
13840
13841         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
13842         leaks.
13843
13844         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
13845         to TRUE when synthesizing events.
13846
13847 [ *** end of merges from 1.2 *** ]      
13848         
13849 1999-11-21  Tor Lillqvist  <tml@iki.fi>
13850
13851         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
13852         (or copied from gdkconfig.h.win32 on Win32, sigh).
13853
13854         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
13855
13856         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
13857
13858         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
13859
13860         * gdk/gdkconfig.h.win32: New file.
13861
13862         * gdk/win32/makefile.cygwin: Build just a static archive here.
13863
13864         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
13865         for the DLL from the static archive built above.
13866
13867         * gdk/gdk.def: Moved here from the win32 subdirectory.
13868
13869         * gdk/win32/*: Adapt for the changed private struct organisation.
13870
13871         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
13872
13873 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
13874
13875         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
13876         for wheel mice (buttons 4 and 5).
13877
13878 1999-11-18  Tor Lillqvist  <tml@iki.fi>
13879
13880         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
13881         drawables use just the pixel field in the foreground and
13882         background GdkColor of the GdkGC.
13883
13884         gdk_gc_set_{fore,back}ground() are called in the GIMP with
13885         GdkColors containing uninitialized (red,green,blue) fields, and
13886         just the pixel field filled in, and furthermore in the
13887         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
13888         It thus turns out that we really don't need to have the full
13889         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
13890         it later to have just the pixel values.
13891
13892 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
13893
13894         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
13895
13896 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
13897
13898         * docs/gtkfaq.sgml: threads example from Erik Mouw.
13899         New question on GtkLabel background colors.
13900
13901         * docs/gtk_tut.sgml:
13902           - Correct the example code callback
13903             function definitions.
13904           - Update the gtkdial example code, from Frans van Schaik.
13905           - Update setselection.c to current API.
13906
13907         * examples/Makefile examples/*/*.c: Update to code
13908         listed in tutorial.
13909
13910 1999-11-10  Tor Lillqvist  <tml@iki.fi>
13911
13912         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
13913         subrange table (from the "Developing International Software for
13914         WIndows 95 and Windows NT" book) was missing the Hangul syllable
13915         block... Get the loaded font's charset correctly.
13916
13917         (Note that this, and the other *-win32.c files, still really are
13918         the old ones, the win32 subdirectory is not ready for compilation
13919         yet after the reorg.)
13920
13921 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
13922
13923         * gtk/gtkclist.c: Fix off-by-one bug in parameter
13924         check.
13925
13926 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
13927
13928         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
13929         on results of XQueryDeviceState().
13930
13931 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
13932
13933         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
13934         we need to accesss only ->children. We need an accessor
13935         for the children.
13936
13937         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
13938         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
13939         to get rid of gdkx.h include.
13940         
13941         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
13942         and random references to 'None'.
13943
13944         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
13945         Get rid of unused #include <gdk/gdkx.h>
13946
13947         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
13948         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
13949         gdkconfig.h.
13950
13951 1999-11-08  Tor Lillqvist  <tml@iki.fi>
13952
13953         * gdk/win32/gdkdraw.c
13954         * gdk/win32/gdkfont.c
13955         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
13956         following yesterday's changes. (Unrelated to Owen's reorg.)
13957
13958 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
13959
13960         * gdk/x11/gdkinput-gxi.c: Add missing include,
13961           fix GdkWindowPrivate => GdkDrawablePrivate.
13962
13963         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
13964
13965         * gdk/x11/Makefile.am (xinput_sources): Add missing
13966         backslash to fix building with --with-xinput=none
13967
13968 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
13969
13970         Move all X specific code into the x11/ directory.
13971         Aside from shuffling things around, did the following:
13972
13973        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
13974          gdk_arg_context_* - a simple argument parsing system
13975          in the style of popt.
13976
13977        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
13978          gdk/x11/gdkprivate-x11.h:
13979          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
13980          add ->klass and ->klass_data fields. The klass_data
13981          field points to an auxilliary structure that is
13982          windowing system dependent.
13983
13984        * gdk/gdkfont.c: Make most of the measurement functions
13985          simply wrappers around gdk_text_extents().
13986
13987        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
13988          _gdk_font_strlen() function that hides the weird
13989          behavior in gtk+-1.[02] where a string is interpreted
13990          differently for 8-bit and 16-bit fonts.
13991
13992        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
13993          to store common code for synthesizing double/triple
13994          press events.
13995         
13996        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
13997          Make all the function that modify an existing GC
13998          simply wrappers around gdk_gc_set_values().
13999          
14000        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
14001          for throwing out later.
14002
14003        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
14004          GdkImagePrivate and GdkColormapPrivate to have a
14005          windowing system dependent part (GdkFontPrivateX etc.)
14006          that "derives" from the system-independent part.
14007
14008        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
14009          Got rid of the included-source-files for XInput in
14010          favor of automake conditionals. (Which didn't exist
14011          when XInput support was originally added.)
14012
14013        * gdk/gdkrgb.c: Remove the visual id from the debugging
14014          statements since that is X11 specific; print out
14015          type/depth info instead.
14016          
14017
14018 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
14019
14020         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
14021         loading duplicates of hashed fonts.
14022
14023         * gdk/gdk.c (gdk_keysym_convert_case): rename
14024         gdk_XConvertCase to gdk_keysym_convert_case, allow
14025         results to be NULL in the GTK+ style.
14026
14027         * gdk/gdkcompat.h: Started compatibility header
14028         for renames.
14029
14030 1999-11-07  Tor Lillqvist  <tml@iki.fi>
14031
14032         * gdk/win32/gdkprivate.h: New font private structures, related to
14033         fontsets.
14034
14035         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
14036         gdk_font_list_free(). On X11, will just be wrappers to
14037         XListFonts() and XFreeFontNames(). On Win32, the code previously
14038         in gtkfontsel.c is now here.
14039
14040         New function gdk_font_xlfd_create(). On X11 will get the FONT
14041         property of the font (for GDK_FONT_FONTs), or call
14042         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
14043         builds a XLFD style name from the font information in the LOGFONT
14044         struct(s).
14045
14046         New function gdk_font_xlfd_free(), which correspondingly frees the
14047         string returned by gdk_font_xlfd_create().
14048
14049         Implement fontsets on Win32. Add a function that iterates over a
14050         wide char string and calls a callback function for each substring
14051         of wide chars from the same Unicode subrange (and thus probably
14052         available in the same real font).
14053
14054         Improve the XLFD emulation a bit.
14055
14056         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
14057
14058         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
14059         Beta3, WM_IME_CHAR messages don't seem to contain the composed
14060         multi-byte char as with the Active IMM on Win9x. Oh well, handle
14061         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
14062         ImmGetCompositionStringW() to get the composed Unicode chars.
14063
14064         * gdk/win32/gdkgc.c
14065         * gdk/win32/gdkdraw.c: Changes needed because of the font private
14066         struct changes.
14067
14068         * gdk/win32/gdk.def: Add the new functions.
14069
14070 1999-11-04  Tor Lillqvist  <tml@iki.fi>
14071
14072         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
14073         get the Platform SDK to get <dimm.h>.
14074
14075         * gdk/win32/gdkevents.c: More event handling fixes and
14076         simplification. Never generate motion events with is_hint true. We
14077         used to do that on bogus grounds earlier. Windows sends
14078         WM_MOUSEMOVE messages on button events even if the mouse hasn't
14079         moved, ignore these.
14080
14081         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
14082
14083         * gdk/win32/gdkglobals.c
14084         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
14085         the TrackMouseEvent function, and use it.
14086
14087         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
14088         char before calling WideCharToMultiByte in order to get a string
14089         for the window title.
14090
14091         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
14092
14093         * gdk/win32/gdk.def: Remove obsolete functions.
14094
14095         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
14096         /nodefaultlib and /defaultlib switches.
14097
14098         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
14099
14100 1999-10-31  Tor Lillqvist  <tml@iki.fi>
14101
14102         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
14103         EuroSign).
14104
14105         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
14106         same type as GdkWChar, especially on Win32.
14107
14108         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
14109
14110         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
14111         before passing to Windows GDI for drawing etc. Convert to the
14112         system default codepage before passing to Windows as window
14113         titles.
14114
14115         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
14116         support changing input locale on the fly.
14117
14118         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
14119         on-the-fly changes. Convert incoming characters from the current
14120         codepage to Unicode (and then to a UTF-8 multi-byte string) based
14121         on the current input language. Use keysym<->Unicode mapping tables
14122         and functions borrowed from xterm sources.
14123
14124         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
14125         editions of Win9x, use the ActiveX-based Active IMM (Input Method
14126         Manager) if available. IMEs and the Active IMM are available under
14127         the disguise of Chinese, Korean and Japanese support for IE and
14128         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
14129         support is present in all editions (as long as you install it).
14130
14131         Call DispatchMessage from gdk_events_queue() (and thus
14132         gdk_WindowProc()), instead of duplicating the code in
14133         gdk_WindowProc().
14134
14135         Reworked the grab handling and propagation code, factored out
14136         duplicated code snippets into separate functions. Other cleanups,
14137         too.
14138
14139         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
14140         the <dimm.h> header describing the Active IMM.
14141
14142         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
14143         just do the same as for "single" fonts.
14144
14145         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
14146         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
14147         the new keysyms from gdkkeysyms.h.
14148
14149         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
14150         fontset, so that gtkentry uses wide characters.
14151
14152         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
14153         GTk+'s system directory "gtk+", not "gtk".
14154
14155 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
14156
14157         * docs/gtkfaq.sgml: FAQ update
14158
14159 1999-10-21  Tor Lillqvist  <tml@iki.fi>
14160
14161         * gdk/win32/gdkprivate.h: Add more font private data.
14162
14163         * gdk/win32/gdkfont.c
14164         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
14165         fonts and strings. Now works much better. You still have to
14166         have a correct font selected, though. No fontset emulation yet.
14167
14168 1999-10-19  Tor Lillqvist  <tml@iki.fi>
14169
14170         * gtk/maketypes.awk: Use G_OS_WIN32.
14171
14172         * gtk/gtk.def: Add some missing entry points. Also some non-public
14173         ones, but PyGTK porter claims to need them.
14174
14175         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
14176         built-in type generation.
14177
14178 1999-10-14  Tor Lillqvist  <tml@iki.fi>
14179
14180         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
14181         GDK_FONT_FONT fonts (which is all we have for now, we don't
14182         emulate fontsets). The X11 version uses plain XDrawString in that
14183         case, too. The string passed to gdk_draw_text_wc seems to be in
14184         fact (at least, when used by gtkentry and gtktext) either in a
14185         single-byte charset, or a DBCS. Not Unicode.
14186
14187         This fixes the problem in gtkfontsel, where even if you had
14188         selected a font with a non-Latin1 charset (windows-greek, for
14189         instance), the preview still used Latin-1 glyphs.
14190
14191         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
14192         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
14193         (gdk_font_load): Recognize the demibold etc weights, even if we
14194         don't have the corresponding constants in the headers.
14195         (gdk_font_hash_insert): Use same hash mechanism as in the X11
14196         version. Should save font resources a bit, when we don't have
14197         multiple HFONTs for the same font.
14198
14199         * gdk/win32/gdkprivate.h: Add the names field as in the X11
14200         version.
14201
14202 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
14203
14204         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
14205         X values
14206
14207 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
14208
14209         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
14210         layout support (as mentioned on
14211         http://www.jcinteractive.com/gnome-ui/software/widgets/)
14212
14213 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
14214
14215         * gtk/fnmatch.c
14216         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
14217
14218 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
14219
14220         * configure.in (ALL_LINGUAS): Added Galician (gl)
14221
14222 1999-10-05  Tor Lillqvist  <tml@iki.fi>
14223
14224         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
14225
14226         * gdk/win32/gdkcompat.c: New file, actually provide an
14227         implementation for the deprecated functions. (Just temporarily.)
14228
14229         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
14230
14231         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
14232
14233         * gdk/win32/gdk.def gtk/gtk.def: Updates.
14234
14235 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
14236
14237         * configure.in: Added "uk" to ALL_LINGUAS.
14238         
14239 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
14240
14241         * configure.in: correct checking for BeOS check
14242
14243         * gdk/gdktypes.h
14244         * gtk/fnmatch.c
14245         * gtk/gtkfilesel.c
14246         * gtk/gtkitemfactory.c
14247         * gtk/gtkmain.[ch]
14248         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
14249
14250 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
14251
14252         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
14253         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
14254         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
14255         by Bulgarian). 
14256
14257 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
14258
14259         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
14260         Fix a reference to window_private->destroyed.   
14261
14262         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
14263         (ugly) setting of an internal GdkWindow member to use
14264         a _slightly_ cleaner macro.
14265
14266         * gdk/gdkprivate.h: Split GdkWindowPrivate into
14267         GdkDrawablePrivate and GdkWindowPrivate.
14268         Add extra macros for accessing GDK_DRAWABLE_ components.
14269
14270         * *.[ch]: Massive adjustments for the above, use the
14271         new macros in a lot of places.
14272
14273 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
14274
14275         * gdk/gdktypes.h: Make GdkDrawable the base type,
14276         not GdkWindow.
14277
14278 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
14279
14280         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
14281
14282 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
14283
14284         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
14285
14286 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
14287
14288         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
14289         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
14290
14291         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
14292
14293         * docs/gtk-config.1: Now autogenerated.
14294         * docs/Changes-1.4.txt: started
14295         
14296 1999-10-03  Tor Lillqvist  <tml@iki.fi>
14297
14298         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
14299         to #ifdef also here.
14300
14301         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
14302         Owen did to the X11 backend.
14303
14304         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
14305         ScrollWindowEx when blitting inside a window, it can't be correct
14306         in the general case.
14307
14308         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
14309         WM_GETMINMAXINFO is easier.
14310
14311         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
14312         depth equal to the bitspixel value, not the visual's depth.
14313
14314         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
14315         to 24 even if the bitspixel value is 32.
14316
14317         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
14318         need to check for depth==32 when bpp==32, depth will always be 24.
14319
14320 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
14321
14322         * docs/Changes-1.4.txt: Started
14323         
14324         * gtk/Makefile.am (gdk_headers): Include all the new headers.
14325
14326         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
14327         
14328         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
14329         into C file.
14330         
14331         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
14332         header to gdkinputprivate.h.
14333
14334         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
14335         unused since before 1.2.
14336
14337 1999-09-30  Tor Lillqvist  <tml@iki.fi>
14338
14339         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
14340         expand possible hex escapes in the font family (put there by
14341         logfont_to_xlfd if the font name isn't a legal XLFD font family,
14342         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
14343         On Win32, add hex escapes here, too.
14344
14345 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
14346
14347         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
14348         to #ifdef GDK_WINDOWING_X11.
14349
14350 [ Merges from gtk-1-2 ]
14351
14352 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
14353
14354         * configure.in: fixed "GNU Make" check to pass with new make version
14355         3.77.95.
14356
14357 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
14358
14359         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
14360         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
14361         AM_PATH_GTK() macros don't get confused by the -pre1.
14362
14363 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
14364
14365         * configure.in (REBUILD): Change check for perl5
14366           to check explicitely for v >= 5.002. (5.001
14367           does not work with our scripts.)
14368
14369 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
14370
14371         * configure.in: evaluate $PERL for the perl version check. added
14372         --disable-rebuilds to give the user an option to completely disable
14373         any source autogeneration rules.
14374
14375 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
14376
14377         * configure.in: evaluate $ac_make when checking for GNU Make.
14378
14379 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
14380
14381         * docs/Makefile.am: added generation.txt.
14382
14383         * Makefile.am: require automake 1.4, build README from README.in and
14384         INSTALL from INSTALL.in in dist-hook.
14385         
14386         * README.in:
14387         * INSTALL.in: new files to autogenerate README and INSTALL from.
14388
14389         * configure.in: figure whether we have GNU Make
14390
14391         * docs/generation.txt: minor additions/corrections.
14392
14393 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
14394
14395         * docs/gtkfaq.sgml: FAQ Update
14396
14397 July 30, 1999 Elliot Lee <sopwith@redhat.com>
14398         
14399         * configure.in: Fix autoconf warnings about cross compilation by
14400         trying to provide sane defaults for AC_TRY_RUN.
14401
14402 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
14403
14404         * ltconfig
14405         * ltmain.sh: upgrade to libtool 1.3.3
14406
14407 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
14408
14409         * INSTALL: Indicate that the --with-glib= configure
14410         time flag is unsupported.
14411
14412 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
14413
14414         * docs/generation.txt: Added a file that gives
14415         documenation about the autogeneration process for
14416         various autogenerated files.
14417         
14418 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
14419
14420         * configure.in (LIBS): Look for libgmodule in the
14421         right location.
14422
14423 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
14424
14425         * docs/gtk_tut.sgml: Removed references to
14426         code examples in my directory on gtk.org as
14427         they should all be in the tutorial now.
14428
14429         * docs/gtk_tut.sgml: Added sources for dial-test
14430         and scribble-xinput programs that were previously
14431         missing.
14432
14433 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
14434
14435         * TODO: Added entry about menu keyboard navigation, removed
14436         some finished items.
14437
14438 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
14439
14440         * acinclude.m4: Standardize on func_dgettext
14441         not func_gettext, so that the checks for dgettext
14442         actually are paid attention to.
14443
14444 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
14445
14446         * configure.in (LIBS): Add $INTLLIBS into $LIBS
14447         directly, rather than repeating the checks for
14448         gettext.
14449
14450         * INSTALL: Added information about gettext and
14451         NLS support.
14452
14453         * acinclude.m4 (LIBM): Check for dgettext, not
14454         just gettext. This should hopefully fix things wrt
14455         systems with old versions of GNU gettext installed.
14456
14457 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
14458
14459         * configure.in (LIBS): Look for libgmodule in the
14460         right location.
14461
14462 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
14463
14464         * autogen.sh: add --enable-maintainer-mode
14465
14466         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
14467
14468 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
14469
14470         * docs/gtk-config.1.in:
14471           docs/Makefile.am:
14472           configure.in: gtk-config is now generated.
14473
14474         * docs/gtk-config.1: Removed, now generated.
14475
14476 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
14477
14478         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
14479         handle CreateNotify itself, still put out a debuging message for
14480         --gdk-debug=events. made the ReparentNotify debugging message more
14481         verbose.
14482         wrap xcoords translation for ConfigureEvents into an error trap,
14483         a destroy event may already be pending, and in that case, the
14484         actuall coordinate values are not at all critical.
14485
14486 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
14487
14488         * gdk/gdkcc.c: Stop leaking the color_hash all over
14489         the place. Simplify and improve the logic.
14490
14491 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
14492
14493         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
14494         for prototypes and function implementations consistent (reported
14495         by Tomas Ogren).
14496
14497 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
14498
14499         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
14500         send_event set in debugging output.
14501         (gdk_compress_exposures): default initialize the event so we don't
14502         operate on bogus values (namely send_event).
14503
14504 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
14505
14506         * gdk/gdkwindow.c: When we receive an unexpected
14507         destroy notify on one of our windows, don't just
14508         warn about it, also mark our windows as destroyed.
14509
14510 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
14511
14512         * gdk/gdkfont.c (gdk_font_hash_insert): Add
14513           name => font and name => fontset hashes. The 
14514           name => fontset hash is a _big_ win since we
14515           weren't previously caching fontsets at all and loading
14516           fontsets is expensive. The name => font hash
14517           is less of a win, but it does save us from doing
14518           repeated XQueryFont calls on the same font.
14519
14520         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
14521           list so we can remove font/fontset from hash.
14522
14523 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
14524
14525         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
14526           and slightly confusing test. [ XInternAtom (,,TRUE)
14527           will never return None ].
14528
14529 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
14530
14531         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
14532           gdk/gdkwindow.c (gdk_window_set_hints):
14533
14534         Don't omit setting the properties if flags == 0 -
14535         there may be an existing set of properties there
14536         already. (Very old bug. Would it be better to
14537         delete the property instead?)
14538
14539         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
14540           spelling error in comment.
14541
14542 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
14543
14544         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
14545           to avoid stomping over gdk_error_warnings.
14546
14547         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
14548           as (bits_per_pixel + 7) / 8. This gives the same
14549           result as before for multiples of 8, but actually
14550           a "reasonable" value for 1bit or 4bit displays.
14551
14552 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
14553
14554         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
14555         GNU Make.
14556
14557 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
14558
14559         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
14560         discarding configure events.
14561
14562 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
14563
14564         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
14565         refcount is greater than zero.
14566
14567         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
14568
14569         * gdk/gdkfont.c (gdk_font_unref): Likewise.
14570
14571         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
14572
14573         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
14574
14575 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
14576
14577         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
14578         that format 32 => sizeof(item) == 4. It really is
14579         sizeof(long).
14580
14581 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
14582
14583         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
14584         core dump at all on X IO errors, only core dump
14585         if --enable-debug for X errors.
14586
14587 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
14588
14589         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
14590         unknown window:" message. disabled ConfigureNotify discarding code,
14591         because it led to events being processed out of order.
14592
14593 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
14594
14595         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
14596
14597         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
14598         we export this function, supress error warnings and don't reset the
14599         error code in the first half of this function.
14600
14601         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
14602         code (instead of just -1) so gdk_error_trap_pop() reveals something
14603         actually informative about the error that happened.
14604
14605         * gdk/*.c:
14606         don't rely on gdk_error_code being -1 if an error occoured, but just
14607         gdk_error_code != 0.
14608
14609 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
14610
14611         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
14612         pointer *before* invoking the filter function, so we at least don't
14613         crash if a filter is removed that is currently executed. window filters
14614         *really* need to be made truely reentrant at some point.
14615
14616 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
14617
14618         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
14619         PropertyNotify debug messages.
14620
14621 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
14622         
14623         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
14624         
14625         * gdk/gdkim.c: Fix cut-and-paste errors for 
14626         x/y and PreeditAttributes/StatusAttributes.
14627
14628 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
14629
14630         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
14631         G_MAXINT to 2^16 to alleviate overflow problems in
14632         various window managers.
14633
14634 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
14635
14636         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
14637         for fontsets.
14638
14639 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
14640
14641         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
14642         Initialize size_hints.x and size_hints.y because kwm
14643         brokenly pays attention to them.
14644         (Bug #1181 -  Lars Heete <hel@admin.de>)
14645
14646 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
14647
14648         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
14649         return value of gdk_list_visuals(). 
14650         (Bug #1193 - Morten Welinder <terra@diku.dk>)
14651
14652 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
14653
14654         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
14655         XSetIMValues to (void *) when comparing to NULL, to workaround
14656         the problem of some compilers barfing since older X headers don't
14657         have the prototype for it.
14658
14659 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
14660
14661         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
14662         for pseudocolor where colormap->colors was double
14663         allocated.
14664
14665         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
14666         color value in the hash table with the pixel filled
14667         in so when we do later hash table lookups, the color
14668         value is correct.
14669         
14670 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
14671
14672         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
14673         making the call
14674
14675 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
14676
14677         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
14678         pointed out by Morten Welinder <terra@diku.dk>.
14679
14680 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
14681
14682         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
14683           default filter from the list
14684
14685 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
14686
14687         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
14688           default filter from the list
14689
14690 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
14691
14692         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
14693
14694         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
14695         g_strdup_printf instead of calcing the length separately
14696
14697 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
14698
14699         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
14700         that we don't do in many other places. (Fixing duplicate 
14701         #include of config.h)
14702
14703         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
14704         Otherwise, #ifndef XINPUT_NONE check in the latter
14705         doesn't work. (Bug #546)
14706
14707 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
14708
14709         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
14710         "None" case insensitive.
14711
14712 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
14713
14714         * gdk/gdkselection.c: 
14715         Add error traps so if the other end of the connection
14716         dies, we survive.
14717
14718 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
14719
14720         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
14721         dest_xid field into two fields - one for the window
14722         to send in messages, one to indicate the last looked
14723         up window for caching purposes. This is needed, so
14724         that Leave messages get the correct window.
14725
14726 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
14727
14728         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
14729         Fix warning created by people mucking around
14730         with the gsource API.
14731
14732         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
14733         Change mapping between GIOCondition and GdkInputCondition
14734         to match the way the Linux kernel does it. This should
14735         fix problems where closed pipes were no longer signalling
14736         GDK_INPUT_READ on systems with a native poll().
14737
14738 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
14739
14740         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
14741         explicitly for the string "None" - it is in the XPM
14742         spec and some servers treat unknown colors in odd ways
14743         (like asking the user!)
14744
14745 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
14746
14747         * gdk/gdkevents.c: made "->" into a "." of previous change so
14748         it compiles
14749
14750 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
14751
14752         * gdk/gdkevents.c (gdk_compress_exposures): Set the
14753         window field of the event structure before calling
14754         user filters.
14755
14756 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
14757
14758         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
14759         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
14760
14761 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
14762
14763         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
14764         intermediate text property - prevents major memory
14765         leak when gdk_use_mb.
14766         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
14767
14768 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
14769
14770         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
14771         gtk-a-higuti-990322-[0-3]
14772
14773         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
14774         sizeof(wchar_t) != sizeof (GdkWChar)
14775
14776         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
14777         that was causing -DX_LOCALE not to work.
14778
14779         * gtk/gtkrc.c (gtk_rc_init):
14780         X_LOCALE will never have LC_MESSAGES defined
14781
14782         * gdk/gdk.c (gdk_init_check):
14783         Remove --xim-preedit and --xim-status from argv properly.
14784
14785         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
14786         that the client window is present on the X server
14787         before we pass it to the input method.
14788
14789 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
14790
14791         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
14792         if --display is specified on the command line, than
14793         the drag window will not be created on that display.
14794         
14795 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
14796
14797         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
14798         lookups with only_if_exists == TRUE were inserting
14799         bogus values into the atom cache.
14800
14801 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
14802
14803         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
14804         then reset it to NULL.
14805
14806         * gdk/gdkcolor.c:
14807         (gdk_colors_free): 
14808         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
14809         key for g_hash_table_remove() in both functions, this prevents us
14810         from accessing possibly uninitialized portions of a GdkColor structure
14811         where we are only interested in its pixel value.
14812
14813 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
14814
14815         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
14816         font hash table, if we have a GdkFontPrivate entry for this font
14817         already, simply increment its reference count, provided by Olaf Dietsche
14818         <olaf.dietsche+list.gtk@netcologne.de>.
14819
14820 1999-09-21  Tor Lillqvist  <tml@iki.fi>
14821
14822         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
14823         just to be sure.
14824
14825         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
14826         unused variables, leftovers from the X11 version.
14827
14828         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
14829
14830         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
14831         downcase fields on X11.
14832
14833 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
14834         
14835         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
14836         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
14837
14838 1999-09-17  Tor Lillqvist  <tml@iki.fi>
14839
14840         * gdk/win32/gdk.def: Add gdk_threads_mutex.
14841
14842         * gtk/makefile.msc: Correct path to libintl.
14843
14844         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
14845         use of gint vs. int, and gint vs. gboolean in headers and
14846         definitions. Use GtkType for the *_get_type functions. Note that
14847         these changes preserve binary compatibility.
14848
14849         * gdk/gdk.c
14850         * gdk/win32/gdk.c
14851         * gdk/gdk.h: Fix inconsistencies: gint vs int.
14852
14853         * gtk/gtkmain.c
14854         * gtk/gtkclist.c
14855         * gtk/gtkmenufactory.c
14856         * gtk/gtknotebook.c
14857         * gtk/gtkwidget.c: Fix inconsistencies, also gint
14858         vs. gboolean.
14859
14860         * gtk/gtkcolorsel.[ch]
14861         * gtk/gtkcombo.[ch]
14862         * gtk/gtkdrawingarea.[ch]
14863         * gtk/gtkgamma.[ch]
14864         * gtk/gtkhandlebox.[ch]
14865         * gtk/gtkhpaned.[ch]
14866         * gtk/gtkhruler.[ch]
14867         * gtk/gtkplug.[ch]
14868         * gtk/gtkpreview.[ch]
14869         * gtk/gtkruler.[ch]
14870         * gtk/gtksocket.[ch]
14871         * gtk/gtkstatusbar.[ch]
14872         * gtk/gtktoolbar.[ch]
14873         * gtk/gtkvbbox.[ch]
14874         * gtk/gtkvpaned.[ch]
14875         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
14876         functions.
14877
14878         * gtk/gtkgamma.h: Fix bug, missing () in call of
14879         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
14880
14881 1999-09-14  Tor Lillqvist  <tml@iki.fi>
14882
14883         * gdk/gdkcolor.c (gdk_colormap_new)
14884         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
14885         colormap->colors was allocated twice.
14886
14887         * gdk/win32/gdk.c: Remove some unused stuff.
14888
14889         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
14890         colormap.
14891
14892         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
14893         * gtk/gtklabel.h (gtk_label_get_type)
14894         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
14895         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
14896         in a couple of places, not guint.
14897
14898 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
14899
14900         * configure.in,po/et.po: added Estonian language file
14901
14902 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
14903
14904         * configure.in,po/da.po: added Danish file
14905
14906 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
14907
14908         * docs/gtkfaq.sgml: Minor FAQ Update
14909
14910 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
14911
14912         * docs/gtkfaq.sgml: FAQ update
14913
14914 1999-08-27  Tor Lillqvist  <tml@iki.fi>
14915
14916         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
14917         way to get window contents continually refreshed while resizing. I
14918         didn't like the effects myself, so it's not on by default.
14919
14920         * gdk/win32/gdkprivate.h: New flag variable
14921         gdk_event_func_from_window_proc, FALSE by default.
14922
14923         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
14924         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
14925         are passed --gdk-event-func-from-window-proc.
14926
14927         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
14928         and we have am event_func, call it instead of enqueing the event.
14929
14930 1999-08-23  Tor Lillqvist  <tml@iki.fi>
14931
14932         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
14933         Kelley: Set expose_count in GdkEventExposes correctly.
14934
14935         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
14936         MULTIPLE_WINDOW_CLASSES).
14937
14938         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
14939         for bug in NT, apparently NT *does* draw the end pixel, too, in
14940         LineTo with a one-pixel pen, so we don't have to do it ourselves.
14941
14942 1999-08-21  Tor Lillqvist  <tml@iki.fi>
14943
14944         Improvements by Hans Breuer: 
14945
14946         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
14947
14948         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
14949         CS_?REDRAW flags as they cause lots of (late) redraws when "show
14950         window contents while dragging" is turned on. Allocate at least
14951         one unique class for every GdkWindowType. If support for single
14952         window-specific icons is ever needed (eg. Dialog specific), every
14953         such window should get its own class.
14954
14955 1999-08-19  Tor Lillqvist  <tml@iki.fi>
14956
14957         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
14958         error that caused crashes.
14959
14960 1999-08-17  Tor Lillqvist  <tml@iki.fi>
14961
14962         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
14963         window, use ScrollWindowEx, and call UpdateWindow. This prevents
14964         bugs when for instance part of the window was outside the
14965         display. Thanks to Philippe Colantoni for finding and fixing this.
14966
14967 1999-08-16  Tor Lillqvist  <tml@iki.fi>
14968
14969         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
14970         endpoint calculations which were totally wrong. (A little RTFMing
14971         helps a lot ;-)
14972
14973         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
14974         from a separate directory, not from gettext, because of licensing
14975         issues (we want to use the LGPL version).
14976
14977         * README.win32: Mention the intl from glibc vs from gettext issue.
14978
14979 1999-08-13  Tor Lillqvist  <tml@iki.fi>
14980
14981         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
14982         in the key event handling: Now AltGr chars work again. Also,
14983         now Alt-digits are passed up as well as Control-digits.
14984         Pass keypad plus and minus as normal plus and minus.
14985
14986 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
14987
14988         * docs/gtkfaq.sgml: FAQ Update
14989
14990 1999-07-25  Tor Lillqvist  <tml@iki.fi>
14991
14992         * README.win32
14993         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
14994         the Wintab SDK.
14995
14996         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
14997         OK, but getting closer. Guard against bogus tilt data from Wacom
14998         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
14999         enable easier building without Wintab.
15000
15001         * gdk/win32/gdkinput.h
15002         * gdk/win32/gdkevents.c 
15003         * gdk/win32/gdkwindow.c: Minor changes related related to above.
15004         
15005         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
15006         code. As we have just one visual on Win32, no sense to have it in a
15007         table, and no need for the hash table.
15008
15009         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
15010         better on white background.
15011
15012 1999-07-21  Tor Lillqvist  <tml@iki.fi>
15013
15014         * README.win32: Update gcc build instructions. Mention gettext is
15015         GPL.
15016
15017         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
15018         supported cursor size with GetSystemMetrics.
15019
15020         * gdk/win32/gdkfont.c
15021         * gtk/gtkfontsel.c: Guard against some font weight and charset
15022         symbols being undefined (in mingw32 headers).
15023
15024         * gdk/win32/makefile.cygwin
15025         * gtk/makefile.cygwin
15026         * gtk/gtkthemes.c: No longer need to have differently named
15027         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
15028
15029 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
15030
15031         * docs/gtkfaq.sgml: Long awaited FAQ update.
15032
15033 1999-07-15  Tor Lillqvist  <tml@iki.fi>
15034
15035         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
15036         it. Obscure bit manipulation needed.
15037
15038         * gdk/win32/gdkevents.c: Logging.
15039         
15040         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
15041         style (file name include compiler name) for theme engines.
15042
15043 1999-07-13  Tor Lillqvist  <tml@iki.fi>
15044
15045         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
15046
15047         * gdk/win32/gdkevents.c: Fix long-standing bug in key
15048         events. The key.string wasn't zero-terminated, still we strdup'ed
15049         it in gdk_event_copy(). Synthesize crossing events for button
15050         events before possible propagation.
15051
15052         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
15053
15054         * gdk/win32/makefile.cygwin
15055         * gtk/makefile.cygwin: Use new DLL naming style for the
15056         GCC-compiled ones.
15057
15058         * gdk/win32/makefile.msc
15059         * gtk/makefile.msc: Cosmetics mostly.
15060
15061         * gtk/gtk.def: Add missing entry points.
15062
15063         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
15064
15065 1999-07-09  Tor Lillqvist  <tml@iki.fi>
15066
15067         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
15068         or height is zero. Don't print a warning if Pie or Arc fails, they
15069         always fail (?) for very narrow ellipses.
15070
15071         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
15072         the part or the destination window corresponding to source area
15073         outside of the source drawable's boundary.
15074
15075         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
15076         anything if less than two points.
15077
15078         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
15079         return NULL. Gtk cut-and-paste inside a single program works
15080         better this way. (It always gets the clipboard contents from
15081         Windows, not from its own copy, which is cleared anyway. I can't
15082         say I fully understand what happens... Emulating the X selection
15083         and property stuff is a bit of a mess.)
15084
15085         * gdk/win32/gdkevents.c
15086         * gdk/win32/gdkproperty.c: A bit more verbose logging.
15087
15088         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
15089         that never got deleted). Revamp gdk_region_shrink.
15090
15091         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
15092         after use.
15093
15094         * gtk/gtk.def: Add some missing entry points.
15095
15096         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
15097         component.
15098
15099 1999-07-04  Tor Lillqvist  <tml@iki.fi>
15100
15101         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
15102         Control-digits specially.
15103
15104 1999-07-03  Tor Lillqvist  <tml@iki.fi>
15105
15106         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
15107
15108 1999-06-28  Tor Lillqvist  <tml@iki.fi>
15109
15110         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
15111         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
15112         finding this.)
15113
15114 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
15115
15116         * gtk+.spec.in: Corrected some typos in files section.
15117         
15118 1999-06-15  Tor Lillqvist  <tml@iki.fi>
15119
15120         * README.win32: Mention using GNU gettext.
15121         * config.h.win32: Enable NLS stuff.
15122         * gtk/makefile.msc: Use GNU gettext.
15123         * gdk/win32/gdkdnd.c: Minor header reorg.
15124         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
15125         cosmetics.
15126         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
15127         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
15128
15129 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
15130
15131         * acinclude.m4
15132         * config.guess
15133         * config.status
15134         * ltconfig
15135         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
15136
15137 1999-05-30  Tor Lillqvist  <tml@iki.fi>
15138
15139         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
15140         SafeAdjustWindowRectEx. Don't override all calls to
15141         AdjustWindowRectEx by it, but use it only in two places: When
15142         creating a new top-level window and when moving a top-level
15143         window.
15144
15145         Use screen coordinate rectangle, not client rectangle, in
15146         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
15147         when we try to place a window so that the decoration (mainly,
15148         title bar) isn't visible.
15149
15150         These changes fix the bug that showed up for instance as the
15151         GIMP's saved top-level windows moving right and down (by an amount
15152         equal to the window decoration) for each session. This bug showed
15153         up also in testgtk's "Saved Position".
15154
15155         gdk_window_resize also redone a bit.
15156
15157 1999-05-25  Tor Lillqvist  <tml@iki.fi>
15158
15159         * gtk/testgtkrc: Add (commented out) Windows-style theme
15160         include line.
15161
15162         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
15163
15164 1999-05-18  Tor Lillqvist  <tml@iki.fi>
15165
15166         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
15167         gdkx.h to a gdk subdirectory, so that applications can include
15168         these with <gdk/*.h> without trouble.
15169
15170         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
15171         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
15172         have their bitmap destroyed.
15173
15174         * gdk/win32/gdk.def: Add gdk_root_parent.
15175
15176 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
15177
15178         * configure.in
15179           gtk-config.in
15180           ltconfig
15181           ltmain.sh     
15182           gtk/Makefile.am: changes to compile nicely (with xlib) 
15183           on BeOS
15184
15185 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
15186
15187         * acinclude.m4
15188         * config.guess
15189         * config.sub
15190         * ltconfig
15191         * ltmain.sh: upgrade to libtool 1.3
15192
15193 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
15194
15195         * gtk/gtkclist.c:
15196         * gtk/gtkctree.c: merges from gtk-1-2
15197
15198 1999-04-25  Tor Lillqvist  <tml@iki.fi>
15199
15200         Support added for building using a GNU toolchain on Win32,
15201         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
15202
15203         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
15204         * config.h.win32: Changes for gcc.
15205         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
15206         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
15207         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
15208         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
15209         Protect shl stuff unavaiilable with mingw32 headers.
15210         * gdk/win32/gdkevents.c: Fix typo.
15211         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
15212         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
15213         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
15214         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
15215         the mingw32 headers.
15216         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
15217         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
15218         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
15219         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
15220         Test for NATIVE_WIN32, not _MSC_VER.
15221         * gtk/gtkmain.c: No use warning about developer version on Win32,
15222         there aren't any non-developer versions anyhow.
15223         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
15224         * gtk/makefile.msc: Use pthread from another directory. Minor other
15225         changes. 
15226
15227 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
15228
15229         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
15230           default filter from the list
15231
15232 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
15233
15234         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
15235          when gtk_widget_grab_default() is called for a widget that
15236          is not within a GtkWindow.
15237
15238 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
15239
15240         * docs/gtk_tut.sgml, examples/clist.c: use a
15241           scrolled window in the clist example. Minor
15242           tutorial fixes.
15243
15244 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
15245
15246         * docs/gtk_tut.sgml: Style check from David King
15247           <dking@youvegotmail.net>
15248
15249 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
15250
15251         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
15252         compile with unknown value of GDK_WINDOWING
15253
15254 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
15255
15256         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
15257         after the rule is fired.
15258         (install-exec-local): Install gdkconfig.h only if the contents are
15259         different from the currently installed gdkconfig.h.
15260
15261 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
15262
15263         * gdk/Makefile.am (configexecincludedir): Rename from 
15264         configincludedir so that gdkconfig.h will be installed 
15265         as part of `make install-exec'. 
15266
15267 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
15268
15269         * acinclude.m4
15270         * config.guess
15271         * config.sub
15272         * ltconfig
15273         * ltmain.sh: upgrade to libtool 1.2f
15274
15275         * autogen.sh: libtool is not required to autogen gtk+
15276
15277         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
15278         needed)
15279
15280 1999-03-18  Tor Lillqvist  <tml@iki.fi>
15281
15282         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
15283         declaring gdk variables exported/imported from the DLL. New image
15284         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
15285         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
15286         GDK_DRAG_PROTO_OLE2.
15287
15288         * gdk/gdk.h: Merge in Win32 version: Two new functions,
15289         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
15290         declared only for the Win32 version, but could be in the X11
15291         version as well. (Needed for a Xlib-less gdk_imlib.)
15292         gdk_color_hash should have only one parameter. Declare
15293         gdk_threads_mutex with GDKVAR.
15294         
15295         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
15296         just one parameter.
15297
15298         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
15299         per pixel, not bits.
15300
15301         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
15302         Fetch bpp (which means bits-per-pixel here) from another place on
15303         Win32. Accept also depth==32 (which we might get on Win32) with
15304         bpp==32.
15305
15306         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
15307         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
15308         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
15309         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
15310         in the backend-dependent directory, not in the common gdk
15311         directory.
15312
15313         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
15314         headers.
15315
15316 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
15317
15318         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
15319         want to use the Gtk+ devel version (which is true, and yes - even i am
15320         currently working with the 1.2.x branch). so everyone reading this, you
15321         probably want to issue
15322         cvs checkout -r glib-1-2 glib
15323         and
15324         cvs checkout -r gtk-1-2 gtk+
15325         as your next two comands.
15326
15327 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
15328
15329         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
15330         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
15331
15332         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
15333         file. strongly deprecated the GTK_HAVE_* macros, we provide
15334         GTK_CHECK_VERSION() for people that need to check for certain
15335         Gtk+ versions.
15336
15337         * gtk/gtkcompat.h: removed this from CVS.
15338         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
15339         idea right from the start, it just didn't seem like that back then.
15340
15341 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
15342
15343         * merges from gtk-1-2:
15344
15345 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
15346
15347         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
15348         item factory class has been created.
15349         (gtk_item_factory_parse_rc): likewise.
15350
15351         * gtk/gtkmenu.c:
15352         keep proper references for old_active_menu_item.
15353         (gtk_menu_reparent): unset the usize of the new parent,
15354         so the menu can sanely be size requested and we don't get nasty screen
15355         artefacts upon next reparentation.
15356         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
15357         enter notify. only synthesize enter notifies if the pointer really is
15358         inside the event window.
15359         (gtk_menu_popdown): use gtk_menu_shell_deselect().
15360         (gtk_menu_popup): move the background setting stuff into
15361         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
15362
15363         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
15364         gtk_menu_shell_select_item() to select the new item.
15365         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
15366         do the right thing for deselection as well.
15367
15368 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
15369
15370         * gtk/gtkwidget.[hc]:
15371         (gtk_widget_accelerators_locked): return whether a widget's accelerators
15372         are locked.
15373
15374         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
15375         existing accelerators if the widget's accelerators are locked.
15376
15377 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
15378
15379         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
15380
15381         * gtk/gtkmenu.c: truely forward key press and key release events to
15382         the menu widget from the toplevel or tearoff window. we can't simply
15383         connect to that, we need to stop further processing of the events as
15384         well.
15385
15386 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
15387
15388         * gtk/gtkmenu.c:
15389         (gtk_menu_key_press): pass event->keyval, event->state to
15390         gtk_accelerator_valid, instead of event->keyval twice.
15391         refuse to install single letter accelerators for menus that use
15392         single letter shortcuts.
15393
15394         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
15395         gtk_menu_ensure_uline_accel_group().
15396
15397         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
15398         which will always return an uline accel group, made
15399         gtk_menu_get_uline_accel_group() return NULL if the group isn't
15400         yet created.
15401
15402 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
15403
15404         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
15405
15406         * gtk/gtkclist.c (gtk_clist_column_title_passive):
15407         Leave button sensitive, trap  button_press, button_release,
15408         motion_notify, enter_notify and leave_notify events instead.
15409         (gtk_clist_column_title_active): disconnect event handler.
15410         (gtk_clist_drag_data_get): fixed memory leak. Reported by
15411         Guillaume Laurent <glaurent@worldnet.fr>
15412
15413 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
15414
15415         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
15416         width/height mixups.
15417
15418         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
15419         if needed.
15420
15421 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
15422
15423         * gtk/testgtk.c (create_item_factory): unref the item factory after
15424         window's destruction.
15425
15426         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
15427         count on the menu shell around the menu item's activation, since the
15428         signal emission may cause menu shell destruction.
15429
15430         * gtk/gtkitemfactory.c:
15431         the previous code leaked one accel group per menu. we use
15432         gtk_menu_get_uline_accel_group() now to fix that, and with that
15433         also create the underline accelerator group of the menus only if
15434         required (i.e. an underline accelerator has been specified).
15435         (gtk_item_factory_construct):
15436         (gtk_item_factory_create_item): removed code that would create an
15437         extra accel group for the menu (and leak references).
15438         (gtk_item_factory_create_item): adapted the underline accelerator
15439         installation code to properly feature gtk_menu_get_uline_accel_group().
15440
15441         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
15442         menu->accel_group, this may return NULL if the accelerator group
15443         hasn't been set yet.
15444         added gtk_menu_get_uline_accel_group() to retrive the underline
15445         accelerator group of the menu, this will be created on demand
15446         and proper care is taken about its reference count.
15447
15448         * gtk/gtkitemfactory.h:
15449         * gtk/gtkitemfactory.c:
15450         dumped the approach of keeping a widgets by action list on the
15451         factory since the factory<->widget destroy negotiation didn't work
15452         and would be hard to get going at all. instead we keep a list of
15453         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
15454         persistant throughout a program's life time).
15455         also, i removed the static const gchar *key_* variables, and made
15456         them inline strings (they weren't actually used anyways).
15457         (gtk_item_factory_add_item): update ifactory->items.
15458         (gtk_item_factory_destroy): destroy ifactory->items (and remove
15459         the item factory pointer from the remaining ifactory widgets).
15460         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
15461         list to find the widget.
15462         (gtk_item_factory_get_item): new function that works around
15463         gtk_item_factory_get_widget() limitations, this function will only
15464         return menu items, even for <Branch> entries.
15465
15466 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
15467
15468         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
15469         font hash table, if we have a GdkFontPrivate entry for this font
15470         already, simply increment its reference count, provided by Olaf Dietsche
15471         <olaf.dietsche+list.gtk@netcologne.de>.
15472
15473         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
15474         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
15475
15476 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
15477
15478         * gtk/gtkcontainer.c:
15479         (gtk_container_add_with_args):
15480         (gtk_container_addv):
15481         (gtk_container_add): before adding a child to a conatiner, make sure
15482         it is (default) constructed, this is neccessary because under certain
15483         circumstances the child will get relized and mapped immediatedly, in
15484         which case it has to be constructed already.
15485
15486 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
15487
15488         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
15489         values > 1 as TRUE also.
15490
15491 1999-03-16  Tor Lillqvist  <tml@iki.fi>
15492
15493         * README.win32: New file.
15494                 
15495         * configure.in: Check for lstat.
15496
15497         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
15498         completeness.
15499
15500         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
15501
15502         * gtk/gtk.def: Removed CRs.
15503
15504         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
15505         ..\gdk\win32).
15506
15507         * gdk/win32/makefile.msc: Correct upwards relative paths.
15508         
15509 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
15510
15511         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
15512           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
15513           it was connecting a void function to expose_event and the int
15514           returning function to the draw signal
15515
15516 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
15517
15518         * configure.in:
15519         Use correct path to libgmodule.la when ref'ing uninstalled copy
15520         of glib.  (Already in stable branch, Bug #417)
15521
15522 1999-03-15  Tor Lillqvist  <tml@iki.fi>
15523
15524         Win32 merge and general portability stuff:
15525                 
15526         * acconfig.h,configure.in: Check for <sys/time.h>.
15527
15528         * gdk/win32: New directory (actually, been there for a while).
15529         
15530         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
15531         NATIVE_WIN32, and use these. Always case fold on Win32. No
15532         backslashed escapes on native Win32.
15533
15534         * gtk/{gtk.def,makefile.msc}: New files.
15535
15536         * gtk/Makefile.am: Add above new files.
15537         
15538         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
15539         instead of <strings.h>.
15540
15541         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
15542         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
15543         <unistd.h> appropriately.
15544
15545         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
15546         Use ABS() (from <glib.h>) instead of abs().
15547         
15548         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
15549         of gtk (and thus glib) headers, so that WIN32 will be
15550         defined. With MS C, include <direct.h> for mkdir prototype.
15551
15552         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
15553         some casts, needed by MS C.
15554
15555         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
15556         implemented).
15557
15558         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
15559         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
15560         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
15561
15562         * gtk/gtkmain.h: Mark variables for export/import on Win32.
15563                 
15564         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
15565         the event is not a hint, or its window is not the slider. Needed
15566         on Win32, at least.
15567
15568         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
15569         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
15570         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
15571         a subdirectory of the Windows directory as gtk system
15572         configuration directory.
15573
15574         * gtk/gtkselection.c: No chunks on Win32.
15575
15576         * gtk/gtksocket.c: Not implemented on Win32.
15577
15578         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
15579
15580         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
15581
15582         * gtk/maketypes.awk: Declare variables with a macro that expands to
15583         necessary export/import magic in the case of Win32.
15584                 
15585         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
15586
15587 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
15588
15589         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
15590         since those were meant only for gdki18n.h.  
15591         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
15592         for widechar tests.
15593         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
15594
15595 1999-03-13  Tor Lillqvist  <tml@iki.fi>
15596
15597         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
15598         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
15599
15600         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
15601         installed) to CFLAGS.
15602
15603         * gdk/Makefile.am: Add rules for gdkconfig.h.
15604
15605         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
15606         APIs.
15607
15608         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
15609         gdkx.h anyway when compiling for X11.
15610         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
15611         general): Merge in Win32 version.
15612         
15613         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
15614         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
15615         expansion (if we don't have HAVE_PWD_H), allow for drive
15616         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
15617         included code from Craig Setera's port to Win32 (the one that uses
15618         X11, and the cygwin dll), even if it probably will be abandoned.
15619
15620         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
15621         the user entered one herself.  This way one can complete *.h and
15622         don't get matches on any .help files, for instance.
15623         
15624 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
15625
15626         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
15627         font hash table, if we have a GdkFontPrivate entry for this font
15628         already, simply increment its reference count, provided by Olaf Dietsche
15629         <olaf.dietsche+list.gtk@netcologne.de>.
15630
15631         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
15632         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
15633
15634 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
15635
15636         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
15637         the number of calls to gdk_draw_point() (and thus to X) by
15638         clipping the points by hand.
15639
15640         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
15641         the clip parameter.
15642         (gtk_handle_box_paint): Only paint the handle if the expose area
15643         intersects it.
15644
15645 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
15646
15647         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
15648
15649 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
15650
15651         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
15652         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
15653
15654 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
15655
15656         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
15657          textmode (O_TEXT) for OS/2 version.
15658
15659 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
15660
15661         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
15662         GtkSpinButton, "input" and "output", to make the output more flexible.
15663         The user has to provide a mapping between adjustment->value and the
15664         output string (and vice versa, if the spin button is editable). 
15665         See testgtk for examples.
15666
15667 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
15668
15669         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
15670         new one.
15671         
15672         * configure.in: set gtk+ version to 1.3.0.