]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-4
Minor fix.
[~andy/gtk] / ChangeLog.pre-2-4
1 Tue Dec  4 18:38:35 2001  Jonathan Blandford  <jrb@redhat.com>
2
3         * demos/gtk-demo/main.c: (create_tree): Minor fix.
4
5         * docs/tree-column-sizing.txt: Update
6
7         * gtk/gtkrbtree.[ch]: Massive work to support validation.
8
9         * gtk/gtktreemodel.c: Doc fixes.
10
11         * gtk/gtktreeview.c: Incremental reflow added.
12         * gtk/gtktreeviewcolumn.c: ditto
13         * gtk/gtktreeviewcolumn.h: ditto
14
15 2001-12-04  Havoc Pennington  <hp@redhat.com>
16
17         * gtk/gtktexttag.c (gtk_text_tag_set_property): add a warning for
18         "invisible" property, #65999
19
20 2001-12-04  Matt Wilson  <msw@redhat.com>
21
22         * gtk/gtktreestore.c (gtk_tree_store_insert): fixed docs
23
24 Tue Dec  4 12:16:31 2001  Owen Taylor  <otaylor@redhat.com>
25
26         * gtk/gtksettings.c (gtk_settings_set_property_value):
27         Simplify, make more efficient and fix memory leak
28         when turning quark into a string. (#66103, HideToshi
29         Tajima)
30
31         * gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
32         init() and unref priv->tooltips in destroy rather
33         than calling gtk_object_destroy() which has no
34         effect on memory management. (#66104, HideToshi
35         Tajima)
36
37         * gtk/gtkcolorsel.c (palette_set_color): Use g_object_set_data_full()
38         so we free the when the object is freed. (Fixes memory
39         leak, #66096, HideToshi Tajima)
40
41         * gdk/gdkevents.c (gdk_synthesize_window_state): Use 
42         a full GdkEvent structure to avoid reads of uninitialized/
43         invalid memory in gdk_event_put() (#65877, patch
44         from Hidetoshi Tajima)
45
46 Tue Dec  4 11:06:54 2001  Owen Taylor  <otaylor@redhat.com>
47
48         * gtk/gtkmenuitem.c: Revert my last mistaken change - 
49         toggle-size-request doesn't take a requisition.
50
51         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): Fix
52         reference to marshaler that no longer exists.
53
54 Mon Dec  3 16:39:17 2001  Owen Taylor  <otaylor@redhat.com>
55
56         Patch from Bill Haneman (with many modifications) to make
57         the focus color work on dark themes and to make the
58         focus line width configurable. (#61079, #63074)
59
60         * gtk/gtkwidget.c: Add style properties, 
61         ::focus-widget, ::focus-line-width, and ::focus-padding.
62
63         * gtk/gtkstyle.[ch]: Make gtk_paint_focus() take a 
64         state argument as well so we can use fg[STATE] to
65         draw instead of always drawing with black. 
66         Cange paint_focus() to respect GtkWidget::focus-width
67         and GtkWidget::focus-line-pattern. Fix continuity
68         problem where the default 1-1 stipple had a blob
69         in one corner and a gap in the other. Change the
70         interpretation of x/y/width/height to be the bounding
71         box of the focus rect instead of the rectangle
72         passed to gdk_draw_rectangle.
73
74         * gtk/gtkcheckbutton.c gtk/gtklistitem.c gtk/gtknotebook.c 
75         gtk/gtkoptionmenu.c gtk/gtkradiobutton.c gtk/gtkspinbutton.c 
76         gtk/gtktextview.c gtk/gtktreeview.c: Handle ::focus-width 
77         and ::focus-line-padding.
78
79         * gtk/gtkentry.c: Handle :;focus-width property; cleanup
80         and remove duplicated code; fix drawing of focus rectangle
81         when interior-focus = FALSE. (#63072, #63073)
82
83         * gtk/gtkrange.c gtk/gtktext.c gtk/gtktreeitem.c
84         gtk/gtktreeviewcolumn.c: Basic fixups to make compile;
85         Range and TreeViewColumn will need more extensive fixing.
86
87         * gtk/gtkcolorsel.c: Honor focus line attributes when
88         drawing the focus on the color swatches. (#63071)
89
90         * gtk/gtkhsv.c: Honor focus line attributes when
91         drawing the focus for the ring and triangle.
92
93         * docs/widget_geometry.txt: Start at documenting how 
94         various widgets are drawn.
95
96         * gtk/gtkbutton.c (_gtk_button_paint): Export 
97         _gtk_button_paint() librarywide, so we don't have 
98         duplicate a bunch of code in gtktogglebutton.c.
99
100         * gtk/gtktogglebutton.c: Use _gtk_button_paint().
101
102 Mon Dec  3 21:04:13 2001  Jonathan Blandford  <jrb@redhat.com>
103
104         * gtk/gtkmarshalers.list: remove VOID:BOXED,POINTER and
105         NONE:POINTER.
106
107 2001-12-03  Alex Larsson  <alexl@redhat.com>
108
109         * gtk/gtkaccellabel.c:
110         * gtk/gtkarrow.c:
111         * gtk/gtkcolorsel.c:
112         * gtk/gtkcontainer.c:
113         * gtk/gtklabel.c:
114         * gtk/gtktextview.c:
115         * gtk/gtktogglebutton.c:
116         * gtk/gtktreeview.c:
117         * gtk/gtkwindow.c:
118         Return FALSE from expose handlers.
119
120 Mon Dec  3 21:15:59 2001  Kristian Rietveld  <kris@gtk.org>
121
122         * gtk/gtktreedatalist.c (_gtk_tree_data_list_value_to_node): if
123         we use pointers, we should free the previous pointer first (if
124         it exists), before we set a new pointer. (#64726)
125
126         * gtk/gtktreeprivate.h: get rid of cursor_drag
127
128         * gtk/gtktreeview.c (gtk_tree_view_unrealize): remove check     
129         for cursor_drag
130         (gtk_tree_view_bin_expose): don't directly return in the while
131         loop
132         (gtk_tree_view_class_init): indentend expanders by default
133         (gtk_tree_view_header_focus): only give the button focus
134         if it's clickable, visible and the column is reorderable
135         (#65539)
136
137         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
138         create and free cursor
139
140 Mon Dec  3 10:23:07 2001  Owen Taylor  <otaylor@redhat.com>
141
142         * gtk/gtkcalendar.c (gtk_calendar_size_request): Fix
143         some bugs with size requisition. (From Bill Haneman)
144
145         * gtk/gtkcalendar.c: Draw headers and selection in 
146         base/text[SELECTED] instead of fg/bg[SELECTED].
147
148         * gtk/gtkcalendar.c: Miscellaneous cleanups to drawing
149         code and formatting.
150
151 2001-12-03  Havoc Pennington  <hp@pobox.com>
152
153         * gtk/gtktextview.c (set_window_height): 
154         (set_window_width): Hmm, setter functions normally assign the new
155         value to the object field. Reported by Chris Phelps.
156
157 2001-11-30  jacob berkman  <jacob@ximian.com>
158
159         * gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
160         signal id to 0 after we disconnect from it
161
162 2001-11-30  Matthias Clasen  <matthiasc@poet.de>
163
164         * gdk/gdkdrawable.h (gdk_drawable_ref, gdk_drawable_unref),
165         gdk/gdkcolor.h (gdk_colormap_ref, gdk_colormap_unref),
166         gdk/gdkdnd.h (gdk_drag_context_ref, gdk_drag_context_unref),
167         gdk/gdkgc.h (gdk_gc_ref, gdk_gc_unref):  Deprecate.
168
169         * gdk/gdkvisual.h: Use GDK_DISABLE_DEPRECATED, not 
170         GTK_DISABLE_DEPRECATED.
171
172         * gdk/gdkcolor.c (gdk_colormap_ref, gdk_colormap_unref),
173         gdk/gdkgc.c (gdk_gc_ref, gdk_gc_unref): Document.
174
175 Fri Nov 30 16:37:01 2001  Owen Taylor  <otaylor@redhat.com>
176
177         * gtk/gtkcombo.c (gtk_combo_popup_list): Sanitize
178         move/resize code, removing various bad, non-functional
179         hacks. (Fixes #65048, reported by Damon Chaplin.)
180
181 Fri Nov 30 16:12:21 2001  Owen Taylor  <otaylor@redhat.com>
182
183         * gdk/gdkpango.c: Patch from Hidetoshi Tajima to fix 
184         bad match error when target drawable is not the 
185         same depth as the root window. (#65841)
186
187         * HACKING: Update.
188
189 2001-11-29  Matthias Clasen  <matthiasc@poet.de>
190
191         * gdk/gdkwindow.c: Typo fix.
192
193 Thu Nov 29 21:35:56 2001  Kristian Rietveld  <kristian@planet.nl>
194
195         * gtk/gtkmenu.c (gtk_menu_motion_notify): add checks for
196         empty menu items to behave like insensitive items (#59456)
197
198         * gtk/gtkmenuitem.c (gtk_real_menu_item_activate_item): select
199         next item if the first item in the menu is a tear off item
200         (#59456-2, suggestion by Matthias Clasen)
201
202         * gtk/gtkmenushell.c (gtk_menu_shell_button_press),
203         (gtk_menu_shell_button_release), (gtk_menu_shell_entry_notify),
204         (gtk_menu_shell_leave_notify), (gtk_real_menu_shell_move_current),
205         (gtk_real_menu_shell_activate_current): add check, so empty
206         menu items behave like insensitive items (#59456)
207         
208         * gtk/gtkmenuitem.[ch]: add _gtk_menu_item_is_selectable to make
209         the checks more readable ...
210         
211         * gtk/gtkmenushell.c (gtk_menu_shell_button_press),
212         (gtk_menu_shell_button_release): causes the menu to dropdown if the
213         caption is clicked again (#64977)
214
215 2001-11-29  Havoc Pennington  <hp@redhat.com>
216
217         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
218         assertion here that we were at the end iterator was not correct;
219         change code to move us to the end iterator. bug #65731
220
221 Wed Nov 28 20:05:44 2001  Owen Taylor  <otaylor@redhat.com>
222
223         * gtk/gtkaccellabel.c (gtk_accel_label_refetch): Remove 
224         improper use of g_locale_to_utf8() to convert from
225         latin-1, and do it the easy way by building the string
226         correctly in the first place.
227
228 Wed Nov 28 19:34:15 2001  Owen Taylor  <otaylor@redhat.com>
229
230         * gdk/x11/gdkproperty-x11.c (gdk_property_change, gdk_property_get): 
231         Convert atoms to and from atoms for properties of type XA_ATOM.
232         (#65555, patch from Hidetoshi Tajima)
233
234 Wed Nov 28 18:37:04 2001  Owen Taylor  <otaylor@redhat.com>
235
236         * gtk/gtksocket.[ch] (gtk_socket_add_id): Rename 'id' parameter 
237         to avoid problems with Objective C.
238
239 2001-11-28  Matthias Clasen  <matthiasc@poet.de>
240         
241         * gtk/gtkaccelmap.c: Typo fixes. (#65607)
242
243         * gtk/gtkfixed.c (gtk_fixed_set_has_window, gtk_fixed_get_has_window):
244         Fix docs. (#65505)
245
246         * gtk/gtkwindow.c (gtk_window_set_mnemnonic_modifier): Document.
247
248 Wed Nov 28 18:19:12 2001  Owen Taylor  <otaylor@redhat.com>
249
250         * gtk/gtkmenu.c (gtk_menu_set_tearoff_hints): Move
251         accounting of menu->tearoff_scrollbar width to here
252         and make sure we have the correct requisition.
253
254         * gtk/gtkmenu.c (gtk_menu_position): Fix fixme
255         by using gtk_window_move().
256
257         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Force
258         the requisition to be updated by calling
259         gtk_widget_size_request() (#65440)
260
261         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_activate): 
262         queue resize before calling gtk_menu_set_tearoff_state().
263
264 Wed Nov 28 22:20:44 2001  Kristian Rietveld  <kristian@planet.nl>
265
266         * demos/gtk-demo/editable_cells.c: fix typo
267
268         * demos/gtk-demo/list_store.c (add_columns): remove call to
269         gtk_tree_view_column_set_clickable which didn't make sense
270
271 2001-11-28  Havoc Pennington  <hp@redhat.com>
272
273         * gtk/gtktextview.c (gtk_text_view_paint): put the warning
274         explaining the validation error in front of the G_BREAKPOINT
275
276         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): call
277         process updates with include_children = FALSE instead of TRUE, so
278         we redraw the range only, not the whole darn window.  Making
279         GtkRange a NO_WINDOW widget had weirdly caused the text widget
280         Trace/breakpoint trap bug to become much easier to trigger.
281
282 Wed Nov 28 14:12:03 2001  Owen Taylor  <otaylor@redhat.com>
283
284         * gdk/Makefile.am (gdk_public_h_sources): Remove reference
285         to gdkcursors.h.
286
287 2001-11-28  Matthias Clasen  <matthiasc@poet.de>
288
289         * gtk/gtkwindow.c (gtk_window_move): Add markup to docs.
290
291         * gdk/gdkcursor.h: Directly include the contents
292         of gdkcursors.h in the GdkCursorType enum.
293
294         * gdk/gdkcursors.h: Deleted.
295
296         * gdk/gdkkeysyms.h: Remove XFree86-specific keysyms, add 
297         header boilerplate.
298
299         * gdk/Makefile.am: Remove the X-derived-headers rule.
300
301 Tue Nov 27 20:17:55 2001  Owen Taylor  <otaylor@redhat.com>
302
303         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_activate):
304         Notify on the ::active property _here_, not in
305         gtk_check_menu_item_set_active.
306
307 Mon Nov 26 19:11:18 2001  Jonathan Blandford  <jrb@redhat.com>
308
309         * gtk/gtkcellrendererpixbuf.c
310         (gtk_cell_renderer_pixbuf_class_init): add 2 properties
311         (PIXBUF_EXPANDER_OPEN and PIXBUF_EXPANDER_CLOSED)
312
313 Sun Nov 25 21:19:02 2001  Owen Taylor  <otaylor@redhat.com>
314
315         * gdk/x11/gdkgeometry-x11.c: Add long, but horribly sketchy
316         comment about what is going on in this file.
317
318         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
319         x/y problem.
320
321 Sun Nov 25 18:59:19 2001  Owen Taylor  <otaylor@redhat.com>
322
323         * gtk/gtkoptionmenu.c (gtk_option_menu_calc_size): 
324         Calculate size based on the _child_ of the menu item,
325         not the menuitem. (#65005, Damon Chaplin)
326
327         * gtk/gtklistitem.c (gtk_list_item_new_with_label): Add
328         some extra vertical padding to the label widget ... restores
329         GTK+-1.2 spacing. (#65085, Damon Chaplin.)
330
331 2001-11-26  Tor Lillqvist  <tml@iki.fi>
332
333         * demos/pixbuf-demo.c
334         * demos/gtk-demo/pixbufs.c: M_PI -> G_PI.
335
336         * demos/gtk-demo/main.c (read_line): No flockfile() or
337         getc_unlocked() on Win32.
338
339 2001-11-25  Tor Lillqvist  <tml@iki.fi>
340
341         * configure.in
342         * acconfig.h: As we now use GDir, no need to check for dirent.h.
343
344 Sun Nov 25 23:18:39 2001  Kristian Rietveld  <kristian@planet.nl>
345
346         * gtk/gtktexttag.c (gtk_text_tag_set_property): free font_desc
347         when finished (#65266)
348
349 Sun Nov 25 23:16:29 2001  Kristian Rietveld  <kristian@planet.nl>
350
351         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): free
352         data after we set the property. (#65264)
353
354 Sun Nov 25 23:14:06 2001  Kristian Rietveld  <kristian@planet.nl>
355
356         * gtk/gtkbutton.c: add destroy method so label_text gets freed
357         if it has been allocated (#65268)
358
359 Sat Nov 24 13:39:51 2001  Manish Singh  <yosh@gimp.org>
360
361         * gdk/linux-fb/gdkdrawable-fb2.c
362         * gdk/linux-fb/gdkpango-fb.c: update to latest Pango API
363
364         * gdk/linux-fb/gdkwindow-fb.c: implement gdk_window_show_unraised
365
366         * gdk/linux-fb/gdkfont-fb.c (gdk_font_load): plug memleak on
367         set_family
368         
369         * gdk/linux-fb/gdkfbswitch.c: minor cleanups
370
371 Sat Nov 24 22:05:27 2001  Kristian Rietveld  <kristian@planet.nl>
372
373         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): don't
374         deactivate menu when menu_item isn't sensitive (#61389)
375
376 Sat Nov 24 15:35:26 2001  Kristian Rietveld  <kristian@planet.nl>
377
378         * gtk/gtktreemodel.c (gtk_tree_model_foreach): free path before
379         we return (in case of a failure here)
380
381 Fri Nov 23 19:22:50 2001  Owen Taylor  <otaylor@redhat.com>
382
383         * gtk/gtknotebook.c: Handle events in windows other
384         than widget->event_window properly. (#65079, reported
385         by Damon Chaplin)
386
387         * gdk/gdkevents.c (gdk_event_get_coords): Fix x/y bug.
388
389 Fri Nov 23 18:57:46 2001  Owen Taylor  <otaylor@redhat.com>
390
391         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): Align
392         the image at the top. (#65020, request from Seth Nickell)
393
394 Fri Nov 23 18:49:53 2001  Owen Taylor  <otaylor@redhat.com>
395
396         * gtk/{gtkclist,gtkctree.c} (draw_row): Remove some strange
397         arithmetic that was resulting in rows being drawn too low.
398         (#65001, reported by Damon Chaplin)
399
400 Fri Nov 23 18:36:42 2001  Owen Taylor  <otaylor@redhat.com>
401
402         * gtk/gtkrange.c (gtk_range_button_press): Offset 
403         invalidated range correctly.
404
405         * gtk/gtkclist.c (hadjustment_value_changed): Fix scrolling 
406         of title window. (#65001, reported by Damon Chaplin)
407
408         * gtk/gtkcombo.c (gtk_combo_button_event_after): Replace
409         horrible hack with use of ::event_after.
410
411 Thu Nov 22 15:01:03 2001  Owen Taylor  <otaylor@redhat.com>
412
413         * Version 1.3.11
414
415         * configure.in (ATK_REQUIRED_VERSION): Require
416         GLib-1.3.11, Pango-0.22, ATK-0.7.
417
418         * tests/prop-editor.c (property_widget): Restore
419         to working as well as it did before.
420
421         * gtk/gtklistitem.h: Mark deprecated since it is
422         an integral part of GtkList.
423
424         * demos/gtk-demo/demo-common.h: New header file,
425         for a common functions not important to the meat
426         of the demos.
427         
428         * demos/gtk-demo/main.c (demo_ifind_file): Add a utility
429         function to search for a file used by the demo.
430
431         * demos/*.c: Use demo_find_file.
432
433 2001-11-23  Matthias Clasen  <matthiasc@poet.de>
434
435         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag),
436         gtk/gtkruler.c (gtk_ruler_get_metric): Actually commit typo 
437         fixes already mentioned in ChangeLog entry on 2001-11-14.
438
439         * docs/reference/gtk/tmpl/drawing.sgml: Minor markup fixes.
440
441 2001-11-23  Hans Breuer  <hans@breuer.org>
442
443         * gdk/win32/gdkfont-win32.c (gdk_font_from_description) : 
444         reflect Pango API change
445
446         * gtk/gtk.def : updated externals
447
448         * gtk/gtkfixed.c (gtk_fixed_get_has_window) : use 
449         g_return_val_if_fail() to avoid 'function must return a value'
450
451         * gtk/gtkrc.c : added spaces to fix small coding style issues
452         * gtk/gtkwidget.c : ... and linebreaks. Also a static for
453         'static correctness'
454
455         * gtk/makefile.msc.in : temporary(?) disable gtk<plug|socket>
456         because they only can be build on win32 after applying my patch
457
458 Wed Nov 21 22:55:37 2001  Tim Janik  <timj@gtk.org>
459
460         * gtk/gtkbutton.c (gtk_button_map): raise event window afte
461         children, in order for the input pnly window to stay *above*
462         children.
463
464 Wed Nov 21 22:44:27 2001  Tim Janik  <timj@gtk.org>
465
466         * tests/testtreeview.c: make hackery worse ;) by checking fundamental
467         type walks againts G_TYPE_FUNDAMENTAL_MAX.
468         
469         * tests/prop-editor.c: disable type hackery.
470
471 Wed Nov 21 17:41:39 2001  Owen Taylor  <otaylor@redhat.com>
472
473         * gdk/gdkimage.c (gdk_image_get): Fix problem with
474         lost parameter.
475
476 Wed Nov 21 17:01:25 2001  Owen Taylor  <otaylor@redhat.com>
477
478         * gtk/gtkcellrenderer.h gtk/gtktreemodel.h 
479         gtk/gtktreeprivate.h gtk/gtktreesortable.h: Remove
480         trailing commas in enum declarations.
481
482 Wed Nov 21 15:21:26 2001  Owen Taylor  <otaylor@redhat.com>
483
484         * configure.in (GTK_MICRO_VERSION): Version 1.3.11, 
485         interface, binary age 0.
486
487         * NEWS: Updates
488
489         * gtk/gtktreemodel.c gtk/gtkrc.c gtk/gtkentry.c: SGML
490         fixes in docs.
491
492         * gtk/gtkmain.h: Remove unused and misnamespaced
493         get_gtk_win32_directory() prototype.
494
495         * gdk/gdkimage.c (gdk_image_get): Fix parameter names
496         to match header.
497
498         * gdk/gdkwindow.h: Fix parameters to gdk_window_shape_combine_mask(),
499         gdk_window_set_transient_for(), gdk_window_set_geometry_hints(),
500         to match docs.
501
502         * gdk/gdkevents.c (gdk_event_get_coords)
503           gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_active)
504           gtk/gtkdnd.c (gtk_drag_set_icon_stock):
505         Fix parameter names in docs.
506         
507         * docs/faq/Makefile.am (FAQ_FILES): Add missing files.
508         (#64961, Akira Tagoh)
509
510 Wed Nov 21 11:41:29 2001  Owen Taylor  <otaylor@redhat.com>
511
512         * tests/testgtk.c (create_tooltips): Ref-sink the tooltips object.
513
514         * gtk/gtktoolbar.c (gtk_toolbar_init): Ref-sink the tooltips object.
515
516         * gtk/gtkfilesel.c (open_new_dir): Fix some constness warnings.
517
518         * gtk/gtkaccelgroup.c: Rename gtk_accel_groups_from_acceleratable()
519         back to gtk_accel_groups_from_object(), change @acceleratable
520         parameter to gtk_accel_groups_activate() accordingly.
521
522         * gtk/gtkaccelmap.c (gtk_accel_map_lookup_entry): Remove
523         left-over comment about quark return.
524
525         * gtk/gtkaccelmap.h: Fix spelling of gtk_accel_map_foreach_unfiltered().
526
527         * gtk/gtk-boxed.defs (GtkIconSource): added as a boxed type.
528         (Patch from Matt Wilson)
529
530         * gtk/gtkobject.c (gtk_object_finalize): Warn if a floating
531         object is finalized.
532
533 Tue Nov 20 21:25:08 2001  Tim Janik  <timj@gtk.org>
534
535         * applied patch from owen to get rid of accel map notifiers.
536         changed things to fix reentrancy and API as discussed on gtk-devel.
537
538         * gtk/gtkaccelgroup.[hc]:
539         (gtk_accel_group_finalize): unregister this accel group from all
540         accel map paths.
541         (accel_closure_invalidate): handle invalidation of closures by
542         disconnecting their accelerators.
543         (quick_accel_add): move closure connection and changed notification
544         into this function to reduce code duplication. don't emit change
545         notification on closurers without accelerators.
546         (quick_accel_remove): rewrite, do the exact opposite of quick_accel_add
547         for a GtkAccelGroupEntry.
548         (gtk_accel_group_connect): get rid of the accel_path_quark argument.
549         (gtk_accel_group_connect_by_path): new function to add accelerators
550         with an accel path.
551         (gtk_accel_group_disconnect_closure): new function, disconnect a
552         closure from of an accel group.
553         (gtk_accel_group_disconnect): loop over all closure for a accel_ley,
554         accel_mods pair and remove them.
555         (_gtk_accel_group_reconnect): new function that basically does
556         gtk_accel_group_disconnect_closure() and
557         gtk_accel_group_connect_by_path() once an accel path changed.
558         (gtk_accel_groups_disconnect_closure): remove this, there's
559         gtk_accel_group_disconnect_closure().
560         
561         * gtk/gtkaccelmap.[hc]: keep list of accel groups per entry now,
562         nuke notifiers.
563         (_gtk_accel_path_is_valid): make this non-static for
564         gtkwidget.c and gtkaccelgroup.c assertions.
565         (gtk_accel_map_add_notifer): removed this function.
566         (gtk_accel_map_remove_notifer): same.
567         (_gtk_accel_map_add_group):
568         (_gtk_accel_map_remove_group): (un-)register accel groups, with
569         accel paths for correct propagation.
570         (gtk_accel_map_add_entry): return void.
571         (gtk_accel_map_lookup): return gboolean instead of GQuark.
572         
573         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): always
574         set accel_path on widgets.
575         
576         * gtk/gtkwidget.[hc]:
577         (accel_path_changed): got rid of this, changes are handled by
578         accel maps internally now.
579         (_gtk_widget_set_accel_path): get things to work without notifiers.
580         (gtk_widget_list_accel_closures): list accel closures of a widget.
581         
582         * gtk/gtkwindow.[hc]: rename ::accels_changed, to ::keys_changed.
583
584 2001-11-20  Matthias Clasen  <matthiasc@poet.de>
585
586         * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix.
587
588 Tue Nov 20 23:01:01 2001  Kristian Rietveld  <kristian@planet.nl>
589
590         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path):
591         replace gboolean free_last in the function parameters with
592         gint depth. Changes to reflect new situation.
593
594         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path_helper):
595         replace gboolean free_last, with gint depth, add gint current_depth.
596         Changes to reflect new situation.
597
598         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): changes
599         to reflect new situation
600
601         * gtk/gtktreemodel.c (gtk_tree_row_reference_free): ditto
602
603 Tue Nov 20 12:37:10 2001  Owen Taylor  <otaylor@redhat.com>
604
605         * gtk/gtknotebook.c (gtk_notebook_paint): Fix problem
606         where notebook gap was double shifted by allocation.x/y
607
608         * gtk/gtknotebook.c (gtk_notebook_unmap): Chain up
609         to unmap children.
610
611 Tue Nov 20 14:49:59 2001  Tim Janik  <timj@gtk.org>
612
613         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): fix
614         allocation to be relative to paned->allocation, now
615         that this is a NO_WINDOW widget.
616         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): same here.
617
618         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): ::closure
619         needs to be a boxed property.
620
621 Mon Nov 19 17:34:40 2001  Owen Taylor  <otaylor@redhat.com>
622
623         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator):
624         Use the widget's state when drawing the indicator, as
625         in GtkCheckButton. This gives us color changes for
626         un-prelighted checkbuttons. (#63308, Matt Wilson)
627
628 Mon Nov 19 17:11:23 2001  Owen Taylor  <otaylor@redhat.com>
629
630         (Fixes related to #64428, Michael Meeks)
631
632         * gtk/gtkplug.c (gtk_plug_set_is_child): Unmap the
633         widget, so it gets mapped again properly when we
634         add to a parent.
635
636         * gtk/gtkplug.c (_gtk_plug_add_to_socket): Set
637         plug->socket_window. 
638
639         * gtk/gtkplug.c (_gtk_plug_remove_from_socket): Set
640         socket_window to NULL, not FALSE.
641
642         * gtk/gtkplug.c (_gtk_plug_add_to_socket): Set
643         socket->same_app to TRUE. (#64612)
644
645 Mon Nov 19 15:50:41 2001  Owen Taylor  <otaylor@redhat.com>
646
647         * gtk/gtkfixed.[ch] docs/Changes-2.0.txt: Add 
648         gtk_fixed_set/get_has_window() to remove criticism
649         about GTK_WIDGET_SET_FLAGS() hacks.
650
651 2001-11-19  Michael Natterer  <mitch@gimp.org>
652
653         * gtk/gtknotebook.c: show notebook->event_window with
654         gdk_window_show_unraised(), so it doesn't catch the events which
655         should go to the tab widgets first.
656
657 Mon Nov 19 15:30:51 2001  Jonathan Blandford  <jrb@redhat.com>
658
659         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add a
660         "resizable" property, to get rid of the
661         GTK_TREE_VIEW_COLUMN_RESIZABLE sizing flag.
662         (gtk_tree_view_column_set_resizable): New function to set resizable.
663         (gtk_tree_view_column_set_resizable): getter.
664
665         * tests/testtreecolumns.c (add_clicked): modify for above change.
666
667         * Makefile.am (install-data-hook): remove old .pc files before
668         installing the new one.  We used to symlink this, and it will
669         break old installs.
670
671 2001-11-19  Havoc Pennington  <hp@pobox.com>
672
673         * tests/testtext.c (fill_example_buffer): put in a test for
674         negative indentation values
675
676 Mon Nov 19 14:08:18 2001  Owen Taylor  <otaylor@redhat.com>
677
678         * gtk/gtklabel.c (gtk_label_init): Change default for
679         justify to GTK_JUSTIFY_LEFT. Assuming that multiline
680         labels are most often wrapped labels, this gives better
681         compatibility with GTK+-1.2, where justification was
682         ignored for wrapped labesl and is a more sensible
683         default in any case. (#64489)
684
685         * gtk/gtklabel.c (gtk_label_class_init): Fix default
686         for wrap property to FALSE.
687
688 2001-11-19  jacob berkman  <jacob@ximian.com>
689
690         * gtk/Makefile.am (gtk_extra_sources): add gtkmarshal.list
691
692 Mon Nov 19 13:56:45 2001  Owen Taylor  <otaylor@redhat.com>
693
694         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): Use 
695         RevertToParent, not RevertToNone. (#64613, 
696         Matthias Clasen)
697
698 Mon Nov 19 12:28:02 2001  Owen Taylor  <otaylor@redhat.com>
699
700         * gtk/gtkframe.c (gtk_frame_class_init): label_xalign
701         and label_yalign need to be float properties to
702         correspond to GTK+-1.2, to gtk_frame_set_label_align,
703         and to the types of the xalign and yalign properties of GtkMisc.
704         (#63484, Vitaly Tishkov)
705
706 Mon Nov 19 12:24:30 2001  Owen Taylor  <otaylor@redhat.com>
707
708         * gtk/gtksocket.h (struct _GtkSocketClass): Fix return
709         of plug_added vfunc. (#64408, Jeff Franks)
710
711 Mon Nov 19 12:07:20 2001  Owen Taylor  <otaylor@redhat.com>
712
713         * configure.in (deps): Undef HAVE_STDLIB_H before
714         checking for jpeg, because jconfig.h has this
715         in it too (%#$@!). Fix from Matthias Clasen, #64500.
716
717 Mon Nov 19 11:30:03 2001  Owen Taylor  <otaylor@redhat.com>
718
719         * gdk/x11/gdkproperty-x11.c (get_atom_name): Fix a 
720         memory leak when retrieving atom names. (Michael Meeks,
721         #64508)
722
723 2001-11-18  Alex Larsson  <alexl@redhat.com>
724
725         * gdk/x11/gdkfont-x11.c (gdk_font_from_description):
726         Update to new Pango API.
727         
728 Sun Nov 18 19:47:29 2001  Owen Taylor  <otaylor@redhat.com>
729
730         * gtk/gtkobject.h docs/Changes-2.0.txt: Rename the
731         GTK_DESTROYED flag to GTK_IN_DESTRUCTION, remove the
732         GTK_OBJECT_DESTROYED() check macro.
733
734         * gtk/gtkbindings.c (gtk_bindings_activate): Remove
735         instances of GTK_OBJECT_DESTROYED() that weren't
736         needed any more.
737
738         * gtk/gtkdialog.c: Exchange use of GTK_OBJECT_DESTROYED
739         for a connection to ::destroy.
740
741 Sun Nov 18 18:18:11 2001  Owen Taylor  <otaylor@redhat.com>
742
743         * gtk/gtkfixed.c: Make a NO_WINDOW widget, as it should
744         have been since the beginning, but as special hack,
745         allow clearing the NO_WINDOW flag to get a window widget.
746
747 Sun Nov 18 22:01:36  Kristian Rietveld  <kristian@planet.nl>
748
749         * gtk/gtktreestore.c: return TRUE when value changed, so
750         row_changed is being emitted
751
752 2001-11-18  Hans Breuer  <hans@breuer.org>
753
754         * gtk/gdkaccelmap.c : make it compile with msvc: !HAVE_UNISTD_H;
755         no label without op, even if it's a no-op.
756
757         * gtk/gtk.def :
758         * gtk/makefile.msc.in : reflect marshaler split, some clean-up  
759
760         * config.h.win32.in : remove definition of HAVE_DIRENT_H
761         * gtk/gtkfilesel.c : due to GDir (new in glib) DIR isn't
762         required anymore, replace it.
763         * gtk/queryimmodules.c : DIR -> GDir replacement, also
764         getcwd() -> g_get_current_dir()
765
766         * gdk/win32/gdkgeometry-win32.c : adapt to refactored gdkgeometry-x11.c
767         Even 'noisy laugh' scolling appears to work, though I still can't
768         claim to have fully understood what it is supposed to do ...
769
770 Sat Nov 17 21:07:46 2001  Owen Taylor  <otaylor@redhat.com>
771
772         * gtk/gtkenums.h: Include glib-object.h instead of
773         gobject/gsignal.h
774
775         * gdk/{gdkinternals.h,gdkwindow.c,gdkwindow.[ch],
776           x11,{fb,win32,x11/gdkwindow-*.c}: Add a dummy GdkScreen
777         argument to the window_at_pointer() field of
778         GdkPointerHooks. (Patch from Erwann Chenede)
779
780         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Up
781         to 6 pointers.
782
783 2001-11-17  Matt Wilson  <msw@redhat.com>
784
785         * gtk/gtkenums.h: must include glib-object.h only
786
787 Sat Nov 17 19:26:20 2001  Owen Taylor  <otaylor@redhat.com>
788
789         * gtk/gtkwindow.c (gtk_window_key_press_event): Reprioritize
790         key bindings in order of visibility - mnemonics, then 
791         accelerators, then send key to the focus widget, then
792         bindings on the GtkWindow.
793
794         * gtk/gtklayout.h docs/Changes-2.0.txt tests/testgtk.c: 
795         Removed the xoffset, yoffset fields of GtkLayout which were
796         identically zero for compat with 1.2, but were no longer 
797         compatible with all uses of these fields in 1.2.
798
799         * gtk/gtkwindow.c (gtk_window_set_default): Remove 
800         unused variable.
801
802 Sat Nov 17 19:08:13 2001  Owen Taylor  <otaylor@redhat.com>
803
804         * tests/testtreeview.c (gtk_tree_model_types_get_type): 
805         We no longer need to create the signals here ... they
806         come from the interface.
807
808         * gtk/maketypes.awk: Use GType, not GtkType in output.
809
810         * gtk/gtktypeutils.h: Mark virtually all of this
811         file deprecated.
812
813         * gtk/gtkcontainer.h: Deprecate gtk_container_foreach_full;
814         the only use of this function is the GtkArg using
815         GtkCallbackMarshal, since destroy notification is
816         silly here.
817
818 Sat Nov 17 18:26:45 2001  Owen Taylor  <otaylor@redhat.com>
819
820         * gtk/Makefile.am gtk/gtkmarshal.list gtk/gtkmarshalers.list
821         gtk/*.c gtk/gtksignal.h: Make gtkmarshal.list/gtkmarshal.h
822         only for compatibility with GTK+-1.2; and deprecate it; 
823         put all marshalers we actually use into gtkmarshalers.list 
824         and use the _gtk_marshal_ prefix for these marshalers.
825
826 2001-11-17  Murray Cumming  <murrayc@usa.net>
827
828         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
829         The first parameters of the signals are now registered as
830         GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
831         
832 2001-11-17  Tor Lillqvist  <tml@iki.fi>
833
834         * gtk-zip.sh.in: Build separate runtime and developer
835         packages.
836
837         * gtk/gtk.def: Reflect recent accelerator-related changes.
838
839 Fri Nov 16 19:44:35 2001  Owen Taylor  <otaylor@redhat.com>
840
841         * gtk/gtkwindow.c (gtk_window_set_default): Move 
842         notification of "has_default" to here, so it
843         is safe to call gtk_window_set_default() instead
844         of gtk_widget_grab_default().
845
846         * gtk/gtkwindow.c (gtk_window_set_focus): Make it call
847         gtk_widget_grab_focus(), which then calls 
848         _gtk_widget_internal_set_focus(). This makes 
849         gtk_window_set_focus() a safe way of both setting
850         and unsetting the focus widget.
851
852         * gtk/gtkwidget.c (gtk_widget_propagate_state): Use
853         gtk_widget_get_toplevel(), instead of gtk_widget_ancestor
854         to find the toplevel.
855
856         * gtk/gtkwindow.h: Move gtk_window_set_focus/default
857         from the "internal functions" section.
858
859 2001-11-16  jacob berkman  <jacob@ximian.com>
860
861         * tests/testgtk.c (create_radio_buttons): add some no-indicator
862         radio buttons
863
864         * gtk/gtkradiobutton.c (gtk_radio_button_init): since we are
865         initially active, also initially be depressed
866         (gtk_radio_button_clicked): also update our depressed state
867
868 Thu Nov 15 12:54:36 2001  Owen Taylor  <otaylor@redhat.com>
869
870         * gtk/gtkwindow.c (gtk_window_key_press_event): Propagate
871         key press events not just to focus/window but also to
872         intermediate widgets.
873
874         * gtk/gtknotebook.c: Handle Ctrl-PageUp/Ctrl-PageDown
875         to switch pages. (Needs some work on handling focus
876         when switching pages.)
877
878 Fri Nov 16 14:06:31 2001  Owen Taylor  <otaylor@redhat.com>
879
880         * gtk/gtknotebook.c: Fix child allocations to be relative to 
881         widget position and some drawing bugs.
882
883         * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
884         with reading uninitialized variable.
885
886 Fri Nov 16 00:16:40 2001  Owen Taylor  <otaylor@redhat.com>
887
888         * gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
889         gtkradiomenuitem.c,gtktearoffmenuitem.c}: Make Menu items
890         NO_WINDOW widgets.
891
892         * gtk/gtk{h,v,}paned.[ch]: Make NO_WINDOW widgets, some
893         cleanup.
894
895         * gtk/gtkstyle.c (gtk_default_draw_handle): Don't assume
896         we are drawing in a window when drawing the paned handle.
897
898 2001-11-16  Sven Neumann  <sven@gimp.org>
899
900         * demos/gtk-demo/appwindow.c
901         * demos/gtk-demo/menus.c: reduce compiler warnings
902
903 Thu Nov 15 19:47:09 2001  Owen Taylor  <otaylor@redhat.com>
904
905         * demos/gtk-demo/main.c (button_press_event_cb): Remove 
906         unused callback to make things compile with 
907         gtk_tree_view_path_at_pos_change().
908
909 Thu Nov 15 18:44:33 2001  Jonathan Blandford  <jrb@redhat.com>
910
911         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): maybe fix #64160
912
913 2001-11-15  Matthias Clasen  <matthiasc@poet.de>
914
915         * gtk/gtkwindow.c (gtk_window_new): Move '.' out of quote. (#64407)
916  
917 Thu Nov 15 16:24:55 2001  Jonathan Blandford  <jrb@redhat.com>
918
919         * gtk/gtktreeview.c (gtk_tree_view_get_bin_window): New function
920         to get a GdkWindow to compare event->window to.
921
922         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_left_right): emit
923         the signal for lateral motion too, #64361
924
925         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): remove window
926         arg as it is useless, #64137
927
928 Thu Nov 15 16:07:42 2001  Owen Taylor  <otaylor@redhat.com>
929
930         * gtk/gtknotebook.c: Some small drawing fixes for scroll arrows.
931
932 Thu Nov 15 14:19:34 2001  Owen Taylor  <otaylor@redhat.com>
933  
934         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Cal
935         gdk_window_invalidate_maybe_recurse() for recursion.
936         (Soeren Sandmann)
937
938         * gtk/gtkviewport.c: Make !redraw_on_allocate. (Soeren Sandmann)
939  
940         * gtk/gtkcontainer.c (gtk_container_expose): Call
941         gtk_container_forall() not _foreach() to propagate,
942         since we need to propagate exposes to internal children
943         as well.
944
945         * gtk/gtkwidget.c (gtk_widget_set_events, gtk_widget_add_events): 
946         Remove the restriction of only being able to call these
947         on window widgets, since we have lots of NO_WINDOW widgets
948         with windows now; for add events, recurse over the children
949         of widget->window to find one owned by the widget.
950
951         * gtk/gtkbutton.[ch]: Make a NO_WINDOW widget, using an input-only
952         window to catch events.
953
954         * gtk/gtktogglebutton.[ch]: Remove the code for switching
955         between NO_WINDOW and WINDOW widgets based on the mode.
956
957         * gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c gtk/gtkclist.c
958         gtk/gtktreeview.c: Adopt to NO_WINDOW change for GtkButton.
959
960         * gtk/gtkrange.[ch]: Make into a NO_WINDOW widget.
961
962         * gtk/gtkhscale.c, gtk/gtkvscale.c: Adopt to NO_WINDOW
963         change for range.
964
965         * gtk/gtknotebook.[ch]: Make into a NO_WINDOW widget.
966  
967         * docs/Changes-2.0.txt: Add a note about the NO_WINDOW changes.
968
969 Thu Nov 15 11:59:35 2001  Owen Taylor  <otaylor@redhat.com>
970
971         * gtk/gtkmessagedialog.c: Patch from Murray Cumming to add
972         "message_type" and "buttons" CONSTRUCT properties. (#64069)
973
974         * tests/testsocket.c: Expand tests to add a "local passive
975         child" (Test case for #64428)
976
977 2001-11-14  jacob berkman  <jacob@ximian.com>
978
979         * gtk/gtkgamma.c (button_clicked_callback): create the label with
980         a mnemonic
981
982 2001-11-15  Sven Neumann  <sven@gimp.org>
983
984         * tests/testgtk.c: make it compile without warnings.
985
986 2001-11-14  Alex Larsson  <alexl@redhat.com>
987
988         * gtk/gtklabel.c:
989         Don't recalculate the layout on each gkt_label_ensure_layout () for
990         wrapped labels.
991
992 Wed Nov 14 17:40:23 2001  Jonathan Blandford  <jrb@redhat.com>
993
994         * gtk/gtktreeview.c (gtk_tree_view_get_expander_column): Return
995         the currently selected column when we get the column, #64380
996
997         * gtk/gtkentry.c (gtk_cell_editable_key_press_event): Handle Esc
998         to cancel CellRendererText editting, #63613
999
1000         * gtk/gtkcellrenderertext.c: ditto
1001
1002         * gtk/gtkcellrenderertext.h: formatting changes
1003
1004 2001-11-14  Matthias Clasen  <matthiasc@poet.de>
1005
1006         * gtk/gtkbutton.c (gtk_button_get_label): Rearrange docs (#64566)
1007
1008         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): Typo fix (#64474)
1009
1010         * gtk/gtkruler.c (gtk_ruler_get_metric): Typo fix (#64470)
1011
1012         * gtk/gtknotebook.c (gtk_notebook_prepend_page): Typo fix (#64467)
1013
1014         * gtk/gtklabel.c: Documentation fixes (#64452)
1015
1016 2001-11-14  Daniel Egger  <degger@fhm.edu>
1017
1018         * gdk-pixbuf/io-xpm.c: 
1019         (xpm_skip_whitespaces): Remove unused static function.
1020         (xpm_skip_string): Dito.        
1021         (xpm_extract_color): Declare const variable const to avoid warnings. 
1022
1023         * gtk/gtkfixed.c: (gtk_fixed_map): Remove unused static function.
1024         
1025         * gtk/gtkplug.c: #if 0'ed prototype for #if 0'ed code.
1026         
1027         * gtk/gtksocket.c: Change type of mask to g_message to %ld for 
1028         a long.
1029
1030 Wed Nov 14 15:14:48 2001  Owen Taylor  <otaylor@redhat.com>
1031
1032         * gtk/gtkcontainer.c (gtk_container_idle_sizer): Back
1033         out accidental commit of debugging timing code.
1034
1035 2001-11-14  Havoc Pennington  <hp@redhat.com>
1036
1037         * gtk/gtktextview.c (gtk_text_view_move_cursor): fix Control-E so
1038         it doesn't move to a new line each time you press it
1039
1040         * gtk/gtktextiter.c (gtk_text_iter_forward_to_line_end): fix
1041         return value, #62987
1042
1043 2001-11-14  Havoc Pennington  <hp@redhat.com>
1044
1045         * tests/testtextbuffer.c (main): bulk of the tests were commented
1046         out, oops.
1047
1048         * gtk/gtktextiter.c (find_paragraph_delimiter_for_line): make this 
1049         function work, should resolve #63426
1050         (gtk_text_iter_ends_line): return TRUE for the end iterator
1051
1052         * gtk/gtktextiter.h: put padding back in GtkTextIter, I thought of
1053         a couple things that might get cached in here.
1054
1055 Tue Nov 13 21:00:59 2001  Jonathan Blandford  <jrb@redhat.com>
1056
1057         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_class_init): new
1058         "model" construct property for language bindings.
1059
1060         * gtk/gtktreestore.c (gtk_tree_store_set_column_types): New
1061         function to let you set the column types of a GtkTreeStore for
1062         language bindings.
1063
1064         * gtk/gtkliststore.c (gtk_list_store_set_column_types): ditto.
1065
1066 2001-11-13  Havoc Pennington  <hp@redhat.com>
1067
1068         * gtk/gtktextview.c (gtk_text_view_add_child_in_window): docs
1069         including reference to bugzilla bug about how we should have 
1070         a better way of positioning children
1071
1072         * gtk/gtktextview.h (struct _GtkTextViewClass): add some padding
1073
1074         * gtk/gtktextview.c (gtk_text_view_size_allocate): assign zero
1075         size to side rects if they don't exist, #63438
1076
1077 2001-11-13  Havoc Pennington  <hp@redhat.com>
1078
1079         * gtk/gtktextview.c (gtk_text_view_key_press_event): fix to
1080         properly replace selection with Return or Tab
1081
1082         * gtk/gtktextdisplay.c (gtk_text_layout_draw): fix broken code
1083         that didn't locate the end of the line correctly, should fix #63800
1084
1085 2001-11-13  Havoc Pennington  <hp@redhat.com>
1086
1087         * gtk/gtktextview.c (gtk_text_view_size_request): add border width
1088         to requisition, request non-anchored children
1089         (gtk_text_view_size_allocate): handle border width, allocate
1090         non-anchored children
1091         (text_view_child_new_window): set the child as object data
1092         (gtk_text_view_move_child): allow children at negative
1093         coordinates, no reason why not
1094         (gtk_text_view_forall): make it copy the list of children before
1095         walking it, to avoid reentrancy issues  
1096         (gtk_text_view_move_child): short-circuit if position is unchanged
1097         (changed_handler): only queue_resize if requisition has changed
1098         (gtk_text_view_init): don't redraw_on_allocate, since we can do 
1099         a better job of invalidation ourselves
1100
1101         * tests/testtext.c: add tests for the fixed-position children
1102
1103 Tue Nov 13 19:51:43 2001  Tim Janik  <timj@gtk.org>
1104
1105         * gtk/gtkwindow.c (handle_accels_changed): protect idle handle
1106         with gdk threads macro.
1107
1108 Mon Nov 12 23:08:37 2001  Tim Janik  <timj@gtk.org>
1109
1110         * gtk/maketypes.awk: fix type utils generation on unix.
1111
1112         * gtk/gtkaccelmap.[hc]: new files, implementing a global accelerator
1113         registry.
1114
1115         * gtk/gtkaccelgroup.[hc]: major API/implementation revamp:
1116         removed GTK_ACCEL_SIGNAL_VISIBLE, gtk_accel_group_get_default,
1117         gtk_accel_group_get_entry, gtk_accel_group_(un)lock_entry,
1118         gtk_accel_group_add/remove, gtk_accel_group_handle_add/remove,
1119         gtk_accel_group_create_add/remove, gtk_accel_group_entries_from_object.
1120         introduced ::accel_changed signal for change notification, and
1121         gtk_accel_group_connect/disconnect to connect closures to accel groups.
1122         made gtk_accel_group_attach/detach and gtk_accel_group_activate private
1123         functions.
1124         deprecated gtk_accel_group_ref/unref.
1125
1126         * gtk/gtkaccellabel.[hc]: changes to make accellabels pay attention
1127         to accel group changed notification and basically operate on closures.
1128         removed gtk_accel_label_get_accel_object and
1129         gtk_accel_label_set_accel_object.
1130         introduced gtk_accel_label_set_accel_closure, and for convenience,
1131         gtk_accel_label_set_accel_widget.
1132
1133         * gtk/gtkitemfactory.[hc]: removed accelerator propagation code
1134         which mostly moved into gtkaccelmap.[hc].
1135         removed gtk_item_factory_parse_rc*, gtk_item_factory_dump_*
1136         and gtk_item_factory_print_func.
1137
1138         * gtk/gtkmain.c: call _gtk_accel_map_init().
1139
1140         * gtk/gtkmenuitem.[hc]: introduced gtk_menu_item_set_accel_path(),
1141         that associates an accelerator path with menu items, through which
1142         persistent accelerator settings on menu items are enabled.
1143
1144         * gtk/gtkmenu.[hc]: added gtk_menu_set_accel_path() so accelerator
1145         paths of menu item can be default constructed to allow installation
1146         of accelerators on menu items that don't come with an accelerator
1147         binding by default.
1148
1149         * gtk/gtksettings.c: fix STRING type rc settings by special casing
1150         them appropriately in the parser.
1151
1152         * gtk/gtksignal.[hc]: allow a class function offset of 0 for
1153         gtk_signal_newv().
1154
1155         * gtk/gtkwidget.[hc]: accelerator API revamp.
1156         removed ::accelerator_add/remove signals, gtk_widget_accelerator_signal,
1157         gtk_widget_accelerators_locked, gtk_widget_remove_accelerators and
1158         gtk_widget_(un)lock_accelerators.
1159         accelerators maintained through gtk_widget_add/remove_accelerator()
1160         are not runtime changable now, the correct sequence to setup a
1161         widget for runtime changable accelerators is now:
1162           gtk_accel_map_add_entry(accel_path, key, mods);
1163           _gtk_widget_set_accel_path(widget, accel_path, accel_group);
1164
1165         * gtk/gtkwindow.[hc]: accelerator changes, proxy and coalesce accel
1166         group changes (as well as mnemonic changes) through the new signal
1167         ::accels_changed.
1168
1169 Sat Nov 10 12:08:56 2001  Tim Janik  <timj@gtk.org>
1170
1171         * gtk/gtksettings.c (_gtk_settings_parse_convert): properly handle
1172         GString->string conversions.
1173
1174 Mon Nov 12 19:33:52 2001  Owen Taylor  <otaylor@redhat.com>
1175
1176         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
1177         if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
1178
1179 2001-11-12  Matthias Clasen  <matthiasc@poet.de>
1180
1181         * gtk/gtktreeview.c: Documentation fixes. (#64377)
1182         
1183         * gtk/gtktreestore.c: Documentation fixes. (#64376)
1184
1185 2001-11-11  Matthias Clasen  <matthiasc@poet.de>
1186
1187         * gtk/gtkiconfactory.c, gtk/gtktextbuffer.c, gtk/gtktreemodel.c,
1188         gtk/gtkwindow.c, gtk/gtknotebook.c, gtk/gtkradiobutton.c, 
1189         gtk/gtktextiter.c, gtk/gtkdialog.c: Mass fixing of trivial doc bugs.  
1190         (#63544, #57007, #64141, #63472, #57108, #60818, #61562)
1191
1192 2001-11-10  Hans Breuer  <hans@breuer.org>
1193
1194         * gdk/win32/gdkevents-win32.c (gdk_event_translate) : make sure 
1195         we know what we are talking about when asked for MINMAXINFO.
1196         Also some cleaning for !HAVE_DIMM_H etc.
1197
1198 2001-11-10  Matthias Clasen  <matthiasc@poet.de>
1199
1200         * gtk/gtktreeviewcolumn.c: Fix docs for 
1201         gtk_tree_view_column_set_sort_order. (#62647)
1202         
1203         * gtk/gtkcontainer.c: Fix docs for 
1204         gtk_container_set_border_width. (#64139)
1205
1206         * gtk/gtkcolorsel.c: Documentation fixes.
1207
1208 2001-11-10  Hans Breuer  <hans@breuer.org>
1209
1210         * gtk/gtkfontsel.c : use g_strcasecmp(), some poor platforms
1211         don't have strcasecmp()
1212
1213         * gtk/gtktextview.c : to fix crashing on e.g. TextView::find need 
1214         to remove the idle funcs in gtk_text_view_destroy (). To reduce 
1215         code duplication wrap it in its own function and use it in 
1216         gtk_text_view_unrealize () and gtk_text_view_destroy_layout ()
1217
1218         * gdk/win32/gdkdrawable-win32.c : implement the finalize
1219         method like the X11 version does, allow to set_colormap NULL
1220         * gdk/win32/gdkwindow-win32.c : adapt GdkWindowImplWin32::
1221         set_colormap, also some adaption to X11 version :
1222         (gdk_window_hide) call _gdk_window_clear_update_area
1223         (gdk_window_reparent) call _gdk_window_init_position
1224
1225         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints) : 
1226         call gdk_window_resize() after all hints are set, because the
1227         window resizing process (WM_GETMINMAXINFO) takes all of them into 
1228         account
1229
1230         * gdk/win32/gdkfont-win32.c : make gdk_font_equal return a gboolean
1231
1232         * gdk/win32/gdkvisual-win32.c : register GdkVisual with 
1233         sizeof (GdkVisualPrivate)
1234
1235         * gdk/gdk.def gtk/gtk.def : upated externals
1236
1237         * gdk/makefile.msc gdk/win32/makefile.msc gdk-pixbuf/makefile.msc
1238           gdk-pixbuf/pixops/makefile.msc gtk/makefile.msc.in tests/makefile.msc :
1239         from now on use make.msc from $(TOP)/glib/build/win32
1240
1241         * gtk/stock-icons/makefile.msc : add stock_missing_image
1242
1243 2001-11-08  Tor Lillqvist  <tml@iki.fi>
1244
1245         * README.win32: Add headers. Add section about ActiveIMM.
1246
1247         * configure.in: Add --with-ie55 flag to specify the location of
1248         the "IE55 libs and headers" package downloadable from Microsoft,
1249         which contains, among other things, the Active IMM header dimm.h
1250         and UUID library uuid.lib. Use test -f instead of AC_CHECK_FILE.
1251         Require GLib 1.3.10.
1252         
1253         * config.h.win32.in: New version, produced by merging two
1254         configure-generated ones (for gcc and MSVC). Hopefully #defines
1255         the same flags that the previous, hand-written one, did.
1256
1257         * gdk/Makefile.am
1258         * gdk/win32/Makefile.am: Handle the uuid library from the IE55 lib.
1259
1260         * gdk/win32/gdkevents-win32.c: Conditionalize ActiveIMM
1261         stuff. Remove unused GdkIOClosure.
1262
1263         * gdk/win32/surrogate-dimm.h: Remove, use real dimm.h instead (if
1264         available).
1265
1266         * gdk/win32/libie55uuid.la: New file, handwritten libtool wrapper
1267         for uuid.lib. (Does it really have to be this hard to use an
1268         existing library with libtool? Probably I am missing something.)
1269
1270 2001-11-08  Darin Adler  <darin@bentspoon.com>
1271
1272         * gtk/gtklabel.c: (gtk_label_ensure_layout): Fix an obvious
1273         typo where it says LEFT instead of CENTER.
1274
1275 2001-11-07  Darin Adler  <darin@bentspoon.com>
1276
1277         * gtk/gtkdialog.c: (gtk_dialog_set_response_sensitive),
1278         (gtk_dialog_set_default_response): Add g_return_if_fail.
1279
1280 Mon Nov  5 22:34:29 2001  Owen Taylor  <otaylor@redhat.com>
1281
1282         * gtk/gtktreednd.[ch] (struct _GtkTreeDragSourceIface): 
1283         Add row_draggable() vfunc, and wrapper function.
1284
1285         * gtk/gtktreednd.[ch] (struct _GtkTreeDragDestIface): Make
1286         row_drop_possible take a GtkSelectionData, rather than
1287         model/row pair.
1288
1289         * gtk/gtktreestore.c gtk/gtkliststore.c: Update for 
1290         new DND interfaces.
1291
1292         * gtk/gtktreeview.[ch]: Remove the row_draggable_func
1293         location_dropable_func from gtk_tree_view_set_rows_drag_source/dest.
1294         and rename them to enable_model_drag_source/dest.
1295
1296         * gtk/treeviewcolumn.c: Add DND of columns between rows.
1297         Still can't drop _to_ the left tree, but other places
1298         work.
1299
1300         * gtk/gtktreeview.c (unset_reorderable): Unset the
1301         reorderable property if unset/enable_model_drag_source/dest
1302         are called manually.
1303
1304         * gtk/gtktreestore.c (gtk_tree_store_row_drop_possible): 
1305         Correct for change in depth count handling.
1306
1307         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon):
1308         Pass in a expose area to gtk_tree_view_column_cell_render()
1309
1310 2001-11-06  Havoc Pennington  <hp@redhat.com>
1311
1312         * demos/gtk-demo/textview.c (easter_egg_callback): wacky easter egg
1313
1314 Tue Nov  6 10:13:16 2001  Owen Taylor  <otaylor@redhat.com>
1315
1316         * gdk/x11/gdkgc-x11.c: Fix misplaced HAVE_XFT.
1317
1318 2001-11-05  Havoc Pennington  <hp@redhat.com>
1319
1320         * gtk/gtktextview.c (gtk_text_view_paint): expose the child
1321         widgets in here
1322         (gtk_text_view_realize): set parent window of child widgets
1323         (gtk_text_view_size_request): use child req to decide whether
1324         to invalidate layout, not widget->requisition
1325
1326         * gtk/gtktextdisplay.c (render_layout_line): set
1327         shaped_width_pixels for NULL shape objects, so that we properly
1328         draw the "missing pixbuf/widget" thing
1329         (render_layout_line): don't draw the widget here
1330         (gtk_text_layout_draw): pass out a list of widgets that need exposing
1331
1332         * demos/gtk-demo/textview.c (insert_text): add demo of child
1333         widgets
1334
1335         * gtk/gtktextlayout.c (add_child_attrs): remove debug spew
1336
1337         * gtk/gtktextdisplay.c (render_layout_line): remove debug spew
1338
1339         * gtk/gtktextview.c (gtk_text_view_update_child_allocation): add
1340         scroll offsets
1341         (gtk_text_view_value_changed): poke new X and Y into child allocations
1342
1343 2001-11-06  Tor Lillqvist  <tml@iki.fi>
1344
1345         * gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
1346         -specific directory on Windows, too (#63759).
1347
1348 Mon Nov  5 12:46:44 2001  Owen Taylor  <otaylor@redhat.com>
1349
1350         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c
1351         gdk/x11/gdkpixmap-x11.c gdk/x11/gdkprivate-x11.h
1352         gdk/x11/gdkwindow-x11.c: Redo Xft support to go
1353         directly to Picture objects instead of using XftDraw.
1354         This fixes the problem where we weren't able to 
1355         properly destroy XftDraw objects before destroying
1356         the accompanying windows, and probably improves
1357         efficiency a bit too. (#50214)
1358
1359 Mon Nov  5 10:01:49 2001  Owen Taylor  <otaylor@redhat.com>
1360
1361         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): 
1362         Clamp max window width/height to 32767, not 32768 since
1363         we have to be able to deal with a dx/y of -32768 without
1364         getting a width of 65536 when guffaw scrolling.
1365
1366         * gdk/x11/gdkgeometry-x11.c: Implement gdk_window_scroll()
1367         for the guffaw scrolling case, fixing some problems with
1368         copy-area case as well. Fix BadValue bug with moving windows
1369         by large amounts.
1370
1371         * gdk/x11/gdkgeometry-x11.c (gdk_window_clip_changed): Update
1372         clip in window structue before calling gdk_window_invalidate_region
1373         since that trims new invalidations to the window's visible
1374         region.
1375
1376         * gdk/x11/gdkwindow-x11.c (gdk_window_set_static_gravities): 
1377         Really set the static window gravity on the children, not
1378         repeatedly on the window.
1379
1380         * gtk/testgtk.c: Add a torture test for big windows and 
1381         gdk_window_scroll().
1382
1383 Sun Nov  4 17:36:08 2001  Manish Singh  <yosh@gimp.org>
1384
1385         * acconfig.h configure.in: sigsetjmp is macroized in some places,
1386         so use AC_TRY_LINK instead of AC_CHECK_FUNCS for the check.
1387
1388 Sun Nov  4 19:16:23 2001  Owen Taylor  <otaylor@redhat.com>
1389
1390         * gdk/gdkcolor.c (gdk_color_parse): Implement gdk_color_parse()
1391         in terms of pango_color_parse().
1392
1393         * gdk/{linux-fb,win32,x11}/gdkcolor-*.c: Remove port-specific
1394         gdk_color_parse() implementations.
1395
1396 Sun Nov  4 18:39:43 2001  Owen Taylor  <otaylor@redhat.com>
1397
1398         * gtk/gtksizegroup.c (gtk_size_group_set_mode): 
1399         queue_resize_on_group with both the old and new mode, not
1400         just the new mode. (#60171, Nicolas Setton). Also, notify
1401         the "mode" property.
1402         
1403 Sun Nov  4 16:02:08 2001  Owen Taylor  <otaylor@redhat.com>
1404
1405         * gdk/gdkwindow.[ch]: Add a function gdk_window_invalidate_maybe_recurse() 
1406         for use in "shallow invalidation" of a widget. (Windows belonging
1407         to the widget, but not to the widget's children)
1408
1409         * gtk/gtkprivate.h gtk/gtkwidget.c gtk/gtksizegroup.c: Add private
1410         flags GTK_ALLOC_NEEDED, GTK_REQUEST_NEEDED.  These flags are set
1411         up on ancestors up to the resize container on queue_resize. Size
1412         requests only actually take place if GTK_REQUEST_NEEDED, size
1413         allocations only take place if GTK_ALLOC_NEEDED or the size
1414         changed.
1415
1416         * gtk/gtkcontainer.c gtk/gtkwidget.c: Remove
1417         container->resize_widgets and the RESIZE_NEEDED flag since the
1418         above flags are sufficient to figure out what needs to be
1419         resized/reallocated. Remove code manipulating
1420         container->resize_widget.
1421
1422         * gtk/gtkwidget.[ch]: Add gtk_widget_set_redraw_on_alloc(); this
1423         allows widgets to turn off being automatically invalidated is when
1424         they are resized.
1425
1426         * gtk/gtkwidget.[ch] (gtk_widget_size_allocate): Invalidation when
1427         a widget is resized or moved is "shallow" as described above -
1428         only the windows that need to be invalidated are invalidated.
1429
1430         * gtk/gtkbox.c gtk/gtktable.c gtk/gtkalignment.c docs/Changes-2.0.txt: 
1431         Make these widget's init functions call 
1432         gtk_widget_set_redraw_on_allocate(widget,FALSE).
1433
1434         * gtk/gtkwindow.c (gtk_window_configure_event): Call 
1435         _gtk_container_queue_resize(), since we don't want
1436         redrawing. (Probably could be done for other 
1437         calls to gtk_widget_queue_resize() in gtkwindow.c,
1438         but this is the most important one.)
1439
1440         * gtk/gtkwindow.c (gtk_window_move_resize): Don't call
1441         gtk_widget_queue_draw() - size_allocate() handles
1442         that as appropriate.
1443
1444         * gtk/gtkframe.c (gtk_frame_size_allocate): Invalidate instead
1445         of queue_clear() to avoid invalidating children.
1446
1447 2001-11-04  jacob berkman  <jacob@ximian.com>
1448
1449         * gtk/gtkmain.c (find_module): don't free the module name until
1450         after we load the module
1451
1452 Sat Nov  3 13:57:21 2001  Owen Taylor  <otaylor@redhat.com>
1453  
1454         * gtk/gtkctree.c: Convert GTK_TYPE_CTREE_NODE to pointer
1455         derivation instead of boxed derivation.
1456  
1457         * gtk/gtkmarshal.list: Remove some now unused marshallers.
1458  
1459 2001-11-04  Tor Lillqvist  <tml@iki.fi>
1460
1461         * gtk/gtkimmodule.c: Can't include gtkprivate.h (I added the
1462         include yesterday, without really thinking), as that defeats the
1463         working of correct_libdir_prefix() (it becomes a no-op.). Add
1464         comment mentioning that. Thanks to Hans Breuer for noticing.
1465         
1466 2001-11-03  Daniel Elstner  <daniel.elstner@gmx.net>
1467
1468         * gtk/gtkwindow.h (frame_event): Use GtkWindow* as first
1469         signal argument (was GtkWidget*).
1470
1471         * gtk/gtkwindow.c (gtk_window_frame_event),
1472           gtk/gtkwindow-decorate.c (gtk_decorated_window_frame_event):
1473         Fixed argument types as above, removed GTK_WINDOW casts and
1474         added some GTK_WIDGET casts instead.
1475
1476 2001-11-03  Hans Breuer  <hans@breuer.org>
1477
1478         * gtk/gtkfilesel.c (gtk_file_selection_finalize) : chain
1479         finalize to parent class to get removed from the toplevel_list.
1480         Should fix 'random' crashes of #63474.
1481
1482         * gtk/gtktreemodelsort.c : chain finalize() to parent class
1483
1484 2001-11-03  Tor Lillqvist  <tml@iki.fi>
1485
1486         * modules/input/Makefile.am: Use -no-undefined on Windows. Look
1487         for .dll or .so as appropriate as module suffix.
1488
1489         * gtk-zip.sh.in: Use correct import library names.
1490
1491         * gtk/gtk.def: Add a couple of missing entry points. (#63585)
1492
1493         * gtk/gtkimmodule.c (correct_libdir_prefix): New function, used on
1494         Windows to turn build-time paths from a gtk.immodules distributed
1495         as part of a binary package into runtime ones in the
1496         end-user-chosen installation directory.
1497         (gtk_im_module_init): Use it for module path and domain
1498         directory.
1499
1500 2001-11-02  Tor Lillqvist  <tml@iki.fi>
1501
1502         * gtk/gtkrc.c (gtk_rc_make_default_dir): Fix typo: extraneous
1503         comma.  Include gtkprivate.h for GTK_LIBDIR etc definitions on
1504         Windows.
1505
1506 2001-10-30  Tor Lillqvist  <tml@iki.fi>
1507
1508         * Makefile (install-data-hook): Use cp, not $(LN_S) on the .pc
1509         files. Configure on Win32 (running on Cygwin) thinks symlinks
1510         exist, but pkg-config is not necesarily a Cygwin program, and
1511         doesn't understand them.
1512
1513 Fri Nov  2 16:45:17 2001  Jonathan Blandford  <jrb@redhat.com>
1514
1515         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Clean up height code
1516         a bit.  I don't think it's completely correct yet, but it's
1517         getting there.
1518
1519 Fri Nov  2 16:14:15 2001  Owen Taylor  <otaylor@redhat.com>
1520
1521         * gtk/gtkviewport.c (gtk_viewport_size_request): Remove
1522         random + 5 for width and height. If people want padding,
1523         they should add padding. (Note the +5 isn't padding
1524         that will always appear - it just appears in the case
1525         where the widget is allocated it's requisition.)
1526         (#51018, Janet Davis)
1527
1528 Fri Nov  2 15:53:23 2001  Owen Taylor  <otaylor@redhat.com>
1529
1530         * gtk/gtkimcontext.h (struct _GtkIMContextClass): Pad
1531         the structure for future expansion.
1532
1533 Fri Nov  2 15:30:34 2001  Owen Taylor  <otaylor@redhat.com>
1534
1535         Patch from HideToshi Tajima (#51922)
1536         
1537         * gtk/gtkimmulticontext.c: Proxy set_use_preedit().
1538
1539         * gtk/modules/input/gtkimcontextxim.[ch]: Implement
1540         set_use_preedit().
1541         
1542         * gtk/modules/input/gtkimcontextxim.[ch]: If we have
1543         to destroy the input context because we change the
1544         client window or use_preedit, make sure we empty
1545         the preedit string.
1546
1547 Fri Nov  2 14:55:53 2001  Owen Taylor  <otaylor@redhat.com>
1548
1549         * gtk/{gtkcolorseldialog.c,gtkfilesel.c,gtkfontsel.c,
1550         gtkgamma.c,gtkmessagedialog.c}: Go to the GUP
1551         proposed ordering of buttons with [OK] in the lower
1552         right hand corner. Patch from Gregory Merchan,
1553         #56331.
1554
1555 Fri Nov  2 11:51:49 2001  Jonathan Blandford  <jrb@redhat.com>
1556
1557         * gtk/gtklabel.c (gtk_label_select_region_index): remove
1558         extraneous gtk_label_clear_layout (label)
1559
1560 2001-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1561
1562         * tests/makefile.msc, gtk/makefile.msc.in: Removed
1563         -DGTK_DISABLE_COMPAT_H.
1564
1565         * docs/Changes-2.0.txt:
1566         s/GDK_DISABLE_COMPAT_H/GDK_DISABLE_DEPRECATED/
1567
1568         * gtk/gtkcompat.h.in, gdk/gdkcompat.h: Removed from CVS.
1569
1570 Fri Nov  2 10:21:03 2001  Owen Taylor  <otaylor@redhat.com>
1571
1572         * examples/**/Makefile.am: Convert to use pkg-config
1573         rather than gtk-config. (#53375, Skip Montanaro)
1574
1575 2001-11-02  Matt Wilson  <msw@redhat.com>
1576
1577         * gtk/gtkdialog.c (find_child_by_response_id): remove totally
1578         broken unused, non-compiling, static function.
1579
1580 Fri Nov  2 08:17:06 2001  Owen Taylor  <otaylor@redhat.com>
1581
1582         * gtk/gtkdialog.c (gtk_dialog_set_response_sensitive): 
1583         Iterate through children of the action area, not of
1584         the vbox. (#58278, Sergey Kuzminov)
1585
1586 2001-11-01  Havoc Pennington  <hp@pobox.com>
1587
1588         * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
1589         order to remove a workaround in Nautilus that forced
1590         GTK_ENABLE_BROKEN
1591
1592         * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
1593
1594 Thu Nov  1 20:09:31 2001  Owen Taylor  <otaylor@redhat.com>
1595
1596         * gtk/gtkrange.c: Patch from George Lebl to 
1597         fix division by zero for full scroll bars. (#62114)
1598
1599 Thu Nov  1 19:56:40 2001  Owen Taylor  <otaylor@redhat.com>
1600
1601         * gtk/gtkmain.c (gtk_main_do_event): ref/unref
1602         around gtk_widget_event() if we are going to
1603         set a flag afterwards. (#63464)
1604
1605 Thu Nov  1 19:44:48 2001  Owen Taylor  <otaylor@redhat.com>
1606
1607         * gtk/gtkiconfactory.c gtk/stock-icons/Makefile.am: 
1608         Actually add the missing/broken image icon as the
1609         image for the "missing image" stock icon.
1610
1611 Thu Nov  1 19:18:34 2001  Owen Taylor  <otaylor@redhat.com>
1612
1613         * demos/gtk-demo/stock_browser.c (do_stock_browser): 
1614         Set a reasonable default height for the window.
1615
1616         * demos/gtk-demo/stock_browser.c (id_to_macro): Fix
1617         bug where subsequent '-' weren't converted to '_'.
1618         (#59550, Matthias Clasen)
1619
1620         * demos/gtk-demo/appwindow.c (menu_items): Don't right 
1621         justify the Help menu - just include a comment on
1622         how to do it. (#63539,  Marius Andreiana)
1623
1624         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): Don't 
1625         list GTK_ICON_SIZE_INVALID.
1626
1627         * demos/gtk-demo/stock_browser.c: Show the biggest available
1628         size, not a fixed size. (Often reported, including #63539, 
1629         Marius Andreiana)
1630
1631 Thu Nov  1 19:11:35 2001  Jonathan Blandford  <jrb@redhat.com>
1632
1633         * gtk/gtkrbtree.c (gtk_rbtree_reorder_fixup): Fix reorder_fixup,
1634         #59583
1635
1636         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): fix
1637         warning.
1638
1639 Thu Nov  1 16:54:00 2001  Owen Taylor  <otaylor@redhat.com>
1640
1641         * gtk/gtktypeutils.h: Make GtkFunction return boolean, not gint.
1642         (Daniel Elstner).
1643
1644 Thu Nov  1 16:20:56 2001  Owen Taylor  <otaylor@redhat.com>
1645
1646         * gtk/gtkimcontext.[ch]: Add:
1647           - A ::retrieve_surrounding signal that asks the widget for
1648             context around the insertion point.
1649           - A ::delete_surrounding signal that asks the widget to 
1650             delete context aroudn the insertion point.
1651           - gtk_im_context_set_context() for widgets to set context
1652             around the insertion point in response to ::retrieve_context.
1653           - gtk_im_context_get_context() for context to get context
1654             around the insertion point
1655
1656         * gtkmarshal.list: Add BOOL:INT,INT
1657
1658         * gtk/gtkimmulticontext.c: Proxy the get_surrounding() /
1659         set_surrounding() methods, and the ::retrieve_surrounding /
1660         ::delete_surrounding signals.
1661
1662         * gtk/gtkentry.c gtk/gtktreeview.c: Hook up to the
1663         GtkIMContext::retrieve_surrounding / ::delete_surrounding
1664         signals.
1665
1666 Thu Nov  1 15:45:04 2001  Jonathan Blandford  <jrb@redhat.com>
1667
1668         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
1669         it's amazing how well things work sometimes, even when they're
1670         completely wrong.
1671
1672         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
1673         where you could try to collapse a node w/o it having children.
1674
1675         (gtk_tree_view_class_init): remove Shift L<->R as they already
1676         existed for expand/collapse.
1677
1678 Thu Nov  1 12:21:31 2001  Jonathan Blandford  <jrb@redhat.com>
1679
1680         * gtk/gtktreeview.c (gtk_tree_view_focus_to_cursor): Fix crash
1681         found by Matt Wilson.
1682
1683 Thu Nov  1 00:44:50 2001  Jonathan Blandford  <jrb@redhat.com>
1684
1685         * gtk/gtktreeview.c (gtk_tree_view_class_init): Support Shift,
1686         Control, and Shift|Control L<->R, #63475
1687
1688 Wed Oct 31 18:53:51 2001  Jonathan Blandford  <jrb@redhat.com>
1689
1690         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): fix
1691         infinite loop noticed by yosh.
1692
1693 2001-11-01  Michael Meeks  <michael@ximian.com>
1694
1695         * gtk/gtksocket.c (gtk_socket_unrealize): unset the
1696         GTK_REALIZED flag so we don't re-enter when we are
1697         destroyed from the plug side.
1698
1699 Wed Oct 31 18:23:47 2001  Owen Taylor  <otaylor@redhat.com>
1700
1701         * gtk/gtkoptionmenu.c (gtk_option_menu_detacher): 
1702         Add a "menu" property and notify on it. (#62798,
1703         Padraig O'Briain)
1704
1705         * gtk/gtkselection.[ch] gtk/{gtkentry.c, gtkfilesel.c,
1706         gtkoldeditable.c, gtktextbuffer.c, gtktextview.c}: 
1707         Fix set_text to take a gchar, not a guchar, and to have 
1708         a len argument.
1709
1710 Wed Oct 31 15:31:13 2001  Manish Singh  <yosh@gimp.org>
1711
1712         * gtk/gtkstock.c: fix typo to make it compile
1713
1714 Wed Oct 31 17:27:20 2001  Jonathan Blandford  <jrb@redhat.com>
1715
1716         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): if
1717         the widget is insensitive, draw the text insensitively, #63306
1718
1719 2001-10-31  Matthias Clasen  <matthiasc@poet.de>
1720
1721         * gtk/gtkstock.c: Add stock items for most stock icons. (#61757)
1722
1723 Wed Oct 31 16:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
1724
1725         * gtk/gtktreednd.c (gtk_tree_set_row_drag_data): rename
1726         gtk_selection_data_set_tree_row, #60218
1727         (gtk_tree_get_row_drag_data): rename
1728         gtk_selection_data_get_tree_row, #60218
1729
1730         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): Actually
1731         get this right, after the third try, #63122.
1732
1733 2001-10-31  jacob berkman  <jacob@ximian.com>
1734
1735         * gdk/gdkselection.h (GDK_TARGET_STRING): 
1736         (GDK_SELECTION_TYPE_STRING): these should be 31, not 3.  Hooray
1737         for Xatoms (and not using the XA_* macros)!
1738
1739 Wed Oct 31 15:38:14 2001  Owen Taylor  <otaylor@redhat.com>
1740
1741         * gtk/gtkwindow.[ch] (gtk_window_get_focus): Add a
1742         gtk_window_get_focus() getter to determine the currently
1743         focused widget within the window. (#63145, request
1744         from Damian Ivereigh)
1745
1746 Wed Oct 31 14:45:08 2001  Jonathan Blandford  <jrb@redhat.com>
1747
1748         * gtk/gtkenums.h (enum): Add GTK_SELECTION_NONE enum, #61695
1749
1750         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Handle new
1751         GTK_SELECTION_NONE enum.
1752         (_gtk_tree_selection_internal_select_node): ditto
1753
1754         * gtk/gtkcellrenderer.h (struct _GtkCellRendererClass): add
1755         constness.
1756
1757         * gtk/gtkcellrenderertoggle.c: more yummy constness.
1758
1759         * gtk/gtkclist.c (gtk_clist_set_selection_mode): g_return_if_fail
1760         if mode == GTK_SELECTION_NONE
1761
1762 Wed Oct 31 14:05:17 2001  Jonathan Blandford  <jrb@redhat.com>
1763
1764         * gtk/gtktreeview.c (gtk_tree_view_class_init): Added a
1765         "cursor_changed" signal, #62850.
1766
1767 2001-10-31  Matt Wilson  <msw@redhat.com>
1768
1769         * gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
1770         allocating the treedatalist, zero it to make sure the values are
1771         cleared from any garbage that was in this chunk.
1772
1773 2001-10-31  Murray Cumming  <murrayc@usa.net>
1774
1775         * gtk/cellrenderertext.h: "edited" default signal handler
1776         gchar* args are now const.
1777         gtk/cellrenderertoggle.h: "toggled" default signal handler
1778         gchar* arg is now const.
1779         Also changed other signal handlers for "edited" and "toggled" to
1780         have the same signature.
1781
1782 Tue Oct 30 19:17:57 2001  Jonathan Blandford  <jrb@redhat.com>
1783
1784         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): massize
1785         rewrite.  Static models now totally work.  I'm not 100% sure about
1786         row_inserted and row_changed, but I'll get those later.
1787
1788 2001-10-30  Sven Neumann  <sven@gimp.org>
1789
1790         * configure.in: use GLIB_AC_DIVERT_BEFORE_HELP() so we get proper
1791         output for configure --help.
1792
1793 2001-10-30  Havoc Pennington  <hp@pobox.com>
1794
1795         * gtk/gtktextview.c (changed_handler): Update the IM spot location
1796         here, if text was invalidated in the visible area, because the
1797         scroll offset doesn't normally change in that case, and the mark
1798         isn't set, just implicitly moved over as text is added/removed
1799         
1800 Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
1801
1802         * gtk/gtkseparatormenuitem.c: Code cleanup.
1803         (gtk_separator_menu_item_class_init): Fix bugs in this code.
1804
1805 2001-10-29  jacob berkman  <jacob@ximian.com>
1806
1807         * gdk/Makefile.am (LDFLAGS): 
1808         * gtk/Makefile.am (LDFLAGS): automake doesn't support conditionalized
1809         LDFLAGS, so put win32 flags in here
1810
1811 Mon Oct 29 15:41:58 2001  Jonathan Blandford  <jrb@redhat.com>
1812
1813         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): Darn.
1814         I can't believe this took this long to fix.
1815
1816 Mon Oct 29 13:54:49 2001  Jonathan Blandford  <jrb@redhat.com>
1817
1818         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): fix
1819         reordered signal.
1820
1821 Mon Oct 29 12:27:51 2001  Owen Taylor  <otaylor@redhat.com>
1822
1823         * gtk/gtkfilesel.c (gtk_file_selection_rename_file): Grab
1824         the focus to the fileop entry for create dir / rename
1825         file. (#62838)
1826
1827 Mon Oct 29 12:21:49 2001  Owen Taylor  <otaylor@redhat.com>
1828
1829         * configure.in: Don't use AC_CHECK_FILE to check for a 
1830         file since it always spits warnings about cross compilation,
1831         use -f instead. It's not like we cross compile properly
1832         anyways.
1833
1834         * configure.in (gtktargetlib): Move call to AC_PROG_CC
1835         to suppress autoconf warning.
1836
1837         * acconfig.h: Add some missing #undefs from recent
1838         Win32 additions.
1839
1840 Mon Oct 29 11:31:40 2001  Owen Taylor  <otaylor@redhat.com>
1841
1842         * m4macros/gtk-2.0.m4: Don't try to use pkg-config
1843         when we didn't find it. (#62944, Eric Lemings)
1844
1845         * m4macros/gtk-2.0.m4: Fix problem with spaces around =
1846         sign in assignment. (#63209, Arkadiusz Miskiewicz)
1847
1848 2001-10-29  Anders Carlsson  <andersca@gnu.org>
1849
1850         * gtk/gtktreeview.c (gtk_tree_view_size_request): Calculate
1851         the buttons size request before using it. Fixes #61696.
1852
1853 2001-10-29  Tor Lillqvist  <tml@iki.fi>
1854
1855         * README.win32: Updates.
1856
1857         * gtk-zip.sh.in: New file, used to build distribution package for
1858         Windows.
1859
1860         * gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
1861         applicable with GDKVAR.
1862
1863         * gdk/win32/libwntab32x.la: New file, hand-written wrapper for the
1864         Wintab library.
1865
1866         * gdk/win32/gdkwin32.h
1867         * gdk/win32/gdkprivate-win32.h: Reorganise to match corresponding
1868         X11 headers better, and to enable gdkwin32.h to be installed and
1869         included from applications, but not the *-win32.h headers.
1870
1871         * gdk/win32/*.c: Corresponding small changes, simplifications of
1872         #includes.
1873         
1874         * gdk/win32/gdkregion-win32.c: Remove.
1875
1876         * gdk/win32/gdkevents-win32.c (print_event): Add GDK_SETTING.
1877
1878         * gdk/win32/gdkfont-win32.c
1879         * gdk/win32/gdkgeometry-win32.c: Remove unused variables.
1880
1881         * gdk/win32/gdkproperty-win32.c (gdk_atom_intern): Don't insert
1882         GDK_NONE values into hash table.
1883
1884         * gtk/gtk.def: Update.
1885
1886         * gtk/gtkfilesel.c: Include <winsock.h> (if available) for
1887         gethostname().
1888
1889         * gtk/gtkmain.c 
1890         * gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
1891         entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
1892         GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
1893         g_win32_get_package_installation_subdirectory() with the actual
1894         DLL name saved above. Redefine above directory name macros to call
1895         these functions. Remove some ifdefs.
1896
1897         * gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
1898         variable for export on Win32) also to the _vars file.
1899
1900         Changes for autoconfiscated build on Win32, and addition of Win32
1901         backend to the related files:
1902         
1903         * configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
1904         when forming DLL name in some files. Set MS_LIB_AVAILABLE is
1905         lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
1906         PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
1907         win32 target, using pangowin32. Don't use the
1908         -export-symbols-regex option on Win32, we use .def files to list
1909         exported symbols. Check <winsock.h> (for gethostname() in
1910         gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
1911         prevent premature m4 expansion.
1912
1913         * acconfig.h: Add HAVE_WINTAB.
1914
1915         * gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
1916         macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
1917         MS_LIB_AVAILABLE, build MS import library. Install the import
1918         libraries. If HAVE_WINTAB, link with the Wintab library.
1919
1920         * gdk/win32/Makefile.am: Actually enable building the win32
1921         objects here, not just list all files in EXTRA_DIST. Link in the
1922         compiled resource file from rc/gdk-win32res.lo. If HAVE_WINTAB,
1923         copy the Wintab library into the .libs directory. 
1924
1925         * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Don't assume the
1926         name of the GDK DLL when fetching the icon. Use the HMODULE saved
1927         in gdk_dll_hinstance by DllMain.
1928
1929         * gdk/win32/rc/Makefile.am: Build gdk-win32res.lo using the
1930         build/win32/lt-compile-resource script.
1931
1932         * gdk/win32/rc/gdk.rc.in
1933         * gtk/gtk-win32.rc.in: Use the DLL name that libtool would use.
1934
1935         * gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
1936         macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
1937         file. Install import libraries.
1938
1939 2001-10-29  Anders Carlsson  <andersca@gnu.org>
1940
1941         * gtk/gtkiconfactory.c (get_default_icons): Fix build.
1942
1943 2001-10-28  Hans Breuer  <hans@breuer.org>
1944
1945         * gdk/gdk.c gdk/gdkevents.c
1946           gdk/win32/gdkcolor-win32.c gdk/win32/gdkdnd-win32.c
1947           gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
1948           gdk/win32/gdkfont-win32.c gdk/win32/gdkgc-win32.c
1949           gdk/win32/gdkim-win32.c gdk/win32/gdkmain-win32.c
1950           gdk/win32/gdkprivate-win32.h gdk/win32/gdkproperty-win32.c
1951           gdk/win32/gdkselection-win32.c gdk/win32/gdkwin32.h
1952           gdk/win32/gdkwindow-win32.c gdk/win32/gdkwindow-win32.h :
1953         static correct-ness, underscore prefixing of library internal 
1954         functions
1955         (applied the undisputed and the win32 part. Of the latter 
1956          I'm probably the one who will change it back again, if Owen
1957          decides that the Gdk*Impl types should not be private to Gdk)
1958
1959         * gdk/gdk.def : added the remaining exported functions
1960
1961 2001-10-28  Matthias Clasen  <matthiasc@poet.de>
1962
1963         * gtk/gtkcellrenderertoggle.c, gtk/gtkimcontextsimple.c,
1964         gtk/gtkimmulticontext.c, gtk/gtkimagemenuitem.c,
1965         gtk/gtkiconfactory.c, gtk/gtkwindow.c: Documentation updates.
1966
1967 2001-10-28  jacob berkman  <jacob@ximian.com>
1968
1969         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): do not call
1970         gtk_settings_get_default() here as that requires an X connection
1971         (which breaks doc building with no X connection) and is not
1972         multihead safe
1973         (gtk_color_selection_init): delay palette loading until realize
1974         time
1975         (gtk_color_selection_realize): load the palette, and initialize
1976         the global palette if it hasn't been already
1977
1978         * gtk/gtkpreview.c (gtk_preview_class_init): don't initialize the
1979         visual/cmap fields of klass->info since they are gone
1980         (gtk_preview_get_visual): just return gdk_rgb_get_visual ()
1981         (gtk_preview_get_cmap): just return gdk_rgb_get_colormap ()
1982         (gtk_preview_realize): don't set VISUAL and COLORMAP attributes
1983
1984         * gtk/gtkpreview.h (struct _GtkPreviewInfo): remove visual and
1985         cmap fields
1986         (gtk_preview_get_visual):
1987         (gtk_preview_get_cmap): mark as deprecated
1988
1989         * docs/Changes-2.0.txt: add a little note about the GtkPreviewInfo
1990         changes
1991
1992 Sun Oct 28 09:15:39 2001  Owen Taylor  <otaylor@redhat.com>
1993
1994         * gtk/gtkimcontext.h (struct _GtkIMContext): Fixed
1995         structure to have GObject not GtkObject as
1996         parent_instance. (Jeff Franks.)
1997
1998 2001-10-27  Matthias Clasen  <matthiasc@poet.de>
1999
2000         * gdk/x11/gdkinput.c: Typo fix.
2001
2002 2001-10-26  Havoc Pennington  <hp@pobox.com>
2003
2004         * gtk/gtktextview.c (gtk_text_view_mark_set_handler): Call
2005         update_im_spot_location here explicitly
2006         (gtk_text_view_reset_im_context): don't update the spot location
2007         here
2008
2009 2001-10-27  Anders Carlsson  <andersca@gnu.org>
2010
2011         * gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
2012         This fixes #62942.
2013
2014         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range): 
2015         Clarify that we're returning a spin button in the _new function.
2016         This fixes #54097.
2017         
2018 Fri Oct 26 20:55:57 2001  Owen Taylor  <otaylor@redhat.com>
2019
2020         * gtk/gtkbutton.c: Revert changes to GTK_RUN_LAST. 
2021         Unfortunately, people apparently erroneously connect
2022         to ::clicked for GtkToggleButton and expect
2023         they know what happened in the default signal handler
2024         instead of appropriately connecting to notification
2025         signal ::toggled. When the revolution comes, such
2026         people will be first against the wall.
2027
2028         We'll just have to go back to the old less-reliable
2029         set-it-back hacks for handling model-view check
2030         buttons and radio buttons. :-(. 
2031
2032 2001-10-27  Hans Breuer  <hans@breuer.org>
2033
2034         * gtk/gtkbbox.c gtk/gtkctree.c gtk/gtkhbbox.c
2035           gtk/gtkimmulticontext.c gtk/gtklabel.c gtk/gtkliststore.c
2036           gtk/gtkmenu.c gtk/gtkpaned.c gtk/gtkrc.c gtk/gtkscale.c
2037           gtk/gtkstyle.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
2038           gtk/gtktexttag.c gtk/gtktexttagtable.c gtk/gtktextview.c
2039           gtk/gtktreestore.c gtk/gtkvbbox.c : 
2040         to simplify parsing for exported functions:
2041         - made implementation signature static, when the local 
2042           prototype already was
2043         - put the functions return value on it's own line
2044         - added as space between the function name and the 
2045           opening bracket
2046
2047         * gtk/gtk.def : added the remaining exported functions
2048
2049 2001-10-27  Anders Carlsson  <andersca@gnu.org>
2050
2051         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width): 
2052         Add note about width having to be greater than 0. This fixes
2053         #55574. 
2054
2055         * gtk/gtktextiter.c (gtk_text_iter_backward_sentence_start): 
2056         Fix docs to say previous instead of next.
2057         (gtk_text_iter_backward_word_start): Likewise.
2058         This fixes bug #62980.
2059
2060         * gtk/gtkcontainer.c (gtk_container_set_border_width): Mention
2061         that the valid width is in range 0-65535 pixels. Fixes bug 
2062         #56754.
2063
2064         * gtk/gtksizegroup.c (gtk_size_group_set_mode): Remove
2065         a dot in the documentation. Fixes bug #62632.
2066
2067         * gdk/x11/gdkmain-x11.c: Replace int and guint with
2068         long and gulong in some places to make the code 64-bit
2069         clean.
2070         (_gdk_windowing_init_check): Replace gint with gulong.
2071         This patch was made by George Lebl and fixes bug #62113.
2072
2073         * tests/testgtk.c (create_range_controls): Don't set a 
2074         fixed height on the hscale widget. This fixes "bug" 
2075         #55840.
2076         (create_window_states): Set up destroy signals so that
2077         all windows will be destroyed when one is. This fixes 
2078         bug #58133.
2079
2080 2001-10-26  Anders Carlsson  <andersca@gnu.org>
2081
2082         * gtk/gtktreeview.c: 
2083         (gtk_tree_view_class_init): Create new "indent_expander"
2084         style property.
2085
2086         (gtk_tree_view_get_arrow_xrange): Add a tree argument
2087         to the function since the xrange can change depending
2088         on where in the tree we are. 
2089         
2090         (coords_are_over_arrow): Update function call to
2091         gtk_tree_view_get_arrow_xrange.
2092         (gtk_tree_view_draw_arrow): Likewise.
2093         
2094         (gtk_tree_view_real_expand_collapse_cursor_row):
2095         Call real_{expand|collapse}_row, so that we'll have an
2096         animation.
2097
2098 Fri Oct 26 20:13:36 2001  Kristian Rietveld  <kristian@planet.nl>
2099
2100         * tests/Makefile.am: fixed a small typo
2101
2102 Fri Oct 26 18:27:11 2001  Kristian Rietveld  <kristian@planet.nl>
2103
2104         * demos/gtk-demo/list_store.c (create_model): Anders
2105         Carlsson suggested to use G_N_ELEMENTS here
2106
2107 2001-10-26  Sven Neumann  <sven@gimp.org>
2108
2109         * gtk/gtkbutton.[ch]
2110         * gtk/gtkdnd.c: fixed inline comments
2111         
2112         * gtk/gtkgamma.c: gtk_entry_get_text() returns a const gchar.
2113
2114 2001-10-26  Hans Breuer  <hans@breuer.org>
2115
2116         * gdk-pixbuf/gdk_pixbuf.def : 
2117         * gdk/gdk.def : 
2118         * gtk/gtk.def : updated externals
2119
2120         * gdk/win32/gdkpixmap-win32.c : removed duplicate of
2121         gdk_window_lookup implementation. It already was in
2122         gdk/win32/gdkwindow-win32.c
2123
2124         * gdk/win32/gdkproperty-win32.c : made it compile again
2125         after GdkAtom API change
2126
2127         * gtk/gtk/makefile.msc.in : updated
2128
2129 Wed Oct 24 11:36:33 2001  Owen Taylor  <otaylor@redhat.com>
2130
2131         * configure.in (GTK_MICRO_VERSION): Version 1.3.10,
2132         require GLib 1.3.10.
2133
2134         * NEWS: updates.
2135
2136 Thu Oct 25 16:27:29 2001  Jonathan Blandford  <jrb@redhat.com>
2137
2138         * gtk/gtkrbtree.c (_gtk_rbnode_rotate_left): Add support for
2139         invalid nodes.
2140          (_gtk_rbnode_rotate_right): Ditto.
2141          (_gtk_rbtree_node_mark_invalid): New function.
2142          (_gtk_rbtree_node_mark_valid): New function.
2143
2144         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_class_init): We're a
2145         GObject, not a GtkObject.
2146         (gtk_tree_model_sort_row_has_child_toggled): Rewrote to be more
2147         correct.
2148         (gtk_tree_model_sort_row_deleted): ditto.
2149         (gtk_tree_model_sort_{un,}ref_node): Fix.
2150
2151         * gtk/gtktreeview.c: Protean incremental reflow support (commented
2152         out)
2153
2154         * gtk/gtktreeview.h (GtkTreeViewSearchEqualFunc): change char *key
2155         to const char *key.
2156
2157         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path_helper):
2158         Important 1 line fix to fix a lot of refcounting woes.
2159
2160 2001-10-25  Matt Wilson  <msw@redhat.com>
2161
2162         * gtk/gtktextview.c (gtk_text_view_destroy): call
2163         gtk_text_view_destroy_layout after gtk_text_view_set_buffer (which
2164         now invalidates) so that we remove our idle functions.
2165         (gtk_text_view_destroy_layout): remove the first_validate_idle as
2166         well.
2167
2168         * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
2169         the 'indent' property is G_MININT to G_MAXINT.  Don't use
2170         -G_MAXINT for the minimum of the 'rise' property, use G_MININT
2171         instead.
2172
2173 2001-10-24  Anders Carlsson  <andersca@gnu.org>
2174
2175         * gtk/gtktreeview.c: 
2176         (gtk_tree_view_real_expand_row): add an animate argument
2177         (gtk_tree_view_real_collapse_row): likewise
2178         
2179         (gtk_tree_view_button_press), (gtk_tree_view_button_release), 
2180         (gtk_tree_view_collapse_all), (gtk_tree_view_expand_row),
2181         (gtk_tree_view_collapse_row): update functions that call
2182         real_{expand|collapse}_row to set the animate argument 
2183         accordingly.
2184         
2185 2001-10-24  Alex Larsson  <alexl@redhat.com>
2186
2187         * gdk/linux-fb/gdkfont-fb.c:
2188         Update to new Pango APIs
2189
2190         * gdk/linux-fb/gdkproperty-fb.c:
2191         Update to new GdkAtom APIs
2192
2193         * gdk/linux-fb/gdkwindow-fb.c:
2194         Remove warnings
2195
2196 Mon Oct 22 20:07:21 2001  Jonathan Blandford  <jrb@redhat.com>
2197
2198         * gtk/gtktreestore.c (gtk_tree_store_prepend): Fix docs, #62808
2199
2200 Wed Oct 24 22:54:07 2001  Kristian Rietveld  <kristian@planet.nl>
2201
2202         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): treat
2203         s_path as a child path
2204
2205 Wed Oct 24 20:29:47 2001  Kristian Rietveld  <kristian@planet.nl>
2206
2207         * gtk/gtktreemodelsort.c: more changes in an attempt to get
2208         it right. It's not yet ready for general consumption.
2209
2210         * tests/treestoretest.c: add a button and entry for the new
2211         iter_change function
2212         (iter_change): new function, to test
2213         the row_changed signal implementation of the GtkTreeModelSort
2214
2215         * tests/testtreesort.c: cleanups, changes to test more features
2216         of the GtkTreeModelSort at once
2217
2218 2001-10-24  Havoc Pennington  <hp@redhat.com>
2219
2220         * gtk/gtktextbuffer.c (clipboard_clipboard_buffer_received):
2221         remove hack to strip off the bogus newline, since we killed the
2222         bogus newline; fixes #61779
2223
2224 2001-10-24  Havoc Pennington  <hp@redhat.com>
2225
2226         * gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
2227         create layout if we didn't have one
2228         (gtk_text_view_set_buffer): invalidate so we get the idle handlers
2229         as appropriate, avoids blanking the screen 
2230         (gtk_text_view_invalidate): new function to do invalidation,
2231         containing old guts of invalidated_handler
2232
2233 Wed Oct 24 10:29:47 2001  Owen Taylor  <otaylor@redhat.com>
2234
2235         * gtk/gtkalignment.c (gtk_alignment_class_init): Improve
2236         dreadful tooltips.
2237
2238 Tue Oct 23 17:31:42 2001  Owen Taylor  <otaylor@redhat.com>
2239
2240         * gdk/x11/gdkwindow-x11.c gdk/win32/gdkwindow-win32.c: Always 
2241         set window->parent (except or the root window itself); if 
2242         the window's parent is not a GdkWindow, or is a window of 
2243         type GDK_WINDOW_FOREIGN, set window->parent to the root parent.
2244
2245         * gdk/gdkwindow.c (gdk_window_get_toplevels): Don't include
2246         windows of type GDK_WINDOW_FOREIGN.
2247
2248 2001-10-24  Havoc Pennington  <hp@pobox.com>
2249
2250         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): if we move to
2251         the front of a segment, use the "slow" technique for moving
2252         backward, so we don't mess up the any_segment field in the iter. 
2253         Fixes #57707
2254
2255         * tests/testtextbuffer.c: add code to detect #57707, to avoid
2256         regression
2257
2258 2001-10-23  Havoc Pennington  <hp@redhat.com>
2259
2260         * gtk/gtktextview.c (popup_targets_received): only sensitize Cut
2261         if selection contains some editable text, #60975
2262         (gtk_text_view_scroll_to_iter): remove warning about scrolling
2263         prior to map; it should actually be OK to do so in many cases, 
2264         it would be nice to warn about scrolling when many lines have
2265         height 0, but I don't know what to do about that. Perhaps 
2266         move part of flush_scroll into this function? comment added 
2267         to consider this.
2268
2269 2001-10-23  Havoc Pennington  <hp@redhat.com>
2270
2271         * gtk/gtktextview.c (changed_handler): Correctly keep the same
2272         text on the top of the screen, considering that the changed region
2273         may have overlapped the first paragraph. Should fix msw's "text
2274         widget scrolled to wrong place on map" bug, and probably some
2275         other scrolling cases as well.
2276         (gtk_text_view_set_scroll_adjustments): start adjustments at 0.0, 
2277         instead of some random value
2278
2279         * gtk/gtktextview.c (gtk_text_view_class_init): actually override
2280         grab_focus, so #59708 is really fixed
2281
2282 2001-10-24  Anders Carlsson  <andersca@gnu.org>
2283
2284         * gtk/gtkentry.c: (append_action_signal): Use an image menu item here
2285         (popup_targets_received): Call append_action_signal with stock items
2286         
2287         * gtk/gtklabel.c: (append_action_signal): Use an image menu item here
2288         (gtk_label_do_popup): Call append_action_signal with stock items
2289         
2290         * gtk/gtktextview.c: (append_action_signal): Use an image menu item here
2291         (popup_targets_received): Call append_action_signal with stock items
2292
2293 2001-10-23  Havoc Pennington  <hp@redhat.com>
2294
2295         * gtk/gtktextview.c (changed_handler): queue a resize here; will
2296         temporarily slow down the widget a lot, until we figure out how to
2297         optimize to avoid full redraw everytime we queue a resize.
2298
2299 2001-10-23  Havoc Pennington  <hp@redhat.com>
2300
2301         * gtk/gtktextiter.c (test_log_attrs): handle case where offset ==
2302         0 and char_len == 0, bug #61729
2303
2304 2001-10-23  Havoc Pennington  <hp@redhat.com>
2305
2306         * gtk/gtktextiter.c (gtk_text_iter_forward_cursor_positions): fix
2307         return value, #61714 (Vitaly Tishkov)
2308         (gtk_text_iter_backward_sentence_starts): ditto
2309         (gtk_text_iter_backward_word_starts): ditto
2310         (gtk_text_iter_forward_word_ends): ditto
2311         (gtk_text_iter_forward_sentence_ends): ditto
2312         (gtk_text_iter_backward_cursor_positions): ditto
2313
2314 2001-10-23  Havoc Pennington  <hp@redhat.com>
2315
2316         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_pixel): Apply
2317         fix from Dov Grobgeld, #61858
2318
2319 2001-10-23  Havoc Pennington  <hp@redhat.com>
2320
2321         * gtk/gtktextview.c (gtk_text_view_update_im_spot_location): 
2322         Update IM spot location at appropriate times, #50626
2323         (Hidetoshi Tajima)
2324
2325 2001-10-23  Havoc Pennington  <hp@redhat.com>
2326
2327         * gtk/gtktextview.c (gtk_text_view_grab_focus): scroll to cursor
2328         on grab focus, unless it's caused by button click, #59708
2329
2330 Tue Oct 23 11:53:00 2001  Owen Taylor  <otaylor@redhat.com>
2331
2332         * gtk/Makefile.am (INCLUDES): Remove G_DISABLE_CONST_RETURNS.
2333
2334         * gtk/gtkfontsel.[ch]: Make gtk_font_selection_get_font()
2335         G_CONST_RETURN. (Murray Cumming)        
2336
2337         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_preview_text):
2338         Make G_CONST_RETURN.
2339
2340         * gtk/gtkfilesel.c (open_user_dir): Fix bug with freeing
2341         results of g_get_home_dir().
2342
2343         * gtk/gtkfilesel.c: Make filesel->fileop_file a duplicated 
2344         copy. Storing the return from gtk_entry_get_text() is evil.
2345
2346         * gtk/gtkcombo.c gtk/gtkcellrenderertext.c gtk/gtkbindings.c 
2347         gtk/gtkfilesel.c gtk/gtkfontsel.c gtk/gtkimmodule.c 
2348         gtk/gtkobject.c gtk/gtkoldeditable.c gtk/gtktreedatalist.c
2349         gtk/gtksignal.c: Add const.
2350
2351         * gdk/x11/gdkkeys-x11.c (get_direction): Add missing const.
2352
2353         * gtk/gtktreeview.c: Namespace object data keys to be safe, even 
2354         if we are setting them on private widgets.
2355
2356         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
2357         Duplicate entry->text before setting it as object data.
2358
2359 2001-10-22  Havoc Pennington  <hp@redhat.com>
2360
2361         * gtk/gtktextbuffer.c (gtk_text_buffer_place_cursor): don't back
2362         up a char from the end iterator, fixes #61859 ("can't put cursor
2363         at the end of the buffer")
2364
2365         * gtk/gtktextiter.c (gtk_text_iter_forward_to_line_end): fix this
2366         to work with delimiters other than newline.
2367
2368         * tests/testtextbuffer.c: add some tests for get_chars_in_line,
2369         get_bytes_in_line
2370
2371         * gtk/gtktextiter.c (gtk_text_iter_get_chars_in_line): fix for the
2372         last line, since the newline is no longer counted.
2373         (gtk_text_iter_get_bytes_in_line): ditto
2374
2375 2001-10-22  Havoc Pennington  <hp@redhat.com>
2376
2377         * gtk/gtktextbtree.c (_gtk_text_btree_insert): add assertion that 
2378         #58290 would trigger if it reappeared, I think
2379
2380 2001-10-22  Havoc Pennington  <hp@redhat.com>
2381
2382         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
2383         add temporary code to dump btree contents on assertion failure
2384         described in #62656
2385         
2386         * gtk/gtktextbtree.c (ensure_end_iter_segment): add some
2387         assertions that we're getting the right end iter segment
2388
2389         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
2390         verify that we aren't on the end iterator after moving 
2391         forward one segment - fixes return value in an obscure case. 
2392         Also, some trivial code cleanup/rearranging.
2393         
2394 2001-10-22  Havoc Pennington  <hp@redhat.com>
2395
2396         * gtk/gtktextlayout.h: add a #error unless you define
2397         GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API, so people don't use this accidentally
2398
2399         * gtk/gtktext*.c: #define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API as appropriate.
2400         
2401 2001-10-22  Havoc Pennington  <hp@redhat.com>
2402
2403         * gtk/gtktextview.c (gtk_text_view_get_border_window_size): fix 
2404         #62365
2405
2406 2001-10-22  Havoc Pennington  <hp@redhat.com>
2407
2408         * gtk/gtktextview.c (gtk_text_view_get_window_type): fix 
2409         #62436
2410
2411 2001-10-22  Havoc Pennington  <hp@redhat.com>
2412
2413         * gtk/gtktextview.c (gtk_text_view_set_border_window_size): Fix 
2414         #62366
2415
2416 Mon Oct 22 11:47:47 2001  Owen Taylor  <otaylor@redhat.com>
2417
2418         * gtk/gtklabel.c: Add cursor-position, selection-bound 
2419         properties. (#62148, reported by Padraig O'Briain)
2420
2421         * gtk/gtkentry.c (gtk_entry_class_init): Rename text_position
2422         to cursor_position. (1.3.x addition, text_position is an awful
2423         name.) Make cursor_position read-only to avoid sticky questions
2424         of interaction with selection_bound. (#62636, reported by
2425         Padraig O'Briain)
2426
2427 Mon Oct 22 16:25:12 2001  Owen Taylor  <otaylor@redhat.com>
2428
2429         Fixing popup menus to have "Paste" sensitized correctly. Original
2430         patches from Damian Ivereigh, much mangled.
2431
2432         * gtk/gtkselection.c: Add functions gtk_selection_data_get_targets(),
2433         gtk_selection_data_targets_include_text(). (#60854)
2434
2435         * gtk/gtkclipboard.c: Add a simple do-it-all non-async "check if
2436         the clipboard has text" function gtk_clipboard_wait_is_text_available.
2437         (#60854)
2438
2439         * gtk/gtkentry.c: Only enable the paste item if the clipboard
2440         contains text. (#60973)
2441
2442         * gtk/gtktextview.c: Only enable the paste item if the clipboard
2443         contains text. (#60975)
2444
2445 2001-10-22  Havoc Pennington  <hp@redhat.com>
2446
2447         * gtk/gtktextview.c (gtk_text_view_class_init): rip out
2448         "height_lines" and "width_columns" properties, it doesn't make
2449         sense to set the size request on a text view really. #62103
2450
2451 Mon Oct 22 15:17:05 2001  Jonathan Blandford  <jrb@redhat.com>
2452
2453         * gtk/gtktreestore.c (gtk_tree_store_iter_depth): Realized
2454         g_node_depth is broken, and that it's not worth being consistent
2455         with it.
2456
2457 2001-10-22  Havoc Pennington  <hp@redhat.com>
2458
2459         * gtk/gtktextiter.c (gtk_text_iter_set_line): Clarify behavior in
2460         docs, #61777
2461         (gtk_text_iter_forward_search) (gtk_text_iter_backward_search):
2462         change the two boolean args to a flags field, so we can extend 
2463         to add case insensitive, regexp searches later. #61852
2464
2465 Mon Oct 22 15:07:17 2001  Jonathan Blandford  <jrb@redhat.com>
2466
2467         * gtk/gtktreestore.c (gtk_tree_store_iter_depth): update docs to
2468         reflect reality, #62810
2469
2470 Mon Oct 22 14:08:26 2001  Jonathan Blandford  <jrb@redhat.com>
2471
2472         * demos/gtk-demo/appwindow.c: Remove handle_box from App demo.
2473
2474         * gtk/gtktreeview.c (size_allocate): Move to a different drawing
2475         system.  Instead of having a window the size of the tree, we have
2476         a window the size of widget->allocation, and simply draw with the
2477         offset.
2478         (coords_are_over_arrow): ditto.  Move to window coordinates.
2479         (do_prelight): ditto
2480         (do_unprelight): ditto
2481
2482         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
2483         Minor fix from Kristian Rietveld to fix unsorted case.
2484
2485 2001-10-22  jacob berkman  <jacob@ximian.com>
2486
2487         * gtk/gtkclist.c (cell_size_request): don't cast a PIXTEXT cell to
2488         a PIXMAP cell (fixes crash when using PIXTEXT cells)
2489
2490 Sat Oct 20 18:58:25 2001  Owen Taylor  <otaylor@redhat.com>
2491
2492         * gtk/gtkentry.h: Deprecate gtk_entry_set_editable.
2493         (#58768, Vitaly Tishkov)
2494         
2495         * gtk/gtkobject.h: Deprecate with abandon. 
2496         (#61942, Vitaly Tishkov, Matthias Clasen)
2497
2498         * gtk/gtksignal.h: Deprecate everything.
2499
2500         * gtk/gtkmain.h (GTK_PRIORITY_INTERNAL): Deprecate
2501         all GTK_PRIORITY_* defines other than GKT_PRIORITY_RESIZE>
2502         (#61942, Matthias Clasen)
2503
2504         * gtk/gtkstyle.h: Deprecate gtk_draw_*. (#61140,
2505         Havoc Pennington)
2506
2507         * gtk/gtkitemfactory.h: Deprecate compat functions
2508         for GtkMenuFactory code. (#62071)
2509
2510         * gdk/gdkdrawable.h: Deprecate gdk_draw_string,
2511         gdk_draw_text,gdk_draw_text_wc. (#62071)
2512
2513 Mon Oct 22 10:12:08 2001  Owen Taylor  <otaylor@redhat.com>
2514
2515         * gdk/gdk.c docs/Changes-2.0.txt (gdk_threads_init): Don't call
2516         g_thread_init(), we don't want to link to -lgthread if we don't
2517         have to.
2518
2519 Mon Oct 22 08:51:02 2001  Owen Taylor  <otaylor@redhat.com>
2520
2521         * gdk/gdk.[ch] (gdk_threads_init) docs/Changes-2.0.txt: 
2522         Add a function, gdk_threads_init() that must be explicitely 
2523         called to enable the GDK thread mutex.
2524
2525 2001-10-22  Jakub Steiner <jimmac@ximian.com>
2526
2527         * gtk/stock-icons/stock_stop.png: no body parts
2528         
2529 Sun Oct 21 23:27:00 2001  Owen Taylor  <otaylor@redhat.com>
2530
2531         * gtk/gtkwidget.c (gtk_widget_translate_coordinates): Fix
2532         problem with g_return_if_fail return value.
2533
2534         * gdk/x11/gdkproperty-x11.c docs/Changes-2.0.txt: Move over the 
2535         virtual atom code from the gdk-multihead branch, removing the per-display
2536         part. Virtualizing atoms needs to be done now to prevent compat
2537         breakage in direct Xlib accessing code in the future. (#62208)
2538  
2539         * gdk/x11/gdkx.h: gdk/gdk/x11/gdkproperty-x11.c: Export
2540         gdk_x11_xatom_to_atom, gdk_x11_atom_to_xatom().
2541  
2542         * gdk/gdktypes.h docs/Changes-2.0.txt: Make GdkAtom
2543         an opaque pointer type so the compiler catches attempts
2544         to mingle it with X atoms.
2545
2546         * gdk/x11/{gdkdnd-x11.c,gdkevents-x11.c,gdkglobals-x11.c,
2547           gdkkeys-x11.c, gdkmain-x11.c, gdkprivate-x11.c, 
2548           gdkproperty-x11.c, gdkselection-x11.c, gdkwindow-x11.c}
2549           gtk/{gtkclist.c,gtkctree.c,gtkdnd.c,gtkplug.c,gtksocket.c}
2550           tests/testdnd.c,tests/testselection.c: 
2551         Fix up for above atom changes.
2552
2553         * gdk/gdkselection.h (GDK_SELECTION_CLIPBOARD): Add, since we
2554         now have the ability to add custom predefines.
2555
2556         * gtk/{gtkentry.c,gtklabel.c,gtkoldeditable.c,gtktextview.c}:
2557         Use GDK_SELECTION_CLIPBOARD instead of GDK_NONE in calls
2558         to gtk_clipboard_get().
2559
2560         * gdk/win32/gdkproperty-win32.c: Add CLIPBOARD, fix up
2561         for GdkAtom => pointer change.
2562
2563         * gdk/linux-fb/gdkproperty-fb.c: Fix handling of predefined
2564         atoms, fix for GdkAtom => pointer change.
2565
2566 Mon Oct 22 00:26:46 2001  Kristian Rietveld  <kristian@planet.nl>
2567
2568         * gtk/gtkspinbutton.c: remove ARROW_SIZE constant, use
2569         new function spin_button_get_arrow_size() instead.
2570
2571         * gtk/gtkstyle.c (gtk_default_draw_arrow): actual size of
2572         arrow was hardcoded, it's now variable.
2573
2574         Fixes bug #50200
2575
2576 Sat Oct 20 18:16:04 2001  Manish Singh  <yosh@gimp.org>
2577
2578         * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
2579         PROP_EXPANDER_COLUMN can be NULL, so don't do a object cast check
2580         for those
2581
2582 Sat Oct 20 19:38:16 2001  Owen Taylor  <otaylor@redhat.com>
2583
2584         * demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
2585         in favor of g_signal_*, gtk_object_* in favor of 
2586         g_object_*.
2587
2588 Fri Oct 19 18:35:22 2001  Manish Singh  <yosh@gimp.org>
2589
2590         * gtk/{gtkentry.c,gtktextview.c}: since GtkIMContext derives directly
2591         from GObject now, we have to use the g_object_* functions, not
2592         gtk_object_*.
2593
2594 Fri Oct 19 22:46:54 2001  Kristian Rietveld  <kristian@planet.nl>
2595
2596         * gtk/gtktreemodelsort.[ch]: we probably have rows_reordered
2597         nailed down now (this code is not yet ready for general consumption)
2598
2599 Fri Oct 19 13:44:51 2001  Manish Singh  <yosh@gimp.org>
2600
2601         * gtk/gtktreeview.c (gtk_treeview_scroll_to_cell): correct docs
2602         for use_align
2603
2604 Fri Oct 19 15:34:06 2001  Owen Taylor  <otaylor@redhat.com>
2605
2606         * gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
2607
2608 Fri Oct 19 15:08:30 2001  Owen Taylor  <otaylor@redhat.com>
2609
2610         * gtk/{gtkimcontext.c,gtkimcontextsimple.c,gtkimmulticontext.c}
2611         modules/input/{gtkimcontextxim.c,imcyrillic-translit.c,iminuktitut.c,
2612         imipa.c,imthai-broken.c,imviqr.c}: Make GtkIMContext derive from
2613         GObject, not GtkObject. (#62621)
2614
2615 Fri Oct 19 12:49:12 2001  Owen Taylor  <otaylor@redhat.com>
2616
2617         * tests/testsocket.c: Remove now useless include of unistd.h,
2618         fix wrong argument gtk_socket_steal. (Hans Breuer, #58541)
2619         
2620 Fri Oct 19 12:24:32 2001  Owen Taylor  <otaylor@redhat.com>
2621
2622         * gdk/linux-fb/gdkfont-fb.c: Fix up for change to 
2623         Pango font API. #61933. (Untested, even for compilation.)
2624
2625 Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
2626
2627         * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
2628         export gtk_disable_setlocale(). (Caught by Sven Neumann)
2629
2630 2001-10-18  Havoc Pennington  <hp@redhat.com>
2631
2632         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
2633
2634 2001-10-18  Havoc Pennington  <hp@redhat.com>
2635
2636         * gtk/gtkbutton.c (gtk_button_class_init): Change button signals
2637         to GTK_RUN_LAST, #50239
2638
2639 2001-10-18  HideToshi Tajima  <hidetoshi.tajima@sun.com>
2640
2641         * gtk/gtkimmodule.c (match_locale):
2642         Support "*" for all locales with least priority
2643         when to select default im module, #58201
2644
2645 2001-10-18  Matthias Clasen  <matthiasc@poet.de>
2646
2647         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): 
2648         Fix docs. (#61976)
2649  
2650         * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
2651
2652         * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
2653
2654         * gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
2655         gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
2656         gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2657         gdk/win32/gdkpixmap-win32.c, gdk/linux-fb/gdkfb.h,
2658         gdk/linux-fb/gdkwindow-fb.c, gdk/linux-fb/gdkpixmap-fb.c:
2659         Add gdk_window_lookup, gdk_window_foreign_new, gdk_pixmap_lookup
2660         and gkd_pixmap_foreign_new to the gdk frontend api. (#62063)
2661
2662         * gtk/gtkselection.c: Remove gdk backend dependencies. (#62063)
2663
2664         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): 
2665         Don't restrict the width of the spinbutton entry field 
2666         to 10 digits. (#58681)
2667
2668 Thu Oct 18 14:58:14 2001  Jonathan Blandford  <jrb@redhat.com>
2669
2670         * tests/testtreeflow.c: new test program for the tree.
2671
2672 Thu Oct 18 14:22:10 2001  Jonathan Blandford  <jrb@redhat.com>
2673
2674         * gtk/gtktreestore.c (gtk_tree_store_remove): fix small bug
2675         reported by (Oleg Maiboroda), #62600
2676
2677 2001-10-18  Michael Meeks  <michael@ximian.com>
2678
2679         * gtk/gtkentry.c (gtk_entry_set_property),
2680         (gtk_entry_get_property): impl 'text'
2681         (gtk_entry_class_init): add the 'text' prop.
2682         (gtk_entry_insert_text): notify 'text' changed.
2683         (gtk_entry_delete_text): ditto.
2684
2685 2001-10-17  Matthias Clasen  <matthiasc@poet.de>
2686
2687         * gtk/gtkdnd.c, gtk/gtkclipboard.c, gdk/x11/gdkmain-x11.c:
2688         Documentation updates.
2689
2690 Wed Oct 17 15:17:20 2001  Owen Taylor  <otaylor@redhat.com>
2691
2692         * gtk/gtkentry.c (gtk_entry_real_insert_text): Fix mistake
2693         in truncating length of text to MAX_SIZE. (Found by 
2694         Padraig O'Briain, #62055)
2695
2696 Tue Oct 16 17:04:44 2001  Owen Taylor  <otaylor@redhat.com>
2697
2698         * gtk/gtkwidget.c: Rename ACTIVATE_MNEMONIC enum to
2699         MNEMONIC_ACTIVATE; signal was changed a long time
2700         ago.
2701
2702         * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale): 
2703         Fix wrong return statement. (Reported by HideToshi
2704         Tajima and others.)
2705
2706         * gtk/gtklabel.h (struct _GtkLabelClass): Remove
2707         left over select_all vfunc.
2708
2709 Tue Oct 16 15:50:03 2001  Owen Taylor  <otaylor@redhat.com>
2710
2711         * gtk/gtkwidget.c (gtk_widget_translate_coordinates): Add
2712         a utility function to translate coordinates relative to
2713         one widget's allocation to coordinates relative to another
2714         widget's allocation.
2715
2716         * gtk/gtkradiobutton.c: Add a special ->focus() implementation
2717         that:
2718          - only accepts external focus if there is no active
2719            member of the group or the button is active.
2720          - makes arrow keys move the active button as well
2721            as the focus
2722          - make tab tab out directly.
2723         This makes a radio button group act as a single focus location.
2724         (#53577).
2725         
2726         * gtk/gtkcontainer.c (gtk_container_focus): Remove prefiltering -
2727         it was only a small optimization that didn't matter and made
2728         things more complicated.
2729
2730         * gtk/gtkcontainer.c (gtk_container_focus_tab): Get rid of custom
2731         sorter for FOCUS_TAB as we did for the other focus directions,
2732         sort by center of widgets, not upper-left corner. (Shouldn't
2733         matter in general.)
2734
2735         * gtk/gtkcontainer.c: Restructure code to remove duplicate code
2736         from the different types of focusing: encapsulate sorting the
2737         widgets for the focus direction into one routine
2738         (gtk_container_focus_sort()) and then share the work of moving the
2739         focus between the different focus directions.
2740
2741         * gtk/gtkcontainer.c: Fix bug where arrow navigation might not
2742         work correctly with focus chains containing non-immediate
2743         children. Sorting was being done using allocation coordinates for
2744         each widget in the focus chain, and if there were intermediate
2745         window-widgets, these allocations would not be in the same
2746         coordinate system.
2747
2748 Tue Oct 16 15:12:26 2001  Jonathan Blandford  <jrb@redhat.com>
2749
2750         * gtk/gtkoptionmenu.c (gtk_option_menu_mnemonic_activate): add a
2751         mnemonic_activate function to option menu.
2752
2753 2001-10-15  Murray Cumming <murrayc@usa.net>
2754
2755         * gtk/gtkinputdialog.c, gtk/gtktoolbar.c,  gtk/gtkwidget.c:
2756           Corrected the type names used in some calls to g_signal_new().
2757         
2758 Sat Oct 13 07:09:30 2001  Tim Janik  <timj@gtk.org>
2759
2760         * gtk/gtkbindings.c (gtk_binding_set_add_path): to compare pattern
2761         specs, use g_pattern_spec_equal() instead of direct field accesses.
2762         upon compressing two equal paths of the same type, the resulting
2763         priority has to be the maximum.
2764         * gtk/gtkenums.h (enum): take GTK_PATH_PRIO_MASK out of the
2765         GtkPathPriorityType enum and make it a macro.
2766
2767 2001-10-12  Matthias Clasen  <matthiasc@poet.de>
2768
2769         * gtk/gtkwidget.c: Fix some doc comments.
2770
2771 Fri Oct 12 11:39:20 2001  Joshua N Pritikin  <vishnu@pobox.com>
2772
2773         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): Fix to work
2774         on empty models.
2775
2776 2001-10-11  Matthias Clasen  <matthiasc@poet.de>
2777
2778         * gtk/gtkcolorsel.c, gtk/gtkwidget.c, gtk/gtktreeview.c:
2779         Remove stale gdk backend includes.
2780  
2781 2001-10-10  Michael Meeks  <michael@ximian.com>
2782
2783         * gtk/gtkcombo.c (gtk_combo_class_init): add enable_empty
2784         and value_in_list properties.
2785         (gtk_combo_set_value_in_list): notify change.
2786         (gtk_combo_set_property, gtk_combo_get_property): impl. prop.
2787
2788 2001-10-11  James Henstridge  <james@daa.com.au>
2789
2790         * configure.in: add AS=CC and ASFLAGS=CFLAGS substitutions so
2791         that gtk+ can be built with automake 1.5 while not breaking
2792         things for automake 1.4.
2793
2794 Wed Oct 10 12:48:38 2001  Owen Taylor  <otaylor@redhat.com>
2795
2796         * gtk/gtkmain.c (gtk_init_check): Call setlocale (LC_ALL, "").
2797         (#60606)
2798
2799         * gtk/gtkmain.c (gtk_disable_setlocale): Add function
2800         to disable calling setlocale (LC_ALL, "").
2801
2802         * gtk/gtkmain.c (gtk_set_locale): Indicate in the 
2803         docs that this function is not typically useful.
2804
2805         * gdk/x11/{gdkim-x11.c,gdkmain-x11.c,gdkprivate-x11.h}: 
2806         Automatically initialize GDK for the current locale
2807         on gdk_init(). Don't reset locale to C when
2808         XSupportsLocale() fails.
2809
2810         * gdk/linux-fb/gdkim-fb.c (gdk_set_locale): Remove
2811         useless checks for UTF-8 locale breakage that mattered
2812         only for X.
2813
2814         * examples/calendar/calendar.c
2815         tests/{testgtk.c,testtext.c,testcalendar.c}: Remove calls to 
2816         gtk_set_locale().
2817
2818         * gtk/gtkiconfactory.c gtk/gtkitemfactory.c:
2819         gdk_pixbuf_new_from_stream => gdk_pixbuf_new_from_inline.
2820
2821 Wed Oct 10 21:13:46 2001  Kristian Rietveld  <kristian@planet.nl>
2822
2823         * gtk/gtktreemodel.[ch]: added gtk_tree_model_get_iter_from_string().
2824
2825         Fixes bug #61904
2826
2827 Wed Oct 10 01:19:04 2001  Jonathan Blandford  <jrb@redhat.com>
2828
2829         * gtk/gtktreeselection.c (gtk_tree_selection_iter_is_selected):
2830         new function, #61923
2831         (gtk_tree_selection_path_is_selected): Ditto
2832
2833 Tue Oct  9 17:40:24 2001  Jonathan Blandford  <jrb@redhat.com>
2834
2835         * gtk/gtktreestore.c (gtk_tree_store_finalize): We're a gobject,
2836         not a GtkObject.  Thanks andersca.
2837
2838         * gtk/gtkliststore.c (gtk_list_store_finalize): ditto
2839
2840 Tue Oct  9 14:50:51 2001  Jonathan Blandford  <jrb@redhat.com>
2841
2842         * gtk/gtktreeviewcolumn.c
2843         (gtk_tree_view_model_sort_column_changed): fix broken code.
2844
2845 2001-10-08  Matthias Clasen  <matthiasc@poet.de>
2846
2847         * gtk/gtkselection.c: s/succesfully/successfully/g
2848
2849 2001-10-08  Havoc Pennington  <hp@pobox.com>
2850
2851         * demos/gtk-demo/stock_browser.c: remove unused enum
2852
2853         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
2854         pass the current selection state of the node in to the user
2855         selection func
2856
2857 2001-10-06  Matthias Clasen  <matthiasc@poet.de>
2858
2859         * gdk/x11/gdkx.h (GDK_CURSOR_XCURSOR): Replace reference to 
2860         non-existent function gdk_x11_cursor_get_xid 
2861         by gdk_x11_cursor_get_xcursor.
2862
2863 Fri Oct  5 20:50:00 2001  Jonathan Blandford  <jrb@redhat.com>
2864
2865         * gtk/gtktreestore.c (gtk_tree_store_iter_has_child): improve
2866         warning.
2867
2868         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): ref and
2869         unref nodes, #okay61676
2870
2871         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_sort): we listen
2872         to the property; no need to clear the other columns.  Also, we go
2873         to 'unsorted' if the model supports it.
2874
2875 2001-10-05  Sven Neumann  <sven@gimp.org>
2876
2877         * demos/testpixbuf-save.c
2878         * demos/testpixbuf-scale.c: simple tests for the new PNG tEXt chunk 
2879         feature.
2880
2881 Fri Oct  5 19:06:07 2001  Kristian Rietveld  <kristian@planet.nl>
2882
2883         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): should
2884         destroy the search dialog
2885
2886         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
2887         added check to prevent creation of a search dialog if there's
2888         already one around
2889
2890         * gtk/gtktreeview.c: Define GTK_TREE_VIEW_SEARCH_DIALOG_KEY, and use
2891         it instead of "search-dialog" (when getting/setting the search dialog
2892         widget).
2893
2894 2001-10-05  Jakub Steiner <jimmac@ximian.com>
2895
2896         * gtk/stock-icons/stock_broken_image.png: broken images icon
2897
2898 2001-10-04  Havoc Pennington  <hp@pobox.com>
2899
2900         Fix #56586
2901         
2902         * gtk/gtksettings.c (gtk_settings_class_init): move the F10
2903         accelerator setting here...
2904
2905         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): ...from over here,
2906         because we try to use it when a menu bar hasn't necessarily been 
2907         initialized.
2908
2909 2001-10-03  Havoc Pennington  <hp@redhat.com>
2910
2911         * tests/testtextbuffer.c (logical_motion_tests): fix test case, 
2912         it previously verified incorrect behavior
2913
2914         Fixes for #61565
2915         
2916         * gtk/gtktextiter.c (gtk_text_iter_set_line): don't return lines
2917         off the end
2918         (_gtk_text_btree_get_iter_at_line_char): don't return lines off
2919         the end
2920         (_gtk_text_btree_get_iter_at_line_byte): don't return lines off
2921         the end
2922         (gtk_text_iter_forward_lines): if on the last line, move to end of
2923         it
2924
2925         * gtk/gtktextbtree.c (_gtk_text_btree_last_could_contain_tag):
2926         don't return a line off the end
2927
2928 Wed Oct  3 23:47:25  Kristian Rietveld  <kristian@planet.nl>
2929
2930         * gtk/gtkeditable.[ch]: move insert_text and delete_text virtual
2931         functions to do_insert_text and do_delete_text, add signals
2932         insert_text, delete_text and changed
2933
2934         * gtk/gtkentry.[ch]: remove signals insert_text, delete_text
2935         and changed. Updates to match new situation.
2936
2937         * gtk/gtkspinbutton.c: updates to match new situation
2938
2939         * gtk/gtkoldeditable.h: remove signals changed, insert_text
2940         and delete_text
2941
2942         * gtk/gtkoldeditable.c: updates to match new situation
2943
2944         * gtk/gtktext.c: updates to match new situation
2945
2946         Fixes bug #59803
2947
2948 2001-10-03  Havoc Pennington  <hp@redhat.com>
2949
2950         * gtk/gtktextiter.c (test_log_attrs): allow testing the end 
2951         position
2952
2953         * gtk/gtktextbuffer.c (compute_log_attrs): update for pango
2954         changes
2955
2956         * tests/testtextbuffer.c (logical_motion_tests): updates
2957
2958 2001-10-03  jacob berkman  <jacob@ximian.com>
2959
2960         * gtk/gtkwidget.c (gtk_widget_style_get_property): 
2961         * gtk/gtkstyle.c (_gtk_style_peek_property_value): 
2962         * gtk/gtksettings.c (apply_queued_setting): 
2963         * gtk/gtkmain.c (gtk_init_check): 
2964         * gtk/gtkcontainer.c (gtk_container_child_get_property):
2965         s/retrive/retrieve/
2966
2967 Wed Oct  3 20:29:29 2001  Kristian Rietveld  <kristian@planet.nl>
2968
2969         * gtk/gtktreemodelsort.[ch]: preparation for surgery
2970         * tests/testtreesort.c: ditto
2971
2972 2001-10-02  Havoc Pennington  <hp@redhat.com>
2973
2974         Throughout: assorted docs
2975         
2976         * gdk/gdkwindow.h: deprecate gdk_window_set_hints(), it's broken,
2977         gdk_window_set_geometry_hints() should be used instead.
2978
2979         * gdk/gdkimage.h: deprecate gdk_image_ref, gdk_image_unref, and
2980         document them
2981
2982         * gdk/x11/gdkx.h: remove gdk_get_client_window() since it doesn't
2983         seem to exist in any .c files
2984
2985         * gdk/x11/gdkcolor-x11.c (gdk_colormap_query_color): docs, 
2986         g_return_if_fail (pixel < colormap->size).
2987
2988 Wed Oct  3 10:42:54 2001  Owen Taylor  <otaylor@redhat.com>
2989
2990         * gtk/gtkdnd.c (gtk_drag_dest_find_target): Allow
2991         NULL for @target_list to mean, use
2992         gtk_drag_dest_get_target_list (widget).
2993
2994         * gtk/gtkdnd.c (gtk_drag_finish): Fix problem where
2995         drop could hang when calling gtk_drag_finish with 
2996         success == FALSE and del == TRUE.
2997
2998         * gtk/gtkdnd.c (gtk_drag_dest_drop): Fix problem where
2999         drops without a matching target found would propagate
3000         to the parent widget rather than being rejected.
3001
3002         * gtk/gtktextview.c (gtk_text_view_drag_data_received): 
3003         Use text_view->dnd_mark instead of mark name to be
3004         consistent with the rest of the code.
3005
3006         * gtk/gtktextview.c (gtk_text_view_drag_motion): Make
3007         pendantically correct for a drop-only-in-some-places
3008         widget. (Check whether you can insert in drag_drop,
3009         not just in drag_motion ... matters in theory, and
3010         for Motif drag and drop in practice.)
3011
3012         * gtk/gtkentry.c (gtk_entry_drag_drop): Patch from 
3013         Damian Ivereigh to not allow drops on non-editable
3014         entries. (#61124)
3015
3016         * gtk/gtkentry.c (gtk_entry_motion_notify): Don't allow
3017         text to be moved from a non-editable entry.
3018         
3019 2001-10-03  James Henstridge  <james@daa.com.au>
3020
3021         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
3022         s/width/fixed_width/ in order to get things to compile.
3023
3024 Wed Oct  3 00:37:09 2001  Jonathan Blandford  <jrb@redhat.com>
3025
3026         * gtk/gtkcelleditable.c: docs
3027
3028         * gtk/gtktreemodel.h: more docs.
3029
3030 2001-10-02  Havoc Pennington  <hp@redhat.com>
3031
3032         * gdk/x11/gdkwindow-x11.c: docs
3033
3034         * tests/testtextbuffer.c (logical_motion_tests): add sentence
3035         boundary tests
3036
3037 Tue Oct  2 20:18:32 2001  Kristian Rietveld  <kristian@planet.nl>
3038
3039         * demos/gtk-demo/Makefile.am: add editable_cells.c,
3040         list_store.c and tree_store.c
3041
3042         * demos/gtk-demo/appwindow.c: remove tearoff item from
3043         File menu, put menubar and toolbar in handle boxes.
3044
3045         * demos/gtk-demo/genincude.pl: various changes to support trees
3046
3047         * demos/gtk-demo/main.c: various changes to support trees
3048
3049         * demos/gtk-demo/stock_browser.c: changed name of demo
3050         to Stock Item and Icon Browser, so geninclude.pl doesn't see
3051         it as child
3052
3053         * demos/gtk-demo/editable_cells.c: new file/demo
3054         * demos/gtk-demo/list_store.c: new file/demo
3055         * demos/gtk-demo/tree_store.c: new file/demo
3056
3057 Mon Oct  1 16:05:44 2001  Owen Taylor  <otaylor@redhat.com>
3058
3059         * gtk/gtkrc.c gtk/gtksettings.c: 
3060         g_string_printfa => g_string_append_printf.
3061
3062 Mon Oct  1 16:08:23 2001  Jonathan Blandford  <jrb@redhat.com>
3063
3064         * gtk/gtkliststore.c (gtk_list_store_class_init): add a finalize
3065         and destroy handler.
3066
3067         * gtk/gtktreestore.c (gtk_list_store_class_init): ditto, #59963
3068
3069         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Add
3070         'start_editing' flag to select_cursor_row.  Bug spotted by Manish
3071         Singh <yosh@gimp.org>.
3072
3073 2001-10-01  Matthias Clasen  <matthiasc@poet.de>
3074
3075         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_scanner): replace
3076         g_scanner_add/remove_symbol by g_scanner_scope_add/remove_symbol.
3077
3078         * gtk/gtkrc.c (gtk_rc_parse_any): here as well.
3079
3080 Mon Oct  1 14:07:02 2001  Jonathan Blandford  <jrb@redhat.com>
3081
3082         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): change
3083         scroll_to_cell delayed code to happen in size_allocate.
3084
3085         * gtk/gtkstyle.c (gtk_default_draw_expander): change
3086         prelight/normal arrow drawing.
3087
3088         * gtk/gtktreedatalist.c: Change compare func to use g_utf8_collate
3089
3090         * gtk/gtktreestore.c: refactor.
3091
3092 Sun Sep 30 22:15:52 2001  Manish Singh  <yosh@gimp.org>
3093
3094         * gtk/gtkcheckbutton.c (gtk_check_button_size_allocate): Applied
3095         patch from Soeren Sandmann <sandmann@daimi.au.dk>. Vertically
3096         centers the child in relation to the to indicator height.
3097
3098 Sun Sep 30 15:11:59 2001  Jonathan Blandford  <jrb@redhat.com>
3099
3100         * gtk/gtktreestore.c (gtk_tree_store_remove): Make ITERS_PERSIST
3101         correct
3102
3103 Sun Sep 30  07:01:42 2001 CEST <mikeh@bahnhof.se>
3104
3105         * gtk/gtkcellrenderertext.c: I reverted back to old "weight"
3106         property code using g_param_spec_int and changed from
3107         g_value_get_enum to g_value_get_int instead. Probably a better way
3108         to fix the problem :-)
3109
3110 Sun Sep 30  05:31:32 2001 CEST Mikael Hermansson <tyan@linux.se>
3111
3112     * gtk/gtkcellrenderertext.c changed "weight" property type from 
3113       g_param_spec_int to g_param_spec_enum.
3114
3115 Sat Sep 29 12:25:26 2001  Manish Singh  <yosh@gimp.org>
3116
3117         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): typo
3118         fix: s/Wether/Whether/ in reorderable property description
3119
3120 Thu Sep 27 16:46:36 2001  Jonathan Blandford  <jrb@redhat.com>
3121
3122         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): only
3123         start editing when you select with a keyboard.
3124
3125         (gtk_tree_view_button_press_event): much more graceful now.
3126
3127         * gtk/gtkstyle.c: Draw togglebutton better.
3128
3129 2001-09-26  Havoc Pennington  <hp@redhat.com>
3130
3131         * demos/gtk-demo/dialog.c (interactive_dialog_clicked): add demo
3132         of passing non-stock label in to gtk_dialog_new_with_buttons
3133
3134         * gtk/gtktextview.c (cursor_blinks): disable cursor blink when
3135         debugging updates
3136
3137         * gtk/gtktextiter.h: comment about how GtkTextIter struct contents
3138         are private
3139
3140         * gtk/gtkbutton.c (gtk_button_new_from_stock): if stock ID doesn't
3141         exist, fall back to mnemonic label, not plain label, bug #61184
3142         
3143 Wed Sep 26 19:48:01 2001  Jonathan Blandford  <jrb@redhat.com>
3144
3145         * gtk/gtktreestore.c (gtk_tree_store_set_valist): Stop being
3146         stupid and emitting the signal every time.
3147
3148         * gtk/gtkliststore.c (gtk_list_store_set_valist): ditto
3149
3150 Wed Sep 26 16:35:59 2001  Owen Taylor  <otaylor@redhat.com>
3151
3152        Patch from Mark McLoughlin <mark@skynet.ie> (#61233)
3153
3154        * contrib/gdk-pixbuf-xlib/Makefile.am: install
3155        gdk-pixbuf-xlib-2.0.pc.
3156
3157 Wed Sep 26 16:15:25 2001  Owen Taylor  <otaylor@redhat.com>
3158
3159         * gtk/gtknotebook.c (gtk_notebook_set_tab_label): Fix
3160         problem where menmonic wasn't removed properly when
3161         setting a label when there already is a label.
3162         Also, handle setting the tab label back to the same
3163         value. (#61160, #61161)
3164
3165         * gtk/gtkentry.c (paste_received): Patch from 
3166         Damian Ivereigh to replace selection if there is 
3167         one. (#61121)
3168
3169 2001-09-25  Darin Adler  <darin@bentspoon.com>
3170
3171         * tests/.cvsignore: Ignore new test program.
3172
3173 2001-09-25  Havoc Pennington  <hp@redhat.com>
3174
3175         * gtk/gtktextview.c: fix for #50317
3176         
3177 2001-09-25  Havoc Pennington  <hp@redhat.com>
3178
3179         * gtk/gtktextview.c (gtk_text_view_key_press_event): use 
3180         gtk_text_iter_can_insert
3181         
3182         * gtk/gtktextbuffer.c: use gtk_text_iter_can_insert
3183
3184         * gtk/gtktextiter.c (find_line_log_attrs): fixes, #57611, #57613
3185          (gtk_text_iter_can_insert): new function to fix #60282, should
3186         also fix msw's "can paste into empty buffer" bug.
3187
3188         * gtk/gtktexttag.c (gtk_text_tag_event): change type check for 
3189         "event object,"  #59091
3190
3191         * gtk/gtktextbtree.c: indentation fixes
3192
3193         * gtk/gtktextiter.c (find_by_log_attrs): fixes
3194
3195 Tue Sep 25 12:41:17 2001  Owen Taylor  <otaylor@redhat.com>
3196
3197         * configure.in: Version 1.3.9, interface age 0, binary age 0.
3198
3199         * configure.in: Require GLib-1.39, Pango 0.20, Atk 0.5.
3200
3201         * NEWS: Updates.
3202
3203 Mon Sep 24 11:59:09 2001  Owen Taylor  <otaylor@redhat.com>
3204
3205         * gtk/gtkstyle.[ch] (_gtk_draw_insertion_cursor): Shared
3206         function for drawing cursors between gtkentry/gtklabel/gtktextview.
3207         Should this be public? It has a bit of an odd interface, but
3208         custom editing widgets probably should be using it.
3209         Function will draw with wider width for taller cursors, and
3210         draws a little indicator arrow to indicate directoin for split 
3211         cursors.
3212
3213         * gtk/gtktextview.c: Add a "cursor_color" property.
3214
3215         * gtk/gtktextdisplay.[ch]: Add a cursor_gc parameter to
3216         gtk_text_layout_draw().
3217
3218         * gtk/gtkentry.c gtk/gtklabel.c gtk/gtktextdisplay.c: Use
3219         _gtk_draw_insertion_cursor().
3220
3221 Tue Sep 25 11:22:23 2001  Owen Taylor  <otaylor@redhat.com>
3222
3223         * gtk/gtkcellrenderertext.c gtk/gtktexttag.c: Restore
3224         the behavior where you could turn family_set (etc) back on
3225         and get back the values you had before.
3226
3227         * demos/gtk-demo/stock_browser.c (id_to_macro): Use
3228         g_string_ascii_up() rather than looping through the
3229         string ourself.
3230
3231 Tue Sep 25 15:32:44 2001  Jonathan Blandford  <jrb@redhat.com>
3232
3233         * gtk/gtktreeviewcolumn.c
3234         (gtk_tree_view_column_set_cell_renderer): Removed
3235         (gtk_tree_view_column_set_alignment): xalign = CLAMP (xalign, 0.0, 1.0);  Fixes 61012.
3236
3237         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Fixed #61012
3238         Patch from Detlef Reichl
3239
3240 2001-09-25  Havoc Pennington  <hp@redhat.com>
3241
3242         * tests/testtextbuffer.c (line_separator_tests): Add tests for
3243         line separators, addresses bug #57428
3244
3245 Tue Sep 25 12:34:42 2001  Jonathan Blandford  <jrb@redhat.com>
3246
3247         * gtk/gtkentry.c: Make a GtkCellEditable
3248         (get_widget_window_size): Change to let it honor size_allocate
3249         when a CellEditable.
3250
3251         * gtk/gtktreeview.c: M-x clean-line-ends.  Lots of focus and
3252         editable changes.
3253         (gtk_tree_view_set_cursor): Now you can set the cursor
3254         horizontally, as well as start editing.
3255
3256         * gtk/gtkstyle.c (gtk_default_draw_check): changing toggle drawing
3257         code to look more like the other check buttons.
3258
3259         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_size):
3260         Change the way we calculate cell size.
3261
3262         * gtk/gtkmarshal.list (VOID:STRING,STRING): new marshaller.
3263
3264         * demos/gtk-demo/sizegroup.c: Add mnemonics.
3265
3266         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): Fix docs.
3267         Fix logic.
3268
3269         * gtk/gtkcellrenderertext.c: Change to be editable.
3270
3271         * gtk/gtkcellrenderertoggle.c: Change to be activatable.
3272
3273         * test/testtreesort.c: Fix misspelling
3274
3275         * test/testreecolumns.c: Add mnemonics.
3276
3277         * test/testreeedit.c: New test program.
3278
3279 2001-09-25  Havoc Pennington  <hp@pobox.com>
3280
3281         * gtk/gtkwindow.c: Put notes in gtk_window_set_has_frame(),
3282         etc. docs about how these are not going to do what you want for 
3283         the X/win32 ports. Futile attempt to avoid a FAQ...
3284
3285 2001-09-24  James Henstridge  <james@daa.com.au>
3286
3287         * gtk/gtkmarshal.list (VOID): add marshal function types.
3288
3289         * gtk/gtkctree.c (gtk_ctree_class_init): make arguments have type
3290         GTK_TYPE_CTREE_NODE|G_SIGNAL_TYPE_STATIC_SCOPE rather than
3291         GTK_TYPE_POINTER.
3292         (gtk_ctree_node_get_type): implement boxed type for GtkCTreeNodes
3293         with no-op copy/free functions.
3294
3295         * gtk/gtkctree.h (gtk_ctree_node_get_type): add prototype for
3296         GtkCTreeNode get_type function.
3297
3298 2001-09-24  Havoc Pennington  <hp@redhat.com>
3299
3300         * gtk/gtktextiter.c, gtk/gtktextbuffer.c, gtk/gtktextbtree.c,
3301         gtktextlayout.c:
3302         Get rid of the newline-that-could-not-be-deleted; buffers may 
3303         now be zero-length. Much easier to fix than expected, once 
3304         I figured out the right way to do it. However, there are 
3305         various subtle bugs introduced by this that will have to get 
3306         sorted out. Please use bugzilla.
3307
3308 Mon Sep 24 15:09:08 2001  Owen Taylor  <otaylor@redhat.com>
3309
3310         * gtk/gtkwindow.c (gtk_window_move_resize): Don't wait for a
3311         response back from the window manager if our size hasn't changed 
3312         since we won't get a response back from the window manager;
3313         there was code in there to do this, but it was in the wrong
3314         place so if the hints change and the size didn't we'd expect
3315         a response.
3316
3317         Also, optimize the position-only-changed case by running
3318         the resize queue immediately, and clean up some comments
3319         for the changes.
3320
3321 Mon Sep 24 12:48:25 2001  Owen Taylor  <otaylor@redhat.com>
3322
3323         * gtk/gtknotebook.h: Add a compat macro that got lost.
3324
3325         * gtk/gtktreestore.c: Doc fixes.
3326
3327         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix reference
3328         leak for windows that receive events after being destroyed.
3329         (#60863, Joshua N. Pritikin)
3330
3331         * gtk/gtktable.c (gtk_table_remove): Use gtk_widget_queue_resize
3332         rather than gtk_container_queue_resize().
3333
3334         * gtk/{gtkcontainer.c,gtkwidget.c,gtkwindow.c}: _gtk prefix
3335         gtk_container_queue_resize, gtk_container_queue_resize_widgets,
3336         gtk_container_child_composite_name. (#60217.)
3337
3338 2001-09-22  Hans Breuer  <hans@breuer.org>
3339
3340         * gtk/gtkmenu.h : fix compat macros for gtk_menu_<prepend|insert>
3341
3342 Sat Sep 22 16:50:34 2001  Kristian Rietveld  <kristian@planet.nl>
3343
3344         * gtk/gtktexttag.c (gtk_text_tag_set_property): (case PROP_WEIGHT):
3345         weight value should be an int
3346
3347 Sat Sep 22 15:17:41 2001  Kristian Rietveld  <kristian@planet.nl>
3348
3349         * gtk/gtkmenu.c (gtk_menu_select_item): move most code
3350         to gtk_menu_scroll_item_visible(). Only call
3351         gtk_menu_scroll_item_visible() if the menu widget has been
3352         realized. Fixes bug #55310.
3353
3354 2001-09-21  Havoc Pennington  <hp@redhat.com>
3355
3356         * gtk/gtktextview.c (gtk_text_view_key_press_event): don't pass
3357         key press to IM context if cursor isn't in an editable location;
3358         bug #58425, patch from Hidetoshi Tajima
3359
3360 2001-09-21  Havoc Pennington  <hp@redhat.com>
3361
3362         Bug #60862
3363         
3364         * gtk/gtktextbtree.c (gtk_text_btree_node_destroy): 
3365         (_gtk_text_btree_unref): fix up mark memory management
3366
3367         * gtk/gtktextmark.c (mark_segment_delete_func): ditto
3368
3369 2001-09-20  Havoc Pennington  <hp@redhat.com>
3370
3371         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): don't
3372         try to handle alignment here, because it's done by PangoLayout
3373         after we set the layout width. Fix from Dov.
3374
3375 2001-09-21  Hans Breuer  <hans@breuer.org>
3376
3377         * gdk/gdk.def :
3378         * gtk/gtk.def : updated externals
3379
3380         * gtk/gtkmain.h : define get_gtk_win32_directoty () 
3381         * gtk/gtkmain.c (find_module) : don't use module_name after freeing it.
3382         Also handle that Win32 pathes cann't be hard-coded      
3383
3384         * gtk/gtkrc.c : use get_gtk_win32_directoty () to cleanup the various
3385         module, themes etc directory calculations
3386
3387         * gdk/win32/gdkgeometry-win32.c : some more hacking to get coordinates
3388         >16 bit right. The size limit within Win9x appears _not_ to be 32767
3389         but slightly smaller ...
3390
3391         * gdk/win32/gdkwindow-win32.c : use impl->position_info to avoid 
3392         >16 bit clipping. Added dummy body for gdk_window_set_icon_list ()
3393
3394         * gdk/win32/gdkdrawable-win32.c : implement gdk_win32_drawable_get_handle ()
3395
3396         * gdk/win32/gdkevents-win32.c : some tweaking to get better expose
3397         handling. I'm not sure if it is better now, but at least not worse
3398
3399         * gdk/win32/makefile.msc : define INSIDE_GDK_WIN32, some cleanup
3400
3401         * gdk/win32/gdkwin32.h : reflect recent API restrictions
3402
3403 2001-09-21  Matt Wilson  <msw@redhat.com>
3404
3405         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy): set
3406         radio_menu_item->group to NULL after removing it from the list, as
3407         it is no longer in the group. (#60869)
3408
3409         * gtk/gtkradiobutton.c (gtk_radio_button_destroy): likewise
3410
3411 2001-09-20  Havoc Pennington  <hp@pobox.com>
3412
3413         * configure.in (PANGO_REQUIRED_VERSION)
3414         (ATK_REQUIRED_VERSION): add variables and checks for specific 
3415         versions of dependencies. Previously we didn't verify the 
3416         Pango or ATk versions.
3417
3418 2001-09-09  Havoc Pennington  <hp@pobox.com>
3419
3420         * gtk/gtktextiter.c: fool with indentation
3421         (gtk_text_iter_in_range): add g_return_if_fail
3422
3423 Thu Sep 20 17:45:54 2001  Joshua N Pritikin  <vishnu@pobox.com>
3424
3425         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): Fix
3426         ref count on new tag to be 1.  Update doc.  (#60836)
3427
3428 Thu Sep 20 16:20:47 2001  Owen Taylor  <otaylor@redhat.com>
3429
3430         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Remove unnecessary
3431         call to gdk_image_new_bitmap(). (#59094, reported by
3432         by Sven Neumann)
3433
3434 Thu Sep 20 15:31:35 2001  Owen Taylor  <otaylor@redhat.com>
3435
3436         * gtk/gtkcalendar.c (gtk_calendar_init): Use the current
3437         day, as well as the current month and year.
3438         (#59047, reported by Vitaly Tishkov)
3439
3440 Thu Sep 20 15:10:30 2001  Owen Taylor  <otaylor@redhat.com>
3441
3442         * gtk/gtkdialog.c (gtk_dialog_init): Automatically set
3443         set dialogs to GTK_WIN_POS_CENTER_ON_PARENT. (#60554)
3444         
3445 Thu Sep 20 18:00:56 2001  Kristian Rietveld  <kristian@planet.nl>
3446
3447         * tests/testgtk.c (struct OptionMenuItem): get rid of it,
3448
3449         (build_option_menu): add func argument, connect ::changed
3450         signal to option menu instead of connecting the ::activate
3451         signal to the menu items,
3452
3453         (toplevel): get rid of RADIOMENUTOGGLED macro,
3454
3455         (list_toggle_sel_mode), (clist_toggle_sel_mode),
3456         (ctree_toggle_line_style), (ctree_toggle_expander_style),
3457         (ctree_toggle_justify), (ctree_toggle_sel_mode),
3458         (progressbar_toggle_orientation), (progressbar_toggle_bar_style):
3459         use gtk_option_menu_get_history() instead of RADIOMENUTOGGLED,
3460
3461         (notebook_type_changed): merged standard_notebook(),
3462         notabs_notebook(), scrollable_notebook() and borderless_notebook()
3463         into notebook_type_changed()
3464
3465         (create_list), (create_ctree), (create_notebook),
3466         (create_progress_bar): changed OptionMenuItem arrays into
3467         gchar * arrays. Removed "Extended" item where used.
3468
3469         Fixes bug #59885
3470
3471 2001-09-20  Sven Neumann  <sven@gimp.org>
3472
3473         * configure.in
3474         * gdk/Makefile.am
3475         * gtk/Makefile.am
3476         * gtk/gtkselection.c
3477         * gtk/gtktreeview.c
3478         * gtk/gtkwindow.c: removed remaining traces of nanox GDK backend.
3479
3480 Thu Sep 20 11:19:42 2001  Owen Taylor  <otaylor@redhat.com>
3481
3482         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): Add
3483         a missing pango_layout_iter_free ().
3484
3485 Thu Sep 20 11:03:51 2001  Owen Taylor  <otaylor@redhat.com>
3486
3487         * gtk/gtkobject.c gtk/gtklist.c gtk/gtkplug.c gtk/gtksocket.c
3488         gtk/gtktreemodelsort.c gtk/gtktreeview.c: Small warning cleanups.
3489
3490         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_get_group): Change
3491         the function definition so we don't accidentally rely on
3492         the compat #define from gtk_radio_menu_item_group.
3493         (#60782, Jeff Franks)
3494
3495 Thu Sep 20 16:51:02 2001  Kristian Rietveld  <kristian@planet.nl>
3496
3497         * gtk/gtkwindow.c (gtk_window_get_frame_dimensions): returned
3498         incorrect values for top, right and bottom due to cut-and-paste
3499         bug. Pointed out by Vitaly Tishkov, fixes bug #59008
3500
3501 Wed Sep 19 17:59:27 2001  Owen Taylor  <otaylor@redhat.com>
3502
3503         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set
3504         _NET_WM_PID and WM_CLIENT_MACHINE properties on each
3505         window, not just on the client leader. (#58463)
3506
3507 Wed Sep 19 17:28:47 2001  Owen Taylor  <otaylor@redhat.com>
3508
3509         * gtk/gtkwidget.c (gtk_widget_new): Add missing cast.
3510
3511         * gtk/gtkmenuitem.[ch] gtk/gtkmenushell.c: Underscore prefix
3512         non-public _gtk_menu_item_set_placement.
3513
3514         * gtk/gtktooltips.h: Deprecate gtk_tooltips_set_delay().
3515
3516 Wed Sep 19 16:16:38 2001  Owen Taylor  <otaylor@redhat.com>
3517
3518         * gdk/win32/gdkcolor-win32.c gdk/x11/gdkcolor-x11.c 
3519           gdk/linux-fb/gdkcolor-fb.c:
3520         Fix propagated (flags && GDK_COLOR_WRITEABLE) typo.
3521         (#59723)
3522
3523 Wed Sep 19 16:12:16 2001  Owen Taylor  <otaylor@redhat.com>
3524
3525         * gdk/gdkpixbuf-render.c: Allow -1 for width/height
3526         to mean "width/height of pixbuf" (Patch from Matthias Clasen,
3527         #59723)
3528
3529 Wed Sep 19 16:01:27 2001  Owen Taylor  <otaylor@redhat.com>
3530
3531         Patch from Frank Belew #59037 for Solaris compilation.
3532
3533         * gtk/maketypes.awk: Change syntax slightly for a call
3534         to sub(), apparently making awk on Solaris happier.
3535
3536         * gtk/gtktreeview.c: Remove C++ comments.
3537
3538 Wed Sep 19 15:46:29 2001  Owen Taylor  <otaylor@redhat.com>
3539
3540         * gtk/gtkwindow.c: Add xgettext:no-c-format comment to
3541         to handle '99% of the time. (#60473, reported by Christian Rose)
3542
3543         * gtk/gtkwidget.h: Remove prototype for gtk_widget_get_usize()
3544         which no longer exists. (#60379, reported by Vitaly Tishkov)
3545
3546 Wed Sep 19 11:06:24 2001  Tim Janik  <timj@gtk.org>
3547
3548         * Released 1.3.8.
3549
3550         * gdk/Makefile.am: kill EXTRA_DIST clearing.
3551         
3552 Wed Sep 19 02:50:40 2001  Tim Janik  <timj@gtk.org>
3553
3554         * demos/Makefile.am ($(testpixbuf_OBJECTS)): don't use BUILT_SOURCES
3555         as its broken in automake 1.4, add explicit object rule to
3556         generate this.
3557         
3558         * gdk-pixbuf/Makefile.am: fix maintainer and normal cleanfiles.
3559         get rid of uneccessary stamps, group stuff more logically, and build
3560         sources due to object rules. fix srcdir!=builddir.
3561
3562 Tue Sep 18 20:47:16 2001  Owen Taylor  <otaylor@redhat.com>
3563
3564         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Fix 
3565         incorrect parameter to compute_double_length
3566         (#58680, patch from Matthias Clasen)
3567
3568         Fixes for compilation with Forte cc. (#59734, Derek Rafter)
3569
3570         * gtk/gtkwindow.h gtk/gtksizegroup.h: Remove extra ;.
3571
3572         * gdk/gdktypes.h (GdkModifierType): Write 1u << 31
3573         for GDK_RELEASE_MASK to avoid warnings with Forte.
3574
3575         * gtk/gtktexttag.c gtk/gtkcellrendertext.c: Add some missing
3576         break; statements.
3577
3578 2001-09-18  Alex Larsson  <alexl@redhat.com>
3579
3580         * gtk/gtkcheckbutton.c:
3581         * gtk/gtkradiobutton.c:
3582         Don't draw with GTK_STATE_ACTIVE.
3583
3584         * gtk/gtkclist.c:
3585         * gtk/gtkctree.c:
3586         Draw lines between rows with base_gc[GTK_STATE_NORMAL].
3587
3588         * gtk/gtktextdisplay.c:
3589         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
3590         unfocused with base_gc [GTK_STATE_ACTIVE].
3591         
3592         * gtk/gtkentry.c:
3593         Add select all menu-item.
3594         Default cursor color is red.
3595         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
3596         unfocused with base_gc [GTK_STATE_ACTIVE].
3597
3598         * gtk/gtklabel.[ch]:
3599         Add keynav + menu to selectable lables.
3600         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
3601         unfocused with base_gc [GTK_STATE_ACTIVE].
3602
3603         * gtk/gtkfilesel.c:
3604         Add drag and drop support.
3605
3606         * gtk/gtkstyle.c:
3607         (This was checked in earlier)
3608         New default values for text/base SELECTED and ACTIVE
3609         
3610 Tue Sep 18 23:51:49 2001  Tim Janik  <timj@gtk.org>
3611
3612         * configure.in: up version to 1.3.8, interface age 0,
3613         binary age 0, depend on glib 1.3.8.
3614
3615         * NEWS: 1.3.8 updates.
3616
3617 Tue Sep 18 18:46:54 2001  Jonathan Blandford  <jrb@redhat.com>
3618
3619         * gtk/gtktreeview.c (gtk_tree_view_start_editing): centralize all
3620         the editing code
3621
3622         * gtk/gtkcelleditable.c: Got rid of stop_editing, as there was no
3623         reason to call it beyond emiting the two signals.
3624
3625         * gtk/gtkentry.c (gtk_entry_class_init): add "has_frame" property
3626         to GtkEntry.
3627
3628 Wed Sep 12 11:21:14 2001  Owen Taylor  <otaylor@redhat.com>
3629
3630         * gtk/gtkcellrenderertext.[ch] gtk/gtktexttag.[ch]
3631           gtk/gtktextview.c tests/testgtk.c: Fix up for changes to 
3632         PangoFontDescription.
3633
3634         * gtk/gtkentry.c gtk/gtkclist.c gtk/gtkcellrenderertext.c
3635         gtk/gtkspinbutton.c: Fix up for change to PangoMetrics
3636         structure.
3637   
3638         * gtk/gtkfontsel.c: Fix up for new Pango font listing API.
3639
3640         * gtk/gtkstyle.[ch]: Add gtk_style_get_font/set_font to replace
3641         direct access to style->font. Deprecate gtk_style_ref/unref.
3642   
3643         * gtk/gtkclist.c gtk/gtkctree.c gtk/gtkstyle.c gtk/gtkwidget.c:
3644         Remove gtk_style_ref/unref with g_object_ref/unref.
3645   
3646         * gtk/gtkcalendar.c: Remove leftover macros accessing
3647         style->font.
3648   
3649         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Remove unused
3650         variable.
3651   
3652         * gtk/gtktext.c gtk/gtklabel.c: Use gtk_style_get_font() instead of 
3653         style->font.
3654
3655 Tue Sep 18 13:51:35 2001  Jonathan Blandford  <jrb@redhat.com>
3656
3657         * gtk/gtkcellrenderer.h (enum): Get rid of broken "can_edit" and
3658         "can_activate" properties in favor of
3659         GTK_CELL_RENDERER_MODE_INERT, GTK_CELL_RENDERER_MODE_ACTIVATABLE,
3660         and GTK_CELL_RENDERER_MODE_EDITABLE
3661
3662 Tue Sep 18 12:12:43 2001  Jonathan Blandford  <jrb@redhat.com>
3663
3664         * gtk/gtktreeview.c (gtk_tree_view_put): Add put for use with
3665         editable widgets.  This function is private, and should only be
3666         used by GtkTreeView.
3667
3668 2001-09-18  Matt Wilson  <msw@redhat.com>
3669
3670         * docs/Makefile.am (EXTRA_DIST): don't use += before =
3671
3672         * docs/faq/Makefile.am (EXTRA_DIST): likewise
3673
3674         * docs/tutorial/Makefile.am (EXTRA_DIST): likewise
3675         
3676         * gdk/Makefile.am (MAINTAINERCLEANFILES): likewise
3677         (EXTRA_HEADERS): likewise
3678
3679         * gtk/Makefile.am (MAINTAINERCLEANFILES): likewise
3680         (EXTRA_HEADERS): likewise
3681         (EXTRA_DIST): likewise
3682         (CLEANFILES): likewise
3683
3684         * gtk/stock-icons/Makefile.am (CLEANFILES): likewise
3685
3686         * tests/Makefile.am (EXTRA_DIST): likewise
3687         
3688         * Makefile.am (install-data-local): changed to use
3689         install-data-hook, which runs after install-pkgconfigDATA, so that
3690         the pkgconfigdir will have been created and populated first.
3691
3692 Mon Sep 17 17:39:52 2001  Jonathan Blandford  <jrb@redhat.com>
3693
3694         * gtk/gtkcelleditable.[ch]: Add editable interface.  This should
3695         be the last big GtkTreeView API change.
3696
3697         * gtk/gtkcellrenderer.[ch]: Get rid of the "event" vfunc, and
3698         replace with "activate" and "start_editing".  Also, added a
3699         "can_activate" and "can_edit" property.
3700
3701         * gtk/gtktreeviewcolumn.c: modify to use above.
3702
3703 2001-09-16  Alexander Larsson  <alla@lysator.liu.se>
3704
3705         * gtk/gtkoptionmenu.c:  Handle scroll wheel events.
3706
3707 Fri Sep 14 22:31:25 2001  Matthias Clasen  <matthiasc@poet.de>
3708
3709         * demos/gtk-demo/main.c (setup_default_icon): Use a shaped
3710         icon instead of one with ugly white background.
3711
3712 Fri Sep 14 22:26:01 2001  Matthias Clasen  <matthiasc@poet.de>
3713
3714         * demos/gtk-demo/stock_browser.c (id_to_macro): make
3715         the uppercasing work. (#59550)
3716
3717 2001-09-14  Jakub Steiner <jimmac@ximian.com>
3718
3719         * gtk/stock-icons/dialog_error.png:
3720         * gtk/stock-icons/dialog_question.png: more road signs
3721
3722 2001-09-13  Jakub Steiner <jimmac@ximian.com>
3723
3724         * gtk/stock-icons/dialog_question.png:
3725         * gtk/stock-icons/dialog_warning.png: anders and jonathan seem to
3726           like a road sign.
3727
3728 Wed Sep 12 19:01:05 2001  Jonathan Blandford  <jrb@redhat.com>
3729
3730         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Rename interface
3731         signals to make them more clear.  Also, change ::range_changed to
3732         ::row_changed.
3733         * gtk/gtktreemodel.c: Adjust to interface change
3734         * gtk/gtktreemodel.h: ditto
3735         * gtk/gtktreemodelsort.c: ditto
3736         * gtk/gtktreestore.c: ditto
3737         * gtk/gtkliststore.c: ditto
3738         * gtk/gtktreeview.c: ditto
3739         * tests/testtreecolumns.c: ditto
3740         * gtk/gtkmarshal.list: Actually remove a marshaller!
3741
3742 2001-09-12  Padraig O'Briain <padraig.obriain@sun.com>
3743
3744         * gtk/gtktextview.c
3745         Add support for Ctrl+Up/Down arrow to move cursor to beginning
3746         of previous/next paragraph. If within a paragraph cursor moves to
3747         beginning of that paragraph.
3748
3749 2001-09-12  Jakub Steiner <jimmac@ximian.com>
3750
3751         * gtk/stock-icons/dialog_question.png: replacing the shaky
3752           question mark with a sans-serif one.
3753         * gtk/stock-icons/stock_top.png, stock_bottom.png,
3754      stock_first.png, stock_last.png: using the new style arrows
3755         * gtk/stock-icons/stock_font.png: simple one to replace the ugly
3756      colors.
3757         * gtk/stock-icons/stock_refresh.png: anti-aliased and changed
3758      color.
3759         * gtk/stock-icons/stock_zoom*: anti-aliased
3760         * gtk/stock-icons/dialog_error.png, dialog_warning.png: confused
3761      '-' with a '_', removed the wrong files
3762
3763 Sat Sep  8 16:19:02 2001  Owen Taylor  <otaylor@redhat.com>
3764  
3765         * gtk/gtkmain.c: Implement a search path for GTK+ modules.
3766  
3767         * configure.in gtk/gtkrc.c gtk/Makefile.am: Look for modules
3768         in gtk-2.0/<type>/major.minor.(micro-binary_age) rather
3769         than in gtk-2.0/major.minor.micro/<type>/. This
3770         works better for a search path for modules.
3771  
3772         * gtk+-2.0.pc.in gtk+-2.0-uninstalled.pc.in: Add
3773         gtk_binary_version variable holding major.minor.(micro-binary_age).
3774  
3775         * modules/input/Makefile.am (moduledir): Fix installation
3776         directory to match change in lookup location.
3777  
3778         * gtk/gtkmain.c (gtk_init_check): Remove OS/2 code for dll 
3779         suffixes. Needs to be handled in g_module_build_path().
3780
3781         * gtk/gtkrc.c gtk/queryimmodules.c: Use g_build_filename() where
3782         appropriate.
3783  
3784 Tue Sep 11 13:59:12 2001  Owen Taylor  <otaylor@redhat.com>
3785
3786         * gtk/gtkrc.c (insert_rc_property): Fixed reversed comparison
3787         causing RC properties not to work.
3788
3789 2001-09-11  Jakub Steiner <jimmac@ximian.com>
3790
3791         * gtk/stock-icons/dialog-error.png: less drastic
3792         * gtk/stock-icons/dialog-warning.png: no body parts. (I hope
3793           "STOP" is international enough.
3794         * gtk/stock-icons/stock_dnd*.png: get rid of the cursor
3795         * gtk/stock-icons/stock_menu_properties.png: 16x16 version
3796
3797 Mon Sep 10 21:26:24 2001  Joshua N Pritikin  <vishnu@pobox.com>
3798
3799         * gtk/gtktextview.c (gtk_text_view_set_buffer): Make
3800         (add|remove)_selection_clipboard symmetric. (bug #59836)
3801
3802         * gtk/gtktreeview.c (gtk_tree_view_unref_and_check_selection_tree): 
3803         Avoid SEGV for empty tree. (bug #60243)
3804
3805 Mon Sep 10 20:47:22 2001  Tim Janik  <timj@gtk.org>
3806
3807         * tests/testgtk.c (create_idle_test): slight fix for
3808         g_object_set() not usable for nesting anymore.
3809
3810         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
3811         * gtk/gtkframe.c (gtk_frame_class_init): deprecate ::shadow
3812         properties, supply ::shadow_type properties instead as most
3813         other widgets do.
3814
3815 2001-09-10  Alex Larsson  <alexl@redhat.com>
3816
3817         * demos/gtk-demo/stock_browser.c:
3818         * gdk/gdkcolor.c:
3819         * gdk/gdkfont.c:
3820         * gdk/gdkcursor.c:
3821         * gdk/gdkevents.c:
3822         * gdk/gdkrectangle.c:
3823         * gtk/gtktypeutils.c:
3824         Update to use the new g_boxed_type_register_static API.
3825
3826 2001-09-10  Padraig O'Briain <padraig.obriain@sun.com>
3827
3828         * gtk/gtktreestore.c:
3829         Fix looping in gtk_tree_store_init() waiting for zero random int.
3830
3831 Mon Sep 10 16:55:49 2001  Tim Janik  <timj@gtk.org>
3832
3833         * gtk/gtkalignment.c (gtk_alignment_init): fix xscale and yscale
3834         behaviour which havoc broke. they have to default to 1.0 for
3835         expand behaviour.
3836
3837         * gtk/gtkwindow.c (gtk_window_get_property): don't cast NULL objects.
3838
3839 2001-09-10  Padraig O'Briain <padraig.obriain@sun.com>
3840
3841         * gtk/gtkstyle.c (_gtk_style_peek_property_value)
3842         Amend previous change to avoid runtime error in g_param_spec_ref()
3843
3844 Mon Sep 10 06:58:56 2001  Owen Taylor  <otaylor@redhat.com>
3845
3846         * gtk/gtkrc.c (insert_rc_property): Fix blank line
3847         in the wrong place.
3848
3849 Mon Sep 10 06:50:39 2001  Owen Taylor  <otaylor@redhat.com>
3850
3851         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Don't
3852         do a lookup immediately after creating style->property_cache,
3853         since bsearch crashes on zero length for Solaris.
3854         (Found by Padraig O'Briain.)
3855
3856 2001-09-09  Alexander Larsson  <alla@lysator.liu.se> 
3857
3858         * gtk/gtkwidget.c (_gtk_widget_peek_colormap):
3859         Really return NULL if not set.
3860         (gtk_widget_init): Remove unused varaible.
3861         
3862 2001-09-09  Alexander Larsson  <alla@lysator.liu.se> 
3863
3864         * configure.in:
3865         Remove gdk/nanox/Makefile from AC_OUTPUT(), since it is no longer
3866         in cvs.
3867
3868 2001-09-08  Havoc Pennington  <hp@pobox.com>
3869
3870         * gtk/gtkaccelgroup.c: add docs to functions that I can imagine 
3871         people might want to use
3872
3873 2001-09-08  Havoc Pennington  <hp@pobox.com>
3874
3875         * gtk/gtkalignment.c (gtk_alignment_class_init): default
3876         xscale/yscale to 0.0, not 0.5, 0.5 isn't useful
3877
3878         * tests/testtextbuffer.c: fix usage of gtk_text_iter_spew
3879
3880         * gtk/gtktextiter.c: fix docs
3881         (gtk_text_iter_spew): get rid of this
3882
3883         * gtk/gtklayout.c: docs
3884
3885         * gtk/gtkbutton.c (gtk_button_construct_child): add an alignment
3886         to center image and label together, instead of having image on
3887         left and label centered, patch/suggestion from Jacob
3888
3889         * gtk/gtkdialog.c: docs
3890
3891 Sat Sep  8 14:19:49 2001  Jonathan Blandford  <jrb@redhat.com>
3892
3893         * gtk/gtkliststore.c: Write documentation
3894         * gtk/gtktreestore.c: Write documentation
3895
3896 Sat Sep  8 13:53:09 2001  Owen Taylor  <otaylor@redhat.com>
3897
3898         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch]: Replace uses of GBSearchArray
3899         with GArray and bsearch(), to remove dependency on a still
3900         evolving interface that we want to keep private to glib/gobject. 
3901
3902 2001-09-08  Havoc Pennington  <hp@pobox.com>
3903
3904         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_add_attribute):
3905         docs fixes
3906
3907         * gtk/gtktable.c (gtk_table_get_col_spacing): docs fixes
3908
3909         * gtk/gtkspinbutton.c (gtk_spin_button_get_increments): docs fixes
3910
3911         * gtk/gtksocket.c (gtk_socket_steal): docs fixes
3912
3913         * gtk/gtkscrolledwindow.h: docs fixes
3914
3915         * gtk/gtkimage.c (gtk_image_new): docs fixes
3916
3917 Sat Sep  8 01:49:22 2001  Owen Taylor  <otaylor@redhat.com>
3918
3919         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check): Prevent a 
3920         false alarm  constness warning with a cast.
3921
3922         * gdk/x11/gdkx.h: Undefine GDK_ROOT_PARENT before redefining it
3923         for the inside-gdk case.
3924
3925 Sat Sep  8 01:44:18 2001  Jonathan Blandford  <jrb@redhat.com>
3926
3927         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_set_dirty):
3928         remove g_print.
3929
3930         * gtk/gtktreeview.c (gtk_tree_view_set_model): unref model when we
3931         change models, #59899
3932
3933 2001-09-07  Havoc Pennington  <hp@pobox.com>
3934
3935         * gtk/gtkmain.c: move some docs inline
3936
3937 2001-09-07  Havoc Pennington  <hp@pobox.com>
3938
3939         * gtk/gtk.h: tsk tsk, jrb broke the build
3940
3941 Fri Sep  7 20:45:29 2001  Jonathan Blandford  <jrb@redhat.com>
3942
3943         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_{start,end}):
3944         Removed 'fill' attribute.  It was silly b/c that was a property of
3945         the cell renderer, anyway.
3946         (gtk_tree_view_column_render): Actually render the packed
3947         renderers.
3948         * doc/tree-column-sizing.txt: initial devel documentation.
3949         * gtk/gtktreeview.c (gtk_tree_view_expand_all): Fix bug.
3950         * gtk/gtkcellrenderertextpixbuf.[ch]: removed.
3951
3952         * tests/testtreefocus.c: fix up to reflect above changes.
3953         * tests/testtreeview.c: ditto
3954         * demos/gtk-demo/stock_browser.c: ditto
3955
3956 2001-09-07  Alex Larsson  <alexl@redhat.com>
3957
3958         * gdk/linux-fb/gdkcolor-fb.c:
3959         Removed unused function.
3960         
3961         * gdk/linux-fb/gdkdrawable-fb2.c
3962         * gdk/linux-fb/gdkfont-fb.c:
3963         Use PangoLanguage functions.
3964
3965         * gdk/linux-fb/gdkinput.c:
3966         * gdk/linux-fb/gdkselection-fb.c:
3967         Fix const warnings.
3968         
3969         * gdk/linux-fb/gdkwindow-fb.c:
3970         Fix warning. Implement gdk_window_set_icon_list() and
3971         gdk_window_get_frame_extents(). (No icon support yet though.)
3972
3973         * gtk/gtkwindow.c (gtk_window_get_position):
3974         If window->frame is set get the extents of it instead.
3975         
3976 Fri Sep  7 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
3977
3978         * gtk/gtkwidget.c (gtk_widget_get_default_colormap): 
3979         Make the default default colormap the GdkRGB colormap,
3980         not the system colormap.
3981
3982         * gtk/gtkinvisible.c (gtk_invisible_init) 
3983           gtk/gtkwindow.c (gtk_window_init): Set the current
3984         colormap, as returned by _gtk_widget_peek_colormap()
3985         on the widget.
3986
3987         * gtk/gtkwidget.[ch]: Export _gtk_widget_peek_colormap
3988         to GTK+. Make it return %NULL instead of the default
3989         colormap if no colormap has explicitely been pushed.
3990
3991         * gtk/gtkwidget.c (gtk_widget_get_colormap): Check for
3992         colormaps on ancestral widgets before defaulting the
3993         the system default colormap.
3994
3995         * docs/Changes-2.0.txt: explain colormap changes.
3996
3997 2001-09-07  Havoc Pennington  <hp@redhat.com>
3998
3999         * gtk/gtktextiter.c: add some lame code to handle G_MININT, fixes 
4000         #57424
4001
4002 Fri Sep  7 18:17:47 2001  Owen Taylor  <otaylor@redhat.com>
4003
4004         * gdk/gdk.h gdk/x11/gdkmain-x11.c: Deprecate gdk_set/get_use_xshm, 
4005         make gdk_set_use_xshm a noop. Remove --no-xshm command line
4006         option. If we aren't autodetecting properly, we need
4007         to fix the problem, or at least make it an environment
4008         variable setting, to avoid problems with propagating
4009         to embedded children, plugins, etc.
4010
4011         * gdk/gdkcolor.h: Deprecate gdk_colormap_get_system_size().
4012
4013         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h
4014         (gdk_pixbuf_render_pixmap_and_mask_for_colormap):
4015         New function to render a pixmap and mask for a particular colormap.
4016
4017         * gtk/gtkwindow.c (get_pixmap_and_mask): Change to use
4018         gdk_pixbuf_render_pixmap_and_mask_for_colormap () instead
4019         of internal implementation of the same.
4020
4021 2001-09-07  Havoc Pennington  <hp@redhat.com>
4022
4023         * gtk/gtktextlayout.c (gtk_text_layout_get_lines): remove some
4024         debug code that seems to have caused a breakpoint in valid cases
4025         
4026         * gtk/gtktextbtree.c (_gtk_text_btree_add_view): set the prev
4027         pointer on the first view when adding the second view, fixes
4028         crash when closing gtk-demo text test with active selection
4029
4030         * gtk/gtktextbuffer.c
4031         (gtk_text_buffer_remove_selection_clipboard): don't leave dead
4032         clipboards in the list of clipboards - probably fixes #59836
4033
4034 Fri Sep  7 11:51:44 2001  Owen Taylor  <otaylor@redhat.com>
4035
4036       Make gdkx.h the only installed header from gdk/x11.
4037       All structures in gdk/x11 are opaque.
4038
4039         * gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
4040         Don't install gdk{drawable,pixmap,window}-x11.h.
4041
4042         * gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c: 
4043         Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11, 
4044         GdkVisualClass into C files.
4045
4046         * gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
4047
4048         * gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
4049         gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
4050         Add public functions to replace previously exported direct
4051         structure access.
4052         gdk_x11_colormap_get_{xdisplay,xcolormap} 
4053         gdk_x11_cursor_get_{xdisplay,xcursor},
4054         gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual, 
4055         gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
4056         gdk_x11_gc_get_{xdisplay,ximage}
4057         
4058         * gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
4059         GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
4060
4061       Fix a number of variables and functions that were exported
4062       "accidentally" from GDK.
4063
4064         * gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
4065         gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit, 
4066         gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
4067         gdk_event_notify, gdk_queued_events, gdk_queued_tail,
4068         gdk_event_new, gdk_events_queue, gdk_events_unqueue,
4069         gdk_event_queue_find_first, gdk_event_queue_remove_link,
4070         gdk_event_queue_append, gdk_event_button_generate,
4071         gdk_debug_flags, gdk_default_filters, gdk_parent_root.
4072
4073         * gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c, 
4074            gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
4075         gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks, 
4076         gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
4077         gdk_use_xshm, gdk_input_ignore_core.
4078
4079         * gdk/x11/xsettings-common.h (xsettings_list_insert): Add
4080         #defines to namespace functions into the private _gdk_ 
4081         namespace.
4082
4083         * gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
4084         to replace gdk_parent_root exported variable. Adjust and
4085         deprecate GDK_ROOT_PARENT().
4086
4087         * demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
4088         GDK_ROOT_PARENT usage, remove includes of port-specific
4089         headers.
4090
4091         * gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for 
4092         _gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core, 
4093         gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
4094
4095         * gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
4096         docs/Changes-2.0.txt: Remove gdk_wm_protocols, 
4097         gdk_wm_delete_window functions, gdk_wm_take_focus, 
4098         use gdk_atom_intern() instead.
4099
4100         * gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
4101           gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h} 
4102           gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
4103           gtk/gtkselection.c 
4104         Unexport gdk_selection_property, just use 
4105         gdk_atom_intern ("GDK_SELECTION").
4106
4107         * gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}: 
4108         Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type, 
4109         GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate, 
4110         GdkVisualprivate, gdk_x11_gc_flush.
4111
4112       Make a number of public exports of variables into functions
4113       to increase encapsulation.
4114
4115         * gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h 
4116         gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer, 
4117         move to gdkinternals.h. Add gdk_device_get_core_pointer ().     
4118
4119         * gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
4120         docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code, 
4121         gdk_error_warnings.
4122
4123         * gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
4124           docs/Changes-2.0.txt: 
4125         s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
4126         s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
4127         Add gdk_x11_get_default_xdisplay().
4128
4129         * gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c 
4130         win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c 
4131         gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class, 
4132         Don't export gdk_progclass, move --class command line
4133         option and handling to common portion of GDK.
4134
4135       Miscellaneous fixes:
4136
4137         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
4138         g_return_val_if_fail that should have been g_return_if_fail.
4139
4140         * gdk/gdkinternals.h gdk/gdkprivate.h: Move
4141         gdk_synthesize_window_state() to the semi-public gdkprivate.h.
4142
4143         * gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
4144         X11 dependency.
4145
4146         * gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO: 
4147         Remove unused gdk_key_repeat_disable/restore.
4148
4149         * linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c 
4150         x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
4151         Remove unused gdk_null_window_warnings variable.
4152
4153         * gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
4154         it can be retrieved from the repository; it is too far
4155         from functional to be worth having people check out;
4156         it would be easier to start from scratch, I suspect.
4157
4158         * gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
4159
4160         * gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c 
4161         gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c: 
4162         Fix some accidentally global variables and unused global variables.
4163
4164         * gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c 
4165         gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c: 
4166         Fix some accidentally global variables and unused global variables.
4167
4168       Add some space for future expansion to multihead.
4169
4170         * gdk/gdkdrawable.h: Add four reserved function pointers
4171         for future expansion of GdkDrawableClass.
4172
4173         * gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
4174         where we can put a GdkScreen * later.
4175
4176 2001-09-07  Havoc Pennington  <hp@redhat.com>
4177
4178         * gtk/gtktextview.c (gtk_text_view_flush_scroll): update
4179         adjustments after validating destination yrange; fixes #53918
4180         (This may cause other issues, but I hope it won't)
4181         
4182 2001-09-05  Havoc Pennington  <hp@redhat.com>
4183
4184         * gtk/gtktextbtree.c (_gtk_text_btree_delete): when merging end
4185         line into start line, update the character counts in parent nodes; 
4186         caused a bug when end and start line had different parent nodes.
4187
4188 2001-08-30  Havoc Pennington  <hp@redhat.com>
4189         
4190         * gtk/gtktexttag.c (_gtk_text_attributes_fill_from_tags): add
4191         assertion that tag is in a table
4192
4193 Fri Sep  7 12:48:56 2001  Matthias Clasen  <matthiasc@poet.de>
4194
4195         * gdk/x11/gdkkeys-x11.c (get_direction): Don't call
4196         g_strcasecmp on NULL strings. (#59058)
4197
4198 2001-09-06  Alex Larsson  <alexl@redhat.com>
4199
4200         * gtk/gtkbin.c:
4201         * gtk/gtkfontsel.c:
4202         * gtk/gtkspinbutton.c:
4203         * gtk/gtktipsquery.c:
4204         Use GtkType/GType instead of uint.
4205
4206 Tue Sep  4 18:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
4207
4208         * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
4209         sort column.
4210
4211         * gtk/gtktreestore.c (gtk_list_store_init): ditto
4212
4213         * gtk/gtktreesortable.c: add docs.
4214
4215 Tue Sep  4 09:37:19 2001  Owen Taylor  <otaylor@redhat.com>
4216
4217         * Version 1.3.7
4218
4219         * configure.in docs/Makefile.am docs/gtk-config.1.in: Remove 
4220         docs for gtk-config
4221
4222         * modules/input/Makefile.am (install-data-local): Don't
4223         run gtk-query-immodules if DESTDIR is set.
4224
4225         * NEWS: Various additions.
4226
4227 Tue Sep  4 03:12:25 2001  Tim Janik  <timj@gtk.org>
4228
4229         * NEWS: updates for 1.3.7 release.
4230
4231 Mon Sep  3 18:03:56 2001  Jonathan Blandford  <jrb@redhat.com>
4232
4233         * gtk/gtktreestore.c (gtk_tree_store_set_default_sort_func):
4234         handle default sort feature
4235
4236         * gtk/gtktreesortable.c (gtk_tree_sortable_set_default_sort_func):
4237         new function to handle default sort.
4238         (gtk_tree_sortable_has_default_sort_func): check if default sort
4239         is set.
4240
4241         * gtk/gtkliststore.c (gtk_list_store_set_default_sort_func): 
4242         handle default sort feature
4243
4244 Sun Sep  2 20:32:36 2001  Jonathan Blandford  <jrb@redhat.com>
4245
4246         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
4247         vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
4248         #59731
4249
4250 Sun Sep  2 17:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
4251
4252         * gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
4253         vishnu@pobox.com (Joshua N Pritikin) to emit signal at the correct
4254         time, #59727
4255
4256         * gtk/gtkbutton.c (gtk_button_update_state): Get depressed
4257         correctly.
4258
4259 Sun Sep  2 21:41:21 2001  Owen Taylor  <otaylor@redhat.com>
4260
4261         * gdk/x11/gdkkeys-x11.c (update_keymaps): Set current serial
4262         so that we don't eternally update the keymap after we
4263         get a change notification.
4264
4265         * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Fix
4266         incorrect cast.
4267
4268 Sun Sep  2 23:27:16 2001  Kristian Rietveld  <kristian@planet.nl>
4269
4270         * gtk/gtktreemodelsort.[ch]: much changes in an attempt to make
4271         it working. It mostly works now, although there're still a few issues
4272         to be worked out.
4273
4274         * tests/testtreesort.c (main): changes to have a better test
4275         application for the GtkTreeModelSort.
4276
4277 Sun Sep  2 23:19:07 2001  Kristian Rietveld  <kristian@planet.nl>
4278
4279         * gtk/gtktreeview.c (gtk_tree_view_search_iter): code cleaup,
4280         fix for bug #59222.
4281
4282         * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): add
4283         gpointer search_data argument to function definition and
4284         prototype, to match GtkTreeViewSearchEqualFunc typedef.
4285
4286 Sat Sep  1 21:57:27 2001  Kristian Rietveld  <kristian@planet.nl>
4287
4288         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): add warnings
4289         per jrb's request.
4290
4291 Fri Aug 31 20:01:23 2001  Jonathan Blandford  <jrb@redhat.com>
4292
4293         * gtk/gtktreeview.c (gtk_tree_view_search_iter): pass in user data.
4294
4295         * gtk/gtktreeview.c (gtk_tree_view_destroy): destroy search_data.
4296
4297 Wed Aug 29 20:40:58 2001  Owen Taylor  <otaylor@redhat.com>
4298
4299         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_add/remove_selection_clipboard): 
4300         Instead of always mirroring the selection to a single PRIMARY
4301         selection, allow it to be mirrored to any number of clipboards.
4302
4303         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_paste_primary): Remove, 
4304         just use gtk_text_buffer_paste_clipboard with the appropriate clipboard.
4305
4306         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_cut/copy/paste_clipboard): Add a
4307         GtkClipboard argument, and for paste_clipboard, the
4308         @override_location argument from @paste_primary.
4309
4310         * gtk/gtktextview.c: Adapt to above change.
4311         
4312 2001-08-30  Havoc Pennington  <hp@redhat.com>
4313
4314         * gtk/gtktextview.c (invalidated_handler): put validate idle at
4315         resize - 2 just for flexibility
4316
4317 2001-08-30  Havoc Pennington  <hp@redhat.com>
4318
4319         * gtk/gtktextdisplay.c (render_layout_line): handle NULL shaped
4320         object from the empty-child-anchor case by drawing a little box.
4321         
4322         * gtk/gtktextlayout.c (add_child_attrs): Still set shape attribute
4323         if the child anchor has no anchored widgets - fixes #59328.
4324
4325         Also, remove bizarre deletion of preedit string that seems to have
4326         gotten in here somehow.
4327
4328 2001-08-30  Havoc Pennington  <hp@redhat.com>
4329
4330         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): apply fix
4331         to #58420 from Hidetoshi Tajima and Matthias Clasen
4332
4333 Wed Aug 29 17:28:04 2001  Jonathan Blandford  <jrb@redhat.com>
4334
4335         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
4336         change color when the GtkTreeView loses focus.
4337
4338         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
4339         ditto.
4340         
4341         * gtk/gtkstyle.c (gtk_default_draw_flat_box): ditto
4342
4343 2001-08-28  Havoc Pennington  <hp@pobox.com>
4344
4345         * gtk/gtkwindow.c (gtk_window_set_icon_list): fix g_object_notify
4346
4347 2001-08-28  Havoc Pennington  <hp@pobox.com>
4348
4349         * demos/gtk-demo/main.c (setup_default_icon): add default icon
4350
4351         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic):
4352         warning fix
4353         (gtk_radio_button_new_with_label): warning fix
4354
4355         * gtk/gtkdnd.c: used some random GtkImage private structs, 
4356         update to reflect GtkImage changes
4357
4358         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): don't check
4359         whether the hint is supported, just always set the icon. A task
4360         list might want to use it even if the WM doesn't, and the WM may
4361         change over time. Also, XDeleteProperty() if list == NULL.
4362
4363         * gtk/gtkwindow.c (gtk_window_set_icon_list)
4364         (gtk_window_get_icon_list)
4365         (gtk_window_set_icon)
4366         (gtk_window_get_icon)
4367         (gtk_window_set_default_icon_list)
4368         (gtk_window_get_default_icon_list):
4369         new functions
4370
4371         * gtk/gtk-boxed.defs (GtkIconSet): add GtkIconSet
4372
4373         * gtk/gtkimage.c: Implement property support, bug #59408
4374
4375         * gtk/gtkcontainer.c (gtk_container_add): make the warning message
4376         on reparent-without-removing-first a bit more helpful.
4377         Let's just destroy this FAQ.
4378
4379 Tue Aug 28 21:37:11 2001  Matthias Clasen  <matthiasc@poet.de>
4380
4381         * demos/gtk-demo/appwindow.c (do_appwindow): Use g_signal_connect_object
4382         instead of gtk_signal_connect, to avoid warnings at destruction time. (#58161)
4383
4384 Tue Aug 28 21:00:44 2001  Matthias Clasen  <matthiasc@poet.de>
4385
4386         * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
4387         of use_text_format to the end of the function. (#56447)
4388
4389 Tue Aug 28 20:06:07 2001  Matthias Clasen  <matthiasc@poet.de>
4390
4391         * demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
4392         only in response to an area_prepared signal.
4393
4394 2001-08-28  Alex Larsson  <alexl@redhat.com>
4395
4396         * gtk/gtkwidget.c (gtk_widget_class_init):
4397         Make unrealize GTK_RUN_LAST.
4398
4399 Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
4400
4401         * gtk/gtkradiobutton.c: fix silly cut'n'paste error,
4402         with_label and with_mnemonic should create radio buttons, not
4403         check buttons
4404
4405 Mon Aug 27 15:28:56 2001  Jonathan Blandford  <jrb@redhat.com>
4406
4407         * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
4408         * tests/treestoretest.c (make_window): ditto
4409         * demos/gtk-demo/main.c (create_tree): ditto
4410         * demos/gtk-demo/stock_browser.c (do_stock_browser): ditto.
4411
4412 Mon Aug 27 15:18:14 2001  Jonathan Blandford  <jrb@redhat.com>
4413
4414         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Use the
4415         GTK selection types rather than GtkTreeSelectionMode.
4416
4417         * docs/Changes-2.0: Add comment about selection change.
4418
4419 Mon Aug 27 14:21:30 2001  Jonathan Blandford  <jrb@redhat.com>
4420
4421         * gtk/gtkenums.h (GtkSelectionMode): deprecate
4422         GTK_SELECTION_EXTENDED.
4423
4424         * gtk/gtkclist.c: Remove old GTK_SELECTION_MULTIPLE behavior.
4425         Make GTK_SELECTION_EXTENDED be GTK_SELECTION_MULTIPLE.
4426
4427         * gtk/gtkctree.c: ditto
4428
4429         * gtk/gtklist.c: ditto
4430
4431         * gtk/gtktree.c: ditto
4432
4433 Mon Aug 27 14:18:12 2001  Owen Taylor  <otaylor@redhat.com>
4434
4435         * gtk/gtkmenubar.h (gtk_menu_bar_prepend): Fix a cuple
4436         of typos in compat macros. (#59624, Skip Montaro)
4437
4438 Sun Aug 26 20:00:00 2001  Owen Taylor  <otaylor@redhat.com>
4439
4440         * configure.in acinclude.m4: Use autoconf 2.13/2.50 compat
4441         macro.
4442
4443          (patch from ERDI Gergo  <cactus@cactus.rulez.org>, #58920)
4444  
4445         * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Change
4446         interface to be a standard setter from gtk_menu_item_right_justify.
4447         (gtk_menu_item_get_right_justified): a getter to go with the setter
4448
4449         * gtk/gtkmenuitem.h: Add a deprecated compat macro for
4450         gtk_menu_item_right_justify.
4451
4452         * demos/gtk-demo/menus.c tests/testgtk.c: Switch to 
4453         gtk_menu_item_set_right_justified.
4454  
4455 2001-08-27  Jens Finke <jens@gnome.org>
4456
4457         * gtk+.spec.in: Updated to match gpp requirements, reworked the
4458         files section to make it work with 1.3.x releases.
4459
4460 2001-08-26  Alexander Larsson  <alla@lysator.liu.se>
4461
4462         * gtk/gtkbutton.[ch]:
4463         Add properties for labels, mnemonics and stock items.
4464         Added C accessor functions for the properties.
4465         Removed deprecated button->child.
4466
4467         * gtk/gtkradiobutton.c:
4468         * gtk/gtktogglebutton.c:
4469         Update to use the functions in GtkButton.
4470
4471         * gtk/gtkcheckbutton.c:
4472         Update to use the functions in GtkButton.
4473         Changed size allocation of child. Now only gets as much
4474         space as it requests.
4475
4476         * gtk/gtkclist.c:
4477         Don't use GtkButton->child
4478
4479         * gtk/gtklabel.c:
4480         Fixed typo in docs
4481         
4482 2001-08-26  Alexander Larsson  <alla@lysator.liu.se>
4483
4484         * tests/testgtk.c:
4485         * tests/Makefile.am:
4486         Ressurect the properties test.
4487         I don't care if it is inferior, I just want to test my property code.
4488
4489 2001-08-25  Chema Celorio  <chema@celorio.com>
4490
4491         * gtk/gtktable.c (gtk_table_set_child_property): pass ->nrows to
4492         gtk_table_resize as the first argument for CHILD_PROP_RIGHT_ATTACH
4493         and CHILD_PROP_LEFT_ATTACH v.s. using ->ncols
4494
4495 2001-08-24  Havoc Pennington  <hp@pobox.com>
4496
4497         * gtk/gtkcompat.h: remove gtk_menu_* compat defines; 
4498         these are already in gtkmenu.h, and the copies
4499         here were broken.
4500
4501         Also, change GTK_DISABLE_COMPAT_H to GTK_DISABLE_DEPRECATED
4502
4503         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_image):
4504         special-case bitmaps to allow no colormap
4505         (bitmap1): implement no-colormap bitmap-getting
4506         (bitmap1a): implement no-colormap bitmap-getting to pixbuf with
4507         alpha
4508         (rgb8): indentation
4509         (rgb1a, rgb1): change the way we read the data out of the image, 
4510         old way didn't seem to work quite right.
4511
4512         I'm pretty sure a lot of the rgbconvert code is still broken.
4513         
4514         * gtk/gtkwindow.c (gtk_window_move_resize): move hints comparison
4515         above position constraint (I really intended to do this before,
4516         don't know what's up with that)
4517         (gtk_XParseGeometry): shut up gcc
4518
4519         * gdk/gdkpixbuf-drawable.c (rgb1a): fix bug where "x1" was used
4520         and "0" should have been. remove the attempted 4-bytes-at-once
4521         optimization, it was totally broken.
4522
4523 Sat Aug 25 19:02:39 2001  Owen Taylor  <otaylor@redhat.com>
4524
4525         * gtk/gtkbutton.[ch] gtk/gtktogglebutton.c: Add optional movement
4526         on push to buttons (based on patch from Soeren Sandmann, #54720)
4527
4528           - Add child_displacement_x/y style properties to control how far the
4529             child moves when the button is depressed.
4530
4531           - Add non-exported function _gtk_button_set_depressed to clean
4532             up the handling of the in/out shadow and separate it frmo
4533             widget->state.
4534
4535           - Lots of code cleanup and simplification of state handling
4536             for GtkButton/GtkToggleButton.
4537  
4538         * tests/testgtkrc: Set the x/y displacement to 1 to provide a test
4539         of button movement. testgtk + testgtkrc == test ugly GTK+, as always.   
4540
4541 Fri Aug 24 23:09:05 2001  Owen Taylor  <otaylor@redhat.com>
4542
4543         * gtk/gtkimage.[ch] docs/Changes-2.0.txt: Break compatibility 
4544         and make gtk_image_new() take no arguments. The compiler will
4545         catch it, and it is vastly more useful than having
4546         gtk_image_new() be a deprecated alias for gtk_image_new_from_image().  
4547
4548         * gtk/gtkmenu.c (gtk_menu_set_property): Apply patch
4549         to add tearoff-title property (#51319, Lee Mallabone)
4550
4551 Fri Aug 24 22:12:32 2001  Owen Taylor  <otaylor@redhat.com>
4552
4553         * gtk/gtkmenuitem.[ch]: Remove unused and useless function
4554         gtk_menu_item_configure(). (#58925)
4555
4556 Fri Aug 24 16:03:45 2001  Jonathan Blandford  <jrb@redhat.com>
4557
4558         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): Add
4559         "use_align" to give people the option to just make a cell visible.
4560
4561         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): fix bug where
4562         we were scrolling past the end of the tree.
4563
4564         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_start):
4565         rename gtk_tree_view_column_pack_start_cell_renderer to
4566         gtk_tree_view_column_pack_start.  Same for pack_end, and clear.
4567
4568 Fri Aug 24 12:02:08 2001  Owen Taylor  <otaylor@redhat.com>
4569
4570         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Remove
4571         a stray g_object_ref() left over from gtk_object_ref/sink.
4572         (Pointed out by Josh Pritikin.)
4573
4574 Thu Aug 23 19:33:54 2001  Owen Taylor  <otaylor@redhat.com>
4575
4576         * gtk/gtkcontainer.[ch]: Rename gtk_container_children()
4577         to gtk_container_get_children. Added deprecated compatibility
4578         macro. (Suggested by Vitaly Tishkov, #59051)
4579
4580         * gtk/gtktoolbar.c gtkdialog.c: Fix gtk_container_children()
4581         calls.
4582
4583 Thu Aug 23 19:10:01 2001  Owen Taylor  <otaylor@redhat.com>
4584
4585         * gtk/gtkmenubar.h (gtk_menu_bar_insert): Deprecate 
4586         gtk_menu_bar_append/prepend/insert, forgot to do this
4587         when we deprecated gtk_menu_append/prepend/insert.
4588
4589         * gtk/gtkmenu.h (gtk_menu_insert): Add casts to deprecated
4590         compat macros.
4591
4592         * gtk/gtkmenu.c: Fix problem with static gtk_menu_insert() being
4593         renamed by compat macro.
4594
4595         * gtk/gtkfontsel.h: Deprecated gtk_font_selection_get_font(),
4596         gtk_font_selection_dialog_get_font(). (Suggested by
4597         Vitaly Tishkov, #59383)
4598
4599 Thu Aug 23 18:23:31 2001  Owen Taylor  <otaylor@redhat.com>
4600
4601         * gtk/gtktexttag.c (gtk_text_tag_table_get_size): 
4602         Rename from gtk_text_tag_table_size(). (#59366)
4603
4604 Thu Aug 23 20:01:41 2001  Kristian Rietveld  <kristian@planet.nl>
4605
4606         * gtk/gtktreemodelsort.[ch], gtk/gtktreesortable.[ch],
4607         gtk/gtktreestore.[ch], gtk/gtktreeviewcolumn.[ch],
4608         gtk/gtkliststore.[ch]: use GtkSortType instead of GtkTreeSortOrder.
4609         (#59173).
4610
4611 Thu Aug 23 16:26:47 2001  Tim Janik  <timj@gtk.org>
4612
4613         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): 
4614         * gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
4615         handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
4616
4617 Wed Aug 22 19:15:39 2001  Owen Taylor  <otaylor@redhat.com>
4618
4619         [ Patch from Sebastian Wilhelmi, 52790 ]
4620
4621         * gtk/gtkversion.h.in gtk/gtk.h: New file replacing gtkcompat.h
4622
4623         * gdk/gdkcompat.h gdk/gdk*.h gtk/gtkcompat.h.in gtk/gtk*.h: 
4624         Move compatibility macros from g[dt]kcompat.h to within 
4625         #ifndef G[DT]K_DISABLE_DEPRECATED in each file.
4626
4627         * gdk/gdk-pixbuf-csource.c: Fix up include of gtkcompat.h.
4628
4629         * demos/Makefile.am demos/gtk-demo/Makefile.am 
4630           docs/reference/gdk-pixbuf/Makefile.am modules/input/Makefile.am
4631           tests/Makefile.am: Remove references to -G[DT]K_DISABLE_DEPRECATED.
4632
4633         * demos/{pixbuf-demo.c,testpixbuf-drawable.c,testpixbuf-save.c,
4634                  testpixbuf.c}: Fix usages of deprecated functions.
4635
4636 Wed Aug 22 19:03:27 2001  Jonathan Blandford  <jrb@redhat.com>
4637
4638         * gtk/gtktreeview.c (gtk_tree_view_set_model): clean up selection
4639         when changing models.
4640
4641 Wed Aug 22 18:25:46 2001  Jonathan Blandford  <jrb@redhat.com>
4642
4643         * gtk/gtktreeview.c: Fix selection.  I think it's all dandy now.
4644         We check the current event for modifiers rather than try to trap
4645         all presses.
4646
4647 2001-08-22  Anders Carlsson  <andersca@gnu.org>
4648
4649         * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo.
4650         It's LIST_STORE, not LISTSTORE.
4651
4652 Tue Aug 21 12:43:29 2001  Owen Taylor  <otaylor@redhat.com>
4653
4654         * gtk/gtk.h: Remove commented out gtkpacker reference.
4655
4656 2001-08-21  Matthias Clasen  <matthiasc@waldgeist.poet.de>
4657
4658         * configure.in (all_loaders): Add tga loader, 
4659         patch by Nicola Girardi. (#56067)
4660
4661 Tue Aug 21 02:57:13 2001  Jonathan Blandford  <jrb@redhat.com>
4662
4663         * gtk/gtktreeview.c (gtk_tree_view_button_press): Fix up selection
4664         a little.  More needs to be done tomorrow.
4665
4666 Tue Aug 21 00:45:55 2001  Jonathan Blandford  <jrb@redhat.com>
4667
4668         * gtk/gtktreeview.c (gtk_tree_view_destroy): Grr... Get it right.
4669
4670 Mon Aug 20 23:48:18 2001  Jonathan Blandford  <jrb@redhat.com>
4671
4672         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Fix bug
4673         reported by Kristian Rietveld <kristian@planet.nl> to handle row
4674         == NULL.
4675         (gtk_tree_view_destroy): Fix bug reported by Kristian Rietveld
4676         <kristian@planet.nl> to change destroy order.
4677
4678 Mon Aug 20 11:39:44 2001  Jonathan Blandford  <jrb@redhat.com>
4679
4680         * gtk/gtktreeselection.c (gtk_tree_selection_class_init): Use
4681         correct marshaller.
4682
4683 Sun Aug 19 03:22:59 2001  Jonathan Blandford  <jrb@redhat.com>
4684
4685         * gtk/gtkliststore.c: Fix up warnings, #58928.
4686
4687         * gtk/gtktreeselection.h: Change signal prototype, #58647
4688
4689         * gtk/gtktreeview.c (_gdk_tree_view_find_node): Make more robust,
4690         #59221.
4691
4692         * gtk/gtkstyle.c: Actually prelight arrow, #50981
4693         
4694 2001-08-18  Hans Breuer  <hans@breuer.org>
4695
4696         * gdk/gdk.def : updated externals
4697
4698         * gdk/win32/gdkselection-win32.c : returning TRUE with gdk_selection_set
4699         is required to get (at least) visible in entry fields. Some selections
4700         are really handled now - even on win32 - but copying via middle
4701         mouse button into a different app needs to wait ... 
4702
4703         * gdk/win32/gdkdnd-win32.c : implemented inter-app drag&drop
4704         mostly by stealling code from gdkdnd-fb.c. Thanks to who ever wrote it!
4705
4706         * gdk/win32/gdkevents-win32.c : some tweaking to get better expose
4707         handling. I'm not sure if it is better now, but at least not worse
4708
4709         * gdk/win32/gdkgeometry-win32.c : replaced every call to MoveWindow
4710         with SetWindowPos () which allows more fine-tuning backing-store wise
4711
4712         * gdk/win32/gdkwindow-win32.c : allow unraised gdk_window_show ().
4713         Also changed move/resize to be more like the X version.
4714
4715         * gtk/gtk.def : updated externals
4716
4717 2001-08-19  Sven Neumann  <sven@gimp.org>
4718
4719         * gtk/gtktooltips.c
4720         * tests/testtreesort.c
4721         * tests/treestoretest.c: inserted some casts to get rid of compiler
4722         warnings.
4723
4724 Sun Aug 19 01:44:44 2001  Jonathan Blandford  <jrb@redhat.com>
4725
4726         * gtk/gtktreeviewcolumn.c
4727         (gtk_tree_view_column_pack_{start,end}_cell_renderer): sink cell.
4728
4729         * gtk/gtktreeview.c (gtk_tree_view_insert_column): sink column.
4730         (_gtk_tree_view_find_node): If *node is NULL,
4731         *tree should be NULL too.
4732
4733         * demos/gtk-demo/stock_browser.c (do_stock_browser): don't unref
4734         column/renderers.
4735         * tests/testtreecolumns.c: ditto
4736         * tests/testtreefocus.c: ditto
4737         * tests/testtreesort.c: ditto
4738         * tests/testtreeview.c: ditto
4739         * tests/treestoretest.c: ditto
4740
4741 Sat Aug 18 04:34:31 2001  Jonathan Blandford  <jrb@redhat.com>
4742
4743         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 2 new
4744         signals; is_expander/is_expanded.
4745
4746         * gtk/gtlcellrendererpixbuf.c: Allow other expanded and closed
4747         pixbufs.
4748
4749         * gtk/gtktreeview.c: set above properties.
4750
4751 Sat Aug 18 23:01:33 2001  Owen Taylor  <otaylor@redhat.com>
4752
4753         * gtk/gtkwidget.h: Really remove set_default_style().
4754
4755         * docs/Changes-2.0.txt: added a note about
4756         gtk_widget_push/pop/set_default_style.
4757
4758 2001-08-18  Havoc Pennington  <hp@pobox.com>
4759
4760         * gtk/gtkwindow.c (gtk_window_move_resize): constrain position on
4761         hints_changed in addition to the other cases.
4762         (gtk_window_move_resize): include last position from configure
4763         notify in debug spew
4764
4765 2001-08-18  James Henstridge  <james@daa.com.au>
4766
4767         * gtk/gtkaccelgroup.c (gtk_accel_group_object_destroy): use the
4768         second argument to the weak ref notify, cleaning up some uglyness.
4769         (gtk_accel_group_attach): remove and add the weak notifier when
4770         changing the accel groups slist.
4771         (gtk_accel_group_detach): same here.
4772
4773 2001-08-17  Darin Adler  <darin@bentspoon.com>
4774
4775         * gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
4776         missing parameters to utf8 functions to make it compile.
4777
4778 Fri Aug 17 19:30:14 2001  Jonathan Blandford  <jrb@redhat.com>
4779
4780         * gtk/gtktreeprivate.h:
4781         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
4782         (gtk_tree_view_init), (gtk_tree_view_set_property),
4783         (gtk_tree_view_get_property), (gtk_tree_view_destroy),
4784         (gtk_tree_view_key_press), (gtk_tree_view_leave_notify),
4785         (gtk_tree_view_focus_out), (gtk_tree_view_set_model),
4786         (gtk_tree_view_set_destroy_count_func),
4787         (gtk_tree_view_set_enable_search),
4788         (gtk_tree_view_get_enable_search),
4789         (gtk_tree_view_get_search_column),
4790         (gtk_tree_view_set_search_column),
4791         (gtk_tree_view_get_search_equal_func),
4792         (gtk_tree_view_set_search_equal_func),
4793         (gtk_tree_view_search_dialog_destroy),
4794         (gtk_tree_view_search_position_func),
4795         (gtk_tree_view_interactive_search),
4796         (gtk_tree_view_search_delete_event),
4797         (gtk_tree_view_search_button_press_event),
4798         (gtk_tree_view_search_key_press_event),
4799         (gtk_tree_view_search_move), (gtk_tree_view_search_equal_func),
4800         (gtk_tree_view_search_iter), (gtk_tree_view_search_init):
4801         * gtk/gtktreeview.h:
4802         Add heavily modified patch from Kristian Rietveld to handle
4803         interactive searching.
4804
4805 Fri Aug 17 17:30:34 2001  Tim Janik  <timj@gtk.org>
4806
4807         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): const correct
4808         string parameter.
4809
4810         * gtk/gtkoptionmenu.c (gtk_option_menu_set_menu): connect to
4811         GtkMenuShell::selection_done, now that we have it, instead of 
4812         ::deactivate so we're not tearing the menu apart and notify
4813         the user prematurely.
4814
4815 Thu Aug 16 05:22:01 2001  Tim Janik  <timj@gtk.org>
4816
4817         * gtk/gtkwindow.c (gtk_window_move_resize): if we actually move our
4818         window, clear window->need_default_position to avoid infinite loops.
4819         some comment fixups and GTK_RESIZE_IMMEDIATE fixups.
4820
4821 Wed Aug 15 12:36:55 2001  Tim Janik  <timj@gtk.org>
4822
4823         * gtk/gtktreeview.c (gtk_tree_view_set_model): move all model setup
4824         code into this place. get rid of GTK_TREE_VIEW_MODEL_SETUP usage.
4825         (gtk_tree_view_set_property): don't cast possible NULL objects.
4826         (gtk_tree_view_destroy): reset the model to NULL.
4827
4828         * gtk/gtktreeselection.c (gtk_tree_selection_finalize): chain
4829         parent_class handler.
4830
4831 2001-08-17  Matthias Clasen  <matthiasc@waldgeist.poet.de>
4832
4833         * gtk/demos/gtk-demo/*: Remove all uses of deprecated functions.
4834
4835 2001-08-17  Anders Carlsson  <andersca@gnu.org>
4836
4837         * gtk/gtkstyle.c (create_expander_affine): Divide with floating
4838         point numbers so that the result will be floating point.
4839
4840 2001-08-16  Matthias Clasen  <matthiasc@waldgeist.poet.de>
4841
4842         * tests/testgtk.c (create_handle_box): 
4843         (create_toolbar): Replace gtk_window_set_policy calls by
4844         gtk_window_set_resizable.
4845
4846 2001-08-16  Jakub Steiner <jimmac@ximian.com>
4847
4848         * gtk/stock-icons/dialog_info.png: new style bulb
4849         * gtk/stock-icons/dialog_error.png: maybe a little drastic ;)
4850         * gtk/stock-icons/dialog_warning.png: need a hand?
4851         * gtk/stock-icons/stock_add.png, stock_remove.png: I hope 
4852           the aa border gets chopped off ok
4853         * gtk/stock-icons/stock_colorselector.png: using the new hand
4854         * gtk/stock-icons/stock_dnd_multiple.png: I'm not totally sure what 
4855           this one is for, but the old icon was butt ugly.
4856         * gtk/stock-icons/stock*_insert_image.png: not sure if it belongs here
4857         * gtk/stock-icons/stock*_insert_object.png: "
4858         * gtk/stock-icons/stock_index.png: using new hand icon
4859         * gtk/stock-icons/stock*_new.png: the document template being used 
4860           elsewhere too
4861         * gtk/stock-icons/stock*_print*.png: new print and print preview 
4862           icons (panel/menu)  
4863         * gtk/stock-icons/stock*_save*.png, stock*_revert.png: new save/revert 
4864           icons based on Tuomas' floppy image.
4865         * gtk/stock-icons/stock*_search*.png: search and s'n'r icons for panel/menu
4866         * gtk/stock-icons/stock*_stop.png: replacing the old 'x' button
4867         * gtk/stock-icons/stock*_trash.png: based on Tuomas' trash icon
4868         * gtk/stock-icons/stock*_undelete.png: "
4869         * gtk/stock-icons/stock_preferences.png: I have a version with a 
4870           document base if the sliders are no good.
4871         * gtk/stock-icons/stock_properties.png: properties 
4872         
4873
4874         * gtk/stock-icons/stock*_copy.png, stock*_cut.png, stock*_paste.png: Tuomas' 
4875           (tigert@ximian.com) clipboard icons
4876         * gtk/stock-icons/stock_{up,down,left,right}_arrow.png: tigert's new arrows
4877         * gtk/stock-icons/stock*_{undo,redo}.png: tigert's undo/redo icons.
4878         * gtk/stock-icons/stock_open.png: shaded open icon by Tuomas. we should make it a
4879           little bigger IMHO
4880
4881 2001-08-16  Sven Neumann  <sven@gimp.org>
4882
4883         * gtk/gtkbox.c (gtk_box_class_init): removed unused widget_class.
4884
4885 2001-08-15  Padraig O'Briain  <padraig.obriain@sun.com>
4886
4887         * gtk/gtkcellrenderertext.c:
4888         Avoid warning when specifying NULL for "attributes" property
4889
4890 2001-08-15  Matthias Clasen  <matthiasc@waldgeist.poet.de>
4891
4892         * docs/debugging.txt: Add a warning about --enable-debug=no,
4893         some editorial changes.
4894
4895 2001-08-13  Matthias Clasen  <matthiasc@waldgeist.poet.de>
4896
4897         * gtk/docs/debugging.txt, gdk/gdk.c, gdk/gdkinternals.h, 
4898         gdk/x11/gdkmain-x11.c, gtk/gtkdebug.h, gtk/gtkmain.c: Update 
4899         debugging info, remove unused debug flags. (#58330)
4900
4901 Mon Aug 13 13:17:32 2001  Jonathan Blandford  <jrb@redhat.com>
4902
4903         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): 
4904         (gtk_tree_selection_select_all): Remove strict checking for rows.
4905
4906 2001-08-13  Matthias Clasen  <matthiasc@waldgeist.poet.de>
4907         
4908         * gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips): 
4909         Don't remove the tooltip window when the tip text changes. (#15891)
4910
4911 Sun Aug 12 12:02:09 2001  Owen Taylor  <otaylor@redhat.com>
4912
4913         * gtk/Makefile.am ($(srcdir)/gtkmarshal.c): Remove extra
4914         $(srcdir).
4915
4916 Sun Aug 12 10:39:12 2001  Owen Taylor  <otaylor@redhat.com>
4917
4918         * Makefile.am (EXTRA_DIST): Fix problem with trying to
4919         dist files from intl/, which is no longer there.
4920
4921 2001-08-11  Hans Breuer  <hans@breuer.org>
4922
4923         * gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
4924           gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c, 
4925           gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c, 
4926           gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c, 
4927           gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
4928           gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
4929
4930         * gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
4931           gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
4932         GDK_TYPE_EVENT signals
4933
4934         * gtk/gtkalignment.c : removed 'direct allocation bug',
4935         which Tim discovered while reading the patch
4936
4937 Sat Aug 11 14:32:14 2001  Owen Taylor  <otaylor@redhat.com>
4938
4939         * gtk/gtkwidget.h (gtk_widget_set_default_visual): Add some
4940         compat macros for push/pop/set_visual that were supposed
4941         to be added a long time ago, but got dropped. 
4942
4943 Fri Aug 10 16:55:53 2001  Tim Janik  <timj@gtk.org>
4944
4945         * gtk/gtkwindow.c (gtk_window_set_policy): coalesce multiple
4946         property notifies.
4947
4948 2001-08-07  Havoc Pennington  <hp@pobox.com>
4949
4950         * gtk/gtkfilesel.c (open_ref_dir): fix a typo.
4951
4952         * gtk/gtkplug.c (gtk_plug_init): remove setting of auto_shrink;
4953         some fixage is needed here, but nothing simple. Owen understands
4954         it. ;-)
4955
4956         * gtk/gtkwindow.h, gtk/gtkwindow.c: Rework code and API for window
4957         sizing and positioning.  Also, fix bug in compute_geometry_hints
4958         (width/height confusion for setting min size). 
4959         (gtk_window_move): new function
4960         (gtk_window_resize): new function
4961         (gtk_window_get_size): new function
4962         (gtk_window_get_position): new function
4963         (gtk_window_parse_geometry): new function
4964         
4965         * gtk/gtkwidget.c (gtk_widget_set_size_request): new function
4966         (gtk_widget_get_size_request): new function
4967         (gtk_widget_get_usize): delete, that was a short-lived function
4968         ;-)
4969         (gtk_widget_set_usize): deprecate
4970         (gtk_widget_set_uposition): deprecate, make it a trivial 
4971         gtk_window_move() wrapper
4972         (gtk_widget_class_init): remove x/y/width/height properties,
4973         add width_request height_request
4974         
4975         * demos/*: update to avoid deprecated functions
4976         
4977         * gtk/gtklayout.c: add x/y child properties
4978
4979         * gtk/gtkfixed.c: add x/y child properties, and get rid of 
4980         uses of "gint16"
4981
4982         * tests/testgtk.c (create_window_sizing): lots of tweaks to window
4983         sizing test
4984
4985         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ensure that
4986         configure events on toplevel windows are always in root window
4987         coordinates, following ICCCM spec that all synthetic events 
4988         are in root window coords already, while real events are 
4989         in parent window coords. Previously the code assumed that 
4990         coords of 0,0 were parent window coords, which was 
4991         really broken.
4992   
4993         * gtk/gtkcontainer.c (gtk_container_get_focus_chain): fix
4994         warning
4995  
4996         * gdk/gdkwindow.h (GdkWindowHints): add GDK_HINT_USER_POS 
4997         and GDK_HINT_USER_SIZE so we can set USSize and USPosition 
4998         hints in gtk_window_parse_geometry()
4999  
5000         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): support
5001         new USER_POS USER_SIZE hints    
5002
5003 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
5004
5005         * tests/prop-editor.c (properties_from_type): Use 
5006         g_object_class_list_properties to get the param specs 
5007         for a given type. (#58609)
5008
5009 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
5010
5011         * gtk/gtkstyle.c (gtk_style_real_unrealize): Don't forget to
5012         free the text_aa parts. (#57549)
5013
5014 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
5015
5016         * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
5017         not the foreground color. (#57621)
5018
5019 2001-08-09  Alexander Larsson <alexl@redhat.com>
5020
5021         * gdk/win32/gdkfont-win32.c:
5022         Update to the new pango win32 api.
5023
5024 2001-08-08  HideToshi Tajima  <tajima@eng.sun.com>
5025
5026         * gtk/gtkclipboard.c (request_text_received_func): ask apps for
5027         COMPOUND_TEXT instead of TEXT
5028         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): correctly
5029         interpret the return value of g_string_to_compound_text()
5030         (#55152)
5031
5032 2001-08-08  Matthias Clasen  <matthiasc@waldgeist.poet.de>
5033
5034         * gtk/gtktreestore.c (gtk_tree_store_iter_n_children): Don't
5035         fail if iter is NULL. (#58347)
5036
5037 2001-08-07  Matthias Clasen  <matthiasc@waldgeist.poet.de>
5038
5039         * gtk/gtktextdisplay.c (render_para, gtk_text_layout_draw): Fix
5040         some off-by-one issues, fixing selection of line-ends. (#50323)
5041
5042 2001-08-07  Matthias Clasen  <matthiasc@waldgeist.poet.de>
5043
5044         * gtk/gtkhsv.c (gtk_hsv_map, gtk_hsv_unmap): Reinstate these
5045         functions in order to make mouse operation work again in the
5046         color wheel. (#58604)
5047
5048 2001-08-07  James Henstridge  <james@daa.com.au>
5049
5050         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_object): refetch
5051         the accelerator when the accel object is changed.  Fixes bug
5052         #58628.
5053
5054 2001-08-06  HideToshi Tajima  <tajima@eng.sun.com>
5055
5056         * modules/input/gtkimcontextxim.c (mb_to_utf8), xim_text_to_utf8):
5057         Skip g_convert when to_codeset and from_codeset are both 'UTF-8'
5058         (gnome bugzilla #58202)
5059
5060 2001-08-06  Havoc Pennington  <hp@pobox.com>
5061  
5062         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): The whole 
5063         GDK_IS_WINDOW() branch of this was a bit screwed up, because 
5064         it was expecting a GdkWindow, not a GdkWindowImplX11.
5065  
5066         Also, we were getting the window rect in screen coords 
5067         and the screen rect in window coords then intersecting 
5068         them; instead, get window rect in window coords.
5069  
5070         Finally, there were codepaths that resulted in a stuck server grab
5071         (when the window was fully onscreen, or on gdk_image_new()
5072         failure); make the server ungrab thing a bit more
5073         robust/consistent.
5074
5075 2001-08-06  Sven Neumann  <sven@gimp.org>
5076
5077         * gdk/gdkpango.c (gdk_pango_context_destroy): 
5078         check if info->colormap != NULL before unref'ing it. It might have
5079         been set to NULL using gdk_pango_context_set_colormap().
5080
5081 Sun Aug  5 11:24:27 2001  Owen Taylor  <otaylor@redhat.com>
5082
5083         * gtk/gtkcolorsel.c (gtk_color_selection_set_current_alpha): 
5084         Fix conversion from float to int so that we don't get
5085         skew in the int => float => int roundtrip. 
5086         (#58120, reported by Vitaly Tishkov). Also fix problem
5087         where if no alpha was set, the returned alpha
5088         from (say) set_current_alpha() was returned as 1, not 65535.
5089
5090 Sun Aug  5 09:48:08 2001  Owen Taylor  <otaylor@redhat.com>
5091
5092         * gtk/gtklist.c (gtk_list_clear_items): Fix
5093         problem with selecting a new focus child.
5094
5095         * gtk/gtklist.c (gtk_list_clear_items): Clear 
5096         list->undo/list_focus_child after unparenting
5097         child, since unparenting the child can result
5098         in list->last_focus_child being set. (#58024)
5099
5100         * Makefile.am (SUBDIRS): Add target specific pc
5101         files to DISTCLEANFILES.
5102
5103         * gtk/Makefile.am: add @GTK_DEBUG_FLAGS@
5104         (58327, Matthias Clasen)
5105
5106 Sat Aug  4 19:28:21 2001  Owen Taylor  <otaylor@redhat.com>
5107
5108         * tests/testgtk.c: Patch from Hans (with various modifications),
5109         to add the ability to use testgtk as a rough-and-ready
5110         benchmark. Try, 'testgtk --bench all:5' (if you want decent
5111         numbers, run without a window manager)
5112
5113 2001-08-04 Alexander Larsson <alexl@redhat.com>
5114
5115         * gdk/win32/gdkinput.c:
5116         Add #ifdef HAVE_WINTAB around wintab.h include.
5117
5118         * gtk/gtk.def:
5119         Removed marshals that have been moved to glib.
5120         Commented out plug and socket. They didn't compile for me 
5121         on win32.
5122
5123 2001-08-04  Hans Breuer  <hans@breuer.org>
5124
5125         * gtk/stocks-icons/makefile.msc : new file
5126         * gtk/makefile.msc.in : use it
5127
5128         * gtk/gtkstyle.c : not all platforms do provide M_PI and
5129         friends, but luckily there is G_PI
5130
5131         * gtk/gtk.def : updated
5132
5133         * gdk/win32/gdkwindow.c (gdk_window_new) : don't make all TEMP 
5134         windows WS_POPUP, but only those without a parent. This fixes the 
5135         mis-alignment between the selectable (temp, input only) window and 
5136         the window text of GtkLabel.
5137
5138         (gdk_window_show) : respect private->state when actually showing
5139         the window.
5140
5141         (gdk_window_set_transient_for) : Implementation from Wolfgang 
5142         Sourdeau <wolfgang@contre.com> ported to 2.0 and added some 
5143         error handling. Should fix #50586.
5144
5145         * gdk/win32/gdkevents-win32.c : beautify log output
5146
5147 2001-08-04  Michael Natterer  <mitch@gimp.org>
5148
5149         * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
5150         Need to show the image after adding it to the GtkImageMenuItem.
5151         This used to work without in testgtk because of the
5152         gtk_widget_show_all() at the end of the function.
5153         (Closes #54978).
5154
5155 Tue Jul 31 22:59:33 2001  Tim Janik  <timj@gtk.org>
5156
5157         * gtk/gtknotebook.c (gtk_notebook_get_child_property): 
5158         (gtk_notebook_set_child_property): fix finding of child's page,
5159         since we have to validly deal with labels and menus here as well.
5160         (gtk_notebook_get_child_property): fix warning.
5161         (gtk_notebook_class_init): property tab_pack is of type
5162         GTK_TYPE_PACK_TYPE (enum) not boolean.
5163         (gtk_notebook_find_child): don't always warn, we might be looking
5164         for a label or menu child.
5165         (gtk_notebook_map): fix mapping of panel.
5166
5167         * gtk/gtkwidget.c (gtk_widget_set_child_visible): always constrain
5168         widget's mapped state, regardless of the value being set equals
5169         old settings, since things like REALIZED(parent) or MAPPED(parent)
5170         may have changed since the old value was set. make it an error to
5171         invoke this function on a toplevel widget.
5172
5173 2001-07-31  Darin Adler  <darin@bentspoon.com>
5174
5175         * gdk/gdkprivate.h:
5176         * gdk/x11/gdkx.h:
5177         Put all mentions of GdkFont inside #ifndef GDK_DISABLE_DEPRECATED.
5178
5179         * demos/gtk-demo/menus.c: (do_menus): Cast to G_OBJECT, not
5180         GTK_OBJECT.
5181
5182 Tue Jul 31 15:34:57 2001  Jonathan Blandford  <jrb@redhat.com>
5183
5184         * gtk/gtktreeview.c (gtk_tree_view_remove_column): Whoops.  Stupid
5185         scoping error pointed out by matthiasc@poet.de.
5186
5187 2001-07-31  Sven Neumann  <sven@gimp.org>
5188
5189         * demos/gtk-demo/appwindow.c
5190         * demos/gtk-demo/item_factory.c
5191         * tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
5192
5193 Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
5194
5195         * gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
5196         argument order for g_signal_has_handler_pending.
5197
5198 Sun Jul 29 17:14:01 2001  Tim Janik  <timj@gtk.org>
5199
5200         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): use g_file_test()
5201         instead of long deprecated g_scanner_stat_mode().
5202
5203 2001-07-29  Hans Breuer  <hans@breuer.org>
5204
5205         * gdk/makefile.msc : build in the backend dir after
5206         auto-generating files
5207
5208         * gdk/win32/gdkfont-win32.c (gdk_font_load) : reimplement
5209         with code from win32-production-branch.
5210
5211         *  gdk/win32/gdkwindow-win32.c : set the private->destroyed flag
5212         before calling DestroyWindow, which indirectly calls 
5213         gdk_window_destroy_notify ()
5214
5215         (performance patch merged from win32-production-branch)
5216         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_segments): 
5217         Use PatBlt() instead of LineTo() when possible (solid single-pixel pen, 
5218         R2_COPYPEN rop). It is claimed to be much faster.
5219
5220 Fri Jul 27 11:31:15 2001  Jonathan Blandford  <jrb@redhat.com>
5221
5222         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
5223         add an "attributes" property to the text renderer for ATK.
5224
5225 2001-07-26  Alex Larsson  <alexl@redhat.com>
5226
5227         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
5228         Initialize image->bits_per_pixel from the drawable, not from
5229         the root window.
5230
5231         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_get_depth):
5232         Fix cast. argument is an IMPL already.
5233
5234 2001-07-15  James Henstridge  <james@daa.com.au>
5235
5236         * gtk/gtkwindow.c (gtk_window_add_accel_group): cast to GObject.
5237         (gtk_window_remove_accel_group): same here.
5238         (gtk_window_key_press_event): same here.
5239
5240         * gtk/gtkwidget.c (gtk_widget_add_accelerator): cast to GObject.
5241         (gtk_widget_remove_accelerator): same here.
5242         (gtk_widget_remove_accelerators): same here.
5243
5244         * gtk/gtkplug.c (gtk_plug_accel_entries_changed): same here.
5245
5246         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): cast to GObject
5247         instead of GtkObject.
5248
5249         * gtk/gtkmenu.c (gtk_menu_key_press): update since GtkAccelGroup
5250         now takes GObjects.
5251
5252         * gtk/gtkitemfactory.c (gtk_item_factory_propagate_accelerator):
5253         pass a GObject to gtk_accel_group_entries_from_object.
5254         (gtk_item_factory_create_item): s/accel_widget/accel_object/
5255
5256         * gtk/gtk-boxed.defs: remove GtkAccelGroup boxed def.
5257
5258         * gtk/gtkaccellabel.c: convert to handle GObject accel objects.
5259
5260         * gtk/gtkaccellabel.h: fix header to reflect that arbitrary
5261         GObjects can have accelerators set now.  Add compatibility
5262         defines.
5263
5264         * gtk/gtkmarshal.list: add missing marshallers.
5265
5266         * gtk/gtkaccelgroup.[ch]: convert to a GObject, and allow setting
5267         accelerators on plain GObjects.  gtk_accel_group_object_destroy
5268         has been converted into a weak reference, and
5269         gtk_accel_group_delete_entries is now a destroy notify for that
5270         piece of data.
5271
5272 2001-07-23  Ron Steinke  <rsteinke@w-link.net>
5273
5274         * gdk/gdkdraw.c: Added a check on the colormap depth to
5275         gdk_drawable_set_colormap()
5276         * gdk/x11/gdkimage-x11.c: combination of Matthias Clasen's
5277         patch to fix colorsel and my patch to fix gdk_drawable_get_image()
5278         for pixmaps without visuals (more specifically, bitmaps)
5279         * gdk/x11/gdkpixmap-x11.c: Fixed gdk_pixmap_new() so it
5280         doesn't set a colormap with the wrong depth
5281
5282
5283 2001-07-22  Anders Carlsson  <andersca@gnome.org>
5284
5285         * gtk/gtktreeview.c (gtk_tree_view_class_init): Replace the
5286         expander_height and expander_width properties with a single
5287         property, expander_size.
5288         (gtk_tree_view_init): Set the tab_offset to expander_size
5289         plus some padding.
5290         (gtk_tree_view_unrealize): Remove the expand/collapse
5291         timeout if it exists.
5292         (coords_are_over_arrow): Fix a small bug.
5293         (gtk_tree_view_motion_draw_column_motion_arrow): Use
5294         expander_size.
5295         (gtk_tree_view_draw_focus): Use "treeview" instead of
5296         "add-mode" as detail when drawing the focus.
5297         (gtk_tree_view_bin_expose): Use "treeview-drop-indicator"
5298         instead of "add-mode" as detail when drawing the focus.
5299         (gtk_tree_view_deleted): If we have a node currently being
5300         expanded or collapsed, remove the timeout and set the node 
5301         to NULL.
5302         (gtk_tree_view_queue_draw_arrow): New function that just
5303         redraws the arrow of a node.
5304         (gtk_tree_view_draw_arrow): Use expander_size instead of
5305         expander_width/expander_height, also pass a different
5306         expander_style to gtk_paint_expander depending on the 
5307         state of the node being drawn.
5308         (expand_collapse_timeout): New function for expanding 
5309         or collapsing a node depending on the previous state.
5310         (gtk_tree_view_real_expand_row): Add timeout and set 
5311         correct state for node being expanded.
5312         (gtk_tree_view_real_collapse_row): Add timeout and set
5313         correct state for node being collapsed.
5314
5315         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): Add
5316         information about the node currently being expanded or
5317         collapsed, and also a timeout id.
5318
5319         * gtk/gtkstyle.h (struct _GtkStyleClass): Replace is_open
5320         with expander_style for draw_expander.
5321
5322         * gtk/gtkstyle.c (gtk_draw_expander): Replace is_open with
5323         expander_style.
5324         (create_expander_affine): New function for creating an 
5325         expander affine.
5326         (apply_affine_on_point): New function for applying an 
5327         affine to a point.
5328         (gtk_default_draw_expander): Modified to take expander_style
5329         instead of is_open, and to draw the rectangle rotated differently
5330         depending on the expander style.
5331         (gtk_paint_expander): Replace is_open with expander_style.
5332
5333         * gtk/gtkrbtree.h: Add expander states to GtkRBNodeColor.
5334
5335         * gtk/gtkenums.h: Add expander style enum.
5336
5337 2001-07-21  Jonas Borgström  <jonas@codefactory.se>
5338
5339         * gtk/gtktreemodel.c (gtk_tree_model_foreach): Check the return
5340         value from gtk_tree_model_get_iter, the model might be empty.
5341
5342 2001-07-20  Hans Breuer  <hans@breuer.org>
5343
5344         * gdk/win32/gdkinput-win32.c : gdk_device_get_history moved to
5345         gdk/gdkinput.c like the other backends
5346
5347         * gdk/win32/gdkinput-win32.h :
5348         * gdk/win32/gdkinput.c :
5349         * gdk/win32/gdkvisual-win32.c :
5350         * gdk/win32/gdkwin32.h : mechanical adaption to GdkDevice and
5351         GdkVisual GObjectification. UNTESTED for pen-devices because
5352         I simply have none.
5353
5354         * gdk/gdk.def :
5355         * gtk/gtk.def : updated externals
5356
5357         * gtk/gtkiconfactory.c :
5358         * gtk/gtkoldeditable.c : GError *error needs to be initialized (= NULL) 
5359         before passing &error to functions to avoid strange crashes
5360         
5361         * gtk/gtkcontainer.c (gtk_container_real_set_focus_child) : is static
5362
5363         * gtk/gtkwidget.c (gtk_widget_get_child_visible): use g_return_val_if_fail
5364
5365         * gtk/makefile.msc.in : updated
5366
5367 Thu Jul 19 15:35:32 2001  Owen Taylor  <otaylor@redhat.com>
5368
5369         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_vadjustment):
5370         Add property support. (#51858)
5371
5372 Thu Jul 19 14:56:33 2001  Owen Taylor  <otaylor@redhat.com>
5373
5374         * gtk/gtkaccellabel.c (gtk_accel_label_class_init) 
5375         * gtk/gtkinputdialog.c (gtk_input_dialog_set_key):
5376         Use Shift/Ctrl instead of Shft/Ctl. (#53807)
5377
5378 Thu Jul 19 11:41:00 2001  Owen Taylor  <otaylor@redhat.com>
5379
5380         * gtk/gtkcolorsel.c: Add propery support (roughly
5381         based on patch from Lee Mallabone, #51014)
5382
5383         * gtk/gtkcolorsel.h: Mark gtk_color_selection_set_update_policy as
5384         deprecated, since we already g_warning() on it.
5385
5386 Thu Jul 19 14:24:34 2001  Owen Taylor  <otaylor@redhat.com>
5387
5388         * gtk/gtkentry.c (gtk_entry_set_positions): Fix
5389         typo that sometimes caused selection not to work properly.
5390
5391         * gtk/gtkentry.c (gtk_entry_grab_focus): Select text in
5392         entry when tabbing in. (#57743)
5393         
5394         * gtk/gtkentry.c (gtk_entry_motion_notify): If the
5395         user drags up above or down below the entry, move
5396         to the end or the beginning of the entry. (Suggestion
5397         from Jay Cox, #50940)
5398
5399         * gtk/gtkentry.c (gtk_entry_move_cursor): If we have
5400         a current selection, then when moving by chars or
5401         words, move to the end of the selection rather than
5402         from entry->current_pos. (Suggestion from Jay Cox,
5403         #50942)
5404         
5405 Thu Jul 19 12:14:28 2001  Owen Taylor  <otaylor@redhat.com>
5406
5407         * gtk/gtkwindow.c (gtk_window_set_decorated): Actualy
5408         set window->decorated. (Patch from Hidetoshi Tajima,
5409         #55846)
5410
5411 Sat Jul  7 02:50:14 2001  Owen Taylor  <otaylor@redhat.com>
5412
5413         * gtk/gtkwidget.c (gtk_widget_set_parent): Enforce
5414         the widget/child realization/mapping invariants.
5415
5416         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add functions 
5417         gtk_widget_[get/set]_child_visible() to control
5418         whether visible children of a mapped window are
5419         mapped.
5420
5421         * docs/widget_system.txt: Updated for changes in
5422         container contract, and addition of GTK_CHILD_VISIBLE.
5423
5424         * gtk/gtkcontainer.c: Add generic map()/unmap()
5425         functions that work for almost all containers.
5426
5427         * gtk/gtknotebook.c gtk/gtkpacker.c: Use 
5428         gtk_widget_set_child_visible() where necessary.
5429
5430         * gtk/*.c: Remove excess map(), unmap(), and 
5431         realization/mapping invariant enforcing code
5432         from many containers.
5433
5434 Wed Jul 18 19:51:45 2001  Owen Taylor  <otaylor@redhat.com>
5435
5436         * gtk/gtktextview.c (gtk_text_view_set_attributes_from_style): 
5437         Get the foreground color from 'text', nor 'fg'. (#57568)
5438
5439 Wed Jul 18 19:28:46 2001  Owen Taylor  <otaylor@redhat.com>
5440
5441         * gtk/*.c: Patch from Matthias Clasen to remove remove
5442         all instances of g_return_if_fail (foo != NULL); that are
5443         immediately before a g_return_if_fail (GTK_IS_FOO (foo));
5444         since the second check catches the NULL anyways.
5445
5446 Wed Jul 18 18:23:05 2001  Owen Taylor  <otaylor@redhat.com>
5447
5448         * gtk/gtkbutton.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtktextview.c
5449         gtktreeview.c: Fix idles and timeouts to be properly surrounded by 
5450         GDK_THREADS_ENTER()/LEAVE() pairs.
5451
5452         * gtk/gtkdialog.c gtk/gtkclipboard.c: Surround calls
5453         to g_main_loop_run() with GDK_THREADS_LEAVE()/ENTER()
5454         pairs. (Problem found by M. Meeks)
5455
5456 2001-07-18  Darin Adler  <darin@bentspoon.com>
5457
5458         * gtk/gtkiconfactory.c: (gtk_icon_size_register): Reorder code so
5459         that we don't get a g_warning message every time we register a new
5460         icon size.
5461
5462         * gdk/x11/gdkcolor-x11.c: (gdk_colormap_alloc1): Fix warning by
5463         using pixel variable of the correct type.
5464         
5465 Fri Jul 13 15:33:32 2001  Owen Taylor  <otaylor@redhat.com>
5466
5467         * gdk/gdkwindow.[ch]: Add a function gdk_window_get_internal_paint_info(),
5468         so that using X functions on a GdkWindow is possible, if
5469         a little hairy.
5470
5471         * gdk/gdkgc.c (gdk_gc_offset): Add a function to offset the clip
5472         and ts_origin of a GC, so that external parties can offset/restore
5473         a GC, when using gdk_window_get_internal_paint_info().
5474
5475 2001-07-17  Darin Adler  <darin@bentspoon.com>
5476
5477         * .cvsignore: Ignore the sgml directory made by gtkdoc.
5478         * demos/pixbuf-demo.c: (main): Use gtk_window_set_resizable
5479         instead of the deprecated gtk_window_set_policy.
5480         * demos/testpixbuf-scale.c: Add missing <stdlib.h> include.
5481         * gdk/gdkkeys.c: (gdk_keymap_class_init): Remove empty finalize
5482         function to get rid of warning and some code too.
5483         * gdk/x11/gdkfont-x11.c: (gdk_font_charset_for_locale): Add
5484         missing const.
5485         * gdk/x11/gdkmain-x11.c: (_gdk_windowing_init_check): Remove
5486         unused local.
5487         * gdk/x11/gdkpango-x11.c: (gdk_pango_context_get): Add missing
5488         const.
5489         * gdk/x11/gdkselection-x11.c: (gdk_text_property_to_utf8_list),
5490         (gdk_utf8_to_compound_text): Add missing const.
5491         * gtk/gtkimage.c: (gtk_image_expose): Remove unused local.
5492         * gtk/gtkmenubar.c: (gtk_menu_bar_hierarchy_changed): Add missing
5493         cast and get rid of an unnecessary one.
5494         * gtk/gtksettings.c: (gtk_settings_notify): Remove unused local.
5495         * gtk/gtkstatusbar.c: (gtk_statusbar_size_allocate): Remove unused
5496         local.
5497         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_build_level):
5498         Remove unused local.
5499         * modules/input/gtkimcontextxim.c: (gtk_im_context_xim_new): Add
5500         missing const.
5501         * tests/testsocket.c: (add_child): Add cast so the printf format
5502         doesn't make us implicitly depend on what integer type
5503         gtk_socket_get_id returns.
5504         * tests/testtextbuffer.c: Add missing const.
5505         * tests/testtreefocus.c: (main): Remove unused local.
5506         * tests/treestoretest.c: (iter_remove): Remove unused local.
5507         (uppercase_value): Remove unused function.
5508         (make_window): Add statement to quiet the compiler's uninitialized
5509         variable warning.
5510
5511 Sat Jul 14 12:47:35 2001  Tim Janik  <timj@gtk.org>
5512
5513         * gtk/gtkrange.c:
5514         (second_timeout): 
5515         (initial_timeout): 
5516         (update_timeout): add GDK_THREADS_ENTER/GDK_THREADS_LEAVE.
5517         (gtk_range_calc_layout): compute the new layout based on an
5518         adjustment->value being passed in as argument.
5519         (gtk_range_button_press): for button2 slider warps, first recalc
5520         the layout, then adjust the value. also, use update_slider_position()
5521         for adjusting the value, so we keep pixel quantisation at which we
5522         usually operate (upon motion or button releases). the reason for this
5523         is that, we can't change the adjustment upon button2 presses to a non
5524         quantised value and upon button2 release re-quantise the value since
5525         that'd alter the value even if we didn't get any motion events (causing
5526         unexpected scroll area warps upon release and/or slider pixel-jitter).
5527         (gtk_range_motion_notify): update the slider position from queried
5528         coordinates, not event coordinates.
5529
5530 Fri Jul 13 09:47:52 2001  Tim Janik  <timj@gtk.org>
5531
5532         * gtk/gtkstyle.c (gtk_default_draw_focus): fix line style resetting,
5533         the default gc values are: width=0, CapBut, JoinMiter.
5534
5535 2001-07-13  Anders Carlsson  <andersca@codefactory.se>
5536
5537         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Take
5538         into account the xpad and ypad when calculating the width and the
5539         height of the pixbuf cel.
5540
5541 Thu Jul 12 18:29:40 2001  Owen Taylor  <otaylor@redhat.com>
5542
5543         * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group): 
5544         Rename to gtk_radio_menu_item_get_group(), add deprecated
5545         alias. (#57044)
5546
5547         * gtk/gtkfilesel.c: Indentation fix.
5548
5549 Thu Jul 12 17:33:00 2001  Owen Taylor  <otaylor@redhat.com>
5550
5551         * gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias 
5552         Hasselmann to fix warnings in compat macros. 
5553         (#56773)
5554
5555         * gtk/gtkmenubar.c (gtk_menu_bar_hierarchy_changed): Fix 
5556         stupid wrong cast added in last patch.
5557
5558 Thu Jul 12 16:51:34 2001  Owen Taylor  <otaylor@redhat.com>
5559
5560         * gtk/gtkwidget.c: Replace a couple of inappropriate calls to 
5561         GTK_WIDGET_HAS_FOCUS() with gtk_widget_is_focus(). (#57067)
5562
5563 Thu Jul 12 14:06:19 2001  Owen Taylor  <otaylor@redhat.com>
5564
5565         * gtk/gtkmenubar.c (gtk_menu_bar_hierarchy_changed): Add
5566         missing cast.
5567
5568         * gtk/gtkcontainer.c (gtk_container_get_focus_chain): Fix
5569         NULL/FALSE return value confusion.
5570
5571         * gtk/gtkrange.c (coord_to_value): Fix division-by-zero
5572         problem when scrollbar completely fills range. (Patch
5573         from  Matthias Clasen, #57047)
5574
5575 Thu Jul 12 13:53:28 2001  Owen Taylor  <otaylor@redhat.com>
5576
5577         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Properly
5578         clean up when handling events for move-resize emulation.
5579         (Problem traced down by Matthias Clasen, #57271)
5580
5581 Thu Jul 12 13:43:27 2001  Owen Taylor  <otaylor@redhat.com>
5582
5583         * gtk/gtkclist.c gtk/gtkcolorsel.c gtk/gtkcombo.c
5584           gtk/gtkctree.c gtk/gtkcurve.c gtk/gtkentry.c
5585           gtk/gtkfontsel.c gtk/gtkhandlebox.c 
5586           gtk/gtkimcontextsimple.c gtk/gtkmain.c gtk/gtkmenu.c
5587           gtk/gtkmenuitem.c gtk/gtkoptionmenu.c gtk/gtkpixmap.c
5588           gtk/gtkselection.c gtk/gtktextdisplay.c gtk/gtktextview.c
5589           gtk/gtktooltips.c gtk/gtkwidget.c gtk/gtkwindow.c:
5590         Formatting fixes from multihead brnach. [ mostly foo(bar) => foo (bar) ]
5591
5592 2001-07-09  Peter Williams  <peterw@ximian.com>
5593
5594         * gtk/Makefile.am ($(srcdir)/stamp-gtk.defs): Add a cd $(srcdir)
5595         for when srcdir != builddir
5596
5597 Mon Jul  9 12:50:51 2001  Jonathan Blandford  <jrb@redhat.com>
5598
5599         * gtk/gtktreemodel.c: remove gtk_tree_model_get_first in favor of
5600         gtk_tree_model_get_iter_root.
5601
5602         * gtk/gtkliststore.c: Add a bunch of g_return statements.
5603         (gtk_list_store_iter_n_children): Fix up.
5604
5605         * gtk/gtktreestore.c: Add a bunch of g_return statements.
5606
5607 Fri Jul  6 15:38:33 2001  Owen Taylor  <otaylor@redhat.com>
5608
5609         * gtk/gtkwidget.c (gtk_widget_class_init):
5610         G_SIGNAL_TYPE_STATIC_SCOPE GtkSelectionData to
5611         restore some workingness.
5612
5613         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Fix 
5614         handle of window type for input-only windows.
5615
5616 Thu Jul  5 21:53:46 2001  Owen Taylor  <otaylor@redhat.com>
5617
5618         * gtk/gtkbbox.[ch] gtk/gtkbox.[ch] gtk/gtk[hv]bbox.c:
5619         Patch from Gregory Merchan to add 
5620         gtk_button_box_set_secondary(), which separates
5621         the child into a separate group from the normal
5622         buttons. (#56331)
5623
5624         * gtk/gtkdialog.c: Make help buttons secondary by
5625         default.
5626
5627         * gtk/gtkbbox.c: Added a child property "secondary".
5628
5629         * gtk/testgtk.c: Turn on the help button for the 
5630         color selector to check that it properly appears
5631         as secondary.
5632
5633 Mon Jul  2 01:09:37 2001  Owen Taylor  <otaylor@redhat.com>
5634  
5635         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkwindow-x11.c
5636         gdk/linux-fb/gdkwindow-fb.c gdk/x11/gdkwindow-x11.c gdk/gdk:
5637         Add gdk_set_pointer_hooks() to allow pointer-querying to
5638         be hooked by an event record/playback system like GERD.
5639         (#56914)
5640         
5641 Thu Jul  5 08:57:07 2001  Owen Taylor  <otaylor@redhat.com>
5642
5643         * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Pass
5644         in the right value of initial_emission to
5645         gtk_widget_set_style_internal (#57091)
5646
5647 Wed Jul  4 23:17:04 2001  Owen Taylor  <otaylor@redhat.com>
5648
5649         * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
5650         Make compile.
5651
5652         * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
5653         with calling gtk_widget_set_style_internal() with
5654         the old style, not the new style. (#56989)
5655
5656 Wed Jul  4 22:35:40 2001  Owen Taylor  <otaylor@redhat.com>
5657
5658         * gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
5659           gtk/gtkwidget.c:
5660         Check GTK_WIDGET_TOPLEVEL(gtk_widget_get_toplevel (widget)),
5661         not GTK_WIDGET_GET_ANCESTOR ... see 
5662         http://mail.gnome.org/archives/gtk-devel-list/2001-July/msg00072.html.
5663         Indicate the best practice in the docs for gtk_widget_get_toplevel().
5664
5665         * gtk/gtkwidget.[ch]: Expose a private _gtk_widget_hierarchy_changed(),
5666         so GtkPlug can give the correct signals when transforming
5667         from a child to a toplevel.
5668         
5669         * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed): Handle
5670         reparentation correctly.
5671
5672         * gtk/gtkwidget.c (gtk_widget_propagate_hierarchy_changed):
5673         Propagate the previous_toplevel argument down properly.
5674
5675         * gtk/gtklabel.c (gtk_label_finalize): Fix unrefing
5676         of wrong atr list.
5677
5678         * gtk/gtkplug.[ch]: Add an "embedded" signal.
5679
5680         * gtk/gtksocket.[ch]: Add "child_added", "child_removed"
5681         signals.
5682
5683         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: Add 
5684         functions gtk_plug_get_id(), gtk_socket_get_id(),
5685         to avoid the user having to worry about realization,
5686         and gdkx.h.
5687
5688         * tests/testsocket.c: Extend to try out the new signals
5689         and gtk_plug/socket_get_id().
5690
5691         * gtk/gtklabel.c (gtk_label_set_pattern_internal): Fix
5692         setting of underline attributes.
5693
5694         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore
5695         DestroyNotify events from SubstructureNotifyMask
5696
5697         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent):
5698         Switch GDK_WINDOW_TYPE (window) as needed.
5699
5700         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Clean up,
5701         allow creation of toplevel windows as children of
5702         foreign windows.
5703
5704         * gtk/gtkplug.c: Remove hacks involving changing private
5705         fields of GdkWindow.
5706
5707         * gtk/gtkplug.[ch] gtk/gtksocket.c: Work to make 
5708         exactly the same signals and notification
5709         be emitted for local embedding as for inter-process
5710         embedding.
5711
5712 2001-07-04  James Henstridge  <james@daa.com.au>
5713
5714         * gtk/gtkliststore.h: add missing gtk_list_store_newv prototype.
5715
5716 Mon Jul  2 16:53:25 2001  Owen Taylor  <otaylor@redhat.com>
5717
5718         * gtk/xembed.h gtk/gtkplug.c gtk/gtksocket.c: For
5719         XEMBED embedding add a _XEMBED_INFO property to the
5720         client with version number and a "mapped" flags.
5721         Use the mapped flag instead of the racy MapRequestEvent
5722
5723         * gtk/gtksocket.c: Clean up the gtk_socket_steal()
5724         code to reliably set things (when the child is a passive
5725         embedder participating in the XEMBED protocol) intead
5726         of just being a hack for embedding non-participating
5727         programs. Fix various bugs and race conditions.
5728         
5729         * gtk/gtksocket.[ch] gtk/gtkplug.[ch]: Make local embedding
5730         work by simply making the GtkSocket the gtk parent
5731         of the GtkPlug. Set a flag in this case and make
5732         the GtkPlug work like a normal container by overriding
5733         methods such as check_resize and "chaining past" GtkWindow
5734         to GtkBin.
5735
5736         * gtk/gtkentry.c (gtk_entry_real_activate)
5737           gtk/gtkmain.c (gtk_propagate_event): 
5738         Eliminate use of gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW).
5739         
5740         * gtk/gtkwidget.c (gtk_widget_get_toplevel,
5741         gtk_widget_get_ancestor):
5742         Explain why gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW)
5743         might not give the expected result and recommend
5744         an alternative.
5745
5746         * tests/testsocket.c tests/testsocket_child.c
5747         tests/testsocket_common.c tests/Makefile.am: Extended
5748         to test different type of adding plugs to sockets
5749         (local,active,passive), and to test mapping/unmapping
5750         the plug.
5751
5752         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Don't
5753         mark the window as destroyed until after we
5754         called _gdk_windowing_window_destroy().
5755         (_gdk_windowing_window_destroy() may use GDK functions
5756         on the window.)
5757
5758         * gdk/x11/gdkinput.c: Remove the check for finalization - 
5759         devices can be finalized under some circumnstances.
5760  
5761         * gdk/x11/gdkinput-x11.c (gdk_input_device_new): Fix 
5762         small problem with GDK_TYPE_DEVICE.
5763  
5764 2001-07-02  Havoc Pennington  <hp@pobox.com>
5765
5766         * gdk/x11/gdkwindow-x11.c (gdk_wmspec_change_state): fix to 
5767         use constants not atoms.
5768
5769 2001-07-02  James Henstridge  <james@daa.com.au>
5770
5771         * gtk/gtktextview.c (gtk_text_view_class_init): same here for
5772         PANGO_TYPE_TAB_ARRAY.
5773
5774         * gtk/gtktexttag.c (gtk_text_tag_class_init): same here, but also
5775         for PANGO_TYPE_TAB_ARRAY.
5776
5777         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
5778         s/GTK_TYPE_PANGO_FONT_DESCRIPTION/PANGO_TYPE_FONT_DESCRIPTION/
5779
5780         * gtk/gtk-boxed.defs: move all the boxed definitions to the top of
5781         the file.  Remove Pango types from defs -- they are now defined in
5782         libpango.
5783
5784 Mon Jul  2 06:35:10 2001  Tim Janik  <timj@gtk.org>
5785
5786         * gdk/gdkkeys.c (gdk_keymap_class_init): s/signal_newc/signal_new/
5787
5788         * gtk/gtkobject.c (gtk_object_destroy): invoke
5789         g_object_run_dispose().
5790
5791         * gtk/gtkwindow.c: 
5792         * gtk/gtkwidget.c: 
5793         * gtk/gtkobject.c:
5794         * gtk/gtklist.c: s/shutdown/dispose/ for the GObject
5795         method.
5796
5797 Sat Jun 30 20:44:48 2001  Owen Taylor  <otaylor@redhat.com>
5798
5799         * gtk/gtktypeutils.c (gtk_type_class): Remove
5800         change check for GTK_TYPE_OBJECT derivation to
5801         G_TYPE_OBJECTS - it's Tim-approved to use this 
5802         for arbitary objects.
5803
5804         * gtk/gtkwindow.c gtk/gtkcontainer.[ch]: underscore
5805         prefix gtk_container_dequeue_resize_handler().
5806
5807         * gtk/gtkwidget.[ch]: Add a previous_toplevel argument
5808         to the hierarachy_changed signal, since you otherwise
5809         have to always keep that around.
5810
5811         * gtk/gtkmenubar.c gtk/gtklabel.c gtk/gtksocket.c: Adapt
5812         for extra argument to hierarchy_changed.
5813
5814 Tue Jun 26 19:39:03 2001  Owen Taylor  <otaylor@redhat.com>
5815
5816         * gtk/gtkwidget.c (gtk_widget_set_style): Allow %NULL
5817         for style to mean "revert to default style"
5818
5819         * gtk/gtkwidget.[ch] (gtk_widget_set_rc_style,
5820           gtk_widget_restore_default_style): Make this functions
5821         deprecated aliases for gtk_widget_set_style (widget, NULL).
5822
5823         * gtk/gtkwidget.[ch]: Remove:
5824            gtk_widget_set_default_style ()
5825            gtk_widget_push_style ()
5826            gtk_widget_pop_style ()
5827         These functions interact are overriden by RC files, and
5828         thus virtually useless, and complicated.
5829
5830 Fri Jun 22 18:49:48 2001  Owen Taylor  <otaylor@redhat.com>
5831
5832         * gtk/gtkrc.c: Add a GtkRcContext structure to hold 
5833         most of the previous global variables in gtkrc.c. This is
5834         in preparation for multi-head, since each screen can
5835         have different GtkSettings and RC information.
5836
5837         * gtk/gtkrc.[ch]: 
5838
5839         * gtk/gtkrc.h (struct _GtkRcStyleClass): Add a
5840         GtkSettings parameter to GtkRcStyle::parse.
5841
5842         * gdk/x11/gdkevents-x11.c gtk/gtksettings.c gtk/gtkrc.c: 
5843         Add two new settings gtk-theme-name, gtk-key-theme-name,
5844         for RC files that are loaded by name after reading
5845         the default RC files.
5846         
5847         * gtk/gtkrc.c: Allow priorities for styles, as wll as
5848         bindings.
5849
5850         * gtk/gtkenums.h gtk/gtkrc.c: Add GTK_PATH_PRIO_THEME,
5851         and use it by default for RC files loaded via 
5852         gtk-theme-name, gtk-key-theme-name.
5853
5854         * gtk/gtkiconfactory.c (gtk_icon_source_set_filename)
5855         gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string) 
5856         tests/testgtkrc: Require pathnames to be absolute.
5857
5858         * gtk/gtkrc.c gtk/gtkiconfactory.c: Look up the full filename for
5859         the source when parsing, since the operation of looking up a
5860         pixmap from an RC file depends on the parsing context.
5861
5862         * gtk/gtkrc.c (gtk_rc_context_reparse_all): Automatically
5863         reset RC styles on all widgets when files are reparsed.
5864
5865         * tests/testgtk.c (create_rc_file) 
5866           gtk/gtkwindow.c (gtk_window_read_rcfiles): 
5867         Simplify, now that gtk_rc_reparse_all() resets styles on
5868         all widgets itself.
5869
5870         * gtk/gtkmain.c (gtk_get_default_language): Fix broken
5871         return value.
5872
5873         * gtk/gtksettings.[ch] (gtk_settings_install_property[_ch]): Remove
5874         GtkSettings argument.
5875
5876         * gtk/gtksettings.[ch] (gtk_settings_get_default): Rename from
5877         gtk_settings_get_global().
5878
5879         * gtk/gtkwidget.[ch]: Add a function gtk_widget_Get_settings()
5880         to get the appropriate GtkSettings for a widget. (For now,
5881         just gets the default GtkSetttings.) 
5882
5883         * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtkmenubar.c
5884           gtk/gtktextview.c gtk/gtktoolbar.c: Fixes for GtkSettings
5885         changes.
5886
5887         * gtk/gtkrc.[ch]: Add gtk_rc_get_style_by_paths() to allow
5888         getting a style for a path without actually having a widget.
5889         (Allows using a style for a subpart of a widget, for
5890         example.)
5891
5892         * gtk/gtkrc.[ch]: Add gtk_rc_reparse_all_for_setting() to allow forcing
5893         the RC files to be reloaded for just one GtkSettings
5894         (not sure how useful this really is.)
5895
5896         * gtk/gtkrc.h: Deprecate
5897         gtk_rc_add_widget_name/widget_class/class_style
5898
5899 2001-06-30  Alex Larsson  <alexl@redhat.com>
5900
5901         * gdk/linux-fb/gdkinput-none.c:
5902         * gdk/linux-fb/gdkinput.c:
5903         * gdk/linux-fb/gdkinputprivate.h:
5904         Convert GdkDevice to a GObject.
5905
5906         * linux-fb/gdkprivate-fb.h:
5907         * linux-fb/gdkvisual-fb.c:
5908         Convert GdkVisual to a GObject.
5909
5910 2001-06-29  Alex Larsson  <alexl@redhat.com>
5911
5912         * gdk/gdkvisual.h:
5913         * gdk/gdkcolor.c:
5914         * gdk/x11/gdkx.h:
5915         * gdk/x11/gdkvisual-x11.c:
5916         Convert GdkVisual to a GObject.
5917
5918         * gdk/gdkinput.h:
5919         * gdk/gdkevents.c:
5920         * gdk/x11/gdkinputprivate.h:
5921         * gdk/x11/gdkinput-gxi.c:
5922         * gdk/x11/gdkinput-none.c:
5923         * gdk/x11/gdkinput-x11.c:
5924         * gdk/x11/gdkinput-xfree.c:
5925         * gdk/x11/gdkinput.c:
5926         Convert GdkDevice to a GObject.
5927
5928 Fri Jun 29 22:13:28 2001  Jonathan Blandford  <jrb@redhat.com>
5929
5930         * gtk/gtktreestore.c (gtk_tree_store_new): changed new_with_types
5931         to just plain new, fixing the number of columns, and column types
5932         at creation time.
5933
5934         * gtk/gtkliststore.c (gtk_list_store_new): ditto.
5935
5936         * gtk/gtkcellrenderertext.c
5937         (gtk_cell_renderer_text_set_fixed_height_from_font): FIX the
5938         height to a specific font.
5939
5940         * gtk/gtktreeview.c (gtk_tree_view_is_expander_column): fix brokenness.
5941
5942         * tests/*c: change to work with new store models.
5943
5944 2001-06-29  Havoc Pennington  <hp@redhat.com>
5945
5946        * Throughout: fixes to compile with G_DISABLE_COMPAT
5947         (s/g_signal_connectc/g_signal_connect/,
5948         s/g_signal_newc/g_signal_new/,
5949         s/g_signal_disconnect_by_func/g_signal_handlers_disconnect_by_func/)
5950
5951 Fri Jun 29 03:14:16 2001  Jonathan Blandford  <jrb@webwynk.net>
5952
5953         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
5954         add path argument to selection callbacks.
5955
5956 Fri Jun 29 00:13:34 2001  Jonathan Blandford  <jrb@redhat.com>
5957
5958         * gtk/gtktreemodel.c (gtk_tree_model_foreach): New function to
5959         walk through a model in a depth first manner, with the option to
5960         break out.
5961
5962 Fri Jun  8 18:52:10 2001  Jonathan Blandford  <jrb@redhat.com>
5963
5964         * gtk/gtktreeview.[hc]: Patch Thomas Broyer from
5965         <tbroyer@ltgt.net>. Expander arrows are now attached to a specific
5966         column and follow it when draged, rather than a location in the
5967         view. "expander_column" property and drawing functions changed
5968         accordingly.  Fixes bug #55942.
5969
5970         (gtk_tree_view_{set,get}_expander_column): Now works with a
5971         GtkTreeViewColumn* instead of int.
5972
5973 Thu Jun 28 22:53:18 2001  Owen Taylor  <otaylor@redhat.com>
5974
5975         *  gdk/gdk.c gtk/gtktypeutils.c: Fix args to g_type_init(). 
5976
5977 2001-06-28  Havoc Pennington  <hp@pobox.com>
5978
5979         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
5980         image data to the screen, using a server grab to avoid race
5981         conditions.
5982
5983         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove 
5984         check for NULL return from gtk_image_new_from_stock(), it never
5985         returns NULL.
5986         (gtk_item_factory_create_item): fix bug where we parsed the stock
5987         ID as an inline pixbuf
5988
5989         * gtk/gtktext.c (gtk_text_key_press): numeric keypad support
5990
5991         * gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
5992         support (should be using binding set here)
5993
5994         * gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
5995         support (should be using binding set here)
5996
5997         * gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad 
5998         support
5999
6000         * gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
6001
6002         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
6003
6004         * gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
6005
6006         * gtk/gtkimcontextsimple.c
6007         (gtk_im_context_simple_filter_keypress): keypad
6008
6009         * gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad 
6010
6011         * gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
6012
6013         * gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
6014
6015         * gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
6016         should be binding-setted)
6017
6018         * gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
6019
6020         * gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
6021
6022         * gtk/gtkcalendar.c: numeric keypad fixes
6023
6024         * gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
6025         support
6026
6027         * gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
6028         screwup
6029
6030         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha): 
6031         clip the render area to the drawable's clip region in advance,
6032         so we don't get data from the server that we don't need.
6033
6034         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
6035         check return value of gdk_pixbuf_get_from_drawable(), fall back 
6036         to bilevel alpha if we can't get the pixbuf to composite against.
6037
6038         * gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
6039
6040         * gdk/gdkimage.c (gdk_image_get_colormap): add
6041         gdk_image_set_colormap, gdk_image_get_colormap
6042
6043         * gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
6044         take a region of the image, instead of converting the entire
6045         image.
6046
6047         * gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
6048         keybinding signal. Add default bindings for it. Add default
6049         handler for show_help that shows the tooltip for the widget.
6050
6051         * gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
6052         "close" keybinding signal, remove key press handler.
6053
6054         * gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
6055         it's not our usual practice to leave a deprecated function around
6056         with a runtime warning, plus we don't want it to appear in docs,
6057         plus if we make them yellow no one will want to change them
6058         anyhow.
6059
6060 Thu Jun 28 23:53:31 2001  Tim Janik  <timj@gtk.org>
6061
6062         * gtk/gtkwidget.c (gtk_widget_hide): !GTK_OBJECT_DESTROYED() ->
6063         GTK_WIDGET_REALIZE() for resize queueing.
6064
6065         * gtk/gtkmain.c (gtk_main_do_event): !GTK_OBJECT_DESTROYED() ->
6066         GTK_WIDGET_REALIZE() for post event delivery destruction upon
6067         GDK_DESTROY.
6068         
6069         * gtk/gtkwidget.c: added GtkWidget::event-after notification signal, to
6070         sompensate for former (pre-2.0) connect_after() facility.
6071         (gtk_widget_send_expose): 
6072         (gtk_widget_event): assert the widget is realized, since event delivery
6073         to non-realized widgets is essentially a bug. event handlers should
6074         be able to unconditionally rely on widget->window (unless they
6075         emit events on their own which can trigger widget destruction).
6076         (gtk_widget_event_internal): removed old outdated GTK_OBJECT_DESTROYED()
6077         logic. event delivery happens as follows:
6078         a) emission of GtkWidget::event (RUN_LAST handler). returns was_handled.
6079         b) if !was_handled in (a) and the widget is still realized, emit event-
6080            specific signal (RUN_LAST handler). returns was_handled.
6081         c) emission of GtkWidget::event-after for notification if the widget is
6082            still realized (regardless of was_handled from previous stages, no
6083            class handler). no return value.
6084         d) was_handled gets passed on to caller, to determine further
6085            propagation. if the widget got unrealized meanwhile, was_handled
6086            is returned as TRUE.
6087
6088         * gdk/gdkevents.[hc]: added gdk_event_get_root_coords() and
6089         gdk_event_get_coords().
6090
6091 Thu Jun 28 17:18:41 2001  Tim Janik  <timj@gtk.org>
6092
6093         * configure.in (GTK_MICRO_VERSION): up version to 1.3.7, interface
6094         age 0, binary age 0. depend on glib 1.3.7.
6095
6096         * gtk/gtkcontainer.c: remove g_signal_handlers_disconnect_by_func() hack.
6097
6098         * gtk/gtkmenubar.c: same here.
6099         
6100         * gtk/gtkcontainer.c (gtk_container_focus_tab): fix param-spec retrival.
6101
6102         * gtk/gtkcolorsel.c (gtk_color_selection_init): fix connect_data() usage.
6103
6104         * gtk/gtkentry.c (gtk_entry_focus_in): same here.
6105         
6106         * gtk/gtkmenubar.c (add_to_window): likewise.
6107         
6108         * gtk/gtktextbtree.c: and here...
6109         
6110         * gtk/gtktextview.c (gtk_text_view_ensure_layout): same thing.
6111         
6112         * gtk/gtktoolbar.c (gtk_toolbar_init): once more.
6113         
6114         * gtk/gtktreemodel.c (connect_ref_callbacks): and another time.
6115         
6116         * gtk/gtktreeviewcolumn.c:
6117         (_gtk_tree_view_column_set_tree_view): yet again.
6118
6119         * demos/gtk-demo/images.c (progressive_timeout): demonstrate
6120         signal connections without g_signal_connect_data().
6121         
6122         * demos/gtk-demo/stock_browser.c (do_stock_browser): second
6123         demo of the matter.
6124         
6125         * demos/testpixbuf.c (main): running out of equality phrases for the
6126         ChangeLog, but had to adapt connections here as well.
6127         
6128         * demos/testanimation.c (progressive_timeout): and for the fun of it,
6129         tackled this the same way.
6130         
6131         * tests/testtext.c (create_view): ok, it's becoming a pain at this
6132         point, but had enough enery for one more fix.
6133
6134         * tests/testtreecolumns.c (main): stand up man, do your work!
6135
6136         * tests/testtreeview.c (set_columns_type): ok, this is the last file i
6137         fix, either that's been all of it or CVS gtk is broken yet again.
6138         
6139 2001-06-29  James Henstridge  <james@daa.com.au>
6140
6141         The following changes correspond to bug #56812
6142
6143         * gdk/gdkinput.h, gdk/gdkevents.c (GDK_TYPE_DEVICE): register type
6144         code for GdkDevice.
6145
6146         * gdk/gdkcursor.[ch] (GDK_TYPE_CURSOR): register type code for
6147         GdkCursor.
6148
6149 2001-06-19  Havoc Pennington  <hp@pobox.com>
6150
6151         * gdk/x11/gdkwindow-x11.c (gdk_window_show_unraised): new function
6152         for mapping a window without fooling with stacking order, but
6153         updating the "withdrawn" flag
6154
6155         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Do event
6156         filtering as soon as possible, moving move resize and wmspec_check
6157         handling after the event filter.  Make default filter apply to all
6158         events, not just those with no GdkWindow wrapped around the X
6159         window. Fix a FIXME about how the window could be a pixmap using 
6160         RTTI; this of course assumes GDK_IS_WINDOW() is optimized. 
6161
6162         Also, be robust against events not on a known GdkWindow.
6163
6164         * gdk/x11/gdkmain-x11.c (gdk_x11_grab_server,
6165         gdk_x11_ungrab_server): export reference-counted server grabs, so
6166         other people can grab server over a GDK function that also does
6167         so.
6168
6169 Wed Jun 27 19:40:31 2001  Jonathan Blandford  <jrb@redhat.com>
6170
6171         * gtk/gtktreeviewcolumn.c
6172         (gtk_tree_view_column_pack_start_cell_renderer): New function to
6173         reflect that you can (hypothetically) pack cell renderers into a
6174         column.
6175         (gtk_tree_view_column_pack_end_cell_renderer): ditto.
6176         (gtk_tree_view_column_cell_is_visible): Move more functionality to
6177         the column.
6178         (gtk_tree_view_column_cell_can_focus): Move more functionality to
6179         the column.
6180
6181         * gtk/gtktreeview.c: Move to use new column-packing code.
6182         (gtk_tree_view_real_expand_row): remove totally braindead code.
6183         (gtk_tree_view_real_collapse_row): ditto.
6184
6185 2001-06-27  Kjartan Maraas  <kmaraas@gnome.org>
6186
6187         * gtk/gtktreeviewcolumn.c: Fix a typo.
6188         
6189 2001-06-26  Joel Becker  <jlbec@evilplan.org>
6190
6191         * gdk-pixbuf/gdk-pixbuf-csource.c: remove '#include "x"' line
6192           at the end of the file
6193
6194 2001-06-26  Havoc Pennington  <hp@redhat.com>
6195
6196         * gtk/gtkwindow.c (gtk_window_set_policy): forgot a notification
6197
6198 2001-06-26  Havoc Pennington  <hp@redhat.com>
6199
6200         * gtk/gtkwindow.c (gtk_window_class_init): add "resizable"
6201         property
6202
6203 Tue Jun 26 12:59:28 2001  Jonathan Blandford  <jrb@redhat.com>
6204
6205         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): fix
6206         stupid missing statement
6207
6208         * gtk/gtktreeview.c (gtk_tree_view_set_destroy_count_func): New
6209         private function for ATK.  It notifies you of how many _visible_
6210         children are deleted when a node is deleted.  Should be used by
6211         atk only.
6212
6213 Tue Jun 26 11:06:34 2001  Owen Taylor  <otaylor@redhat.com>
6214
6215         * gtk/gtkclist.c gtk/gtkentry.c gtk/gtkspinbutton.c:
6216         Use new pango_context_get_metrics() to fix problems
6217         with font lists in descriptions. (#56184, reported by
6218         Jonas Borgström)
6219
6220 Tue Jun 26 10:04:30 2001  Tim Janik  <timj@gtk.org>
6221
6222         * gtk/gtkiconfactory.c:
6223         * gtk/gtkitemfactory.c: use gdk_pixbuf_new_from_stream(). fixed up
6224         item factory so inlined pixbufs actually work.
6225
6226 2001-06-25  Havoc Pennington  <hp@redhat.com>
6227
6228         * gtk/gtktreeviewcolumn.h, gtk/gtktreeviewcolumn.c:
6229         s/RESIZEABLE/RESIZABLE/
6230
6231         * gtk/gtkwindow.c, gtk/gtkwindow.h: s/resizeable/resizable/
6232
6233 2001-06-25  Alexander Larsson  <alexl@redhat.com>
6234
6235         * configure.in:
6236         Added --enable-fbmanager. This is some experimental code
6237         that lets several GtkFB apps coordinate their access to the
6238         framebuffer.
6239         
6240         * acconfig.h:
6241         Added ENABLE_FB_MANAGER.
6242
6243         * gdk/linux-fb/Makefile.am:
6244         Added gdkfbmanager and gdkfbswitch.
6245
6246         * gdk/linux-fb/gdkkeyboard-fb.c:
6247         * gdk/linux-fb/gdkmouse-fb.c:
6248         * gdk/linux-fb/gdkprivate-fb.h:
6249         Split device init and open so that
6250         they can be opened and closed while switched
6251         away.
6252
6253         * gdk/linux-fb/gdkmain-fb.c:
6254         Add the basic manager communication.
6255
6256         * gdk/linux-fb/gdkrender-fb.c:
6257         Don't update to the shadow fb if we're
6258         blocked by the fb manager.
6259
6260 Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
6261
6262         * docs/Changes-2.0.txt: Add note about child property
6263         changes.
6264
6265 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
6266
6267         * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
6268         drag-and-drop GTK_ICON_SIZE_DND (Default to 32x32)
6269
6270         * gtk/gtkdnd.c (gtk_drag_dest_set_target_list): Fix problem
6271         with un'reffing wrong list reported by Jeff Franks.
6272
6273         * gtk/gtkdnd.[ch] (_gtk_drag_{source,}dest_handle_event): _prefix.
6274
6275         * gtk/gtkdnd.c (gtk_drag_set_icon_default): Use GTK_STOCK_DND
6276         for the default icon. Remove inline XPM.
6277
6278         * gtk/gtkstock.h gtk/gtkiconfactory.c:
6279         Add GTK_STOCK_DND GTK_STOCK_DND_MULTIPLE (Currently, stock_new
6280         is used for GTK_STOCK_DND, but it is a bit too small.)
6281
6282         * gtk/stock-icons/stock_dnd_multiple.png
6283         gtk/stock-icons/Makefile.am: New stock icon moved from gnome-libs.
6284
6285         * gtk/gtkdnd.c (gtk_drag_source_event_cb): Only return
6286         TRUE when starting a drag. In other cases, we are
6287         just observing. (#52995)
6288
6289         * gtk/gtkdnd.[ch] (gtk_drag_set_icon_{stock,pixbuf}): Add 
6290         function to set the icon for a drag from a GdkPixbuf
6291         or stock ID.
6292
6293         * gtk/gtkdnd.[ch] (gtk_drag_source_set_icon_{stock,pixbuf}): 
6294         Likewise, for drag sources.
6295
6296         * gtk/gtkdnd.h: Deprecate gtk_drag_set_default_icon.
6297         (Now should be done using the stock system.)
6298
6299 Sun Jun 24 12:06:47 2001  Owen Taylor  <otaylor@redhat.com>
6300
6301         * gtk/gtktextview.[ch] (gtk_text_view_set_text_window_size): 
6302         Removed - didn't work and not particularly useful anyways
6303         if it did. 
6304
6305 Sun Jun 24 11:29:35 2001  Owen Taylor  <otaylor@redhat.com>
6306
6307         * gdk/x11/gdkimage-x11.c (gdk_image_new): Fix stupid error
6308         introduced last night that was making things decidedly not work.
6309
6310         * gtk/*.[ch]: Patch from Kristian Rietveld adding 80 getters
6311         so that we have getter/setter pairing everywhere it makes
6312         sense. (#55767)
6313
6314         * gtk/gtkradiobutton.[ch] gtk/gtktoolbar.c tests/testgtk.:
6315         Rename gtk_radio_button_group to gtk_radio_button_get_group, add a
6316         deprecated compat macro. (#55516)
6317
6318         * gtk/gtklabel.[ch]: Add functions
6319         gtk_label_set/get_use_underline(), gtk_label_set/get_use_markup(),
6320         gtk_label_set_label(), which mirror the property API for GtkLabel.
6321         Make gtk_label_get_attributes() only reflect the attributes
6322         set by gtk_label_set_attributes.
6323
6324         * gtk/gtknotebook.c (gtk_notebook_set_current_page) gtk/gtkcompat.h: Rename
6325         from gtk_notebook_set_page().
6326
6327 Sat Jun 23 18:02:46 2001  Owen Taylor  <otaylor@redhat.com>
6328
6329         * configure.in: Fix tests for XShm.h.
6330
6331         * gdk/x11/gdkimage-x11.c: Cleanup error handling in
6332         gdk_image_new() by use of goto, properly use g_object_unref().
6333
6334 Sat Jun 23 22:03:20 2001  Tim Janik  <timj@gtk.org>
6335
6336         * gdk/x11/gdkimage-x11.c (gdk_image_init): disabled g_free (image)
6337         calls, as GdkImage is an object. these should be g_obejct_unref()
6338         instead but that won't work because of the g_error() statement
6339         in gdk_x11_image_destroy(). so for now, i did s/g_free/LEAK_IMAGE/
6340         to spot these places.
6341
6342 Sat Jun 23 10:27:53 2001  Owen Taylor  <otaylor@redhat.com>
6343
6344         * modules/input/gtkimcontextxim.c: Fixup some problems with 
6345         text length handling in error cases.
6346
6347         * gtk/gtkwidget.c (gtk_widget_size_allocate): Reorder
6348         a bit to make test actually warn on attempt to allocation
6349         a negative size. (#56101, Matthias Clasen)
6350
6351 Fri Jun 22 14:06:08 2001  Jonathan Blandford  <jrb@redhat.com>
6352
6353         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
6354         noticed by Brian Cameron.
6355         (gtk_tree_view_real_expand_row): Fix bug noticed by Brian
6356         Cameron.
6357
6358 2001-06-22  Hans Breuer  <hans@breuer.org>
6359
6360         * gdk/gdk.def : updated externals
6361
6362         * gdk/win32/gdkdrawable-win32.c : corrected some casts
6363         in GDK_NOTEs
6364
6365         * gdk/win32/gdkevents-win32.c : use _gdk_windowing_window_get_offsets
6366         to translate coordinates to the internal > 16 bit system
6367         Try to handle WM_WINDOWPOSCHANGED to get better performance for
6368         when moving/resizing
6369
6370         * gdk/win32/gdkkeys-win32.c : implement gdk_keymap_get_default ()
6371         and gdk_keymap_get_direction (). The latter is untested for
6372         the RTL case
6373
6374         * gtk/gtk.def : updated externals
6375
6376         * gtk/gtkmain.c : gtk_get_default_language () should reurn the result
6377         from pango_language_from_string (), not an already freed pointer
6378
6379         * gtk/stock-icons/stock_menu_sort_ascending.png : PNGs need to be 
6380         binary (-kb) to be useable on windoze
6381  
6382 2001-06-21  Alexander Larsson  <alexl@redhat.com>
6383
6384         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description): 
6385         Update to new PangoLanguage changes.
6386         
6387         * gtk/gtkwindow-decorate.c:
6388         * gtk/gtkwindow.[ch]:
6389         Added setting argument to gtk_window_set_has_frame ()
6390         
6391 Thu Jun 21 13:42:01 2001  Owen Taylor  <otaylor@redhat.com>
6392
6393         * gdk/x11/gdkkeys-x11.c (gdk_keymap_get_direction): Handle
6394         the case without XKB properly.
6395
6396         * gtk/gtkrc.c (gtk_rc_set_default_files): Remove
6397         unused gtk_rc_auto_parse variable.
6398
6399         * gtk/gtkrc.[ch] gtk/gtkstyle.c docs/Changes-2.0.txt:
6400         Remove gtk_rc_set_image_loader(), gtk_rc_load_image(), no
6401         longer needed with GdkPixbuf.
6402
6403         * gtk/gtkrc.c (_gtk_rc_init): Make private.
6404
6405 Fri Jun 15 16:26:12 2001  Owen Taylor  <otaylor@redhat.com>
6406
6407         * gtk/gtkentry.h: Mark deprecated functions with
6408         GTK_DISABLE_DEPRECATED.
6409
6410 Mon Jun 11 18:15:16 2001  Owen Taylor  <otaylor@redhat.com>
6411
6412         * gdk/gdk.h: Add missing gdk_rectangle_get_type() prototype.
6413
6414         * gtk/gtk[hv]scale.c: Include math.h, stdlib.h
6415
6416         * gdk/gdkpango.h gtk/gtkclist.c gtk/gtkentry.c gtk/gtkmain.[ch]
6417           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtktextbuffer.c
6418           gtk/gtktextdisplay.c gtk/gtktextiter.[ch]
6419           gtk/gtktextlayout.c gtk/gtktexttag.[ch] gtk/gtkwidget.c: Adapt
6420           to recent changes in Pango.
6421
6422         * tests/testgtk.c: Set language tags with gtk_label_set_markup()
6423           to test whether the basic engine honors them.
6424
6425 Thu Jun 21 02:13:40 2001  Tim Janik  <timj@gtk.org>
6426
6427         * gtk/gtkcontainer.[hc]: added gtk_container_child_set_property() and
6428         gtk_container_child_get_property().
6429
6430 Wed Jun 20 19:19:15 2001  Jonathan Blandford  <jrb@redhat.com>
6431
6432         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): clean up
6433         (gtk_tree_view_move_cursor_page_up_down): implement.
6434
6435 Wed Jun 20 05:32:05 2001  Tim Janik  <timj@gtk.org>
6436
6437         * gtk/gtkspinbutton.c: make maximum digits compile time configurable
6438         via MAX_DIGITS and up to 20. 5 was just ridiculously small.
6439         don't use automatic fixed size buffer for printf-ing floats, doubles
6440         can expand to really _huge_ strings, use g_strdup_printf() instead.
6441
6442 Wed Jun 20 04:28:24 2001  Tim Janik  <timj@gtk.org>
6443
6444         * gtk/gtkrange.c (gtk_range_class_init): hum, "adjustment" was a
6445         construct property in 1.2 and still needs to be.
6446
6447         * gtk/gtkwidget.c: "composite_child" is not a settable property.
6448
6449 Tue Jun 19 19:13:19 2001  Jonathan Blandford  <jrb@redhat.com>
6450
6451         * gtk/gtkliststore.c (gtk_list_store_clear): 
6452         * gtk/gtktreestore.c (gtk_tree_store_clear): New functions to
6453         clear a model.
6454
6455 Mon Jun 18 02:00:49 2001  Tim Janik  <timj@gtk.org>
6456
6457         * gtk/gtkwidget.c (gtk_widget_get_property): fix PROP_EVENTS.
6458
6459         * gtk/Makefile.am:
6460         * gtk/gtk.h: disabled GtkPacker compilation.
6461
6462         * gtk/gtkarg.[hc], gtk/gtkargcollector.c: got rid of these.
6463
6464         * gtk/gtknotebook.c:
6465         * gtk/gtktable.c:
6466         * gtk/gtkbox.c: ported this over to child properties.
6467
6468         * gtk/gtksettings.c: fetch class properties via
6469         g_object_class_list_properties().
6470
6471         * gtk/gtkcontainer.[hc]: implemented child properties, got rid of the
6472         child arg interface. use gobjectnotifyqueue.c for child property
6473         notification.
6474
6475         * gtk/gtkwidget.[hc]: provide necessary means for container child
6476         properties, i.e. ::child_notify signal,
6477         gtk_widget_freeze_child_notify(),
6478         gtk_widget_child_notify(),
6479         gtk_widget_thaw_child_notify().
6480
6481         * tests/testgtk.c: removed inferior property handling code, for
6482         property editing, a generic module should be used, and GLE
6483         coincidentally fullfills that purpose.
6484
6485         * docs/reference/Makefile.am: disabled gtk docs building, gtk-doc
6486         needs to be adapted to g_object_class_list_properties() before this
6487         builds again.
6488
6489 Mon Jun 18 20:06:10 2001  Jonathan Blandford  <jrb@redhat.com>
6490
6491         * gtk/gtktreeview.c (gtk_tree_view_row_expanded): New function to
6492         test if a node is expanded.
6493
6494 Mon Jun 18 19:41:38 2001  Jonathan Blandford  <jrb@redhat.com>
6495
6496         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
6497         where collapsing a selected row would result in the cursor/anchor
6498         getting screwed up.
6499
6500 Fri Jun 15 18:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
6501
6502         * gtk/gtktreesortable.c (gtk_tree_sortable_set_sort_func): Rename
6503         gtk_tree_sortable_sort_column_id_set_func.  It's much shorter now.
6504         * gtk/gtktreeview.c (gtk_tree_view_sort_iter_changed): WOOO!!!
6505         Now I can really reorder/sort all Store widgets.  treesorttest
6506         seems to just work now.
6507         * gtk/gtklistview.c (gtk_list_store_iter_changed): Whoops.
6508         testtreesort worked through a big coincidence all this time.
6509         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Nasty bug fix in nasty
6510         code.
6511         * tests/testtreecolumns.c: Big 'ol warning at the top letting
6512         people know that this code should never ever ever be copied.
6513
6514 2001-06-15  Jonas Borgström  <jonas@codefactory.se>
6515
6516         * gtk/gtkwindow.h: Fixed a small typo, it should be
6517         GTK_WINDOW_GROUP_GET_CLASS and not GTK_WINDOW_GET_CLASS
6518         on line 134.
6519
6520 2001-06-14  Havoc Pennington  <hp@redhat.com>
6521
6522         Docs fixups, and:
6523         
6524         * gtk/gtkcompat.h: remove GTK_DISABLE_COMPAT_H, replace with
6525         GTK_DISABLE_DEPRECATED
6526
6527 Thu Jun 14 19:21:27 2001  Jonathan Blandford  <jrb@redhat.com>
6528
6529         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Whoops.  Forgot
6530         this a couple months ago.  Now GtkTreeStore sort of sorts.  I'll
6531         finish it off tonight, though it basically works now when it's a
6532         list.  Also, I have a sinking feeling neither GtkTreeStore or
6533         GtkListStore actually resort when adding a new item.  I'll look
6534         into it.
6535
6536 2001-06-14  Havoc Pennington  <hp@redhat.com>
6537
6538         * demos/gtk-demo/main.c (load_file): fix bug identified by
6539         warnings I just added to gtktextbuffer
6540
6541 2001-06-14  Havoc Pennington  <hp@redhat.com>
6542
6543         * gtk/gtkwindow.c (window_group_cleanup_grabs): fix other typo
6544
6545         * gtk/gtkwidget.c (gtk_widget_propagate_state): fix typo
6546
6547         * gtk/gtktextbtree.c: don't leak node data all over the place.
6548
6549         * demos/gtk-demo/main.c (main): create fontify tags for the right
6550         buffer
6551
6552         * gtk/gtktextbuffer.c, gtk/gtktexttagtable.c: enhance docs
6553         to mention tags in the same table can't have the same name,
6554         suggested by Skip Montanaro
6555
6556 2001-06-11  Havoc Pennington  <hp@redhat.com>
6557
6558         * gtk/gtktexttagtable.c (gtk_text_tag_table_add): improve warning 
6559         for trying to add two tags with same name to the tag table
6560
6561         * demos/gtk-demo/main.c (main): fix colors ;-)
6562
6563 `Fri Jun  8 17:56:52 2001  Owen Taylor  <otaylor@redhat.com>
6564
6565         * gtk/gtkwindow.[ch] gtk/gtkmain.c: Add a GtkWindowGroup struct
6566         that allows grouping together multiple windows so that grabs
6567         within that set of windows only affect those windows.
6568
6569         * gtk/gtkmain.c gtk/gtkwidget.[ch]: Add a "grab_notify"
6570         signal for notification when a widget becomes shadowed
6571         by a grab or is no longer shadowed by a grab.
6572
6573         * gtk/gtkwidget.c (gtk_widget_propagate_state)
6574           gtk/gtkmain.c: (gtk_widget_grab_add): Don't allow
6575         insenstive widgets to maintain a grab.
6576
6577 2001-06-14  Alexander Larsson  <alexl@redhat.com>
6578
6579         * docs/README.linux-fb:
6580         Add some example config files that can be used with the URW fonts.
6581         
6582         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init): 
6583         Set up the color ramps for DirectColor mode.
6584
6585 2001-06-11  Havoc Pennington  <hp@redhat.com>
6586
6587         * Release 1.3.6
6588          
6589 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
6590
6591         * gdk/linux-fb/gdkwindow-fb.c:
6592         Unify shaped window code and make it repaint the area that used
6593         to be part of the shape, but isn't anymore.
6594
6595 2001-06-11  Havoc Pennington  <hp@redhat.com>
6596
6597         * NEWS: Updates
6598
6599         * configure.in (GTK_MINOR_VERSION): bump version to 1.3.6
6600
6601         * gtk/Makefile.am: glib_genmarshal already contains top_builddir
6602         
6603 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
6604
6605         * gdk/linux-fb/gdkdnd-fb.c (gdk_drag_status):
6606         Don't pass on GDK_ACTION_DEFAULT. The Xdnd code
6607         passes zero instead, so do we.
6608         
6609 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
6610
6611         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
6612         Deep copy dash_list too.
6613         (_gdk_fb_gc_new): Set default cap_style before
6614         setting values.
6615
6616 2001-06-12  Alexander Larsson  <alla@lysator.liu.se>
6617
6618         * gdk/linux-fb/gdkkeyboard-fb.c (gdk_keymap_get_default,
6619         gdk_keymap_get_direction): New functions.
6620
6621 Tue Jun 12 12:41:27 2001  Jonathan Blandford  <jrb@redhat.com>
6622
6623         * gtk/gtktreemodel.h (GTK_TREE_MODEL_LIST_ONLY): further justify
6624         gtk_tree_model_get_flags by adding a second flag for atk.
6625
6626         * gtk/gtktreemodel.c: make cursor behavior interact better with
6627         mouse presses.
6628
6629 Mon Jun 11 12:43:08 2001  Jonathan Blandford  <jrb@redhat.com>
6630
6631         * gtk/gtktreeview.c (gtk_tree_view_class_init): changed
6632         expand_row/collapse_row to be 2 signals each -- test_expand_row
6633         and row_expanded as well as test_collapse_row and row_collapsed.
6634
6635 2001-06-10  Anders Carlsson  <andersca@codefactory.se>
6636
6637         * demos/gtk-demo/stock_browser.c (do_stock_browser): Update
6638         signal name to be changed instead of selection_changed.
6639
6640 2001-06-08  Havoc Pennington  <hp@redhat.com>
6641
6642         * gtk/gtkentry.c (gtk_entry_class_init): add read-only
6643         "scroll_offset" property for notification when the layout offsets
6644         may have changed
6645         (gtk_entry_adjust_scroll): add notify for scroll_offset
6646         (gtk_entry_layout_index_to_text_index): function to compensate for
6647         preedit string when doing coordinate stuff on the entry's layout
6648         (gtk_entry_text_index_to_layout_index): inverse function
6649         (gtk_entry_get_layout_offsets): hook to get current position of
6650         the layout      
6651         (gtk_entry_get_layout): hook to get the layout itself.
6652
6653         * gtk/gtklabel.c (gtk_label_get_layout): new function
6654
6655 Fri Jun  8 19:49:29 2001  Jonathan Blandford  <jrb@redhat.com>
6656
6657         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): New
6658         keybinding.
6659         (gtk_tree_view_focus): Fix merge conflict.
6660
6661 Fri Jun  8 18:41:30 2001  Jonathan Blandford  <jrb@redhat.com>
6662
6663         * gtk/gtktreeview.c (gtk_tree_view_set_cursor): new function to
6664         clean up cursor handling.
6665
6666 2001-06-08  Havoc Pennington  <hp@redhat.com>
6667
6668         * gtk/gtktextbuffer.c (gtk_text_buffer_get_start_iter): added this
6669         function
6670
6671         * gtk/gtktextview.c (gtk_text_view_get_default_attributes): added
6672         this function
6673
6674 2001-06-08  Alex Larsson  <alexl@redhat.com>
6675
6676         * gtk/gtkcompat.h.in:
6677         Added compat macros for all old GTK_TYPE_GDK_xxx types.
6678         Fixes bug #52892
6679
6680 2001-06-08  Havoc Pennington  <hp@redhat.com>
6681         
6682         * gtk/gtkhsv.h (struct _GtkHSVClass): had GtkContainerClass as
6683         parent still
6684
6685 2001-06-08  Havoc Pennington  <hp@redhat.com>
6686
6687         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): geez,
6688         don't call g_list funcs on GSList
6689
6690         * gtk/gtkwidget.c (gtk_widget_child_focus): replaces
6691         gtk_container_focus(), since some widgets have focusable locations
6692         which are not other widgets. These widgets should not have to be 
6693         containers just to manage the focus. For example, GtkHSV is
6694         currently a container for no good reason. Also, this cleans
6695         up the "if (is_container && is_sensitive && is_drawable)
6696         container_focus ()" mess in widget implementations.
6697
6698         * gtk/gtkcontainer.c (gtk_container_focus): deprecate this
6699         function, and have it just call gtk_widget_child_focus().
6700
6701         * gtk/gtkhsv.c: derive from widget not container
6702         
6703         Throughout: fix to reflect GtkContainer::focus change
6704         
6705 Fri Jun  8 12:38:49 2001  Jonathan Blandford  <jrb@redhat.com>
6706
6707         * gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of
6708         range.  Fix bug #55921
6709
6710         * gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug
6711         (#55920).
6712
6713 Fri Jun  8 12:03:07 2001  Owen Taylor  <otaylor@redhat.com>
6714
6715         * gdk/gdkkeys.[ch]: Add a direction-changed signal,
6716         and gdk_keymap_get_current_direction().
6717
6718         * gdk/x11/gdkevents-x11.c gdk/x11/gdkkeys-x11.c
6719           gdk/x11/gdkmain-x11.c gdk/x11/gdkprivate-x11.h: Track
6720         the current locked group, use it to set the keymap
6721         direction.
6722
6723         * gtk/gtksettings.c: Add a new gtk-split-cursor setting
6724         to determine whether we draw a split cursor or use
6725         a jumping cursor based on the current direction.
6726
6727         * gtk/gtkentry.c gtk/gtktextview.c gtk/gtktextlayout.[ch]:
6728         Obey the split cursor setting. 
6729
6730 Fri Jun  8 11:57:50 2001  Owen Taylor  <otaylor@redhat.com>
6731
6732         * gtk/gtkimmulticontext.c (activate_cb): Only activate
6733         when toggling on, not when toggling off... (#55906)
6734
6735 Wed Jun  6 10:37:07 2001  Owen Taylor  <otaylor@redhat.com>
6736
6737         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): 
6738         s/gdk_window_begin_paint/gdk_window_begin_paint_region/
6739         in docs. (#55812, Vitaly Tishkov)
6740
6741 2001-06-08  Anders Carlsson  <andersca@codefactory.se>
6742
6743         * demos/gtk-demo/main.c (create_tree): Changed signal name from
6744         selection_changed to changed in signal connection to GtkTreeSelection,
6745         also used g_signal_connectc since GtkTreeSelection is now a GObject.
6746
6747 Thu Jun  7 18:25:42 2001  Jonathan Blandford  <jrb@redhat.com>
6748
6749         * gtk/gtktreeselection.c: Now it's a GObject instead of a
6750         GtkObject.  The GtkTreeSelection::selection_changed signal is now
6751         the GtkTreeSelection::changed signal.
6752
6753         * gtk/gtktreeview.c: Modified to deal with new GtkTreeSelection
6754         object.
6755
6756         * tests/gtktree*.c: Modified to deal with new GtkTreeSelection
6757         object.
6758
6759 2001-06-07  Havoc Pennington  <hp@redhat.com>
6760
6761         * gtk/Makefile.am: fix glib-mkenums and glib-genmarshal again
6762
6763 2001-06-07  Havoc Pennington  <hp@redhat.com>
6764         
6765         * gtk/Makefile.am: fixups for glib-mkenums and glib-genmarshal
6766         (not tested yet because with absolute path to srcdir I can't build
6767         atk, but it was broken anyway so this may help) 
6768
6769 2001-06-07  Havoc Pennington  <hp@redhat.com>
6770
6771         * configure.in: output m4macros/Makefile
6772         
6773 Wed Jun  6 21:59:16 2001  Jonathan Blandford  <jrb@redhat.com>
6774
6775         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): hook up arrow
6776         buttons.  Fixes #55460 reported by matthiasc@poet.de.
6777
6778 Wed Jun  6 21:18:54 2001  Jonathan Blandford  <jrb@redhat.com>
6779
6780         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): centralize
6781         expansion/collapsing so it only happens in one place.
6782         (gtk_tree_view_real_expand_row): ditto.
6783
6784 2001-06-07  Havoc Pennington  <hp@redhat.com>
6785
6786         * tests/Makefile.am: add missing -I flag
6787
6788         * gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc.
6789
6790         * configure.in: use pkg-config to see if GModule is
6791         supported; fix to properly turn on included loaders 
6792         when GModule isn't supported; don't use AC_CHECK_LIB 
6793         when libs are not installed yet
6794
6795         * autogen.sh: add support for AUTOGEN_SUBDIR_MODE
6796
6797         * Makefile.am (SUBDIRS): add m4macros subdir
6798
6799         * gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in
6800         dependencies also.
6801
6802 Wed Jun  6 19:31:11 2001  Jonathan Blandford  <jrb@redhat.com>
6803
6804         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix silly bug
6805         reported by "Padraig O'Briain" <Padraig.Obriain@Sun.COM>.
6806
6807 Wed Jun  6 20:01:38 2001  Jonathan Blandford  <jrb@redhat.com>
6808
6809         * gtk/gtktreeview.c
6810         (gtk_tree_view_real_expand_collapse_cursor_row): Handle key
6811         bindings to expand and collapse rows.
6812         (gtk_tree_view_real_select_cursor_parent): New key binding.
6813         (gtk_tree_view_real_toggle_cursor_row): New key binding.
6814
6815         * gtk/gtkmarshal.list: new
6816         marshaller. (VOID__BOOLEAN_BOOLEAN_BOOLEAN)
6817
6818 2001-06-06  Havoc Pennington  <hp@redhat.com>
6819
6820         * gtk/gtkrange.c (gtk_range_class_init): add "inverted" property
6821
6822         * gtk/gtkscale.c (gtk_scale_class_init): Change Page Up and Page
6823         Down to move visually rather than logically, since it confuses 
6824         people. Add -/+ and Ctrl--/+ bindings for logical movement.
6825
6826 2001-06-06  Alex Larsson  <alexl@redhat.com>
6827
6828         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
6829         Fix up error messages.
6830
6831 Wed Jun  6 10:34:42 2001  Owen Taylor  <otaylor@redhat.com>
6832
6833         * gtk/gtktooltips.h: Include gtkwidget.h 
6834         (#55798, Karl Nelson)
6835
6836         * gdk/x11/gdkwindow-x11.c (utf8_is_latin1): 0xff is
6837         a valid latin-1 character. (Marc Lehmann, #35467)
6838
6839         * gdk/x11/gdkwindow-x11.c: Fix minor typo in comment. 
6840         (Marc Lehmann, #35467)
6841         
6842 2001-06-05  Alex Larsson  <alexl@redhat.com>
6843
6844         * demos/gtk-demo/appwindow.c (do_appwindow):
6845         Don't swap the order of the args to gtk_widget_destroyed.
6846
6847         * tests/testgtk.c (destroy_properties):
6848         Don't crash when the properties window is destroyed.
6849
6850         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock):
6851         Use with_mnemonics to handle the case of stock items with
6852         underscores in them.
6853
6854 2001-06-05  Havoc Pennington  <hp@redhat.com>
6855
6856         * gtk/gtktextiter.c (gtk_text_iter_order): rename from 
6857         gtk_text_iter_reorder
6858
6859 2001-06-05  Havoc Pennington  <hp@redhat.com>
6860
6861         * gtk/gtktoolbar.c (gtk_toolbar_remove_space): new function
6862
6863 2001-06-05  Havoc Pennington  <hp@redhat.com>
6864
6865         * gtk/gtkspinbutton.c (gtk_spin_button_set_range): clamp the value 
6866         to the range that was set
6867
6868         * gtk/gtkrange.c: add value_changed signal, primarily 
6869         intended for use with GtkScale
6870         (gtk_range_set_increments): new function
6871         (gtk_range_set_range): new function with weird name
6872         (gtk_range_set_value): new function
6873         (gtk_range_get_value): new function
6874
6875         * gtk/gtkspinbutton.c (gtk_spin_button_get_value): rename 
6876         from gtk_spin_button_get_value_as_float(). Compat #define
6877         added for get_value_as_float.
6878
6879         * gtk/gtkhscale.c (gtk_hscale_new_with_range): new function
6880
6881         * gtk/gtkvscale.c (gtk_vscale_new_with_range): new function
6882
6883 Tue Jun  5 14:57:18 2001  Jonathan Blandford  <jrb@redhat.com>
6884
6885         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_size): Fix bug #55573
6886
6887 Mon Jun  4 12:41:25 2001  Owen Taylor  <otaylor@redhat.com>
6888
6889         * gtk/gtkwidget.h: Deprecate gtk_widget_set().
6890
6891         * tests/testgtk.c (create_tooltips): Remove usage of
6892         gtk_widget_set().
6893
6894 2001-06-05  Havoc Pennington  <hp@redhat.com>
6895
6896         * gtk/gtkcolorsel.c: Use new mnemonic convenience functions
6897
6898         Applying patch from Jeff Franks, with function docs added.
6899         
6900         * gtk/gtkcheckbutton.c (gtk_check_button_new_with_mnemonic):
6901         remove call to set_mnemonic_widget, change docs a bit.  
6902
6903         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_with_mnemonic):
6904         new function
6905
6906         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_new_with_mnemonic):
6907         new function
6908
6909         * gtk/gtkmenuitem.c (gtk_menu_item_new_with_mnemonic): new function
6910
6911         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic): new
6912         function
6913         (gtk_radio_button_new_with_mnemonic_from_widget): new function
6914
6915         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_new_with_mnemonic):
6916         new function
6917
6918         * gtk/gtktogglebutton.c (gtk_toggle_button_new_with_mnemonic): new
6919         function        
6920
6921         * gtk/gtklabel.c (gtk_label_new_with_mnemonic): Improve docs on 
6922         auto-selection of mnemonic widget.
6923
6924 Mon Jun  4 15:05:24 2001  Jonathan Blandford  <jrb@redhat.com>
6925
6926         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_max_width):
6927         Fix segfault found by Vitaly Tishkov <tvv@sparc.spb.su>.
6928         (gtk_tree_view_column_set_min_width): ditto.
6929
6930 Tue Jun  5 11:04:06 2001  Owen Taylor  <otaylor@redhat.com>
6931
6932         * gdk/gdkpixmap.h (GDK_PIXMAP_GET_CLASS): 
6933         s/GdkPixmapClass/GdkPixmapObjectClass/. (#51890, Jeff Franks)
6934
6935 Mon Jun  4 12:50:11 2001  Owen Taylor  <otaylor@redhat.com>
6936
6937         * gtk/gtkctree.c (gtk_ctree_insert_gnode): Add a missing
6938         gtk_clist_thaw().
6939
6940 2001-06-04  Havoc Pennington  <hp@pobox.com>
6941
6942         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore 
6943 r       eleases for buttons 6, 7
6944
6945 2001-06-04  Havoc Pennington  <hp@redhat.com>
6946
6947         * gtk/gtkseparatormenuitem.h: Fix a search-and-replace screwup
6948         (s/CHECK/SEPARATOR/ gone awry). Patch from Jeff Franks, bug
6949         #55562
6950
6951 2001-06-04  Havoc Pennington  <hp@redhat.com>
6952
6953         * gtk/gtktextview.c (gtk_text_view_size_request): handle case
6954         where text_view->layout == NULL by assuming its size is 0, 
6955         i.e. same as if we haven't done any reflow. Reported by 
6956         Hidetoshi Tajima #55448 
6957
6958 2001-06-04  Havoc Pennington  <hp@redhat.com>
6959
6960         * gdk/x11/gdkevents-x11.c (gdk_event_translate): support button 6
6961         and 7 for scroll left/right, from Thomas Broyer
6962
6963 2001-05-10  Havoc Pennington  <hp@redhat.com>
6964
6965         * gtk/gtksettings.c (gtk_settings_get_property): Handle case where
6966         we need to parse the xsetting as if it were an RC file string.
6967
6968         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): load initial
6969         value of palette from settings, not from static variable
6970
6971         * gdk/x11/gdkevents-x11.c: add color palette, toolbar mode to
6972         xsettings translation table
6973
6974         * gtk/gtktoolbar.c (gtk_toolbar_new): Remove arguments, because 
6975         hardcoding the toolbar style conflicts with new customizable 
6976         toolbar style philosophy
6977         (gtk_toolbar_class_init): add settings for default toolbar style;
6978         these are used unless the app specifically forces a toolbar style
6979
6980         * gtk/gtksettings.c (settings_install_property_parser): only
6981         return at the start if we warn and parser == NULL
6982
6983         * gtk/gtkcolorsel.c (gtk_color_selection_finalize): disconnect the
6984         palette changed handler so we don't notify dead color selections
6985
6986         * gtk/gtkstyle.c (gtk_default_draw_shadow): handle
6987         xthickness/ythickness of 0 or 1 properly 
6988         (gtk_default_draw_resize_grip): clear the background behind the
6989         resize grips, and align to bottom right if we square the 
6990         area to be drawn.
6991
6992         * gtk/gtkstatusbar.c (gtk_statusbar_init): set horizontal usize on 
6993         statusbar label to 1, so it doesn't make toplevels resize oddly
6994         (gtk_statusbar_size_request): add grip size to request
6995         (gtk_statusbar_size_allocate): hack so the hbox still works with 
6996         the grip size in the request
6997
6998         * gtk/gtktoolbar.c (gtk_toolbar_show_all): override to fix 
6999         bug where showing all on a toplevel makes the toolbar 
7000         button text appear despite the toolbar mode
7001
7002         * gtk/gtkmenubar.c: add internal padding style property
7003
7004         * gtk/gtktoolbar.c: Add internal padding style property; add
7005         shadow type style property
7006
7007         * gtk/gtkmenubar.c (gtk_menu_bar_paint): paint box with widget
7008         state; and put Container::border_width outside the frame
7009
7010         * gtk/gtktextview.c: don't draw focus rectangle if we're in
7011         interior focus mode, we just use blinking cursor
7012
7013 2001-06-04  Havoc Pennington  <hp@redhat.com>
7014
7015         * configure.in: Make gdk-pixbuf have same version number as GTK
7016
7017 2001-06-04  Havoc Pennington  <hp@redhat.com>
7018
7019         * gtk/gtkspinbutton.c: Get rid of stupid g_return_if_fail on 
7020         digits greater than 6. If there actually are limits (which there
7021         likely aren't), should clamp to them not warn.
7022         (gtk_spin_button_new_with_range): don't take log of 0
7023         (gtk_spin_button_size_request): use digits to compute size
7024         request, rather than step increment.
7025
7026         * tests/testgtk.c (create_spins): test larger values of digits
7027         
7028         * gtk/gtkfontsel.c (gtk_font_selection_init): scroll to selected
7029         font on map not expose, so we don't get weirdness during scrolling
7030
7031 2001-06-04  Havoc Pennington  <hp@redhat.com>
7032
7033         * gtk/gtkclist.c (vadjustment_value_changed): Apply fix from
7034         Sam Solon, bug #54577, update value even if not drawable.
7035
7036 2001-06-04  Havoc Pennington  <hp@redhat.com>
7037
7038         * gtk/gtkrange.c (gtk_range_scroll_event): change SCROLL_RIGHT to
7039         SCROLL_LEFT, reported by Thomas Broyer.
7040
7041 2001-06-04  Havoc Pennington  <hp@redhat.com>
7042
7043         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): 
7044         Process updates immediately, to prevent funny lag effect
7045         when scrolling, at some mild potential efficiency cost.
7046
7047 2001-06-04  Havoc Pennington  <hp@redhat.com>
7048
7049         * gtk/gtkrange.c (gtk_range_button_press): on middle click, center
7050         slider on the click.
7051
7052 2001-06-03  Havoc Pennington  <hp@pobox.com>
7053
7054         * gtk/gtkstyle.c (gtk_default_draw_slider): make this special-case
7055         hscale/vscale details, so we can use it for scrollbar as well.
7056
7057         * tests/testgtk.c (reformat_value): honor digits from GtkScale
7058
7059         * gtk/gtkenums.h (GtkTroughType): Remove this enum
7060         (GtkScrollType): add START and END from GtkTroughType
7061
7062         * gtk/gtkstyle.c (gtk_default_draw_slider): was not properly using
7063         its x/y arguments
7064
7065         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkscrollbar.h,
7066         gtk/gtkscrollbar.c, gtk/gtkscale.h, gtk/gtkscale.c,
7067         gtk/gtkhscrollbar.h, gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.h,
7068         gtk/gtkvscrollbar.c, gtk/gtkhscale.h, gtk/gtkhscale.c,
7069         gtk/gtkvscale.h, gtk/gtkvscale.c: Rewrite GtkRange and subclasses.
7070
7071         Notable changes in the process:
7072          
7073         - stepper_size style property is the height for vertical 
7074           ranges, width for horizontal; the other dimension matches
7075           the trough size
7076         - add ability to do NeXT-style steppers (and several other styles
7077           that don't make any sense)
7078         - added min_slider_length, fixed_slider_length properties to
7079           GtkScrollbar
7080         - cleaned some private (or at least useless) functions out of
7081           gtkscale.h    
7082         - moved bindings to GtkScale from subclasses, even arrow keys,
7083           since blind users don't know scale orientation.
7084         - change move_slider action signal to use new GtkScrollType,
7085           remove GtkTroughType argument
7086         - digits rounds the values a range will input to the given 
7087           number of decimals, but will not try to force adjustment 
7088           values set by other controllers. That is, we no longer
7089           modify adjustment->value inside a value_changed handler.
7090         - added getters for GtkScale setters
7091         - middle-click begins a slider drag
7092         
7093 Fri Jun  1 18:54:47 2001  Jonathan Blandford  <jrb@redhat.com>
7094
7095         * gtk/gtktreeview.c: (gtk_tree_view_focus): Initial stab at
7096         getting the focus code to work.
7097         (gtk_tree_view_class_init): Add a bunch of keybindings.
7098
7099         * gtk/gtktreeviewcolumn.c
7100         (gtk_tree_view_column_set_cell_data_func):
7101         s/GtkCellDataFunc/GtkTreeCellDataFunc.
7102         (_gtk_tree_view_column_set_tree_view): Use "notify::model" instead
7103         of "properties_changed" to help justify the death of the latter
7104         signal. (-:
7105
7106         * tests/testtreefocus.c (main): Let some columns be focussable to
7107         test focus better.
7108
7109 2001-06-01  Havoc Pennington  <hp@redhat.com>
7110
7111         * gtk/gtkentry.c (gtk_entry_commit_cb): implement overwrite mode
7112         
7113         * gtk/gtktextview.c (gtk_text_view_commit_handler): don't
7114         overwrite in overwrite mode if we already deleted the selection
7115         and replaced it with new text.  
7116
7117         * gtk/gtklabel.c (gtk_label_select_region_index): if you set the
7118         selection to an empty range, clear the clipboard if we owned it.
7119         (gtk_label_set_selectable): give up selection if we become
7120         unselectable.
7121         (gtk_label_state_changed): override state changed to unselect text
7122         when insensitive
7123         (get_text_callback): add paranoia check that indexes aren't
7124         outside of label->text
7125         (gtk_label_select_region): make -1 for start_offset mean "end of
7126         label," for consistency with GtkEditable
7127
7128         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): honor
7129         GTK_DIALOG_NO_SEPARATOR flag
7130
7131 Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
7132
7133         * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
7134         notifications on non-existant "enable_arrow_keys".
7135         (#53753, Skip Montanaro)
7136
7137 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
7138
7139         * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
7140         GDK_TYPE_RECTANGLE.
7141
7142         * gtk/gtkwidget.c (gtk_widget_class_init): Fix type
7143         of allocation argument be GDK_TYPE_RECTANGLE.
7144
7145 Thu May 31 12:43:57 2001  Owen Taylor  <otaylor@redhat.com>
7146
7147         * gtk/gtkoptionmenu.c: Account for the fact that the border
7148         width is _outside_ the window. (Fixes #54585, bug found
7149         by Bastien Nocera.)
7150
7151 Wed May 30 15:56:30 2001  Owen Taylor  <otaylor@redhat.com>
7152
7153         * gtk/gtksettings.c (gtk_settings_get_property): Validate
7154         value from GDK settings against parameter spec.
7155
7156         * gdk/x11/gdkevents-x11.c (gdk_setting_get): Add assignments
7157         to temporary values and use g_value_transform(), since
7158         thinking that GValue was going to be easy or efficient
7159         to use was, of course, a mistake.
7160
7161         * gtk/gtksettings.c: Add cursor blink setting.
7162         
7163         * gdk/x11/gdkevents-x11.c: Add cursor blink X settings.
7164
7165         * gtk/gtkentry.c: Add cursor blinking.
7166
7167         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): Use
7168         cursor blink global settings.
7169
7170         * gtk/gtkentry.c (gtk_entry_button_press): Add notification
7171         for :text_position in places where it is missing.
7172
7173 Tue May 29 18:17:11 2001  Owen Taylor  <otaylor@redhat.com>
7174
7175         * autogen.sh (have_libtool): Fix GNU sedism (#55430)
7176
7177 Tue May 29 17:40:29 2001  Owen Taylor  <otaylor@redhat.com>
7178
7179         * configure.in (GTK_DEP_CFLAGS): Use $PKG_CONFIG,
7180         not pkg-config. (#51032)
7181
7182         * gdk/gdkproperty.h: Remove inappropriate G_GNUC_CONST
7183         (fixes #51952, James Henstridge)
7184         
7185 2001-05-27  Alexander Larsson  <alla@lysator.liu.se>
7186
7187         * gtk/gtkstock.h (GTK_STOCK_GO_UP):
7188         Rename to the more correct gtk-go-up.
7189
7190         * gtk/stock-icons/stock_menu_sort_ascending.png:
7191         Added new file.
7192         
7193         * gtk/stock-icons/stock_menu_sort_descending.png:
7194         Changed to show descending instead of ascending.
7195
7196         * gtk/gtkiconfactory.c:
7197         Added menu size icon to sort ascending.
7198
7199         * gtk/stock-icons/Makefile.am:
7200         Added stock_menu_sort_ascending.png.
7201         
7202         * gtk/gtkseparatormenuitem.c:
7203         Use correct typenames.
7204
7205 Sun May 20 20:07:35 2001  Tim Janik  <timj@gtk.org>
7206
7207         * gtk/gtksignal.[hc] (gtk_signal_connect_full): make hanlder id a
7208         gulong as in GSignal.
7209
7210 Fri May 25 19:04:17 2001  Jonathan Blandford  <jrb@redhat.com>
7211
7212         * gtk/gtktreeview.c (gtk_tree_view_calc_size): Remove almost all
7213         instances of GtkCellRenderer in code (all but dnd icon code).
7214         Virtualized in GtkTreeViewColumn.  Now I need to move focus in
7215         there, and I can do multiple Cells per column.
7216
7217         * gtk/gtktreeviewcolumn.c: Proxy all cell calls correctly
7218
7219         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): fix bug
7220         when model was unreffed prior to removing the row reference.
7221
7222 2001-05-25  Havoc Pennington  <hp@redhat.com>
7223
7224         * gtk/gtkiconfactory.c: fix so that default icons are created if 
7225         you call gtk_stock_list_ids()
7226
7227         * demos/gtk-demo/stock_browser.c (create_model): sort stock items
7228         in list
7229
7230 2001-05-25  Havoc Pennington  <hp@redhat.com>
7231
7232         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): get sizes an icon
7233         set can render without falling back to missing image icon
7234
7235         * gtk/gtktextview.c (gtk_text_view_size_request): request full
7236         size of text, instead of random values
7237
7238         * gtk/gtktreeview.c (gtk_tree_view_size_request): request full
7239         size of tree view, instead of random values
7240
7241         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): render fallback
7242         image in an appropriate size
7243
7244         * gtk/gtkstock.h: Rename the stock items including _BUTTON_,
7245         etc. not to include that. i.e. s/GTK_STOCK_BUTTON_OK/GTK_STOCK_OK/
7246
7247         Throughout: fix GTK_STOCK_BUTTON_ instances
7248         
7249         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
7250         gtk/gtkiconfactory.c, gtk/stock-icons/Makefile.am:
7251         Add a bunch of new stock items/icons
7252
7253         * gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
7254         new function, convenience for inserting columns with a data func
7255
7256         * gtk/gtkiconfactory.c: keep a list of all existing icon factories
7257         (_gtk_icon_factory_list_ids): use list of all factories to
7258         generate a list of all known IDs
7259
7260         * gtk/gtkstock.c (gtk_stock_list_ids): replace
7261         gtk_stock_list_items() with a function that returns all IDs known
7262         including those for GtkIconFactory.
7263
7264 2001-05-25  Hans Breuer  <hans@breuer.org>
7265
7266         * gdk/win32/gdkgc-win32.c : made fil mode GDK_STIPPLED actually
7267         work -> check boxes and radio buttons are drawn now, even on win9x.
7268         Improved line settings a bit, still no clue how to get really dotted
7269         lines on win9x, on NT it's PS_ALTERNATE.
7270
7271         * gdk/win32/gdkwindow-win32.c : use SafeAdjustWindowRect for 
7272         GDK_HINT_MIN_SIZE as well
7273
7274         * gdk/win32/makefile.am : added gdkkeys-win32.c to EXTRA_DIST
7275
7276         * gtk/gtk.def : updated
7277
7278         * gtk/gtktreeprivate.h : change column_drop_func to be a function
7279         pointer not a function pointer pointer
7280
7281         * tests/testdnd.c : include <stdlib.h> for putenv prototype
7282
7283         * tests/testsocket.c : made it compile on win32 again
7284
7285         * tests/makefile.msc : one more test-app uses prop-editor.obj
7286
7287 2001-05-22  Havoc Pennington  <hp@pobox.com>
7288
7289         * gtk/gtkbin.c (gtk_bin_get_child): New function
7290
7291 Wed May 23 20:07:53 2001  Owen Taylor  <otaylor@redhat.com>
7292
7293         * gtk/gtkimcontextsimple.c: Add Mode_Switch to list of keys
7294         to ignore when doing compose processing.
7295
7296 2001-05-22  Joe Shaw  <joe@ximian.com>
7297
7298         * gtk/gtktextiter.c (_gtk_text_btree_get_iter_at_last_toggle): 
7299         Simplify as suggested by Havoc. Just get the last iter and work
7300         backward to the tag instead of getting a line and working back from
7301         there. Fixes passing in an invalid offset to
7302         iter_init_from_byte_offset().
7303
7304 Tue May 22 16:25:27 2001  Jonathan Blandford  <jrb@redhat.com>
7305
7306         * gtk/gtktreeview*.h: 
7307         * gtk/gtkcell*.h:
7308         * gtk/gtk*store.h:
7309         Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS
7310         macros to all objects.
7311
7312 Tue May 22 15:13:52 2001  Jonathan Blandford  <jrb@redhat.com>
7313
7314         * gtk/gtkcellrenderertext.c
7315         (gtk_cell_renderer_text_set_fixed_size): Evil function to deal
7316         with very large (TM) amounts of text.  May be moved to
7317         GtkCellRenderer in the future, though I'm not sure it wants to be
7318         this accessible.
7319
7320         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
7321         More sanity brought to this class.  I like it.
7322
7323         * tests/testtreecolumns.c (ViewColumnModel): Amazingly scary test
7324         case.  Kids, don't try this at home.
7325
7326         * gtk/gtktreemodel.c (gtk_tree_model_get_iter_root): new
7327         convenience function.
7328
7329         * gtk/gtkwindow.c (gtk_window_set_geometry_hints): Fix typo in docs.
7330
7331 2001-05-21  Alexander Larsson  <alexl@redhat.com>
7332
7333         * gtk/gtkfontsel.c:
7334         Added properties. Based on patch by Lee Mallabone.
7335
7336         * gtk/gtkruler.c:
7337         * gtk/gtkhruler.c:
7338         * gtk/gtkvruler.c:
7339         * gtk/gtktext.c:
7340         * gtk/gtktextview.c:
7341         Converted GtkArg to GParam. Based on patches by John Margaglione.
7342
7343         * tests/Makefile.am:
7344         * tests/testtext.c:
7345         Add a property editor to testtext.
7346         
7347 Mon May 21 11:29:21 2001  Owen Taylor  <otaylor@redhat.com>
7348
7349         * gtk/gtk{h,v,}paned.c: Only show the separator if 
7350
7351         * configure.in: Fixed reversed conditional causing all image
7352         libraries to be linked in.
7353
7354 2001-05-21  Joe Shaw  <joe@ximian.com>
7355
7356         * gtk/gtklayout.c (gtk_text_layout_get_lines): Remove the assertion
7357         that top_y needs to be >= 0.
7358
7359 2001-05-11  Havoc Pennington  <hp@pobox.com>
7360         
7361         * gdk/x11/gdkmain-x11.c: Improve error messages for X errors and
7362         losing connection to the X server.
7363
7364 Sun May 20 13:59:20 2001  Owen Taylor  <otaylor@redhat.com>
7365
7366         * configure.in: Start checks for X from pangox/pangoxft
7367         CFLAGS to avoid duplicate libraries.
7368
7369         * gdk/Makefile.am (LDFLAGS): Remove extra -lm.
7370
7371         * configure.in (GDK_PIXBUF_PACKAGES): Fix GDK_PIXBUF_PACKAGES
7372         to include gobject.
7373         
7374 2001-05-18  Alexander Larsson  <alexl@redhat.com>
7375
7376         * gtk/gtkspinbutton.c:
7377         Convert GtkArgs to GParams. Based on patch by John Margaglione.
7378         Also do size request reasonable for MAXDOUBLE. Previously it printed
7379         the limits to a buffer and overran it. Instead do it using log10() and
7380         limit the width to 10 digits.
7381         
7382         * gtk/gtkwidget.c (gtk_widget_get_property):
7383         Correctly handle setting the parent property to NULL.
7384
7385 Fri May 18 15:26:26 2001  Owen Taylor  <otaylor@redhat.com>
7386
7387         * gtk/gtktextview.c (gtk_text_view_style_set): Reset 
7388         style attributes even if the widget isn't realized.
7389
7390         * demos/gtk-demo/main.c: Use a slightly smaller font.
7391
7392 Fri May 18 14:25:20 2001  Owen Taylor  <otaylor@redhat.com>
7393
7394         * gtk/gtkcontainer.c: Remove reallocate-redraws property.
7395         This is something that only a widget writer would ever want
7396         to change.
7397
7398         * gtk/gtksignal.c: Handle G_SIGNAL_TYPE_STATIC_SCOPE for
7399         gtk_signal_emit_by_name().
7400
7401         * gtk/gtkviewport.c: Fix some warnings.
7402
7403         * gtk/gtkwidget.c gtk/gtksizegroup.c: Add "size group" facility
7404         allowing the requisitions of multiple widgets to be grouped
7405         together.
7406
7407         * tests/testgtk.c: Add GtkSizeGroup test
7408
7409         * demos/gtk-demo/sizegroup.c: Add GtkSizeGroup demo.
7410
7411         * demos/gtk-demo/main.c demos/gtk-demo/pixbufs.c: Fix some
7412         warnings.
7413
7414         * configure.in: Switch to using AM_GLIB_GNU_GETTEXT.
7415
7416 2001-04-28  Martin Baulig  <baulig@suse.de>
7417
7418         * gtk/gtkimagemenuitem.[ch]: Renamed gtk_image_menu_item_add_icon()
7419         to gtk_image_menu_item_set_icon() and made it work if there's already
7420         an image.
7421         (gtk_image_menu_item_new): This function doesn't take any arguments anymore.
7422         (gtk_image_menu_item_new_with_label): New function.
7423
7424 Thu May 17 16:20:04 2001  Jonathan Blandford  <jrb@redhat.com>
7425
7426         * demos/gtk-demo/main.c (fontify): It's the worlds ugliest
7427         highlighting code!!!!  The result is okay so long as you don't try
7428         to stress it.  It also highlights a bug in the TextView so it's in
7429         an unproportional font right now until it's fixed.
7430
7431         *demos/gtk-demo/*.c: Clean up code a bit to make it
7432         ugly-parser(TM) friendly. (-:
7433
7434 2001-05-17  Joe Shaw  <joe@ximian.com>
7435
7436         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove the assertions
7437         that x_offset and y_offset must be >= 0. Clip the cursor being drawn
7438         if it is only partially onscreen.
7439
7440 Thu May 17 17:10:13 2001  Owen Taylor  <otaylor@redhat.com>
7441
7442         * gtk/gtkentry.c: Make logical motion and deletion by graphemes, 
7443         not by characters.
7444
7445         * gtk/gtkentry.c: Handle "trailing" returns from Pango when they
7446         are not zero or one; that is, when graphemes of multiple characters
7447         are involved.
7448
7449         * gtk/gtktextlayout.c (line_display_index_to_iter): Remove unnecessary
7450         FIXME.
7451
7452 2001-05-17  Alexander Larsson  <alla@lysator.liu.se>
7453         
7454         * gtk/gtkbbox.c:
7455         Add properties, based on patch by Lee Mallabone.
7456
7457         * gtk/gtknotebook.c:
7458         * gtk/gtktoolbar.c:
7459         Convert from GtkArg to GParam, based on patch by John Margaglione.
7460         
7461         * gtk/gtkhscale.c:
7462         * gtk/gtkvscale.c:
7463         * gtk/gtkhscrollbar.c:
7464         * gtk/gtkvscrollbar.c:
7465         * gtk/gtkrange.c:
7466         Move adjustment property to GtkRange.
7467
7468         * gtk/gtklabel.c:
7469         Setup mnemonics on property changes
7470
7471         * gtk/gtkwidget.c (gtk_widget_get_property):
7472         GdkExtensionMode is an enum, not a flag. Set it with
7473         g_value_set_enum ().
7474
7475         * tests/prop-editor.c:
7476         Better propery editor.
7477
7478         * tests/testgtk.c:
7479         Add new property test. Pass zero to the property editor to
7480         get properties from all derived types.
7481         
7482 Sun May 13 12:01:12 2001  Owen Taylor  <otaylor@redhat.com>
7483
7484         * autogen.sh (have_automake): Require libtool-1.4,
7485         automake-1.4p1.
7486
7487         * acinclude.m4: Remove libtool macros.
7488
7489         * gdk-pixbuf/Makefile.am: Add dependencies to loade
7490         modules.
7491
7492         * gdk/Makefile.am: Add dependency on libgdk_pixbuf.la
7493         for libgdk.
7494
7495         * gtk/Makefile.am: Add dependency on libgdk_pixbuf.la
7496         libgdk.la for libgtk.
7497
7498         * modules/input/Makefile.am: Make modules have full
7499         dependencies.
7500
7501 Wed May 16 14:06:01 2001  Jonathan Blandford  <jrb@redhat.com>
7502
7503         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): fix bug
7504         #54699 where paths weren't being checked for correctness.
7505
7506 Tue May 15 20:13:24 2001  Jonathan Blandford  <jrb@redhat.com>
7507
7508         * gtk/gtktreeviewcolumn.c: You can now set all sorts of properties
7509         in any order you wan, whether or not the column is added to the
7510         tree, or the tree is realized.  Yay!
7511
7512         * gtk/gtktreeviewcolumn.c
7513         (gtk_tree_view_column_setup_sort_column_id_callback): handle
7514         sorting columns a lot saner
7515
7516         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_reorderable):
7517         new function to actually set wether or not a column is
7518         reorderable.
7519
7520         * gtk/gtktreeview.c (gtk_tree_view_unrealize): Only destroy things
7521         if we have 'em.
7522
7523         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_set_tree_view):
7524         Fix nasty bug where we were showing the button just before
7525         realizing it.  As a result, the parent window was
7526         tree_view->window instead of tree_view->priv->header_window.
7527
7528         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable): new property
7529         to let you easily reorder a list or tree.
7530
7531 2001-05-15  Alexander Larsson  <alla@lysator.liu.se>
7532
7533         * gtk/gtkpacker.c: Apply patch from John Margaglione that converts
7534         from args to properties.
7535
7536 Tue May 15 10:11:59 2001  Owen Taylor  <otaylor@redhat.com>
7537
7538         * gtk/gtkpreview.c: Apply patch from John Margaglione converting
7539         from args to properties. (#51957)
7540
7541         * gtk/gtkscale.c (gtk_scale_class_init): Move install property
7542         calls to after ->set_property call.
7543
7544 Mon May 14 14:56:21 2001  Owen Taylor  <otaylor@redhat.com>
7545
7546         * tests/prop-editor.c: Block against redundant changes.
7547
7548         * gtk/gtkpaned.c gtk/gtk[hv]paned.c: Add position, position_set
7549         properties.
7550
7551 Sun May 13 18:40:04 2001  Owen Taylor  <otaylor@redhat.com>
7552
7553         * gdk/gdkpixmap.h: Remove creative formatting.
7554
7555 Thu May 10 19:22:28 2001  Owen Taylor  <otaylor@redhat.com>
7556
7557         * gtk/gtktogglebutton.c:  Patch from John Margaglione converting to
7558         property API. (#51669)
7559
7560         * gtk/gtkscale.c: Patch from John Margaglione converting to
7561         property API. (#51891)
7562
7563         * gtk/gtkaccellabel.c: Applied patch from Lee Mallabone, converting
7564         to property API. (#50985)
7565
7566 Fri May 11 20:13:44 2001  Tim Janik  <timj@gtk.org>
7567
7568         * gtk/gtkmain.c (gtk_main_do_event): remember widget's double
7569         buffering state across expose event, so we still call end_paint().
7570
7571 2001-05-11  Alexander Larsson  <alexl@redhat.com>
7572
7573         * gtk/gtkhsv.c (paint_triangle):
7574         Expose the ring in the triangle at the correct place when
7575         exposing just a part of the triangle.
7576
7577         * gtk/gtkwindow-decorate.c (gtk_decorated_window_focus_change):
7578         Return FALSE, or window focusing will not work.
7579
7580 2001-05-11  Havoc Pennington  <hp@pobox.com>
7581
7582         * gtk/gtkimage.c (gtk_image_new_from_stock): docs, fixes bug
7583         #54144
7584
7585         * gtk/gtkcolorsel.c (gtk_color_selection_new): docs, fixes
7586         bug #54330
7587
7588 Fri May 11 02:53:57 2001  Tim Janik  <timj@gtk.org>
7589
7590         * gtk/gtktogglebutton.c (gtk_toggle_button_expose): don't
7591         propagate exposes to NULL child.
7592
7593         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed): guard
7594         against not having one of the scrollbars.
7595
7596         * gtk/gtklabel.c (gtk_label_setup_mnemonic): clean up after us,
7597         we don't keep a mnemonic window if we have no mnemonic installed.
7598
7599 Fri May 11 01:05:00 2001  Tim Janik  <timj@gtk.org>
7600
7601         * gtk/gtktypeutils.h: grum, gtk_type_class() is not GNUC_CONST
7602         it has the _important_ side effect of initializing a class.
7603
7604 2001-05-10  Alexander Larsson  <alexl@redhat.com>
7605
7606         * gdk/linux-fb/gdkprivate-fb.h:
7607         Make sure you can compile out the implementation/wrapper assert
7608         macros.
7609
7610         * gdk/linux-fb/gdkdrawable-fb2.c:
7611         Check implementation/wrappers, initialize type for pixmap dummys.
7612
7613         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
7614         Hide the cursor if reading from the screen.
7615
7616         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
7617         Fix sign bug in tiling code.
7618
7619         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
7620         Handle background pixmaps.
7621
7622 Wed May  9 15:27:22 2001  Jonathan Blandford  <jrb@redhat.com>
7623
7624         * gtk/gtktreeview.c (gtk_tree_view_set_column_drag_function): New
7625         function to let user control where columns are dragged.
7626
7627         * gtk/gtktreeview.c (gtk_tree_view_key_press): Cancel drags if
7628         Escape is pressed.
7629
7630 Wed May  9 09:08:44 2001  Jonathan Blandford  <jrb@redhat.com>
7631
7632         * gtk/gtktreeview.c (gtk_tree_view_class_init): New
7633         "columns_changed" signal.
7634         (gtk_tree_view_motion_draw_column_motion_arrow): Change column
7635         motion code to draw arrows to the side if indicator is outside the
7636         widget.
7637         (gtk_tree_view_map_expanded_rows): Implement.
7638
7639 2001-05-07  Alexander Larsson  <alexl@redhat.com>
7640
7641         * demos/testpixbuf-save.c: 
7642         * demos/testpixbuf-drawable.c:
7643         Include gdkfb.h on linux-fb.
7644
7645 2001-05-07  Alexander Larsson  <alexl@redhat.com>
7646
7647         * gdk/linux-fb/gdkdnd-fb.c (get_toplevel_window_at):
7648         New function for getting toplevel window at position.
7649         (gdk_drag_find_window): Use get_toplevel_window () instead
7650         of gdk_window_get_pointer(). (gdk_drag_status): Use
7651         correct context for getting window.
7652
7653         * gdk/linux-fb/gdkproperty-fb.c (gdk_atom_name):
7654         g_strdup the atom name.
7655
7656         * gdk/linux-fb/gdkwindow-fb.c:
7657         Costmetic fix.
7658
7659         * gtk/gtkdnd.c (gtk_drag_source_handle_event):
7660         Add code for changing cursor on linux-fb backend (same as
7661         win32).
7662
7663 2001-05-07  Federico Mena Quintero  <federico@ximian.com>
7664
7665         * gtk/gtkwindow.c (gtk_window_focus): Test for bin->child being
7666         present before doing anything with it.  Patch from HÃ¥vard KvÃ¥len
7667         <havardk@netcom.no>.  Fixes Ximian bugzilla #2492 (OK, the bug
7668         report was not for the development branch of GTK+, but it applies
7669         anyways).
7670
7671 2001-05-04  Havoc Pennington  <hp@redhat.com>
7672
7673         * configure.in: fix some shell typos
7674
7675         * gtk/gtkcolorsel.c (gtk_color_selection_destroy): warning fix
7676
7677         * gtk/gtkimage.c: handle animations
7678
7679         * gtk/gtkcheckbutton.c (gtk_check_button_size_request): request
7680         border_width * 2, not just border_width
7681
7682         * gtk/gtkscale.c: add "format_value" signal to allow people
7683         to override the way values are drawn.
7684         (gtk_scale_get_value_size): fix width/height mistake,
7685         and compute size from actual displayed text, not 
7686         from made-up text.
7687
7688         * gtk/gtktexttag.c (gtk_text_tag_class_init): fix return type in 
7689         signal registration
7690
7691         * tests/testtext.c: Add "Remove all tags" menu item for testing
7692
7693         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): implement
7694
7695         * demos/gtk-demo/main.c (main): add hack so we can find modules
7696         without installing gtk
7697
7698         * demos/gtk-demo/textview.c (insert_text): demo font scaling
7699
7700         * gtk/gtkcellrenderertext.c: Add "scale" property (font scaling
7701         factor)
7702         (gtk_cell_renderer_text_set_property): remove some bogus
7703         g_object_notify
7704
7705         * gtk/gtktexttag.c: add "scale" property which is a font scaling
7706         factor
7707
7708         * gtk/gtktextlayout.c (add_text_attrs): add font scale attribute 
7709         to layout
7710
7711         * gtk/gtktextiter.c (gtk_text_iter_is_start): rename from
7712         gtk_text_iter_is_first
7713
7714 2001-01-06  Hans Breuer  <hans@breuer.org>
7715
7716         * gdk/gdk.def : updated exports
7717
7718         * gdk/win32/makefile.msc : -DGDK_ENABLE_BROKEN otherwise
7719         gdk won't compile anymore
7720  
7721         * gdk/win32/gdkevents-win32.c : initialize ret_val when
7722         processing GDK_FILTER functions, initialize event.key->hardware_keycode.
7723         Improved gdk_flush () to not only do pending drawing operations
7724         but also process all currently pending events. This should make
7725         the behaviour more similar to the X11 version.  
7726
7727         * gdk/win32/gdkgc-win32.c (predraw_set_background) : a background
7728         option needs to be set even if there is no GDK_GC_BACKGROUND.
7729         (gdk_win32_hdc_get) : use predraw_set_background () independent
7730         of value_mask. This allows to draw dashed lines leaving the original
7731         background intact.
7732
7733         * gdk/win32/gdkimage-win32.c (gdk_image_new_bitamp) : free data
7734         after processing, because we can't reuse it as the X11 version does.
7735
7736         * gtk/gtk.def : updated exports
7737
7738         * gtk/makefile.msc.in : added ATK, removed all test apps. (I
7739         would like to get rid of this file again, and use straight
7740         makefile.msc again, as the other Gtk+ subdirs do)
7741
7742         * test/makefile.msc (new file) : build the test apps here
7743
7744 2001-05-05  ERDI Gergo  <cactus@cactus.rulez.org>
7745
7746         * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
7747         strike-through setting
7748         (gdk_draw_layout_line_with_colors): Render strike-through
7749
7750 Sat May  5 10:06:24 2001  Owen Taylor  <otaylor@redhat.com>
7751
7752         * Release 1.3.5
7753
7754         * configure.in (GTK_MICRO_VERSION): Up to 1.3.5
7755
7756         * NEWS: Updated
7757
7758         * demos/gtk-demo/Makefile.am (EXTRA_DIST): Fix minor
7759         Makefile breakage.
7760
7761 Sat May  5 09:18:30 2001  Owen Taylor  <otaylor@redhat.com>
7762
7763         * demos/gtk-demo/images.c (progressive_timeout): Fix
7764         typo in filename.
7765
7766         * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment
7767         out FIXME warning; just too annoying.
7768
7769 2001-05-04  Alex Larsson  <alla@lysator.liu.se>
7770
7771         * gdk/linux-fb/gdkcolor-fb.c:
7772         Better error messages.
7773
7774         * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_new):
7775         Initialize abs_x and abs_y.
7776         
7777         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
7778         Correct handling of stipple offset.
7779
7780         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init):
7781         Treat directcolor framebuffers as truecolor.
7782         
7783 Thu May  3 14:13:49 2001  Owen Taylor  <otaylor@redhat.com>
7784
7785         * INSTALL.in HACKING gtk/gtkaccessible.[ch] gtk/gtk.c: Add
7786         dependency on Atk for accessibility support.
7787
7788         * configure.in **/Makefile.am: Major reworking of substituted
7789         variables for CFLAGS/LIBS to make a lot more sane and 
7790         keep the the compile/link lines a bit shorter.
7791
7792         * gdk/x11/gdkkeys-x11.c: Fix #endif with trailing stuff.
7793
7794 Thu May  3 08:10:54 2001  Owen Taylor  <otaylor@redhat.com>
7795
7796         * gtk/gtktexttag.c (gtk_text_tag_class_init): Fix return
7797         value to be G_TYPE_BOOLEAN, not G_TYPE_INT, also,
7798         use _gtk_boolean_handled_accumulator.
7799
7800 Thu May  3 07:00:09 2001  Owen Taylor  <otaylor@redhat.com>
7801
7802         * gtk/gtktextview.c: Patch from Juan Pablo Mendoza Mendoza
7803         to fix things so clicking inside selection leaves cursor
7804         at point where clicked. (#50324)
7805
7806         * gtk/gtksettings.c (gtk_settings_class_init): Restore
7807         sane value for default double click time.
7808
7809         * tests/testtext.c (test_init): Really path to input modules.
7810
7811 2001-05-03  Sven Neumann  <sven@convergence.de>
7812
7813         * demos/testpixbuf-save.c: include target-specific headers as
7814         done in testpixbuf-drawable.c
7815
7816 Wed May  2 20:36:38 2001  Owen Taylor  <otaylor@redhat.com>
7817
7818         * gtk/gtkentry.c (gtk_entry_real_insert_text): Reduce
7819         new_text_length appropriately when we run into the 
7820         size limit for the entry. (#53445, reported by Jeff Franks)
7821
7822         * tests/testgtk.c (create_entry): Remove most of the
7823         property toggle buttons. Replace with a "Props" button
7824         that brings up a property editor.
7825
7826         * tests/prop-editor.[ch] test/testtreeview.c tests/Makefile.am:
7827         Split the property editor code out for reuse, improve.
7828
7829 Wed May  2 17:26:22 2001  Owen Taylor  <otaylor@redhat.com>
7830
7831         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.c: Always
7832         trap errors around calls to XSetInputFocus since we have
7833         no way of knowing reliably whether we are viewable or
7834         not. (#53947)
7835
7836 Tue May  1 09:21:23 2001  Jonathan Blandford  <jrb@redhat.com>
7837
7838         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
7839         fix bug in dropping columns.  Moving columns now basically works
7840         modula some fine tuning.
7841
7842 Tue May  1 19:09:21 2001  Jonathan Blandford  <jrb@redhat.com>
7843
7844         * gtk/gtktreeview.c (gtk_tree_view_horizontal_autoscroll): Add
7845         autoscroll support.  It mostly works, but could use some fine
7846         tuning.
7847         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
7848         Actually move the column.
7849
7850 Mon Apr 30 20:29:27 2001  Owen Taylor  <otaylor@redhat.com>
7851
7852         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c 
7853           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtkwidget.c:
7854           New default theme! A slighly improved version of the 2.0 Raleigh
7855           theme, with Windows-esque focus/drawing default. 
7856           (GtkWidget::interior_focus defaults to TRUE.)
7857
7858         * gtk/gtkstyle.[ch]: Add a text_aa color halfway between text and base.
7859
7860 2001-04-30  Havoc Pennington  <hp@pobox.com>
7861
7862         * tests/testtext.c (line_numbers_expose): fix to work with
7863         gtk_paint_layout change
7864
7865 Mon Apr 30 19:18:07 2001  Owen Taylor  <otaylor@redhat.com>
7866
7867         * gtk/gtkstyle.[ch] gtk/gtkaccellabel.c gtk/gtkcellrenderertext.c
7868           gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c gtk/gtkprogressbar.c
7869           gtk/gtkvruler.c gtk/gtkvscale.c: Add an extra parameter
7870           use_text to gtk_paint_label() to deal with style->bg[] vs style->text[].
7871
7872         * gtk/gtkbbox.c gtk/gtkdialog.c: Tweak padding some to deal
7873           with GtkWidget::interior_focus = TRUE better.
7874
7875         * gtk/gtkbutton.c: Switch ::default_spacing to ::default_border,
7876         ::default_outside_border for more flexibility.
7877
7878         * gtk/gtkwidget.c (gtk_widget_style_get_valist): Remove 
7879         G_VALUE_NO_COPY_CONTENTS, to correspond with the recent
7880         change that had to be made with g_object_get.
7881
7882 Sun Apr 29 20:13:40 2001  Jonathan Blandford  <jrb@redhat.com>
7883
7884         * gtk/gtktreeview.c (gtk_tree_view_get_columns): new function.
7885         (gtk_tree_view_move_column_after): Clean up interface. 
7886
7887 Sun Apr 29 03:02:02 2001  Tim Janik  <timj@gtk.org>
7888
7889         * gtk/gtkpacker.h:
7890         * gtk/gtkenums.h: moved GtkAnchorType and GtkSideType from gtkpacker.h
7891          to gtkenum.h.
7892
7893         * gtk/gtkmain.c (gtk_main_do_event): silence compiler (GDK_SETTING not
7894         handled in switch).
7895
7896         * gtk/Makefile.am:
7897         (gtk.defs): generate enum portions with  glib-mkenums.
7898         (gtktypebuiltins_evals.c): generate this with glib-mkenums.
7899         got rid of makeenums.pl and makeenums.awk in distributed tarballs.
7900         
7901         * gtk/gtkaccelgroup.c (gtk_accel_group_add): refined havocs warning
7902         addition.
7903
7904         * docs/Changes-2.0.txt: keep a note on signal handlers now
7905         not getting emitted during the emission they were connected within.
7906
7907 2001-04-28  Havoc Pennington  <hp@pobox.com>
7908
7909         * gtk/gtkcolorsel.c (palette_new): fix bug in tooltip
7910
7911 2001-04-24  Havoc Pennington  <hp@redhat.com>
7912
7913         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_previous_line): 
7914         (gtk_text_layout_move_iter_to_next_line): fix these two for
7915         invisible text, lots of other stuff still hosed.
7916
7917         * gtk/gtkcolorsel.c (gtk_color_selection_set_change_palette_hook):
7918         new function, replaces the get/set palette stuff. This function 
7919         is intended for use by libgnomeui which should set the hook to a
7920         thing which sets the palette in GConf, and we need the
7921         GConf-to-xsettings proxy which will result in the change being
7922         propagated back to the GTK app.
7923
7924         * gtk/gtkaccelgroup.c (gtk_accel_group_add): add note to warning 
7925         about unusable signals that it may be because the signal has 
7926         parameters.
7927
7928         * gtk/gtkwidget.c (gtk_widget_modify_style): always copy the
7929         style, otherwise gtkrc.c won't know to create a new GtkStyle for
7930         it.
7931         (gtk_widget_modify_color_component): call
7932         gtk_widget_modify_style() so the rc style will get copied.
7933         (gtk_widget_modify_font): ditto
7934
7935         * gtk/gtkrc.c: make a couple variables static
7936
7937         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): hide
7938         help button by default, since it does nothing
7939
7940         * gtk/gtkcolorsel.c: add tooltips, work on key navigation, fool
7941         around with UI
7942
7943         * gtk/gtkentry.c (gtk_entry_realize): request enter/leave notify
7944         so we can have tooltips
7945
7946         * gtk/gtkhsv.c (gtk_hsv_realize): request enter/leave notify so we
7947         can have tooltips
7948
7949         * gdk/gdkimage.h: mark gdk_image_new_bitmap with
7950         GDK_ENABLE_BROKEN, because its memory behavior is completely
7951         hosed.
7952
7953         * gtk/gtknotebook.c: remove key press handler, replace with
7954         binding set, add numeric keypad support
7955
7956         * gtk/gtktextview.c (gtk_text_view_class_init): accept KP_Delete
7957
7958         * gtk/gtktext.c (gtk_text_key_press): add a bunch of KP keysyms
7959
7960         * gtk/gtkentry.c (gtk_entry_class_init): accept GDK_KP_Delete in
7961         addition to plain Delete
7962
7963         * gtk/gtktextview.c (gtk_text_view_key_press_event): accept
7964         GDK_KP_Enter in addition to GDK_Return
7965
7966         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): connect to
7967         activate on entry instead of key press
7968         (gtk_font_selection_on_clist_key_press): get
7969         rid of this signal handler, not needed with new font sel.
7970
7971         * gtk/gtkfilesel.c (gtk_file_selection_key_press): remove a
7972         no-longer-needed emit_stop_by_name(), just return TRUE
7973
7974         * gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.c: remove keybindings
7975         cruft, this widget is no longer focusable.
7976
7977         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkvscale.c,
7978         gtk/gtkhscale.c: Get rid of trough_keys virtual function, add
7979         move_slider action signal, add binding set for vscale/hscale, in
7980         the process support numeric keypad
7981
7982         * gtk/gtkentry.c (gtk_entry_class_init): Add keypad bindings; 
7983         make GDK_Return and GDK_KP_Enter activate the entry via 
7984         binding set, instead of hardcoded.
7985
7986 Fri Apr 27 20:27:21 2001  Jonathan Blandford  <jrb@redhat.com>
7987
7988         * gtk/gtktreeview.[hc]: Massive reorder/cleanup of a lot of the
7989         code.  Some documentation added.
7990
7991 2001-04-27  Havoc Pennington  <hp@redhat.com>
7992
7993         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
7994
7995         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
7996
7997         * gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
7998         line/para separators
7999         (gtk_entry_create_layout): set single paragraph mode on the layout
8000
8001         * gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
8002         spacing between the image and label; instead, inside a button box 
8003         the button will get extra space that will go there, but if people 
8004         configure button box for 0 chubbiness, then there's no spacing.
8005
8006         * gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
8007         and min/max size style properties, so people can tune their
8008         chubbiness.
8009
8010         * tests/testgtk.c (make_toolbar): remove calls to removed toolbar
8011         functions
8012
8013         * gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
8014         space_style, and button_relief into style properties, remove
8015         functions for setting them
8016         
8017         * gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop 
8018         it back down
8019
8020         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
8021         types from gtk_widget_style_get
8022
8023         * gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
8024         with a style property.
8025
8026         * gdk/x11/gdkevents-x11.c: namespace the settings
8027
8028         * gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
8029
8030         * gtk/gtksettings.c (gtk_settings_class_init): remove code with
8031         side effects from inside g_assert(), so that G_DISABLE_ASSERT can
8032         be used. Also, translate doc strings for settings. Also, namespace
8033         the double-click-time property. Also, remove bell properties crap.
8034
8035 2001-04-27  Sven Neumann  <sven@gimp.org>
8036
8037         * Makefile.am: before creating links, check if pkg-config files
8038         exist for the default target. Otherwise link to the pkg-config files
8039         that got installed with this build.
8040
8041 Thu Apr 26 19:11:46 2001  Jonathan Blandford  <jrb@redhat.com>
8042
8043         * gtk/gtktreeview.c (gtk_tree_view_motion): clean up column
8044         dragging code.  Revealed some (potential) GdkWindow bugs.
8045
8046         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): add
8047         _gdk_window_init_position to the end of reparent to fix the case
8048         of reparenting when new_x != old_x and new_y != old_y.
8049
8050 Thu Apr 26 10:54:50 2001  Owen Taylor  <otaylor@redhat.com>
8051
8052         * gtk/gtkentry.c (strstr_len): Fix optimization that
8053         was correct for the use here, but completely incorrect
8054         in general.
8055
8056 Thu Apr 26 10:40:41 2001  Owen Taylor  <otaylor@redhat.com>
8057
8058         * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
8059         until patch adding gtk_window_set_size() is recommitted. 
8060
8061         * **Makefile.am configure.in gdk/x11/gdkim-11.c
8062           gtk/gtkmain.c gtk/gtkimmulticontext.c gtk/gtkmain.c
8063           gtk/gtkrc.c: Remove all traces of -DX_LOCALE support.
8064           (#10784)
8065
8066 Wed Apr 25 12:16:36 2001  Owen Taylor  <otaylor@redhat.com>
8067
8068         * gdk/X11/gdkevents-x11.c (gdk_event_translate): Test for 
8069         window == NULL in a number of cases.
8070
8071         * tests/testdnd.c: Set module path for gdk-pixbuf.
8072
8073 Thu Apr 19 16:11:07 2001  Owen Taylor  <otaylor@redhat.com>
8074
8075         * gtk/Makefile.am xembed.h: File containing #defines
8076         for XEMBED protocol.
8077
8078         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: 
8079
8080         - Change protocol from old plug/socket specific protocol
8081           to XEMBED draft
8082         - Various fixes to work with GTK+-2.0
8083
8084         Still quite a bit of work to do here to handle initiation
8085         from the socket side (as specified by XEMBED), to handle
8086         the more advanced features of XEMBED, and to figure out
8087         a good way to handle same-app embedding with less overhead
8088         than using full XEMBED.
8089
8090 Wed Apr 18 16:04:28 2001  Owen Taylor  <otaylor@redhat.com>
8091
8092         * gtk/gtkwindow.[ch] (gtk_window_real_set_focus): Keep
8093         track of whether the toplevel has the focus; only send
8094         focus-in events to the focus widget when the window
8095         actually has the focus.
8096
8097 2001-04-25  Havoc Pennington  <hp@pobox.com>
8098
8099         * gtk/gtkwindow.h: set_decorations_hint and set_functions_hint
8100         were still in the header
8101
8102 2001-04-24  Alexander Larsson  <alexl@redhat.com>
8103
8104         * gtk/gtkclist.[ch]:
8105         * gtk/gtkctree.c:
8106         When there is a row highlighted for D'n'D it must alse
8107         be painted hightlighted on exposes. Otherwise exposes from
8108         the icon being dragged will mess up the hightlight.
8109
8110         * gtk/gtkfontsel.c:
8111         Don't recenter selected font when exposing the font family
8112         clist. This means you can now actually scroll the font family
8113         list.
8114
8115         * gtk/gtknotebook.c:
8116         Fix focus movement on scrolling tabs that are placed on the left
8117         and right.
8118
8119 2001-04-21  Havoc Pennington  <hp@pobox.com>
8120
8121         * gtk/gtktextdisplay.c (gtk_text_layout_draw): handle 0-height
8122         empty/invisible lines.
8123
8124         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset)
8125         (gtk_text_iter_set_visible_line_index): new functions to set
8126         indexes excluding invisible text
8127
8128         * gtk/gtktextlayout.c (line_display_iter_to_index): get visible 
8129         index
8130
8131         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index)
8132         (gtk_text_iter_get_visible_line_offset): new functions to 
8133         get indexes excluding invisible text
8134
8135         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): strip out a
8136         bunch of extra padding that served no purpose
8137
8138         * gtk/gtkdialog.c: Make all the spacings configurable via style
8139         properties, for chubbiness configuration in themes
8140
8141         * tests/testtext.c: fix path to the immodules.
8142         
8143 Mon Apr 23 18:57:03 2001  Jonathan Blandford  <jrb@redhat.com>
8144
8145         * gtk/gtksocket.c (gtk_socket_filter_func): add missing '}' that
8146         got munched by #endif.
8147
8148         * gtk/Makefile.am (gtk_plug_c_sources): add missing '\'
8149
8150         * gtk/gtktreeview.c: Refactored code to clean up a number of
8151         events.
8152
8153         * gtk/gtktreemodel.c (gtk_tree_path_compare): Switched return
8154         values to make consistent with other functions.  Spotted by Jeff
8155         Franks <jcf@tpg.com.au>.
8156
8157         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Fixes to signal
8158         declaration spotted by Jeff Franks <jcf@tpg.com.au>.
8159
8160 2001-04-23  Sven Neumann  <sven@gimp.org>
8161
8162         * gtk/Makefile.am
8163         * gtk/gtkplug.c
8164         * gtk/gtksocket.c: on request of Owen, reverted my last change 
8165         and exclude gtkplug.c/gtksocket.c from the build for non-X11 targets
8166
8167 2001-04-23  Sven Neumann  <sven@gimp.org>
8168
8169         * gtk/gtkplug.c: put into #ifdef GDK_WINDOWING_X11 to make GTK+
8170         compile for non-X11 targets again
8171
8172 2001-04-20  Alexander Larsson  <alexl@redhat.com>
8173
8174         * gtk/gtkcolorsel.[ch]:
8175         API Change. Take GdkColor arguments instead of gdouble *.
8176         Leave the old gtk_color_selection_set_color for compatibility,
8177         but marked deprecated.
8178         Do correct rounding when converting RGB <-> HSV.
8179         
8180         * gtk/gtkcolorseldialog.c:
8181         * tests/testgtk.c:
8182         Use new GtkColorSelection API.
8183
8184         * gtk/gtkhsv.c:
8185         Fix problem selecting colors in triangle when Hue is 330.
8186         Fix some black dots around the HSB triangle.
8187         
8188         * gtk/gtkfilesel.c:
8189         return FALSE from the focus_in_event handler to fix focus problems.
8190
8191 2001-04-18  Havoc Pennington  <hp@redhat.com>
8192
8193         * gtk/gtkwindow.c (gtk_window_class_init): add signals and binding
8194         set, so keybindings are configurable    
8195         (gtk_window_activate_default): Change to activate the focus widget
8196         instead if there's a focus widget, to be consistent with the
8197         behavior that previously existed in key_press_event
8198
8199 2001-04-18  Havoc Pennington  <hp@redhat.com>
8200
8201         * gdk/gdkkeyuni.c: Handle numeric keypad keysyms; bug #50201
8202
8203 2001-04-18  Havoc Pennington  <hp@redhat.com>
8204
8205         Close bug #50615:
8206         
8207         * gtk/gtkstyle.c (gtk_default_draw_layout): Use text_gc to draw
8208         the layout
8209
8210         * gtk/gtktext.c: Use base/text instead of bg/fg throughout
8211
8212         * gtk/gtkentry.c: Use base/text instead of bg/fg throughout
8213
8214         * gtk/gtktextdisplay.c: Use base/text instead of bg/fg throughout
8215         
8216         * gtk/gtkstyle.c (gtk_style_init): make GTK_STATE_SELECTED default
8217         to blue for base, in addition to bg
8218         
8219 2001-04-18  Havoc Pennington  <hp@redhat.com>
8220
8221         * tests/testgtk.c (create_image): allow shrinking the image window
8222         to test that we clip to allocation.
8223
8224         * gtk/gtkimage.c (gtk_image_expose): clip to allocation,
8225         #9845
8226
8227         * gtk/gtkenums.h: move GtkWrapMode in here, #50472
8228
8229 Wed Apr 18 14:23:14 2001  Owen Taylor  <otaylor@redhat.com>
8230
8231         * gdk/x11/gdkimage-x11.c (gdk_image_new): Try changing
8232         mode on shm segments to 0600. We'll see who complains.
8233
8234         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Call
8235         _gdk_windowing_window_destroy() AFTER recursing through
8236         children.
8237
8238         * tests/Makefile.am (noinst_PROGRAMS): Build testsocket,
8239         testsocket_child on X.
8240
8241         * tests/testsocket[_child].c: Fix uses of
8242         gtk_window_get_default_accel_group().
8243
8244         [ Merge patch from Ramiro Estrugo  <ramiro@eazel.com> from gtk-1-2 ]
8245
8246         * gdk/gdkimage.c: (gdk_image_get):
8247         Deal with the possibility that XGetImage() might return NULL.
8248         Allocate the GdkImagePrivate structure only after XGetImage()
8249         succeeds in order not to dereference a NULL ximage pointer.  This
8250         prevents a core dump when XGetImage() fails - which is unlikely,
8251         but can happen due to race conditions accessing the geometries of
8252         drawables.  An x error will still be triggered, but the gdk image
8253         wrapper at least wont seg fault.
8254         
8255 2001-04-18  Havoc Pennington  <hp@redhat.com>
8256
8257         * gtk/gtkimage.c: fix to properly queue resizes when the image is
8258         set
8259
8260         * gtk/gtktextview.c (gtk_text_view_do_popup): desensitize Paste
8261         if the insertion point isn't editable
8262
8263         * demos/gtk-demo/images.c: Added a GtkImage demo
8264
8265         * demos/gtk-demo/drawingarea.c: drawing area demo
8266         
8267         * demos/gtk-demo/menus.c (create_menu): cleanups
8268
8269 Wed Apr 18 12:15:52 2001  Owen Taylor  <otaylor@redhat.com>
8270
8271         * gdk/x11/gdkwindow-x11.c gdk/x11/gdkwindow-x11.h 
8272           gdk/x11/gdkevents-x11.c: Introduce an extra child
8273         of toplevel windows that serves to hold the focus to
8274         avoid events being delivered to embedded windows.
8275
8276         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Introduce
8277         some extra variables to clean up code and reduce the
8278         number of casts.
8279
8280         * gdk/x11/gdkwindow-x11.h (struct _GdkXPositionInfo): Use
8281         guint for 1 bit bit fields, not gboolean.
8282
8283 Wed Apr 18 10:04:23 2001  Owen Taylor  <otaylor@redhat.com>
8284
8285         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Return FALSE,
8286         not TRUE. (Fixes #52925)
8287
8288 Tue Apr 17 18:05:34 2001  Owen Taylor  <otaylor@redhat.com>
8289
8290         * Released 1.3.4
8291
8292         * NEWS: Updated
8293
8294         * gtk/gtktextview.c (gtk_text_view_class_init): Fix to not
8295         use GTK_TYPE_ENUM.
8296
8297 Tue Apr 17 13:47:12 2001  Owen Taylor  <otaylor@redhat.com>
8298
8299         * configure.in: Don't put -lgthread in GLIB_LIBS, GLIB_DEPLIBS
8300
8301         * gtk/gtktypeutils.h gtk/gtksignals.h: Restore proper parameter
8302         names to compatibility #defines so docs work.
8303
8304         * gtk/gtkenums.h: Remove GtkMenuFactoryType
8305
8306         * gtk/gtkwindow.c gtk/gtkdnd.c: Docs cleanups.
8307
8308         * configure.in: Don't include -lgthread in GLIB_LIBS, GLIB_DEPLIBS
8309
8310         * tests/testgtkrc: No magenta cursors, please.
8311
8312         * README.in INSTALL.in HACKING README.cvs-commits: Updated.
8313
8314         * gtk/gtkenums.h (enum): Remove left over GtkMenuFactoryType.
8315         
8316 Mon Apr 16 14:38:41 2001  Owen Taylor  <otaylor@redhat.com>
8317
8318         * gtk/gtklist.c gtk/gtklistitem.c: Remove explicit pointer
8319         grabs, since they are no longer necessary.
8320
8321         * gtk/gtkcombo.c (gtk_combo_popup_button_press): Fix #52926
8322         by signal_connect() and call gtk_button_pressed() rather
8323         than signal_connect_after().
8324
8325         * tests/testgtk.c: Restore radio menu items to combos 
8326         since they'll look OK with Raleigh, and it is easier
8327         than finishing the process of removing them that was
8328         started earlier.
8329
8330 2001-04-16  Hans Breuer  <hans@breuer.org>
8331
8332         * gdk/gdk.def :
8333         * gtk/gtk.def : added all exports required to link PyGtk 0.7.1
8334
8335         * gdk/gdkfont.h : #define GDK_TYPE gdk_font_get_type ()
8336         we are interested in the functions return value not the function address
8337         * gdk/gdkvisual.h : same for GDK_TYPE_VISUAL
8338
8339         * gtk/makefile.msc.in : reflect movement of GDK_TYPEs from gtk to gdk
8340
8341 2001-04-14  Hans Breuer  <hans@breuer.org>
8342
8343         * gdk/gdk.def :
8344         * gdk/makefile.msc : updated
8345
8346         * gdk/win32/gdkdrawable.win32 (gdk_win32_draw_rectangle) : if modus is 
8347         "fill with tile" do so with new helper function gdk_win32_draw_tiles 
8348         (the testgtk::text backgound pixmap is drawn again)
8349         Changed SetTextAlign before pango_win32_render to TA_BASELINE to reflect 
8350         Win32 Pango change
8351         * gdk/win32/gdkprivate-win32.h : prototype for gdk_win32_draw_tiles
8352
8353         * gdk/win32/gdkproperty-win32.c : first implementation of gdk_setting_get
8354         Not sure if the returned settings have the right unit, because I couldn't
8355         find any docs for the X version ...
8356
8357         * gtk/gtk.def :
8358         * gtk/makefile.msc.in : updated
8359
8360 Thu Apr 12 17:41:17 2001  Owen Taylor  <otaylor@redhat.com>
8361
8362         * gtk-2.0.m4: Fix up to refer to GTK+, not to GLib; fix some
8363         wording problems. (Compared to version from Johannes Stezenbach to
8364         check correctness.)
8365
8366 Thu Apr 12 21:04:26 2001  Tim Janik  <timj@gtk.org>
8367
8368         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): get
8369         this to compile.
8370
8371 2001-04-12  Anders Carlsson  <andersca@codefactory.se>
8372
8373         * gtk/gtkcellrenderertextpixbuf.c (gtk_cell_renderer_text_pixbuf_class_init): It's pixbuf_pos,
8374         not pixbufpos.
8375
8376         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Fix small typo.
8377
8378         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property): xpad and ypad
8379         are unsigned insts, therefore use g_value_set_uint.
8380         (gtk_cell_renderer_set_property): Likewise, use g_value_get_uint.
8381
8382 Sun Apr  8 05:36:06 2001  Jonathan Blandford  <jrb@redhat.com>
8383
8384         * gtk/gtktextview.c (gtk_text_view_class_init): fix a fixme.
8385
8386         * gtk/gtkcellrendertoggle.c: change GTK_TYPE_POINTER to
8387         GTK_TYPE_STRING.
8388
8389         * gtk/gtktreeview.c: New functions to allow initial column
8390         dragging work.
8391
8392         * gtk/gtktreeviewcolumn.c: Initial column dragging support.
8393
8394         * tests/testtreefocus.c: give dave some love.
8395
8396         * tests/testtreesort.c: Modify test to check really long samples.
8397
8398 2001-04-11  Alexander Larsson  <alexl@redhat.com>
8399
8400         * gtk-2.0.m4: Pass pkg-config options
8401         before the other args so it works even if
8402         POSIXLY_CORRECT is set.
8403
8404 Mon Apr  9 19:02:07 2001  Tim Janik  <timj@gtk.org>
8405
8406         * configure.in (GTK_MICRO_VERSION): increment version to 1.3.4 (binary
8407         0, interface 0).
8408
8409 2001-04-04  Denis Oliver Kropp  <dok@convergence.de>
8410
8411         * gtk/gtkcalendar.c (gtk_calendar_button_press):
8412         check for action_func != NULL
8413
8414 2001-04-04  Sven Neumann  <sven@gimp.org>
8415
8416         * tests/testgtk.c (test_init): corrected path to gtk.immodules
8417
8418 Wed Apr  4 09:18:18 2001  Tim Janik  <timj@gtk.org>
8419
8420         * Released Gtk+-1.3.3.
8421
8422 Wed Apr  4 07:42:23 2001  Tim Janik  <timj@gtk.org>
8423
8424         * gdk/Makefile.am (EXTRA_DIST): add makeenums.pl to EXTRA_DIST.
8425
8426 Wed Apr  4 04:13:18 2001  Tim Janik  <timj@gtk.org>
8427
8428         * gtk/stock-icons/Makefile.am: stay in builddir and read/write
8429         files to/from source dir. (if we don't stay in builddir, we
8430         can't reach make-inline-pixbuf.
8431
8432         * gdk/Makefile.am (gdkenumtypes.c): add $(srcdir) to mekeenums.pl
8433         deps.
8434
8435         * configure.in (GTK_MICRO_VERSION): up and away (1.3.3 bin/interface
8436         ages 0).
8437
8438 Tue Apr  3 15:04:45 2001  Jonathan Blandford  <jrb@redhat.com>
8439
8440         * gtk/gtktreemodelsort.h:  removed set_sort_column, as it was
8441         moved to the GtkTreeSortable interface.
8442
8443         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
8444         Make more efficient (fixes #50262).
8445
8446 Tue Apr  3 13:55:37 2001  Owen Taylor  <otaylor@redhat.com>
8447
8448         * NEWS: Updated.
8449
8450         * configure.in: Remove support for uninstalled glib.
8451
8452         * gtk/gtkdnd.c (gtk_drag_highlight_expose): Return FALSE as
8453         so as not to stop emission.
8454
8455         * gtk-config-2.0.in: Exit with an error message that gtk-config-2.0
8456         is no longer supported.
8457
8458         * Makefile.am gtk/Makefile.am tests/*: Moved all tests
8459         into tests, change build order to build modules before
8460         gtk/.
8461
8462         * modules/input/Makefile.am: Move gtk-query-immodules-2.0 invocation
8463         to here.
8464
8465 Tue Apr  3 13:52:57 2001  Tim Janik  <timj@gtk.org>
8466
8467         * gtk/gtkitemfactory.[hc]: changed gtk_item_factory_dump_items()
8468         and gtk_item_factory_dump_rc() GtkPatternSpec argument to
8469         GPatternSpec. this is actually unlikely to cause breakage in
8470         third-party apps since except for gle, pretty much ever caller
8471         passes NULL here.
8472
8473         * gtk/gtkbindings.[hc]: removed gtk_pattern_*() API.
8474
8475         * *.c: use g_pattern_*() API.
8476
8477         * docs/Changes-2.0.txt: GtkPatternSpec->GPatternSpec updates.
8478
8479         * gtk/gtkstyle.c (gtk_default_draw_resize_grip): assert unhandled
8480         directions aren't passed in.
8481
8482         * gtk/gtksettings.[hc] (_gtk_settings_parse_convert): export conversion
8483         functionality to be usable from gtkstyle.c as well, give precedence
8484         for conversion to user-supplied parsers.
8485         s/_gtk_rc_property_parser_for_type/_gtk_rc_property_parser_from_type/;
8486
8487         * gtk/gtkstyle.c (_gtk_style_peek_property_value): use
8488         _gtk_settings_parse_convert() for rcporperty value conversion.
8489
8490 2001-04-03  Alexander Larsson  <alexl@redhat.com>
8491
8492         * gdk/linux-fb/gdkevents-fb.c:
8493         Add empty gdk_setting_get().
8494
8495 Tue Apr  3 05:09:07 2001  Tim Janik  <timj@gtk.org>
8496
8497         * gtk/gtkmain.c (_gtk_boolean_handled_accumulator): use more elaborate
8498         variable names.
8499         
8500         * gtk/makeenums.pl: touch this so enum files get remade.
8501
8502 Mon Apr  2 19:36:57 2001  Jonathan Blandford  <jrb@redhat.com>
8503
8504         * gtk/gtktreestore.c (gtk_tree_store_init):  Bug fix to make trees
8505         work again when not sorted.
8506
8507         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add "collapse_row"
8508         and "expand_row" signal, closing bug 52578.
8509
8510         * gtk/gtktreeview.c (gtk_tree_view_expand_row): Add signal
8511         support.
8512
8513         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): Add signal
8514         support.
8515
8516 Mon Apr  2 18:18:07 2001  Owen Taylor  <otaylor@redhat.com>
8517
8518         * gdk/gdkevents.h: Add GdkEventSetting event for notification
8519         of changes to system settings, gdk_setting_get() to retrieve
8520         a single system setting.
8521
8522         * gdk/x11/gdkevents-x11.c: Bridge gdk_setting_get() and GdkEventSetting
8523         to the draft XSETTINGS mechanism.
8524
8525         * gdk/x11/xsettings-{common,client}.[ch]: Sample-implementation of
8526         XSETTINGS.
8527
8528         * gtk/gtkmain.c gtk/gtksettings.[ch]: Propagate notification
8529         of GDK settings changes to the GtkSettings object.
8530
8531         * gdk/gdkevents.[ch] gdk/gtk/gtksettings.c: Hook up the
8532         double-click-timeout property to GDK.
8533
8534         * gdk/gdkcolor.[ch] gdk/gdkvisual.h gdk/gdkevent.[ch] gdk/gdkfont.[ch]:
8535         Define GDK boxed types here.
8536
8537         * gdk/Makefile.am gdk/makeenums.pl: Generate source files
8538         gdk/gdkenumtypes.[ch] for enum definitions.
8539
8540         * gtk/gtkcompat.h: Add defines for GTK_TYPE_GDK_*
8541         * gtk/gtk-boxed.defs: Comment out GDK types
8542         * gtk/gtktypeutils.h: Remove GDK types
8543         * gtk/Makefile.am: No longer scan GDK headers for enumerataions
8544
8545 Mon Apr  2 16:41:08 2001  Owen Taylor  <otaylor@redhat.com>
8546
8547         * Applied patch from Ron Steinke to add signal accumulators
8548         so that signals with the convention 'TRUE return means
8549         handled' stop emission on a TRUE return.
8550
8551         * gtk/gtkmain.[ch]: Add private accumulator 
8552         _gtk_boolean_handled_accumulator, used throughout GTK+.
8553         
8554         * gtk/gtkspinbutton.c: Add accumulator for ::output.
8555
8556         * gtk/gtktipsquery.c: Add accumulator for ::widget_selected
8557         
8558         * gtk/gtkwidget.c: Add accumulators for event signals,
8559         ::drag_motion, ::drag_drop. Use _gtk_boolean_handled_accumator
8560         for ::mnemonic-activate.
8561
8562         * gtk/gtkwindow.c: Add accumulator for ::frame_event
8563
8564 Mon Apr  2 16:24:21 2001  Owen Taylor  <otaylor@redhat.com>
8565
8566         * gtk/gtkwidget.c: Add missing include.
8567
8568 Mon Apr  2 16:56:15 2001  Jonathan Blandford  <jrb@redhat.com>
8569
8570         * gtk/gtkmarshal.list (VOID:BOXED,BOXED,BOXED,BOXED): new
8571         marshaller.
8572
8573         * gtk/gtktreemodel.c (gtk_tree_model_range_changed): change
8574         "changed" signal to "range_changed".
8575
8576         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix small bug where
8577         removing a tree from one model would remove all trees from that
8578         model.
8579         * gtk/gtktreeview.c (gtk_tree_view_range_changed): use range
8580         changed signal instead.
8581
8582 Mon Apr  2 16:13:58 2001  Owen Taylor  <otaylor@redhat.com>
8583
8584         * gtk/gtkinvisible.c (gtk_invisible_style_set): Avoid
8585         chaining up to parent impl, since we have a INPUT_ONLY
8586         window.
8587
8588         * gtk/gtkentry.[ch]: Add a cursor_color property to set the
8589         foreground color for the cursor.
8590
8591 Mon Apr  2 15:06:13 2001  Owen Taylor  <otaylor@redhat.com>
8592
8593         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Reference 
8594         param spec when caching property values, since we unref it
8595         later when we free the style.
8596
8597         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Dont' free
8598         values since they are retrieved with G_VALUE_NO_COPY_CONTENTS.
8599
8600 Mon Apr  2 10:47:57 2001  Owen Taylor  <otaylor@redhat.com>
8601
8602         * gtk/gtkwidget.c (gtk_widget_class_init): Fix 
8603         G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
8604         stupidity.
8605
8606 Mon Apr  2 00:51:11 2001  Owen Taylor  <otaylor@redhat.com>
8607
8608         [ First pass at adding style properties. Still needs some definite
8609         fine-tuning. ]
8610
8611         * gtk/gtkbutton.c: Add ::default_spacing style property.
8612          
8613         * gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
8614         ::indicator_spacing style properties.
8615
8616         * gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
8617         style properties.
8618
8619         * gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
8620         rather than a normal property.
8621
8622         * gtk/gtkwidget.c: Add an ::interior_focus style property to
8623         draw focus inside buttons, in the Windows/Java Metal/etc. style.
8624
8625         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
8626         Honor ::interior_focus.
8627         
8628         * gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is 
8629         TRUE.
8630
8631         * gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
8632         Add ::slider_width, ::trough_border, ::stepper_size,
8633         ::stepper_spacing style properties.
8634
8635         * gtk/gtkscale.[ch] Add ::slider-length style property.
8636
8637 2001-04-02 Alexander Larsson   <alexl@redhat.com>
8638
8639         * gdk/linux-fb/gdkwindow-fb.c:
8640         Add gdk_window_begin_resize_drag and gdk_window_begin_move_drag. Remove some
8641         warnings that were spewed on startup.
8642
8643         * gtk/gtkwindow-decorate.c:
8644         gtk_window_reposition -> _gtk_window_reposition
8645
8646 Sun Apr  1 21:37:22 2001  Owen Taylor  <otaylor@redhat.com>
8647
8648         * gtk/gtkwidget.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
8649         Add boxed type for GtkRequistion. Use it for ::size-request.
8650
8651         * gtk/gtkstyle.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
8652         Add a new GtkBorder structure useful for geometry properties
8653         for widgets. Add corresponding GTK_TYPE_BORDER.
8654         
8655         * gtk/gtkwidget.c (gtk_widget_class_install_style_property):
8656         Support automatic parser selection like
8657         gtk_settings_install_property_parser().
8658
8659         * gtk/gtksettings.c (_gtk_rc_property_select_parser): Export
8660         functionality for use by gtk_widget_class_install_style_property.
8661         Support GTK_TYPE_BORDER, GTK_TYPE_REQUISITION.
8662
8663 Sun Apr  1 20:48:59 2001  Owen Taylor  <otaylor@redhat.com>
8664
8665         * gtk/gtkentry.c (gtk_entry_class_init): Make invisible-char
8666         g_param_spec_unichar(). 
8667
8668 Sun Apr  1 23:41:37 2001  Tim Janik  <timj@gtk.org>
8669
8670         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): raise window for non
8671         _NET window managers.
8672
8673         * gtk/gtkmenufactory.[hc]: cvs removed those files now.
8674
8675 Sun Apr  1 08:00:13 2001  Tim Janik  <timj@gtk.org>
8676
8677         * gtk/gtkwidget.[hc]: got rid of gtk_widget_popup(), a function that
8678         bad needs to be nuked, not just deprecated.
8679
8680         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): don't use 
8681         gtk_widget_popup().
8682
8683         * gtk/*.[hc]: s/activate_mnemonic/mnemonic_activate/g;
8684         
8685         * gtk/gtkmenufactory.[hc]: removed this long-standingly deprecated
8686         widget.
8687         
8688         * docs/Changes-2.0.txt: updates.
8689         
8690 Sun Apr  1 01:02:54 2001  Jonathan Blandford  <jrb@redhat.com>
8691
8692         * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed):
8693         for (i = 0; i < 100; i ++)
8694           g_print ("I will confirm it compile before committing\n");
8695
8696 Sun Apr  1 00:52:06 2001  Jonathan Blandford  <jrb@redhat.com>
8697
8698         * gtk/gtktreestore.c: Initial work on implementing the
8699         GtkTreeSortable interface.  Basicaly a big cut'n'paste job.
8700
8701 Sun Apr  1 03:28:14 2001  Tim Janik  <timj@gtk.org>
8702
8703         * gtk/gtkwidget.c: fixed a bunch of notifications, added
8704         reference counts around emissions where the widget is used afterwards.
8705         added freeze/thaws around multiple properties being notified.
8706         (_gtk_widget_get_aux_info): cleanups.
8707         
8708         * gtk/gtksettings.c (gtk_settings_install_property): provide
8709         default parsing functions for gdkcolor, enums and flags.
8710
8711         * gtk/gtkwindow.[hc]: partially reverted patch from havoc,
8712         applied by owen.
8713         backed out gtk_window_get_location(), gtk_window_set_location(),
8714         gtk_window_get_size() and gtk_window_set_size(), these
8715         have to be sorted out wrg x/y/width/height/default_with/default_height
8716         properties.
8717         kept a flag in GtkWindowGeometryInfo to handle user
8718         resetting default sizes.
8719         cleaned up ZVT comments.
8720         bunch of assorted bug fixes, notification fixes.
8721         (_gtk_window_reposition): make this a really internal function.
8722         
8723         * gtk/testgtk.c: fixups.
8724         
8725 2001-03-31  Hans Breuer  <hans@breuer.org>
8726
8727         * config.h.win32.in : disable USE_MMX for msvc build cause
8728         the assembler doesn't fit and is out of my scope. Disable
8729         USE_GMODULE for msvc build as wel. The right way to share
8730         binaries on win32 would be to use libtiff.dll etc. To reduce
8731         installation hassles IMO it's better to include all fileformats
8732         builtin to gdk-pixbuf
8733
8734         * gdk-pixbuf/makefile.msc : new file
8735
8736         * gdk/gdk.def : updated
8737
8738         * gdk/win32/gdkevents-win32.c : don't erase the background if
8739         .no_bg is set. It improves the scrolling (e.g. of testgtk main
8740         buttons
8741         * gdk/win32/gdkgeometry-win32.c : added comment about the above
8742
8743         * gdk/win32/gdkwindow-win32.c : added three new functions like
8744         the X version. Only one is implemented, because the other two
8745         "gdk_window_begin_(resize|move)_drag" got no docs and appear to
8746         be default behaviour on win32 anyway ...
8747
8748         * gtk/gtk.def : updated
8749
8750         * gtk/makefile.msc.in : update for new files, use glib-genmarshal
8751         from where it was built and add an additional rule to automagically
8752         build gtkmarshal.[hc]
8753
8754         * gtk/gtkfilesel.c (open_new_dir) : don't increase n_entries
8755         before array access for the current entry isn't finished
8756
8757         * gtk/gtktreeitem.c (gtk_tree_item_subtree_button_click) :
8758         use g_return_val_if_fail
8759
8760         * gtk/testgtk.c (window_controls) : don't use the *wrong* size
8761         for the static array, but let the compiler calculate it. It
8762         makes me wonder if gcc isn't capable to catch bugs like this ...
8763
8764 2001-03-31  James Henstridge  <james@daa.com.au>
8765
8766         * gtk/gtkwidget.c (gtk_widget_size_adjust): fix use of magic
8767         constant "-1" in the aux info structure.
8768
8769 2001-03-30  Alexander Larsson  <alexl@redhat.com>
8770
8771         * gtk/gtkbutton.c (gtk_button_get_property):
8772         * gtk/gtklabel.c:
8773         Remove leaks.
8774         
8775         * gtk/gtkcontainer.c:
8776         * gtk/gtkhscale.c:
8777         * gtk/gtkhscrollbar.c:
8778         * gtk/gtklayout.c:
8779         * gtk/gtkmisc.c:
8780         * gtk/gtkprogress.c:
8781         * gtk/gtkprogressbar.c:
8782         * gtk/gtkrange.c:
8783         * gtk/gtktable.c:
8784         * gtk/gtkviewport.c:
8785         * gtk/gtkvscale.c:
8786         * gtk/gtkvscrollbar.c:
8787         * gtk/gtkwidget.c:
8788         Property patches, based on patches from John Margaglione and Lee Mallabone.
8789
8790 Thu Mar 29 21:20:38 2001  Mike Kestner  <mkestner@ameritech.net>
8791
8792         * gtk/gtkspinbutton.c : added value_changed signal which proxies for the
8793         adjustment. Cleaned redundant preconditions (spin != NULL). Added
8794         inline API function docs.
8795         (gtk_spin_button_new_with_range): New convenience constructor.
8796         (gtk_spin_button_set_increments): New adjustment helper.
8797         (gtk_spin_button_set_range): New adjustment helper.
8798
8799         * gtk/testgtk.c : added test of the new convenince constructor and
8800         value_changed signals.
8801
8802 Thu Mar 29 20:20:38 2001  Jonathan Blandford  <jrb@redhat.com>
8803
8804         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): Now we
8805         listen to the reorder signal.
8806
8807 Wed Mar 28 20:30:26 2001  Owen Taylor  <otaylor@redhat.com>
8808
8809         * gtk/gtkwidget.[ch] (_gtk_widget_get_aux_info): Add private function
8810         to get the aux info structure fo the widget.
8811
8812         * gtk/gtklabel.c gtk/gtkscrolledwindow.c gtk/gtkwindow.c: Use
8813         above function.
8814
8815         [ Patch from  Havoc Pennington  <hp@redhat.com> ]
8816
8817         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): function
8818         to get the size of the window manager frame, basically the same
8819         code that gdk_window_get_root_origin() had
8820         (gdk_window_get_root_origin): use gdk_window_get_frame_extents()
8821
8822         * gtk/gtkwindow.c (gtk_window_set_default_size): use
8823         gdk_window_resize() if the window is realized and resizeable
8824
8825         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): fix
8826         typo so that setting gravity works
8827
8828         * gtk/gtkwindow.c (gtk_window_move_resize): don't ever use
8829         allocation if auto_shrink is on, even if the default size
8830         has not changed.
8831
8832         * gtk/gtkwidget.c (gtk_widget_render_icon): remove bogus
8833         g_return_if_fail
8834
8835 Thu Mar 29 16:29:12 2001  Jonathan Blandford  <jrb@redhat.com>
8836
8837         * gtk/gtkliststore.c (gtk_list_store_iter_changed): Massive
8838         reordering/sorting work.  Now pretty much works.
8839
8840         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Lots of work to make
8841         reorder mostly work.  Still need to get the parity correct.
8842
8843         * gtk/gtktreeviewcolumn.c: Listen for "model" property changed
8844         signal, so I can listen for the sort_column_changed signal so I
8845         can change my "sort_indicator" property.  Cool.
8846
8847 Wed Mar 28 00:03:10 2001  Owen Taylor  <otaylor@redhat.com>
8848
8849         [ Patch from Havoc Pennington, hp@redhat.com ]
8850
8851         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c:
8852         Add functions gdk_window_begin_resize_drag/begin_move_drag
8853         to start resizing or moving a toplevel window. This
8854         is done either using the _NET_WM_MOVERESIZE protocol,
8855         or, if that isn't present, by emulation.
8856
8857         * gtk/gtkwindow.[ch]: Add functions gtk_begin_move/resize_drag
8858         to export the above to GTK+-land.
8859
8860         * gtk/gtkstyle.[ch]: Add ->draw_resize_grip() paint func.
8861         
8862         * gtk/gtkwindow.c gdk/gdkwindow.[ch] (gdk_window_constrain_size):
8863         Move this function into gdkwindow, since we need it
8864         when implementing fallback resizing.
8865
8866         * gdk/x11/gdkwindow-x11.c: gdk_window_set_geometry_hints.
8867         Fix typo when setting gravity.
8868
8869         * gtk/gtkstatusbar.[ch] (gtk_statusbar_set_has_resize_grip):
8870         Add an optional (but on by default) resize grip for resizing 
8871         the parent window.
8872
8873 01-03-29  Alexander Larsson  <alexl@redhat.com>
8874
8875         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
8876         Don't return TRUE from the event handler, that blocks all
8877         event signals on the tooltip widget. Now you can press buttons
8878         in toolbars again.
8879
8880 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
8881
8882         * gtk/testtext.c (create_buffer): Add missing NULL on
8883         valist.
8884
8885         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Fix
8886         c-n-p problem with INCONSISTENT property.
8887
8888         [ Patch from Havoc Pennington  <hp@redhat.com> ]
8889
8890         * gtk/gtkentry.h (struct _GtkEntryClass): add same populate_popup
8891         hook.
8892
8893         * gtk/gtktextview.h (struct _GtkTextViewClass): add populate_popup
8894         signal as a hook for extending the default popup menu
8895
8896         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
8897         use radio menu items for the input method menuitems
8898
8899         * gtk/gtkimcontextsimple.c (check_hex): do better validation of 
8900         inserted unicode from Ctrl-Shift-hex input method
8901
8902         * gtk/gtktextbtree.c (_gtk_text_btree_insert): remove utf8
8903         validatation here, already done at GtkTextBuffer level.
8904
8905         * gtk/gtkwidget.c (gtk_widget_class_init): add binding set, add
8906         popup_menu run action signal and Shift+F10 and Menu keybindings.
8907
8908         * gtk/gtkentry.c: implement a default handler for popup_menu
8909
8910         * gtk/gtktextview.c: implement a default handler for popup_menu
8911
8912         * gtk/gtkmenu.c (gtk_menu_popup): select first item if popup is
8913         from a key event
8914         
8915         * gtk/gtklabel.c: remove "trailer" cruft
8916
8917 Wed Mar 28 17:27:12 2001  Jonathan Blandford  <jrb@redhat.com>
8918
8919         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): new function to
8920         handle reordering of trees.  Seems to mostly work w/ the exception
8921         of the parity flag.
8922
8923         * gtk/gtktreeview.c (gtk_tree_view_reordered): handle "reordered"
8924         signal.
8925
8926 Wed Mar 28 21:12:37 2001  Tim Janik  <timj@gtk.org>
8927
8928         * gtk/gtkwidget.h: c++ fixes.
8929
8930 Sun Mar 25 15:51:28 2001  Owen Taylor  <otaylor@redhat.com>
8931
8932         * gtk/gtksettings.c (gtk_settings_init): Fix use of uninitialized
8933         memory.
8934
8935 Tue Mar 27 22:36:07 2001  Owen Taylor  <otaylor@redhat.com>
8936
8937         * gtk/gtkwidget.h gtk/gtkrange.h: Apply patch from 
8938         Nils Barth fixing event return values. (#51041)
8939
8940         * gtk/gtkwidget.c: Fix some return values for default
8941         functions.
8942
8943         * gtk/gtk[vh]scrollbar.c gtk/gtk[vh]range.c: Fix
8944         return values for trough_keys functions.
8945
8946         * gtk/gtkwidget.h (struct _GtkWidgetClass): Fix return
8947         value for add_accelerator (shoudl have been a void
8948         return.)
8949
8950         * gtk/gtkcellrenderer.[ch]: gtkcellrenderertoggle.h:
8951         Fix return type of EVENT.
8952
8953         * gtk/gtkmarshal.list gtk/gtktexttag.c: Make EVENT
8954         signal return a boolean.
8955
8956 Tue Mar 27 22:07:44 2001  Jonathan Blandford  <jrb@redhat.com>
8957
8958         * gtk/gtkliststore.c (gtk_list_store_sort): Fix arguments to
8959         reordered signal.
8960
8961         * tests/testtreesort.c (main): fix spelling.
8962
8963 Tue Mar 27 20:55:29 2001  Jonathan Blandford  <jrb@redhat.com>
8964
8965         * gtk/gtkliststore.c: More work on implementing sortable
8966         interface.
8967
8968 Mon Mar 26 15:48:45 2001  Owen Taylor  <otaylor@redhat.com>
8969
8970         * gtk/gtkwindow.c (gtk_window_list_toplevels): Don't
8971         reference the widgets in the resulting list. (#11821)
8972         This makes this consistent with gtk_container_children.
8973
8974         * gtk/gtkwindow.c gtk/gtkwidget.c: Fix up the two
8975         uses of gtk_window_list_toplevels.
8976
8977 Mon Mar 26 15:26:17 2001  Owen Taylor  <otaylor@redhat.com>
8978
8979         * gtk/gtkimcontext.c (gtk_im_context_set_use_preedit): Add
8980         a virtual function to set whether the IM context should use 
8981         the preedit string. (#51922)
8982         
8983 Mon Mar 26 14:42:59 2001  Owen Taylor  <otaylor@redhat.com>
8984
8985         * gdk/gdkpango.h: Remove stale FIXME comment.
8986
8987 2001-03-26  Alexander Larsson  <alla@lysator.liu.se>
8988
8989         * gtk/gtkfilesel.c (gtk_file_selection_get_filename):
8990         Fixed bug that returned NULL if a filename was selected.
8991
8992 2001-03-24  Havoc Pennington  <hp@pobox.com>
8993
8994         * gtk/gtkthemes.c (gtk_theme_engine_load): improve error message
8995         to contain the word "theme"
8996
8997 2001-03-24  Havoc Pennington  <hp@pobox.com>
8998
8999         * gtk/gtkhsv.c (gtk_hsv_move): make motion around the ring much
9000         slower but finer-grained
9001         (gtk_hsv_focus): get initial focus on the ring or triangle 
9002         according to tab direction
9003
9004         * gtk/testgtk.c (main): get rid of weird sleep(1) on exit
9005
9006 2001-03-23  Havoc Pennington  <hp@pobox.com>
9007
9008         * gtk/gtkhsv.c: make this somewhat key-navigable
9009
9010         * gtk/gtkfontsel.c: mnemonics
9011
9012         * gtk/gtkgamma.c: mnemonics
9013
9014         * gtk/gtkcolorsel.c: add mnemonics to labels
9015
9016 2001-03-22  Havoc Pennington  <hp@pobox.com>
9017
9018         Applied big patch from Seth Lytle to fix event handler return
9019         values, slightly modified.
9020
9021         * gtk/gtkcalendar.c (gtk_calendar_button_press): return TRUE if
9022         handled.
9023         (gtk_calendar_key_press): return TRUE for GDK_space triggers
9024         select_day
9025
9026         * gtk/gtkclist.c (gtk_clist_button_press): return TRUE if handled
9027         (gtk_clist_button_release): return TRUE if handled
9028
9029         * gtk/gtkcolorsel.c (mouse_release):
9030         (palette_activate): 
9031         (palette_press): 
9032         (palette_new): 
9033         (mouse_press): 
9034         (get_screen_color): 
9035         fixed return type (void to gboolean), return TRUE,
9036         added GTK_SIGNAL_FUNC cast
9037
9038         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fixed return type
9039         (void to gboolean), and return TRUE
9040         (gtk_combo_button_release): changed return value to TRUE after
9041         gtk_grab_add on combo->popwin
9042
9043         * gtk/gtkctree.c (gtk_ctree_button_press): return TRUE if triggers a
9044         collapse or expand
9045
9046         * gtk/gtkcurve.c (gtk_curve_graph_events): return TRUE for
9047         button/motion
9048
9049         * gtk/gtkdnd.c (gtk_drag_source_event_cb): return TRUE for button
9050         press/release and motion that trigger act
9051
9052         * gtk/gtkentry.c (gtk_entry_button_release): return TRUE
9053
9054         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): return TRUE
9055         for GDK_Return
9056         
9057         * gtk/gtklist.c (gtk_list_button_press): return TRUE mostly
9058         (gtk_list_button_release): return TRUE if selection
9059
9060         * gtk/gtklistitem.c (gtk_list_item_button_press): return TRUE on
9061         press
9062
9063         * gtk/gtkmenushell.c (gtk_menu_shell_button_press):
9064         (gtk_menu_shell_button_release): chain parent_menu_shell retval
9065
9066         * gtk/gtknotebook.c (gtk_notebook_button_press): return FALSE if
9067         nothing triggered
9068         (gtk_notebook_button_release): return TRUE if we do anything
9069
9070         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): 
9071         (gtk_spin_button_button_release): return TRUE or chained retval
9072
9073         * gtk/gtktext.c (gtk_text_button_press): 
9074         (gtk_text_button_release): return TRUE
9075         (gtk_text_key_press): remove redundant retval code
9076         
9077         * gtk/gtktreeitem.c (gtk_tree_item_button_press): return TRUE if button
9078         and sensitive
9079         (gtk_tree_item_subtree_button_click): changed type to gint, and return
9080         TRUE if sensitive
9081
9082         * gtk/gtktooltips.c (gtk_tooltips_event_handler): deactivate implies 
9083         return TRUE
9084
9085 2001-03-23  Havoc Pennington  <hp@redhat.com>
9086
9087         * gtk/testgtk.c: fix warnings
9088
9089         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): fix return value
9090
9091         * gtk/gtktextview.c: fix warnings
9092
9093         * gtk/gtktext.c (find_cursor_at_line): fix warning
9094
9095         * gtk/gtkselection.c (gtk_selection_notify): fix warning 
9096
9097         * gtk/gtkitemfactory.c (gtk_item_factory_menu_pos): fix signature
9098         of this function
9099
9100         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
9101         fix warning
9102
9103         * gtk/gtkhandlebox.c (gtk_handle_box_style_set): fix warning
9104
9105         * gtk/gtkfontsel.c: fix warning
9106
9107         * gtk/gtkcolorsel.c: fix warnings
9108
9109 2001-03-23  Havoc Pennington  <hp@redhat.com>
9110
9111         * gtk/gtkhandlebox.c: Apply property patch from Lee Mallabone
9112
9113         * gtk/gtkbox.c: Apply property patch from Lee Mallabone
9114
9115         * gtk/gtkcheckmenuitem.c: Apply property patch from Lee Mallabone,
9116         and deprecated gtk_check_menu_item_set_show_toggle().
9117         
9118         * gtk/gtkbutton.c: Apply property patch from Lee Mallabone
9119
9120         * gtk/gtkfilesel.c: Apply property patch from Lee Mallabone
9121
9122         * gtk/gtkframe.c: Apply property patch from Lee Mallabone
9123
9124 2001-03-23  Havoc Pennington  <hp@redhat.com>
9125
9126         * gtk/gtktoolbar.c, gtk/gtkimcontext.c, gtk/gtklabel.c: fix up
9127         some docs
9128
9129 Fri Mar 23 16:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
9130
9131         * gtk/gtktreeviewcolumn.h (GtkCellDataFunc): Forgot to namespace
9132         this.
9133
9134         * gtk/gtktreestore.c (gtk_tree_store_set_value): change from
9135         set_cell to set_value
9136
9137         * gtk/gtkliststore.c (gtk_list_store_set_value): change from
9138         set_cell to set_value
9139
9140 Thu Mar 22 19:27:34 2001  Jonathan Blandford  <jrb@redhat.com>
9141
9142         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
9143         fix braino.
9144         * gtk/gtktreesortable.[ch]: New interface to add cleanup sortable
9145         support.
9146
9147         * gtk/gtktreeview.c: Addition of initial sortable support.
9148
9149         * gtk/gtktreestore.c: Addition of initial sortable support.
9150
9151         * gtk/gtkliststore.c: Addition of initial sortable support.
9152
9153         * gtk/gtkmarshal.list: yet another marshaller.
9154
9155         * gtk/gtktreedatallist.[ch]: shared code between the store models
9156         for handling sorting headers.
9157
9158 2001-03-22  Havoc Pennington  <hp@redhat.com>
9159
9160         * gtk/gtkcontainer.c (gtk_container_set_focus_chain): 
9161         (gtk_container_unset_focus_chain): Add ability to override the 
9162         focus chain for a container explicitly
9163
9164 Thu Mar 22 13:01:44 2001  Tim Janik  <timj@gtk.org>
9165
9166         * gtk/gtklabel.[hc]: some cleanups, fixed mnemonic_widget handling,
9167         added PROP_MNEMONIC_WIDGET.
9168
9169         * gtk/gtkwindow.c (gtk_window_activate_mnemonic): 
9170         (gtk_window_remove_mnemonic): 
9171         (gtk_window_add_mnemonic): fixed assertions.
9172         (gtk_window_activate_mnemonic): constrain modifier checks to those
9173         permitted by gtk_accelerator_get_default_mod_mask().
9174         got rid of gtk_window_get_default_accel_group().
9175
9176         * gtk/gtkwidget.c (gtk_widget_real_activate_mnemonic): handle non
9177         activatable widgets either by focussing or a warning.
9178         added a signal accumulator to ::activate_mnemonic which stops the
9179         emission once a handler returned TRUE.
9180
9181 2001-03-22  Havoc Pennington  <hp@pobox.com>
9182
9183         * gtk/gtktoolbar.c (gtk_toolbar_insert_stock): handle mnemonics in
9184         the stock item label
9185
9186         * gtk/gtklabel.c: s/@gtk_func/gtk_func()/ in docs
9187
9188         * gtk/gtkstock.c (builtin_items): add mnemonics where missing
9189
9190         * demos/gtk-demo/*.c: Add mnemonics all over the place
9191
9192         * gtk/gtklabel.h: mark parse_uline deprecated
9193
9194 2001-03-21  Alexander Larsson  <alexl@redhat.com>
9195
9196         * gtk/gtkitemfactory.[ch]:
9197         Add support for stock and normal imagemenuitems.
9198         
9199         * gtk/testgtk.c:
9200         Add some tests for mnemonics, stock toolbars, stock
9201         and image menuitems in itemfactory and gdk_window_scroll.
9202
9203 2001-03-21  Alexander Larsson  <alexl@redhat.com>
9204
9205         * gtk/gtkbutton.[ch]:
9206         * gtk/gtkdialog.c:
9207         Renamed gtk_button_new_stock() to gtk_button_new_from_stock() and
9208         removed accel_group argument. Renamed gtk_button_new_accel() to
9209         gtk_button_new_with_mnemonic() and removed accel_group argument.
9210
9211         * gtk/gtkcheckbutton.[ch]:
9212         New function gtk_check_button_new_with_mnemonic().
9213
9214         * gtk/gtkentry.c:
9215         Override activate_mnemonic and just grab focus.
9216
9217         * gtk/gtkitemfactory.c:
9218         Don't add menu uline accel group, instead use mnemonics support.
9219
9220         * gtk/gtklabel.[ch]:
9221         New support for mnemonics.
9222
9223         * gtk/gtkmarshal.list:
9224         Needed BOOLEAN:BOOLEAN for activate_mnemonic.
9225
9226         * gtk/gtkmenu.[c]:
9227         * gtkmenushell.c:
9228         Use mnemonics instead of accel groups for uline
9229         support in menu items.
9230         Removed gtk_menu_get_uline_accel_group() and
9231         gtk_menu_ensure_uline_accel_group().
9232
9233         * gtk/gtkmenuitem.c:
9234         Override activate_mnemonic to handle switching between
9235         menu items if there are collisions.
9236         
9237         * gtk/gtknotebook.c:
9238         Connect to activate_mnemonic on the tab_label, so that
9239         activating it switches to that notebook page.
9240
9241         * gtk/gtkwidget.[ch]:
9242         Add activate_mnemonic signal. New function
9243         gtk_widget_activate_mnemonic() to emit it.
9244         Default implementation does activate/grab_focus.
9245
9246         * gtk/gtkwindow.[ch]:
9247         Add support for mnemonics in windows.
9248         New functions:
9249         gtk_window_add_mnemonic, gtk_window_remove_mnemonic,
9250         gtk_window_activate_mnemonic, gtk_window_set_mnemonic_modifier
9251
9252         * gtk/testgtk.c:
9253         Update to function name changes.
9254         
9255 2001-03-21  Alexander Larsson  <alexl@redhat.com>
9256
9257         * gtk/gtkimagemenuitem.[c]:
9258         Add gtk_image_menu_item_new_from_stock()
9259
9260 Tue Mar 20 15:00:43 2001  Jonathan Blandford  <jrb@redhat.com>
9261
9262         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
9263         Fix buglet in meeting.
9264
9265 2001-03-19  Havoc Pennington  <hp@redhat.com>
9266
9267         * gtk/gtkiconfactory.c: Make GtkIconSource an opaque datatype, and
9268         add a bunch of accessor functions. This is because we have
9269         reasonable expectations of extending what fields it contains in
9270         the future.
9271
9272         * gtk/gtkstyle.c (gtk_default_render_icon): adapt to icon source
9273         changes
9274
9275         * gtk/gtkrc.c (gtk_rc_parse_icon_source): fix to use new
9276         GtkIconSource   
9277
9278 Mon Mar 19 15:53:36 2001  Owen Taylor  <otaylor@redhat.com>
9279
9280         * gtk/gtkitemfactory.c gtk/testgtk.c: Handle quoting of / with \; properly
9281         handle __ in paths, quote " and \n in gtk_item_factory_dump_items().
9282
9283         * gtk/gtkadjustment.[ch] gtk/gtkclist.c gtk/gtkhruler.c gtk/gtklayout.c 
9284           gtk/gtklist.c gtk/gtkprogress.[ch] gtk/gtkprogressbar.[ch] gtk/gtkrange.[ch]
9285           gtk/gtkruler.[ch] gtk/gtkscale.c gtk/gtkscrolledwindow.c gtk/gtkspinbutton.[ch]
9286           gtk/gtktext.c gtk/gtktextview.c gtk/gtkvruler.c gtk/testgtk.c:
9287         Change float to double everywhere with the exception of 0<->1.0 alignment
9288         and GtkCurve.
9289
9290 2001-03-19  Tor Lillqvist  <tml@iki.fi>
9291
9292         * gdk/win32/gdkdrawable-win32.c
9293         * gdk/win32/gdkimage-win32.c: Use correct casts in debugging
9294         output.
9295
9296         * demos/testpixbuf-drawable.c: If GDK_WINDOWING_WIN32, include
9297         gdkwin32.h.
9298
9299 2001-03-18  Tor Lillqvist  <tml@iki.fi>
9300
9301         * gdk/win32/gdkevents-win32.c (print_window_state): New function.
9302         print_event_state, print_event): Use preprocessor macro to make
9303         code more compact. Print also GDK_WINDOW_STATE events.
9304         (synthesize_crossing_events): Remove the old #ifdeffed-out code.
9305         
9306         * gtk/gtk.def
9307         * gtk/makefile.mingw.in: Update.
9308
9309         * gtk/gtkmain.h: Check for G_PLATFORM_WIN32, not only G_OS_WIN32,
9310         to catch also Cygwin.
9311
9312 Sun Mar 18 01:15:30 2001  Tim Janik  <timj@gtk.org>
9313
9314         * gtk/gtkspinbutton.[hc]: added rc-style argument
9315         GtkSpinButton::shadow_type.
9316         removed spin_button->shadow_type, gtk_spin_button_set_shadow_type()
9317         and ARG_SHADOW_TYPE as it doesn' make much sense to try to override
9318         rc-style settings.
9319
9320         * gtk/gtkfixed.c: removed gtk_fixed_paint() (was unused).
9321
9322         * gtk/gtkwidget.c: quark cleanups.
9323
9324         * gtk/gtkrc.[hc]: added gtk_rc_scanner_new() to create an rc-file
9325         scanner with appropriate configuration, renamed GtkRcStyleClass.clone
9326         to create_rc_style() (we don't do cloning in standard OO sense).
9327         added per rc style properties.
9328         
9329         * gtk/gtkstyle.[hc]: added code to retrive pspec conformant rc-style
9330         property values and for caching those. some cleanups.
9331         
9332         * gtk/Makefile.am: -DG_DISABLE_CONST_RETURNS.
9333         
9334         * gtk/gtksettings.[hc]: new file for global rc-file properties
9335         (at least currently, should get extended to support X properties
9336         and other communication mechanisms).
9337         
9338         * gtk/gtkwidget.[hc]: added style property support:
9339         (gtk_widget_class_install_style_property_parser): install style
9340         property pspec with parser function for rc-file values other
9341         than LONG, DOUBLE or STRING.
9342         (gtk_widget_class_install_style_property): same as above without
9343         parser (parsers are going to be needed quite infrequently).
9344         (gtk_widget_style_get_property): retrive style property value.
9345         (gtk_widget_style_get_valist): same as above with varargs support,
9346         has NOCOPY semantics.
9347         (gtk_widget_style_get): wrapper around gtk_widget_style_get_valist().
9348
9349 Fri Mar 16 18:24:53 2001  Jonathan Blandford  <jrb@redhat.com>
9350
9351         * demos/gtk-demo/main.c (row_activated_cb): modified to use
9352         "row_activated" signal.
9353
9354         * gtk/gtktreeview.c (gtk_tree_view_row_activated): oh, the
9355         stupidity.  Lets actually pass in the row with this signal...
9356
9357 Fri Mar 16 18:01:17 2001  Jonathan Blandford  <jrb@redhat.com>
9358
9359         * gtk/gtktreeviewcolumn.[ch]: s/GTK_TREE_COLUMN/GTK_TREE_VIEW_COLUMN
9360
9361         * gtk/gtktreeview.c (gtk_tree_view_row_activated): New signal.
9362
9363         * gtk/gtktreeview.c (gtk_tree_view_destroy): moved pretty much
9364         everything into the ::destroy function, and freed a lot more.
9365
9366 2001-03-16  Havoc Pennington  <hp@redhat.com>
9367
9368         * gtk/gtkwidget.h (struct _GtkWidgetAuxInfo): change to use gint
9369         instead of gint16, to avoid overflow issues, since sizes > 16-bit
9370         are now allowed.
9371
9372 2001-03-16  Havoc Pennington  <hp@redhat.com>
9373
9374         * Applied patch from Nils Barth (bug # 51041) to 
9375         replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
9376         in various places.
9377
9378 2001-03-15  Havoc Pennington  <hp@redhat.com>
9379         
9380         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): add varargs 
9381         for properties to set on the tag.
9382
9383         * gtk/testtext.c: fixups to reflect create_tag change
9384         
9385         * gtk/gtktexttag.c (gtk_text_tag_set_property):
9386         background/foreground stipple are objects, not boxed.
9387
9388         * demos/gtk-demo/textview.c: intellihancing
9389
9390 Fri Mar 16 11:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
9391
9392         * gtk/gtktreeview.c (gtk_tree_view_set_model): Fixed some
9393         braindeadness spotted by Jamie Strachan <frostfreek@yahoo.com>.
9394
9395 2001-03-16  Alexander Larsson  <alexl@redhat.com>
9396
9397         * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
9398         Fix sign error with queued region translations.
9399
9400 2001-03-15  HideToshi Tajima  <tajima@happy>
9401
9402         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
9403         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_location):
9404         * gtk/gtkentry.c (update_im_cursor_location): 
9405         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_location):
9406         * gtk/gtkimcontext.h (struct _GtkIMContextClass): rename
9407         set_cursor_pos to set_cursor_location in GtkInputContext class
9408
9409 Thu Mar 15 18:22:44 2001  Jonathan Blandford  <jrb@redhat.com>
9410
9411         * gtk/gtkcellrenderer.h: Changed prototype to allow for getting
9412         the location of the cell relative to its area.
9413         * gtk/gtkcell*: modified for above change
9414         * gtk/gtktreeview.c: modified for above change.
9415
9416 Wed Mar 14 13:58:32 2001  Jonathan Blandford  <jrb@redhat.com>
9417
9418         * gtk/gtktreeview.c (gtk_tree_view_set_model): Ref the model.
9419          (gtk_tree_view_finalize): actually unref the model.  Thanks to
9420         Jamie Strachan <frostfreek@yahoo.com> for noticing this error.
9421
9422 2001-03-14  Havoc Pennington  <hp@redhat.com>
9423
9424         * gtk/gtkdata.h, gtk/gtkdata.c: Delete.
9425         
9426         * gtk/gtk.h: remove gtkdata.h
9427
9428         * gtk/Makefile.am: remove gtkdata
9429         
9430         * gtk/gtktext.c (gtk_text_set_adjustments): connect to "destroy"
9431         not "disconnect" on the adjustments.
9432         
9433         * gtk/gtktooltips.h, gtk/gtktooltips.c: derive from GtkObject not
9434         GtkData
9435
9436         * gtk/gtkadjustment.h, gtk/gtkadjustment.c: derive from GtkObject
9437         not GtkData
9438
9439         * configure.in: handle case where X render exists, but Pango lacks
9440         Xft support.
9441
9442 2001-03-15 Alexander Larsson  <alexl@redhat.com>
9443
9444         * gtk/gtktoolbar.[ch]:
9445         New functions gtk_toolbar_set_icon_size and gtk_toolbar_insert_stock
9446         to add stock items to toolbars.
9447
9448         * gtk/Makefile.am:
9449         Remove ../gdk/gdkim.h from gdk_headers.
9450
9451 2001-03-15  Sven Neumann  <sven@gimp.org>
9452
9453         * gdk/gdkim.h: removed
9454         
9455         * gdk/gdkprivate.h
9456         * gdk/x11/gdkim-x11.c: do not include gdkim.h 
9457
9458 2001-03-14  HideToshi Tajima  <tajima@happy.sunsoft.eng.sun.com>
9459
9460         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_pos):
9461         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_pos):
9462         * gtk/gtkimcontext.h (struct _GtkIMContextClass): add
9463         set_cursor_pos() virtual method
9464
9465         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_class_init):
9466         (gtk_im_context_xim_set_cursor_pos): add implementation for
9467         set_cursor_pos() method
9468
9469         * gtk/gtkentry.c (recompute_idle_func): set current cursor
9470         position to input methods
9471
9472 Mon Mar 12 21:02:08 2001  Jonathan Blandford  <jrb@redhat.com>
9473
9474         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Fix up focus
9475         code a lot.
9476
9477         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): use
9478         g_mem_chunk.
9479         (_gtk_tree_data_list_alloc): use g_mem_chunk.
9480         (_gtk_tree_data_list_node_to_value): Fix to switch on
9481         G_TYPE_FUNDAMENTAL.
9482         (_gtk_tree_data_list_value_to_node): Fix to switch on
9483         G_TYPE_FUNDAMENTAL.
9484         (_gtk_tree_data_list_node_copy): Fix to switch on
9485         G_TYPE_FUNDAMENTAL.
9486
9487 2001-03-12  Havoc Pennington  <hp@redhat.com>
9488
9489         * gtk/gtkwindow.c (gtk_window_class_init): Patch from John Margaglione 
9490         to convert to new property API. Also, change default_width and
9491         default_height get_property to return 0 as the flag value for
9492         "unset"; -1 is not a valid value for these fields.
9493
9494 2001-03-12  Havoc Pennington  <hp@redhat.com>
9495
9496         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: Switch to using an
9497         enum with registration for icon sizes, instead of strings.
9498
9499         * gtkimage.h, gtkimage.c, gtkstyle.h, gtkstyle.c, gtkwidget.h, 
9500         gtkwidget.c: Fix to reflect GtkIconSize
9501         
9502 2001-03-12  Alexander Larsson  <alexl@redhat.com>
9503
9504         Make GtkFB compile and link.
9505         
9506         * gdk/linux-fb/gdkdrawable-fb2.c:
9507         window->mapped to GDK_WINDOW_IS_MAPPED(). 
9508         
9509         * gdk/linux-fb/gdkwindow-fb.c:
9510         window->mapped to GDK_WINDOW_IS_MAPPED(). 
9511         Added gdk_window_shape_combine_region.
9512         Added assorted placeholders for unimplemented new GdkWindow API calls.
9513
9514 2001-03-12  Alexander Larsson  <alexl@redhat.com>
9515
9516         * gtk/gtkfilesel.c:
9517         Add more test when converting filenames from/to utf-8.
9518         Don't allow entering text in the filename entry which isn't allowed in
9519         a filename. Just beep instead.
9520
9521 2001-03-12  Alexander Larsson  <alexl@redhat.com>
9522
9523         * gtk/gtkclist.c:
9524         Scroll using gdk_window_scroll(). Don't wait for exposes.
9525         Move the column headers in an order that makes them flash less.
9526
9527 2001-03-10  Hans Breuer  <hans@breuer.org>
9528
9529         * gdk/gdk.def : updated
9530
9531         * gdk/win32/gdkgc-win32.c : pixmaps are visible again, due
9532         to offseting the clip_mask at the right place
9533
9534         * gdk/win32/gdkwindow-win32.c : don't create background brushes
9535         for all the gdkClasses, especially not for the input_only case.
9536         Otherwise flickering wont be avoidable, because we don't get
9537         WM_ERASEBKGND message for these windows.
9538
9539         * gdk/win32/gdkevents-win32.c : initialize event->expose.region
9540         and fixed massive redraw problems apparently triggered by Alexanders 
9541         recent change. Not fully understood the GDK_EXPOSE / WM_PAINT handling
9542         but it seems to work quite well :-)
9543
9544         * gdk/win32/gdkprivate-win32.h : added _gdk_window_process_expose
9545         prototype
9546
9547 Sat Mar 10 12:15:31 2001  Jonathan Blandford  <jrb@redhat.com>
9548
9549         * gtk/gtktreestore.c (gtk_tree_store_set_cell): Fix a stupid typo.
9550         (gtk_list_store_set_cell): Fix a stupid typo.
9551
9552 Fri Mar  9 20:36:21 2001  Jonathan Blandford  <jrb@redhat.com>
9553
9554         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): Make
9555         select_all not work if you're in SINGLE mode (it doesn't make that
9556         much sense, anyway.)
9557
9558         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
9559         handle types more sanely.
9560         (_gtk_tree_data_list_value_to_node): handle types more sanely.
9561         (_gtk_tree_data_list_node_copy): handle types more sanely.
9562
9563         * gtk/gtkliststore.c (gtk_list_store_set_cell): fix to work with
9564         GValue better. Converts the type as well.
9565
9566         * gtk/gtktreestore.c (gtk_tree_store_set_cell): fix to work with
9567         GValue better. Converts the type as well.
9568
9569 Wed Mar  7 20:47:41 2001  Owen Taylor  <otaylor@redhat.com>
9570
9571         * gtk/gtktext.c gtk/gtkoldeditable.[ch] gdk/gdk.[ch]
9572         gdk/Makefile.am gdk/x11/Makefile.am gdk/x11/gdkevents-x11.c 
9573         gdk/x11/gdkglobals-x11.c gdk/x11/gdkprivate-x11.c
9574         gdk/x11/gdkx.h gdk/x11/gdkim-x11.c: Remove old XIM code.
9575
9576         * gdk/win32/gdkim-win32.c gdk/linux-fb/gdkim-fb.c: Remove
9577         gdk_im/gdk_ic.
9578
9579 2001-03-09  Hans Breuer  <hans@breuer.org>
9580
9581         * gdk/gdk.def : updated
9582
9583         * gdk/win32/gdkevents-win32.c : don't ask input_only windows
9584         for their palette
9585
9586         * gdk/win32/gdkgeometry-win32.c : reflect GdkWindowObject::mapped
9587         removing
9588
9589         * gdk/win32/gdkwindow-win32.c : reflect GdkWindowObject::mapped
9590         removing and implemented Havoc's GdkWindow state functions; 
9591         stick/unstick only as no-op, cause I don't know how to emulate 
9592         on win32 ...
9593
9594         * gtk/gtk.def : updated
9595
9596         * gtk/gtkbox.c (gtk_box_get_spacing) : use g_return_val_if_fail ()
9597
9598         * gtk/gtktypeutils.c : #include <string.h>
9599
9600         * gtk/gtkwindow.h : declare gtk_window_set_decorated ()
9601
9602 Fri Mar  9 09:31:55 2001  Tim Janik  <timj@gtk.org>
9603
9604         * gtk/gtkwidget.c (gtk_widget_class_init): fixed signals with
9605         GDK_TYPE_DRAG_CONTEXT, it needs to be marshaled as an object,
9606         not a boxed.
9607
9608 2001-03-09  Alexander Larsson  <alexl@redhat.com>
9609
9610         * docs/Changes-2.0.txt:
9611         Document expose event->region change and that gtk_widget_event
9612         doesn't allow passing expose events.
9613
9614         * gdk/gdkevents.h:
9615         Add region to expose event.
9616         
9617         * gdk/gdkevents.c:
9618         Handle event->region in gdk_event_copy() and gdk_event_free().
9619
9620         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
9621         Generate expose_event->region when creating expose events.
9622
9623         * gdk/x11/gdkevents-x11.c:
9624         Generate expose events with regions when translating X events.
9625
9626         * gtk/gtkcontainer.[ch]:
9627         Default expose handler that propagates expose events to NO_WINDOW
9628         children. New function gtk_container_propagate_expose()
9629
9630         * gtk/gtkwidget.[ch]:
9631         Moved gtk_widget_event implementation to gtk_widget_event_internal.
9632         gtk_widget_event calls gtk_widget_event_internal but doesn't allow
9633         expose events. New function gtk_widget_send_expose() to send expose
9634         events. New function gtk_widget_region_intersect() to calculate
9635         window/region intersections.
9636         
9637         * gtk/gtkmain.c (gtk_main_do_event):
9638         Use gdk_window_begin_paint_region() instead of gdk_window_begin_paint_rect().
9639         Use gtk_widget_send_expose() to send expose events.
9640         
9641         * gtk/gtkbin.c:
9642         * gtk/gtkbox.c:
9643         * gtk/gtkfixed.c:
9644         * gtk/gtkimagemenuitem.c:
9645         * gtk/gtklist.c:
9646         * gtk/gtkpacker.c:
9647         * gtk/gtktable.c:
9648         * gtk/gtktree.c:
9649         Remove expose handler, using the default container implementation
9650         instead.
9651         
9652         * gtk/gtkbutton.c:
9653         * gtk/gtkcheckbutton.c:
9654         * gtk/gtkeventbox.c:
9655         * gtk/gtkfixed.c:
9656         * gtk/gtkhandlebox.c:
9657         * gtk/gtklayout.c:
9658         * gtk/gtklistitem.c:
9659         * gtk/gtkmenu.c:
9660         * gtk/gtkmenubar.c:
9661         * gtk/gtkmenuitem.c:
9662         * gtk/gtknotebook.c:
9663         * gtk/gtkoptionmenu.c:
9664         * gtk/gtkpaned.c:
9665         * gtk/gtkscrolledwindow.c:
9666         * gtk/gtktogglebutton.c:
9667         * gtk/gtktoolbar.c:
9668         * gtk/gtktreeitem.c:
9669         * gtk/gtkviewport.c:
9670         Chain expose handler to parent class handler. Use
9671         gtk_container_propagate_expose() to propagate exposes.
9672
9673         * gtk/gtkclist.c (check_exposures):
9674         * gtk/gtktext.c (process_exposes):
9675         Use gtk_widget_send_expose instead of gtk_widget_event.
9676
9677 Thu Mar  8 19:40:28 2001  Jonathan Blandford  <jrb@redhat.com>
9678
9679         * gtk/gtktreeview.c (gtk_tree_view_destroy): Add destroy function.
9680
9681 Thu Mar  8 19:18:27 2001  Jonathan Blandford  <jrb@redhat.com>
9682
9683         * gtk/gtktreeview.c (gtk_tree_view_unref_tree_helper): Actually
9684         unref the nodes.   Fixes bug #50058.
9685
9686         * gtk/gtktreemodel.c (gtk_tree_model_ref_node): change
9687         "::ref_iter" to "::ref_node".
9688         (gtk_tree_model_unref_node): change "::unref_iter" to
9689         "::unref_node". Fixes bug #50064.
9690
9691 Thu Mar  8 17:40:09 2001  Jonathan Blandford  <jrb@redhat.com>
9692
9693         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): add
9694         support for invisible cells.
9695          (gtk_tree_view_bin_expose): ditto
9696
9697 Thu Mar  8 16:36:00 2001  Jonathan Blandford  <jrb@redhat.com>
9698
9699         * gtk/gtktreemodel.c (gtk_tree_model_get_type): add prerequesite
9700         on gobjects.
9701
9702         * tests/testtreefocus.c (main): New test file.
9703
9704         * tests/testtreeview.c: update to latest glib changes.
9705
9706         * tests/testtreecolumns.c: update to latest glib changes.
9707
9708 Thu Mar  8 18:13:20 2001  Tim Janik  <timj@gtk.org>
9709
9710         * gtk/testgtk.c: re-enabled event watcher emission hooks.
9711
9712 Thu Mar  8 16:51:21 2001  Tim Janik  <timj@gtk.org>
9713
9714         * *.c: added accumulator data argument to g_signal_newc()
9715         functions.
9716
9717         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): 
9718         * gtk/gtktreeview.c (gtk_tree_view_setup_model): 
9719         * gtk/treestoretest.c (make_window):
9720         s/g_signal_connect/g_signal_connectc/.
9721
9722         * gtk/gtktextbuffer.c: completed signal arg fixups,
9723         they also needed G_SIGNAL_TYPE_STATIC_SCOPE flag.
9724
9725 Thu Mar  8 00:02:30 2001  Owen Taylor  <otaylor@redhat.com>
9726
9727         * gtk/gtkwidget.[ch] (gtk_widget_get_name): Make
9728         G_CONST_RETURN.
9729
9730         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add a 
9731         ::hierarchy-changed signal when a widget changes
9732         from anchored to unanchored or vice versa.
9733         (anchored means 
9734          gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW) != NULL.)
9735         Use a private flag to keep track of this efficiently.
9736
9737 2001-03-07  Havoc Pennington  <hp@redhat.com>
9738
9739         * gtk/testgtk.c (create_spins): uglify so that size request gets
9740         tested.
9741
9742         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Base size
9743         request on values for upper/lower, completes #6152
9744
9745 Wed Mar  7 20:07:22 2001  Owen Taylor  <otaylor@redhat.com>
9746
9747         * Makefile.am: Remove gtk-config-2.0 again.
9748         (Grrrr, pkg-config. And stops make loops.)
9749
9750 Thu Mar  8 00:18:29 2001  Tim Janik  <timj@gtk.org>
9751
9752         * gtk/gtksignal.[hc]: removed old emission hook API.
9753         
9754         * docs/Changes-2.0.txt: fixed sections.
9755         
9756         * gtk/gtktextbuffer.c: signal arg fixups.
9757
9758 2001-03-07  Havoc Pennington  <hp@redhat.com>
9759
9760         * gtk/gtktextview.c (invalidated_handler): use PRIORITY_VALIDATE
9761
9762         * gtk/gtktextview.h (GTK_TEXT_VIEW_PRIORITY_VALIDATE): add this
9763         here, bug #50368; changed to be GDK_PRIORITY_REDRAW + 5, instead
9764         of GDK_PRIORITY_REDRAW + 1, so you can insert stuff in between the
9765         validation and the redraw which is higher priority than the
9766         validation.
9767
9768 2001-03-07  Havoc Pennington  <hp@redhat.com>
9769
9770         * gtk/gtkentry.c (gtk_entry_get_property): remove trailer
9771         (gtk_entry_set_property): remove trailer
9772
9773         * gtk/gtkentry.c (gtk_entry_set_width_chars): 
9774         (gtk_entry_get_width_chars): new functions, to set size request to 
9775         a given number of characters
9776
9777         * gtk/testgtk.c (create_dialog): beef up the dialog test slightly
9778
9779         * gtk/gtkdialog.c (gtk_dialog_set_has_separator): new function
9780         (gtk_dialog_get_has_separator): new function
9781         (run_delete_handler): fix to not emit "response" signal
9782         because we already did in the delete event handler installed
9783         at dialog creation time.
9784         
9785         * gtk/gtkdialog.h: add a has_separator property,
9786         add GTK_DIALOG_NO_SEPARATOR flag
9787
9788 2001-03-07  Havoc Pennington  <hp@redhat.com>
9789
9790         * gtk/gtkwindow.c (gtk_window_set_decorated): new function, turns
9791         off decorations for a window.
9792
9793         * demos/gtk-demo/button_box.c (create_bbox): adapt to button box
9794         changes
9795
9796         * gtk/gtklabel.c (gtk_label_get_layout_offsets): new function 
9797         to get location of PangoLayout inside the label, closes #51198
9798
9799         * gtk/testgtk.c (create_bbox): fix up button box usage
9800
9801         * gtk/testcalendar.c (create_calendar): fix up button box usage
9802
9803         * gtk/gtkfilesel.c (gtk_file_selection_init): fixup buttonbox usage
9804
9805         * gtk/gtkdialog.c (gtk_dialog_init): fixup buttonbox usage
9806
9807         * gtk/gtkhbbox.h: deprecations
9808
9809         * gtk/gtkvbbox.h: deprecations
9810
9811         * gtk/gtkbox.c (gtk_box_get_spacing): new function, used to
9812         emulate deprecated gtk_button_box_get_spacing
9813
9814         * gtk/gtkbbox.h: deprecate some useless functions, remove entirely 
9815         the "set global default" functions
9816         (struct _GtkButtonBox): remove "spacing" field, use the one from 
9817         GtkBox base class
9818
9819         * gtk/gtkbbox.c (_gtk_button_box_child_requisition): rename with uscore
9820
9821         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): If we fail to
9822         render the icon, return the missing image icon.
9823
9824         * gtk/gtkimage.c (gtk_image_set_from_file): fall back to missing
9825         image icon if the load fails.   
9826
9827         * gtk/gtkstock.h (GTK_STOCK_MISSING_IMAGE): Add stock icon for use
9828         when no image is found; should be the Netscape "missing image"
9829         icon eventually but for now is a random image
9830
9831         * gtk/gtkwindow.c (gtk_window_set_role): new function, sets the 
9832         role for the session manager
9833
9834         * gtk/testgtk.c (dnd_drop): remove use of GTK_WINDOW_DIALOG
9835
9836         * gtk/gtkcompat.h (GTK_WINDOW_DIALOG): compat #define
9837         GTK_WINDOW_DIALOG GTK_WINDOW_TOPLEVEL
9838
9839         * gtk/gtkenums.h (enum GtkWindowType): remove GTK_WINDOW_DIALOG
9840
9841 Wed Mar  7 13:24:57 2001  Tim Janik  <timj@gtk.org>
9842
9843         * gtk/*.c: marshaller fixes.
9844         
9845         * gtk/gtkmarshal.list: extreme cleanup.
9846
9847         * gtk/gtktreeview.c (gtk_tree_view_class_init): disable interface
9848         param spec for now.
9849
9850         * gtk/gtktexttag.c (gtk_text_tag_set_property): use g_value_get_boxed()
9851         where appliable.
9852
9853         * gtk/gtktypeutils.[hc]: updates to GLib API changes.
9854         special cased autogenerated boxed types from gtktypebuiltins_ids.c
9855         which are not reference counted:
9856         GtkSelectionData, GdkEvent, GdkColor, GtkTextIter, PangoTabArray,
9857         PangoFontDescription, GtkTreeIter and GtkTreePath.
9858
9859 Thu Mar  1 03:58:56 2001  Tim Janik  <timj@gtk.org>
9860
9861         * gtk/gtktreeselection.h: 
9862         * gtk/gtktreemodel.c:
9863         * gtk/gtktreedatalist.[hc]: fixed includes. no gobject/*
9864         file should be included directly, and gobject/gmarshal.h
9865         as well as gtk/gtkmarshal.h even can't be included directly.
9866
9867         * Makefile.am: grr, install gtk-config-2.0.
9868
9869         * gtk/testgtk.c:
9870         * gtk/simple.c:
9871         * gtk/gtkmenu.c:
9872         * gtk/gtkitemfactory.c: use g_object_connect() instead of
9873         passing "*signal*::*" args to gtk_widget_set().
9874         
9875         * gtk/gtktypeutils.[hc]: got rid of GTK_TYPE_SIGNAL.
9876         
9877         * gtk/*.c: removed trailer arg from property setters and getters.
9878         macro fixups.
9879
9880 2001-03-07  Alexander Larsson  <alexl@redhat.com>
9881
9882         * gtk/gtklabel.c (set_markup): Removed warning
9883
9884 Tue Mar  6 19:59:12 2001  Jonathan Blandford  <jrb@redhat.com>
9885
9886         * gtk/gtkcellrenderer.h (struct _GtkCellRenderer): Add visible
9887         field to allow you to hide cell renderers.
9888
9889         * gtk/gtkcellrenderer.c: Add support for invisible cells.
9890
9891         * gtk/gtktreeview.c: Add support for invisible cells.
9892
9893 Tue Mar  6 17:25:07 2001  Jonathan Blandford  <jrb@redhat.com>
9894
9895         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_clicked):
9896         Add "clicked" signal back to columns.
9897
9898         * ChangeLog: remove conflict markers.
9899
9900 Tue Mar  6 10:45:45 2001  Owen Taylor  <otaylor@redhat.com>
9901
9902         * gtk/gtkbutton.c: Add animation of activation by, on 
9903         activate, pressing the button, and adding a timeout that 
9904         releases the button after 250ms or on key release and
9905         emits ::clicked. (#51501)
9906
9907         * gtk/gtkdialog.c: Bit of a hack - for buttons in the
9908         action area, we connect to ::clicked instead of ::activate
9909         so the dialog stays up through the animation.
9910
9911 Mon Mar  5 16:38:15 2001  Owen Taylor  <otaylor@redhat.com>
9912
9913         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): Only
9914         check the ignore_enter flag for the menu shell that
9915         the item is actually a child of, not for attached
9916         submenus. (#51536)
9917
9918 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
9919
9920         * gtk/gtkmain.c (gtk_propagate_event): Only do special
9921         special key-press grab handling for widgets within
9922         GtkWindows. Otherwise, fall through to normal case.
9923
9924         This prevents key events being sent twice to GtkInvisible
9925         widgets, which can cause all sorts of mischief.
9926
9927 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
9928
9929         * gtk/gtkmain.c (gtk_propagate_event): When a grab
9930         widget is in effect, give the grab widget a first
9931         crack at KEY_PRESS/RELEASE events. (#424)
9932
9933 2001-03-06  James Henstridge  <james@daa.com.au>
9934
9935         * gtk/gtkwidget.c (gtk_widget_class_init): set the class closure
9936         offset for the window_state_event to point at window_state_event
9937         rather than no_expose_event.
9938
9939 Mon Mar  5 19:10:15 2001  Jonathan Blandford  <jrb@redhat.com>
9940
9941         * gtk/gtkimmodule.h: fix busted /* comment */
9942
9943 Mon Mar  5 15:07:05 2001  Jonathan Blandford  <jrb@redhat.com>
9944
9945         * gtk/gtktreeview.c: Apply patch from John Margaglione to add
9946         object properties.
9947
9948 Mon Mar  5 14:55:19 2001  Jonathan Blandford  <jrb@redhat.com>
9949
9950         * gtk/gtkcellrenderertoggle.c: Apply patch from Lee Mallabone to
9951         add object properties.
9952
9953         * gtk/gtkcellrenderertextpixbuf.c: Apply patch from Lee Mallabone
9954         to add object properties.
9955
9956         * gtk/gtkcellrenderertext.c: Apply patch from Lee Mallabone to add
9957         object properties.
9958
9959         * gtk/gtkcellrendererpixbuf.c: Apply patch from Lee Mallabone to
9960         add object properties.
9961
9962         * gtk/gtkcellrenderer.c: Apply patch from Lee Mallabone to add
9963         object properties.
9964
9965 Mon Mar  5 14:38:54 2001  Jonathan Blandford  <jrb@redhat.com>
9966
9967         * gtk/gtktreemodel.c: renamed "child_toggled" to
9968         "has_child_toggled".
9969
9970         * gtk/gtktreeview.c: Handle removing columns better.  Updated to
9971         handle new signal name.
9972
9973         * gtk/gtktreestore.c: Updated to handle new signal name.
9974         * gtk/gtklisttore.c: Updated to handle new signal name.
9975         * gtk/gtktreemodelsort.c: Updated to handle new signal name.
9976
9977 2001-03-05  Alexander Larsson  <alexl@redhat.com>
9978
9979         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state):
9980         Set GDK_WINDOW_TYPE_HINT_MENU on tearoff window.
9981
9982 2001-03-05  Michael Natterer  <mitch@gimp.org>
9983
9984         * gtk/gtklabel.c: Made the "parent_class" pointer static. The
9985         pixbuf-engine coincidentially also failed to make one of it's
9986         parent_class pointers static, causing overwriting of GtkLabel's
9987         parent_class pointer in pixbuf_style_class_init().
9988         (Will commit the fix to the pixbuf-engine too).
9989
9990 2001-03-05  Alexander Larsson  <alexl@redhat.com>
9991
9992         * gdk/gdkwindow.h:
9993         Added GdkWindowTypeHint type. Added modal_hint field to GdkWindindow.
9994         New functions gdk_window_set_type_hint, gdk_window_set_modal_hint and
9995         gdk_window_set_icon_list for net wmspec functionality.
9996
9997         * gdk/x11/gdkwindow-x11.c:
9998         Set _NEW_WM_STATE_MODAL from window->modal_hint in set_inital_hints.
9999         Implement gdk_window_set_type_hint, gdk_window_set_modal_hint and
10000         gdk_window_set_icon_list.
10001         Added gdk_wmspec_change_state helper function and used it in the code.
10002         Set _NET_WM_ICON_NAME in gdk_window_set_title and gdk_window_set_icon_name.
10003
10004         * gtk/gtkdialog.c (gtk_dialog_init):
10005         Set GDK_WINDOW_TYPE_HINT_DIALOG.
10006
10007         * gtk/gtkhandlebox.c (gtk_handle_box_realize):
10008         Set GDK_WINDOW_TYPE_HINT_TOOLBAR.
10009
10010         * gtk/gtkwindow.c:
10011         new function gtk_window_set_type_hint.
10012         On realize, set type hint and modal hint.
10013
10014         * gtk/gtkwindow.h:
10015         Added type_hint field and gtk_window_set_type_hint.
10016
10017 2001-03-05  Alexander Larsson  <alexl@redhat.com>
10018
10019         * gtk/gtklabel.[ch]:
10020         Convert from GtkArg to GParam (originally based on patch from Lee Mallabone).
10021         New function gtk_label_get_accel_keyval () to get the underline accelerator
10022         of the label. Setting the label pattern overrides other attributes.
10023
10024 Mon Mar  5 14:51:10 MET 2001  Sven Neumann  <sven@gimp.org>
10025
10026         * gtk/gtkrc.c: fixed compiler warnings by inserting some consts.
10027         Added missing initializers to gtk_rc_style_init().
10028
10029 Sun Mar 04  07:30:03 2001 CET Mikael Hermansson <mikeh@bahnhof.se>
10030
10031         * gtk/gtktextview.c: fixed bug #51097 about setting 
10032         gtk_text_view_set_border_window_size() if the widget is 
10033         already realized.
10034
10035 Sat Mar  3 16:59:16 2001  Owen Taylor  <otaylor@redhat.com>
10036
10037         * gdk/gdkpango.h gdk/x11/gdkwindow-x11.c: Doc fixes
10038
10039         * gdk/win32/gdkinput.c (gdk_device_get_axis): Remove doc
10040         comment. Won't do to have duplicated doc comments between
10041         the platform subdirs.
10042
10043 Sat Mar  3 16:26:33 2001  Owen Taylor  <otaylor@redhat.com>
10044
10045         * gdk/x11/gdkmain-x11.c gdk/x11/gdkkeys-x11.c 
10046           gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.c:
10047
10048         Detectable auto-repeat - make a repeating key generate
10049         press/press/press/release instead of press/release pairs.
10050
10051         If we have Xkb and XkbSetDectableAutoRepeat supports
10052         that, we do it that way. Otherwise, when we get
10053         a release event, we check ahead with XPending to see
10054         if the next key is a KeyPress with the same keycode
10055         and timestamp. (Not 100% reliable, but pretty close.)
10056           
10057 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
10058         
10059         * gtk/gtkmain.c (gtk_propagate_event): Only do special
10060         special key-press grab handling for widgets within
10061         GtkWindows. Otherwise, fall through to normal case.
10062  
10063         This prevents key events being sent twice to GtkInvisible
10064         widgets, which can cause all sorts of mischief.
10065  
10066 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
10067  
10068         * gtk/gtkmain.c (gtk_propagate_event): When a grab
10069         widget is in effect, give the grab widget a first
10070         crack at KEY_PRESS/RELEASE events. (#424)
10071  
10072 Sat Mar  3 15:39:49 2001  Owen Taylor  <otaylor@redhat.com>
10073
10074         * gtk/gtkentry.c (gtk_entry_button_press): Add shift-clicking
10075         to extend the selection. (Roughly based on patch
10076         from Jay Cox, #50939)
10077
10078         * gtk/gtkentry.c (gtk_entry_button_press): Fix triple-clicking
10079         to properly handle previous GDK_BUTTON_PRESS. 
10080         (Patch from Jay Cox, #50938)
10081
10082         * gtk/gtkentry.c (gtk_entry_real_delete_text): Move the
10083         '\0' back along with the deleted text. (#51148)
10084
10085 Mon Jan 22 14:31:29 2001  Owen Taylor  <otaylor@redhat.com>
10086
10087         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Unshift
10088         the group when extracting it from the X keyboard event.
10089
10090         * modules/input/Makefile.am modules/input/imipa.c: 
10091         Simple module for entering IPA. (Do we need a 
10092         gtk-stupid-input-tricks CVS module?)
10093
10094 Sat Mar  3 13:32:47 2001  Owen Taylor  <otaylor@redhat.com>
10095
10096         * gtk/gtkimmodule.c (gtk_im_module_init): Remove spurious
10097         const.
10098
10099         * gdk-pixbuf-2.0.pc.in gtk+-2.0.pc.in: Fix include path.
10100
10101         * gtk/gtkdialog.c (gtk_dialog_set_default_response): If there
10102         is no focus widget for the dialog currently, grab the focus as well
10103         as the default.
10104
10105         * gtk/gtkdialog.c (gtk_dialog_set_default_response): Get
10106         the action area's children to iterate through, not the
10107         dialog's children.
10108
10109 Sat Mar  3 13:21:27 2001  Owen Taylor  <otaylor@redhat.com>
10110
10111         * tests/Makefile.am tests/testsocket.c tests/testsocket_child.c:
10112         Add plug-socket tests. (Won't work worth a darn until I commit
10113         the rest of the plug-socket changes, but no reason these
10114         can't go into CVS now.)
10115
10116 2001-03-02  Havoc Pennington  <hp@redhat.com>
10117
10118         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_flush): use
10119         _gdk_region_get_xrectangles()
10120
10121         * gdk/x11/gdkmain-x11.c (_gdk_region_get_xrectangles): new function
10122
10123         * gtk/testgtk.c (create_shapes): add test for shape_combine_region
10124
10125         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_region): new
10126         function, contributed by Ron Steinke    
10127
10128         * gdk/x11/gdkevents-x11.c (gdk_wmspec_supported): rename
10129         gdk_net_wm_supports
10130
10131         * gdk/gdkregion-generic.c (gdk_region_get_rectangles): 
10132         New function, contributed by Ron Steinke
10133
10134         * gtk/gtkentry.c (gtk_entry_get_layout_offsets): New function, 
10135         used to line up the text in the entry when using the entry for
10136         editable sheet cell hacks
10137
10138         * gtk/testgtk.c (create_entry): test the activate_default setting
10139         on GtkEntry
10140
10141         * gtk/gtkentry.c (gtk_entry_set_activates_default): New function to 
10142         cause the entry to activate the default button for a dialog when 
10143         activated
10144         (gtk_entry_get_activates_default): new function
10145
10146 Wed Feb 28 19:10:43 2001  Owen Taylor  <otaylor@redhat.com>
10147
10148         * gtk/gtkclist.c (real_remove_row): Patch from ChiDeok
10149         Hwang to move call to sync_selection() up a few lines
10150         to before the row list is modified, to fix crash when
10151         removing rows in the undo_selection list.
10152
10153         (Test case provided by Daniel Elstner:
10154
10155         http://mail.gnome.org/archives/gtk-list/2001-February/msg00359.html)
10156
10157 Fri Feb 23 15:06:48 2001  Owen Taylor  <otaylor@redhat.com>
10158
10159         * gtk/gtktree.c (gtk_tree_class_init): Do the setting
10160         of tree->root_tree in parent_set rather than _map(), 
10161         fixing #50892 in a bit better manner.
10162
10163 Thu Feb 22 17:07:58 2001  Owen Taylor  <otaylor@redhat.com>
10164
10165         * gtk/gtkmenu.c (gtk_menu_popup): Don't flip cursor. (#50934)
10166
10167 Tue Feb  2 11:22:33 2001  Jody Goldberg <jgoldberg@home.com>
10168
10169         * gtk/gtkstyle.c : Remove duplicate fwd decl for
10170         gtk_default_draw_shadow.
10171
10172 ue Feb 20 11:40:58 2001  Owen Taylor  <otaylor@redhat.com>
10173
10174         * gdk/gdkimage.c (gdk_image_new): Remove excess 
10175         warning, make warnings more verbose, treat a error
10176         in shmat as permanent, and don't try again.
10177         (#51163, Ed Randall.)
10178
10179 Mon Feb 19 20:15:28 2001  Owen Taylor  <otaylor@redhat.com>
10180
10181         * gtk/gtkrange.c (gtk_range_timer_1st_time): Add an initial
10182         delay for the first click before starting to scroll.
10183         (based on #51026, gtk-enf-990512-0.patch, Eric Fisher)
10184
10185         * gtk/gtktext.c: GtkText should have I-beam cursor. 
10186         (based on gtk-enf-990513-1.patch, Eric Fisher.)
10187
10188 Mon Feb 19 16:42:19 2001  Owen Taylor  <otaylor@redhat.com>
10189
10190         * gtk/gtklayout.c (gtk_layout_allocate_child): Tiny
10191         cleanup to remove some references to unused
10192         ->xoffset, ->yoffset.
10193
10194 Mon Feb 19 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>
10195
10196         * gdk/gdkrgb.c (gdk_rgb_convert_555_br): Fix incorrect
10197         mask. (#51039, fix from Martin Maierhofer)
10198
10199 Fri Feb 16 20:09:42 2001  Owen Taylor  <otaylor@redhat.com>
10200
10201         * gtk/gtkctree.c (gtk_ctree_class_init): Add bindings
10202         for unshifted + and shifted = for non-us keyboards.
10203         Make <Control>+ and <Control>- work as well as 
10204         <Control>KP_Plus, <Control>KP_Minus for recursive
10205         open/close.  (#2682, René Seindal)
10206
10207 Fri Feb 16 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
10208
10209         * gtk/gtkmenushell.c (gtk_real_menu_shell_cancel): Unset
10210         the active menu item before deactivating the menu,
10211         so gtk_menu_popdown doesn't change the history. (#50964)
10212         
10213 Fri Feb 16 15:55:22 2001  Owen Taylor  <otaylor@redhat.com>
10214
10215         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): 
10216         draw lines with text_gc rather than black_gc.
10217         (Patch from Vlad Harchev <hvv hippo ru>, #50926)
10218
10219 Thu Mar  1 19:50:56 2001  Jonathan Blandford  <jrb@redhat.com>
10220
10221         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
10222         Move handling of buttons fully in gtktreeviewcolumn.  This code is
10223         less interrelated then it was, but it still requires the
10224         GtkTreeView to map it.
10225
10226         * test/testtreecolumn.c: Now I can add a column to one view,
10227         remove it, add it to the another view, remove it, then re-add it
10228         to the first.  Nifty.
10229
10230 Thu Mar  1 13:14:27 GMT 2001  Tony Gale <gale@gtk.org>
10231
10232         * docs/tutorial/gtk-tut.sgml: Minor corrections
10233
10234 Wed Feb 28 16:36:46 2001  Jonathan Blandford  <jrb@redhat.com>
10235
10236         * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize
10237         GtkRowReference.
10238
10239 2001-02-28  Havoc Pennington  <hp@redhat.com>
10240
10241         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove draw_focus and
10242         draw_default
10243         (gtk_widget_draw_focus): remove this function; we could instead
10244         make it just gtk_widget_draw(), but in most cases I think the
10245         result would be broken user code, so think it's better to have
10246         that code not compile and get fixed
10247         (gtk_widget_draw_default): ditto
10248
10249         * gtk/gtkwidget.c: Add default handlers for focus_in_event and
10250         focus_out_event that set/unset GTK_HAS_FOCUS and call queue_draw
10251         
10252         * gtk/gtkwindow.c (gtk_window_set_default): just queue a draw when
10253         widgets lose/get the default, instead of calling draw_default
10254         
10255         * docs/Changes-2.0.txt: note about all this
10256
10257         Then fixed every widget in GTK, I won't list all the filenames.
10258
10259 Tue Feb 27 19:32:53 2001  Jonathan Blandford  <jrb@redhat.com>
10260
10261         * gtk/gtktreemodel.c (deleted_callback): Proxy out to
10262         _gtk_tree_row_reference_deleted.
10263         (inserted_callback): Proxy out to
10264         _gtk_tree_row_reference_inserted.
10265         (_gtk_tree_row_reference_new_from_view): Somewhat yukky hack to
10266         get around signal emission ordering problem.
10267
10268         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
10269         fix to work with SINGLE 
10270         (_gtk_tree_selection_internal_select_node): Major sanitization on
10271         selections.  SINGLE now seems to work.
10272
10273         * tests/Makefile.am: add testtreecolumn.c:
10274
10275         * tests/testtreecolumn.c: New test.  Mostly points out selection
10276         bugs currently, but will test columns later.
10277
10278         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Fix really nasty
10279         selection bug.  I hate touching this code -- it's scary.
10280
10281 2001-02-26  Havoc Pennington  <hp@redhat.com>
10282
10283         * gtk/testgtk.c: test the window state stuff
10284
10285         * gtk/gtkwindow.c (gtk_window_present): new function, makes a
10286         window come to the user's attention as if it were just created
10287         (gtk_window_iconify): new function
10288         (gtk_window_deiconify): new function
10289         (gtk_window_stick): new function
10290         (gtk_window_unstick): new function
10291         (gtk_window_maximize): new function
10292         (gtk_window_unmaximize): new function
10293
10294         * gtk/gtkwidget.h, gtk/gtkwidget.c: add window_state_event signal
10295
10296         * gtk/gtkmain.c (gtk_main_do_event): handle GDK_WINDOW_STATE
10297
10298         * gdk/x11/gdkevents-x11.c: create window state events when
10299         appropriate
10300         (gdk_wmspec_supported): new function
10301
10302         * gdk/x11/gdkwindow-x11.c (gdk_window_iconify): handle
10303         iconification before showing the window
10304         (gdk_window_deiconify): new function
10305         (gdk_window_stick): new function
10306         (gdk_window_unstick): new function
10307         (gdk_window_maximize): new function
10308         (gdk_window_unmaximize): new function
10309
10310         * gdk/gdkwindow.c: store the window state in the window; 
10311         change to using the GDK_WINDOW_STATE_WITHDRAWN flag instead of
10312         window->mapped.
10313         (gdk_window_get_state): return the current window state
10314
10315         * gdk/gdkevents.c (gdk_event_get_time): handle GDK_WINDOW_STATE
10316         (gdk_event_get_state): handle GDK_WINDOW_STATE
10317         (gdk_synthesize_window_state): function to create the window state
10318         events
10319
10320         * gdk/gdkevents.h (struct _GdkEventWindowState): new type of
10321         event, for changes to "window state" such as maximized, sticky, 
10322         etc.
10323         
10324         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): new function,
10325         focuses a window
10326
10327         * gdk/x11/gdkmain-x11.c (_gdk_wmspec_supported): new function, 
10328         finds out if we support a given WM spec hint
10329
10330 Tue Feb 27 13:37:38 GMT 2001  Tony Gale <gale@gtk.org>
10331
10332         * docs/faq/gtk-faq.sgml: New question re memory leaks.
10333
10334 2001-02-25  Hans Breuer  <hans@breuer.org>
10335
10336         * gdk/gdk.h : changed #ifdef GDK_DISBALE_DEPRECARED to #ifndef
10337         cause we want to loose those prototypes only in the latter case
10338
10339         * gdk/win32/gdkevents-win32.c : can't cast from GdkPixmap to
10340         GdkPixmapImplWin32 because it itsn't derived from it. Use the
10341         impl member variable instead
10342
10343         * gtk/gtk.def : updated
10344
10345         * gtk/gtklist.c : 
10346         * gtk/gtkmenus.c : include <string.h> for memset ()
10347
10348         * gtk/makefile.msc.in : updated and don't define GTK_COMPILATION
10349         for everthing built here, but for gtk-x.x.dll only. This solves
10350         problem of indifferent gtk type definitions
10351
10352 Sat Feb 24 20:11:39 2001  Jonathan Blandford  <jrb@redhat.com>
10353
10354         * gtk/gtkclipboard.h: actually put /* */ around #endif comment.
10355
10356 Fri Feb 23 17:50:13 2001  Jonathan Blandford  <jrb@redhat.com>
10357
10358         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Only draw the
10359         column that is exposed.
10360
10361         (_gtk_tree_view_update_size): Changed name from set_size, and
10362         changed function to do more work, and not force people calling it
10363         to figure out the size.  Simplifies a lot of code elsewhere.
10364
10365 2001-02-23  Alexander Larsson  <alexl@redhat.com>
10366
10367         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf):
10368         return solid masks for xpms that have no transparent color.
10369         This makes the ..._create_from_xpm... API backwards
10370         compatible.
10371
10372 2001-02-23  Tor Lillqvist  <tml@iki.fi>
10373
10374         * README.win32: Update. Mention the gtk-1-3-win32-production
10375         branch.
10376
10377         * gdk/win32/bdfcursor.c: New file. A program that generates
10378         xcursors.h. Thanks to Stefan Ondrejicka.
10379
10380         * gdk/win32/xcursors.h: New file, contains the X cursor font in a
10381         compact format.
10382
10383         * gdk/win32/Makefile.am (EXTRA_DIST): Add new files.
10384
10385         * gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): New
10386         function, uses xcursors.h.
10387         (gdk_cursor_new): Use _gdk_win32_data_to_wcursor to generate
10388         cursor from inline data instead of using LoadCursor() to generate
10389         it from a resource.
10390
10391         * gdk/win32/gdkevents-win32.c (gdk_event_translate): At button up
10392         event, must check the Windows message for mouse button state, as
10393         the GDK event state might not have been built if it is
10394         undelivered. Remove one goto.
10395
10396         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Call
10397         SetCursor() if the current cursor as returned by GetCursor() is
10398         the window's previous cursor. The ChildWindowFromPoint() test
10399         apparently didn't work correctly.
10400
10401         * gdk/win32/rc/*.cur: Remove.
10402
10403         * gdk/win32/rc/gdk.rc.in: Remove cursors.
10404
10405         * gdk/win32/rc/Makefile.am (EXTRA_DIST): Remove from here, too.
10406
10407         * gtk/makefile.{mingw,msc}.in: Updates.
10408
10409 Wed Feb 21 20:56:50 2001  Jonathan Blandford  <jrb@redhat.com>
10410
10411         * gtk/gtktreemodel.h: add functions for signal emission.
10412
10413         * gtk/gtktreestore.c: move to use above functions instead of
10414         g_signal_emit.
10415
10416         * gtk/gtkliststore.c: ditto
10417
10418 Wed Feb 21 15:41:34 2001  Jonathan Blandford  <jrb@redhat.com>
10419
10420         * gtk/gtktreestore.c: removed signals.  Moved to inherit from
10421         GObject instead of GtkObject.
10422
10423         * gtk/gtkliststore.c: ditto.
10424
10425         * gtk/gtktreemodelsort.c: ditto.
10426
10427         * gtk/gtktreemodel.c (gtk_tree_model_base_init): moved signals to
10428         GtkTreeModelIface, instead of in each model.
10429
10430 2001-02-21  Havoc Pennington  <hp@redhat.com>
10431
10432         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_child_anchor):
10433         unbreak this function
10434
10435         * gtk/gtkentry.c: apply patch from Lee Mallabone to add object 
10436         properties
10437
10438         * gtk/gtkcurve.c: apply patch from Lee Mallabone to add object
10439         properties
10440
10441         * gtk/gtkcombo.c: apply patch from Lee Mallabone to add object 
10442         properties
10443
10444         * gtk/gtkentry.c (gtk_entry_set_max_length): have this take -1 to
10445         mean unset the max length
10446
10447 Wed Feb 21 14:23:05 2001  Jonathan Blandford  <jrb@redhat.com>
10448
10449         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data_func):
10450         Changed name to be set_cell_data_func to make it clear what
10451         the functino does.  Close bug #51069.
10452
10453 Tue Feb 20 16:49:00 2001  Jonathan Blandford  <jrb@redhat.com>
10454
10455         * gtk/testgtk.c (main): Remove turning on of profiling malloc,
10456         have memory actually freed.  Keeps box running longer.
10457
10458 2001-02-21  Alexander Larsson  <alexl@redhat.com>
10459         
10460         * gtk/gtkseparatormenuitem.[ch]:
10461         Added new menu separator item. The drawing and size handling
10462         is still done in GtkMenuItem, but the API is a bit more sane.
10463         
10464         * gtk/Makefile.am:
10465         Add gtkseparatormenuitem.[ch].
10466
10467         * gtk/gtk.h:
10468         Add gtkseparatormenuitem.h.
10469         
10470         * gtk/gtkentry.c:
10471         * gtk/gtkmenufactory.c:
10472         * gtk/gtktextview.c:
10473         Use the new API for menu separators.
10474         
10475         * demos/gtk-demo/menus.c (create_menu):
10476         Add some GtkSeparatorMenuItem demo code.
10477
10478 2001-02-20  Havoc Pennington  <hp@redhat.com>
10479
10480         * gtk/gtkaspectframe.c: Convert to new property API, patch from 
10481         Lee Mallabone
10482
10483         * gtk/gtkarrow.c: Convert to new property API, patch from 
10484         Lee Mallabone
10485
10486 Tue Feb 20 14:26:41 2001  Jonathan Blandford  <jrb@redhat.com>
10487
10488         * tests/testtreeview.c (toggled_callback): fix to reflect change
10489         in GtkTreeModelStore.
10490
10491 Tue Feb 20 12:16:12 2001  Jonathan Blandford  <jrb@redhat.com>
10492
10493         * gtk/gtkiconfactory.c (gtk_icon_set_new_from_pixbuf): New
10494         function to create an icon set from a pixbuf.
10495
10496 2001-02-20  Alexander Larsson  <alexl@redhat.com>
10497
10498         * gtk/gtkcellrenderertext.[ch]:
10499         Add a "markup" property.
10500
10501         * gtk/treestoretest.c:
10502         Use the markup property, remove some leftover stuff from
10503         GtkTreeModelMapping.
10504
10505 2001-02-20  Alexander Larsson  <alexl@redhat.com>
10506
10507         * gtk/gtklabel.c (gtk_label_set_selectable):
10508         Queue a redraw if the selectable setting was changed.
10509
10510 2001-02-20  Alexander Larsson  <alexl@redhat.com>
10511
10512         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
10513         Actually copy the whole gc, not just the public parts.
10514         
10515         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
10516         GDK_WINDOW_TEMP are not toplevel. Fixes selectable
10517         labels.
10518
10519 2001-02-19  Havoc Pennington  <hp@pobox.com>
10520
10521         * gdk/gdkwindow.c: docs
10522
10523         * gdk/gdkrgb.c: docs
10524
10525         * gdk/gdkregion-generic.c: docs
10526
10527         * gdk/gdkgc.c (gdk_gc_set_values): docs
10528
10529         * gdk/gdkdraw.c: docs
10530
10531         * gdk/gdkdrawable.h: deprecate drawable get/set data
10532
10533 Mon Feb 19 20:37:35 2001  Jonathan Blandford  <jrb@redhat.com>
10534
10535         * demos/gtk-demo/dialog.c: Add simple new demo.
10536
10537 2001-02-19  Havoc Pennington  <hp@redhat.com>
10538
10539         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): add
10540         insert_child_anchor signal, bug #50245
10541
10542         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): change
10543         from create_child_anchor, so the anchor is passed in
10544
10545         * gtk/gtktextchild.c (gtk_text_child_anchor_new): new function
10546         (_gtk_widget_segment_new): have the child anchor object passed in, 
10547         instead of creating it.
10548
10549         * gtk/gtktextbuffer.c (gtk_text_buffer_modified): rename
10550         to gtk_text_buffer_get_modified
10551
10552 2001-02-19  Havoc Pennington  <hp@redhat.com>
10553
10554         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): hmm, someone
10555         changed GLib without fixing GTK
10556
10557         * gtk/gtkrange.h: Rename all the stupid implementation detail 
10558         functions to have an underscore in front. Most of them should 
10559         probably just go away, but for starters don't export them.
10560         Bug #50482
10561
10562 2001-02-19  Havoc Pennington  <hp@redhat.com>
10563
10564         * gdk/gdkcolor.h: test was backward, so deprecated functions were
10565         excluded by default
10566
10567         * gtk/gtkstyle.c (gtk_default_draw_diamond): draw etched in/out,
10568         clean up the old code a bit
10569
10570         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): draw
10571         inconsistent state
10572
10573         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator):
10574         draw inconsistent state
10575
10576         * gtk/testgtk.c (create_toggle_buttons): add test for inconsistent
10577         (create_menu): add inconsistent test
10578
10579         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_set_inconsistent):
10580         new function
10581         (gtk_check_menu_item_get_inconsistent): new function
10582         (gtk_real_check_menu_item_draw_indicator): draw the inconsistent
10583         state (using etched in for now)
10584
10585         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator):
10586         draw inconsistent state
10587
10588         * gtk/gtktogglebutton.c (gtk_toggle_button_set_inconsistent): new
10589         function, used when the user has selected a range of stuff in
10590         different states
10591         (gtk_toggle_button_get_inconsistent): accessor for that
10592         (gtk_toggle_button_paint): draw inconsistent state (etched in?
10593         don't know what else to do)
10594
10595 2001-02-19  Hans Breuer <hans@breuer.org>
10596
10597         * gtk/gtk.def : updated exported symbols
10598
10599         * gtk/makefile.msc.in : updated
10600
10601         * gtk/gtkstyle.c (gtk_style_realize) : gets called without
10602         a colormap, when invoked from testgtk::entry. I'm not sure where
10603         the bug is, but g_return_if_fail (GDK_IS_COLORMAP (colormap));
10604         avoids immediate crashing ...
10605
10606         * gtk/gtkmain.c (check_setugid) : totally disabled on win32;
10607         any objections ?
10608
10609         * gtk/gtktreemodel.c : called G_VALUE_LCOPY with an extra
10610         0 parameter. At least msvc doesn't like macros with var args. 
10611         I simply removed the extra 0, was it a feature or a typo ?
10612
10613         * gtk/gtktreeviewcolumn.[hc] (gtk_tree_view_column_set_func) :
10614         removed the extra indirection from the GtkTreeViewColumnFunc parameter,
10615         because the value assignment to the internal struct wasn't working.
10616         I'm not absolutely sure. The problem could have been resolved by
10617         changing the "func" declartion in the struct, but was the pointer
10618         to the function pointer intended ?
10619
10620         * gtk+/gtk/gtktreedatalist.c : include gboxed.h
10621
10622         * gdk/gdk.def : updated exported symbols
10623
10624         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_image) :
10625         only use SetDIBitsToDevice if there is a palette at the drawable
10626         and the image is GDK_VISUAL_PSEUDO_COLOR
10627
10628         * gdk/win32/gdkkeys-win32.c : msvc still has no <unistd.h> ...
10629
10630         * gdk/win32/gdkwindow-win32.c : #include "gdk.h" /* gdk_rectangle_intersect */
10631
10632         * gdk/*/makefile.msc : updated
10633
10634 2001-02-19  Havoc Pennington  <hp@redhat.com>
10635
10636         * demos/gtk-demo/Makefile.am (INCLUDES): GDK_DISABLE_COMPAT_H,
10637         GDK_DISABLE_DEPRECATED (we need to merge those two #defines)
10638
10639         * gdk/x11/gdkmain-x11.c (gdk_key_repeat_disable): nuke
10640         (gdk_key_repeat_restore): nuke
10641
10642         * gdk/gdk.c (gdk_exit_func): #if 0 this for now, don't install it
10643         (gdk_init_check): no atexit func
10644
10645         * gdk/gdkrgb.h: mark some stuff deprecated
10646
10647         * gdk/gdkcolor.h: mark some stuff deprecated
10648         
10649         * gdk/gdk.h: deprecated gdk_exit, gdk_input_*
10650
10651         * gdk/gdkfont.h: bracket in GDK_DISABLE_DEPRECATED
10652
10653 2001-02-16  Havoc Pennington  <hp@redhat.com>
10654
10655         * gtk/gtkvscrollbar.c (gtk_vscrollbar_trough_keys): use the visual
10656         scroll steps.
10657
10658         * gtk/gtkvscale.c (gtk_vscale_trough_keys): use the visual scroll
10659         steps, and add Ctrl-arrow shortcuts for paging visually as with
10660         HScale, since Page Up and Page Down move logically.
10661
10662         * gtk/gtkenums.h (GtkScrollType): add GTK_SCROLL_STEP_UP,
10663         GTK_SCROLL_STEP_DOWN, etc. for visual scroll directions
10664         
10665         * gtk/gtkrange.c (gtk_range_key_press): handle the visual scroll
10666         steps
10667         (gtk_range_scroll): handle the visual steps
10668
10669         * gtk/gtklist.c (gtk_list_scroll_horizontal): handle the up/down
10670         scroll steps
10671
10672         * gtk/gtkhscale.c (gtk_hscale_trough_keys): use the visual scroll
10673         steps, not the logical ones.
10674
10675         * gtk/gtkclist.c (move_focus_row): handle the up/down scroll steps
10676         (scroll_vertical): handle up/down steps
10677
10678 2001-02-19 Alexander Larsson  <alexl@redhat.com>
10679
10680         * gdk/linux-fb/gdkimage-fb.c (gdk_image_new_bitmap):
10681         Copy data and free data with free().
10682
10683         * gdk-pixbuf/gdk-pixbuf.c:
10684         * gdk-pixbuf/io-jpeg.c:
10685         * gdk-pixbuf/io-png.c:
10686         Use g_try_malloc/g_free instead malloc/free.
10687         
10688         * gdk-pixbuf/test-gdk-pixbuf.c:
10689         Must... initialize... gobject...
10690         
10691         * gdk-pixbuf/pixops/timescale.c:
10692         * gtk/gtkcalendar.c:
10693         Use g_malloc instead of malloc.
10694         
10695 2001-02-19 Alexander Larsson  <alla@lysator.liu.se>
10696
10697         * gtk/testgtkrc:
10698         Comment out property assignments, these don't work yet.
10699
10700 2001-02-17  Havoc Pennington  <hp@pobox.com>
10701
10702         * gtk/gtkalignment.c (gtk_alignment_class_init): clean this up a
10703         bit.
10704
10705 2001-02-17  Havoc Pennington  <hp@pobox.com>
10706
10707         * gtk/gtklabel.c (gtk_label_ensure_layout): fix screwup with
10708         shadowed variables that had broken size request in some cases,
10709         leading to bogus tooltips (#50996)
10710
10711 2001-02-06  Jon K Hellan  <hellan@acm.org>
10712
10713         Implement fast browsing of tooltips, bug #50619
10714         
10715         * gtk/gtktooltips.h (struct _GtkTooltips): Add use_sticky_delay
10716         and last_popdown
10717         
10718         * gtk/gtktooltips.c (gtk_tooltips_init): Initialize sticky_delay,
10719         use_sticky_delay and last_popdown.
10720         (gtk_tooltips_draw_tips, gtk_tooltips_set_active_widget): Record
10721         time of popdown.
10722         (gtk_tooltips_set_active_widget): Unset sticky behaviour if widget
10723         is NULL.
10724         (gtk_tooltips_recently_shown): New static function.  Return true
10725         if < sticky_delay has elapsed since last popdown.
10726         (gtk_tooltips_event_handler): Display window after sticky_delay
10727         (presumably < normal delay) if < STICKY_REVERT_DELAY has elapsed
10728         since last popdown.
10729         
10730 2001-02-17  Havoc Pennington  <hp@pobox.com>
10731
10732         * gtk/gtktypeutils.h (GtkSignalFunc): change it to take (void)
10733         instead of (). #6394
10734
10735         * gtk/gtkprogressbar.c (gtk_progress_bar_get_text): Add
10736         G_CONST_RETURN, make it return by reference, #50473
10737         
10738 Sat Feb 17 06:47:27 2001  Tim Janik  <timj@gtk.org>
10739
10740         * gtk/gtkmenu.c (gtk_menu_motion_notify): default initialize the
10741         generated ENTER_NOTIFY event with 0, otherwise not explicitely
10742         setup fields contain garbage (e.g. subwindow, breaking
10743         gdk_drawable_ref() upon event copy).
10744         (gtk_menu_stop_navigating_submenu_cb): same here.
10745
10746         * gtk/gtklist.c (gtk_list_vertical_timeout): 
10747         * gtk/gtklist.c (gtk_list_horizontal_timeout): 
10748         * gtk/gtkclist.c (vertical_timeout): 
10749         * gtk/gtkclist.c (horizontal_timeout): change direct assignment
10750         default-zero-intialization for unions to memset(,0,), as unions are
10751         not fully default-zero-initialized by compilers (GdkEvent x = { 0, };
10752         has to become GdkEvent x; memset (&x, 0, sizeof (x)); )
10753
10754         * gtk/gtktreeview.c (gtk_tree_view_set_rows_drag_source): scratch
10755         g_closure_sink() warning.
10756
10757         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): 
10758         * gtk/gtktreestore.c (gtk_tree_store_set_valist): 
10759         * gtk/gtkliststore.c (gtk_list_store_set_valist): 
10760         fix G_VALUE_COLLECT() and G_VALUE_LCOPY() calls.
10761         
10762 Fri Feb 16 17:49:59 2001  Jonathan Blandford  <jrb@redhat.com>
10763
10764         * gtk/gtktreestore.[hc], gtk/gtkliststore.[ch]: removed
10765         gtk_*_store_get, and moved to GtkTreeModel.
10766
10767         * gtk/gtktreemodel.h (gtk_tree_model_set{v,}): Added
10768
10769         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): added.
10770
10771         * gtk/Makefile.am: remove gtktreemodelmapping.[ch]
10772
10773         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_func): let you
10774         set the func.
10775
10776         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
10777         freeze/thaw notify between setting all the properties for a cell.
10778
10779         * gtk/gtk.h: remove gtktreemodelsimple.h, and gtktreemodelmapping.h
10780
10781 2001-02-15  Havoc Pennington  <hp@redhat.com>
10782
10783         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): convert
10784         the X coordinates so they're with respect to the line, rather than 
10785         with respect to the layout.
10786
10787         * gtk/gtkalignment.c: Convert to new property API, patch from Lee
10788         Mallabone
10789
10790         * gtk/testgtk.c (create_range_controls): add vscale tests, 
10791         and inverted test
10792
10793         * gtk/gtkrange.c (gtk_range_set_inverted): new function to fix 
10794         #50806
10795
10796         * gtk/gtkentry.c (gtk_entry_get_text): add G_CONST_RETURN
10797
10798         * gtk/gtktextiter.h (gtk_text_iter_is_last): rename 
10799         gtk_text_iter_is_end
10800
10801         * gtk/gtktextbuffer.h (gtk_text_buffer_get_last_iter):
10802         rename gtk_text_buffer_get_end_iter
10803
10804         * gtk/testgtk.c (create_labels): Add test for selectable
10805
10806         * gtk/gtkentry.c (gtk_entry_draw_text): Use new GDK API to draw
10807         the selection stuff. This code is kind of broken since it doesn't 
10808         use the theme engine.
10809
10810         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
10811         fix infinite loop and y offset problem
10812         (gdk_draw_layout_line_with_colors): fix foreground color handling
10813
10814         * gtk/gtklabel.h, gtk/gtklabel.c: Implement a "selectable" flag 
10815         that makes the label selectable.
10816         
10817         * gtk/gtklabel.c (gtk_label_style_set): recreate the label's
10818         layout when the style is set, since fonts etc. could have changed.      
10819
10820 Fri Feb 16 14:22:05 2001  Jonathan Blandford  <jrb@redhat.com>
10821
10822         * gtk/Makefile.am: Removed gtktreemodelsimple.[ch]
10823
10824         * gtk/gtktreemodelsimple.[ch]: removed.
10825
10826 2001-02-16  Alexander Larsson  <alexl@redhat.com>
10827
10828         * gtk/gtktreemodelmapping.[ch]:
10829         New files. Implement GtkTreeModelMapping.
10830         
10831         * gtk/Makefile.am:
10832         Add gtktreemodelmapping.[ch].
10833         
10834         * gtk/gtk.h:
10835         Add gtktreemodelmapping.h
10836
10837         * gtk/treestoretest.c:
10838         Test the GtkTreeModelMapping
10839
10840 Tue Feb 13 13:16:09 2001  Jonathan Blandford  <jrb@redhat.com>
10841
10842         * demos/gtk-demo/panes.c (create_pane_options): If we're going to
10843         have a demo, we might as well pass in real values.  Thanks to
10844         clahey for pointing this out.
10845
10846 2001-02-14  Havoc Pennington  <hp@pobox.com>
10847
10848         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_remove): add
10849         "static" to a private function
10850         (gtk_image_menu_item_class_init): remove destroy handler,
10851         add "image" object property
10852
10853 2001-02-13  Alexander Larsson  <alla@lysator.liu.se>
10854
10855         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region):
10856         Add a shortcut if the window and the current clip_region doesn't
10857         overlap. This is needed when there are a lot of windows in a
10858         window. The layout test in testgtk is a good test.
10859
10860         * gdk/linux-fb/gdkwindow-fb.c:
10861         Whitespace fix.
10862
10863 2001-02-13  Sven Neumann  <sven@convergence.de>
10864
10865         * demos/testanimation.c: replaced deprecated gtk_drawing_area_size
10866
10867 2001-02-13  Alexander Larsson  <alexl@redhat.com>
10868
10869         * gdk/linux-fb/gdkcursor-fb.c (gdk_fb_cursor_unhide):
10870         Don't reference last_cursor if it is null. Fixes crash when rotating
10871         the screen before having moved the mouse.
10872
10873         * gdk/linux-fb/gdkcc-fb.c: Zapp!
10874
10875         * gdk/linux-fb/Makefile.am: Don't compile gdkcc-fb.c
10876
10877         * gdk/linux-fb/gdkwindow-fb.c: Fix typo. width->height. Fixes redraw 
10878         when using 90 or 270 degrees rotation.
10879
10880 2001-02-12  Havoc Pennington  <hp@pobox.com>
10881
10882         * gdk/gdkpango.c (gdk_pango_get_gc): fix bug where 
10883         it always set the foreground, even if we were only using
10884         a stipple.
10885         (gdk_draw_layout_line_with_colors): new function, allow
10886         override colors
10887         (gdk_draw_layout_with_colors): new function, allow override
10888         colors
10889         (gdk_pango_layout_line_get_clip_region): function to get the clip
10890         region for a logical text range
10891         (gdk_pango_layout_get_clip_region): get the clip region for a
10892         logical text range
10893
10894         * gdk/x11/gdkcolor-x11.c: forward declare gdk_colormap_sync(),
10895         (gdk_colormap_new): fix call to gdk_colormap_sync() so it has 
10896         the right number of arguments.
10897
10898         * gtk/gtktextbtree.c (gtk_text_btree_node_check_consistency):
10899         enhance the function to check that node data corresponds to a 
10900         view still belonging to the tree.
10901
10902         * gtk/gtktreeview.c (gtk_tree_view_changed): we were leaking the 
10903         GtkTreePath
10904         (gtk_tree_view_inserted): ditto
10905         (gtk_tree_view_child_toggled): ditto
10906
10907         * gtk/gtktreemodel.c (gtk_tree_path_append_index): use realloc to
10908         simplify this code.
10909
10910         * gtk/gtkcellrenderertext.c (get_layout): fix leak of 
10911         a PangoAttrList
10912
10913         * demos/gtk-demo/main.c (load_file): Fix leak of a GString
10914
10915         * gtk/gtkentry.c (gtk_entry_realize): Fix leak of a GdkCursor
10916
10917         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): consider toggle
10918         size in the size request 
10919         (gtk_menu_bar_size_allocate): consider toggle size here
10920
10921         * gtk/gtkimagemenuitem.h, gtkimagemenuitem.c: Menu item
10922         that displays a widget in the toggle slot
10923
10924         * gtk/testgtk.c: test GtkImageMenuItem
10925
10926         * gtk/Makefile.am, gtk/gtk.h: Add GtkImageMenuItem
10927         
10928         * gtk/gtkmenuitem.h: Use "gint" not "guint16" for toggle size
10929         request and allocation
10930
10931         * gtk/gtkmenu.c (gtk_menu_size_request): use gint not guint16
10932
10933         * gtk/gtkcheckmenuitem.c
10934         (gtk_check_menu_item_toggle_size_request): ditto
10935         
10936 Mon Feb 12 23:43:30 2001  Owen Taylor  <otaylor@redhat.com>
10937
10938         * gtk/Makefile.am (gdk_headers): Remove gdkcc.h 
10939         reference.
10940
10941         * configure.in gtk/gtkmain.c: Add checks for setuid/setgid,
10942         and refuse to initialize GTK+ if they fail.
10943
10944 Mon Feb 12 15:02:07 2001  Owen Taylor  <otaylor@redhat.com>
10945
10946         * configure.in: Add check for gtk-doc version.
10947
10948 Thu Feb  8 17:18:26 2001  Owen Taylor  <otaylor@redhat.com>
10949
10950         * gtk/gtklabel.c (gtk_label_size_request): Fix bug
10951         where the xpad/ypad was only being used on one side!
10952
10953 2001-02-11  Tor Lillqvist  <tml@iki.fi>
10954
10955         * gdk/win32/gdkcolor-win32.c (gdk_colormap_query_color): New
10956         function, copied from X11 version.
10957
10958         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Eliminate
10959         DestroyCursor failures. The reason for the problem (despite the
10960         inconsistent messages from GetLastError()) was that
10961         DestroyCursor() cannot be called while a cursor is set in a
10962         window. Set the new cursor first and then destroy the old one.
10963         Thanks to jpe@archaeopteryx.com.
10964
10965         * gdk/win32/gdkcc-win32.c: Remove.
10966
10967         * gdk/win32/Makefile.am: Remove from here, too.
10968         
10969         * gdk/gdk.def
10970         * gdk/makefile.mingw.in: Update. Godbye GdkColorContext.
10971
10972         * gtk/gtk.def
10973         * gtk/makefile.mingw.in: Updates.
10974
10975 2001-02-08  Havoc Pennington  <hp@redhat.com>
10976
10977         * gtk/gtkbin.c (gtk_bin_add): better error message if you try to
10978         add a widget to a bin that already has a child.
10979
10980         * gdk/gdkcc.h, gdk/gdkcc-x11.c: Remove GdkColorContext, #50512
10981
10982         * docs/Changes-2.0.txt: note that GdkColorContext is gone.
10983         
10984         * gdk/x11/Makefile.am (libgdk_x11_la_SOURCES): remove gdkcc-x11.c
10985
10986         * gdk/gdk.h: remove gdkcc.h
10987
10988         * gdk/Makefile.am (gdk_public_h_sources): remove gdkcc.h
10989
10990         * gtk/gtkpixmap.c (build_insensitive_pixmap): rewrite using
10991         GdkPixbuf, since the previous implementation was GdkColorContext
10992         dependent.
10993
10994         * gtk/testgtk.c (create_pixmap): add test for insensitive GtkPixmap
10995         
10996 Thu Feb  8 19:00:00 2001  Jonathan Blandford  <jrb@redhat.com>
10997
10998         * gtk/gtktreeview.c (TREE_VIEW_VERTICAL_SEPARATOR): moved back to
10999         a sane value!
11000
11001 2001-02-08  Havoc Pennington  <hp@redhat.com>
11002
11003         * gtk/gtkstyle.c (get_darkened_gc): let's darken colors, not
11004         lighten them.
11005
11006 2001-02-08  Havoc Pennington  <hp@redhat.com>
11007
11008         * gtk/gtktextview.c (gtk_text_view_destroy_layout): remove
11009         validation idle
11010
11011         * demos/gtk-demo/main.c (create_tree): adjust to changes in text
11012         cell renderer
11013
11014         * demos/pixbuf-demo.c (timeout): remove deprecated
11015         gtk_widget_draw
11016
11017         * demos/testpixbuf-save.c (main): remove deprecated
11018         gtk_drawing_area_size
11019
11020         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): allocate
11021         buttons even if the model isn't setup. gtk_tree_view_check_dirty()
11022         at the start of the allocation.
11023         (gtk_tree_view_check_dirty): handle column->button == NULL, handle
11024         unsetup or NULL model.
11025
11026         * gtk/gtkstyle.c (gtk_default_draw_flat_box): drawing for the 
11027         even/odd/sorted cells in the tree view.
11028
11029         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
11030         bugfixes
11031
11032         * gtk/gtktreeview.c: assorted bugfixy stuff. Draw the row
11033         backgrounds with draw_flat_box using different detail for even/odd
11034         rows.
11035
11036         * gtk/gtkrbtree.c, gtkrbtree.h: Keep track of the parity of each
11037         row, so we can draw the alternating colors thing
11038
11039         * gtk/gtktexttag.c (gtk_text_tag_set_property): if we change a
11040         property from a synonym property, notify for the synonym.
11041         Also, nuke the background_gdk_set and foreground_gdk_set synonyms
11042         (gtk_text_tag_get_property): Always return the font, even if
11043         all its fields aren't set
11044
11045         * gtk/gtkcellrenderertext.h (struct _GtkCellRendererText): don't
11046         store the attr list; it leaves us with no way to change attributes
11047         in _render according to the render flags, and no way to implement
11048         get_property. Instead store all the specific text attributes. 
11049         Separate whether an attribute is enabled from its value. Sync all
11050         properties with GtkTextTag, make them all consistent, etc.
11051
11052         * gtk/gtkcellrenderer.h: Add a flag GTK_CELL_RENDERER_SORTED so
11053         renderers can highlight the sort row/column     
11054
11055         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_property): use
11056         accessor functions to get values; this has the side effect of
11057         showing up which accessor functions were missing. Added those.
11058
11059         * gtk/gtktreeviewcolumn.h: Replace set_justification with
11060         set_alignment, to be consistent with GtkLabel, GtkMisc
11061
11062         * gtk/gtktreeviewcolumn.c: Added code to display sort indicator
11063         arrow.
11064
11065         * gtk/Makefile.am (gtk_public_h_sources): add gtktreesortable.h
11066
11067         * gtk/gtktreesortable.h: updates in here
11068
11069 2001-02-07  Sven Neumann  <sven@convergence.de>
11070
11071         * gtk/gtkentry.c (gtk_entry_draw_text): convert area_height to 
11072         pango dimensions after painting the background. We used to draw
11073         gigantic flat boxes here.
11074
11075 Mon Feb  5 22:05:57 2001  Owen Taylor  <otaylor@redhat.com>
11076
11077         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Fix syntax
11078         error introduced with earlier commit) (pointed out by
11079         Ollie Lho)
11080
11081 Mon Feb  5 12:25:06 2001  Owen Taylor  <otaylor@redhat.com>
11082
11083         * gtk/gtkbutton.c: Remove calls to gtk_grab_add/gtk_grab_remove,
11084         which are no longer necessary.
11085
11086 Mon Feb  5 13:22:54 GMT 2001  Tony Gale <gale@gtk.org>
11087
11088         * docs/faq/gtk-faq.sgml: s/MISK/MISC/
11089
11090 2001-02-04  Tor Lillqvist  <tml@iki.fi>
11091
11092         * gdk/gdk.def
11093         * gdk/win32/gdkim-win32.c (gdk_ic_attr_new, gdk_ic_attr_destroy):
11094         Provide dummy implementations.
11095
11096 Sun Feb  4 07:55:17 2001  Tim Janik  <timj@gtk.org>
11097
11098         * gtk/gtksignal.h: removed gtk_signal_init() compat define.
11099
11100         * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument
11101         GTypeDebugFlags debug_flags and pass it on to g_type_init ();
11102         deprecated this function.
11103
11104         * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as
11105         argument.
11106
11107 Sun Feb  4 07:45:45 2001  Tim Janik  <timj@gtk.org>
11108
11109         * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS.
11110
11111 2001-02-03  Havoc Pennington  <hp@pobox.com>
11112
11113         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Fix bug reported by
11114         Mikael Hermansson with patch from Mikael (if there was a toggle
11115         start one after the first character in the range, this function
11116         was broken). Bug #50380
11117
11118 Sat Feb  3 11:28:03 2001  Owen Taylor  <otaylor@redhat.com>
11119
11120         * configure.in: Remove confusing comment about X11.
11121
11122 Fri Feb  2 19:21:23 2001  Owen Taylor  <otaylor@redhat.com>
11123
11124         * gdk/gdkwindow.c (gdk_propagate_shapes): Surround additional
11125         regions with HAVE_SHAPE_EXT. (#50511, Eric Ding)
11126         
11127 Fri Feb  2 18:31:54 2001  Owen Taylor  <otaylor@redhat.com>
11128
11129         * gdk/x11/gdkimage-x11.c: Remove definition of _XOPEN_SOURCE, since
11130         it breaks things on BSD. If you want to compile GTK+ with
11131         -ansi -pedantic, you should supply CPP_FLAGS=_XOPEN_SOURCE 
11132         when configuring, since GTK+ simply can't be "pure ANSI" 
11133         in the header files it uses. (#8170, Greg Hudson)
11134
11135 2001-02-02  Havoc Pennington  <hp@redhat.com>
11136
11137         * gtk/gtkwindow.c: docs
11138
11139         * gtk/gtkwidget.c: docs
11140         (gtk_widget_set_colormap): add a reference to the colormap
11141         (gtk_widget_get_default_colormap): add a reference to the colormap
11142
11143         * gtk/gtktextbtree.c (gtk_text_mark_set_visible): docs
11144
11145         * gtk/gtktextiter.c: docs
11146
11147         * gtk/gtkmain.c (gtk_propagate_event): docs
11148
11149         * gtk/gtkpaned.c (gtk_paned_get_position): docs
11150         (gtk_paned_set_position): docs
11151
11152         * gtk/gtktreesortable.h (struct _GtkTreeSortableIface): Initial
11153         sort interface, no implementation yet.
11154
11155         * demos/testpixbuf.c (new_testrgb_window): replace
11156         gtk_drawing_area_size() with gtk_widget_set_usize()
11157
11158         * demos/testpixbuf-drawable.c (main): ditto
11159         
11160         * gtk/testgtk.c: remove use of GtkStatusbarMsg
11161
11162         * gtk/gtktextbuffer.c: docs
11163
11164         * gtk/gtkstock.c: docs
11165
11166         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_shadow_type): docs
11167
11168         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): docs
11169
11170         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): fix docs
11171         
11172         * gtk/gtkimage.c: add some docs in here
11173         (gtk_image_size_request): change name of
11174         gtk_widget_render_stock_icon
11175         (gtk_image_get_icon_set): don't dup returned string
11176         (gtk_image_get_icon_set): don't dup returned string
11177
11178         * gtk/gtkwidget.c (gtk_widget_render_icon): rename from 
11179         gtk_widget_render_stock_icon(), more consistent with gtkstyle.h
11180         and gtkiconfactory.h functions
11181
11182         * gtk/gtkiconfactory.c: add some docs in here
11183
11184         * gtk/gtkmain.c (gtk_get_default_language): document
11185         (gtk_get_current_event): document
11186         (gtk_get_current_event_state): document
11187         (gtk_get_event_widget): document
11188
11189         * gtk/gtkentry.c (gtk_entry_set_invisible_char): document
11190
11191         * gtk/gtkcontainer.c: Add some documentation
11192         (gtk_container_add): give a more explanatory warning on adding an
11193         already-parented widget, this is kind of a FAQ and also a common
11194         typo that's easier to debug with a nice warning 
11195
11196         * gtk/gtkcellrenderertoggle.c
11197         (gtk_cell_renderer_toggle_get_active): remove, I was on crack
11198         adding this, it's useless
11199         (gtk_cell_renderer_toggle_set_active): remove
11200         (gtk_cell_renderer_toggle_get_radio): add
11201
11202         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): don't allow
11203         the NULL cell renderer, that doesn't make any sense to me. 
11204
11205         * demos/gtk-demo/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED,
11206         demo code should never use deprecated features.
11207
11208         * demos/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED, demo
11209         code should never use deprecated features.
11210
11211         * gtk/gtkwidget.h: Mark gtk_widget_draw, gtk_widget_queue_clear,
11212         gtk_widget_queue_clear_area deprecated
11213
11214         * gtk/gtklayout.h: mark gtk_layout_freeze/gtk_layout_thaw
11215         deprecated
11216
11217         * gtk/gtklabel.h: mark gtk_label_get() deprecated
11218
11219         * gtk/gtkimage.h: mark the legacy GtkImage functions that took 
11220         a GdkImage deprecated, replaced by new consistently-named
11221         functions       
11222
11223         * gtk/gtkmain.h: Mark gtk_exit() deprecated
11224
11225         * gtk/gtkdrawingarea.h: mark gtk_drawing_area_size deprecated
11226
11227         * gtk/gtkstyle.h: mark gtk_draw_string, gtk_paint_string 
11228         deprecated
11229
11230         * gtk/gtkstatusbar.h: Move GtkStatusbarMsg to the .c file, 
11231         so it won't appear in docs and confuse people.
11232
11233         * gtk/gtkprogressbar.h: Mark all the old methods deprecated
11234
11235         * gtk/gtkprogress.h: Mark all methods deprecated, mark the cast
11236         macros deprecated. (can't mark the type itself deprecated, since
11237         GtkProgressBar is not deprecated and we need the type decl to use
11238         GtkProgressBar)
11239
11240         * gtk/gtkpixmap.h: Mark deprecated
11241
11242         * gtk/gtkoldeditable.h: Mark deprecated
11243
11244         * gtk/gtklist.h: Mark deprecated
11245
11246         * gtk/gtklabel.h: delete "GtkLabelWord" typedef, not used 
11247         for anything anymore.
11248
11249         * gtk/gtkctree.h: Mark deprecated
11250
11251         * gtk/gtkclist.h: Mark deprecated
11252
11253         * gtk/gtkpreview.h: Mark deprecated
11254
11255         * gtk/gtkpacker.h: Mark deprecated
11256
11257         * gtk/gtktipsquery.h: Mark deprecated
11258
11259         * gtk/gtkinputdialog.h: Add comment that it will move out of GTK
11260
11261         * gtk/gtkvruler.h: Add comment that it will move out of GTK
11262
11263         * gtk/gtkhruler.h: Add comment that it will move out of GTK
11264
11265         * gtk/gtkruler.h: Add comment that it will move out of GTK
11266
11267         * gtk/gtkgamma.h: Add comment that it will move out of GTK
11268
11269         * gtk/gtkcurve.h: Add comment that it will move out of GTK
11270
11271 Fri Feb  2 17:16:09 2001  Owen Taylor  <otaylor@redhat.com>
11272
11273         * gdk/x11/gdkcolor-x11.c (gdk_colormap_sync): Make
11274         gdk_colormap_sync private since it was never exported
11275         in a header file.
11276
11277         * gdk/x11/gdkcolor-x11.c (gdk_colormap_new): Fill in
11278         colormap->colors[] for StaticGray, StaticColor colormaps.
11279
11280         * gdk/gdkpixbuf-drawable.c: Fix problems where image->bpp
11281         was being used as if it was image->bits_per_pixel.
11282
11283         * gdk/gdkimage.h, gdk/x11/gdkimage-x11.c: Save the bits-per-pixel
11284         for the image in the GdkImage structure since it isn't
11285         reconstructable, and we need it to handle packed types
11286
11287         * gdk/win32/gdkimage-win32.c: Set image->bits_per_pixel. (I'm making
11288         the assumption that on Win32 image->bits_per_pixel == image->depth,
11289         always.
11290
11291         * gdk/linux-fb/gdkimage-fb.c: Set image->bits_per_pixel.
11292
11293         * gdk/gdkrgb.c (gdk_rgb_select_conv): Exit with an informative
11294         warning message if no converter can be found. 
11295
11296 Fri Feb  2 15:09:51 2001  Owen Taylor  <otaylor@redhat.com>
11297
11298         * gtk/fnmatch.c (FOLD): Fix problem with passing signed
11299         chars to isupper() / tolower(). (#567)
11300
11301         * examples/packer/pack.c: Add GINT_TO_POINTER, GPOINTER_TO_INT
11302         to clear up 64-bit warnings. (#567)
11303
11304 Fri Feb  2 12:26:50 2001  Owen Taylor  <otaylor@redhat.com>
11305
11306         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Get rid of
11307         a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
11308
11309         * gtk/gtkrc.c Makefile.am: Use $(libdir), not $(exe_prefix),
11310         since some people set $(libdir) separately. (#1290, David Kaelbling)
11311
11312 Thu Feb  1 18:25:46 2001  Owen Taylor  <otaylor@redhat.com>
11313
11314         * gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not
11315         defined, define MAXPATHLEN to 2048. (The Hurd doesn't have
11316         MAXPATHLEN, but the code here depends on a fixed value.)
11317         (#4524)
11318
11319 Wed Jan 31 22:01:04 2001  Owen Taylor  <otaylor@redhat.com>
11320
11321         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Handle the case
11322         where child == NULL and handle_position == RIGHT or BOTTOM. (#8041g)
11323
11324 Wed Jan 31 21:20:39 2001  Owen Taylor  <otaylor@redhat.com>
11325
11326         * gtk/gtkctree.c (real_tree_move): If the node being moved isn't
11327         viewable there is no way that moving the node will cause the 
11328         focus row to become not viewable, so omit check on the visibility
11329         of new_sibling, which is irrelevant. (Fixes #8002, David Helder)
11330
11331 Wed Jan 31 20:38:17 2001  Owen Taylor  <otaylor@redhat.com>
11332
11333         * gtk/gtkentry.c (gtk_entry_commit_cb): Delete the current
11334         selection before inserting new text.
11335
11336 Wed Jan 31 18:49:33 2001  Owen Taylor  <otaylor@redhat.com>
11337
11338         * gtk/gtkoptionmenu.c (gtk_option_menu_item_state_changed_cb):
11339         Make the sensitivity of the reparented child track that of
11340         the original parent menu item. (#34218, David Hodson)
11341
11342         * gtk/gtkoptionmenu.c (gtk_option_menu_item_destroy_cb): Handle
11343         the case where the current item is destroyed properly.
11344
11345         * gtk/gtkoptionmenu.c: Some additional code cleanups and fix
11346         some edge cases with child-less menuitems.
11347         
11348 Wed Jan 31 17:16:13 2001  Owen Taylor  <otaylor@redhat.com>
11349
11350         * gtk/gtkcombo.c (gtk_combo_window_key_press): Make Return
11351         key pop down window. (#12074, Jon K Hellan)
11352
11353 Wed Jan 31 16:21:42 2001  Owen Taylor  <otaylor@redhat.com>
11354
11355         * gtk/gtklist.c (gtk_list_signal_item_toggle): Don't allow
11356         toggling of rows off in BROWSE or EXTENDED mode. (#12072, Jon K Hellan) 
11357         The solution here isn't perfect - you get an extraneous
11358         emission of "toggle", which could conceivably confuse an app,
11359         but better than the current situation. LXR search seems to
11360         indicate that no apps in GNOME CVS connect to "toggle".
11361
11362 Wed Jan 31 15:46:13 2001  Owen Taylor  <otaylor@redhat.com>
11363
11364         * gtk/Makefile.am (libgtkinclude_HEADERS): Move gtkcompat.h from
11365         gtk_public_h_sources to directly here to avoid warning when
11366         building srcdir != builddir. (#9656)
11367
11368 Tue Jan 30 19:49:02 2001  Owen Taylor  <otaylor@redhat.com>
11369
11370         * gtk/gtkrange.c: Patch from Kipp Hickman to make the event
11371         handlers in gtkrange.c return the proper values (TRUE == handled)
11372         (#10316).
11373
11374         This is just the tip of the iceberg, but gtkrange.c is the
11375         most common place where the propagation is problematical,
11376         and also a place where it is almost certainly safe to change
11377         this in the stable branch.
11378
11379         (You don't want right click popups on a range control or anything...)
11380
11381 Tue Jan 30 18:57:59 2001  Owen Taylor  <otaylor@redhat.com>
11382
11383         * gtk/gtktext.c (clear_focus_area): We need to clear the focus
11384         area on focus out, even if a background pixmap isn't set.
11385         (#13941)
11386         
11387 Tue Jan 30 18:24:10 2001  Owen Taylor  <otaylor@redhat.com>
11388
11389         * gtk/gtknotebook.c (gtk_notebook_set_shape): Fix from Sean Cunningham
11390         to deal with setting the shape properly when scrolling arrows are
11391         turned on, but not visible because there is sufficient space.
11392         (#13432)
11393
11394 Tue Jan 30 16:39:25 2001  Owen Taylor  <otaylor@redhat.com>
11395
11396         * gtk/gtkitemfactory.c (gtk_item_factory_delete_item): For menu
11397         items with submenus, destroy the item along with the submenu.
11398         (#7841, Brian Masney(?)) Also, handle paths of the form '<foo>/abcd...' 
11399         properly.
11400
11401         * gtk/testgtk.c (menu_items): Add a dummy branch that we delete
11402         later.
11403
11404 Tue Jan 30 15:51:25 2001  Owen Taylor  <otaylor@redhat.com>
11405
11406         * gtk/gtkwindow.c (gtk_window_real_set_focus): Fix a problem where
11407         the focus widget sometimes wasn't drawn with the default if there
11408         was no default widget.
11409
11410         * gtk/gtkstyle.c (gtk_style_real_unrealize): free colors,
11411         unreference pixmaps. 
11412
11413         * gtk/gtkstyle.c (gtk_style_realize): Reference colormap
11414         for some extra safety.
11415
11416 Mon Jan 29 19:00:01 2001  Owen Taylor  <otaylor@redhat.com>
11417
11418         * gtk/gtk{ctree.c,clist.c} (set_cell_contents): Handle setting
11419         the text of a cell to the old pointer value better, by
11420         copying the new text before freeing the old text. Some code
11421         cleanup. (#8079, Karl Nelson)
11422
11423 Mon Jan 29 16:50:19 2001  Owen Taylor  <otaylor@redhat.com>
11424
11425         * gtk/gtklabel.[ch] gtk/gtkframe.[ch]: Make gtk_label_get_text()
11426         gtk_frame_get_label() non strdup'ing, and G_CONST_RETURN.
11427
11428 Mon Jan 29 15:22:51 2001  Owen Taylor  <otaylor@redhat.com>
11429
11430         * gtk/gtkmenu.c (gtk_menu_remove): When removing an
11431         item from a menu, check to see if it matches 
11432         menu->old_active_menu_item, and if so, unref and clear
11433         old_active_menu_item (Patch from Pavel Cisler)
11434
11435         * gtk/gtkmenushell.c (gtk_menu_shell_remove): Unset 
11436         menu_shell->active_menu_item, if it is the child being
11437         removed. (Patch based on that of Gene Ragan, #50337)
11438
11439 2001-01-31  Alexander Larsson  <alla@lysator.liu.se>
11440
11441         * gdk/linux-fb/gdkselection-fb.c: 
11442         * gdk/linux-fb/gdkcolor-fb.c: 
11443         * gdk/linux-fb/gdkdrawable-fb2.c: 
11444         * gdk/linux-fb/gdkfont-fb.c: 
11445         * gdk/linux-fb/gdkim-fb.c: 
11446         * gdk/linux-fb/gdkinput.c: 
11447         * gdk/linux-fb/gdkkeyboard-fb.c: 
11448         * gdk/linux-fb/gdkmain-fb.c: 
11449         * gdk/linux-fb/gdkrender-fb.c: 
11450         A bunch of whitespace cleanup.
11451         
11452 2001-01-30  Havoc Pennington  <hp@pobox.com>
11453
11454         * gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in 
11455         #ifdef GTK_ENABLE_BROKEN.
11456
11457         * gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
11458         GTK_ENABLE_BROKEN just before including the broken headers.
11459         
11460         * gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
11461         deprecated types registered.
11462
11463         * gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
11464         we have to test the broken stuff.
11465
11466         * docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
11467         
11468 2001-01-30  Havoc Pennington  <hp@redhat.com>
11469
11470         * gtk/gtkliststore.c (gtk_list_store_insert_before): fix bug in
11471         here where prev pointer was set to the wrong thing
11472
11473         * gtk/gtktreemodel.c (gtk_tree_path_is_ancestor): new function
11474         (gtk_tree_path_is_descendant): new function
11475
11476         * gtk/gtkliststore.c (gtk_list_store_iter_n_children): return
11477         cached length
11478         (gtk_list_store_get_iter): don't modify iter if we can't get the
11479         path.
11480
11481         * gtk/gtkliststore.h (struct _GtkListStore): cache the length
11482         
11483         * gtk/gtktreednd.h: add virtual function row_drop_possible() to
11484         GtkTreeDragDest
11485
11486         * gtk/gtktreestore.c (copy_node_data): fix varargs type error that
11487         was causing segfault
11488
11489         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_copy): set next
11490         pointer to NULL
11491
11492         * gtk/gtktreestore.c (gtk_tree_store_append): fix memleak
11493
11494         * gtk/gtkliststore.c (gtk_list_store_iter_next): don't modify iter
11495         on returning FALSE
11496         (gtk_list_store_iter_children): ditto
11497         (gtk_list_store_iter_nth_child): ditto
11498         (gtk_list_store_iter_nth_child): ditto
11499         (gtk_list_store_iter_parent): ditto
11500
11501         * gtk/gtktreestore.c (gtk_tree_store_get_path): g_return_if_fail
11502         on iter->user_data != NULL instead of silently accepting it.
11503         (gtk_tree_store_iter_next): ditto. Also, don't modify iter unless
11504         we are returning TRUE.
11505         (gtk_tree_store_iter_children): ditto
11506         (gtk_tree_store_iter_nth_child): ditto
11507         (gtk_tree_store_iter_parent): ditto
11508         (gtk_tree_store_insert): remove handling of parent->user_data ==
11509         NULL, replace with parent == NULL       
11510
11511         * gtk/gtktreemodel.c (inserted_callback): put some fixes in here,
11512         and a comment explaining things
11513
11514         * gtk/gtktreestore.c: add GtkTreeDragSource/GtkTreeDragDest
11515         interface support to GtkTreeStore.
11516
11517         * gtk/gtktreemodel.c (gtk_tree_path_prev): didn't properly return
11518         FALSE if no prev, fix
11519
11520         * gtk/gtktreeview.c (set_source_row): use a row reference
11521         (set_dest_row): use a row reference
11522
11523 Sat Jan 27 15:52:02 2001  Jonathan Blandford  <jrb@redhat.com>
11524
11525         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
11526         stupid typo pointed out by Kristian Rietveld <kristian@planet.nl>.
11527         (gtk_tree_selection_select_iter): The same as above.
11528
11529 2001-01-26  Havoc Pennington  <hp@redhat.com>
11530
11531         * gtk/gtktreemodel.c, gtk/gtktreemodel.h: add GtkTreeRowReference
11532         which holds a handle to a specific row (particular set of values
11533         in the model, i.e. pointer-identity row).
11534
11535         * gtk/gtktreeview.c, gtk/gtktreeprivate.h, gtk/gtktreeselection.c:
11536         use GtkTreeRowReference for anchor, cursor, and drag_dest_row.
11537         Still need to use it for the src/dest row saved on the drag context.
11538
11539 2001-01-26  Havoc Pennington  <hp@redhat.com>
11540
11541         * gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
11542
11543         * gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
11544         not offset by TREE_VIEW_HEADER_HEIGHT
11545         (gtk_tree_view_tree_to_widget_coords): fix to not offset by
11546         TREE_VIEW_HEADER_HEIGHT
11547
11548         * configure.in (included_loaders): for me, --with-included-loaders
11549         generates the error "the specified loader yes does not exist",
11550         i.e. the arg defaults to "yes", so change test for value ""
11551         to test for value "yes", and include all loaders in that case.
11552
11553         * gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
11554
11555         * gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
11556         handle TREE_VIEW_VERTICAL_SEPARATOR
11557         (gtk_tree_view_bin_expose): fix to consider the row offset as
11558         pointing halfway into vertical separator.       
11559         (gtk_tree_view_draw_node_focus_rect): ditto
11560
11561         * gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
11562         --gtk-debug=updates, which causes gdk_window_set_debug_updates
11563         (TRUE) to be called.
11564
11565         * gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
11566         debug mode where the invalid region is colored in on invalidate,
11567         so you can see the flicker and know whether your redraw code is 
11568         doing a good job.
11569
11570         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in 
11571         tree window coordinates (clip rect is in tree window coords)
11572
11573         * gtk/Makefile.am: add gtktreednd.[hc]
11574
11575         * gtk/gtkliststore.c: implement gtktreednd interfaces.
11576
11577         * gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
11578         drag-and-drop data operations on a model (so we can set up tree
11579         drag-and-drop automatically)
11580
11581         * gtk/testgtk.c: Add a window to change sensitivity in the
11582         GtkLabel test; add a way to change the entry frame in GtkEntry
11583         test
11584
11585         * gtk/gtkentry.c (gtk_entry_set_has_frame): 
11586         (gtk_entry_get_has_frame): new functions to remove the frame
11587         around an entry
11588         (gtk_entry_size_request): shrink requisition if no frame
11589         (gtk_entry_draw_focus): don't draw frame if no frame
11590
11591         * gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
11592         checks inside a cell renderer
11593         (gtk_default_draw_option): ditto for options
11594
11595         * gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
11596         children from the alignment, not the button
11597         (gtk_tree_view_column_init): ref/sink the column, to emulate
11598         GObject refcounting.
11599
11600         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
11601         
11602         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
11603         Use theme functions to draw the toggles 
11604
11605         * gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
11606
11607         * gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
11608         GdkPangoAttrEmbossed to use in rendering insensitive text
11609
11610         * gdk/gdkpango.c (gdk_draw_layout_line): render new properties
11611
11612         * gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
11613         using new GDK features
11614         
11615 2001-01-24  Alexander Larsson  <alexl@redhat.com>
11616
11617         * gtk/gtkimage.c:
11618         Splitted gtk_image_clear into gtk_image_clear() and
11619         gtk_image_reset(). Call gtk_image_clear() in ::destroy
11620         to avoid leaks.
11621
11622         * gtk/gtklabel.c (set_markup):
11623         Don't leak text.
11624
11625         * gtk/gtktextlayout.c:
11626         Always free display->shaped_objects.
11627
11628         * gtk/testgtk.c (create_clist):
11629         Don't leak custom style.
11630
11631 2001-01-23  Alexander Larsson  <alexl@redhat.com>
11632
11633         * gtk/gtkcolorsel.c (grab_color_at_mouse):
11634         Don't leak image. Simplify using gdk_colormap_query_color().
11635         (gtk_color_selection_init): Don't leak dropper_pixmap and mask.
11636
11637         * linux-fb/gdkcolor-fb.c:
11638         Implemented gdk_colormap_query_color.
11639
11640 2001-01-23  Alexander Larsson  <alexl@redhat.com>
11641
11642         * linux-fb/gdkcursor-fb.c:
11643         Don't leak built-in cursors.
11644
11645         * linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_polygon):
11646         Don't leak tmp_points.
11647
11648         * linux-fb/gdkfont-fb.c (gdk_font_from_description):
11649         Don't modify desc. Don't leak font if the PangoFont
11650         isn't found.
11651         
11652         * linux-fb/gdkgc-fb.c (gdk_fb_gc_finalize):
11653         Free dash_list.
11654
11655         * linux-fb/gdkkeyboard-fb.c (gdk_fb_handle_key):
11656         Don't leak string.
11657         
11658 2001-01-20  Havoc Pennington  <hp@pobox.com>
11659
11660         * gtk/gtktexttag.h (enum GtkWrapMode): rename member fields
11661         from GTK_WRAPMODE_WORD to GTK_WRAP_WORD, etc., seems nicer to 
11662         me, matches Pango
11663
11664 2001-01-22  Havoc Pennington  <hp@redhat.com>
11665
11666         * demos/testanimation.c: fix to reflect gdk-pixbuf changes
11667
11668         * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes
11669
11670         * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: 
11671         Remove, move back to gdk-pixbuf
11672
11673         * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents
11674         to all the word functions
11675
11676         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return
11677         before doing anything on NULL layout or if we don't have the focus
11678
11679         * gtk/testtext.c (fill_example_buffer): "justification"
11680
11681         * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute
11682         to be called "justification" not "justify"
11683
11684         * demos/gtk-demo/textview.c (create_tags): "justification"
11685         
11686         * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
11687
11688 2001-01-22  Alexander Larsson  <alexl@redhat.com>
11689
11690         * gdk/gdkwindow.c (gdk_window_invalidate_region):
11691         Don't leak visible_region. Use visible_region instead of region.
11692         
11693         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
11694         Don't do extra gdk_drawable_ref(). This is not X.
11695         (gdk_fb_window_find_focus, gdk_fb_change_focus): make sure
11696         gdk_fb_focused_window is ref:ed.
11697         (gdk_fb_window_send_crossing_events): Watch out for destroyed
11698         windows.
11699
11700 2001-01-22  Alexander Larsson  <alexl@redhat.com>
11701
11702         * gtk/gtkwindow-decorate.c (gtk_decorated_window_realize):
11703         Don't leak the PangoFontDescriptor.
11704
11705 Sun Jan 21 09:58:00 2001  Jonathan Blandford  <jrb@redhat.com>
11706
11707         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): Make fail
11708         when not realized.
11709         (gtk_tree_view_scroll_to_cell): Make work when not realized.
11710         (gtk_tree_view_realize): add scroll_to support
11711         (gtk_tree_view_finalize): add a finalize method.  Populate.
11712         (gtk_tree_view_insert_column): ref and sink the column.
11713         (gtk_tree_view_append_column): ref and sink the column.
11714         (gtk_tree_view_queue_draw_node): New function to handle redrawing
11715         individual nodes.  Should make the code much more efficient, if
11716         actually used.
11717
11718 2001-01-19  Havoc Pennington  <hp@redhat.com>
11719
11720         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
11721         byte_offset variable was being used to mean both "offset into
11722         layout" and "offset into buffer line" which was no longer true
11723         with addition of preedit string; fix
11724
11725 2001-01-19  Havoc Pennington  <hp@redhat.com>
11726
11727         * demos/gtk-demo/main.c (button_press_event_cb): sync to tree changes
11728
11729         * gtk/gtkrbtree.c (_gtk_rbtree_node_find_offset): fix this
11730         function
11731
11732         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_widget):
11733         implement
11734
11735         * gtk/gtktreeview.c (gtk_tree_view_move_to): rename
11736         scroll_to_cell, matches TextView scroll functions better
11737         (gtk_tree_view_tree_to_widget_coords): new function
11738         (gtk_tree_view_widget_to_tree_coords): new function
11739         (gtk_tree_view_get_visible_rect): new function
11740         (gtk_tree_view_get_path_at_pos): accept negative coordinates
11741         (gtk_tree_view_draw_node_focus_rect): new function moved from
11742         draw_focus, also, use width of bin_window as width of the focus
11743         rect
11744         (gtk_tree_view_expand_row): fix bug where it didn't recognize
11745         already-expanded rows
11746         (gtk_tree_view_get_cell_rect): new function
11747         (gtk_tree_view_get_path_at_pos): return the click position
11748         relative to the passed-in cell
11749         (gtk_tree_view_set_expander_column): new function
11750
11751         * configure.in: remove gtk-config-2.0 chmod
11752
11753         * gtk/gtktextview.c (gtk_text_view_drag_motion): small cleanups,
11754         and properly handle drags with targets we don't understand
11755         (gtk_text_view_drag_end): don't stop scrolling, the source isn't
11756         scrolling anyway
11757         (gtk_text_view_drag_drop): stop scrolling here though, and set the
11758         mark invisible
11759
11760         * gtk/gtkdnd.c (gtk_drag_dest_find_target): export as a public
11761         function
11762         (gtk_drag_dest_get_target_list): new function
11763         (gtk_drag_dest_set_target_list): new function
11764         
11765         * gtk/gtktreeview.c: Add a bunch of drag-and-drop implementation
11766
11767         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add fields
11768         related to drag-and-drop
11769
11770 2001-01-19  Alexander Larsson  <alexl@redhat.com>
11771
11772         * gdk/linux-fb/gdkprivate-fb.h:
11773         Define EMULATE_GDKFONT.
11774         Add extra pango_font stuff to GfkFontPrivate.
11775         
11776         * gdk/linux-fb/gdkdrawable-fb2.c:
11777         * gdk/linux-fb/gdkfont-fb.c:
11778         If EMULATE_GDKFONT defined, implement a slow lame GdkFont
11779         emulation using PangoFont.
11780
11781 2001-01-17  Havoc Pennington  <hp@pobox.com>
11782
11783         * gtk/gtkprogressbar.c, gtk/gtkprogressbar.h: Add "getters" for
11784         all the non-deprecated set_foo functions. Added missing object
11785         properties, and added g_object_notify() to setters. 
11786         Wrote docs.
11787         
11788 2001-01-18  Tor Lillqvist  <tml@iki.fi>
11789
11790         * gtk/gtkmain.c
11791         * gtk/gtkrc.c: (Win32) Use the new
11792         g_win32_get_package_installation_(sub)directory() functions.
11793
11794         * config.h.win32.in: New file.
11795         
11796         * config.h.win32: Removed.
11797
11798         * configure.in: Output config.h.win32.
11799
11800         * Makefile.am: Add it to EXTRA_DIST.
11801
11802         * gtk/gtk.def: Update.
11803
11804 Wed Jan 17 16:22:54 2001  Owen Taylor  <otaylor@redhat.com>
11805
11806         * gtk/gtklabel.c (gtk_label_size_request): Set the
11807         attributes onto the PangoLayout even if they are newly
11808         created from label->pattern.
11809
11810 Tue Jan  9 11:20:48 2001  Owen Taylor  <otaylor@redhat.com>
11811
11812         * gdk/x11/gdkdnd-x11.c: Remove unused variable.
11813
11814         * gtk/gtkdnd.c: Encapsulate storing and retrieving info
11815         structures in functions. Fixes bug where gtk_dataset_*
11816         was accidentally still being used in one place, causing
11817         every dest side event to be treated independently.
11818
11819         * gtk/gtkdnd.c: Remove last vestages of handling
11820         ::draw (fixes warning)
11821         
11822         * gtk/gtkentry.[ch]: Add drag and drop support.
11823
11824         * gtk/gtkdnd.[ch] gtk/gtktextview.c gtk/gtkentry.c: Add
11825         new function gtk_check_drag_threshhold() for checking
11826         to check if (dx,dy) has exceeded the threshhold for starting
11827         a drag and use it everywhere.
11828
11829 Mon Jan  8 11:58:05 2001  Owen Taylor  <otaylor@redhat.com>
11830
11831         * gtk+-2.0.pc.in gdk-pixbuf-2.0.pc.in (Cflags): Remove -I${includedir},
11832         add -I{includedir}/gtk-2.0.
11833
11834         * gtk/gtktreeview.[ch] gtktreemodelsort.[ch] gtknotebook.c
11835         gdk/gdk-pixbuf.h: Doc fixups.
11836         
11837         * gtk/gtkobject.h: Remove trailing , from enum
11838
11839 2001-01-17 Alexander Larsson <alexl@redhat.com> 
11840
11841         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_shadow_fb_draw_arc):
11842         Doh! Mixed up x and y.
11843
11844         * gdk/linux-fb/gdkglobals-fb.c:
11845         Removed gdk_fb_pointer_grab_window_events,
11846         added _gdk_fb_pointer_grab_owner_events and
11847         _gdk_fb_keyboard_grab_owner_events.
11848
11849         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab):
11850         Set all button mask if GDK_BUTTON_MOTION_MASK set. Send
11851         crossing events before grabbing. Set _gdk_fb_pointer_grab_owner_events.
11852         (gdk_fb_pointer_ungrab): Unset _gdk_fb_pointer_grab_owner_events
11853         Send crossing events after ungrab finished.
11854         (gdk_keyboard_grab): Set ..._owner_events
11855         (type_masks): Move out of function.
11856         (gdk_fb_other_event_window, gdk_fb_pointer_event_window,
11857         gdk_fb_keyboard_event_window): New functions, return the
11858         window an event should be targeted at. Handles grabs and
11859         event propagation. Can return NULL.
11860         (gdk_event_make): Remove event_mask checking. Now always
11861         returns an event.
11862                 
11863         * gdk/linux-fb/gdkkeyboard-fb.c:
11864         * gdk/linux-fb/gdkproperty-fb.c:
11865         * gdk/linux-fb/gdkselection-fb.c:
11866         Use new event_window/gdk_event_make() behaviour.
11867         
11868         * gdk/linux-fb/gdkmouse-fb.c:
11869         Use new event_window/gdk_event_make() behaviour.
11870         Only send motion events if in the same window.
11871         If grabbed, use cursor from window if sibling of grabbed
11872         window, and cursor from grabbed window otherwise.
11873
11874         * gdk/linux-fb/gdkprivate-fb.h:
11875         Update gdk_fb_window_send_crossing_events, gdk_event_make
11876         and grab varaible declarations. Add gdk_fb_*_event_window().
11877
11878         * gdk/linux-fb/gdkwindow-fb.c:
11879         Use new event_window/gdk_event_make() behaviour.
11880         Keep correct track of focus window.
11881         (gdk_window_set_events): Set all specific button motion masks
11882         if GDK_BUTTON_MOTION_MASK set.
11883
11884         * gtk/gtkdnd.c (gtk_drag_update):
11885         Free info->last_event if gdk_drag_motion returned FALSE.
11886
11887 2001-01-16  Tor Lillqvist  <tml@iki.fi>
11888
11889         * gdk/win32/gdkwindow-win32.c (gdk_window_show, gdk_window_hide):
11890         Eliminate redraws when input-only windows are shown or
11891         hidden. Thanks to jpe@archaeopteryx.com.
11892
11893 Tue Jan 16 13:13:13 GMT 2001  Tony Gale <gale@gtk.org>
11894
11895         * docs/faq/gtk-faq.sgml: FAQ update:
11896           - Update to bugzilla
11897           - Add GTK+ and security/SUID/SGID
11898           - Add DnD question
11899
11900 2001-01-16  Alexander Larsson  <alla@lysator.liu.se>
11901
11902         * gdk/linux-fb/gdkdnd-fb.c:
11903         Some cleanups.
11904         
11905 2001-01-15  Havoc Pennington  <hp@pobox.com>
11906
11907         * tests/testtreeview.c: add test stuff for CellRendererToggle
11908
11909         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_model): add this
11910         accessor
11911
11912         * gtk/gtkcellrenderertoggle.c: distinguish different event types,
11913         only toggle on button press (would do release like GtkButton, but
11914         we'd need implicit grab code for treeview cells)
11915
11916 2001-01-16  Tor Lillqvist  <tml@iki.fi>
11917
11918         * gdk/win32/gdkvisual-win32.c: Include <stdlib.h> for getenv().
11919
11920         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't use
11921         GDK_COLORMAP_PRIVATE_DATA on a potentially NULL GdkColormap.
11922
11923         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Adapt calls
11924         to g_{locale,filename}_{to,from}_utf8 to match current API.
11925
11926         * gtk/makefile.msc.in (gtk_OBJECTS)
11927         * gtk/makefile.mingw.in (gtk_OBJECTS): Add gtkwindow-decorate.
11928
11929         * gtk/gtk.def: Update.
11930
11931 2001-01-15  Tor Lillqvist  <tml@iki.fi>
11932
11933         * gdk/win32/gdkevents-win32.c (synthesize_crossing_events): New
11934         implementaion that more closely mimics the events that an X server
11935         would generate. Especially, properly generate GDK_NOTIFY_VIRTUAL and
11936         GDK_NOTIFY_NONLINEAR_VIRTUAL crossing events. This makes buttons
11937         with nested preview widgets, for instance, more responsive when
11938         you move the mouse quickly into them.
11939         (find_window_for_pointer_event): Make it actually compile.
11940         (gdk_event_translate): Set send_event to the value of
11941         InSendMessage (). This doesn't really mean the same as X11's
11942         send_event flag, but is close enough, says jpe@archaeopteryx.com
11943
11944 2001-01-15  Alexander Larsson  <alexl@redhat.com>
11945
11946         * gdk/linux-fb/gdkdnd-fb.c:
11947         Implemented drag and drop.
11948         Seems to be mostly working. I sometimes get an assert from gtkdnd.c:2664
11949         when it tries to free and then copy the same event (info->last_event).
11950         I am not sure about why this happens, but will continue looking.
11951
11952 2001-01-15  Alexander Larsson  <alexl@redhat.com>
11953
11954         * gdk/linux-fb/gdkwindow-fb.c:
11955         Use gdk_window_invalidate_rect instead of
11956         gdk_window_invalidate_rect_clear to minimise flashing.
11957         When hiding windows you need to clear the root window though.
11958
11959 2001-01-15  Alexander Larsson  <alexl@redhat.com>
11960
11961         * gdk/linux-fb/gdkdrawable-fb2.c:
11962         For optization, add an full_shapes argument to gdk_fb_clip_region.
11963         If this is false, only the cliprects of the shapes are used.
11964
11965         * gdk/linux-fb/gdkprivate-fb.h:
11966         Export gdk_fb_window_peek_shape.
11967         Add full_shapes to gdk_fb_clip_region.
11968
11969         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
11970         When moving a window, don't clear everything under the it, just the
11971         root window. Makes stuff faster and flash less.
11972         (gdk_window_get_pointer): Correctly handle offseted shapes, due to
11973         USE_CHILD_SHAPE. (gdk_fb_window_peek_shape): Return the correct
11974         offset of the shape.
11975         
11976
11977 2001-01-12  Havoc Pennington  <hp@redhat.com>
11978
11979         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): offset the 
11980         current invalid region, fixes redraw bug while scrolling the 
11981         text widget
11982
11983         * gtk/gtktextview.c, gtk/gtktextview.h:
11984         Rearrange the scrolling/validation/etc. code in a major way, 
11985         so it seems to make sense to me. Probably isn't genuinely that
11986         much better, but...
11987
11988         * gtk/gtktexttag.c (set_fg_color): fix name of property used for
11989         notifies
11990
11991         * gtk/gtktextmark.c (gtk_text_mark_get_left_gravity): new function
11992
11993 2001-01-12  Alexander Larsson  <alla@lysator.liu.se>
11994
11995         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_set_rotation):
11996         Hide mouse pointer while rotation. Show it afterwards.
11997
11998 2001-01-12  Alexander Larsson  <alexl@redhat.com>
11999
12000         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region): Take shaped
12001         windows in consideration when generating clip region.
12002
12003         * gdk/linux-fb/gdkfb.h:
12004         Huge HACK. Added GDK_FB_USE_CHILD_SHAPE.
12005
12006         * gdk/linux-fb/gdkprivate-fb.h:
12007         Add shape to GdkWindowFBDatat.
12008         exported gdk_fb_window_get_abs_shape().
12009         removed gdk_fb_draw_lines declaration.
12010
12011         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_impl_fb_init):
12012         Init shape to NULL. (gdk_fb_window_send_crossing_events): Don't
12013         send focus changes when there is a grabbed window.
12014         (gdk_window_get_pointer): Handle shaped windows.
12015         (gdk_fb_region_create_from_bitmap): Convert bitmap to region.
12016         (gdk_fb_window_peek_shape): Returns the shape for a window,
12017         handles GDK_FB_USE_CHILD_SHAPE.
12018         (gdk_fb_window_get_abs_shape): Returns the shape of the window,
12019         offseted to absolute positions. Handles GDK_FB_USE_CHILD_SHAPE.
12020         (gdk_window_shape_combine_mask): Implement.
12021
12022         * gtk/gtkwindow-decorate.c:
12023         HACK! Set GDK_FB_USE_CHILD_SHAPE on window->frame to make sure
12024         setting the shape of a window makes the window transparent.
12025
12026 2001-01-11  Havoc Pennington  <hp@redhat.com>
12027
12028         * gtk/gtktreemodelsimple.h: Oops, broke some macros
12029
12030 2001-01-10  Havoc Pennington  <hp@redhat.com>
12031
12032         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clear_attributes):
12033         add this function, bug 40251
12034
12035         * gtk/gtktreemodelsimple.h (GTK_TYPE_TREE_MODEL_SIMPLE): fix name
12036         of type macro   
12037
12038 2001-01-11  Alexander Larsson  <alexl@redhat.com>
12039
12040         * acconfig.h:
12041         Added ENABLE_SHADOW_FB
12042
12043         * configure.in:
12044         Added --disable-shadowfb
12045
12046         * gdk/linux-fb/gdkcursor-fb.c:
12047         Update shadowfb when updating cursor
12048
12049         * gdk/linux-fb/gdkdrawable-fb2.c:
12050         Added wrappers for shadowfb that calls  the normal drawable
12051         methods, but calls gdk_shadow_fb_update(bounding box) when
12052         GdkWindows are drawed to.
12053         Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
12054         which also returns the bounding box.
12055
12056         * gdk/linux-fb/gdkfb.h:
12057         Added GdkFBAngle type and gdk_fb_set_rotation declaration.
12058
12059         * gdk/linux-fb/gdkgeometry-fb.c:
12060         Update shadowfb when scrolling window.
12061
12062         * gdk/linux-fb/gdkglobals-fb.c:
12063         Add _gdk_fb_screen_angle.
12064         
12065         * gdk/linux-fb/gdkkeyboard-fb.c:
12066         Test code for screen rotation. Shift-F2 in the xlate driver
12067         rotates the screen.
12068
12069         * gdk/linux-fb/gdkmain-fb.c:
12070         Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
12071
12072         * gdk/linux-fb/gdkmouse-fb.c:
12073         Use fb_width/height instead of modeinfo.xres/yres.
12074
12075         * gdk/linux-fb/gdkprivate-fb.h:
12076         Added fb_men, fb_width, fb_height & fb_stride. When using
12077         shadow fb these can differ from the framebuffer stuff.
12078         Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
12079         gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
12080         _gdk_fb_screen_angle. Removed CM, RP.
12081
12082         * gdk/linux-fb/gdkrender-fb.c:
12083         Added code for shadowfb handling and screen rotation using
12084         shadowfb.
12085
12086         * gdk/linux-fb/gdkwindow-fb.c:
12087         Use fb_mem, fb_stride, fb_width, fb_height.
12088         Added recompute_rowstride to reset the rowstride of all windows.
12089         Added gdk_fb_recompute_all() which recomputes rootwindow size,
12090         window abs positions and window rowstrides. Usefull when the
12091         rotation has changed.
12092
12093 Thu Jan 11 13:16:50 GMT 2001  Tony Gale <gale@gtk.org>
12094
12095         * docs/faq/gtk-faq.sgml: update to make web site updating easier
12096
12097 2001-01-10  Havoc Pennington  <hp@redhat.com>
12098
12099         * gtk/gtktreestore.c (gtk_tree_store_insert_before): handle case
12100         where sibling == iter
12101         (gtk_tree_store_insert_after): handle sibling == iter
12102         (gtk_tree_store_prepend): remove stamp checks
12103         (gtk_tree_store_insert_before): ditto
12104         (gtk_tree_store_append): ditto
12105         (gtk_tree_store_get_path): ditto
12106         (gtk_tree_store_get_value): ditto
12107         (gtk_tree_store_iter_has_child): ditto
12108         (gtk_tree_store_iter_n_children): ditto
12109         (gtk_tree_store_iter_nth_child): ditto
12110         (gtk_tree_store_insert_after): ditto
12111         (gtk_tree_store_is_ancestor): ditto
12112         (gtk_tree_store_iter_depth): ditto
12113         (gtk_tree_store_insert_before): assert that sibling's parent is
12114         the same as the passed-in parent
12115         (gtk_tree_store_insert_after): assert that sibling's parent is
12116         the same as the passed-in parent
12117
12118         
12119         * gtk/gtktreemodel.c (gtk_tree_model_get_first): new convenience 
12120         function to get the first iterator in a model
12121         
12122         * gtk/gtktreestore.c (gtk_tree_store_get_root_iter): remove,
12123         conventionally the "root" in this sense is just NULL afaict.
12124
12125         * gtk/gtkliststore.c (gtk_list_store_insert_before): handle case
12126         where sibling == iter
12127         (gtk_list_store_insert_after): handle case where sibling == iter
12128
12129         * tests/testtreeview.c (run_automated_tests): fairly lame basic
12130         automated tests for ListStore, TreeStore
12131
12132         * gtk/gtkliststore.c (gtk_list_store_remove): update tail pointer
12133         (gtk_list_store_insert): update tail pointer, and fix it to work
12134         (gtk_list_store_insert_before): update tail pointer, and fix it to work
12135         (gtk_list_store_append): use tail to be faster
12136         (gtk_list_store_prepend): fix it, update tail pointer
12137         (gtk_list_store_insert_after): fix it, update tail pointer
12138
12139         * gtk/gtkliststore.h (struct _GtkListStore): add tail pointer for 
12140         the list
12141
12142 2001-01-09  Havoc Pennington  <hp@redhat.com>
12143
12144         * gtk/gtklabel.c (gtk_label_expose): don't draw if label->layout
12145         is NULL due to a pending resize
12146
12147         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): don't set the
12148         column width to values less than 1
12149
12150         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_width): clamp
12151         width to be between min/max width, and still set the width 
12152         even if autosize is turned on, so the tree view can use this 
12153         function in order to autosize.
12154         (gtk_tree_view_column_init): set initial width to 1 not 0
12155
12156         * gtk/gtktreeview.c (gtk_tree_view_size_request_buttons): use
12157         setter function to modify column width, so we get notification
12158         (gtk_tree_view_insert_iter_height): ditto
12159         (gtk_tree_view_calc_size): ditto
12160         (gtk_tree_view_check_dirty): ditto
12161
12162         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add
12163         properties to change all the interesting attributes of the tree
12164         view column.
12165         (gtk_tree_view_column_set_header_clickable): rename set_clickable
12166         (gtk_tree_view_column_get_clickable): add
12167         (gtk_tree_view_column_set_cell_renderer): don't unset the current
12168         attributes; assume a cell renderer with equivalent object
12169         properties has been swapped in. Do g_object_notify().
12170         (gtk_tree_view_column_set_visible): g_object_notify
12171         (gtk_tree_view_column_get_sizing): rename from get_col_type
12172         (gtk_tree_view_column_set_sizing): g_object_notify
12173         (gtk_tree_view_column_set_width): add g_object_notify
12174         (gtk_tree_view_column_set_min_width): ditto
12175         (gtk_tree_view_column_set_max_width): ditto
12176         (gtk_tree_view_column_set_title): ditto
12177         (gtk_tree_view_column_set_clickable): ditto
12178         (gtk_tree_view_column_set_widget): ditto
12179         (gtk_tree_view_column_set_justification): ditto
12180
12181 2001-01-09  Havoc Pennington  <hp@redhat.com>
12182
12183         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): handle case where
12184         there are no rows in the model
12185
12186         * gtk/gtkliststore.c (gtk_list_store_iter_children): if parent is
12187         NULL, then return the start of the list
12188
12189         * gtk/gtktreeview.c (gtk_tree_view_setup_model): don't build tree
12190         if we can't get any rows from an empty model 
12191
12192         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): remove
12193         extraneous * after function pointer typedef usage
12194
12195         * Makefile.am: don't specify full path to cp and rm
12196
12197         * gtk/gtkcellrenderertextpixbuf.c
12198         (gtk_cell_renderer_text_pixbuf_get_size): check width/height !=
12199         NULL before dereferencing, fixes a segfault that happened from
12200         time to time
12201
12202         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
12203         use gdk_pixbuf_render_to_drawable_alpha() to get alpha channel,
12204         and reindent the function
12205         (gtk_cell_renderer_pixbuf_get_size): indentation
12206
12207         * gtk/gtkdialog.c (gtk_dialog_run): destroy main loop only after
12208         we quit it
12209         (gtk_dialog_add_buttons_valist): add g_return_if_fail
12210         (gtk_dialog_set_default_response): New function, to set default
12211         button
12212         (gtk_dialog_set_response_sensitive): New function, to set 
12213         sensitivity of buttons
12214
12215         * gtk/gtkcellrendererpixbuf.c
12216         (gtk_cell_renderer_pixbuf_get_property): allow getting a NULL pixbuf
12217         (gtk_cell_renderer_pixbuf_set_property): allow setting a NULL pixbuf
12218
12219         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
12220         handle any G_TYPE_OBJECT subclass, not just the base class, and 
12221         also boxed types.
12222         (_gtk_tree_data_list_value_to_node): ditto
12223
12224         * gtk/gtkrbtree.c: Run _gtk_rbtree_test at strategic points if 
12225         --gtk-debug=tree
12226
12227         * gtk/gtkmain.c: add GTK_DEBUG_TREE
12228
12229         * gtk/gtkdebug.h: add GTK_DEBUG_TREE
12230
12231 2001-01-09  Tor Lillqvist  <tml@iki.fi>
12232
12233         * gdk/win32/gdkevents-win32.c: Implement better mouse
12234         capturing. Do use SetCapture(). Thanks to jpe@archaeopteryx.com.
12235         (find_window_for_pointer_event): New function.
12236         (gdk_event_translate): Use it when handling mouse events.
12237
12238 2001-01-09  Alexander Larsson  <alla@lysator.liu.se>
12239
12240         * configure.in:
12241         Added --with-included-loaders option
12242
12243         * gdk-pixbuf/Makefile.am:
12244         * gdk-pixbuf/gdk-pixbuf-io.c:
12245         Add support for including selected gdk-pixbuf loaders only.
12246
12247         * gtk/gtkwindow.c (gtk_window_set_frame_dimensions,
12248         gtk_window_set_has_frame):
12249         Added inline documentation.
12250
12251         * gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
12252         * docs/reference/gdk/tmpl/windows.sgml:
12253         Added inline documentation.
12254
12255 Mon Jan  8 14:42:06 2001  Jonathan Blandford  <jrb@redhat.com>
12256
12257         * gtk/gtktreeview.c (gtk_tree_view_realize_buttons): Skip
12258         realizing buttons that have already been realized.
12259
12260 Mon Jan  8 14:06:29 2001  Jonathan Blandford  <jrb@redhat.com>
12261
12262         * tests/testtreeview.c (main): Show menu items before adding to
12263         option menu.
12264
12265         * gtk/gtktreeview.c (gtk_tree_view_set_model): Keep the columns
12266         around if we kill them.
12267
12268         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
12269         Return if we pass in a NULL model.
12270
12271 2001-01-08  Havoc Pennington  <hp@redhat.com>
12272
12273         * tests/testtreeview.c: hack on this some
12274
12275         * gtk/gtktreestore.c (gtk_tree_store_setv): rename
12276         gtk_tree_store_set_valist, v is for arrays, valist for varargs
12277         list
12278         (gtk_tree_store_getv): rename gtk_tree_store_get_valist
12279
12280         * gtk/gtkliststore.h: Add varargs set() and get() convenience
12281         functions
12282
12283 2001-01-08  Alexander Larsson  <alexl@redhat.com>
12284
12285         * gtk/gtkwindow-decorate.[hc]:
12286         * gtk/Makefile.am:
12287         New files. Contains an implementation of a minimal WM for
12288         linux-fb.
12289
12290         * gtk/gtkwindow.h:
12291         Add the possibility for GtkWindows to specify a frame. This
12292         is used for the window decoration code, but could concievably
12293         be used for X programs too (xmms style windows).
12294         GtkWindow->frame is the toplevel window if the window is framed.
12295         The signal frame_event gets all events that are targeted to
12296         GtkWindow->frame.
12297         (_gtk_window_constrain_size): Exported for usage by gtkwindow-decorate.c.
12298         
12299         * gtk/gtkwindow.c:
12300         Implement gtk_window_set_has_frame and gtk_window_set_frame_dimensions.
12301         Call out to gtkwindow-decorate.c for WM support in linx-fb.
12302
12303 2001-01-08  Alexander Larsson  <alexl@redhat.com>
12304
12305         * docs/README.linux-fb:
12306         Correct filename ~/.pangoft2_aliases
12307
12308         * gdk/gdkwindow.h:
12309         Added new function gdk_window_get_decorations.
12310
12311         * gdk/linux-fb/gdkfb.h:
12312         Removed _gdk_window_get_decorations declaration.
12313         Renamed _gdk_window_set_child_handler to
12314         gdk_fb_window_set_child_handler.
12315
12316         * gdk/linux-fb/gdkwindow-fb.c:
12317         Renamed _gdk_window_set_child_handler to
12318         gdk_fb_window_set_child_handler.
12319
12320         * gdk/x11/gdkwindow-x11.c:
12321         New function gdk_window_get_mwm_hints().
12322         Implemented gdk_window_get_decorations.
12323
12324         * docs/reference/gdk/tmpl/windows.sgml:
12325         * docs/reference/gdk/gdk-sections.txt:
12326         Added gdk_window_get_decorations docs.
12327         
12328 2001-01-08  Alexander Larsson  <alla@lysator.liu.se>
12329
12330         * gdk/linux-fb/gdkwindow-fb.c (_gdk_fb_window_find_focus,
12331         gdk_fb_window_find_focus, gdk_fb_send_focus_change,
12332         gdk_fb_window_send_crossing_events):
12333         Possibly send focus events when the mouse moves from one
12334         window to another.
12335
12336 2001-01-07  Tor Lillqvist  <tml@iki.fi>
12337
12338         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title,
12339         gdk_window_new): Adapt calls to g_{locale,filename}_{to,from}_utf8
12340         to match current API.
12341
12342         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): If a secret
12343         environment variable is set, don't call g_error when on a
12344         palettized (PseudoColor) display. Some people want to use GTK+ 
12345         in 256-colour mode even though works only partially.
12346
12347         * gdk/gdk.def
12348         * gtk/gtk.def
12349         * gtk/makefile.mingw.in: Update.
12350
12351 2001-01-05  Havoc Pennington  <hp@redhat.com>
12352
12353         * tests/testtreeview.c: hack on this a bit
12354
12355         * gtk/gtktextlayout.c (gtk_text_layout_class_init):
12356         s/GTK_RUN_LAST/G_SIGNAL_RUN_LAST
12357
12358         * gtk/gtktreemodelsimple.h (GTK_IS_TREE_MODEL_SIMPLE_CLASS): 
12359         was spelled incorrectly
12360         (GTK_IS_TREE_MODEL_SIMPLE): ditto
12361
12362         * gtk/gtktreeview.c (gtk_tree_view_set_headers_clickable): rename
12363         from gtk_tree_view_set_headers_active   
12364
12365         * gtk/gtktexttag.c:
12366         (gtk_text_tag_get_property): handle PROP_DIRECTION
12367         (gtk_text_tag_set_property): g_object_notify when we toggle the _set
12368         properties, bug 40235
12369
12370         * gtk/gtktextiter.c (gtk_text_iter_forward_to_delimiters): rename
12371         forward_to_line_end
12372
12373 Fri Jan  5 16:16:29 2001  Owen Taylor  <otaylor@redhat.com>
12374
12375         * gtk/{gtkcalender.c,gtkfilesel.c,gtkimcontext.c},
12376         modules/input/gtkimcontextxim.c: Adapt to new prototypes
12377         for unicode,locale,filename conversion functions.
12378
12379 2001-01-05  Havoc Pennington  <hp@redhat.com>
12380
12381         * gtk/gtktextiter.c (gtk_text_iter_ends_line): this function was
12382         broken if called on the first position in the buffer.
12383
12384         * gtk/gtktextlayout.c (line_display_index_to_iter): fix
12385         forward_to_delimiters to be called only if we aren't already at
12386         the delimiters.
12387
12388 2001-01-05  Havoc Pennington  <hp@redhat.com>
12389
12390         * demos/gtk-demo/main.c (create_tree): Oops, that didn't link. Fix.
12391
12392 2001-01-05  Alexander Larsson  <alexl@redhat.com>
12393
12394         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_drawable_finalize): free
12395         colormap in here. Sync from X port.
12396         (gdk_fb_set_colormap): allow the colormap to be NULL if you like.
12397         Sync from X port.
12398         (gdk_fb_clip_region): Comment out g_warning about empty clip region.
12399         This happens now and then, and i don't think it is a bug.
12400         (gdk_fb_draw_polygon): Correctly add extra point if startpoint
12401         != endpoint.
12402         (gdk_fb_draw_lines): Don't draw dashed lines if line_style is
12403         GDK_LINE_SOLID.
12404
12405         * gdk/linux-fb/gdkfont-fb.c: Return bogus GdkFont that has
12406         some of the fields filled in at least.
12407
12408         * gdk/linux-fb/miwideline.c: The widths argument to miLineArcI, and
12409         miLineArcD is no more, remove it from the function definition.
12410
12411 2001-01-04  Havoc Pennington  <hp@redhat.com>
12412
12413         * gtk/gtktreeselection.c (gtk_tree_selection_get_tree_view): add
12414         this
12415
12416         * gtk/gtktreemodel.h (struct _GtkTreeIter): rename fields to
12417         user_data instead of tree_node
12418
12419         * gtk/gtktreeprivate.h (TREE_VIEW_COLUMN_WIDTH): rename from
12420         TREE_VIEW_COLUMN_SIZE
12421
12422         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): rename
12423         "size" field to "width" finishes bug 40061
12424
12425         * gtk/gtkcellrenderer.h: Use GtkCellRendererState instead of guint
12426         for bitfields, bug 40268
12427
12428 2001-01-04  Havoc Pennington  <hp@redhat.com>
12429
12430         Rename some stuff:
12431         
12432         s/gtk_tree_view_column_set_size/gtk_tree_view_column_set_width/g;
12433
12434         s/GtkModelSimple/GtkTreeModelSimple/g;
12435         s/GTK_MODEL_SIMPLE/GTK_TREE_MODEL_SIMPLE/g;
12436         s/gtk_model_simple/gtk_tree_model_simple/g;
12437         s/gtkmodelsimple/gtktreemodelsimple/g;
12438
12439         s/gtk_tree_view_column_set_header_active/gtk_tree_view_column_set_header_clickable/g;
12440
12441         s/GtkTreeViewColumnType/GtkTreeViewColumnSizing/g;
12442         s/column_set_col_type/column_set_sizing/g;
12443
12444         s/GtkTreeSelectionType/GtkTreeSelectionMode/g;
12445         s/gtk_tree_selection_set_type/gtk_tree_selection_set_mode/g;
12446
12447         s/GtkCellRendererType/GtkCellRendererState/g;
12448         
12449         * gtk/gtkcellrenderertoggle.c: remove _ macro, include gtkintl.h
12450         (gtk_cell_renderer_toggle_class_init): change "state" property to
12451         "active", to match GtkToggleButton
12452         (gtk_cell_renderer_toggle_get_active): new function, bug
12453         40269
12454         (gtk_cell_renderer_toggle_set_active): new function
12455         (gtk_cell_renderer_toggle_set_property): route changes to toggle
12456         state through gtk_cell_renderer_set_active
12457
12458 Thu Jan  4 15:46:18 2001  Jonathan Blandford  <jrb@redhat.com>
12459
12460         * gtk/gtkmodelsimple.c: Changed a bunch of boxed types to pointers
12461         temporarily until they work again.  Brought up to date with
12462         changes in the model.
12463         * gtk/gtkmodelsimple.h: Brought up to date with changes in the
12464         model.
12465
12466 2001-01-04  Havoc Pennington  <hp@redhat.com>
12467
12468         * gtk/gtktextlayout.c (line_display_index_to_iter): if index is
12469         equal to the line length, then position iterator before paragraph 
12470         separators. Fixes crash reported by Mikael Hermansson when
12471         pressing left arrow from the start of a line.   
12472
12473         * gtk/gtktextiter.c (iter_set_from_byte_offset): Add g_error
12474         about byte indexes off the end
12475         (iter_set_from_char_offset): add g_error about char offsets
12476         off the end
12477
12478 2001-01-03  Havoc Pennington  <hp@redhat.com>
12479
12480         * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
12481
12482         * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use 
12483         of private functions; remove inclusion of private headers.
12484
12485         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this 
12486         function, so we don't need private functions in gtktextdisplay.c
12487
12488         * gtk/gtktextiterprivate.h: underscore-ification
12489
12490         * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
12491         to instead say "only useful to implement widgets"
12492
12493         * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
12494         GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
12495         GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
12496
12497         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
12498         This function was completely broken
12499
12500         * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
12501
12502         * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
12503
12504         * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
12505
12506         * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
12507
12508         * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
12509
12510         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
12511
12512         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
12513         gtk_paint_layout
12514
12515         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
12516         gtk_paint_layout
12517
12518         * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
12519         Progress on bug 40103. Add draw_layout to draw a PangoLayout.
12520         (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
12521         which were not implemented.     
12522
12523         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
12524         insert_pixbuf signal. Rename delete_text to delete_range since it
12525         also deletes pixbufs and child anchors. This almost closes bug
12526         40245 (still need to deal with child anchors)
12527
12528         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
12529         insert_pixbuf, change signal names as appropriate, change types of
12530         signals taking marks/tags to have the specific type, not just
12531         G_TYPE_OBJECT
12532         
12533         * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; 
12534         closes bug 40051
12535
12536         * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
12537         unnecessary remove_contents() call
12538         (gtk_option_menu_class_init): add a "changed" signal, closes
12539         bug 40039
12540         (gtk_option_menu_update_contents): emit "changed" if the 
12541         active menu item changes
12542
12543         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
12544         cast to GtkObject, reported by Jonas Borgstrom
12545         (gdk_pixbuf_loader_finalize): don't close the loader on finalize;
12546         we can't do stuff with side effects in finalize. Instead, spew a
12547         warning if the loader isn't closed.
12548
12549         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
12550         colormap in here, non-X ports probably need to sync to this change
12551
12552         * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove 
12553         assertion that colormap != NULL, you can set the colormap to NULL
12554         if you like.
12555         
12556         * Makefile.am: remove gtk-config-2.0
12557
12558         * configure.in: Use pkg-config to locate GLib. Remove
12559         separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
12560         and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
12561         Use pkg-config to locate Pango. Output correct Pango libs to
12562         gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
12563
12564         * Makefile.am (pkgconfig_DATA): install only target-specific pc
12565         files
12566         (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
12567         X11 pc files
12568
12569         * gtk+-2.0.pc.in (Requires): require the GDK for the current target
12570         unref from here
12571
12572 2001-01-03  Alexander Larsson  <alla@lysator.liu.se>
12573
12574         * configure.in:
12575         Change GTK_NO_CHECK_CASTS to G_DISABLE_CAST_CHECKS.
12576
12577 Tue Jan  2 16:23:05 2001  Owen Taylor  <otaylor@redhat.com>
12578
12579         * gtk/gtktextlayout.c
12580         (gtk_text_layout_move_iter_to_previous_line): Fix unitialized
12581         variable when moving back onto a single line.
12582
12583 2001-01-01  Havoc Pennington  <hp@redhat.com>
12584
12585         * gtk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
12586
12587         * gdk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
12588
12589         * configure.in (LIBTOOL_EXPORT_OPTIONS): define
12590         LIBTOOL_EXPORT_OPTIONS with options to control symbol export
12591
12592 2001-01-01  Havoc Pennington  <hp@redhat.com>
12593
12594         * gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
12595
12596         * gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for 
12597         GtkTextAttributes
12598
12599         * gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug 
12600         #40246
12601         (gtk_text_attributes_copy_values): rename from 
12602         gtk_text_attributes_copy
12603         (gtk_text_attributes_copy): a more standard GTK copy function, 
12604         which returns a new object
12605
12606 2001-01-01  Havoc Pennington  <hp@redhat.com>
12607
12608         * gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
12609         
12610         * gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
12611         don't fill in tree_view->priv->selection, kind of an unexpected
12612         side effect
12613
12614         * gtk/gtkcellrenderertext.c: Remove definition of _ and include
12615         gtkintl.h
12616         
12617         * gtk/gtkcellrenderer.c: Remove definition of _ and include
12618         gtkintl.h
12619         (gtk_cell_renderer_get_property): remove calls to g_value_init
12620
12621         * gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
12622         gtkintl.h
12623
12624         * gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
12625         and include gtkintl.h
12626         (gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
12627         property names
12628
12629         * gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
12630         GtkTreeSelection
12631         (_gtk_tree_selection_new_from_with_view): rename, return
12632         GtkTreeSelection
12633         (_gtk_tree_selection_set_tree_view): rename with uscore
12634         (gtk_tree_selection_get_selected): fill in the "model" out param
12635         first, so it gets filled in even if we return at the top of the 
12636         function
12637         (gtk_tree_selection_real_select_all): add a comment and an else{}
12638         to clarify this a bit
12639         (gtk_tree_selection_real_unselect_all): add the same else{}
12640
12641         * gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
12642         set_tree_view to have underscore prefixes, move them to the
12643         private header, fix return type of new_with_tree_view
12644         (struct _GtkTreeSelection): mark struct
12645         fields private  
12646
12647         * gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
12648         GtkTreeModelFlags, not a guint
12649         (gtk_tree_path_prev): return gboolean not gint
12650         (gtk_tree_path_up): return gboolean not gint
12651
12652         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
12653         return GtkTreeModelFlags, not a guint
12654
12655         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
12656         that child model is non-null before unrefing it
12657         (g_value_int_compare_func): make this a qsort compare func, not 
12658         a boolean predicate
12659
12660         * gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
12661         (add -umn to the end), and mark it unimplemented
12662         (gtk_tree_model_sort_resort): remove, this wasn't implemented, and 
12663         I don't see what it's for - doesn't the model always sort itself?
12664         (gtk_tree_model_sort_set_compare): this had the wrong signature
12665
12666         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
12667         Fix the docs to say that it destructively replaces existing
12668         attributes (previously said that it added attributes).
12669         (gtk_tree_view_column_set_visible): canonicalize bool before
12670         equality testing. Also, check for realization before
12671         hiding/showing the tree_column->window; if this window could exist
12672         before realization, then it's busted and needs fixing, we can't 
12673         create GDK resources pre-realization. Also, remove
12674         superfluous queue_resize(), since set_size() does that for us.
12675         (gtk_tree_view_column_set_col_type): check realization before 
12676         using tree_column->window
12677
12678         * gtk/gtktreedatalist.c: fix filename in copyright notice
12679
12680 2000-12-31  Havoc Pennington  <hp@pobox.com>
12681
12682         * gtk/gtktextview.c: Rearrange all the
12683         scroll-while-dragging-or-selecting code to be different, not
12684         necessarily better. ;-)
12685         (gtk_text_view_scroll_to_mark): Change this
12686         function to take within_margin as a fraction instead of a pixel
12687         value, and to take alignment arguments (indicating where to align 
12688         the mark inside the visible area)
12689         
12690         * gtk/testtextbuffer.c (fill_buffer): fix bad cast of GtkTextTag
12691         to GtkObject
12692
12693         * gtk/gtktextiter.c (gtk_text_iter_set_line_offset): change
12694         behavior so that offsets past the end of the line are not 
12695         allowed, and an offset equal to the line length moves the iterator
12696         to the next line
12697         (gtk_text_iter_set_line_index): make parallel change
12698         (gtk_text_iter_get_bytes_in_line): add this function
12699         
12700         * gtk/gtktextbtree.c (_gtk_text_line_byte_locate): change handling
12701         of byte indexes off the end of the line; byte index at the end of
12702         the line now returns FALSE and doesn't fill in the requested
12703         values, byte index past the end of the line is an error.  Also,
12704         don't allow -1 offset anymore, since its meaning is unclear.
12705
12706         This change exposes some bug in visual cursor motion, where we
12707         end up with a huge invalid byte index; needs fixing. Symptom of 
12708         bug is a crash when you hit up arrow.
12709         
12710         (_gtk_text_line_char_locate): match the change to byte_locate
12711
12712         * gtk/gtktextiter.c (find_by_log_attrs): Handle iteration backward
12713         from start of line properly. fixes bug reported by Mikael
12714         Hermansson where backspace would delete all text before the
12715         cursor.
12716
12717 2000-12-30  Tor Lillqvist  <tml@iki.fi>
12718
12719         * gdk/win32/gdkwindow-win32.c
12720         (gdk_window_impl_win32_get_visible_region): New function, as in
12721         the X11 backend.
12722         (gdk_window_new, gdk_window_set_title): Use g_locale_from_utf8()
12723         instead of duplicating the same code here.
12724
12725         * gdk/win32/gdkwin32.h (GDK_COLORMAP_PRIVATE_DATA): Use
12726         GDK_COLORMAP macro.
12727
12728         * gdk/win32/gdkevents-win32.c (gdk_event_funcs): Use NULL as
12729         destroy function.
12730         (gdk_event_translate): Use GDK_COLORMAP_PRIVATE_DATA to correctly
12731         access that.
12732
12733         * gtk/gtk.def: Update.
12734
12735         * gtk/makefile.mingw.in: Use glib-genmarshal from $(GLIB)/gobject.
12736
12737 2000-12-30  Havoc Pennington  <hp@pobox.com>
12738
12739         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set the system
12740         colormap on input only windows, to avoid special cases all over
12741         the code for these windows.
12742
12743 2000-12-26  Tor Lillqvist  <tml@iki.fi>
12744
12745         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): Call g_error if
12746         we are on a palettized display ("PseudoColor" in X11), as the code
12747         for that doesn't work anyway, and never has.
12748
12749 2000-12-22  Alexander Larsson  <alexl@redhat.com>
12750
12751         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
12752         Don't use isprint() for chars > 255.
12753
12754 2000-12-21  Havoc Pennington  <hp@redhat.com>
12755
12756         * tests/testtreeview.c: more work
12757
12758 2000-12-21  Alexander Larsson  <alexl@redhat.com>
12759
12760         * docs/README.linux-fb:
12761         Update the docs to the new pangoft2 way.
12762
12763 2000-12-21  Alexander Larsson  <alexl@redhat.com>
12764
12765         * configure.in:
12766         For linux-fb get the pangoft2 cflags and libs. This needs a recent
12767         pango version.
12768         Remove modules/linux-fb/Makefile.
12769
12770         * gdk/linux-fb/gdkdrawable-fb2.c:
12771         Render glyphs using freetype.
12772
12773         * gdk/linux-fb/gdkfb.h:
12774         Add new fb-specific functions needed for managing windows.
12775
12776         * gdk/linux-fb/gdkmain-fb.c:
12777         Remove gdk_font_init/fini() calls.
12778
12779         * gdk/linux-fb/gdkpango-fb.c:
12780         Remove old implementation. Use pangoft2 instead.
12781
12782         * gdk/linux-fb/gdkprivate-fb.h:
12783         Remove PangoFBFont and related stuff.
12784
12785         * gdk/linux-fb/gdkwindow-fb.c:
12786         Implement drawable->get_visible_region.
12787         Implement support for _gdk_window_set_child_handler () and
12788         _gdk_window_get_decorations().
12789
12790         * modules/Makefile.am:
12791         Remove linux-fb subdir.
12792
12793         * modules/linux-fb/*:
12794         Removed all.
12795         
12796 2000-12-20  Jonathan Blandford  <jrb@redhat.com>
12797
12798         * gtk/gtkcellrenderer*.c (::get_property): remove g_value_init
12799         calls, as they are no longer needed.
12800
12801         * gtk/gtktreemodelsort.c: Fix up the comparison code.
12802         
12803         * gtk/gtktreemodel.h: Start work on ::reordered signal.  Need to
12804         figure out how to emit a signal on an interface.
12805
12806 2000-12-20  Havoc Pennington  <hp@redhat.com>
12807
12808         * tests: new directory to contain tests, gtk/test* should move
12809         here sometime (with appropriate on-cvs-server hackery)
12810
12811         * tests/testtreeview.c, tests/Makefile.am: a test
12812         
12813         * configure.in (AC_OUTPUT): add tests/Makefile
12814
12815         * gtk/gtktexttag.c (gtk_text_tag_get_property): Add "invisible"
12816         and "invisible_set" which were missing
12817
12818         * gtk/gtkrbtree.h: some cheesy indentation fix
12819         
12820 2000-12-20  Alexander Larsson  <alexl@redhat.com>
12821
12822         * gtk/gtkinvisible.c (gtk_invisible_realize):
12823         Attach the style to the window so that the style it is not
12824         leaked when unrealizing the window.
12825
12826 2000-12-18  Havoc Pennington  <hp@redhat.com>
12827
12828         * gtk/gtktextview.c (gtk_text_view_delete_from_cursor): do
12829         begin/end user action where appropriate
12830         (gtk_text_view_commit_handler): add begin/end user action
12831
12832         * gtk/gtktextbuffer.c: add begin/end user action signals, and
12833         bracket interactive operations with begin/end user action pair.
12834         
12835         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): remove
12836         "interactive" arg from insert_text and delete_text signals.
12837         Add begin_user_action, end_user_action signals
12838         (gtk_text_buffer_begin_user_action): 
12839         (gtk_text_buffer_end_user_action): New functions to delimit 
12840         a user-visible action
12841
12842         * gtk/gtkmarshal.list: update to reflect changes to gtktextbuffer
12843         signals.
12844         
12845 2000-12-18  Havoc Pennington  <hp@redhat.com>
12846
12847         * gdk/gdkevents.c (gdk_event_get_state): wow, that implementation
12848         was pretty non-working.
12849
12850         * gtk/testtext.c (fill_file_buffer): make this a bit more robust
12851         by passing the length to g_utf8_validate().
12852
12853 2000-12-16  Havoc Pennington  <hp@pobox.com>
12854
12855         * gtk/gdk-pixbuf-loader.h, gtk/gdk-pixbuf-loader.c: 
12856         Port to GObject, can go back in gdk-pixbuf after setting up 
12857         a gdk-pixbuf-marshal.h header over there.
12858
12859         * gtk/gtktreeview.c: s/SEPERATOR/SEPARATOR/g;
12860         (gtk_tree_view_class_init): specify GTK_TYPE_ADJUSTMENT for signal
12861         args
12862         (gtk_tree_view_init): don't unset GTK_NO_WINDOW, it shouldn't be
12863         set
12864         (gtk_tree_view_realize_buttons): don't gtk_widget_show() buttons
12865         here, do it when we create the buttons later
12866         (gtk_tree_view_realize_buttons): add some g_return_if_fail 
12867         (gtk_tree_view_map): paranoia checks that column->button is shown 
12868         and unmapped
12869         (gtk_tree_view_size_request): only request visible children.
12870         Move header size calculation in here, for cleanliness, and 
12871         to maintain invariants for child widgets if we eventually 
12872         let users set different children inside the buttons
12873         (gtk_tree_view_map_buttons): factor out code to map buttons,
12874         since it was being called several times
12875         (gtk_tree_view_size_allocate_buttons): move_resize the drag
12876         windows instead of just moving them; their height may change 
12877         if we allow random widgets in there, or the theme changes.
12878         (gtk_tree_view_size_allocate): move button size allocation 
12879         above emitting the scroll signals, to ensure a sane state when we
12880         hit user code
12881         (gtk_tree_view_button_release): remove queue_resize after
12882         tree_view_set_size(), set_size() will handle any resize queuing
12883         that's needed
12884         (gtk_tree_view_focus_in): just queue a draw, don't fool with
12885         draw_focus goo
12886         (gtk_tree_view_focus): use gtk_get_current_event() and
12887         gdk_event_get_state()
12888         (gtk_tree_view_deleted): don't queue_resize() after calling set_size()
12889         (gtk_tree_view_build_tree): fix a "if (foo); {}" bug - i.e. remove
12890         semicolon
12891         (gtk_tree_view_create_button): show the button here
12892         (gtk_tree_view_button_clicked): actually emit the clicked signal
12893         on the column
12894         (_gtk_tree_view_set_size): return right away if the size is
12895         unchanged, as a cheesy optimization
12896         (gtk_tree_view_setup_model): rename set_model_realized to 
12897         setup_model to match the flag that indicates whether we've 
12898         called it
12899         (gtk_tree_view_get_hadjustment): create adjustment if it doesn't
12900         exist, because set_scroll_adjustment does that and it shouldn't
12901         matter what order you call these in
12902         (gtk_tree_view_get_vadjustment): ditto
12903         (gtk_tree_view_set_headers_visible): canonicalize the bool, 
12904         for paranoia
12905         (gtk_tree_view_set_headers_visible): call
12906         gtk_tree_view_map_buttons() instead of using cut-and-paste code
12907         (gtk_tree_view_append_column): clarify whether the return value
12908         is the count of columns before or after, and do the increment 
12909         separately from the return statement so you can tell from the code.
12910         (gtk_tree_view_remove_column): ditto
12911         (gtk_tree_view_insert_column): ditto
12912         (gtk_tree_view_get_column): remove g_return_if_fail for columns
12913         outside the existing range, the docs say that outside-range
12914         columns are allowed, so we handle them as documented. (Presumably
12915         this allows a nice loop with column != NULL as test.)
12916         (gtk_tree_view_move_to): document what 0.0, 0.5, 1.0 alignments 
12917         mean (left/right/center etc.).
12918         (gtk_tree_view_collapse_all): only queue a draw if we're mapped
12919         (gtk_tree_view_expand_row): add docs
12920         (gtk_tree_view_collapse_row): add docs
12921
12922         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clicked): new
12923         function to emit the clicked signal on a column
12924         
12925         * gdk/gdkevents.c (gdk_event_get_state): new function, to get the
12926         state of an event
12927         (gdk_event_get_time): don't treat GDK_SCROLL 
12928         as a button event, remove default case from switch so gcc 
12929         will whine if we don't explicitly handle all event types
12930
12931         * gtk/gtktreeselection.h: added some FIXME 
12932         
12933         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): rename
12934         "columns" to "n_columns" and "column" to "columns" for clarity
12935
12936 2000-12-16  Havoc Pennington  <hp@pobox.com>
12937         
12938         * gtk/gtktextiter.c: General cleanup of the log attr iteration
12939         stuff. This should make e.g. the delete key work again in the
12940         text widget...
12941         (gtk_text_iter_forward_cursor_positions): handle negative count
12942         (gtk_text_iter_backward_cursor_positions): handle negative count
12943         (gtk_text_iter_forward_word_ends): handle negative count
12944         (gtk_text_iter_backward_word_starts): handle negative count
12945
12946         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h,
12947         gtk/gtktexttag.c, gtk/gtktexttagtable.h, gtk/gtktexttagtable.c, 
12948         gtk/gtktextbuffer.h, gtk/gtktextbuffer.c: Convert everything to 
12949         GObject. No doubt will cause breakage.
12950
12951         * demos/gtk-demo/textview.c: remove hacks around
12952         non-GObject-ification of the text objects
12953
12954         * demos/gtk-demo/main.c (main): use g_object_set() to manipulate 
12955         the text tag
12956         
12957 2000-12-14  Havoc Pennington  <hp@pobox.com>
12958
12959         * configure.in: only AC_DEFINE(HAVE_XFT) if we actually determined
12960         that we have Xrender
12961
12962 Thu Dec 14 20:22:31 2000  Owen Taylor  <otaylor@redhat.com>
12963
12964         * gdk/{gdkdrawable.[ch],gdkpixmap.c,gdkwindow.c,x11/gdkwindow.c}:
12965         Add two virtualized functions gdk_drawable_get_clip_region - to
12966         get the clip region when drawing.
12967         
12968         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Rewrite to simple
12969         use invalidate_region.
12970
12971         * gdk/gdkwindow.c (gdk_window_invalidate_region): Clip to visible
12972         region.
12973
12974         * acconfig.h configure.in: Check for Xft. For now, assume
12975         that if Xft is found, Pango was compiled with Xft support
12976         as well.
12977
12978         * gdk/gdkcolor.h gdk/x11/gdkcolor-x11.c: Add 
12979         gdk_colormap_query_color().
12980         
12981         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_glyphs): Draw
12982         with Xft if appropriate.
12983
12984         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Create
12985         a pangoxft context if we have XFT and the environment
12986         variable GD_USE_XFT is set.
12987         
12988         * gdk/x11/gdkx.h (struct _GdkGCX11): Cache the fg_pixel
12989         and also possibly an XftDraw structure.
12990
12991         * gtk/gtkfontsel.c: Handle the case where the font from the
12992         style doesn't match any of the fonts a bit better.
12993         
12994         * gtk/testgtk.c: Add tabs between directional segments for
12995         hebrew/arabic test. (Not really necessary, just a little
12996         prettier.)
12997
12998 2000-12-14  Havoc Pennington  <hp@redhat.com>
12999
13000         * gtk/testtext.c (fill_file_buffer): fix unicode validation when
13001         reading a file
13002
13003 2000-12-14  Havoc Pennington  <hp@redhat.com>
13004
13005         * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove
13006         unused call to get_last_line()
13007
13008         * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER
13009         here until boxed is working (and maybe after that - we should
13010         really not gratuitously break old code)
13011
13012         * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out
13013         specific types for font_desc and tabs args, move them to
13014         GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get 
13015         fixed. Move GdkColor args to GTK_TYPE_POINTER also.
13016
13017         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily
13018         use GTK_TYPE_POINTER for signal signatures as a hack-around
13019
13020         * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and
13021         PangoTabArray
13022
13023         * gtk/gtktextlayout.c (line_display_iter_to_index): 
13024         make static
13025         (line_display_index_to_iter): make static
13026
13027         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
13028         to marshal a string not a boxed
13029
13030         * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text
13031
13032         * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char
13033         since the UTF-8 isn't validated yet
13034
13035         * gtk/gtktextsegment.c (char_segment_check_func): don't require
13036         lines to end in '\n'
13037         
13038         * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use
13039         forward_to_delimiters, and grapheme boundaries
13040         (gtk_text_view_delete_from_cursor): properly handle non-newline
13041         delimiters, and grapheme boundaries
13042
13043         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename
13044         to gtk_text_iter_forward_to_delimiters, and make it work properly
13045         if empty lines end with a character other than '\n'
13046
13047         * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor
13048         position
13049
13050 2000-12-15  Tor Lillqvist  <tml@iki.fi>
13051
13052         * gdk/makefile.{mingw.in,msc} (gdk_OBJECTS): Add gdkkeys.
13053
13054         * gtk/gtk.def
13055         * gdk/gdk.def: Update.
13056
13057         * gdk/win32/gdkmain-win32.c
13058         * gdk/win32/gdkkeys-win32.c: New file. Move some functions from
13059         gdkmain-win32.c here.
13060
13061         * gdk/win32/makefile.mingw.in (all): No need to make
13062         gdk-win32res.o here, the makefile one step up will call us to make
13063         it.
13064
13065         * gdk/win32/makefile.{mingw.in,msc} (gdk_win32_OBJECTS): Add
13066         gdkkeys-win32.
13067
13068         * gdk/win32/gdkcolor-win32.c: Silence gcc -Wall.
13069
13070         * gdk/win32/gdkevents-win32.c (gdk_events_init): Remove leftover
13071         call to g_source_add().
13072
13073         * gdk/win32/gdkgc-win32.c (BitmapToRegion): Plug memory
13074         leak. Thanks to Andreas Kemnade.
13075
13076 2000-12-13  Havoc Pennington  <hp@pobox.com>
13077
13078         * gtk/gtktextbtree.h: Remove double _ in front of some functions
13079
13080         * gtk/gtktext*.[hc]: update accordingly
13081         
13082 2000-12-13  Havoc Pennington  <hp@pobox.com>
13083
13084         * gtk/gtktextbtree.h: Put _ in front of every function in this 
13085         header file
13086
13087         * gtk/gtktext*.[hc]: update to reflect renamed btree functions
13088
13089 2000-12-13  Alex Larsson  <alexl@redhat.com>
13090
13091         * gdk/linux-fb/gdkmouse-fb.c (mouse_devs):
13092         Add support for ps2 intellimouse.
13093
13094         * gdkkeyboard-fb.c:
13095         Move shift-F1 repaint handling to xlate handler only.
13096         
13097         * docs/README.linux-fb:
13098         Add imps2 to docs.
13099         Document the new refresh keys.
13100         
13101 Tue Dec 12 23:46:44 2000  Tim Janik  <timj@gtk.org>
13102
13103         * gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
13104
13105         * gtk/gtkbox.c: change property types from (u)long to (u)int for
13106         ::position and ::padding.
13107
13108         * gtk/gtkcontainer.c: make ::border_width an INT property.
13109
13110         * gtk/gtkpacker.c: make ::position an INT property.
13111
13112         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
13113         guard against NULL h/v scrollbars, since this is used at construction
13114         time.
13115
13116         * gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
13117         internal gtk_clist_constructor().
13118
13119         * gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
13120         gtk_ctree_constructor().
13121
13122         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
13123         ::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
13124
13125         * docs/reference/Makefile.am: fun stuff, disabled docs generation
13126         again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
13127
13128         * gtk/gtkwidget.[hc]:
13129         removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
13130         and gtk_widget_get().
13131         (gtk_widget_new): use g_object_new_valist().
13132         (gtk_widget_set): use g_object_set_valist().
13133
13134         * gtk/gtkobject.[hc]:
13135         removed gtk_object_arg_get_info(), gtk_object_getv(),
13136         gtk_object_query_args(), gtk_object_newv(),
13137         gtk_object_class_add_signals(),
13138         gtk_object_class_user_signal_new(),
13139         gtk_object_class_user_signal_newv(),
13140         gtk_object_arg_set(), gtk_object_arg_get(),
13141         gtk_object_args_collect(),
13142         gtk_object_default_construct(),
13143         gtk_object_constructed(),
13144         GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
13145         removed nsignals, signals and n_args members from GtkObjectClass.
13146         (gtk_object_new): use g_object_new_valist().
13147         (gtk_object_set): use g_object_set_valist().
13148         (gtk_object_get): use g_object_get_valist().
13149         
13150         * gtk/gtkcompat.h: define gtk_object_default_construct().
13151         
13152         * gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
13153         g_object_new().
13154
13155         * gtk/*.c: removed gtk_object_class_add_signals() from class_init()
13156         fucntions, cleaned up method assignments (make sure your structures
13157         are setup properly before calling out). removed all GTK_CONSTRUCTED
13158         hacks ;)
13159
13160 Tue Dec 12 11:52:16 2000  Owen Taylor  <otaylor@redhat.com>
13161
13162         * gtk/gtkclist.c (gtk_clist_optimal_column_width): Fix 
13163         off-by-one error in checks. (Dave Lambert)
13164
13165 2000-12-12  Alexander Larsson  <alexl@redhat.com>
13166
13167         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_close, raw_close):
13168         Don't free gdk_fb_keyboard twice.
13169
13170 Tue Dec 12 08:24:42 2000  Tim Janik  <timj@gtk.org>
13171
13172         * gtk/testgtk.c:
13173         (create_tooltips): 
13174         (create_statusbar): get rid of object_signal:: GtkObject argument uses,
13175         use GObject swapped_signal:: properties instead.
13176
13177         * gtk/gtkcellrenderertoggle.c: 
13178         * gtk/gtkcellrenderertextpixbuf.c: 
13179         * gtk/gtkcellrenderertext.c: 
13180         * gtk/gtkcellrendererpixbuf.c: 
13181         * gtk/gtkcellrenderer.c:
13182         * gtk/gtktreeviewcolumn.c: s/[sg]et_param/[sg]et_property/, fixed
13183         missing warnings for invalid property ids, install properties
13184         with g_object_class_install_property() now.
13185         
13186         * gtk/gtksignal.c:
13187         (gtk_signal_emit): let g_signal_emit_valist() collect the values for us.
13188         
13189 Wed Oct 25 14:17:43 2000  Owen Taylor  <otaylor@redhat.com>
13190         
13191         * gtk/gtkwidget.[ch] (gtk_widget_is_focus): Add a function
13192         to determine if a window is the focus widget within
13193         its toplevel.
13194
13195         * gtk/gtkcontainer.[ch]: Fix the return type of ::focus
13196         to be boolean.
13197
13198         * gtk/gtkcontainer.c (gtk_container_real_focus): Move handling 
13199         of the case where the container CAN_FOCUS to here instead
13200         of having it in each individual move-the-focus place.
13201
13202         * gtk/gtkcontainer.c: Rewrite handling of left-right and up-down
13203         focusing to be geometric in a much more obvious sense. Arrowing
13204         around is still non-intuitive because it isn't perfect and
13205         because entries, etc, grab the arrow keys, but it at least
13206         usually will do what you expect now.
13207         
13208         * gtk/gtknotebook.[ch]: Many cleanups. Moved docs inline in this
13209         file.
13210
13211         * gtk/gtknotebook.c: Change tabs to be a single item in
13212         the focus chain. Make movement of focus on tabs with arrow
13213         keys wrap around.
13214         
13215         * gtk/gtknotebook.c (gtk_notebook_find_child): Add
13216         CHECK_FIND_CHILD macro to give informative error messages
13217         instead of silent returns.
13218
13219         * gtk/gtknotebook.c (gtk_notebook_init): Set the RECEIVES_DEFAULT 
13220         flag since we handle GdkReturn on the tabs.
13221
13222         * gtk/gtknotebook.c (gtk_notebook_expose_tabs): Invalidate
13223         windows rather than sending expose events directly.
13224
13225         * gtk/gtknotebook.[ch] docs/Changes-2.0.txt: Move structure 
13226         definition for GtkNotebookPage into .c file, since it is private.
13227
13228         * gtk/testgtk.c (create_notebook): Add option for 
13229         testing borderless notebook.
13230
13231         * gtk/testgtk.c (page_switch): Removed egregious poking
13232         around in GTK+ internals.
13233
13234         * docs/widget-system.txt: Remove references to GTK_REDRAW_PENDING.
13235
13236         * gtk/gtkclist.[ch]: Remove key press handler, handle focusing
13237         properly through gtk_clist_focus. Make the title headers a
13238         single item in the tab-focus chain, and make left-right wrap
13239         around.
13240
13241         * gtk/gtkwindow.c (gtk_window_focus): Add a custom
13242         focus method so that wrapping around works properly.
13243
13244         * gtk/gtktreeview.c: Remove calls to gtk_container_set_focus_child() - 
13245         that is handled for the widget now. 
13246
13247 Mon Dec 11 11:41:12 2000  Owen Taylor  <otaylor@redhat.com>
13248
13249         * gtk/gtkinvisible.c (gtk_invisible_init): Flag invisible
13250         widgets as TOPLEVEL.
13251
13252         * gtk/gtkwidget.c (gtk_widget_queue_resize): Don't assume
13253         TOPLEVEL widgets are containers.
13254
13255         * gtk/gtkinvisible.h: Remove useless include.
13256
13257 2000-12-11  Havoc Pennington  <hp@redhat.com>
13258
13259         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
13260         Handle chopping off \r\n and 0x2029 in addition to \n before
13261         passing to PangoLayout
13262
13263         * gtk/gtkimcontextsimple.c
13264         (gtk_im_context_simple_get_preedit_string): 
13265         return an empty string if no match is pending
13266
13267         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): add
13268         assertion that the returned preedit string was sane
13269
13270         * gtk/gtktext*.[hc], gtk/testtext.c, gtk/testtextbuffer.c:
13271         s/gtk_text_iter_next_char/gtk_text_iter_forward_char/g;
13272         s/gtk_text_iter_prev_char/gtk_text_iter_backward_char/g;
13273
13274 Mon Dec 11 10:02:26 2000  Owen Taylor  <otaylor@redhat.com>
13275
13276         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_finalize): 
13277         Fix up finalizer to chain to its parent.
13278
13279 2000-12-11  Alexander Larsson  <alexl@redhat.com>
13280
13281         * docs/README.linux-fb (GDK_KEYBOARD_TYPE):
13282         Clearified the difference between the keyboard types. Wrote a note
13283         about the magic sysrq key to get out of raw mode.
13284
13285 2000-12-09  James Henstridge  <james@daa.com.au>
13286
13287         * gdk/linux-fb/gdkmouse-fb.c (GdkFBMouseDevice): add prot struct
13288         member to hold masks for detecting the start of a protocol packet.
13289         (mouse_devs): add packet start masks for ps2 and ms device types.
13290         Left the mask for fidmour blank, as I have no idea what it should
13291         be.
13292         (handle_mouse_io): skip bytes until we get to the start of a
13293         packet.  My Logitech mouse seems to be passing an extra NULL pad
13294         byte, and GPM does a similar thing here.
13295         (gdk_fb_mouse_ms_open): changed error message to not say psaux, as
13296         this is the ms mouse driver.
13297         (gdk_fb_mouse_ms_packet): fix up button handling, which was
13298         completely broken except for button1.  It was checking the wrong
13299         bit in the packet for the status of the right mouse button, and
13300         wrongly assuming right == button2 rather than 3.  I fixed that and
13301         also added support for middle button (button2).
13302
13303 2000-12-08  Havoc Pennington  <hp@redhat.com>
13304
13305         * gtk/gtktextbtree.c (gtk_text_btree_insert): fix breakage here
13306         that cause a segfault on text insertion
13307
13308         * gtk/gtktextchild.c (gtk_text_child_anchor_queue_resize): fix 
13309         warning
13310
13311         * gtk/gtktextiter.c (test_log_attrs): use
13312         _gtk_text_buffer_get_line_log_attrs to speed things up a bit
13313
13314         * gtk/gtktextbuffer.c (_gtk_text_buffer_get_line_log_attrs): 
13315         Get log attrs for a line, using a cache stored on the buffer
13316         
13317         * gtk/gtkcolorsel.h (GTK_COLOR_SELECTION_GET_CLASS): fix typo,
13318         reported by Jeff Franks
13319
13320 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
13321
13322         * gdk/linux-fb/gdkmouse-fb.c (gdk_fb_mouse_ms_open):
13323         /dev/ttyS0 -> /dev/mouse
13324
13325 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
13326
13327         * gdk/linux-fb/gdkfont-fb.c (gdk_fontset_load):
13328         Added dummy gdk_fontset_load.
13329
13330 2000-12-08  Alexander Larsson  <alexl@redhat.com>
13331
13332         * docs/README.linux-fb:
13333         * docs/Makefile.am:
13334         Initial GtkFB docs.
13335         
13336         * gdk/linux-fb/Makefile.am:
13337         Define GDK_DATA_PREFIX.
13338
13339         * gdk/linux-fb/gdkmain-fb.c:
13340         Fix typo.
13341         Change default display to /dev/fb0.
13342
13343         * gdk/linux-fb/gdkpango-fb.c:
13344         Add $(prefix)/share/fonts/ to font path.
13345         
13346 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
13347
13348         * gdk/linux-fb/gdkkeyboard-fb.c:
13349         New file containing the abstracted keyboard driver. Most code
13350         taken from gdkinput-ps2.c
13351
13352         * gdk/linux-fb/gdkinput-ps2.c:
13353         Removed file.
13354         
13355         * gdk/linux-fb/Makefile.am:
13356         Added gdkkeyboard-fb.c, removed gdkinput-ps2.c.
13357
13358         * gdk/linux-fb/gdkcolor-fb.c:
13359         display->fb was renamed to display->fb_fd.
13360
13361         * gdk/linux-fb/gdkcursor-fb.c:
13362         gdk_mouse_get_info -> gdk_fb_mouse_get_info
13363
13364         * gdk/linux-fb/gdkinput.c:
13365         Moved gdk_input_init here from gdkinput-ps2.c
13366
13367         * gdk/linux-fb/gdkmain-fb.c:
13368         display->fb was renamed to display->fb_fd.
13369         Now the tty and the console is opened here instead
13370         of in the keyboard driver. Also check GDK_VT to see what
13371         tty to open.
13372         Move gdk_beep () here from gdkinput-ps2.c
13373         gdk_mouse_get_info -> gdk_fb_mouse_get_info
13374
13375         * gdk/linux-fb/gdkmouse-fb.c:
13376         Add header.
13377         gdk_mouse_get_info -> gdk_fb_mouse_get_info
13378         Return correct keyboard modifiers.
13379         GDK_MOUSETYPE -> GDK_MOUSE_TYPE for consistancy
13380
13381         * gdk/linux-fb/gdkprivate-fb.h:
13382         Add tty and vt info to display.
13383         Add orignal modeinfo storage to display
13384         Update global functions
13385
13386         * gdk/linux-fb/gdkwindow-fb.c:
13387         Added gdk_fb_window_find_focus().
13388         gdk_mouse_get_info -> gdk_fb_mouse_get_info
13389
13390 2000-12-07  Havoc Pennington  <hp@pobox.com>
13391
13392         * gdk/x11/gdkkeys-x11.c (gdk_keymap_lookup_key): fix name of 
13393         function, noticed by Alex
13394
13395 2000-12-06  Elliot Lee  <sopwith@redhat.com>
13396
13397         * configure.in: Detect freetype properly
13398
13399         * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of
13400         above.
13401
13402 2000-12-06  Alexander Larsson  <alexl@redhat.com>
13403
13404         * gdk/linux-fb/Makefile.am:
13405         Add gdkmouse-fb.c
13406         
13407         * gdk/linux-fb/gdkmouse-fb.c:
13408         New file. Abstracted the mouse drivers a bit.
13409
13410         * gdk/linux-fb/gdkcursor-fb.c:
13411         The cursor hide/show functions was moved here from gdkinput-ps2.c.
13412
13413         * gdk/linux-fb/gdkinput-ps2.c:
13414         Removed old mouse handling code. Moved cursor handling code
13415         to gdkcursor-fb.c, moved gdk_fb_window_send_crossing_events() to
13416         gdkwindow-fb.c. gdk_input_get_mouseinfo was renamed to
13417         gdk_mouse_get_info.
13418
13419         * gdk/linux-fb/gdkmain-fb.c:
13420         Pass NULL pointers for x,y in gdk_mouse_get_info call.
13421
13422         * gdk/linux-fb/gdkprivate-fb.h:
13423         Removed public gdk_fb_find_common_ancestor, added and renamed
13424         functions for the new mouse handling code.
13425
13426         * gdk/linux-fb/gdkwindow-fb.c:
13427         Moved gdk_fb_window_send_crossing_events here. added global
13428         variable gdk_fb_window_containing_pointer. made
13429         gdk_fb_find_common_ancestor static. gdk_input_get_mouseinfo was
13430         renamed to gdk_mouse_get_info.
13431
13432 2000-12-06  Alexander Larsson  <alexl@redhat.com>
13433
13434         * gdk/linux-fb/gdkevents-fb.c:
13435         Update to match latest gmain/gsource changes.
13436
13437         * gdk/linux-fb/gdkinput-ps2.c:
13438         Bogus gdk_keymap_get_entries_for_keycode implementation so that
13439         it links. Will be implemented later.
13440
13441 2000-12-03  Havoc Pennington  <hp@pobox.com>
13442
13443         * gdk/Makefile.am: add gdkkeys.[hc]
13444
13445         * gdk/gdkkeys.h, gdk/gdkkeys.c: Move all the keyval stuff to these
13446         files from gdk.h, gdk.c; add GdkKeymap type and operations on it.
13447
13448         * acconfig.h, configure.in: add checks and command line options
13449         for XKB
13450
13451         * gdk/x11/gdkkeys-x11.c: Implement the above functions
13452         
13453         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Put the keycode
13454         and group in the key event
13455
13456         * gdk/gdkevents.h (struct _GdkEventKey): Add a hardware_keycode
13457         field with the low-level hardware key code, and a group
13458         field with the keyboard group
13459
13460         * gdk/x11/gdkprivate-x11.h: include config.h for HAVE_XKB,
13461         and declare a couple globals used for keymap handling
13462         
13463         * gtk/gtkimcontextsimple.c: Implement ISO 14755 input method,
13464         hold down Shift-Control and type a hex number to get a Unicode 
13465         character corresponding to the hex number
13466         (gtk_im_context_simple_get_preedit_string): Fix cursor position
13467         (return bytes not chars)
13468
13469 2000-12-05  Elliot Lee  <sopwith@redhat.com>
13470
13471         * gdk/gdkcolor.h: Make GdkColor specify element sizes
13472         to avoid waste on 64-bit platforms.
13473
13474 Tue Dec  5 15:49:31 2000  Owen Taylor  <otaylor@redhat.com>
13475
13476         * INSTALL: Fix link to PNG home, remove reference
13477         to fribidi.
13478
13479         * gdk/x11/gdkevents-x11.c: Fix up for new GMain API.
13480         
13481         * gdk/win32/gdkevents-win32.c: Fix up for new GMain API. (Not
13482         tested.)
13483
13484         * gtk/gtkcheckmenuitem.c: Permanently turn on
13485         always_show_toggle.
13486
13487         * gtk/gtkclist.c (gtk_clist_get_pixtext): Allow mask to 
13488         be NULL. (Vladimir Klebanov, #26545)
13489
13490         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text): Fix 
13491         some signed/unsigned comparison problems. (#6510,
13492         David Kaelbling)
13493
13494         * gtk/gtkwidget.[ch] (gtk_widget_is_ancestor): Change
13495         return type to boolean (Oskar Liljeblad, #18648)
13496
13497 2000-12-05  Alexander Larsson  <alexl@redhat.com>
13498
13499         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_display_new):
13500         Remove bogus colormap setting.
13501
13502 2000-12-05  Alexander Larsson  <alexl@redhat.com>
13503
13504         * gdk/linux-fb/gdkcolor-fb.c:
13505         More complete colormap handling. Now GdkRGB work in 8 bpp modes.
13506
13507         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_image):
13508         Must set colormap.
13509         
13510 Tue Dec  5 13:17:53 GMT 2000  Tony Gale <gale@gtk.org>
13511
13512         * docs/tutorial/gtk-tut.sgml: DND updates
13513
13514 2000-12-05  Alexander Larsson  <alla@lysator.liu.se>
13515
13516         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
13517         Remove old debug g_warning().
13518         (gdk_fb_draw_drawable): The src argument can be either a wrapper
13519         or an implementation, just pass the implementation to draw_drawable_2.
13520         
13521         * gdk/linux-fb/gdkprivate-fb.h:
13522         Added GDK_IS_DRAWABLE_IMPL_FBDATA()
13523
13524         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
13525         clear and invalidate area when window is destroyed.
13526         (send_map_events): Remove old commented out code.
13527
13528 2000-12-05  Alexander Larsson  <alexl@redhat.com>
13529
13530         * gdk/linux-fb/gdkpango-fb.c:
13531         Use italic instead of oblique in font aliases.
13532         
13533         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic,
13534         _gdk_fb_gc_calc_state): Support GDK_XOR, add g_warning for
13535         other unsupported functions.
13536
13537 2000-12-04  Havoc Pennington  <hp@redhat.com>
13538
13539         * gtk/gtkpaned.c (gtk_paned_expose): fix this to be sane
13540
13541         * gtk/gtkvpaned.c (gtk_vpaned_expose): Add an expose handler
13542
13543         * gtk/gtkhpaned.c (gtk_hpaned_expose): Add an expose handler
13544
13545         * gtk/gtknotebook.c (gtk_notebook_draw_tab): put in a temporary 
13546         hack to avoid infinite loops (synthetic expose event) - 
13547         Owen has more appropriate fixes in a branch he'll check in later.
13548
13549         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle paragraph
13550         separator, CR, and CRLF as line ends
13551
13552         * gtk/gtktextbtree.c (gtk_text_btree_insert): on insertion, break
13553         into lines using pango_find_paragraph_boundary(); other bits of
13554         the widget are still going to be broken if the boundary isn't '\n'
13555         though
13556
13557 2000-12-04  Alexander Larsson  <alexl@redhat.com>
13558
13559         * gdk/linux-fb/gdkfont-fb.c (gdk_text_width): Divide size by 2, not
13560         multiply.
13561
13562         * gdk/linux-fb/gdkpango-fb.c:
13563         Copied some 26.6 scaling macros from pango to clean up the rounding.
13564         (pango_fb_font_get_glyph_info): Correct sign on x value.
13565
13566         * gdk/linux-fb/gdkprivate-fb.h:
13567         Removed unreferenced external functions.
13568
13569         * modules/linux-fb/Makefile.am: Use ` instead of '.
13570
13571         * modules/linux-fb/basic.c:
13572         Remove dead code. In particular the dummy lang engine which broke all
13573         pango layouts in GtkFB. Don't include tables-big.i anymore.
13574
13575         * modules/linux-fb/tables-big.i:
13576         Upgrade to latest version from pango. Left for reference, basic_ranges
13577         moved to basic.c.
13578         
13579 2000-12-04  Havoc Pennington  <hp@redhat.com>
13580
13581         Fix bugs Alex found:
13582         
13583         * gtk/gtktooltips.c (gtk_tooltips_force_window): nuke connection
13584         to "draw"
13585
13586         * gtk/gtkdnd.c (gtk_drag_highlight): nuke connection to "draw"
13587
13588         * gtk/gtkcolorsel.c (palette_new): nuke connection to "draw"
13589
13590         * gtk/gtklistitem.c (gtk_list_item_expose): Put the old _draw() 
13591         implementation in here, apparently the expose() implementation was
13592         dead code.
13593
13594 2000-12-04  Alexander Larsson  <alexl@redhat.com>
13595
13596         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
13597         Return positive descent.
13598
13599 2000-12-02  Havoc Pennington  <hp@pobox.com>
13600
13601         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove "draw" virtual
13602         method and signal
13603         
13604         * gtk/gtkwidget.c (gtk_widget_draw): Now just queues a draw then
13605         calls gdk_window_process_updates() to push the exposes through
13606         (gtk_widget_class_init): No more draw signal, no
13607         gtk_widget_real_draw()  
13608         
13609         * gtk/gtkbin.c (gtk_bin_draw): remove
13610
13611         * gtk/gtkbox.c (gtk_box_draw): remove
13612
13613         * gtk/gtkbutton.c (gtk_button_draw): remove
13614
13615         * gtk/gtkcalendar.c (gtk_calendar_draw): remove
13616
13617         * gtk/gtkcheckbutton.c (gtk_check_button_draw): remove
13618
13619         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_draw): remove
13620
13621         * gtk/gtkclist.c (gtk_clist_draw): remove
13622
13623         * gtk/gtkentry.c (gtk_entry_draw): remove
13624
13625         * gtk/gtkeventbox.c (gtk_event_box_draw): remove
13626
13627         * gtk/gtkfixed.c (gtk_fixed_draw): remove
13628
13629         * gtk/gtkframe.c (gtk_frame_draw): remove
13630
13631         * gtk/gtkhandlebox.c (gtk_handle_box_draw): remove
13632
13633         * gtk/gtkhpaned.c (gtk_hpaned_draw): remove
13634
13635         * gtk/gtklayout.c (gtk_layout_draw): remove
13636
13637         * gtk/gtklist.c (gtk_list_draw): remove
13638
13639         * gtk/gtklistitem.c (gtk_list_item_draw): remove
13640
13641         * gtk/gtkmenu.c (gtk_menu_draw): remove
13642
13643         * gtk/gtkmenubar.c (gtk_menu_bar_draw): remove
13644
13645         * gtk/gtkmenuitem.c (gtk_menu_item_draw): remove
13646
13647         * gtk/gtknotebook.c (gtk_notebook_draw): remove
13648
13649         * gtk/gtkoptionmenu.c (gtk_option_menu_draw): remove
13650
13651         * gtk/gtkpacker.c (gtk_packer_draw): remove
13652
13653         * gtk/gtkrange.c (gtk_range_draw): remove
13654
13655         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_draw): remove
13656
13657         * gtk/gtkspinbutton.c (gtk_spin_button_draw): remove
13658
13659         * gtk/gtktable.c (gtk_table_draw): remove
13660
13661         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_draw): remove
13662
13663         * gtk/gtktext.c (gtk_text_draw): remove
13664
13665         * gtk/gtktextview.c (gtk_text_view_draw): remove
13666
13667         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): remove
13668
13669         * gtk/gtktoolbar.c (gtk_toolbar_draw): remove
13670
13671         * gtk/gtktree.c (gtk_tree_draw): remove
13672
13673         * gtk/gtktreeitem.c (gtk_tree_item_draw): remove
13674
13675         * gtk/gtktreeview.c (gtk_tree_view_draw): remove
13676
13677         * gtk/gtkviewport.c (gtk_viewport_draw): remove
13678
13679         * gtk/gtkvpaned.c (gtk_vpaned_draw): remove
13680
13681         * gtk/gtkvscale.c (gtk_vscale_draw): remove
13682
13683         * gtk/gtkwindow.c (gtk_window_draw): remove
13684
13685 2000-20-01  Anders Carlsson  <andersca@gnu.org>
13686
13687         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): Fix bug when
13688         a GtkToggleButton is both insensitive and active, it was being
13689         drawn by the GtkButton draw handler which doesn't check the
13690         state. Now it's calling gtk_toggle_button_paint instead.
13691         
13692 2000-12-01  Havoc Pennington  <hp@redhat.com>
13693
13694         * gtk/gtktextdisplay.c (gtk_text_layout_draw): don't create
13695         dangling pointers to the appearance attributes from the 
13696         line display
13697
13698         * gdk/gdkdraw.c (gdk_drawable_get_image): allow negative
13699         width/height to mean "full width/height of drawable"
13700
13701         * gtk/gtktextview.h, gtk/gtktextview.c: Implement double/triple
13702         click to select word/line
13703         
13704         * gtk/gtktextiter.c (test_log_attrs): include paragraph delimiters 
13705         when getting log attrs. Get a slice, so that pixmaps and stuff
13706         are properly handled.
13707
13708         * gtk/gtktextbuffer.c (paste): Fix pasting to work properly if you
13709         paste into the selection (replaces selection now, previously
13710         crashed or added to selection). Reveals longstanding btree bug -
13711         select multiple lines, middle-click on the selection, boom. This
13712         isn't related to my changes though.
13713
13714         * gtk/gtkentry.c (gtk_entry_move_forward_word): Update to reflect
13715         PangoLogAttrs changes
13716         (gtk_entry_move_backward_word): ditto
13717
13718         * gtk/gtktextlayout.h, gtk/gtktextlayout.c: Make the iter motion
13719         functions return bool whether the iter moved onto a
13720         dereferenceable position.
13721  
13722         * gtk/gtktextview.h, gtk/gtktextview.c: Add a bunch of public
13723         functions for motion in terms of display lines.
13724
13725         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): Add function to
13726         get the buffer a mark is inside
13727         
13728 2000-12-01  Alexander Larsson  <alexl@redhat.com>
13729
13730         * gdk/linux-fb/Makefile.am:
13731         * modules/linux-fb/Makefile.am:
13732         Freetype 2 final uses freetype-config
13733
13734         * gdk/linux-fb/gdkpango-fb.c:
13735         Upgrade to use Freetype 2 final.
13736         More flexible support for font aliases, this also fixes a bug with
13737         GtkFontSelector, as the aliases must be visible in the font/family list,
13738         or GtkFontSelector reads uninitialized memory.
13739
13740 2000-11-30 Hidetoshi Tajima  <tajima@eng.sun.com>
13741
13742         * modules/input/gtkimcontextxim.c (setup_im): Add NULL argument to
13743         XGetIMValues to properly terminate variable argument list, and do
13744         NULL return check for ic_values and xim_styles.
13745
13746         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset):
13747         Restore preedit state after XmbResetIC().
13748         
13749         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic):
13750         XvaCreateNestedList() should take XvaNestedList, but not
13751         XvaNestedList*.
13752
13753         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset,
13754         preedit_draw_callback, preedit_caret_callback): Match
13755         "preedit-changed" signal name to "preedit_changed" to be
13756         consistent to the spec.
13757
13758         * gtk/gtkimcontextsimple.c (check_table):
13759         Match "preedit-changed" to "preedit_changed" to be consistent
13760         to the spec.
13761
13762 Thu Nov 30 23:03:04 2000  Owen Taylor  <otaylor@redhat.com>
13763
13764         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Properly handle
13765         gc->clip_region == NULL>
13766
13767 2000-11-30  Tor Lillqvist  <tml@iki.fi>
13768
13769         Changes by Hans Breuer:
13770         
13771         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
13772         Dont't use negative width and height as max_hints. This fixes
13773         Owen's recent testgtk changes for win32.
13774
13775         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get,
13776         gdk_win32_hdc_release): These are exported and may be called with
13777         other drawable types than our GdkDrawableImplWin32 (?).
13778
13779         * gdk/gdkwindow.c: Backing store appears to work on Windows now,
13780         so always #define USE_BACKING_STORE.
13781
13782         * gtk/gtktextdisplay.c (render_layout_line): Use g_print instead
13783         of printf for debugging output.
13784
13785         * gtk/gtktextlayout.c (allocate_child_widgets): Ditto.
13786         
13787         * gtk/gtktextview.c (gtk_text_view_child_allocated): Ditto.
13788
13789         * gtk/gtkmain.h (GTKMAIN_C_VAR): Win32 fix for dllimport
13790         declaration.
13791
13792         * gtk/gtktexttypes.h: Ditto.
13793
13794         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): Return a value
13795         (GDK_VoidSymbol) also if in case of arg check failure.
13796
13797         * gtk/gtkimcontextsimple.c
13798         (gtk_im_context_simple_get_preedit_string): Don't assign cursor
13799         position to the pointer, but to the variable it points to.
13800
13801         * gtk/makefile.msc.in (DEFINES): Define GTK_VERSION.
13802
13803         * gtk/gtk.def: Updates.
13804
13805 2000-11-29  Elliot Lee  <sopwith@redhat.com>
13806
13807         * gtk/gtkmodelsimple.c: Inherits from GTK_TYPE_OBJECT, not
13808         GTK_TYPE_TREE_MODEL.
13809
13810 2000-11-29  Alexander Larsson  <alexl@redhat.com>
13811
13812         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description):
13813         Set the size of the font from the description.
13814         (gdk_text_width): Gross hack that calculates the width
13815         of text by text_length * size/2. This is necessary because
13816         GtkLabel does some ugly gtk_string_width call to calculate
13817         an good size.
13818         (linux-fb/gdkprivate-fb.h): Removed unused field FT_Face.
13819
13820 Wed Nov 29 13:39:19 GMT 2000  Tony Gale <gale@gtk.org>
13821
13822         * docs/tutorial/gtk-tut.sgml: DND updates
13823
13824 2000-11-29  Alexander Larsson  <alexl@redhat.com>
13825
13826         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
13827         If you pass width or height == 0 to gdk_window_clear_area they
13828         should be calculated from the window size.
13829
13830 2000-11-29  Alexander Larsson  <alexl@redhat.com>
13831
13832         * gdk/linux-fb/gdkinput-ps2.c (move_pointer): If there is
13833         a grab, but no grab-cursor, use the cursor from the grabbed
13834         window. (gdk_fb_window_send_crossing_events): Send normal
13835         enter/leave notifications if grab and owner_events == TRUE.
13836
13837 2000-11-29  Alexander Larsson  <alexl@redhat.com>
13838
13839         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
13840         Do implicit button grabs, even if the window doesn't
13841         want the event.
13842         (gdk_fb_window_send_crossing_events): If there is a
13843         grab, only the grabbed window gets normal enter/leave
13844         notifications. On ungrab go from grabbed window to current.
13845         Don't send any notification to b when propagating from c -> b.
13846         If setting a grab on window, don't set prev_window.
13847         (handle_mouse_input): Send enter/leave events to the window the
13848         mouse is over, not the grabbed one.
13849         
13850 2000-11-28  Elliot Lee  <sopwith@redhat.com>
13851
13852         * gdk/gdkregion-generic.c: Zap warning.
13853         * modules/input/Makefile.am: Only build im-xim if USE_X11 is enabled
13854         * gtk/gtkrc.c: s/strcpy/memcpy/ to save a few nanoseconds.
13855
13856 2000-11-28  Alexander Larsson  <alla@lysator.liu.se>
13857
13858         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
13859         The cursor should be hidden if it is part of either the
13860         source or destination region. Not only if it is in both.
13861         (gdk_window_set_transient_for): Silence warnings.
13862
13863 2000-11-28  Alexander Larsson  <alexl@redhat.com>
13864
13865         * gdk/linux-fb/mifillarc.c (miFillArcSliceSetup):
13866         The default mode in X is Pie Arcs, therefore that is
13867         what Gtk+ uses.
13868
13869 2000-11-28  Alexander Larsson  <alexl@redhat.com>
13870
13871         * gdk/linux-fb/gdkinput-ps2.c:
13872         Implement correct EnterNotify/LeaveNotify:
13873         (gdk_fb_window_send_crossing_events): New function that sends
13874         all GdkCrossingEvents from the last mouse-window to the specified
13875         destination.
13876         (gdk_fb_window_visibility_crossing): Removed function.
13877         (handle_mouse_input): Use gdk_fb_window_send_crossing_events()
13878         (send_button_event, gdk_fb_cursor_reset): Use gdk_window_at_pointer
13879         instead of gdk_window_get_pointer() for better readability.
13880
13881         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab,
13882         gdk_fb_pointer_ungrab): Use gdk_fb_window_send_crossing_events.
13883
13884         * gdk/linux-fb/gdkprivate-fb.h:
13885         removed gdk_fb_window_visibility_crossing, added
13886         gdk_fb_window_send_crossing_events and gdk_fb_find_common_ancestor.
13887
13888         gdk/linux-fb/gdkwindow-fb.c (gdk_fb_find_common_ancestor):
13889         New function that finds the least common ancestor of two windows.
13890         (gdk_window_show, gdk_window_hide):
13891         Use gdk_fb_window_send_crossing_events.
13892         (gdk_fb_window_move_resize): Send configure events to toplevel
13893         windows. Use gdk_fb_window_send_crossing_events.
13894
13895 2000-11-27  Havoc Pennington  <hp@redhat.com>
13896
13897         * gtk/gtkprivate.h (enum): Remove a trailing comma
13898
13899 2000-11-27  Federico Mena Quintero  <federico@helixcode.com>
13900
13901         * gtk/gtkspinbutton.c (gtk_spin_button_set_adjustment): Connect to
13902         the "changed" callback of the adjustment.  We need to redraw the
13903         spin button's arrows when the adjustment's range changes.
13904         (adjustment_changed_cb): Draw the arrows.
13905         (gtk_spin_button_value_changed): Draw the arrows.
13906
13907 2000-11-23  Alexander Larsson  <alexl@redhat.com>
13908
13909         * gdk/linux-fb/gdkselection-fb.c:
13910         Initial selection implementation.
13911
13912         * gtk/gtkselection.c:
13913         if GDK_WINDOWING_FB defined, include linux-fb/gdkfb.h and look up
13914         requestor in gtk_selection_request.
13915         
13916         * gdk/linux-fb/gdkfb.h, gdk/linux-fb/gdkglobals-fb.c:
13917         Added gdk_selection_property atom.
13918
13919         * gdk/linux-fb/gdkprivate-fb.h:
13920         Export _gdk_selection_window_destroyed.
13921         Removed mask_off_x/y from GdkCursorPrivateFB.
13922         Removed hbearing, added top, left to PangoFBGlyphInfo.
13923
13924         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
13925         Call _gdk_selection_window_destroyed
13926         (_gdk_windowing_window_init): Don't call gdk_cursor_new() before
13927         the root window has been created.
13928         (static_dx_hack, static_dy_hack, compare_draw_rects,
13929         gdk_fb_window_move_resize): Remove unnecessary sort of rectangles
13930         in region. They are already sorted. Instead just traverse them in
13931         reverse if draw_direction < 0.
13932         
13933         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
13934         Double-clicks must be sent after the normal button_press.
13935         (gdk_fb_cursor_unhide): Remove usage of mask_off_x/y. Clean up.
13936         
13937         * gdk/linux-fb/gdkgeometry-fb.c (gdk_window_scroll):
13938         Pass _gdk_fb_screen_gc instead of NULL.
13939
13940         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
13941         Initialize gdk_selection_property.
13942         (gdk_event_make): Remove unused code.
13943
13944         * gdk/linux-fb/gdkcursor-fb.c:
13945         Make the pixmap for the cursor the same size as the mask. Also remove
13946         the mask_off_x/y fields in GdkCursorPrivateFB and combine
13947         _gdk_cursor_new_from_pixmap() and gdk_cursor_new_from_pixmap()
13948         Now the whole cursor is visible.
13949
13950         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
13951         Fix bug where xdest+height instead of ydest+height was used
13952         to calculate if the source and dest overlapped. This fixes the
13953         redraw bug when the main window in testgtk was scrolled when
13954         partially covered by a tall window.
13955         Copy rectangles in region in order depending on draw_direction.
13956         Also moved the draw_direction flipping of start_y and end_y into
13957         the gc functions, as this might not be what all of them want.
13958         (gdk_fb_draw_lines): Support dashed lines.
13959         (gdk_fb_draw_glyphs): Clean up glyph placement. Also fix positioning
13960         so that the text is positioned correctly (was 1 pixel high).
13961
13962         gdk/linux-fb/gdkgc-fb.c:
13963         Initialize cap_style to GTK_CAP_BUTT. This fixes a problem where
13964         all lines were drawn a pixel to short. Also checked the default of
13965         the rest of the values, and they're the same as X now.
13966
13967         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_glyph_info):
13968         Clean up pixel positioning of the glyphs. Just use bgy->top and
13969         bgy->left. Also used PANGO_PIXEL where appropriate and added 0.5
13970         to all divisions to get correct rounding behaviour.
13971
13972         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_draw_drawable_generic,
13973         gdk_fb_draw_drawable_memmove, gdk_fb_draw_drawable_aa_24):
13974         Moved start_y/end_y flip into draw_drawable implementations.
13975         Flip also x rendering when draw_direction < 0.
13976         Remove unneccesary multiply with draw_direction.
13977
13978 Wed Nov 22 14:11:19 GMT 2000  Tony Gale <gale@gtk.org>
13979
13980         * docs/tutorial/gtk-tut.sgml:
13981           - get rid of gtk_toggle_button_toggled FUD
13982           - start DND section - needs work - based on:
13983                 http://wolfpack.twu.net/docs/gtkdnd/
13984
13985 2000-11-22  Alexander Larsson  <alexl@redhat.com>
13986
13987         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
13988         Correct calculation of font metrics. Now GtkEntrys have sane
13989         size.
13990
13991 2000-11-22  Alexander Larsson  <alexl@redhat.com>
13992
13993         * gdk/gdktypes.h:
13994         Add new type GdkSpan
13995         
13996         * docs/reference/gdk/gdk-sections.txt,
13997         docs/reference/gdk/tmpl/regions.sgml, gdk/gdkregion-generic.c,
13998         gdk/gdkregion.h:
13999         Implement and document gdk_region_spans_intersect_foreach.
14000
14001         * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkrender-fb.c:
14002         Add new file gdkrender-fb.c which contains all core
14003         rendering code.
14004         Add gdk_fb_fill_rectangle_generic (old rectangle code) and
14005         gdk_fb_fill_rectangle_simple_16, gdk_fb_fill_rectangle_simple_32
14006         (optimized rectangle fillers).
14007
14008         * gdk/linux-fb/gdkdrawable-fb2.c:
14009         Move all rendering code to gdkrender-fb.c.
14010         Change from using GdkRectangles and GdkSegments for spans to GdkSpan.
14011         Use the new span intersection functions in gdk_fb_fill_spans.
14012         gdk_fb_draw_rectangle() clips filled rectangles and calls
14013         gc->fill_rectangle with the result.
14014         gdk_fb_fill_spans() gets extra argument "sorted".
14015
14016         * gdk/linux-fb/gdkevents-fb.c:
14017         Remove unused includes and defines.
14018         New function gdk_fb_get_time() to get correct time for events.
14019
14020         * gdk/linux-fb/gdkinput-ps2.c:
14021         Use gdk method of generating multiple-clicks (gdk_event_button_generate)
14022         Make sure to set the time of all events.
14023
14024         * gdk/linux-fb/gdkmain-fb.c:
14025         Use gdk_fb_get_time ().
14026
14027         * gdk/linux-fb/gdkprivate-fb.h:
14028         New virtual GC calls: fill_span & fill_rectangle.
14029         Export gdk_fb_get_time().
14030         gdk_fb_fill_spans() gets extra argument "sorted".
14031
14032         * gdk/linux-fb/mi*.c:
14033         Use GdkSpan instead of GdkRectangle.
14034         Pass correct sorted to gdk_fb_fill_spans. (sorted value taken
14035         from XFree 4 source)
14036         
14037 2000-11-22    <jrb@redhat.com>
14038
14039         * gtk/gtktreeview.c (gtk_tree_view_calc_size): It's amazing what
14040         reversing the order in an if statement will do.  Doing so managed
14041         to make the treemodelsort half work.  Other half will follow after
14042         I get the insert function fully fixed.
14043
14044 2000-11-21  Elliot Lee  <sopwith@redhat.com>
14045         * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
14046         more than 2 bits. Besides, I need to implement an evil hack. :)
14047
14048 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
14049
14050         * docs/tutorial/gtk-tut.sgml: minor corrections
14051
14052 2000-11-20  Jonathan Blandford <jrb@redhat.com>
14053         * gtk/gtktreemodelsort.h: Add convertion functions to let you
14054           convert to and from relative path's and iters.
14055
14056         * gtk/treestoretest.c: move to having a sorted/unsorted view.  Start
14057           testing sorting functions a bit better.  Currently broken -- will
14058           fix in morning.
14059
14060 2000-11-20  Havoc Pennington  <hp@redhat.com>
14061
14062         * gtk/gtkwidget.c: Documented a bunch of functions in here
14063         (gtk_widget_realize): Warn if you try to realize
14064         a widget with no parent that isn't a toplevel
14065         (gtk_widget_intersect): return a gboolean
14066
14067 2000-11-20  Havoc Pennington  <hp@redhat.com>
14068
14069         * gtk/gtktextview.c, gtk/gtktextlayout.c, gtk/gtktextchild.c,
14070         gtk/testtext.c: Semi-finish widget embedding. Need guffaw
14071         scrolling to be implemented in GDK to finish. Also, right now
14072         we just size_allocate all children on every layout change,
14073         which is pretty lame. Test commented out of testtext.c, 
14074         until it works better.
14075
14076 2000-11-20  Alexander Larsson  <alla@lysator.liu.se>
14077
14078         * gdk/linux-fb/gdkdrawable-fb2.c:
14079         Removed unused arguments from gdk_fb_drawable_get_pixel().
14080
14081         * gdk/linux-fb/gdkinput-ps2.c (handle_input_ps2):
14082         Renamed fidur specific mouse packet data in MouseDevice to
14083         generic. Used it in ps2 mouse handling code to avoid blocking
14084         reads.
14085
14086 Sat Nov 18 18:00:17 2000  Jonathan Blandford  <jrb@redhat.com>
14087
14088         * demos/gtk-demo/main.c: Changed to have the list become
14089         non-italic when the demo window is destroyed through an external
14090         event (like a close button).  Doing so found three bugs in the
14091         widget.
14092
14093         * demos/gtk-demo/*.c (do_*): Changed to return the toplevel window.
14094
14095         * gtk/gtkliststore.c (gtk_list_store_set_cell): emit "change" when
14096         we actually set the cell.
14097
14098         * gtk/gtktreestore.c (gtk_tree_store_set_cell): ditto
14099
14100         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
14101         free a leaked path.  Thanks memprof.
14102
14103 Sat Nov 18 11:58:17 2000  Owen Taylor  <otaylor@redhat.com>
14104
14105         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Fix 
14106         off-by-one error when destroying allocated segments
14107         on failure. (Elliot)
14108
14109 Sat Nov 18 11:45:09 2000  Owen Taylor  <otaylor@redhat.com>
14110
14111         * gtk/gtkcalendar.c: Patch from ChiDeok Hwang to fix
14112         memleaks found by Evan Martin.
14113
14114 Fri Nov 17 20:14:20 2000  Owen Taylor  <otaylor@redhat.com>
14115
14116         * Released 1.3.2
14117         
14118         * NEWS: Updates for 1.3.2
14119
14120 2000-11-17  Tor Lillqvist  <tml@iki.fi>
14121
14122         * gdk/gdkevents.h: Add comment that GdkXEvent isn't only for XEvent,
14123         but in general for window system specific events.
14124
14125         * gtk/gtk.def
14126         * gtk/makefile.mingw.in
14127         * gtk/makefile.msc.in: Update.
14128         
14129         * gtk/gtktexttypes.h: Mark variables for export/import from DLL.
14130
14131 Thu Nov 16 16:11:39 2000  Owen Taylor  <otaylor@redhat.com>
14132
14133         * gtk/Makefile.am (EXTRA_DIST): Do not, in any circumstances,
14134         distribute gtk.immodules.
14135
14136         * gtk/Makefile.am (install-data-local): Don't install the
14137         gtk.immodules file created for the uninstalled modules;
14138         instead run gtk-query-immodules after install
14139
14140 Wed Nov 15 21:51:31 2000  Owen Taylor  <otaylor@redhat.com>
14141
14142         * modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
14143         -rpath to the right install location.
14144
14145         * modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
14146         -export-dynamic.
14147
14148         * gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
14149         properly.
14150
14151 2000-11-15  Havoc Pennington  <hp@pobox.com>
14152
14153         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): Apply
14154         patch from Mikael Hermansson to temporarily stop blinking while
14155         the user is using the keyboard to type or navigate. 
14156
14157         Also, when blinking, stay on for longer than we stay off. Also,
14158         return from start_cursor_blink if !cursor_visible, to save
14159         checking that flag all over the place before we call
14160         start_cursor_blink.
14161
14162 Thu Nov 16 01:25:51 2000  Robert Brady  <robert@suse.co.uk>
14163
14164         * gtk/gtkrc.*: Remove the locale-specific gtkrc's, as they
14165         only contain a "fontset" line, which is now ignored.
14166
14167         * gtk/gtkentry.c (gtk_entry_button_release): Make 
14168         double-click-to-select-word work.
14169         
14170 Wed Nov 15 20:16:54 2000  Owen Taylor  <otaylor@redhat.com>
14171
14172         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
14173         Don't move back one char when we are actually at the end of the 
14174         paragraph.
14175
14176 2000-11-15  Robert Brady  <robert@suse.co.uk>
14177
14178         * modules/input/iminuktitut.c (inuktitut_compose_seqs): 
14179         'o' < 'p'.
14180         
14181         * gtk/gtkmain.c: s/CODSET/CODESET/, include <libintl.h> for
14182         bind_textdomain_codeset.
14183
14184         (gtk_init_check): Make the warning about translating default:LTR
14185         sterner.
14186         
14187 Wed Nov 15 18:39:40 2000  Owen Taylor  <otaylor@redhat.com>
14188
14189         * **/Makefile.am : remove unecessary rules for win32-specific
14190         config-substituted targets. If you want these rules, use
14191         --enable-maintainer-mode (called automatically by autogen.sh).
14192         Stops a lot of unneccessary make-time warnings.
14193
14194         * gtk/gtktext{layout,display}.c: Factor in total width as
14195         well as screen when figuring alignment for word-wrap as well as
14196         no wrap; this is necessary to handle lines that cannot be wrapped
14197         at all.
14198
14199 2000-11-15  Havoc Pennington  <hp@redhat.com>
14200
14201         * gtk/testtext.c: Implement essential color cycling feature
14202
14203 2000-11-15  Havoc Pennington  <hp@redhat.com>
14204
14205         * gtk/gtktextview.c (changed_handler): Invalidate the side windows
14206         when we invalidate the main window.
14207
14208         * gtk/testtext.c (create_view): Get rid of text_changed_callback,
14209         GtkTextView will now invalidate the side windows for us when text
14210         changes.
14211
14212 Wed Nov 15 16:02:20 2000  Owen Taylor  <otaylor@redhat.com>
14213
14214         * gtk/gtktextview.c (changed_handler): Call scroll_calc_now()
14215         unconditionally, since we may need to update the horizontal
14216         scrollbars even if the height didn't change.
14217
14218         * gtk/gtktextlayout.c (add_preedit_attrs): Always get
14219         the extra attrs, since some of them affect size.
14220
14221         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Factor in
14222         x_offset correctly.
14223
14224 2000-11-15  Havoc Pennington  <hp@redhat.com>
14225
14226         * gtk/gtktextlayout.c (set_para_values): If indent is negative,
14227         don't move the first line out into the margin, instead move the
14228         whole paragraph in order to make space for the first line within 
14229         the margin
14230
14231 2000-11-15  Havoc Pennington  <hp@redhat.com>
14232
14233         * gtk/gtktextview.c (changed_handler): offset redraw rect by
14234         xoffset in addition to yoffset, so horizontal scrolling doesn't
14235         break redraws
14236
14237 2000-11-15  Havoc Pennington  <hp@redhat.com>
14238
14239         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove extra pixel
14240         from the cursor
14241         (render_layout_line): fix reversed test that caused weird
14242         underlines to get drawn
14243
14244 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
14245
14246         * gdk/linux-fb/gdkprivate-fb.h:
14247         Fix debug macros.
14248         
14249 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
14250
14251         * gdk/linux-fb/gdkprivate-fb.h:
14252         Added virtual functions set_pixel, get_color,
14253         fill_span and draw_drawable to the GC.
14254         Added global _gdk_fb_screen_gc to use instead of
14255         NULL when drawing to the screen.
14256         Added _gdk_fb_gc_calc_state() prototype.
14257
14258         * gdk/linux-fb/gdkgc-fb.c:
14259         Call _gdk_fb_gc_calc_state() on any gc state change.
14260
14261         * gdk/linux-fb/gdkglobals-fb.c:
14262         Add _gdk_fb_screen_gc
14263                 
14264         * gdk/linux-fb/gdkdrawable-fb2.c:
14265         _gdk_fb_gc_calc_state() calculates best functions
14266         for the GC state and depth.
14267         Moved bpp specialized code to separate functions.
14268         Added optimized 24 bpp AA draw_drawable.
14269
14270         * gdk/linux-fb/gdkevents-fb.c:
14271         Silence gcc warning.
14272
14273         * gdk/linux-fb/gdkimage-fb.c:
14274         Use _gdk_fb_screen_gc
14275
14276         * gdk/linux-fb/gdkwindow-fb.c:
14277         Init and use _gdk_fb_screen_gc
14278
14279         * gdk/linux-fb/mitypes.h:
14280         Remove unused types.
14281
14282 2000-11-14  Havoc Pennington  <hp@pobox.com>
14283
14284         * gtk/gtktextlayout.c (add_cursor): use PANGO_PIXELS() to convert
14285         to pixels
14286
14287 2000-11-14  Havoc Pennington  <hp@pobox.com>
14288
14289         * gtk/testtextbuffer.c (fill_buffer): change "offset" to "rise"
14290
14291         * gtk/gtktexttypes.h (GTK_TEXT_UNKNOWN_CHAR): Add macro for
14292         unknown char, no real reason we were using a variable. 
14293         Remove gtk_text_unknown_char variable. Fix all the text widget
14294         files accordingly.
14295
14296         * gtk/gtktexttypes.c: Change "unknown character" to 0xFFFC, 
14297         since the Unicode spec seems to prefer that character for our
14298         purposes.
14299
14300 Wed Nov 15 02:18:01 2000  Robert Brady  <robert@suse.co.uk>
14301
14302         * gtk/gtkrc.c (gtk_rc_get_im_module_file): The return 
14303         value of g_getenv() isn't freeable, so g_strdup it.
14304
14305         * modules/input/inuktitut.c: Inuktitut input method.
14306
14307         * modules/input/Makefile.am: Build this.
14308         
14309 2000-11-14  Elliot Lee  <sopwith@redhat.com>
14310
14311         * gtk/Makefile.am: Install gtk.immodules, needed for operation
14312         of gtk programs.
14313
14314 Tue Nov 14 20:13:06 2000  Owen Taylor  <otaylor@redhat.com>
14315
14316         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): Fix
14317         reversed > that was causing Home to go to end of previous line.
14318
14319         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): Ignore
14320         modified-keypresses (leave for bindings.)
14321
14322         * modules/input/Makefile.am: Remove useless -export-dynamic
14323         from module LDFLAGS.
14324
14325 2000-11-14  Havoc Pennington  <hp@redhat.com>
14326
14327         * gdk/gdkpango.c (gdk_draw_layout_line): Draw underlines one pixel
14328         higher.
14329
14330         * gtk/gtktextdisplay.c (render_layout_line): Take rise into
14331         account. Also, render rise, underline, background, etc. for
14332         pixbufs as well as text. Also, draw underlines one pixel higher.
14333
14334         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): Add a
14335         PangoAttribute for the rise, so it gets drawn properly. Also,
14336         add the GtkTextAppearance attribute for pixbuf/widget segments
14337         as well; we should go ahead and have rise, underline, background,
14338         stipple work for those
14339
14340         * gtk/gtktexttag.c: Rename "offset" property to "rise" to match
14341         Pango
14342
14343 2000-11-15  Tor Lillqvist  <tml@iki.fi>
14344
14345         * gtk/makefile.{mingw,msc}.in (gtk_OBJECTS): Add new objects.
14346
14347         * gtk/gtk.def: Update.
14348
14349         * gtk/gtkrc.c: Can't check for G_OS_WIN32 until glib.h has been
14350         included.
14351         (gtk_rc_get_im_module_file): Use run-time installation directory
14352         on Win32.
14353
14354         * gdk/win32/rc/gdk.rc: Remove.
14355         * gdk/win32/rc/gdk.rc.in: New file.
14356         * gdk/win32/rc/Makefile.am: New file
14357         * gdk/win32/Makefile.am: Corresponding changes.
14358
14359         * gtk/gtk.rc: Remove.
14360         * gtk/gtk-win32.rc.in: New file.
14361         * gtk/Makefile.am: Corresponding changes.
14362
14363         * configure.in: Corresponding changes.
14364
14365         * gtk/gtkcompat.h.win32: Remove, useless. A distribution already
14366         has a built gtkcompat.h. Developers using CVS code on Win32 can
14367         hand-edit it from gtkcompat.h.in.
14368
14369         * gtk/makefile.{mingw,msc}.in: Correspondingly don't try to make
14370         gtkcompat.h from gtkcompat.h.win32.
14371
14372 2000-11-14  Havoc Pennington  <hp@redhat.com>
14373
14374         * gtk/gtktextview.c (gtk_text_view_drag_motion): Fix drag-and-drop
14375         to default to GDK_ACTION_MOVE if the drag is within a single
14376         widget. Defaults to GDK_ACTION_COPY between widgets.
14377
14378 Mon Nov 13 14:43:48 2000  Owen Taylor  <otaylor@redhat.com>
14379
14380         * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir
14381
14382         * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk
14383
14384         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles
14385         srcdir != builddir
14386
14387         * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk
14388
14389         * configure.in (GTK_VERSION): Up to 1.3.2
14390
14391         * modules/input/Makefile.am (im_xim_la_SOURCES): Add 
14392         gtkimcontextxim.h
14393
14394         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add
14395         missing doc comment.
14396
14397 2000-11-14  Alexander Larsson  <alexl@redhat.com>
14398
14399         * modules/linux-fb/basic.c:
14400         Use the glib iconv wrappers.
14401
14402 2000-11-13  Havoc Pennington  <hp@pobox.com>
14403
14404         * demos/gtk-demo/textview.c: spiff up the demo a bit; reveals
14405         still more bugs.
14406
14407         * gtk/gtktextview.c (gtk_text_view_value_changed): don't try to
14408         scroll the GdkWindows before realization.
14409
14410 2000-11-13  Havoc Pennington  <hp@redhat.com>
14411
14412         * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug 
14413         where GC didn't always get updated properly
14414
14415         * demos/gtk-demo/textview.c (create_tags): Use subattributes
14416         of fonts instead of setting the entire font
14417
14418         * gtk/testtext.c (fill_example_buffer): Use "size" instead of
14419         setting entire font
14420
14421         * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings
14422
14423         * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into 
14424         a bunch of individually-settable font attributes. You can still 
14425         use the "font" and "font_desc" args, they just set all the font
14426         attributes at once.
14427
14428 2000-11-13 Elliot Lee <sopwith@redhat.com>
14429
14430         * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
14431
14432 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
14433
14434         * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
14435         * gtk/gtktreemodel.c (gtk_tree_path_free): ditto
14436
14437         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): make
14438         work better.
14439
14440 2000-11-13  Havoc Pennington  <hp@redhat.com>
14441
14442         * gtk/gtkimmodule.c (gtk_im_module_init): Free the filename of 
14443         the module file.
14444
14445         * gtk/gtktexttag.c (gtk_text_attributes_copy): fix memory leak of
14446         dest->language
14447
14448         * gtk/testtext.c: Test pixels above/below/inside paragraphs
14449         settings
14450
14451         * gtk/gtktextview.c: Implement object args and setters/getters for
14452         all the aspects of the GtkTextAttributes that are not set from
14453         GtkWidget attributes. This is spacing, justification, margins,
14454         etc.
14455
14456         (gtk_text_view_set_arg)
14457         (gtk_text_view_get_arg): implement get/set for editable, wrap mode
14458         args
14459         (gtk_text_view_class_init): Add args for justify, left_margin,
14460         right_margin, indent, and tabs
14461         
14462
14463         * gtk/gtktextlayout.c (set_para_values): fix to display indent
14464         attribute properly
14465
14466         * gtk/gtktexttag.c: Remove left_wrapped_line_margin attribute, 
14467         replace with indent attribute
14468
14469         * gtk/gtktextlayout.c (set_para_values): multiply indent by
14470         PANGO_SCALE
14471
14472         * gtk/gtktextdisplay.c (render_para): Use PangoLayoutIter,
14473         rearranging code to do that
14474         (gtk_text_layout_draw): Pass in the y for the whole LineDisplay,
14475         i.e. don't subtract the top_margin first, just to keep
14476         all margin-futzing in one place.
14477
14478         * gdk/gdkpango.c (gdk_draw_layout): Use PangoLayoutIter
14479
14480         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Remove
14481         special case of last line, Pango now handles this itself.
14482         (gtk_text_layout_get_iter_at_pixel): Fix incorrect clamp of the 
14483         Y coordinate
14484         (gtk_text_layout_move_iter_to_x): port to use PangoLayoutIter
14485         (find_display_line_above): wasn't moving the byte index as it
14486         iterated over lines, so always returned byte 0. Also, port to use
14487         PangoLayoutIter.
14488         (find_display_line_below): same problem as
14489         find_display_line_above. Also, port to use PangoLayoutIter.
14490
14491 2000-11-13  Alexander Larsson  <alexl@redhat.com>
14492
14493         * gdk/linux-fb/*.[ch]:
14494         Massive reindent to gtk+ standard. My hands hurt.
14495
14496         * gdk/linux-fb/gdkcolor-fb.c:
14497         Move GdkColorPrivateFB from inherited to windowing_data
14498
14499         * gdk/linux-fb/gdkcursor-fb.c:
14500         _gdk_cursor_new_from_pixmap made static
14501
14502         * gdk/linux-fb/gdkdnd-fb.c:
14503         GdkDragContextPrivate moved to windowing_data
14504
14505         * gdk/linux-fb/gdkdrawable-fb2.c:
14506         Removed endian.h, use glib endianness macros instead
14507         Some cleanups in the usage of GDK_DRAWABLE_FBDATA
14508         and GDK_DRAWABLE_IMPL_FBDATA
14509
14510         * gdk/linux-fb/gdkfont-fb.c:
14511         Add empty gdk_font_load(). Needed for linking of Gtk+.
14512
14513         * gdk/linux-fb/gdkimage-fb.c:
14514         Removed endian.h, use glib endianness macros instead
14515         Moved GdkImagePrivateFB to windowing_data
14516         gdk_image_new_bitmap didn't always allocate enough
14517         memory.
14518
14519         * gdk/linux-fb/gdkinput-ps2.c:
14520         Added semi-working support for MS serial mice.
14521
14522         * gdk/linux-fb/gdkprivate-fb.h:
14523         s/GdkWindowPrivate/GdkWindowObject/
14524         Removed GdkWindowPrivate typedef
14525         s/GDK_DRAWABLE_P/GDK_DRAWABLE_FBDATA/
14526         Removed GDK_DRAWABLE_P
14527         Move GdkColorPrivateFB from inherited to windowing_data
14528         Moved GdkImagePrivateFB to windowing_data
14529
14530         * gdk/linux-fb/gdkvisual-fb.c:
14531         Removed some unused debug code.
14532
14533         * gdk/linux-fb/gdkwindow-fb.c:
14534         Use stock cursors instead of including X headers.
14535         s/GdkWindowPrivate/GdkWindowObject/
14536
14537         * gdk/linux-fb/mitypes.h:
14538         Removed unused types.
14539
14540         * modules/linux-fb/basic.c:
14541         Use the pango fribidi wrappers.
14542
14543 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
14544
14545         * gdk/linux-fb/gdkcolor-fb.c, gdk/nanox/gdkmain-nanox.c,
14546         gdk/win32/gdkcolor-win32.c, gdk/win32/gdkwin32id.c,
14547         gdk/x11/gdkcolor-x11.c, gdk/x11/gdkvisual-x11.c, gdk/x11/gdkxid.c,
14548         gtk/gtkgc.c, gtk/gtkrc.c, gtk/gtktext.c: GCompareFunc ->
14549         GEqualFunc where applicable.
14550         
14551         * gdk/linux-fb/gdkpango-fb.c: pango_font_description_compare ->
14552         pango_font_description_equal as changed in pango.
14553         
14554         * gdk/nanox/gdkmain-nanox.c: gdk_xid_compare -> gdk_xid_equal.
14555
14556         * gdk/win32/gdkcolor-win32.c: gdk_colormap_cmp -> gdk_colormap_equal.
14557
14558         * gdk/win32/gdkwin32id.c: gdk_handle_compare -> gdk_handle_equal.
14559
14560         * gdk/x11/gdkcolor-x11.c: gdk_colormap_cmp -> gdk_colormap_equal.
14561
14562         * gdk/x11/gdkvisual-x11.c: gdk_visual_compare -> gdk_visual_equal.
14563
14564         * gdk/x11/gdkxid.c: gdk_xid_compare -> gdk_xid_equal.
14565
14566         * gtk/gtkgc.c: gtk_gc_key_compare -> gtk_gc_key_equal and
14567         gtk_gc_drawable_compare -> gtk_gc_drawable_equal.
14568
14569         * gtk/gtkrc.c: gtk_rc_style_compare -> gtk_rc_style_equal and
14570         gtk_rc_styles_compare -> gtk_rc_styles_equal.
14571
14572 2000-11-12  Havoc Pennington  <hp@pobox.com>
14573
14574         * demos/gtk-demo/Makefile.am (democodedir): change demo install
14575         dir to datadir/gtk+-2.0/demo
14576
14577         * demos/gtk-demo/textview.c: Text widget demo; reveals all 
14578         sorts of text widget and Pango font bugs. Urgh.
14579
14580         * demos/gtk-demo/Makefile.am (demos): Add textview.c
14581
14582         * demos/gtk-demo/main.c (create_tree): Add instructions at top of
14583         tree that you should double click to see the demo. Fix 
14584         types of variables to reflect changed return values from 
14585         GtkTreeStore and GtkTreeViewColumn constructors.
14586
14587         * gtk/gtktextbuffer.c (gtk_text_buffer_new): ref/sink the
14588         newly-created buffer to prepare for GObject semantics
14589
14590         * gtk/testtext.c: don't leak the buffer with GObject semantics
14591
14592         * gtk/testtextbuffer.c: ditto
14593         
14594 2000-11-12  Havoc Pennington  <hp@pobox.com>
14595
14596         Rename this testgtk to gtk-demo to avoid confusion, and 
14597         install it so people can use it as a supplement to 
14598         the documentation.
14599         
14600         * demos/gtk-demo: Moved from demos/testgtk
14601
14602         * demos/testgtk: Removed
14603
14604         * configure.in: make Makefile in gtk-demo
14605         
14606         * demos/gtk-demo/Makefile.am: Install sample source to 
14607         datadir/gtk-demo (maybe there's a better place?), and 
14608         rename the binary to gtk-demo
14609         
14610         * demos/gtk-demo/main.c (load_file): Load installed sample
14611         source if source isn't found in pwd.
14612
14613 2000-11-09  Havoc Pennington  <hp@pobox.com>
14614
14615         * gtk/gtkentry.c (gtk_entry_class_init): Add an "invisible_char" 
14616         argument to set the char displayed when visibility == FALSE
14617         (gtk_entry_create_layout): If !entry->visible, replace 
14618         all chars with the "invisible char"
14619
14620         * gtk/testgtk.c: Test the invisible_char deal
14621         
14622 Mon Nov 13 02:16:33 2000  Robert Brady  <robert@suse.co.uk>
14623
14624         * gtk/gtkstyle.c (gtk_style_init): Fall back to "fixed" if we
14625         can't get a native font in the right encoding.
14626
14627 Mon Nov 13 00:09:29 2000  Robert Brady  <robert@suse.co.uk>
14628
14629         * configure.in: Chinese .pos have been renamed to zh_CN and zh_TW
14630         respectively.
14631
14632 Sun Nov 12 19:11:42 2000  Owen Taylor  <otaylor@redhat.com>
14633
14634         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
14635         Fix warning when moving between paragraphs.
14636
14637         * gtk/gtkentry.[ch]: Change move => move_cursor, 
14638         delete => delete_from_cursor, insert => insert_at_cursor
14639
14640 Sun Nov 12 22:52:51 2000  Robert Brady  <robert@suse.co.uk>
14641
14642         * modules/input/imviqr.c: A vietnamese VIQR-based input method.
14643
14644         * modules/input/imthai-broken.c: A Thai input method for use if
14645         Thai keys are really generating Latin1 keysyms.
14646
14647         * modules/input/Makefile.am: Build these.
14648
14649 Sun Nov 12 22:15:35 2000  Robert Brady  <robert@suse.co.uk>
14650
14651         * gtk/gtkfileselection.c, gdk/win32/gdkfont-win32.c: 
14652         g_filename_{to,from}_utf8 now takes an extra parameter.
14653
14654         * gtk/gtkcalendar.c (gtk_calendar_init): Convert output of
14655         strftime into UTF-8.
14656
14657         (column_from_x, gtk_calendar_paint_day_names): Support RTL
14658         calendars.
14659
14660         (gtk_calendar_paint_day_names): Draw day names in the right 
14661         place.
14662         
14663 Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>
14664
14665         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
14666         problem with using result of g_get_charset() backwards -
14667         pointed out by Mikael Hermansson <mikeh@bahnhof.se>.
14668
14669         * gtk/gtkwindow.c (gtk_window_compute_hints): Support
14670         negative min_width/height and max_width/height to
14671         mean "requisition"; this allows setting a window
14672         to be user-resizable in only one direction easily.
14673
14674         * gtk/testgtk.c (create_main_window): Remove hard-coded
14675         usize - set a default size in the vertical direction.
14676
14677 Sun Nov 12 13:33:01 2000  Owen Taylor  <otaylor@redhat.com>
14678
14679         * gtk/gtkrange.c: Add some missing casts. Support 
14680         2 and 3 button clicks on the arrows to mean 
14681         "move by pages" and "jump to end". (Like gtkspinbutton)
14682
14683 2000-11-12 Hans Breuer <Hans@Breuer.Org>
14684
14685         * gdk/win32/makefile.msc : reflect build module changes
14686
14687         * gdk/win32/gdkcursor-win32.c : can't cast to impl type directly
14688         from GdkPixmap*, cast implementation member instead.
14689
14690         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_drawable) : The
14691         passed in drawable is of type GdkDrawableImplWin32, the GdkPixmap *src 
14692         maybe either GdkDrawable or GdkDrawableImpl. Corrected all casts, add
14693         more Gdi functions return value checking. 
14694         (gdk_win32_draw_image) : use IMAGE_PRIVATE_DATA to get on the
14695         GdkImagePrivateWin32 *.
14696
14697         * gdk/win32/gdkevents-win32.c : Disable the SetCapture call to make
14698         menus useable again. Add #pragma message to keep reminded on this issue.
14699         (gdk_event_translate) : don't generate GDK_EXPOSE events for InputOnly
14700         windows. This allows to enable backing store on Win32!
14701
14702         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image) : the passed
14703         in drawable is of impl type. Correct specific type checks appropriate.
14704  
14705         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data) : check 
14706         GDK_WINDOW_DESTROYED before allocating new resources.
14707
14708         * gdk/win32/gdkselection-win32.c : Handle GDK_WINDOW_DESTROYED case
14709
14710         * gdk/win32/gdkwindow-win32.c : more Gdi return value checking,
14711         (gdk_window_foreign_new) initialize parent handle.
14712         (gdk_window_destroy_notify) add GDK_IS_WINDOW check
14713
14714         * gdk/win32/gdkgeometry-win32.c (_gdk_window_move_resize_child) :
14715         Let the GDI invalidate the window on MoveWindow call to fix scrolling
14716         problems (e.g. main buttons in testgtk). 
14717
14718 Sat Nov 11 23:07:30 2000  Owen Taylor  <otaylor@redhat.com>
14719
14720         * gtk/gtkentry.c (gtk_entry_key_press): Call 
14721         gtk_widget_activate for GDK_Return.
14722
14723         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): Fix handling
14724         of preedit cursor position.
14725
14726 Sun Nov  5 04:24:53 2000  Owen Taylor  <otaylor@redhat.com>
14727
14728         * gtk/gtkcellrenderertextpixbuf.c: Make parent_class
14729         static.
14730
14731 Tue Sep 19 10:54:22 2000  Owen Taylor  <otaylor@redhat.com>
14732
14733         * modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
14734         out support for multiple locales; that simple doesn't
14735         work reliably with current Xlib
14736
14737         * gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
14738         gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c: 
14739         Add support for positioning the cursor within the preedit string.
14740
14741 Mon Sep 18 23:56:32 2000  Owen Taylor  <otaylor@redhat.com>
14742
14743         * modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
14744         at XIM input method module.
14745
14746         * gtk/gtktextview.c: Check for bindings after passing
14747         events to im context filter.
14748
14749 Mon Sep 18 11:50:51 2000  Owen Taylor  <otaylor@redhat.com>
14750
14751         * gtk/gtktextlayout.c (add_preedit_attrs): Handle
14752         empty attribute lists properly.
14753
14754 Sun Sep 17 10:08:16 2000  Owen Taylor  <otaylor@redhat.com>
14755
14756         * gtk/queryimmodules.c (main): Return non-zero exit
14757         status if errors were encountered querying any
14758         modules.
14759
14760         * modules/input/Makefile.am (moduledir): remove
14761         leftover bin program target.
14762
14763         * docs/make-todo: Fix typo in error message.
14764
14765 Sat Sep 16 14:04:30 2000  Owen Taylor  <otaylor@redhat.com>
14766
14767         * configure.in: Add modules/input/Makefile
14768
14769 Sat Sep 16 14:01:52 2000  Owen Taylor  <otaylor@redhat.com>
14770
14771         * gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
14772         don't include gtkthemes.h.
14773
14774         * gtk/testgtk.c gtk/testtext.c: Set environment variables
14775         to point
14776
14777         * gtk/Makefile.am: Add new .c and .h files, build 
14778         gtk-query-immodules and use it to create a gtk.immodules
14779         file for use of test programs.
14780
14781         * gtk/gtkpreview.c: remove extra blank line.
14782
14783 Sat Sep 16 13:21:04 2000  Owen Taylor  <otaylor@redhat.com>
14784
14785         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table): 
14786         Add the ability to add extra tables beyond the default
14787         one, and also the ability to have compose sequences 
14788         that are prefixes of other compose sequences. 
14789
14790         * gtk/gtkimcontextsimple.c: Export a preedit string which
14791         consists of possible candidates for keystrokes that have
14792         been entered but not yet committed.
14793
14794         * gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
14795         gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
14796
14797         * gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems): 
14798         Add a function to add input-method switching menu items
14799         to a menu.
14800
14801         * gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
14802         when switching input methods.
14803
14804         * gtk/gtkimcontextsimple.[ch]: Change the format of
14805         the compose table to allow compose tables of different
14806         lengths / sequence.
14807
14808 Sat Sep 16 13:05:48 2000  Owen Taylor  <otaylor@redhat.com>
14809
14810         * gtk/gtkimmodule.[ch]: Support routines for loading
14811         GtkIMContext implementations dynamically at runtime.
14812
14813         * modules/input/imcyrillic-translit.c: A sample input
14814         method (based on GtkIMContextSimple with an extra table),
14815         which demonstrates preedit strings and the module
14816         system for input modules
14817
14818         * gtk/queryimmodules.c: Program to query the available
14819         input modules and write the results into a file.
14820          
14821         * gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
14822         extra config options "im_module_file" (cache file for
14823         input method modules), and "im_module_path" - path
14824         to look for modules when generating cache file.
14825
14826         This doesn't scale.
14827
14828 Sat Sep 16 13:09:06 2000  Owen Taylor  <otaylor@redhat.com>
14829
14830         * gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the 
14831         generic code from gtkthemes into a new abstraction
14832         GtkModule which has the logic for implementing
14833         a loadable module which implements a number of 
14834         GObject types.
14835
14836 Sat Sep 16 13:07:13 2000  Owen Taylor  <otaylor@redhat.com>
14837
14838         * gtk/gtkeditable.[ch]: Convert GtkEditable from
14839         a class into an interface  
14840         
14841         * gtk/gtkoldeditable.[ch]: Move the old editable
14842         implementation into here, so legacy widgets can
14843         still rely on the implemenation. GtkOldEditable
14844         exports GtkEditable. Make selection handling
14845         code use new text conversion functions (and
14846         handle UTF-8 as a side-effect). Use GtkClipboard
14847         for CLIPBOARD.
14848
14849         * gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
14850         Adopt to match above changes.
14851
14852         * gtk/gtkentry.[ch]: Implement GtkEditable directly,
14853         avoid GtkOldEditable implementation. Restructure
14854         to reduce number of places that modify state directly.
14855         Move to GtkBindingSet. Display the preedit string.
14856         Queue recomputation of PangoLayout and scroll position
14857         to improve effiency of doing complex changes naively.
14858         Add a menu with cut/copy/paste and input method selection.
14859
14860 Thu Sep 14 22:11:05 2000  Owen Taylor  <otaylor@redhat.com>
14861
14862         * gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
14863         to set preedit string and attributes; display preedit string by
14864         inserting string and attributes at cursor when creating the
14865         GtkTextLineDisplay.
14866
14867         * gtk/gtktextlayout.c: Move all conversions between byte
14868         positions in PangoLayout and GtkTextIter into new functions
14869         line_display_iter_to_index/index_to_iter that properly
14870         handle the preedit string.
14871
14872         * gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
14873         it to return const char * (eventually will end up
14874         as GCONST char *, most likely.)
14875
14876         * gtk/gtktextview.[ch]: Handle the preedit string, call
14877         gtk_im_context_reset() as necessary, add a menu to switch
14878         input methods.
14879         
14880         * gtk/gtktextlayout.[ch]: Remove useless
14881         gtk_text_layout_get_log_attrs() function.
14882
14883 2000-11-11  Tor Lillqvist  <tml@iki.fi>
14884
14885         * gdk/gdk.def
14886         * gtk/gtk.def: Update.
14887
14888         * gdk/win32/*.c: Add last argument to g_type_register_static()
14889         calls.
14890
14891         * gdk/win32/gdkwindow-win32.c: Silence gcc -Wall.
14892
14893         * gdk/win32/gdkevents-win32.c: Handle MSH_MOUSEWHEEL messages
14894         generated by older wheel mouse drivers. Get the correct y
14895         coordinate from WM_MOUSEWHEEL messages.
14896
14897         * gdk/win32/gdkgc-win32.c (gdk_win32_cap_style_to_string,
14898         gdk_win32_fill_style_to_string, gdk_win32_function_to_string,
14899         gdk_win32_join_style_to_string, gdk_win32_line_style_to_string):
14900         Debugging functions.
14901
14902         * gdk/win32/gdkprivate-win32.h: Declare them.
14903
14904         * gdk/win32/gdkinput-win32.h: Add declaration for
14905         gdk_input_window_destroy().
14906
14907         * gtk/makefile.mingw.in: Pass -DGTK_VERSION. Add gtktreemodel.o.
14908
14909 Fri Nov 10 19:06:41 2000  Jonathan Blandford  <jrb@redhat.com>
14910
14911         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): New
14912         function to help handle keeping things in sync.
14913
14914 Fri Nov 10 12:10:34 2000  Jonathan Blandford  <jrb@redhat.com>
14915
14916         * gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
14917         BOXED marshallers.
14918
14919         * gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
14920         (gtk_list_store_class_init): use the new BOXED marshallers.
14921
14922         * gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
14923         new_with_values to new_with_types.
14924         (gtk_tree_store_get_column_type): add this.
14925         (gtk_tree_store_class_init): use the new BOXED marshallers.
14926
14927         * gtk/gtkmarshal.list: Added a number of BOXED marshallers to
14928         mirror some POINTER marshallers.
14929
14930 Thu Nov  9 11:23:22 2000  Jonathan Blandford  <jrb@redhat.com>
14931
14932         * gtk/gtktreemodel.h (struct _GtkTreeIter): added more fields to
14933         allow more interesting iterators.  Also, made the lifecycle of
14934         iterators more explicit.
14935
14936         * gtk/gtktreemodelsort.[ch]: New model for sorting.
14937
14938         * gtk/gtk-boxed.defs (GtkTreeIter, GtkTreePath): Added two boxed
14939         types.
14940
14941 2000-11-09  Alexander Larsson  <alexl@redhat.com>
14942
14943         * demos/testgtk/menus.c:
14944         Changes to make the new testgtk compile after
14945         gtk_menu_append was removed.
14946
14947         * gdk/linux-fb/gdkdrawable-fb2.c
14948         (gdk_fb_get_depth, gdk_fb_get_visual,
14949         gdk_drawable_impl_fb_class_init): Implement
14950         these drawable functions. Now GtkImages work again.
14951
14952         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Change prototype.
14953
14954         * gdk/linux-fb/gdkprivate-fb.h (_gdk_fb_get_image): Change prototype.
14955         
14956         * gdk/linux-fb/gdkmain-fb.c (fb_modes_parse_mode,
14957         gdk_fb_setup_mode_from_name, gdk_fb_set_mode, gdk_fb_display_new);
14958         Parse /etc/fb.modes, use the environment variables GDK_DISPLAY_MODE,
14959         GDK_DISPLAY_DEPTH, GDK_DISPLAY_WIDTH, GDK_DISPLAY_HEIGHT.
14960
14961 2000-11-08  Havoc Pennington  <hp@pobox.com>
14962
14963         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add visible and
14964         visible_set args, don't know where these had gone, I thought they
14965         used to be there
14966
14967         * gtk/testtext.c: Add a menu item to apply invisibility tag;
14968         now we can test the feature and see that it's totally broken.
14969
14970 2000-11-08  Havoc Pennington  <hp@pobox.com>
14971
14972         Make DND copy pixbufs and tags when source and target share a 
14973         tag table.
14974         
14975         * gtk/gtktextview.c (gtk_text_view_drag_data_get): provide the
14976         in-process GTK_TEXT_BUFFER_CONTENTS target
14977         (gtk_text_view_drag_data_received): Paste from
14978         GTK_TEXT_BUFFER_CONTENTS if we receive it.
14979
14980 2000-11-08  Alexander Larsson  <alexl@redhat.com>
14981
14982         * docs/Changes-2.0.txt: Add note about GtkMenuPositionFunc
14983         API changes.
14984
14985         * gtk/gtkmenu.c: Add support for scrolling menus.
14986         Remove gtk_menu_append/prepend/insert, these have been moved to
14987         gtkcompat.h as #defines.
14988
14989         * gtk/gtkcompat.h.in:
14990         Add compatibility #defines for gtk_menu_append/prepend/insert
14991
14992         * gtk/gtkmenu.h: Add data needed for scrolling menus.
14993         GtkMenuPositionFunc gets an extra argument push_in.
14994         gtk_menu_append/prepend/insert removed.
14995         
14996         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Change menu
14997         positioning behaviour to fit to scrolling menus.
14998
14999         * gtk/gtkmenuitem.c (gtk_menu_item_forall): Don't recurse
15000         into menuitem->submeny. That is wrong, and broke torn
15001         off submenus of torn off menus, since they were unrealized
15002         when the first menu was unrealized.
15003
15004         * gtk/gtkmenushell.[ch]: Virtualize gtk_menu_shell_insert() and
15005         gtk_menu_shell_select_item() since these need to be overridden in
15006         GtkMenu.
15007
15008         * gtk/gtkoptionmenu.c (gtk_opttion_menu_position): Change menu
15009         positioning behaviour to fit to scrolling menus.
15010         (gtk_option_menu_key_press, gtk_option_menu_button_press): Select
15011         the current item so that it is prelighted when the menu pops up.
15012         This is a workaround to the fact that the menu doesn't get the
15013         initial enter event (due to grabs).
15014
15015         * gtk/gtkfilesel.c, gtk/gtkinputdialog.c, gtk/testgtk.c:
15016         s/gtk_menu_append/gtk_menu_shell_append/
15017
15018         * gtk/gtknotebook.c:
15019         s/gtk_menu_insert/gtk_menu_shell_insert/
15020
15021         * gtk/testgtk.c (create_menu, create_menus):
15022         Create the first menu with 50 items so that menu scrolling
15023         can be tested.
15024         
15025         
15026         Patch from Jonathan Blandford  <jrb@redhat.com>
15027
15028         * gtk/gtkmenuitem.[ch] (gtk_menu_item_toggle_size_request): new
15029         system to handle size requests.  First, we ask what the size of
15030         the toggle is.  Then, when allocating the size, we allocate the
15031         toggle_size first.  This way we can have multiple menu-item
15032         classes w/o needing a seperate class for each.
15033
15034         * gtk/gtkmenu.c (gtk_menu_size_request): Actually use the new system.
15035         * gtk/gtkmenu.c (gtk_menu_size_allocate): Use the new system.
15036
15037         * gtk/gtkcheckmenuitem.c
15038         (gtk_check_menu_item_toggle_size_request): New function to handle
15039         the toggle size-request.
15040
15041 2000-11-07  Havoc Pennington  <hp@redhat.com>
15042
15043         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location):
15044         Half-ass somewhat fix this function, so that scrolling to the
15045         insertion point works. Pango hacking is in the future to really
15046         fix it.
15047
15048         * gtk/gtktextview.c (gtk_text_view_drag_data_get): Don't calculate
15049         length of data, no longer used.
15050
15051         * gtk/gtktextbuffer.c (gtk_text_buffer_finalize): move destroy
15052         method contents in here, get rid of destroy method
15053         (gtk_text_buffer_insert_range): Fix some g_return_if_fail checks
15054         that were backward. Remove debug spew.
15055         (cut_or_copy): Make the clipboard work with insert_range to
15056         preserve tags and pixbufs, not just the primary selection.
15057
15058 2000-11-07  Havoc Pennington  <hp@redhat.com>
15059
15060         * gtk/gtktextmark.c (gtk_text_mark_is_visible): rename 
15061         to gtk_text_mark_get_visible
15062
15063         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): fix
15064         bug that was generating an invalid iterator
15065
15066         * gtk/gtktextiter.c (gtk_text_iter_get_offset): move call to
15067         ensure_char_offsets() in front of code placing the iter in an
15068         invalid state.
15069
15070         * gtk/gtktextbuffer.c (gtk_text_buffer_paste_primary):
15071         make override_location arg const
15072         (paste): Replace the selection if we paste into the 
15073         current selection
15074
15075         * gtk/gtkselection.h: Remove "GtkSelectioData"
15076         (struct _GtkSelectionData): move the definition here.
15077
15078         * gtk/gtktextbuffer.c (gtk_text_buffer_update_primary_selection):
15079         Export the GTK_TEXT_BUFFER_CONTENTS target for in-process copies
15080
15081         * gtk/gtktextiter.c (gtk_text_iter_get_tags): New function
15082
15083         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_range): implement
15084         (gtk_text_buffer_insert_range_interactive): implement
15085         (gtk_text_buffer_get_tags): Remove, replaced by
15086         gtk_text_iter_get_tags()
15087
15088         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Add a search
15089         limit parameter, to avoid infinite linear scan.
15090         (gtk_text_iter_backward_search): Add search limit
15091         (gtk_text_iter_forward_find_char): Add search limit
15092         (gtk_text_iter_backward_find_char): Add search limit
15093
15094 2000-11-07  Alexander Larsson  <alla@lysator.liu.se>
15095
15096         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
15097         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkimage-fb.c,
15098         gdk/linux-fb/gdkpango-fb.c, gdk/linux-fb/gdkpixmap-fb.c,
15099         gdk/linux-fb/gdkwindow-fb.c:
15100         use g_object_new() instead of g_type_create_instance() which
15101         is a private function for fundamental type implementations.
15102
15103         * gdk/linux-fb/gdkinput-ps2.c:
15104         Use MEDIUMRAW instead of RAW keycodes. Remove keyboard state-table
15105         instead just store the current modifier state. Add a (somewhat broken)
15106         keyboard input parser for XLATE mode too, if we couldn't use MEDIUMRAW.
15107         Rename exported function gdk_input_ps2_get_mouseinfo to
15108         gdk_input_get_mouseinfo.
15109
15110         * gdk/linux-fb/gdkmain-fb.c, gdk/linux-fb/gdkprivate-fb.h,
15111         gdk/linux-fb/gdkwindow-fb.c:
15112         gdk_input_ps2_get_mouseinfo was renamed to gdk_input_get_mouseinfo.
15113         
15114
15115 2000-11-02  Havoc Pennington  <hp@redhat.com>
15116
15117         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
15118         use stock buttons. Should be 100% source compatible, appropriate
15119         filesel fields now point to dialog->vbox and dialog->action_area.
15120         On the bizarre side, dialog->action_area and filesel->action_area
15121         are not the same widget.
15122         (gtk_file_selection_init): Put some padding around the selection
15123         entry, so it isn't touching the GtkDialog separator.    
15124
15125         * gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog, 
15126         use stock buttons, etc. Should also be source compatible.
15127         Set the dialog default title in _init not _new().
15128         
15129         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
15130         Use stock buttons; don't put a button box inside the existing
15131         dialog button box. Don't bother with push/pop colormap anymore.
15132
15133         * gtk/gtkdialog.h (GtkResponseType): Add a bunch of more 
15134         specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
15135         for message dialog, and necessary for the font selection and color
15136         selection with help and apply buttons.
15137         
15138         * gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer 
15139         to the created button widget. Set GTK_CAN_DEFAULT on the button.
15140         (gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
15141         between buttons, put less padding around the action area.
15142         (gtk_dialog_run): Exit on unmap rather than on destroy. 
15143         This will also exit the loop if the widget is hidden.
15144         (gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
15145         instead of GTK_RESPONSE_NONE; since we're already adding a bunch
15146         of GTK_RESPONSE_* stuff, this seems cleaner, and lets you 
15147         special-case delete event.
15148
15149         * gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
15150         formatting
15151         
15152 Sun Nov  5 05:32:39 2000  Tim Janik  <timj@gtk.org>
15153
15154         * gtk/testgtk.c (uposition_stop_configure): provide a toggle
15155         button to temporarily disable position recording in the
15156         "saved position" test.
15157
15158 Sat Nov  4 05:37:17 2000  Tim Janik  <timj@gtk.org>
15159
15160         * gtk/gtkthemes.c: added compat code that temporarily implements
15161         GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
15162         going to be revamped by owen's upcoming GtkModule patches, but
15163         untill then people want gtk to build, right? ;)
15164
15165 2000-11-04  Havoc Pennington  <hp@pobox.com>
15166
15167         * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member
15168         list
15169
15170         * docs/Changes-2.0.txt: Add note about
15171         gtk_container_get_toplevels()
15172
15173         * gtk/gtktextview.h: formatting
15174         
15175         * gtk/gtktextview.c: don't start descriptions with "Returns",
15176         confuses gtk-doc
15177
15178 Sat Nov  4 10:12:27 2000  Owen Taylor  <otaylor@redhat.com>
15179
15180         * autogen.sh: When doing sanity checking on ACLOCAL_FLAGS,
15181         look for glib-2.0.m4 not glib.m4. (Ali Abdin)
15182
15183 2000-11-03  Havoc Pennington  <hp@redhat.com>
15184
15185         * gtk/gtktexttagtable.c: Docs
15186         (gtk_text_tag_table_size): return a signed int
15187
15188         * gtk/gtktexttag.c: s/tkxt/text/g; write documentation
15189         (gtk_text_tag_event): make the event_object a GObject
15190
15191         * gtk/gtktextview.c: Write API docs for all functions.
15192
15193         * gtk/gtktextview.h: add GTK_TEXT_WINDOW_PRIVATE as return value
15194         for gtk_text_view_get_window_type() called on one of the private
15195         windows.
15196
15197         * gtk/gtktextview.c: Instead of accessing text_view->buffer
15198         directly, call get_buffer() which demand-creates a default
15199         buffer. So gtk_text_view_new() can be used to create a view with a
15200         default buffer in it, if you just want an empty text box users can
15201         put data in. Useful for GUI builders also.
15202
15203 2000-11-03  Pablo Saratxaga <pablo@mandrakesoft.com>
15204
15205         * gtk/gtkrc.zh_TW.*: moved gtkrc.zh_TW.Big5 to gtkrc.zh_TW.big5;
15206         the charset encodign portion MUST be in lowercase.
15207         * gtk/gtkrc.az: added file for Azeri language
15208
15209 2000-11-03  Havoc Pennington  <hp@redhat.com>
15210
15211         Get widgets working on the btree/buffer side. Display of them 
15212         still doesn't work.
15213         
15214         * gtk/gtktextview.c: start implementing child widget stuff
15215
15216         * gtk/gtktextiter.c (gtk_text_iter_get_child_anchor): new function
15217
15218         * gtk/gtktextlayout.c: handle embedded widgets
15219
15220         * gtk/gtktextdisplay.c: handle embedded widgets
15221
15222         * gtk/gtktextchild.c: Implement all the child anchor goo
15223
15224         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor): New
15225         function
15226
15227         * gtk/gtktextbtree.c: Add child anchor table to the btree struct
15228         (insert_pixbuf_or_widget_segment): abstract out common portions of 
15229         creating a child anchor or a pixbuf segment.
15230         (gtk_text_btree_create_child_anchor): new function
15231         (gtk_text_btree_unregister_child_anchor): new function
15232
15233         * gtk/gtkmarshal.list: added VOID:OBJECT,INT,INT for the
15234         allocate_child signal on GtkTextLayout
15235
15236         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): fix bogus return
15237         values
15238         (gtk_text_iter_get_child_anchor): new function
15239
15240         * gtk/gtktextbuffer.c (gtk_text_buffer_real_changed): Add a
15241         default handler for the changed signal, which calls
15242         gtk_text_buffer_set_modified(), instead of just always emitting
15243         changed then calling set_modified() manually. I guess this is
15244         maybe more flexible. It seems logical.
15245
15246 Fri Nov  3 08:58:38 2000  Tim Janik  <timj@gtk.org>
15247
15248         * gtk/gtkobject.c: _g_signal_handlers_destroy() is prefixed with '_'
15249         now.
15250
15251         * gtk/gtksignal.c: use g_signal_connect_closure_by_id() now.
15252
15253 Thu Nov  2 14:10:51 2000  Owen Taylor  <otaylor@redhat.com>
15254
15255         * gdk/x11/gdkdnd-x11.c: Fix a bunch of functions that should have
15256         been marked static.
15257
15258 2000-11-02  Havoc Pennington  <hp@redhat.com>
15259
15260         * gtk/testgtk.c (create_labels): had a test backward
15261
15262         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Copy the client-side GC
15263         fields, so the dest GC ends up with the correct clip origin, 
15264         etc. Fixes a bug where colored labels didn't redraw 
15265         properly.
15266
15267 2000-11-02  Alexander Larsson  <alexl@redhat.com>
15268
15269         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
15270         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkpango-fb.c,
15271         gdk/linux-fb/gdkpixmap-fb.c, gdk/linux-fb/gdkwindow-fb.c:
15272         Add last argument to t_type_register_static call.
15273         
15274         * gdk/linux-fb/gdkdrawable-fb2.c:
15275         Add last argument to t_type_register_static call.
15276         export the get_image drawable virtual function.
15277
15278         * gdk/linux-fb/gdkimage-fb.c:
15279         Add last argument to t_type_register_static call.
15280         rename gtk_image_get to _gdk_fb_get_image and
15281         export it for use by gdkdrawable-fb2.
15282
15283         * gdk/linux-fb/gdkprivate-fb.h:
15284         export _gdk_fb_get_image.
15285
15286         * gdk/linux-fb/gdkselection-fb.c:
15287         Add new api call stubs.
15288
15289         * gtk/Makefile.am:
15290         Missing ( in linux-fb part.
15291
15292         * modules/linux-fb/Makefile.am:
15293         Must link with gdk_pixbuf or get unresolved symbol.
15294
15295 2000-11-01  Havoc Pennington  <hp@pobox.com>
15296
15297         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Use 
15298         GTK_TYPE_TEXT_ITER and BOXED marshallers
15299
15300         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): ditto
15301
15302         * gtk/gtktexttag.c (gtk_text_tag_class_init): ditto
15303         
15304         * gtk/gtk-boxed.defs: add GtkTextIter
15305
15306         * gtk/gtkmarshal.list: Add marshallers for text widget that 
15307         properly use OBJECT and BOXED
15308
15309 2000-11-01  Havoc Pennington  <hp@redhat.com>
15310
15311         * gtk/testgtk.c (create_labels): Test set_markup_with_accel()
15312
15313         * gtk/gtklabel.c (set_markup): Convert the unichar to a GDK keyval
15314         before returning it. 
15315         
15316 2000-11-01  Havoc Pennington  <hp@redhat.com>
15317
15318         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
15319         Clip the rectangle to be rendered to the drawable, since
15320         get_from_drawable() requires a region within the drawable
15321
15322 2000-11-01  Havoc Pennington  <hp@redhat.com>
15323
15324         * gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
15325         from coordinates.
15326
15327 Wed Oct 25 20:10:57 2000  Owen Taylor  <otaylor@redhat.com>
15328
15329         * gdk/gdkevents.c (gdk_event_copy): Only ref the window if
15330         it isn't NULL.
15331
15332 2000-11-01  Havoc Pennington  <hp@pobox.com>
15333
15334         * gtk/gtklabel.c (gtk_label_set_attributes): Set a PangoAttrList
15335         on a label
15336         (gtk_label_finalize): unref the attr list if any.
15337
15338         * gtk/testgtk.c (create_get_image): close test on second click
15339         (make_message_dialog): close dialog if it exists
15340
15341         * gdk/gdkpango.c (gdk_draw_layout): Handle rise attribute
15342
15343         * gdk-2.0.pc.in (Requires): Make it require gdk-pixbuf-2.0 not
15344         gdk-pixbuf
15345
15346         * gtk/gtklabel.c (gtk_label_set_markup): new function to set label
15347         from Pango markup format
15348         (gtk_label_set_markup_with_accel): ditto but with accelerator
15349         parsing
15350
15351         * gtk/gtkimage.c (gtk_image_expose): reformatting.
15352
15353         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable): Hack to
15354         reflect current state of GDK - use gdk_drawable_get_colormap, etc.
15355         Check GDK_IS_WINDOW() not !GDK_IS_PIXMAP() to decide whether to 
15356         call gdk_window_get_origin().
15357
15358         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
15359         implement GDK_PIXBUF_ALPHA_FULL
15360         
15361 Wed Nov  1 03:43:42 2000  Tim Janik  <timj@gtk.org>
15362
15363         * gtk/gtksignal.c (gtk_signal_compat_matched): make use of
15364         g_signal_handlers_block_matched, g_signal_handlers_unblock_matched and
15365         g_signal_handlers_disconnect_matched to block/unblock and disconnect
15366         multiple handlers respectively, instead of only treating the
15367         first handler found (bug reported by owen).
15368
15369 Mon Oct 30 19:23:50 2000  Jonathan Blandford  <jrb@redhat.com>
15370
15371         * gtk/gtktreeview.c (gtk_tree_view_expand_row): New function.
15372
15373         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): New function.
15374
15375         * gtk/gtktreeview.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c
15376         gtk/gtktreestore.h, gtk/gtktreeview.h, gtk/gtktreeviewcolumn.c,
15377         gtk/gtktreeviewcolumn.h: Fixed inline docs.
15378
15379         * docs/reference/gtk/tree_widget.sgml: Proto intro to the tree
15380         widget.  Needs writing someday.
15381
15382         * docs/reference/gtk/tmpl/gtktree*sgml: Added the tree widget to
15383         the docs.
15384
15385 2000-10-30  Havoc Pennington  <hp@redhat.com>
15386
15387         * gtk/gtktextview.h, gtk/gtktextview.c:
15388         Rename delete_at_cursor delete_from_cursor, and 
15389         move to move_cursor.
15390
15391 2000-10-30  Havoc Pennington  <hp@redhat.com>
15392
15393         * gtktextbtree.c, gtktextbtree.h, gtktextbuffer.c,
15394         gtktextbuffer.h, gtktextchild.c, gtktextchild.h,
15395         gtktextchildprivate.h, gtktextdisplay.c, gtktextdisplay.h,
15396         gtktextiter.c, gtktextiter.h, gtktextiterprivate.h,
15397         gtktextlayout.c, gtktextlayout.h, gtktextmark.c, gtktextmark.h,
15398         gtktextmarkprivate.h, gtktextsegment.c, gtktextsegment.h,
15399         gtktexttag.c, gtktexttag.h, gtktexttagprivate.h,
15400         gtktexttagtable.c, gtktexttagtable.h, gtktexttypes.c,
15401         gtktexttypes.h, gtktextview.c, gtktextview.h:
15402
15403         Massive reindentation and reformatting. Arg alignment and comments
15404         still need fixing in various places.
15405
15406 2000-10-30  Havoc Pennington  <hp@redhat.com>
15407
15408         * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals
15409         to be named insert_at_cursor and delete_at_cursor so C++ can
15410         handle them.
15411
15412 2000-10-28  Tor Lillqvist  <tml@iki.fi>
15413
15414         * gtk/gtkrc.c (gtk_rc_append_default_module_path): Make sure not
15415         to get a double directory separator in case the home directory
15416         ends with one. This would cause trouble especially on Windows,
15417         where the path will be confused with the syntax for an an UNC
15418         (network share) path \\server\share\path.
15419         (gtk_rc_add_initial_default_files): Ditto.
15420
15421 Sat Oct 28 02:33:09 2000  Robert Brady  <robert@suse.co.uk>
15422
15423         * gtk/gtkmarshal.list: add new marshallers for GtkTextView.
15424
15425         * gtk/gtktextview.c: Use correct marshallers.
15426
15427 Fri Oct 27 17:56:26 2000  Jonathan Blandford  <jrb@redhat.com>
15428
15429         * gtk/gtkliststore.c: Not sure how this ever worked.  Fixed it to
15430         use new iter stuff, and added all the appropriate signals et al.
15431
15432         * gtk/gtktreedatalist.h: s/gtk/_gtk to further reinforce that this
15433         code is internal to gtk only.
15434
15435 2000-10-28  Tor Lillqvist  <tml@iki.fi>
15436
15437         * gtk/gtk.def
15438         * gtk/makefile.{mingw,msc}.in: Adjust to Tim's changes. Use
15439         glib-genmarshal etc.
15440
15441 Fri Oct 27 20:15:00 2000  Tim Janik  <timj@gtk.org>
15442
15443         * gtk/Makefile.am: added dependancies for testtextbuffer which broke
15444         parallel builds.
15445
15446 Fri Oct 27 18:51:44 2000  Tim Janik  <timj@gtk.org>
15447
15448         * gtk/gtksignal.[hc]: adapt to GSignal signature changes.
15449
15450 2000-10-27  Robert Brady  <robert@suse.co.uk>
15451
15452         * configure.in (ALL_LINGUAS): Add en@IPA (English, phonetic), 
15453         en_GB (British), ia (Interlingua).
15454
15455 2000-10-26  Havoc Pennington  <hp@redhat.com>
15456
15457         * gtk/gtktextiter.c (my_strrstr): fix constness warning
15458
15459         Fixed output of:
15460         nm -g -l .libs/libgtk-x11-1.3.so | grep ' T ' | grep -v gtk_ | grep -v GTK_
15461         
15462         * gtk/gtktextsegment.c (char_segment_new): rename
15463         (_char_segment_new_from_two_strings): rename
15464         (_toggle_segment_new): rename
15465         
15466         * gtk/gtkclipboard.c (ensure_clipboard_widget): make this static
15467         (make_clipboard_widget): make it static
15468         (text_get_func): static
15469         (text_clear_func): static
15470
15471         * gtk/gtkcolorsel.c (adjustment_changed): make this function
15472         static
15473         (hex_changed): make it static
15474         (hsv_changed): make it static
15475         (opacity_entry_changed): make it static
15476
15477         * gtk/gtktextbtree.c (change_node_toggle_count): rename with _gtk
15478         (toggle_segment_check_func): rename with _gtk
15479
15480         * gtk/gtktextchild.c (_pixbuf_segment_new): rename with _gtk
15481         (_widget_segment_new): rename
15482         (_widget_segment_add): rename
15483         (_widget_segment_remove): rename
15484         (_widget_segment_ref): rename
15485         (_widget_segment_unref): rename
15486
15487         * gtk/gtktextmark.c (_mark_segment_new): Rename
15488         _gtk_mark_segment_new   
15489
15490 2000-10-26  Havoc Pennington  <hp@redhat.com>
15491
15492         * gtk/gtkmarshal.list: add new marshallers used by the text widget
15493         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
15494         types
15495
15496         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
15497         marshaller types
15498
15499         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
15500         gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
15501         license on these files.
15502
15503         * gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
15504         work.
15505
15506         * gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to 
15507         runtime random number different for each tree, instead of 
15508         a constant I made up.
15509
15510 Thu Oct 26 07:36:16 2000  Tim Janik  <timj@gtk.org>
15511
15512         * gtk/Makefile.am: buncha cleanups, kludged build sources
15513         dependencies with a Makefile: oldest-source-stamp dependancy
15514         for the moment. automake is really fighting us here, with
15515         intentionally not allowing user-defined rules or dependancies
15516         prior to it's -include $(DEP_FILES) statement. sucks rocks!
15517
15518         * gtk/Makefile.am: added gtktextlayout.h and gtktextdisplay.h
15519         to public headers. tehy have a comment stating that they are
15520         "semi-public" aren't included by gtk.h and if enums popup there,
15521         they can be /*< skip >*/-ed.
15522
15523         * gtk/gtktextlayout.h: 
15524         * gtk/gtktextdisplay.h: indentation fixes, comment fixes,
15525         added LGPL... <SIGH>
15526
15527 Wed Oct 25 20:40:25 2000  Jonathan Blandford  <jrb@redhat.com>
15528
15529         * gtk/gtktreemodel.h: Got rid of GtkTreeNode, and changed it to
15530         GtkTreeIter.  Added iterators everywhere.
15531
15532         * gtk/gtktreeviewcolumn.c: Changed to use the iterators.
15533
15534         * gtk/gtktreeviewselection.c: Changed to use the iterators.
15535
15536         * gtk/gtktreestore.c: Changed to use the iterators.
15537
15538         * gtk/gtkliststore.c: Commented out the code.  Will convert to
15539         iterators tomorrow.
15540
15541         * gtk/gtkmodelsimple.c: Commented out the code.  Will convert to
15542         iterators tomorrow.
15543
15544         * gtk/treestoretest.c: Changed to use iterators.
15545
15546         * demos/testgtk/main.c: Moved to use the new iterator system.
15547
15548 Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>
15549
15550         * gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
15551         localization misbehaviour.
15552
15553         * gtk/gtk-boxed.defs: nuked "boxed" type GtkCTreeNode, since it's
15554         a useless type without copy/free.
15555
15556         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_TYPE_POINTER instead
15557         of GTK_TYPE_CTREE_NODE.
15558
15559 Thu Oct 26 00:51:52 2000  Tim Janik  <timj@gtk.org>
15560
15561         * gtk/gtksignal.c:
15562         (gtk_signal_emitv): use g_value_set_static_{string|boxed} where
15563         applicable.
15564
15565         * gtk/gtk-boxed.defs (GtkSelectionData): specify
15566         gtk_selection_data_copy and gtk_selection_data_free
15567         do GtkSelectionData work as params in signals.
15568
15569 Wed Oct 25 20:47:41 2000  Tim Janik  <timj@gtk.org>
15570
15571         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
15572         implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
15573         couldn't they at least give it a non-standard name?
15574         
15575         * gtk/gtktextlayout.c: arg! yet another implementation of
15576         gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
15577
15578         * gtk/gtktextbuffer.c: gotcha! captured a vagabonding
15579         gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
15580         home. now i know this _is_ a conspiracy.
15581
15582         * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
15583         ::state-changed.
15584
15585         * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): 
15586         (gtk_accel_group_create_add): marshaller signature fixups.
15587
15588         * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
15589         pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
15590
15591         * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
15592         anymore.
15593
15594 Tue Oct 24 23:59:21 2000  Tim Janik  <timj@gtk.org>
15595
15596         * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
15597         due to the signal system changes, it wouldn't build currently. to
15598         be fixed soon.
15599
15600         * docs/Changes-2.0.txt: GtkSignal/GSignal updates.
15601
15602         * gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
15603         so it needs gtk_marshal_VOID__ENUM() instead of
15604         gtk_marshal_NONE__UINT().
15605
15606         * gdk/gdk*.c: adapted type registration functions.
15607
15608         * gtk/gtkbindings.c:
15609         * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
15610         gone.
15611
15612         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
15613
15614         * gtk/gtkobject.c:
15615         (gtk_object_destroy):
15616         (gtk_object_shutdown): fixed recursion guards. basically we have to
15617         catch the case where any of GObject.shutdown() or gtk_object_destroy()
15618         is called during ::destroy, and avoid recursion there.
15619
15620         * gtk/gtktypeutils.c:
15621         * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
15622         boxed_copy/boxed_free. this needs a more general solution based on a
15623         publically installed code-generator utility.
15624
15625         * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
15626         glib's gobject has support for that now.
15627         define GtkSignalMarshaller in terms of GSignalCMarshaller.
15628
15629 Mon Oct 23 09:36:42 2000  Tim Janik  <timj@gtk.org>
15630
15631         * gtk/gtksignal.[hc]:
15632         * gtk/gtkmarshal.[hc]:
15633         * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
15634         compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
15635         removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
15636         care of that.
15637
15638         * *.c: marshaller name fixups.
15639
15640         * gtk/gtkmarshal.list: added a comment briefing the format.
15641
15642 Sun Oct 22 23:14:39 2000  Tim Janik  <timj@gtk.org>
15643
15644         * gtk/gtksignal.[hc]: nuked old implementation. we mostly have
15645         compatibility macros here now. more specifically, most of
15646         the API is preserved (yes, _most_, nonwithstanding the
15647         following exceptions listed, the API is stil lHUGE ;)
15648         things that got removed completely:
15649         GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
15650         gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
15651         gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
15652         gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
15653         gtk_signal_remove_emission_hook().
15654         non-functional functions variants:
15655         gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
15656         the GtkCallbackMarshal argument to gtk_signal_connect_full() is
15657         not supported anymore.
15658         (gtk_signal_compat_matched): new internal function to aid
15659         implementation of the compatibility macros, it  provides
15660         functionality to block/unblock/disconnect handlers based
15661         on func/data.
15662
15663         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
15664
15665         * *.c: adaptions to new type registration API signatures.
15666
15667 Fri Oct 20 15:26:33 2000  Tim Janik  <timj@gtk.org>
15668
15669         * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
15670
15671 2000-10-25  Robert Brady  <robert@suse.co.uk>
15672
15673         * gdk/x11/gdkproperty-x11.c (gdk_property_get, gdk_property_change,
15674         gdk_property_delete): If window == NULL, assume the root window.
15675         (restoring the behaviour that was in 1.2).
15676         
15677         * gtk/testtext.c (save_buffer): Allow creation of new files when
15678         saving.
15679
15680         (fill_file_buffer): Don't die if a UTF-8 sequence is split across
15681         calls to read().
15682
15683 2000-10-25  Tor Lillqvist  <tml@iki.fi>
15684
15685         * gdk/gdkwindow.c: Include x11/gdkx.h only when building for X11.
15686
15687         * gdk/win32/gdkdrawable-win32.c
15688         * gdk/win32/gdkimage-win32.c
15689         * gdk/win32/gdkprivate-win32.h: Corresponding changes as in the
15690         X11 backend.
15691
15692         * gdk/win32/gdkcc-win32.c
15693         * gdk/win32/gdkcolor-win32.c
15694         * gdk/win32/gdkfont-win32.c
15695         * gdk/win32/gdkinput-win32.c
15696         * gdk/win32/gdkmain-win32.c
15697         * gdk/win32/gdkproperty-win32.c: Silence gcc -Wall.
15698
15699 2000-10-24  Havoc Pennington  <hp@redhat.com>
15700
15701         * gtk/gtktextview.c (gtk_text_view_scroll_to_mark_adjusted): make
15702         it a static function
15703
15704         * gtk/gtktextbtree.c (gtk_text_btree_tag): Gee, maybe we should
15705         redraw text when a tag is applied to it.
15706
15707         * gtk/gtktexttag.c (gtk_text_tag_affects_size)
15708         (gtk_text_tag_affects_nonsize_appearance): private functions to
15709         see if a tag requires various kinds of redraw/layout to be queued
15710         up.
15711
15712         * gtk/gtktexttag.h (struct _GtkTextTag): Remove relief crackrock
15713
15714         * gtk/testtext.c (fill_example_buffer): Put the cursor 
15715         at the start of the buffer, so search works by default
15716
15717         * gtk/gtktextiter.c (lines_match): init match_start always
15718
15719         * gtk/gtktextbuffer.c (gtk_text_buffer_get_iter_at_line_index): New
15720         function, get iter at a line + a byte index
15721
15722         * gtk/gtktextiter.c (gtk_text_iter_set_line_index): New function,
15723         to set byte position within a line
15724         (gtk_text_iter_check): remove leftover G_BREAKPOINT thing
15725
15726 2000-10-23  Havoc Pennington  <hp@redhat.com>
15727
15728         * gtk/testtext.c: Re-enable the "find" dialog
15729
15730         * gtk/testgtk.c: Add test for gdk_drawable_get_image
15731         
15732         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix bug where
15733         the arguments to gdk_draw_drawable were in the wrong order
15734         (gdk_window_paint_init_bg): This function was ignoring the
15735         init_region, instead of clipping to it, so the entire backing
15736         pixmap was cleared on every begin_paint()
15737         (gdk_window_begin_paint_region): Hmm, the same list-walking bug
15738         was in here again, the loop kept using the same GtkWindowPaint
15739         over and over.
15740         (gdk_window_begin_paint_region): Fix a bug where we had two
15741         x_offset instead of x_offset and y_offset
15742
15743         * gdk/gdkdraw.c (gdk_drawable_get_image): get composite drawable
15744         before we get the image.
15745         (gdk_draw_drawable): get the composite before we draw the drawable.
15746         (gdk_drawable_real_get_composite_drawable): default
15747         get_composite_drawable implementation that returns the drawable 
15748         itself
15749
15750         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Add
15751         get_composite_drawable virtual function
15752
15753         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix a cheesy
15754         list-walking bug
15755
15756         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable): Add a hack to
15757         make this work if the source drawable is a GdkDrawableImplX11
15758         instead of a public drawable type. This is really broken; the
15759         problem is that GdkDrawable needs a virtual method get_xid(), but
15760         of course that doesn't work in practice. Enter RTTI.
15761
15762         Also, improve mismatched depth message.
15763
15764         * gdk/gdkpixmap.c (gdk_pixmap_get_image): Implement get_image for
15765         GdkPixmap
15766
15767         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_class_init):
15768         install _gdk_x11_get_image as our implementation of get_image
15769         
15770         * gdk/x11/gdkimage-x11.c (gdk_image_get): Rename to
15771         _gdk_x11_get_image and export for use in gdkdrawable-x11.c
15772
15773         * gdk/gdkimage.c (gdk_image_get): Make this just a wrapper around
15774         gdk_drawable_get_image
15775
15776         * gdk/gdkdraw.c (gdk_drawable_get_image): call virtual get_image
15777
15778         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Virtualize
15779         get_image
15780
15781         * gtk/gtktreestore.c (gtk_tree_store_get_node): remove weird
15782         trailing semicolon after for loop
15783
15784 Mon Oct 23 12:07:57 2000  Owen Taylor  <otaylor@redhat.com>
15785
15786         * gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
15787         where font_desc for widget's context lagged widget's font_desc by
15788         one step.
15789
15790 2000-10-22  Tor Lillqvist  <tml@iki.fi>
15791
15792         * gdk/win32/gdkgc-win32.c
15793         * gdk/win32/gdkimage-win32.c: Remove gcc -Wall warnings.
15794
15795         * gtk/makefile.mingw.in
15796         * gtk/gtk.def: Updates.
15797
15798         * gtk/testgtk.c: sleep() is called _sleep in MS's C
15799         library.
15800
15801         * gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
15802
15803         * gtk/makefile.msc: Remove
15804
15805         * gtk/makefile.msc.in: New file, like makefile.mingw.in.
15806
15807         * gtk/Makefile.am: Add it.
15808
15809         * configure.in: Generate it.
15810
15811         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
15812         * gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
15813         something even if not implemented, to satisfy picky MSVC.
15814
15815         Patches by Hans Breuer:
15816         
15817         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_glyphs): Call
15818         SetBkMode() and SetTextAlign() before calling
15819         pango_win32_render().
15820
15821         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values):
15822         Set hcliprgn to NULL after destroying it.
15823         (gdk_gc_set_clip_rectangle): Delete hcliprgn and set to NULL.
15824
15825         * gdk/win32/gdkgeometry-win32.c
15826         (_gdk_windowing_window_queue_antiexpose): More effective
15827         implementation.
15828
15829         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use drawable's
15830         depth as default, not the visual's.
15831
15832         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Guard
15833         against empty title.
15834
15835         * gdk/win32/gdkprivate-win32.h: Define a helper macro,
15836         IMAGE_PRIVATE_DATA.
15837
15838         * gdk/win32/gdkimage-win32.c: Use it.
15839
15840 2000-10-22  Robert Brady  <robert@suse.co.uk>
15841
15842         * configure.in: Check for bind_textdomain_codeset
15843
15844         * gtk/gtkmain.c (gtk_init_check): If bind_textdomain_codeset 
15845         present, make use of it.
15846
15847         Add a translatable string "default:LTR" which, if translated
15848         to "default:RTL", will cause the default direction to be
15849         Right-to-Left.
15850
15851         * gtk/gtkrange.h, gtk/gtkrange.c: Take into account the widget 
15852         direction if marked as flippable.
15853
15854         * gtk/gtkhscale.c: Mark widget as flippable.
15855         
15856 2000-10-04  Havoc Pennington  <hp@redhat.com>
15857
15858         * gtk/testgtk.c (create_buttons): create some stock buttons
15859         with the default accel group
15860         (create_image): test some new GtkImage features
15861         (make_message_dialog): test GtkMessageDialog
15862         (create_modal_window): fix someone's bizzarro indentation
15863
15864         * gtk/gtkwindow.h, gtk/gtkwindow.c: Implement 
15865         GTK_WIN_POS_CENTER_ON_PARENT. 
15866         Add "destroy with parent" setting, which means the window goes
15867         away with its transient parent.
15868         (gtk_window_get_default_accel_group): get the default accel group
15869         for the window.
15870         (gtk_window_set_destroy_with_parent): set/unset destroy with
15871         parent flag
15872         (gtk_window_read_rcfiles): invalidate icon set caches
15873         after reloading rcfiles 
15874
15875         * gtk/gtkenums.h (GtkWindowPosition): add
15876         GTK_WIN_POS_CENTER_ON_PARENT, which centers a dialog 
15877         on its parent window when the dialog is mapped for the first time.
15878
15879         * gtk/gtkmessagedialog.h, gtk/gtkmessagedialog.c: Add 
15880         a simple message dialog class
15881         
15882         * gtk/gtkdialog.c (gtk_dialog_init): Connect delete event 
15883         handler to emit response signal, and maybe later it would
15884         honor a hide_on_delete flag - though that isn't there yet.
15885         Set border width on the vbox to 2, so we get some padding.      
15886         Use a button box for the action area.
15887         (gtk_dialog_key_press): synthesize a delete event if Esc
15888         is pressed and the GtkWidget key press handler didn't 
15889         handle the escape key.
15890         (gtk_dialog_new_with_buttons): new function creates a dialog
15891         with some default buttons in it.
15892         (gtk_dialog_add_action_widget): add an activatable widget
15893         as a button in the dialog - you can also add a non-activatable
15894         widget by accessing the action area directly.
15895         (gtk_dialog_add_button): add a simple button - stock ID or 
15896         label - to the action area
15897         (gtk_dialog_response): emit response signal
15898         (gtk_dialog_run): block waiting for the dialog, return 
15899         the response. Override normal delete_event behavior, so that 
15900         delete_event does nothing inside gtk_dialog_run().
15901
15902         * gtk/gtkdialog.h, gtk/gtkdialog.c: Add "response" signal
15903         emitted when an action widget is clicked or the dialog gets
15904         delete_event
15905
15906         * gtk/gtk.h: add gtkmessagedialog.h
15907
15908         * gtk/Makefile.am: add gtkmessagedialog.[hc]
15909
15910 2000-10-18  Havoc Pennington  <hp@redhat.com>
15911
15912         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): Fix a bug 
15913         where any number of empty lines would get skipped
15914
15915         * gtk/gtktextiter.h: Remove padding from GtkTextIter; live on the
15916         edge.
15917
15918         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): enhance the
15919         warning about invalid iterators (explain more thoroughly)
15920         (gtk_text_iter_in_region): rename gtk_text_iter_in_range
15921
15922         * gtk/gtktextview.c (FOCUS_EDGE_WIDTH): Make focus rectangle less
15923         big
15924
15925         * demos/*.c: Add error handling
15926
15927         * gtk/gtktextbuffer.c: don't modify const iterators
15928
15929         * gtk/gdk-pixbuf-loader.c: Add full error handling here
15930
15931         * gtk/gtkimage.c (gtk_image_set_from_file): ignore errors
15932         on file load
15933
15934         * gtk/gtkiconfactory.c: Update to reflect addition of error
15935         handling to gdk-pixbuf loaders
15936
15937 Wed Oct 18 11:14:05 2000  Owen Taylor  <otaylor@redhat.com>     
15938
15939         * configure.in demos/Makefile.am demos/testgtk/*: Start of work to
15940         move to new modularized testgtk.
15941
15942 2000-10-17  Jonathan Blandford  <jrb@redhat.com>
15943
15944         * gtk/gtktreeview.c: Draw the arrows correctly.
15945
15946         * gtk/gtktreemodel.c: Added user docs.
15947
15948         * gtk/gtk.h: remove gtktreedatalist.h.
15949
15950         * gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
15951         parent when generating my type.
15952
15953         * gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
15954         POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
15955
15956 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
15957
15958         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move
15959         GtkTreeModel from object to interface.
15960
15961 2000-10-16  Havoc Pennington  <hp@redhat.com>
15962
15963         * gtk/gtktreeviewcolumn.c: #include gtklabel.h, fixing 
15964         compilation
15965
15966 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
15967
15968         * gtk/gtktreeselection.c: Add API documentation to all public
15969         functions.
15970
15971         * gtk/gtktreeviewcolumn.c: Added API documentation to all public
15972         functions.
15973
15974 2000-10-15  Jonathan Blandford  <jrb@redhat.com>
15975
15976         * gtk/gtktreeview.c (gtk_tree_view_insert_column): New function
15977         proposed by Guy Harris <gharris@flashcom.net>.  Also, added API
15978         docs to all public functions.
15979
15980         * gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
15981         gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
15982         gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
15983         gtk/gtktreemodel.h, gtk/gtktreeselection.c,
15984         gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
15985         issue.
15986
15987 2000-10-14  Robert Brady  <robert@suse.co.uk>
15988
15989         * configure.in: Added "fa" (Persian) to ALL_LINGUAS.
15990
15991 2000-10-12  Jonathan Blandford  <jrb@redhat.com>
15992
15993         * gtk/gtktreedatalist.[ch] (gtk_tree_data_list_value_to_node): Added
15994         values other then G_TYPE_STRING.
15995         * gtk/gtktreeselection.c: Minor commenting updates.
15996         * gtk/gtktreeview.c: Format updates.
15997
15998 2000-10-09  Tor Lillqvist  <tml@iki.fi>
15999
16000         * README.win32: Update.
16001
16002         * gdk/win32/gdkgeometry-win32.c (gdk_window_clip_changed): Add two
16003         lines that had been deleted by mistake (?).
16004
16005         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Handle
16006         also the case fg==white and bg==black (but still not randomly
16007         coloured cursors). Thanks to Wolfgang Sourdeau.
16008
16009         * gdk/win32/*.c: Silence gcc -Wall.
16010
16011         * gtk/gtk.def: Add missing entry points.
16012
16013         Fixes by Hans Breuer:
16014
16015         * gdk/makefile.msc
16016         * gdk/win32/makefile.msc: Update.
16017
16018         * gdk/testgdk.c: If compiling with debugging (with _DEBUG defined,
16019         some MSVC thing, presumably), cause breakpoint on failures. Add
16020         GDK_NOR case. Call g_log_set_always_fatal.
16021
16022         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_insert): Handle
16023         should be pased by reference.
16024         
16025         * gdk/win32/gdkprivate-win32.h: Correct declaration accordingly.
16026         
16027         * gdk/win32/*.c: Correct calls to gdk_win32_handle_table_insert.
16028
16029         * gdk/win32/gdkevents-win32.c
16030         * gdk/win32/gdkwindow-win32.c: Handle WM_CREATE.
16031
16032         * gdk/win32/gdkgc-win32.c: Fix mixups of drawable and
16033         implementation object.
16034
16035         * gdk/win32/gdkimage-win32.c (gdk_image_get): Handle drawables,
16036         not just windows.
16037         
16038         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize):
16039         Use the wrapper object.
16040         
16041 2000-10-06  Havoc Pennington  <hp@redhat.com>
16042
16043         * Makefile.am (SRC_SUBDIRS): contrib subdir
16044
16045         * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library,
16046         so it can be used in Xlib version
16047
16048         * demos/testpixbuf.c (update_timeout): error checking from 1.0
16049         tree
16050
16051         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync
16052         change from 1.0 tree that returns first frame of animation
16053         if the loaded file is an animation.
16054
16055         * contrib: add new directory to hold stuff that comes with GTK+
16056         but isn't really part of GTK+ (for now, gdk-pixbuf-xlib)
16057         
16058         * configure.in: add contrib/*
16059
16060 2000-10-05  Havoc Pennington  <hp@redhat.com>
16061
16062         * demos/testpixbuf-save.c: add pixbuf save test
16063
16064         * demos/Makefile.am: add testpixbuf-save.c
16065
16066 2000-10-05  Jonathan Blandford  <jrb@redhat.com>
16067
16068         * gtk/gtktree.h (GTK_TREE_SELECTION): Replaced with
16069         GTK_TREE_SELECTION_OLD to prevent conflict with gtktreeselection.c
16070         * gtk/testgtk.c: s/GTK_TREE_SELECTION/GTK_TREE_SELECTION_OLD/
16071         * gtk/gtktreeselection.[ch]: Replaced
16072         "node_selected"/"node_unselected" signal with "selection_changed"
16073         signal.
16074
16075 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
16076
16077         * gtk/gtk{tree,cell}?*.[ch]: Checked in initial draft of the new
16078         tree widget.
16079
16080 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
16081
16082         * gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
16083         drawing.
16084
16085 Wed Oct  4 15:52:15 2000 Owen Taylor  <otaylor@redhat.com>
16086
16087         * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
16088         Move list pointer forwards before removing item from
16089         list. (Crash reported by Salmaso Raffaele)
16090
16091         * gdk/gdkwindow.h: Remove spurious trailing ,
16092
16093         * gdk/Makefile.am (LDFLAGS): You can't do interlibrary
16094         dependencies on uninstalled libraries, sorry folks.
16095
16096 2000-10-04  Havoc Pennington  <hp@redhat.com>
16097
16098         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
16099         gtk/gtkiconfactory.c: Fix copyrights    
16100
16101         * demos/testpixbuf.c: add inline pixbuf test
16102         
16103 Mon Sep 25 15:05:17 2000  Owen Taylor  <otaylor@redhat.com>
16104
16105         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c (gdk_window_iconify):
16106         Add gdk_window_iconify.
16107
16108         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c
16109         (gdk_window_set_geometry_hints): Add win_gravity
16110         to geometry structure.
16111
16112         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
16113         Implement _NET_WM_PING.
16114
16115         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check):
16116         Set _NET_WM_PID on the client leader.
16117
16118         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_name):
16119         Handle UTF-8 better.
16120
16121         * gdk/x11/gdkwindow-x11.c (gdk_window_set_title): Handle
16122         UTF-8 better, set _NET_WM_NAME as well. Only set
16123         icon name if it hasn't previously been explicitely 
16124         set.
16125
16126 2000-10-03  Havoc Pennington  <hp@redhat.com>
16127
16128         * gtk/testtextbuffer.c: clean up trailing whitespace,
16129         add extensive tests for tag toggle iteration.
16130         
16131         * gtk/gtktextiter.c (MAX_LINEAR_SCAN): decrease linear scan 
16132         distance
16133
16134         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
16135         optimize case where the tag root is on level 1
16136         (gtk_text_line_previous_could_contain_tag): attempt to implement
16137         (gtk_text_line_next_could_contain_tag): Abstract out node_compare
16138         functionality
16139
16140         * gtk/gtktextiter.c (gtk_text_iter_backward_to_tag_toggle):
16141         Implement this, though not very efficiently.
16142
16143         * gtk/gtktextiterprivate.h: reformat
16144
16145         * gtk/gtktextiter.c (gtk_text_iter_get_char): return 0 on the end
16146         iterator
16147
16148         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_interactive): Fix
16149         this to properly revalidate the iterators.
16150
16151         * gtk/gtktextview.c (gtk_text_view_delete): fix control-K to work
16152         properly at the end of the line (and therefore on empty lines)
16153
16154         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Gee,
16155         maybe we should return a value...
16156
16157 2000-10-03  Tor Lillqvist  <tml@iki.fi>
16158
16159         * config.h.win32: Guard definition of alloca(). glib.h now handles
16160         that.
16161
16162         * gdk/gdk.def
16163         * gtk/gtk.def: Add new entry points.
16164
16165         Changes just to make GTK+ build without errors on Win32. No hope
16166         of it working in its current state, though...:
16167         
16168         * gdk/win32/gdkselection-win32.c: Remove gcc -Wall warnings.  Add
16169         some functions from the X11 backend, just to make GTK+ build.
16170
16171         * gdk/makefile.mingw.in
16172         * gtk/makefile.mingw.in: Use correct gdk_pixbuf version
16173         number. Add new object files.
16174
16175         * gtk/gtkclipboard.c: Include gdkwin32.h on Win32. Use
16176         GetMessageTime to get timestamp (where on X11 uses
16177         gdk_x11_get_server_time()).
16178
16179 2000-10-02  Havoc Pennington  <hp@pobox.com>
16180
16181         * gtk/gtktextview.c: text_window_* weren't static and should have
16182         been.
16183         Start work on child widgets; not yet complete, syncing to 
16184         office computer.
16185
16186         * gtk/gtktextchild.h: change this to contain a public interface,
16187         starting work on child interfaces.
16188         * gtk/gtktextchildprivate.h: move private interfaces here
16189
16190         * gtk/Makefile.am: update to reflect gtktextchildprivate.h
16191
16192         * gtk/gtktextview.h, gtk/gtktextview.c, gtk/gtktextbuffer.h,
16193         gtk/gtktextbuffer.c, gtk/gtktextiter.h, gtk/gtk/textiter.c, 
16194         gtk/gtktextmark.c: copyright notices
16195
16196         * gtk/gtktextmarkprivate.h: reformat, and put _ in front of
16197         internal functions      
16198
16199         * gtk/gtktextchild.c (_pixbuf_segment_new): put _ in front of
16200         internal function
16201
16202         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
16203         Reformatting    
16204
16205 2000-09-30  Havoc Pennington  <hp@pobox.com>
16206
16207         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Handle
16208         NULL start/end pointers
16209
16210         * gtk/gtktextbuffer.c: Write some docs
16211         (gtk_text_buffer_get_selection_bounds): Allow start/end to be
16212         NULL, so you can just check whether there's a selection.        
16213
16214         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): No need to 
16215         cleanup_line or segments_changed ourselves, it gets done 
16216         in unlink_segment
16217
16218         * gtk/gtktextmark.h:
16219         s/gtk_text_mark_deleted/gtk_text_mark_get_deleted/
16220         
16221         * gtk/gtktextsegment.h: Clean up some indentation and naming mess
16222
16223         * gtk/gtktextmark.c: delete some more old Tk cruft
16224
16225         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_mark): add ref to
16226         mark before removing it, so we can emit MARK_DELETED with a valid
16227         pointer.
16228         (gtk_text_buffer_mark_set): hold ref across signal emission
16229
16230         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): improve
16231         whining about attempts to delete special marks
16232
16233         * gtk/gtktextbuffer.c (_gtk_text_buffer_spew): Prepend with
16234         underscore, since it's internal.
16235
16236         * gtk/gtktextbuffer.h: Remove find_string prototype, this is 
16237         now implemented in terms of iterators in gtktextiter.h
16238
16239         * gtk/gtktextbuffer.c (gtk_text_buffer_set_text): 
16240         New function, destructively sets contents of buffer. Also 
16241         a convenient way to clear the buffer by setting text to ""
16242
16243         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): reformat
16244         multiline string literal
16245
16246         * gtk/testtext.c (text_changed_callback): Redraw line numbers if
16247         text changes.
16248
16249         * gtk/gtktextiter.c (forward_char): Return FALSE if new location 
16250         is not dereferenceable
16251         (gtk_text_iter_forward_lines): fix return value
16252
16253 2000-09-29  Havoc Pennington  <hp@redhat.com>
16254
16255         * gtk/gtktexttag.c (gtk_text_tag_set_priority): fix indentation
16256
16257         * gtk/gtktextview.c: Implement drag thresholding; change functions 
16258         that set border window size to have nicer name
16259         (gtk_text_view_mark_set_handler):  Fix this to have the 
16260         right signature.
16261
16262         * gtk/testtextbuffer.c (fill_buffer): Update with pixbuf changes
16263
16264         * gtk/testtext.c: Update with API changes, put line numbers on 
16265         both sides.
16266         
16267         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): Replace get_pixmap
16268         with this
16269
16270         * gtk/gtktextchild.h, gtk/gtktextchild.c: replace all pixmap with
16271         pixbuf; delete a big block of #if 0 Tk code
16272
16273         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_pixbuf): Replace 
16274         insert_pixmap with insert_pixbuf
16275
16276 2000-09-29  Martin Baulig  <baulig@suse.de>
16277
16278         * gdk-pixbuf.pc.in: Renamed to gdb-pixbuf-2.0.pc.in to avoid
16279         confusion with the GdkPixbuf of the GNOME 1.x platform.
16280
16281 2000-09-29  Havoc Pennington  <hp@pobox.com>
16282
16283         * gtk/gtktextview.c: Implement the side windows.
16284
16285         * gtk/testtext.c: Implement simple line numbering in the 
16286         left side window; seems to make scrolling sloooow. Oops.
16287         Also, cursor blink is for some reason causing redraws
16288         of the line numbers. Should investigate...
16289
16290 2000-09-28  Havoc Pennington  <hp@redhat.com>
16291
16292         * gtk/gtktextview.c: Set up infrastructure to deal with lots of 
16293         scrolling child windows, and draw focus rectangle properly.
16294         
16295         (gtk_text_view_buffer_to_window_coords):
16296         Coordinate transformation to deal with all these freaking windows
16297         and offsets
16298         (gtk_text_view_window_to_buffer_coords): transform the other way
16299
16300         * gtk/testtext.c (create_buffer): Update to match Pango API change
16301
16302         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Go over the
16303         anonymous tags
16304         (foreach_unref): don't emit remove signal from finalize, just
16305         set tag's parent to NULL
16306
16307 2000-09-26  Havoc Pennington  <hp@redhat.com>
16308
16309         * gtk/gtkiconfactory.c (gtk_icon_set_clear): remove
16310         Fix some warnings       
16311
16312 2000-09-26  Havoc Pennington  <hp@redhat.com>
16313
16314         * gtk/Makefile.am (gtk_private_h_sources): Move more text widget
16315         headers into the private header list
16316
16317         * Makefile.am (pkgconfig_DATA): install pkg-config files
16318
16319         * configure.in: add pkg-config files
16320
16321         * gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
16322
16323         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
16324         outstanding icon caches on theme change.
16325
16326         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three 
16327         important types:
16328
16329         (GtkIconSource): Specification for creating a pixbuf 
16330         appropriate for a direction/state/size triplet from 
16331         a source pixbuf or filename
16332
16333         (GtkIconSet): List of GtkIconSource objects that are used to
16334         create the "same" icon (e.g. an OK button icon), and cache for
16335         rendered icons
16336
16337         (GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
16338         up the icon set for a given stock ID.  GTK maintains a stack of
16339         GtkIconFactory to search, and applications or libraries can add
16340         additional icon factories on top of the stack
16341         
16342         * gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse 
16343         the set of GtkIconSource specified for a given stock ID into 
16344         a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the 
16345         RcStyle, under the specified stock ID.
16346
16347         * gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
16348         render_icon used to derive a GdkPixbuf from a GtkIconSource.
16349         This allows people to theme how prelight, insensitive, etc. are
16350         done.
16351
16352         (gtk_style_lookup_icon_set): Look up a stock ID in the list of
16353         icon factories for a style, and return the resulting 
16354         icon set if any.
16355
16356         (gtk_style_render_icon): Render an icon using the render_icon 
16357         method in the GtkStyleClass.
16358
16359         * gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon): 
16360         Use the style for a given widget to look up a stock ID, get the
16361         icon set, and render an icon using the render_icon method 
16362         of the style
16363
16364         * gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
16365         (contains information about a stock item), the built-in stock item
16366         IDs, and functions to add/lookup stock items.
16367
16368         * gtk/stock-icons/*: Stock icons that come with GTK
16369
16370         * gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
16371         a button based on a GtkStockItem
16372         (gtk_button_new_accel): Takes a uline string and accel group, and
16373         installs the accelerator.
16374
16375         * gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
16376         image-display widget.
16377
16378 2000-09-25  Havoc Pennington  <hp@redhat.com>
16379
16380         * gtk/gtktexttypes.c: Remove Latin1 conversion stuff
16381
16382         * gtk/gtktextbtree.c (gtk_text_btree_node_remove_data): 
16383         Fix a bug when removing node data, we didn't properly 
16384         re-splice the linked list after removing the data.
16385
16386         * gtk/gtktextview.c (gtk_text_view_key_press_event): Pass through 
16387         GDK_Tab as literal tab, Ctrl-Tab to tab to focus widget
16388
16389         * gtk/gtktextbuffer.c (selection_received): fix g_convert usage
16390
16391         * gtk/gtktextlayout.c (set_para_values): Set tab array 
16392         for the layout from the GtkTextTag.
16393
16394         * gtk/gtktexttypes.h: delete tab and search cruft, 
16395         remove g_convert() in favor of GLib version
16396
16397         * gtk/gtktexttypes.c: remove tab implementation from here,
16398         move to Pango
16399
16400         * gtk/gtktexttag.h, gtk/gtktexttag.c: Implement 
16401         tab stuff using new PangoTabArray from Pango
16402
16403         * gtk/gtktexttag.c (gtk_text_attributes_fill_from_tags): Remove
16404         unused border_width stuff
16405
16406 Thu Sep 14 12:21:12 2000  Owen Taylor  <otaylor@redhat.com>
16407
16408         * gtk/gtktexttypes.[ch]: Remove g_convert (moved to
16409         glib) and now useless utf_to_latin1() latin1_to_utf()
16410
16411         * gtk/gtktextview.[ch]: Change ::move_insert and
16412         ::delete_text action signals to ::move and ::delete;
16413         create the signals with the right enumeration type,
16414         not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
16415         C-v bindings, change Home, End to move to beginning/end
16416         of line, Add C-Home C-End to move to beginning/end
16417         of buffer. Change ::cut_text to ::cut_clipboard, etc;
16418         combine ::scroll_text into ::move; use new GtkSelectionData
16419         functions to simplify DND text handling.
16420         
16421         * gtk/gtkenums.h gtk/gtktextview.h: Move movement,
16422         deletion enumerations here, rename enumeration values to 
16423         be consistently plural.
16424
16425         * gtk/gtktextbuffer.c: Use new clipboard interfaces
16426         for cut/copy/paste and primary selection.
16427
16428         * gtk/gtktextbuffer.[ch]: Remove excess time and
16429         'interactive' arguments from cut/copy/paste;
16430         rename cut to cut_clipboard, etc; remove
16431         gtk_text_buffer_get_clipboard_contents().
16432
16433         * gtk/gtktextlayout.[ch]: Add 
16434         gtk_text_layout_move_iter_to_line_end() to move the iter to 
16435         line ends.
16436
16437         * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
16438         Functions to set or get a UTF-8 string on the selection
16439         data.
16440
16441         * gtk/gtkclipboard.[ch]: New, simplified selection handling
16442         interfaces.
16443
16444         * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
16445         created widgets - one of these is useless if we don't.
16446
16447         * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
16448         a public function clear all targets registered for the
16449         widget.
16450
16451         * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
16452         Never call gtk_widget_realize() - that was just asking
16453         for bizarre side-effects.
16454
16455         * gtk/gtkselection.c (gtk_selection_owner_set): Call
16456         gdk_selection_owner_set even if the widget is the
16457         same so that we reliably update the timestamp on
16458         the server.
16459
16460         * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a 
16461         gdk_x11_get_server_time() function.
16462         
16463         * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
16464         gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
16465         Add some tricky filtering on serial numbers for
16466         selection clear events to fix up long-standard
16467         race condition FIXME's in gtkselection.c.
16468
16469         * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
16470         routines to convert from utf8 to compound text or
16471         STRING and from a text property to UTF-8.
16472
16473         * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add 
16474         a convenience function gdk_get_current_event_time().
16475
16476         * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
16477         and free selection_data->data properly
16478
16479 Sat Sep  9 10:23:53 2000  Owen Taylor  <otaylor@redhat.com>
16480
16481         * gtk/gtkthemes.c: Remove some unecessary includes.
16482
16483 2000-09-08  Jonathan Blandford  <jrb@redhat.com>
16484
16485         * gtk/gtktextdisplay.c
16486         * gtk/gtktextlayout.c
16487         * gtk/gtktexttag.c
16488         * gtk/gtktexttag.h
16489         * gtk/testtext.c: Change the overstrike property to strikethrough,
16490         to closer match pango.
16491
16492 Fri Sep  8 14:28:00 2000  Owen Taylor  <otaylor@redhat.com>
16493
16494         * gtk/gtktextview.c: Fix up visibility so that focus,
16495         cursor_visible and blink interact properly.  Reenable cursor blink
16496         which had been roughly disabled. Make blink and focus
16497         properly per-view.
16498
16499         * gtk/gtktextlayout.[ch] (gtk_text_layout_set_cursor_visible):
16500         Add a flag for whether to display insertion cursor and
16501         a function to set the flag.
16502
16503         * gtk/gtktextlayout.c (gtk_text_layout_get_line_yrange): Change
16504         get_line_y() to get_line_yrange(), to be a bit more generally
16505         useful.
16506
16507 Thu Sep 07 20:54:33 2000  George Lebl <jirka@5z.com>
16508
16509         * gtk/gtkmenu.c:  in gtk_menu_set_submenu_navigation_region
16510           do stop_navigating_submenu, to clear last timeout properly.
16511           Also in gtk_menu_motion_notify move ignore_enter above
16512           the conditional to make it always happen as suggested by Owen
16513
16514 2000-09-07  Tor Lillqvist  <tml@iki.fi>
16515
16516         * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o
16517
16518         * gdk/win32/gdkwin32.h: Add more definitions missing from the free
16519         w32api headers.
16520
16521         * gdk/win32/gdkprivate-win32.h: Add a couple of missing
16522         declarations.
16523
16524         * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings.
16525         (gdk_win32_get_colormap): A line had been deleted by mistake.
16526
16527         * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too.
16528         (gdk_event_translate): Handle more virtual keycodes to be able to
16529         generate GDK events for Control-comma, Control-period, etc.
16530
16531         * gtk/gtk.def: Add some missing entry points.
16532
16533 Thu Sep  7 11:47:02 2000  Owen Taylor  <otaylor@redhat.com>
16534
16535         * gtk/gtktextbuffer.c gtk/gtkimcontext.c gtk/gtkwidget.c:
16536         Doc comment fixing. (Mostly non-matching parameter names.)
16537
16538         * gtk/gtkcalendar.c gtk/gtklist.c gtk/gtknotebook.c: Modify
16539         comments a little to avoid looking like a doc comment.
16540
16541         * gtk/gtkspinbutton.h (GTK_INPUT_ERROR): Change INPUT_ERROR to
16542         GTK_INPUT_ERROR. (Should the mechanism for erros in spin button
16543         conversions be changed to GError?)
16544
16545         * gtk/gtkcolorsel.c (GTK_CUSTOM_PALETTE_WIDTH/HEIGHT): 
16546         Move private #defines into .c file.
16547
16548         * gtk/gtktexttag.c (gtk_text_tag_class_init): Alphabetize
16549         order of argument addition, remove duplicates.
16550
16551         * gtk/gtkaspectframe.h (struct _GtkAspectFrameClass):
16552         parent class is FrameClass, not BinClass.
16553
16554         * gtk/gtk.h: Add gtkinvisible, which was missing.
16555         (It's occasionalyl useful for client apps, if seldom.)
16556
16557         * gdk/gdktypes.h: Remove obsolete GDK_CORE_POINTER
16558         #define.
16559
16560 Wed Sep  6 09:53:15 2000  Owen Taylor  <otaylor@redhat.com>
16561
16562         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Use X-space
16563         coordinates when creating window, instead of GDK-space
16564         coordinates. (Avoid BadValue on too large windows.)
16565
16566 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
16567
16568         * configure.in (use_mmx_asm): Remove conftest* after use along the
16569         lines of AC_TRY_COMPILE.        
16570         
16571         * gtk/gtkrc.c (gtk_rc_parse_file): Use g_path_get_dirname instead
16572         of g_dirname, which is deprecated.
16573         (gtk_rc_parse_any): Removed calls to
16574         g_scanner_{freeze,thaw}_symbol_table, which are deprecated.
16575
16576         * gtk/gtkbindings.c (binding_entry_new, binding_entry_destroy):
16577         Removed calls to g_hash_table_{freeze,thaw}, as they are
16578         deprecated now.
16579
16580         * gtk/testtext.c (buffer_pretty_name): Use g_path_get_basename
16581         instead of g_basename.
16582         
16583 2000-09-04 Elliot Lee <sopwith@redhat.com>
16584         
16585         * gdk/gdkpixbuf.h: Put text after #endif inside a comment to avoid
16586         ANSI warning.
16587
16588 Sun Sep 03 00:47:08 2000  George Lebl <jirka@5z.com>
16589
16590         * gtk/gtkwidget.h:  Add some documenting comments about 
16591           GTK_CAN_DEFAULT, GTK_HAS_DEFAULT and GTK_RECEIVES_DEFAULT
16592           just as owen said on irc.
16593
16594         * gtk/gtkwindow.c (gtk_window_set_default):  Don't blindly
16595           set HAS_DEFAULT.  Only set it if there isn't another window
16596           holding it (a focus window which RECEIVES_DEFAULT) and only unset
16597           it if the widget is not the focused window with RECEIVES_DEFAULT.
16598           This fixes weird double default bugs in dialogs which has things
16599           call gtk_window_set_default at times.
16600
16601 Fri Sep  1 22:39:07 2000  Owen Taylor  <otaylor@redhat.com>
16602
16603         * gtk/gtkmenu.[ch] TODO.xml: Apply patch from
16604         Nils Barth and David Santiago to improve submenu
16605         navigation. The patch does this by creating a triangular
16606         region from the point where the pointer leaves the
16607         menu to the submenu.  While the pointer is in
16608         that region and a timeout has not expired, events 
16609         that would cause the active submenu to change are
16610         ignored.
16611
16612 Fri Sep  1 15:34:46 2000  Owen Taylor  <otaylor@redhat.com>
16613
16614         * gdk/x11/gdkwindow-x11.c (gdk_window_move): Fix bug where
16615         moving a toplevel window immediately after sizing it would
16616         result in it being sized back to the old size since 
16617         impl->width, impl->height aren't updated until we hear
16618         back from the server. There is still a (longstanding) bug
16619         here that gdk_window_get_size() will give the wrong size
16620         until we do hear back.
16621
16622 2000-08-31  Havoc Pennington  <hp@redhat.com>
16623
16624         * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, 
16625         gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, 
16626         gtk/gtktexttagprivate.h, gtk/gtktextview.c:
16627         Rename GtkTextStyleValues to GtkTextAttributes
16628
16629 2000-08-31  Havoc Pennington  <hp@pobox.com>
16630
16631         * gtk/gtktextbtree.c (GtkTextBTree): cache end line, 
16632         for rapid testing whether an iterator is the end iterator
16633         (gtk_text_btree_new): init end line cache
16634         (gtk_text_line_is_last): use fast cached line to 
16635         see if we're the last line.
16636         (get_last_line): use cached line here too, should 
16637         speed up some random unrelated code.
16638         
16639 2000-08-30  Havoc Pennington  <hp@pobox.com>
16640
16641         * gtk/gtkmarshal.list: Add marshallers for changed GtkTextBuffer
16642         signals.
16643
16644         * gtk/gtktextbuffer.h: Add "interactive" arg to insert_text and
16645         delete_text signals. This allows the signals to be used for
16646         implementing undo.
16647
16648         * gtk/gtktextbuffer.c: Change signal handler signatures; 
16649         provide "interactive" argument when emitting insert_text or
16650         delete_text signal.
16651         
16652 2000-08-30  Havoc Pennington  <hp@pobox.com>
16653
16654         * gtk/gtktextbuffer.c: Docs
16655
16656 Fri Aug 25 12:16:15 2000  Owen Taylor  <otaylor@redhat.com>
16657
16658         * gdk/x11/gdkimage-x11.c: remove GDK_IMAGE_SHARED_PIXMAP
16659         from switch statements, since Tor removed the enumeration
16660         value.
16661         
16662         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
16663         s/GDK_IS_WINDOW/GDK_IS_DRAWABLE/.
16664
16665 2000-08-29 Elliot Lee <sopwith@redhat.com>
16666         * */*.h: Use G_GNUC_CONST.
16667
16668 2000-08-27  Havoc Pennington  <hp@pobox.com>
16669
16670         * gtk/gtktextiter.c, gtk/gtktextiter.h: wrote lots of API docs,
16671         minor indentation fixes, inserted some FIXME about stuff I
16672         realized was broken while documenting it.
16673         (gtk_text_iter_get_pixmap): allow out params to be NULL, following
16674         GTK convention  
16675
16676 Tue Aug 22 12:33:24 2000  Owen Taylor  <otaylor@redhat.com>
16677
16678         * gtk/testgtk.c (create_styles): Fix double free of
16679         font desc.
16680
16681 Mon Aug 21 22:39:18 2000  Owen Taylor  <otaylor@redhat.com>
16682
16683         * gtk/gtkwidget.[ch]: Add gtk_widget_modify_{fg,bg,text,base,font}.
16684         
16685         * gtk/testgtk.c (create_styles): Add a test for modifying
16686         the style through gtk_widget_modify_*.
16687
16688         * gtk/gtkwidget.c (gtk_widget_get_modifier_style): Add
16689         a function to get the current modifier style.
16690
16691         * gtk/gtkwidget.c (gtk_widget_modify_style): Make a copy
16692         of the passed in GtkRcStyle instead of ref'ing it.
16693
16694         * gtk/gtkrc.[ch]: Add gtk_rc_style_copy().
16695
16696 2000-08-20  Tor Lillqvist  <tml@iki.fi>
16697
16698         * gdk/gdkimage.h
16699         * gdk/win32/gdkimage-win32.c: No need any longer on Win32 for the
16700         shared memory image+pixmap GdkImage type, or
16701         gdk_image_bitmap_new(). They were used in the gdk_imlib port, but
16702         I am dropping that.
16703
16704         * gtk/gtkmain.h: On Win32, use a #define to map gtk_init() to
16705         actually call gtk_init_abi_check(), passing also
16706         sizeof(GtkWindow). Ditto for gtk_init_check(). 
16707
16708         * gtk/gtk.def
16709         * gtk/gtkmain.c: (gtk_init_abi_check, gtk_init_check_abi_check):
16710         New functions, used to check that the GTK+-using code has been
16711         compiled using the correct compiler and switches. In particular,
16712         with gcc one has to use the -fnative-struct switch as GTK+ is
16713         compiled with that.
16714
16715 Fri Aug 18 17:27:46 2000  Owen Taylor  <otaylor@redhat.com>
16716
16717         * gtk/gtkclist.c (gtk_clist_merge): Don't leave dangling
16718         ->prev fields when merging lists. (Found simultaneously
16719         by Pawel Salek and Jakub Jelinek)
16720
16721 2000-08-12  Tor Lillqvist  <tml@iki.fi>
16722
16723         * gdk/gdk.def
16724         * gtk/gtk.def: Add missing entries.
16725
16726         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Use
16727         OUT_TT_ONLY_PRECIS, try to get a TrueType font.
16728
16729         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): New
16730         function. Dummy implementation at this point.
16731
16732         * gtk/makefile.mingw.in: Fix typo. Add testtext and testtextbuffer
16733         rules. Undefine GTK_COMPILATION when compiling the test programs.
16734         
16735         * gtk/gtkdebug.h: Mark gtk_debug_flags for export/import.
16736
16737 2000-08-11  Tor Lillqvist  <tml@iki.fi>
16738
16739         * gtk/gtkfilesel.c: Add more calls to g_filename_{to,from}_utf8()
16740         to convert back and forth from UTF-8 and the "system" (or "current
16741         locale") charset when necessary. Indentation/spacing cleanup.
16742
16743 2000-08-10  Havoc Pennington  <hp@redhat.com>
16744
16745         * Makefile.am (snapshot): Change the format of the snapshot
16746         version to match glib
16747
16748         * gdk/win32/Makefile.am (EXTRA_DIST): remove gdkinputprivate.h
16749         from EXTRA_DIST since it doesn't seem to exist
16750
16751 2000-08-10  Tor Lillqvist  <tml@iki.fi>
16752
16753         * gtk/gtkfilesel.c (open_new_dir): Use the "system codepage"
16754         version of the directory name (not the UTF-8 one) when building
16755         the path name to stat().
16756
16757 2000-08-03  Elliot Lee  <sopwith@redhat.com>
16758
16759         * gdk/gdkpango.c (gdk_draw_layout_line): Don't shape runs with a
16760         PANGO_ATTR_SHAPE set.
16761
16762 Thu Aug  3 09:17:06 2000  Owen Taylor  <otaylor@redhat.com>
16763
16764         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Applied patch from
16765         Peter Osterlund to simplify the code while keeping the
16766         functionality the same.
16767
16768 Wed Aug  2 14:57:38 2000  Owen Taylor  <otaylor@redhat.com>
16769
16770         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Move
16771         is_viewable() test further inside the function, since removing the 
16772         window from the redraw list without clearing ->update_area
16773         was also very broken.
16774
16775 2000-08-02  Tor Lillqvist  <tml@iki.fi>
16776
16777         * configure.in: Check for <unistd.h>.
16778
16779 2000-08-01  Martin Baulig  <baulig@suse.de>
16780
16781         * gtk/gtkmain.c (gtk_init_check): Use g_message() and not g_warning()
16782         to display the message that this is a development version of GTK+.
16783
16784 Mon Jul 31 18:37:36 2000  Owen Taylor  <otaylor@redhat.com>
16785
16786         * gtk/gtkentry.c (entry_adjust_scroll): Fix problem where computation
16787         was depending on widget->allocation instead of the width of text_area,
16788         which was incorrect for subclasses like GtkSpinButton.
16789
16790         * gdk/gdkpango.c (gdk_draw_layout): Fix a couple of typos
16791         with width == 1 tests that should be width == -1.
16792
16793 Mon Jul 31 16:45:48 2000  Owen Taylor  <otaylor@redhat.com>
16794
16795         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Replace broken, 
16796         (broken, Elliot, every single window blank on X) custom code with call
16797         to gdk_window_is_viewable() which a) prevents code duplicate and
16798         b) works. 
16799
16800 2000-07-31  Elliot Lee  <sopwith@redhat.com>
16801
16802         * gtk/gtkcolorsel.c: We really do need to include gdkfb.h in order
16803         to get the GDK_PARENT_ROOT() macro to work.
16804         * gtk/gtkmarshal.list: Add NONE:STRING,POINTER
16805         * gdk/gdkwindow.c: Don't send expose events, or invalidate pieces
16806         of, windows that aren't shown.
16807         * gdk/linux-fb: Redraw-when-menu-hidden solved, plus a bunch of
16808         pointer grab stuff.
16809
16810 Mon Jul 31 13:53:16 BST 2000  Tony Gale <gale@gtk.org>
16811
16812         * docs/gtkfaq.sgml docs/gtk-faq.sgml:
16813           s/gtk_main_iteration/g_main_iteration/
16814
16815           Did this already in change:
16816                 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
16817           don't know how it got reverted.
16818
16819 2000-07-31  Stanislav Brabec  <utx@penguin.cz>
16820
16821         * gdk/gdk.c: #ifdef G_ENABLE_DEBUG around gdk_arg_debug_cb and
16822         gdk_arg_no_debug_cb to fix compilation problem with --disable-debug.
16823
16824         * gdk/Makefile.am: Link gdk against actually compiled gdk_pixbuf-1.3,
16825         not gdk_pixbuf.
16826
16827 2000-07-30  Pablo Saratxaga <pablo@mandrakesoft.com>
16828
16829         * configure.in,po/{sp,sr}.po: Added Serbian files
16830
16831 2000-07-30  Tor Lillqvist  <tml@iki.fi>
16832
16833         * gdk/Makefile.am: Add makefile.mingw.in to EXTRA_DIST.
16834
16835         * gdk/win32/gdkevents-win32.c (gdk_events_init, gdk_events_queue):
16836         Remove the g_pipe_readable_msg stuff. Not needed with new GLib
16837         GIOChannel implementation.
16838
16839         * gdk/win32/gdkinput.c
16840         * gdk/win32/gdkpango-win32.c: Update license name here, too.
16841
16842         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_lookup): Fix
16843         definition to match prototype.
16844
16845         * gtk/makefile.mingw.in: Add libiconv CFLAGS and LIBS.
16846
16847 2000-07-27  Elliot Lee  <sopwith@redhat.com>
16848
16849         * gtk/gdk-pixbuf-loader.[ch]: Add gdk_pixbuf_loader_new_with_type
16850         function, to allow handling image formats that cannot be detected
16851         by looking at content alone.
16852
16853 Thu Jul 27 13:13:21 BST 2000  Tony Gale <gale@gtk.org>
16854
16855         * docs/tutorial/*.gif *.jpg *.eps
16856           Update these to the same look-n-feel.
16857           Why does including images in DocBook suck so badly?
16858
16859 Thu Jul 27 05:06:29 2000  Tim Janik  <timj@gtk.org>
16860
16861         * gtk/gtktable.c: applied patch from Phil Thompson
16862         <phil@river-bank.demon.co.uk> that enables space settings for
16863         the last row/columns as well.
16864
16865 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
16866
16867         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
16868         updates the license headers to the GNU Lesser General Public License,
16869         as well as updating the copyright year to 2000.
16870
16871 2000-07-26  Robert Brady  <rwb197@zepler.org>
16872
16873         * configure.in: Cause GETTEXT_PACKAGE to be consistent in config.h
16874           and po/Makefile, was installing and looking for them under gtk20
16875           and gtk2 respectively.
16876
16877 2000-07-25  Havoc Pennington  <hp@redhat.com>
16878
16879         * gtk/testtext.c: Comment out some stuff that depends on the rest
16880         of my patches.
16881
16882 2000-07-25  Havoc Pennington  <hp@redhat.com>
16883
16884         * gtk/gtkmarshal.list: Add NONE:POINTER,POINTER,INT for the text
16885         buffer
16886
16887 2000-07-25  Havoc Pennington  <hp@redhat.com>
16888
16889         * gtk/testtext.c, gtk/testtextbuffer.c: update to reflect text
16890         widget changes.
16891
16892         * gtk/gtktextview.h: To be consistent with usage of "line"
16893         throughout the API to mean "newline-terminated thingy", change
16894         MOVEMENT_LINE to be MOVEMENT_WRAPPED_LINE, and MOVEMENT_PARAGRAPH
16895         to MOVEMENT_LINE.
16896
16897         (GtkTextView): Add flags for default editability, and whether to
16898         show the cursor. Add functions to get/set that. Add 
16899
16900         (gtk_text_view_get_iter_location): new function
16901
16902         * gtk/gtktexttypes.h: Move GtkTextLine typedef from here to
16903         gtktextlayout.h
16904         (g_convert): Add g_convert temporarily, will go in glib in a bit
16905         
16906         * gtk/gtktexttagtable.h: include gtktexttag.h, and define
16907         GtkTextTagTableForeach instead of brokenly using GHFunc.
16908         Change gtk_text_tag_table_foreach() so it doesn't use GHFunc.
16909
16910         * gtk/gtktexttagprivate.h: Remove GtkTextStyleValues from here,
16911         moved to public header.
16912
16913         * gtk/gtktexttag.h: Rename the "elide" attribute of tags to
16914         "invisible", since "elide" was a bad name.
16915         (gtk_text_tag_get_priority): Added
16916
16917         (GtkTextStyleValues): put this in public header, along with
16918         functions to use it.
16919
16920         * gtk/gtktextmarkprivate.h: Include more headers, since we no
16921         longer include gtktextbtree.h.
16922
16923         * gtk/gtktextmark.h: Add gtk_text_mark_ref, gtk_text_mark_unref,
16924         gtk_text_mark_deleted
16925
16926         * gtk/gtktextlayout.h: Don't include the "really private" headers,
16927         only buffer/iter. Forward declare GtkTextLIne and GtkTextLineData
16928         to make this possible. Now we only need to install
16929         gtktextlayout.h, not gtktextbtree.h and gtktext*private.h.
16930         (However the Makefile.am isn't changed yet because of the
16931         logistics of merging gtk-hp-patches piecemeal)
16932
16933         * gtk/gtktextiterprivate.h: include btree header, so it compiles;
16934         rename gtk_text_iter_get_line to gtk_text_iter_get_text_line since
16935         gtk_text_iter_get_line is now used in the public API for a
16936         different purpose.
16937
16938         * gtk/gtktextiter.h: Clean up function names to be more
16939         consistent. Always call char offset "offset" and byte index
16940         "index". A "line" is always a line number. 
16941
16942         (gtk_text_iter_is_last): new function, more efficient than 
16943         the existing way to check
16944         (gtk_text_iter_is_first): new function, also more efficient
16945
16946         (gtk_text_iter_up_lines, gtk_text_iter_down_lines): Remove these
16947
16948         (gtk_text_iter_next_char, gtk_text_iter_prev_char): Renamed from 
16949         gtk_text_iter_forward_char, etc.
16950
16951         (gtk_text_iter_forward_to_tag_toggle): Renamed from
16952         forward_find_tag_toggle, since this isn't a linear search
16953
16954         (GtkTextCharPredicate): rename from GtkTextViewCharPredicate
16955
16956         (gtk_text_iter_forward_search, gtk_text_iter_backward_search): 
16957         New functions, search for a buffer substring.
16958
16959         * gtk/gtktextbuffer.h: Add fields to store whether a paste is
16960         interactive and default editable (since we need to store that info
16961         until we receive the selection data).
16962
16963         Remove all the _at_char and at_line etc. versions of functions;
16964         only have iterator versions.
16965
16966         Add _interactive() versions of functions, that consider the
16967         editability of text. (FIXME add interactive flag to the 
16968         insert/delete signals per Darin's suggestion)
16969
16970         (gtk_text_buffer_get_tag_table): new function, demand-creates the
16971         tag table if necessary
16972
16973         Remove declaration of gtk_text_buffer_get_iter_from_string
16974
16975         (_gtk_text_buffer_get_btree): private/internal function, added.
16976         
16977
16978         * gtk/gtktextbtree.h: Remove forward decl of GtkTextLineData.
16979         (gtk_text_line_is_last): new function
16980
16981 2000-07-25  Havoc Pennington  <hp@redhat.com>
16982
16983         * gtk/gtkprogressbar.h: Implement new sane, 5-function API for
16984         using GtkProgressBar. See Changes-2.0.txt for details.
16985
16986         * gtk/gtkprogressbar.c: Add object arguments "fraction" and
16987         "pulse_step" which are the equivalent of
16988         gtk_progress_bar_set_pulse_step and gtk_progress_bar_set_fraction.
16989         Implement new API.
16990         
16991         * gtk/gtkprogress.h (struct _GtkProgress): Add a field
16992         (use_text_format) to mark whether text set on the progress bar is
16993         a format string. Deprecate entire GtkProgress interface.
16994
16995         * gtk/gtkprogress.c (gtk_progress_init): init use_text_format to TRUE
16996         (gtk_progress_build_string): make this a no-op if use_text_format
16997         is FALSE
16998
16999         * docs/Changes-2.0.txt: Describe progress bar changes.
17000
17001 2000-07-25  Tor Lillqvist  <tml@iki.fi>
17002
17003         * Makefile.am: Include the build directory.
17004
17005         * configure.in: Generate build/Makefile, build/win32/Makefile,
17006         gdk/, gdk/win32/, and gtk/makefile.mingw.
17007
17008         * config.h.win32: Add USE_GMODULE and USE_MMX for gdk-pixbuf.
17009         Add GETTEXT_PACKAGE.
17010         
17011         * gdk/gdk.def
17012         * gtk/gtk.def: Updates.
17013
17014         * gdk/gdkfont.h
17015         * gdk/gdkpixmap.h: Remove temporary Win32-only functions, we don't
17016         need them any longer.
17017
17018         * gdk/gdkinput.h: Mark gdk_core_pointer for export/import.
17019
17020         * gdk/makefile.mingw.in: Define GDK_COMPILATION. Link with
17021         PANGOWIN32_LIBS and gdk_pixbuf.
17022
17023         * gdk/win32: Compiles, but no doubt doesn't work at all.
17024
17025         * gdk/win32/makefile.mingw.in: Define GDK_COMPILATION. 
17026
17027         * gdk/win32/gdkinput.c: New file, temporarily.
17028         
17029         * gdk/win32/gdkinput-win32.h: New file
17030
17031         * gdk/win32/gdkinputprivate.h: Remove.
17032
17033         * gdk/win32/gdkpango-win32.c: New file.
17034
17035         * gtk/makefile.mingw.in: New file
17036
17037         * gtk/makefile.cygwin: Removed
17038         
17039         * gtk/Makefile.am: Update accordingly.
17040
17041         * gtk/gtkrc.[ch] (gtk_win32_get_installation_directory): Renamed and
17042         made externally visible.
17043
17044         * gtk/gtkmain.c: Use it.
17045         
17046         * gtk/gtktextdisplay.c: No need to include pangox.h, pango.h
17047         is enough.
17048
17049         * gtk/gtktypeutils.c: Mark glib_debug_objects for import.
17050
17051 2000-07-24 Elliot Lee <sopwith@redhat.com>
17052         * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
17053         individual backends already.
17054         * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
17055         again. Yes, there really is a good reason for this, if you are using the gdkregion
17056         internals, and if you're not, why do you care?
17057         * gdk/gdkwindow.c: Fix inverted condition
17058         * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
17059         * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
17060         * gtk/gtkrange.c: Redraw trough when moving.
17061         * gtk/gtktypeutils.c: Fix warning by adding const cast.
17062         * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
17063
17064 2000-07-23  Tor Lillqvist  <tml@iki.fi>
17065
17066         * configure.in: Check for mkstemp and sigsetjmp. Output
17067         gdk-pixbuf/makefile.mingw and gdk-pixbuf/pixops/makefile.mingw.
17068
17069         More work on GDK for Win32. Still in an intermediate state.
17070
17071         * gdk/makefile.cygwin
17072         * gdk/win32/makefile.cygwin: Removed.
17073         
17074         * gdk/makefile.mingw.in
17075         * gdk/win32/makefile.mingw.in: New files.
17076
17077         * gdk/Makefile.am
17078         * gdk/win32/Makefile.am: Generate and distribute them.
17079
17080         * gdk/win32/gdkwindow-win32.h
17081         * gdk/win32/gdkdrawable-win32.h
17082         * gdk/win32/gdkpixmap-win32.h: New files.
17083
17084         * gdk/win32/gdkcolor-win32.c
17085         * gdk/win32/gdkcursor-win32.c
17086         * gdk/win32/gdkdrawable-win32.c
17087         * gdk/win32/gdkgc-win32.c
17088         * gdk/win32/gdkimage-win32.c
17089         * gdk/win32/gdkprivate-win32.h
17090         * gdk/win32/gdkwin32.h: Update data structures. Cosmetics:
17091         Rename fields and variables called xcursor, xid, etc (these names
17092         were leftovers from the X11 backend) to hcursor, hwnd, hbitmap etc.
17093
17094 Sat Jul 22 17:41:26 2000  Owen Taylor  <otaylor@redhat.com>
17095
17096         * gtk/gtkentry.[ch]: Fix some problems with vertical
17097         alignment.
17098
17099         * gtk/gtkentry.c (gtk_entry_find_position): Fix 
17100         char/byte confusion.
17101
17102 Sat Jul 22 11:16:05 2000  Owen Taylor  <otaylor@redhat.com>
17103
17104         * gtk/gtktextview.c (changed_handler): Fix bug where
17105         redraw wasn't being done properly when height of
17106         dirty region changed.
17107
17108         * demos/Makefile.am: Remove various references to
17109         -lgmodule
17110
17111 Fri Jul 21 15:28:13 2000  Owen Taylor  <otaylor@redhat.com>
17112
17113         * gtk/gtktextlayout.[ch], gtk/gtktextdisplay.c: Use new
17114         PangoAttrShape to reserve space for pixmaps, add 
17115         GSList *pixmaps to GtkTextLineDisplay, draw the pixmaps
17116         in the display functions.
17117         
17118         * gtk/testgtk.c (create_layout): Set some more exotic
17119         scrolled window options
17120
17121         * gtk/gtkscrolledwindow.[ch] (gtk_scrolled_window_set_shadow_type):
17122         Add function to set the shadow type of a window, to allow
17123         putting a shadow around widgets such as GtkLayout or GnomeCanvas
17124         which don't draw their own frame.
17125
17126 Fri Jul 21 16:34:42 BST 2000  Tony Gale <gale@gtk.org>
17127
17128         * docs/tutorial/package-db-tutorial.sh: New file for
17129           packaging DocBook format tutorial
17130
17131 Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>
17132
17133         * docs/tutorial/gtk-tut.sgml: Minor updates
17134
17135         * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
17136
17137 2000-07-19  Tor Lillqvist  <tml@iki.fi>
17138
17139         * gtk/gtksignal.c: Fix C++ comment.
17140
17141         * gtk/gtkimmulticontext.c
17142         * gtk/gtktextbtree.c: Remove gccisms: Don't use __FUNCTION__,
17143         don't return value from void functions.
17144
17145         * gtk/gtk.def: Add gtk_rc_style_unref.
17146
17147 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
17148
17149         * gdk-pixbuf/gdk-pixbuf.h, gtk/gtkhsv.h, gtk/gtktextbtree.h,
17150         gtk/gtktextbuffer.h, gtk/gtktextchild.h, gtk/gtktextdisplay.h,
17151         gtk/gtktextiter.h, gtk/gtktextiterprivate.h, gtk/gtktextlayout.h,
17152         gtk/gtktextmarkprivate.h, gtk/gtktextsegment.h, gtk/gtktexttag.h,
17153         gtk/gtktexttagtable.h, gtk/gtktexttypes.h, gtk/gtktextview.h,
17154         gtk/gtktypeutils.h: Include files outside of the extern "C"
17155         block. Makes some C++ compiler happy. Reported by Denis Vakatov
17156         <vakatov@peony.nlm.nih.gov>.
17157
17158 Wed Jul 19 14:07:57 BST 2000  Tony Gale <gale@gtk.org>
17159
17160         * docs/tutorial/gtk-tut.sgml: Yet more clean ups.
17161           Completes first pass. Hurrah!
17162
17163 Tue Jul 18 17:17:55 BST 2000  Tony Gale <gale@gtk.org>
17164
17165         * docs/tutorial/gtk-tut.sgml: More clean ups.
17166
17167 Mon Jul 17 18:52:38 2000  Owen Taylor  <otaylor@redhat.com>
17168
17169         * gtk/gtkentry.c (gtk_entry_draw_text): Restore code to
17170         paint the background of the text area which was accidentally
17171         removed at some point.
17172
17173         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch] gtk/gtkthemes.[ch]: 
17174           
17175          - Move most of the functionality from the theme vtable
17176            into GtkRcStyleClass and GtkStyleClass. The moved
17177            vtable functions were changed a bit in the move to
17178            work better in their new home.
17179
17180          - Get rid of the engine and engine_data fields from
17181            GtkRcStyle and GtkStyle; instead the theme
17182            engine derives theme-specific subclasses of GtkRcStyle
17183            and GtkStyle
17184
17185          - Add extra dlsym() found entry point to themes,
17186            theme_create_rc_style().
17187
17188         * gtk/gtkstyle.c: Copy xthickness, ythickness fields
17189         in gtk_style_real_copy.
17190
17191         * gtk/themes.[ch]: add a function gtk_theme_engine_register_type()
17192         to register a type associated with an engine. (The engine
17193         won't be unloaded as there is an instance of the type.)
17194
17195
17196 Mon Jul 17 18:19:06 BST 2000  Tony Gale <gale@gtk.org>
17197
17198         * docs/tutorial/gtk-tut.sgml: Clean ups.
17199
17200 Mon Jul 17 13:59:29 BST 2000  Tony Gale <gale@gtk.org>
17201
17202         * docs/tutorial/gtk-tut.sgml: Initial DocBook version. Lots
17203           of cleaning up to do.
17204
17205 2000-07-15  Tor Lillqvist  <tml@iki.fi>
17206
17207         * gdk/testgdk.c: New file, quick hack to test backends for
17208         pixel-by-pixel correctness of the most simple graphic operations.
17209
17210 Fri Jul 14 20:30:25 2000  Owen Taylor  <otaylor@redhat.com>
17211
17212         * Really release 1.3.1
17213         
17214         * gtk-config-2.0.in gtk-2.0.m4: Fix up to correspond to new
17215         include structure.
17216
17217 Fri Jul 14 18:40:39 2000  Owen Taylor  <otaylor@redhat.com>
17218
17219         * Released 1.3.1
17220
17221 Fri Jul 14 16:21:26 2000  Owen Taylor  <otaylor@redhat.com>
17222
17223         * gtk/gtktextlayout.c: use FALSE for size_only most
17224         of the time when calling gtk_text_layout_get_line_display()
17225         to avoid causing double reshapes when a redraw follows
17226         immediately after.
17227
17228 Tue Jul 11 11:13:40 2000  Owen Taylor  <otaylor@redhat.com>
17229
17230         * gtk/gtkrange.c (gtk_range_default_[hv]slider_update): Invalidate
17231         appropriate region and gdk_window_process_updates() so trough
17232         updating doesn't lag behind the window being scrolled.
17233
17234         * gdk/gdkgc.c: Make parent_class pointer static.
17235          
17236 Sun Jul  9 21:31:23 2000  Owen Taylor  <otaylor@redhat.com>
17237
17238         * gdk/gdk-pixbuf.c gtk/gdk-pixbuf-loader.c gtk/gtktextview.c:
17239         include <string.h>.
17240          
17241         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Fix
17242         cut-and-paste error in computing memory offset for 4 channels.
17243
17244 Fri Jul 14 14:05:02 2000  Owen Taylor  <otaylor@redhat.com>
17245
17246         * gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string): Remove
17247         gtk_rc_append_default_pixmap_path(), since it wasn't
17248         adding an interesting path and we don't have a meaningful
17249         default for this value.
17250
17251 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
17252
17253         * configure.in Makefile.am gtk-config.m4 gtk.m4: Move
17254         gtk-config to gtk-config-2.0 move gtk_.m4 to
17255         gtk-2.0.m4
17256
17257         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
17258         gdk/Makefile.am demos/Makefile.am: Change 
17259         library names to libgtk-1.3.la, etc, so that we
17260         can distinguish gtk-1.2 and gtk-2.0 on the linkline.
17261
17262         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
17263         gdk/Makefile.am gdk/x11/Makfile.am
17264         Move include files into /usr/include/gtk-2.0, 
17265         /usr/lib/gtk-2.0/include/
17266          
17267         * autogen.sh acconfig.h configure.in gtk/gtkmain.c
17268         gtk/gtkintl.h: Change package for gettext from 
17269         gtk+ to gtk20. Put hack in autogen.sh to modify
17270         po/Makefile.in.in after gettextize to make this
17271         possible.
17272
17273         * gtk+.spec: Some updates, not tested.
17274
17275         * gdk-pixbuf/Makefile.am: Move loaders into
17276         $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders.
17277
17278         * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations
17279         $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir
17280         to THEMENAME/gtk-2.0/. Move engine directory  to
17281         $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
17282         
17283 2000-07-12  Tor Lillqvist  <tml@iki.fi>
17284
17285         Win32 changes, still doesn't build though.
17286
17287         * gdk/makefile.cygwin
17288         * gdk/win32/makefile.cygwin
17289         * gtk/makefile.cygwin: Updates.
17290
17291         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Use the same
17292         default values for fg and bg pixel as X11 does (0 and 1), not
17293         black and white. Use PS_ENDCAP_FLAT and PS_JOIN_MITER by default.
17294         Use 0 for pen width by default (treated as 1 anyway later, but for
17295         apps that might check the value in the GdkGC).
17296         (gdk_win32_hdc_get, gdk_win32_hdc_release): New functions, public
17297         interface to gdk_gc_predraw and _postdraw.
17298
17299         * gdk/win32/gdkwin32.h
17300         * gdk/gdk.def: Add gdk_win32_hdc_{get,release}.
17301
17302         * gdk/win32/gdkcolor-win32.c (gdk_colormap_alloc1): Remove
17303         extraneous semicolon.
17304
17305         * gdk/win32/gdkdrawable-win32.c: Check also for pen_width == 0.
17306
17307         * gdk/win32/gdkimage-win32.c (gdk_image_new): Use the visual's depth,
17308         not the Win32 bitspixel value.
17309
17310         * gdk/win32/gdkcc-win32.c:
17311         * gdk/win32/gdkcolor-win32.c 
17312         * gdk/win32/gdkprivate-win32.h
17313         * gdk/win32/gdkwin32.h: Changes to make compilable, with new
17314         GDK object structure.
17315
17316 Tue Jul 11 20:59:35 2000  Tim Janik  <timj@gtk.org>
17317
17318         * docs/tutorial/gtk_tut_12.es.sgml (name): 
17319         * docs/tutorial/gtk_tut_it.sgml (name): 
17320         * docs/tutorial/gtk_tut_fr.sgml (name): 
17321         * docs/tutorial/gtk_tut.sgml (name): scratched notion of completely
17322         outdated email adress: s/timj@psynet.net/timj@gtk.org/.
17323
17324 Tue Jul 11 13:10:57 BST 2000  Tony Gale <gale@gtk.org>
17325
17326         * docs/faq/gtk-faq.sgml: Cleanup indenting and various
17327           small changes.
17328
17329 Tue Jul 11 08:04:58 2000  Tim Janik  <timj@gtk.org>
17330
17331         * gtk/gtktree.c (gtk_real_tree_select_child): eek, i've never seen
17332         a bug here, never been here and never fixed anything ;(
17333         (don't segfault if tree->root_tree is NULL, which happens prior
17334         to widget realization, but puke instead).
17335
17336 Tue Jul 11 06:38:42 2000  Tim Janik  <timj@gtk.org>
17337
17338         * gtk/gtkrc.h: add xthickness and ythickness to GtkRcStyle and
17339         add the necessary tokens.
17340
17341         * gtk/gtkrc.c (gtk_rc_style_init): properly initiality the rc style.
17342         (gtk_rc_style_to_style): copy thicknesses.
17343         (gtk_rc_init_style): apply thicknesses.
17344         (gtk_rc_parse_style): parse xthickness and ythickness.
17345
17346         * gdk/x11/gdkdnd-x11.c: silence compiler in switch() statements.
17347
17348         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): 
17349         (gdk_window_new): 
17350         (_gdk_windowing_window_init): 
17351         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new): 
17352         (gdk_pixmap_create_from_data): 
17353         (gdk_bitmap_create_from_data): 
17354         (gdk_pixmap_new): 
17355         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
17356         (gdk_image_new): 
17357         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): 
17358         * gdk/x11/gdkdnd-x11.c (gdk_drag_context_new): 
17359         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get):
17360         (gdk_colormap_get_system): 
17361         (gdk_colormap_new): 
17362         * gdk/gdkwindow.c (gdk_window_init): 
17363         * gtk/gtkstyle.c (gtk_style_new):
17364         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
17365         * gdk/gdkpixmap.c (gdk_pixmap_init): 
17366         * gtk/gtkrc.c (gtk_rc_style_new):
17367         use g_object_new() instead of g_type_create_instance() which
17368         is a private function for fundamental type implementations.
17369
17370 Thu Jul  6 16:12:14 2000  Owen Taylor  <otaylor@redhat.com>
17371
17372         * configure.in: Add check for db2html
17373
17374 Thu Jul  6 14:53:05 2000  Owen Taylor  <otaylor@redhat.com>
17375
17376         * gtk/gtktypeutils.c (gtk_type_init): Add a temporary 
17377         hack to set glib_debug_objects based on gtk_debug_flags.
17378
17379 Thu Jul  6 14:12:13 2000  Owen Taylor  <otaylor@redhat.com>
17380
17381         * INSTALL.in: Update the Prerequisites section.
17382
17383         * Makefile.am demos/Makefile.am docs/Makefile.am
17384         docs/tutorial/Makefile.am gdk/x11/Makefile.am
17385         gdk/linux-fb/Makefile.am: Dist fixes
17386
17387 Thu Jul  6 12:26:03 2000  Owen Taylor  <otaylor@redhat.com>
17388
17389         * NEWS: 10,000 foot view of 1.3.1 changes.
17390
17391 Thu Jul  6 11:54:03 2000  Owen Taylor  <otaylor@redhat.com>
17392
17393         * gdk/gdk.h gdk/gdktypes.h gdk/linux-fb/gdkmain-fb.c
17394         gdk/nanox/gdkmain-nanox.c gdk/win32/gdkevents-win32.c
17395         gdk/win32/gdkinput-win32.c gdk/win32/gdkwin32.h
17396         gdk/x11/gdkmain-x11.c: 
17397
17398         Patch from George Lebl to add a GdkGrabStatus enumeration to use
17399         as a return value of gdk_*_grab(). Previously, we just
17400         returned the X11 values directly.
17401
17402 Thu Jul  6 11:27:44 2000  Owen Taylor  <otaylor@redhat.com>
17403
17404         * gdk/x11/Makefile.am: Patch from George Lebl to 
17405         install all the headers in the right place.
17406
17407 Tue Jul  4 13:13:01 BST 2000  Tony Gale <gale@gtk.org>
17408
17409         * docs/faq/gtk-faq.sgml: Add remaining sections. Completes
17410           initial conversion to DocBook.
17411
17412 2000-07-04  Tor Lillqvist  <tml@iki.fi>
17413
17414         * README.win32: Improve a bit.
17415
17416         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle also
17417         WM_SYSCHAR, and other changes to get handling of Alt+nnn or
17418         Alt+0nnn on the numpad (used to enter characters by numeric code
17419         from current DOS or ANSI codepage) working correctly, as in other
17420         Windows apps.
17421
17422         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Use
17423         same argument validity tests as in X11 version.
17424         (_gdk_cursor_destroy): Use DestroyCursor, not DestroyIcon.
17425
17426         * gdk/win32/gdkwin32.h: Add also WM_MOUSEWHEEL and CopyCursor
17427         definitions in case missing from headers.
17428
17429         * gdk/win32/gdkwindow-win32.c (gdk_win32_window_destroy): Also
17430         destroy the window-specific cursor.
17431         (RegisterGdkClass): Use the global gdk_ProgInstance instead of
17432         calling GetModuleHandle(NULL).
17433         (gdk_window_set_cursor): Reworked to always copy the passed cursor
17434         with CopyCursor before setting it as the window-specific
17435         cursor. It is OK for the caller to destroy the GdkCursor (and thus
17436         also its Windows cursor) after calling this function. Destroy any
17437         previous window-specific cursor.
17438
17439 Mon Jul  3 17:54:49 2000  Owen Taylor  <otaylor@redhat.com>
17440
17441         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): 
17442         font charset is iso8859-1, not iso-8859-1.
17443
17444 Mon Jul  3 17:08:14 2000  Owen Taylor  <otaylor@redhat.com>
17445
17446         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale):
17447         Use g_get_charset() instead of g_get_codeset().
17448
17449         * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: 
17450         Comment out some strdup'ing functions to keep timj
17451         happy until we finish fighting this out.
17452
17453 Mon Jul  3 14:24:16 2000  Owen Taylor  <otaylor@redhat.com>
17454
17455         * gtk/gtkwidget.c (gtk_widget_draw): Ignore calls with
17456         <= width or height.
17457
17458         * gtk/gtktable.c (gtk_table_attach): Fix missed merge
17459         from 1.2 for parent/child states.
17460
17461         * gdk/gdkgc.c (gdk_gc_set_rgb_fg/bg_color): Fix a couple
17462         of typos.
17463
17464         * gdk/gdkevents.[ch]: Remove press/xtilt/ytilt fields of
17465         event structures, replace with a generic axes field. Replace 
17466         deviceid/sourec with GdkDevice *device.
17467
17468         * gdk/gdkevents.[ch] (gdk_event_get_axis): Add function
17469         to extract particular axis use value from event. (Also
17470         can be used for normal X/Y.)
17471
17472         * gdk/gdkinput.h gdk/x11/gdkinput*: Major revision;
17473         allow for arbitrary number of axes, namespace everything
17474         as gdk_device_*. Replace guint32 deviceid with GdkDevice *
17475         everywhere.
17476
17477         * gdk/x11/{gdkmain-x11.c,gdkevent-x11.c,gdkinput*}: 
17478         Get rid of the gdk_input_vtable setup if favor of simply
17479         defining the functions in gdkinput-none/gxi/xfree.c in
17480         a similar fashion to the way that the port structure is 
17481         done.
17482
17483         * gtk/gtkdnd.c: Fix fields of synthesized button press event
17484         for new event structures. 
17485
17486         * gtk/gtkinputdialog.c gtk/testinput.c: Revise to match
17487         new device interfaces.
17488
17489 Sun Jul  2 18:19:50 2000  Owen Taylor  <otaylor@redhat.com>
17490
17491         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_layout): Add a 'text' argument to
17492         set the initial text.
17493
17494         * gtk/gtkaccellabel.c gtk/gtkcalendar.c gtk/gtkclist.c
17495         gtk/gtkentry.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c
17496         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvruler.c
17497         gtk/gtkvscale.c: Adapt to new argument of create_pango_layout().
17498
17499         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
17500         pango_layout_set_font_description to simplify.
17501
17502 Sun Jul  2 17:43:41 2000  Owen Taylor  <otaylor@redhat.com>
17503
17504         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
17505         pango_layout_set_font_description to simplify.
17506
17507 Sun Jul  2 17:06:40 2000  Owen Taylor  <otaylor@redhat.com>
17508
17509         * gtk/gtkcalendar.c gtk/gtkclist.c gtk/gtkctree.c gtk/gtkhscale.c
17510         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvscale.c gtk/gtkaccellabel.c: Use
17511         pango_layout_get_pixel_extents() to remove a large number of '/ PANGO_SCALE'.
17512
17513         * gtk/gtk[hv]ruler.c gtk/gtklabel.c: replace some / PANGO_SCALE with
17514         PANGO_PIXELS() macro.
17515
17516 Sun Jul  2 15:24:41 2000  Owen Taylor  <otaylor@redhat.com>
17517
17518         * gtk/gtkwidget.[ch] (gtk_widget_get_pango_context): Add new function
17519         that returns a PangoContext owned by the widget and updated to
17520         match future changes in the widget. Also, make 
17521         gtk_widget_create_pango_layout() use this context. If we ever
17522         add a ::changed signal to PangoContext, this will make things
17523         much more convenient. 
17524
17525         * gtk/gtkentry.c gtk/gtklabel.c: Call pango_layout_context_changed()
17526         in the appropriate places instead of destroying the layouts and
17527         creating new ones.
17528
17529         * gtk/gtkfontsel.[ch] gtk/gtkclist.c: Use gtk_widget_get_pango_context()
17530         in a few strategic places.
17531
17532 Sun Jul  2 14:37:58 2000  Owen Taylor  <otaylor@redhat.com>
17533
17534         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Call 
17535         gtk_widget_size_request() on reparented child, if one. Otherwise,
17536         queue_resize() on the child never results in it getting size-requested
17537         at all.
17538
17539         * gtk/testgtk.c (build_option_menu): Remove silly radio-menu-items
17540         in option menus, so that (with luck) people won't copy it into
17541         their apps in the future.
17542
17543         * gtk/gtkoptionmenu.c: Connect ::size_request on the menu
17544         to gtk_option_menu_calc_size. This isn't perfect, but should fix
17545         a lot of problems with changing the size of the menu's menu
17546         items after adding it to the option menu.
17547
17548         * gtk/gtktexttag.c: Include gtkmain.h for gtk_get_default_language().
17549
17550         * gtk/gtkwidget.[ch]: Add a ::direction_changed that triggers when
17551         the text direction for a widget changes.
17552
17553         * gtk/gtk{entry.c,label.[ch],textview.[ch]} gtk/testgtk.c: Use
17554         ::direction_changed to get rid of various hacks.
17555
17556 Sun Jul  2 13:19:12 2000  Owen Taylor  <otaylor@redhat.com>
17557
17558         * docs/Changes-2.0.txt: Move Changes-1.4.txt to the appropriate
17559         name.
17560
17561 Sun Jul  2 13:06:26 2000  Owen Taylor  <otaylor@redhat.com>
17562
17563         * gdk/x11/gdkpixmap-x11.[ch] Changes-1.4.txt: Add a is_foreign
17564         flag to the structure. Do not call XFreePixmap on pixmaps created
17565         by gdk_pixmap_foreign_new().
17566
17567 Sun Jul  2 12:45:50 2000  Owen Taylor  <otaylor@redhat.com>
17568
17569         * gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
17570         value using GdkRGB functionality given GdkColormap and GdkColor.
17571         (name not final, waiting for inspiration.)
17572         
17573         * gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
17574         set the foreground/background of a GC using the GC's colormap
17575         and GdkRGB. (name not final, waiting for inspiration.)
17576
17577         * gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from 
17578         gdk_rgb_get_cmap(), put #define in gdkcompat.h.
17579
17580         * gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
17581         gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
17582         purely a function of the corresponding colormap. Make
17583         gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
17584
17585         * gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
17586         gdk_pixbuf_*create_from_xpm_* in terms of
17587         gdk_pixbuf_new_from_xpm_data(), move into platform independent
17588         code.
17589
17590         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
17591         advantage of the new draw_rgb_32_image_dithalign.
17592
17593         * gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
17594
17595         * gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
17596         on each created GC.
17597
17598         * gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
17599
17600         * gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
17601         which we initialize from the drawable when the GC is created,
17602         if the drawable has a colormap.
17603
17604         * gdk/x11/gdkgc-x11.c: include string.h for memset.
17605
17606         * gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
17607
17608         * gtk/gtklayout.[ch]: Remove unsed configure serial member.
17609
17610 Sat Jul  1 16:28:32 2000  Owen Taylor  <otaylor@redhat.com>
17611
17612         * gdk/x11/gdkevents-x11.c (gdk_event_translate): When
17613         actually returning expose events, make sure to set
17614         the count field properly.
17615
17616         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): Fix
17617         accidentally reintroced bug which always cleared
17618         the graphics_exposures value. 
17619
17620 Wed Jun 28 18:03:09 BST 2000  Tony Gale <gale@gtk.org>
17621
17622         * docs/faq/gtk-faq.sgml: Change DocBook layout slightly
17623
17624 Wed Jun 28 17:49:05 BST 2000  Tony Gale <gale@gtk.org>
17625
17626         * docs/faq/gtk-faq.sgml: Finish Section 6. Add Section 7.
17627
17628 Wed Jun 28 13:31:55 BST 2000  Tony Gale <gale@gtk.org>
17629
17630         * docs/faq/gtk-faq.sgml: Start of Section 6.
17631
17632 Mon Jun 26 19:37:04 2000  Owen Taylor  <otaylor@redhat.com>
17633
17634         * configure.in: Put 1.3.1 in warning message, not 1.3.0.
17635         
17636         (Fixes problem with drawing childless frames. Pointed out
17637         by and a first patch from Anders)
17638         
17639         * gtk/gtkframe.c (gtk_frame_compute_child_allocation): Always
17640         compute a child_allocation, even if we don't have a child.
17641
17642         * gtk/gtkaspectframe.c (gtk_aspect_frame_compute_child_allocation):
17643         Always chain to the parent's impl, even if we don't have a child.
17644
17645 Mon Jun 26 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
17646
17647         * gdk/gdkrgb.c: If possible, create only a single shm segment and
17648         use multiple parts of it instead of creating a bunch of separate
17649         segments, since the maximum number of segments per system is not
17650         large. (This might be worth backporting to GTK+-1.2.x if we make a
17651         new release )
17652
17653         * gdk/gdkrgb.c: Localize a bunch of variables into the GdkRgbInfo
17654         structure in preparation for per-colormap GdkRGB.
17655
17656         * gdk/x11/gdkimage-x11.c (gdk_image_new): Don't set gdk_use_xshm
17657         to False when we get EINVAL from shmget so that the caller of
17658         gdk_image_new can retry with a smaller segment size.
17659
17660 Mon Jun 26 13:01:16 BST 2000  Tony Gale <gale@gtk.org>
17661
17662         * docs/faq/gtk-faq.sgml: Add Sections 4 & 5.
17663
17664 Fri Jun 23 17:54:23 2000  Tim Janik  <timj@gtk.org>
17665
17666         * configure.in: make the current version number 1.3.1 (binary age 0,
17667         interface age 0).
17668         
17669         * gtkfeatures.h, gtkfeatures.h.in: dejavue, get rid of these *again*,
17670         gtkcompat.h is all we want.
17671
17672         * gtk/gtktypeutils.[hc]: define most of the primitive types in terms of
17673         GLib primitive types. fixed g_type_register_fundamental() argument
17674         ordering.
17675
17676         * gtk-config.in (lib_gtk): add -lgdk_pixbuf so third party code
17677         compiles.
17678
17679         * gdk-pixbuf-loader.[hc]: get rid of unistd.h include.
17680         object code cleanup, comment trigraph fixes, etc...
17681
17682 2000-06-23  Havoc Pennington  <hp@redhat.com>
17683
17684         * gtk/gtktextview.c (gtk_text_view_set_buffer): Use anonymous mark 
17685         instead of making up a bogus name for first_para_mark
17686
17687         * gtk/gtkstatusbar.h, gtk/gtkstatusbar.c: Allow 
17688         0 as a context ID
17689
17690 Thu Jun 22 17:43:51 BST 2000  Tony Gale <gale@gtk.org>
17691
17692         * docs/faq/gtk-faq.sgml: Change filename. Add Section 3.
17693
17694 2000-06-21  Havoc Pennington  <hp@pobox.com>
17695
17696         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Fix bug where
17697         we didn't check window->bg_pixmap != GDK_NO_BG.
17698
17699         * gtk/gdk-pixbuf-loader.c: Change to reflect GObject-ification of
17700         gdk-pixbuf
17701
17702 Thu Jun 22 14:02:19 BST 2000  Tony Gale <gale@gtk.org>
17703
17704         * docs/faq/gtk-faq.sgm: Move file to here.
17705           TODO: Update Makfile.am 
17706
17707 Thu Jun 22 13:41:09 BST 2000  Tony Gale <gale@gtk.org>
17708
17709         * docs/gtk-faq.sgm: Add Section 2
17710
17711 Thu Jun 22 08:43:45 BST 2000  Tony Gale <gale@gtk.org>
17712
17713         * docs/gtk-faq.sgm: New file. Start of DocBook
17714           version of the FAQ.
17715
17716 Wed Jun 21 23:04:17 2000  Owen Taylor  <otaylor@redhat.com>
17717
17718         * configure.in (GDK_PIXBUF_MAJOR): Define version
17719         numbers for GDK_PIXBUF_*, as they get substituted
17720         into a header file. Need to consider versioning
17721         for gdk-pixbuf more carefully later.
17722
17723 2000-06-21  Raja R Harinath  <harinath@cs.umn.edu>
17724
17725         Work with srcdir != builddir.   
17726         * demos/testanimation.c: Don't include "gdk-pixbuf.h".  Use
17727         <gtk/gdk-pixbuf-loader.h>, not "gtk-pixbuf/gdk-pixbuf-loader.h".
17728         * demos/testpixbuf.c: Likewise.
17729         * demos/testpixbuf-scale.c: Don't include "gdk-pixbuf.h".
17730         * demos/testpixbuf-drawable.c: Don't include "gdk-pixbuf.h".  Use
17731         <gdk/x11/gdkx.h>.
17732         * demos/pixbuf-demo.c: Use <gtk/gtk.h> not "gtk.h".  Don't include
17733         "gdk-pixbuf.h".
17734         * demos/Makefile.am (INCLUDES): Remove unneeded directories.
17735
17736 Wed Jun 21 19:45:02 2000  Owen Taylor  <otaylor@redhat.com>
17737
17738         * TODO.xml: Change 1.4 version numbers to 2.0.
17739
17740 Wed Jun 21 19:29:08 2000  Owen Taylor  <otaylor@redhat.com>
17741
17742         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf-drawable.c: Indentation
17743         fixups to GTK+ standard.
17744
17745 Wed Jun 21 16:38:13 2000  Owen Taylor  <otaylor@redhat.com>
17746
17747         * gdk-pixbuf/* docs/reference/gdk-pixbuf/*: Welcome aboard,
17748         gdk-pixbuf.
17749
17750         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
17751         fixups for GObject.
17752
17753         * gdk/Makefile.am gdk/gdkpixbuf-render.[ch] gdk/gdkpixbuf.[ch]: Bits of 
17754         gdk-pixbuf with GDK dependencies moved into GDK.
17755         
17756         * gtk/Makefile.am gtk/gdk-pixbuf-loader.[ch]: Temporarily
17757         move gdk-pixbuf-loader here until GObject has signals.
17758
17759         * demos/: New directory of demos. Move demos from
17760         gdk-pixbuf here.
17761
17762         * demos/pixbuf-init.c: Small bit of code to check for
17763         loaders in ../gdk-pixbuf/.libs/gdk-pixbuf, and if found,
17764         set GDK_PIXBUF_MODULEDIR appropriately.
17765
17766         * gdk/gdkcompat.h: Remove GDK_DRAWABLE_PIXMAP compat
17767         define which no longer makes sense.
17768
17769 2000-06-21  Havoc Pennington  <hp@redhat.com>
17770
17771         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Use
17772         gtk_get_default_language
17773
17774         * gtk/gtkmain.h, gtk/gtkmain.c (gtk_get_default_language): 
17775         new function to get the default language
17776
17777         * gtk/gtktexttagprivate.h, gtk/gtktexttag.c, gtktextview.c: 
17778         s/gtk_text_view_style_values/gtk_text_style_values/
17779
17780         * gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktexttagprivate.h:
17781         Add a "language" field to tags.
17782
17783         (gtk_text_tag_set_arg): Fix bug in setting
17784         "bg_full_height_set" tag.
17785
17786 2000-06-21  Havoc Pennington  <hp@redhat.com>
17787
17788         * gtk/gtktextiter.h: Use gunichar instead of gint when appropriate
17789         in the interfaces
17790
17791         * gtk/gtktexttypes.c: Remove UTF functions, use glib 
17792         stuff instead when possible.
17793
17794         * gtk/gtktexttypes.h: Delete some unused constants
17795
17796         * gtktextbtree.c, gtktextiter.c, gtktextsegment.c, gtktextview.c,
17797         testtextbuffer.c: use glib instead of custom unicode routines
17798
17799 Wed Jun 21 12:50:58 2000  Owen Taylor  <otaylor@redhat.com>
17800
17801         * docs/es/: Removed mistakenly added generated sgml
17802
17803         * docs/{gdk.texi,gtk.texi,gdk.sgml} macros.texi texinfo.tex:
17804         Remove outdated info files.
17805
17806         * docs/gtk_tut* docs/package_tutorial.sh docs/tutorial:
17807         Moved tutorial files into subdir
17808
17809         * docs/gtkfaq.sgml docs/faq/gtkfaq.sgml: Move FAQ into
17810         subdir.
17811
17812         * docs/man/gtk_button.pod: Remove. (contents will be
17813         integrated into gtk-reference button page.)
17814
17815         * configure.in docs/Makefile.am docs/tutorial/Makefile.am
17816         docs/faq/Makefile.am: Adjust for new organization
17817
17818 2000-06-21 Christopher Blizzard  <blizzard@redhat.com>
17819
17820         * gdk/x11/Makefile.am (install-data-local): use $(mkinstalldirs)
17821         not $(MKINSTALLDIRS)
17822
17823 Wed Jun 21 12:24:28 2000  Owen Taylor  <otaylor@redhat.com>
17824
17825         * gtk/testgtk.c (create_text): Finish the job Elliot started
17826         of removing font setting test for text widget. (Since text widget
17827         and GdkFont are not deprecated, and cause portability problems.)
17828
17829 Wed Jun 21 11:41:43 2000  Owen Taylor  <otaylor@redhat.com>
17830
17831         * gtk/gtkentry.c gtk/gtkimcontextsimple.c gtk/gtklabel.c
17832         gtk/gtktexttypes.c gtk/testtext.c modules/linux-fb/basic.c:
17833         Remove use of libunicode in favor of new GLib functions.
17834
17835         * gtk/gtkcolorsel.c: Remove conditional includes for FB, win32,
17836         nano-x, framebuffer. The X11 include is just a hack until we get
17837         the necessary functions in gdkcolor.h, so there is no reason to
17838         add other includes of platforms.
17839
17840         * gtk/gtkwindow.c (gtk_window_compute_default_size): Revert 
17841         window bigger than the screen change.
17842
17843         * gtk/testgtk.c: Revert some random changes from Elliot
17844         that had no particular point and were causing testgtkrc
17845         not to function correctly.
17846         
17847         * gdk/gdkregion-generic.h: Revert change from Elliot. Just
17848         because GdkSegment and GdkRegionBox have the same fields,
17849         it doesn't mean that 'typedef GdkSegment GdkRegionBox'
17850         results in clearer code.
17851
17852         * gdk/x11/gdkinput-x11.c (gdk_input_common_select_events,
17853         gdk_input_translate_coordinates): Fix missed GdkObjectification
17854
17855 2000-06-18  Elliot Lee  <sopwith@redhat.com>
17856
17857         * gdk/Makefile.am, gdk/*/Makefile.am: Fix conditionality to work the "right" way.
17858         * gtk/gtk{plug,socket}.h: Missed commits from previous.
17859
17860 2000-06-20  Havoc Pennington  <hp@redhat.com>
17861
17862         * modules/linux-fb/Makefile.am: Make this compile
17863         without framebuffer enabled
17864
17865         * gdk/linux-fb/Makefile.am: Add conditional to not build
17866         framebuffer unless specified in configure
17867
17868         * gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
17869         the size of the target instead of source if -1 was passed for
17870         width/height
17871
17872         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
17873         width/height confusion.
17874
17875 2000-06-19  Havoc Pennington  <hp@redhat.com>
17876
17877         * gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
17878         GDK_DRAWABLE_XID. In the future, we probably want to make it
17879         faster with G_DISABLE_CHECKS turned on.
17880
17881 2000-06-14  Havoc Pennington  <hp@redhat.com>
17882
17883         * gdk/Makefile.am: add gdkpixmap.c
17884
17885         * gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
17886         s/gdk_image_init/_gdk_windowing_image_init
17887
17888         * gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
17889         ref/unref
17890
17891         * gdk/gdkcolor.h: make GdkColormap a GObject subclass
17892
17893         * gdk/gdkcompat.h: remove GdkWindowType compat, since
17894         GdkWindowType is now non-deprecated; 
17895         change gdk_window_get_type() compat to be
17896         gdk_window_get_window_type().
17897
17898         * gdk/gdkdnd.h: make GdkDragContext a GObject.
17899
17900         * gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
17901         virtual GObject. Make all functions call into the vtable.
17902         Move gdk_image_put() guts in here. Remove GdkDrawableType
17903         and gdk_drawable_get_type(), these are now GdkWindow-specific.
17904         draw_image, get_depth, get_size, set_colormap, get_colormap,
17905         get_visual added to the vtable.
17906         
17907         * gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual 
17908         GObject. Virtualize everything. 
17909         (gdk_gc_new_with_values): remove check for destroyed window,
17910         because now GdkWindow::create_gc will check this.
17911         (gdk_gc_set_values): New function to set GC values, this 
17912         was already implemented but wasn't in the header
17913
17914         * gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
17915
17916         * gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
17917         _gdk_window_draw_image(), remove _gdk_windowing_window_class,
17918         remove _gdk_window_class; add _gdk_window_impl_get_type() and
17919         _gdk_pixmap_impl_get_type(). Rename gdk_window_init to
17920         _gdk_windowing_window_init, rename gdk_image_init to
17921         _gdk_windowing_image_init.
17922         
17923         * gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
17924         (gdk_draw_layout): Remove check for destroyed window, 
17925         because all the drawable methods already check it.
17926         
17927         * gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
17928         Add gdkpixmap.c which contains implementation of GdkDrawable
17929         virtual table (by chaining to a platform-specific implementation
17930         object).
17931         
17932         * gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP, 
17933         GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
17934         GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
17935         GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
17936         GdkColormapPrivate. 
17937
17938         * gdk/gdktypes.h: #include <glib-object.h>
17939
17940         * gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
17941         Move most functionality to platform-specific implementation
17942         object. GdkWindow itself now handles the backing store, then
17943         chains to the platform-specific implementation.
17944         (gdk_window_get_window_type): return GdkWindowType of the window.
17945         (gdk_window_peek_children): New routine, returns the children of 
17946         a GdkWindow
17947         (gdk_window_get_children): Was in X11-specific code and did 
17948         XQueryTree. Changed to simply return a copy of window->children; 
17949         so it can go in cross-platform code.
17950         
17951         * gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
17952
17953         * gdk/x11/gdkcolor-x11.c: implement X-specific parts of 
17954         GdkColormap; just changed to use the new private data instead
17955         of casting to GdkColormapPrivate.
17956
17957         * gdk/x11/gdkcursor-x11.c: added a couple typechecks to 
17958         gdk_cursor_new().
17959
17960         * gdk/x11/gdkdnd-x11.c: Change the way we access private fields 
17961         (private data member in the GObject). 
17962         (xdnd_manager_source_filter): Function had broken 
17963         error handling, fix it (use gdk_error_trap_push).
17964
17965         * gdk/x11/gdkdrawable-x11.c: This file now implements
17966         a base class for GdkWindowImplX11/GdkPixmapImplX11. This 
17967         base class is purely for the convenience of the X port,
17968         and not part of the interface to cross-platform GDK.
17969
17970         * gdk/x11/gdkevents-x11.c: Reflect various renamings.
17971         
17972         * gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
17973         specific to X, and returned by the create_gc virtual method
17974         of GdkDrawableImplX11. 
17975         (gdk_x11_gc_set_dashes): Change this to take an array of gint8
17976         rather than gchar, this was also changed in the GdkGC vtable.
17977         (gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
17978         mask is 0, return immediately, instead of checking every flag.
17979         This is faster, and keeps us from segfaulting if values is NULL
17980         and the mask contains some nonzero flags.
17981
17982         * gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
17983         GdkWindow.
17984
17985         * gdk/x11/gdkglobals-x11.c: change type of grab window, since 
17986         GdkWindowPrivate is gone.
17987
17988         * gdk/x11/gdkim-x11.c: rename things that got renamed.
17989
17990         * gdk/x11/gdkimage-x11.c: implement in terms of GObject, and 
17991         remove the image_put stuff that got transferred to GdkDrawable.
17992         
17993         * gdk/x11/gdkinput.c: renamings
17994
17995         * gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
17996
17997         * gdk/x11/gdkpixmap-x11.c: GObject conversion
17998
17999         * gdk/x11/gdkprivate-x11.h: indentation fixes
18000
18001         * gdk/x11/gdkproperty-x11.c: renamings
18002
18003         * gdk/x11/gdkselection-x11.c: renamings
18004
18005         * gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now 
18006         implements the platform-specific "impl" object.
18007         Moved gdk_window_get_children to gdk/gdkwindow.c
18008
18009         * gdk/x11/gdkx.h: Remove all the private structs and private datas
18010         that no longer exist. Add declaration of GdkGCX11 object here.
18011         Fix all the macros to still work. 
18012
18013         * gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
18014         GdkDragContext from the boxed types since they are now GObjects.
18015
18016         * gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
18017         moved xthickness/ythickness into the instance. GtkStyleClass
18018         functions are now in the standard vtable for GtkStyle, so you have
18019         to create a GObject subclass to write a theme engine.
18020         (gtk_style_copy): fixed a leaked PangoFontDescription
18021         (gtk_style_init): renamed gtk_style_realize, so gtk_style_init
18022         can be the standard GObject function.
18023         
18024         * Throughout GTK:
18025         s/style->klass->[xy]thickness/style->[xy]thickness
18026         s/pango_layout_unref/g_object_unref/
18027
18028         * gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
18029         
18030         * gtk/gtksocket.c: Use gdk_window_get_user_data() instead of 
18031         accessing GDK internals.
18032
18033         * gtk/gtkwidget.c: Use gdk_window_peek_children() instead of 
18034         accessing GDK internals.
18035
18036 2000-06-18  Elliot Lee  <sopwith@redhat.com>
18037
18038         * gtk/gtkwindow.c: Don't allow creation of a window bigger than the screen.
18039
18040         * gtk/gtkrange.c: Fix the mega-jumpy-with-lagged-events scrollbar
18041         problem by calculating event position relative to the trough
18042         rather than the slider.
18043         * gtk/gtkdnd.c, gtk/gtkcolorsel.c: Include FB headers if appropriate.
18044
18045         * gdk/gdkgc.h: Add GDK_NOR.
18046
18047         * configure.in, Makefile.am: Add modules top level dir
18048         * configure.in: Only use pangox library if building x11 target.
18049         * gdk/gdkdnd.h: Add GDK_DRAG_PROTO_LOCAL enum for future intra-app use.
18050
18051 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
18052
18053         * gtk/gtkcolorsel.c: Change private class member to be named
18054         private_data throughout the file.
18055
18056         * gtk/gtkcolorsel.h (struct _GtkColorSelection): Change private to
18057         private_data to avoid clashing with keyword.
18058
18059 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
18060
18061         * gdk/gdkdnd.h: Add comment to remove warning.
18062
18063 Sun Jun 18 15:35:35 2000  Pablo Saratxaga <pablo@mandrakesoft.com>
18064
18065         * gtk/gtkrc.cp1251,gtk/Makefile.am: the cp1251 is also used by
18066         Byelorussian language; changed the Makefile and file names 
18067         to reflect that.
18068
18069 Mon Jun 12 16:58:40 2000  Owen Taylor  <otaylor@redhat.com>
18070
18071         * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw
18072         rather than gdk_window_hide; this makes things work
18073         correctly if the window is programmatically hidden while
18074         iconified.
18075
18076 Sun Jun 11 12:46:19 2000  Owen Taylor  <otaylor@redhat.com>
18077
18078         * gtk/gtkdnd.c (gtk_drag_set_default_icon): Fix
18079         cut and paste typo where wrong pixmap was being
18080         unref'ed. (Pointed out by a friend of KUSANO Takayuki.)
18081
18082 Sun Jun 11 10:22:36 2000  Owen Taylor  <otaylor@redhat.com>
18083
18084         * gtk/gtkselection.c (gtk_selection_bytes_per_item):
18085         Add helper function to compute format / bytes 
18086         relationship. Use in a couple places to fix up
18087         errors which assume 8 * format.
18088
18089         * gtk/gtkselection.c (gtk_selection_request): Use 32
18090         rather than 8 * sizeof (GdkAtom), to work correctly
18091         on Alpha.
18092
18093 Thu Jun  8 21:54:51 2000 Christopher Blizzard  <blizzard@redhat.com>
18094
18095         * gtk/Makefile.am (DEPS): deps include libgtk-x11.la, not
18096         libgtk.la
18097         (LDADDS): include libgtk-x11.la and libgdk-x11.la, not the non-x11
18098         versions
18099
18100         * gtk/gtklabel.c (gtk_label_get_text): Make sure that the error
18101         checking macros return NULL since the function has a return value.
18102
18103 Wed Jun  7 15:44:42 2000  Owen Taylor  <otaylor@redhat.com>
18104
18105         * gtk/Makefile.am (LDFLAGS): Add missing backslash that was keeping
18106         GTK+ from building at all.
18107
18108         * gdk/Makefile.am (gdk_c_sources): Fix up some indentation issues.
18109
18110 Mon Jun  5 19:32:53 CEST 2000 Paolo Molaro <lupus@linuxcare.com>
18111
18112         * configure.in, gtk-config.in, gdk/Makefile.am, gdk/*/Makefile.am,
18113         gtk/Makefile.am: make it possible to configure gtk for different
18114         targets on the same platform. The library name is now 
18115         libgtk-$target-$version.so. gtk-config accepts a --target x11|nanox|linux-fb
18116         flag. Only the x11 target compiles right now.
18117         * gdk/gdkregion-generic.h, gdk/gdkregion-generic.c, gdk/gdkpoly-generic.h,
18118         gdk/gdkpolyreg-generic.c: move generic region code in the main GDK dir.
18119         * gdk/nanox/gdk*generic*: delete generic region code.
18120         * gdk/linux-fb/gdk*generic*: delete generic region code.
18121         * README.nanox: update information.
18122         
18123 Tue Jun  6 10:53:59 2000  Owen Taylor  <otaylor@redhat.com>
18124
18125         * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
18126         prepend not append. (Pointed out by Brett Hall.)
18127
18128 Tue Jun  6 01:59:57 2000  Owen Taylor  <otaylor@redhat.com>
18129
18130         * gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
18131
18132 Mon Jun  5 16:00:09 2000  Owen Taylor  <otaylor@redhat.com>
18133
18134         * gdk/gdk.c (gdk_init_check): Add call to g_type_init() - we'll
18135         need this later, and this makes sure that the atexit for
18136         glib gets called after that for GDK, so atexits are
18137         properly ordered for object leak checking.
18138
18139         * gdk/gdk.c (gdk_exit_func): Call gdk_windowing_exit().
18140
18141         * gdk/x11/gdkmain-x11.c (gdk_windowing_exit): Call 
18142         pango_x_shutdown_display()
18143
18144         * gtk/simple.c (main): Close window on destroy.
18145
18146 Mon Jun  5 11:50:02 2000  Owen Taylor  <otaylor@redhat.com>
18147
18148         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): We need
18149         to treat initial creation different from setting with 
18150         regards to the graphics-exposures parameter, so add a parameter
18151         indicating whether this is initial or not.
18152
18153 Mon Jun  5 13:29:31 2000  Owen Taylor  <otaylor@redhat.com>
18154
18155         * gdk/x11/gdkevents-x11.c: Hack gdk_event_get_graphics_expose()
18156         to sort of work by adding an extra return_exposes arg
18157         to gdk_event_translate() - it might be better to simply
18158         deprecate the function altogether and force people to rewrite
18159         without it. gdk_window_scroll() handles most of it, and where
18160         gdk_window_scroll() doesn't work, simply redrawing more does.
18161
18162         * gtk/gtkwidget.c (gtk_widget_set_default_direction): Fix up
18163         assertion.
18164
18165         * gtk-config.in: Include PANGO_CFLAGS/LIBS.
18166
18167         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Remove a 
18168         bunch of pretty much useless /* Print debugging info */ comments 
18169         which had drifted away from the code they were commenting.
18170
18171 2000-06-02  Havoc Pennington  <hp@pobox.com>
18172
18173         * gtk/testtextbuffer.c: Test program to make sure GtkTextBuffer
18174         is in working order.
18175         
18176         * gtk/testtext.c: Change to reflect anonymous mark API
18177
18178         * gtk/gtktextview.c: Convert from mark names to GtkTextMark*.
18179
18180         * gtk/gtktexttag.h (struct _GtkTextTag): remove the affects_size
18181         field, which was unused.
18182
18183         * gtk/gtktextmarkprivate.h (GTK_IS_TEXT_MARK): add this macro,
18184         saves some typing.
18185
18186         * gtk/gtktextbuffer.c: Switch from mark names to GtkTextMark*   
18187
18188         * gtk/gtktextbtree.c (gtk_text_btree_new): set the not_deleteable
18189         flag on the insertion point and selection bound
18190
18191         Throughout, use GtkTextMark instead of GtkTextLineSegment, and 
18192         make mark-manipulation functions take a GtkTextMark* instead of a
18193         mark name.
18194         
18195         * gtk/gtktextmarkprivate.h: Add a "not_deleteable" flag to 
18196         GtkTextMarkBody; will be used to detect attempts to delete
18197         the permanent marks (insert and selection bound)
18198
18199         * gtk/Makefile.am (noinst_PROGRAMS): add testtextbuffer 
18200
18201 Fri Jun  2 12:56:01 2000  Owen Taylor  <otaylor@redhat.com>
18202
18203         * gtk/gtkwidget.c (gtk_widget_init): Initialize DOUBLE_BUFFERED
18204         flag to on.
18205
18206         * gtk/gtkwidget.c (gtk_widget_draw) gtk/gtkmain.c (gtk_main_do_event): 
18207         Honor DOUBLE_BUFFRED_FLAG
18208
18209         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a
18210         function to set the DOUBLE_BUFFERED flag.
18211
18212         * gtk/gtkwidget.h: Add GTK_DOUBLE_BUFFERED flag to indicate whether
18213         or not exposes done on the widget should be double-buffered.
18214
18215         * gtk/gtkenums.h (GtkTextDirection): Reverse order of enumerations
18216         to be what would be expected. (Fixes problem with a
18217         g_return_if_fail() validating a TextDirection enumeration)
18218
18219 Thu Jun  1 23:05:13 2000  Owen Taylor  <otaylor@redhat.com>
18220
18221         * gtk/gtkwidget.c: Remove all references to 
18222         offscreen flag which was no longer used.
18223
18224         * gtk/gtkprivate.h (enum): Remove unused flags and compress.
18225
18226         * gtk/gtkframe.c (gtk_frame_set_label_widget): Check
18227         for non-null label_widget->parent.
18228
18229         * gtk/gtkentry.c: Get rid of code to deal with PangoAttribute 
18230         which no longer was used.
18231
18232         * gdk/gdkpango.c (gdk_pango_context_get_info): make static.
18233
18234         * gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
18235         for null arguments.
18236
18237         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
18238         check for destroyed windows.
18239
18240 Thu Jun  1 13:48:45 2000  Owen Taylor  <otaylor@redhat.com>
18241
18242         * gtk/gtkimmulticontext.c: Add a finalize method and unref
18243         the slave context there.
18244
18245         * gtk/gtkinvisible.[ch]: Make reference counting behavior
18246         identical to GtkWindow.
18247
18248 Thu Jun  1 01:54:11 2000  Owen Taylor  <otaylor@redhat.com>
18249
18250         * Makefile.am gdk/gdkpango.c: Copy the layout render function from
18251         pangox to here, so we can write them independent of rendering
18252         system, using GDK primitives.
18253
18254         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
18255         gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
18256         since we have a rendering-system independent implementation in
18257         terms of draw_glyphs().
18258         
18259         * gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
18260         function to render a single line.
18261
18262         * gdk/x11/gdkpango.c: Move the guts of this file mostly
18263         into ../gdkpango.c, which simplifies things, since we
18264         don't have to deal with raw X gc's.
18265
18266 Fri May 19 04:28:16 2000  Owen Taylor  <otaylor@redhat.com>
18267
18268         * gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
18269         get the logical attributes for a given GtkTextLine.
18270
18271 Tue May 30 16:05:39 2000  Owen Taylor  <otaylor@redhat.com>
18272
18273         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
18274         g_locale_get_codeset() to g_get_codeset() change.
18275
18276 Tue May 30 15:03:19 2000  Owen Taylor  <otaylor@redhat.com>
18277
18278         * gtk/testcalendar.c (calendar_font_selection_ok): Use font
18279         descriptions.
18280
18281         * gtk/gtkentry.c (gtk_entry_draw_text): Center text within
18282         the entry.
18283
18284         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
18285         redoing (vastly simplifying) for Pango. Still needs quite
18286         a bit of work. (Size selection is currently poor. List of 
18287         predefined sizes is not a good idea, since all of these
18288         sizes won't necessarily be distinct.)
18289
18290 Tue May 30 13:50:19 2000  Owen Taylor  <otaylor@redhat.com>
18291
18292         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
18293         CODESET results for LANG=C.
18294
18295 Mon May 29 15:49:10 2000  Owen Taylor  <otaylor@redhat.com>
18296
18297         * gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
18298         which takes a stringized pango font description;
18299         ignore the older 'font' and 'fontset' declarations.
18300
18301         * gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
18302         field with a GdkFont derived via gdk_font_from_description(),
18303         for compatibility. (Should we just remove it entirely?
18304         Probably too much compatibility breakage, but people
18305         should be migrating to the new Pango stuff as quickly
18306         as possible.)
18307
18308 Mon May 29 15:47:41 2000  Owen Taylor  <otaylor@redhat.com>
18309
18310         * gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
18311
18312 Mon May 29 15:44:46 2000  Owen Taylor  <otaylor@redhat.com>
18313
18314         * gtk/gtkcalender.c: Roughly pango-ized. Really needs 
18315         redoing; there are some bugs in size allocation right
18316         now, the semi-existant distinction between header / day
18317         fonts was removed, but, with Pango, could actually
18318         be made functional in a nice way.
18319         
18320         * gtk/testcalender: Move calender from examples into this
18321         directory as a test program. (We really need to restrcture
18322         testgtk into a whole directory full of tests for every
18323         widget or functionality group, separated into multiple .c
18324         files.)
18325
18326 Mon May 29 15:19:56 2000  Owen Taylor  <otaylor@redhat.com>
18327
18328         * gtk/testgtk.c (file_exists): Fix stupid typo that
18329         was keeping RC file from being loaded.
18330
18331         * gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
18332         RC file font code.
18333
18334 Mon May 29 14:31:27 2000  Owen Taylor  <otaylor@redhat.com>
18335
18336         * gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
18337         Add function to load a GdkFont from a PangoFontDescription.
18338
18339 2000-05-29  Tor Lillqvist  <tml@iki.fi>
18340
18341         * gdk/win32/gdkevents-win32.c (gdk_WindowProc): The local "event"
18342         variable should be of type GdkEventPrivate.
18343
18344 Fri May 26 17:16:40 2000  Owen Taylor  <otaylor@redhat.com>
18345
18346         * gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
18347         to have any widget for the label, use a GtkLabel widget
18348         to display the text. (Based partially on a patch from
18349         Anders Carlson.)
18350
18351         (Quite a bit of code reorganization - strip 90% of the
18352         guts out of gtkaspectframe and add a single virtual
18353         func to GtkFrameClass - compute_child_allocation.)
18354
18355 Fri May 26 12:00:02 2000  Owen Taylor  <otaylor@redhat.com>
18356
18357         * gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
18358         (Removed clist->row_center_offset field because caching
18359         it wasn't saving time or code, added private function
18360         _gtk_clist_create_cell_layout()).
18361
18362 Wed May 24 15:59:37 2000  Owen Taylor  <otaylor@redhat.com>
18363
18364         * gtk/gtkaccellabel.c: Pangoized.
18365
18366         * gtk/[hv]ruler.c: Pangoized
18367
18368 Mon May 22 19:23:59 2000  Owen Taylor  <otaylor@redhat.com>
18369
18370         * gtk/gtkfilesel.c (gtk_file_selection_init):
18371         Use gtk_clist_set_column_auto_resize() to remove need
18372         need for manual column width computations.
18373
18374 Mon May 22 18:50:26 2000  Owen Taylor  <otaylor@redhat.com>
18375
18376         * gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel, 
18377         ensuring Pango correctness, and considerably simplifying the
18378         code.
18379         
18380         * gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
18381
18382         * gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
18383         getting of numbers of lines.
18384
18385         * gtk/gtklabel.c (gtk_label_size_request): Set the requisition
18386         to the actual requested width of the lable, not to the wrap
18387         width we set.
18388
18389         * gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
18390
18391         * gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
18392           gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
18393
18394         * gtk/gtktextview.c: Fix structure inheritance.
18395
18396         * gtk/gtkprogressbar.c: Pangoize.
18397
18398 Mon May 22 15:47:30 2000  Owen Taylor  <otaylor@redhat.com>
18399
18400         * gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
18401         in a function.
18402
18403         * gtk/gtktextlayout.c (find_display_line_above): Fixed
18404         bug with computing line tops.
18405
18406         * gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
18407
18408 Thu May 18 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
18409
18410         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
18411         and y_offset coordinates to do what we need now. (The offset between
18412         buffer and layout coordinates has been reintroduced, but is a 
18413         bit different than before.)
18414
18415         * gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
18416         handle the adjustments ourselves, and scroll as necessary using
18417         the new gdk_window_scroll().
18418         
18419         The advantage of this is that when we are incrementally revalidating,
18420         we are essentially rearranging things around the visible portion
18421         of the screen. With the old setup, the visible portion of the
18422         screen was moved around in the layout, so scrolling and redrawing
18423         to track that caused jumping of the display. Since we now
18424         control the scrolling ourselves, we can suppress this and
18425         only redraw when things actually change.
18426
18427 Thu May 18 18:47:25 2000  Owen Taylor  <otaylor@redhat.com>
18428
18429         * gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
18430         the region not just redisplay it after-all, since we store the
18431         cursors in the LineDisplay. (Ugly interactions here between
18432         GtkLayout and GtkTextBTree here.)
18433         
18434         * gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
18435
18436 Thu May 18 18:43:21 2000  Owen Taylor  <otaylor@redhat.com>
18437
18438         * gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
18439         Added function to scroll contents of a window while keeping the
18440         window constant. Works by XCopyArea or guffaw-scrolling depending
18441         on the details of how the window is set up. (guffaw-scrolling
18442         still needs to be filled in.)
18443
18444 Wed May 17 22:36:53 2000  Owen Taylor  <otaylor@redhat.com>
18445
18446         * gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
18447         move the debugging that was tied to a global variable
18448         to that.
18449
18450         * gtk/gtkmarshal.list: Add NONE:INT,INT,INT
18451
18452         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
18453         validated flag, in line data instead of setting height/width to
18454         -1. This allows us to perform operations with partially invalid
18455         buffer (using the old size for invalid lines) and thus to do
18456         incremental vaidation. Keep height/width aggregates up to date
18457         when deleting text and rebalancing the tree.
18458
18459         * gtk/gtktextbtree.[ch]: Add functions validate a line
18460         (gtk_text_btree_validate_line), and to validate up
18461         to a number of pixels (gtk_text_btree_validate).
18462
18463         * gtk/gtktextlayout.[ch]: Add an ::invalidated signal
18464         that indicates that something is changed and a revalidation
18465         pass is needed. Change ::need_repaint to ::changed, and
18466         make it take old and new yranges instead of a rectangle.
18467
18468         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
18469         the line_data_destroy() function from 
18470         gtk_text_btree_add_view() to a virtual function in 
18471         GtkTextLayout
18472
18473         * gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
18474         since we are handling partial repaints in a different fashion
18475         now.
18476
18477         * gtk/gtktextbtree.[ch]: Only repaint the changed portion
18478         of the selection instead of queueing a repaint on the
18479         entire widget.
18480
18481         * gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
18482         get_selection_bounds() down to btree, make the function
18483         in buffer a wrapper around the btree function.
18484
18485         * gtk/gtktextlayout.[ch]: Add functions to check if the
18486         layout is valid and to recompute either a range of pixels
18487         aroudn a line or a certain total number of pixels.
18488
18489         * gtk/gtktextlayout.[ch]: Cache a single line display;
18490         now that we only redraw the needed portions, the hit rate
18491         for this cache is quite high.
18492         
18493         * gtk/gtktextview.[ch]: Keep track of the first paragraph
18494         on the screen so that when re-laying-out the buffer, we can
18495         keep the same place. This requires connecting to ::value_changed
18496         on the adjustments
18497
18498         * gtk/gtktextview.[ch]: Add idle functions to revalidate
18499         the buffer after we receive an ::invalidated signal.
18500         
18501 Wed May 17 22:10:47 2000  Owen Taylor  <otaylor@redhat.com>
18502
18503         * gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
18504         to max of allocation and layout size, not just to the
18505         layout size.
18506
18507         * gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size): 
18508         Invalidate window so it gets redrawn properly.
18509
18510         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
18511         to mean the entire window.
18512
18513         * gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
18514         into public header.
18515
18516 Mon May 15 14:51:31 2000  Owen Taylor  <otaylor@redhat.com>
18517
18518         * gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
18519         to get the name of a mark.
18520
18521         * gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
18522         to find the paragraph from a y position.
18523
18524 Thu May 11 12:57:20 2000  Owen Taylor  <otaylor@redhat.com>
18525
18526         * gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
18527         nodes have width/height >= 0, not > 0.
18528
18529 Tue May  9 21:29:06 2000  Owen Taylor  <otaylor@redhat.com>
18530
18531         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
18532         Add a size_only flag, so when we only need the size, we don't create
18533         useless appearance attributes.
18534
18535         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
18536         duplicate setting of font description.
18537
18538         * gtk/gtkscale.c: Use PANGO_SCALE instead of 1000 
18539
18540 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
18541
18542         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
18543         EXTRA_DIST. It does not work well when the file that
18544         everything depends on is not in the tarball.
18545
18546 Wed Apr 26 00:56:14 2000  Owen Taylor  <otaylor@redhat.com>
18547
18548         * gtk/testgtk.c: Some hacks and fixes so that it basically
18549         works when not sitting in the GTK+ build tree.
18550
18551 2000-05-03  Havoc Pennington  <hp@redhat.com>
18552
18553         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
18554         Properly determine the ordering of the tag root and the current
18555         line within the tree. Previous algorithm only worked if the tag
18556         root's immediate parent was the common root of both the current
18557         line and the tag root.
18558
18559 Wed Apr 26 00:43:00 2000  Owen Taylor  <otaylor@redhat.com>
18560
18561         * gtk/gtktextlayout.c (set_para_values): Fix some bugs in
18562         alignment.
18563
18564         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
18565         the widget text directional dynamically.
18566
18567         * gtk/gtktextview.[ch]: Added functions to get and set default
18568         wrap mode.
18569
18570 Tue Apr 25 23:47:38 2000  Owen Taylor  <otaylor@redhat.com>
18571
18572         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
18573         in cursor location computation.
18574
18575 Tue Apr 25 23:22:59 2000  Owen Taylor  <otaylor@redhat.com>
18576
18577         * gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
18578         vadjusment values properly when layout gets smaller.
18579
18580         * gtk/gtktextview.c (need_repaint_handler): Areas being
18581         passed in are far completely inaccurate, and sometimes
18582         too small, so, for now, just queue a redraw on the
18583         whole visible region.
18584
18585 2000-04-25  Havoc Pennington  <hp@redhat.com>
18586
18587         * gtk/gtktextbtree.c (summary_destroy): new function to 
18588         destroy tag summary nodes
18589         (gtk_text_line_next_could_contain_tag): this function was 
18590         totally broken if the line passed in wasn't below the tag
18591         root. Fix it.
18592         (gtk_text_btree_first_could_contain_tag): In the tag == NULL 
18593         "wildcard" case, we have to do a linear scan. Blah.
18594         (gtk_text_btree_last_could_contain_tag): In tag == NULL case,
18595         we have to do the linear scan
18596         (tag_removed_cb): When a tag is removed from the tag table, 
18597         remove the GtkTextTagInfo node from the btree.
18598         (gtk_text_btree_spew): Implement the spew function, for 
18599         our debugging pleasure.
18600
18601 Tue Apr 25 19:40:18 2000  Owen Taylor  <otaylor@redhat.com>
18602
18603         * gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
18604         a problem with referring to the wrong buffer.
18605
18606         * gtk/gtkentry.c: Fix focus-in/focus-out confusion.
18607
18608         * gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
18609         font description to gtk_style_new() - otherwise things
18610         don't work without a .gtkrc file.
18611
18612         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
18613         tags table if we create it ourself, too.
18614
18615         * gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
18616         it was conflicting with XKB modifiers.
18617
18618         * gtk/gtktextview.[ch]: Add simple support for 
18619         GtkIMContext.
18620
18621 Mon Apr 24 19:34:18 2000  Owen Taylor  <otaylor@redhat.com>
18622
18623         * gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
18624         with deletion from last commit.
18625
18626 Mon Apr 24 19:29:40 2000  Owen Taylor  <otaylor@redhat.com>
18627
18628         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
18629         in the context from the current locale.
18630         
18631         * gtk/gtkentry.c (gtk_entry_size_request): Use language from the
18632         context, not hardcoded value.
18633
18634         * gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
18635         not logical.
18636
18637 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
18638
18639         * gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
18640         attributes - that doesn't handle partial-glyph selection
18641         properly. Instead use new pango_layout_line_get_x_ranges()
18642         functionality to draw the selection.
18643
18644         * gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
18645         now properly handles out-of-range coordinates.
18646
18647         * gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
18648
18649         * gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
18650         public.
18651
18652         * gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
18653         for paragraphs opposite to the base direction of the widget.
18654
18655         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
18656
18657         * gtk/gtktextlayout.c: Don't split segments on marks, since that
18658         causes Arabic words to reshape as you cursor through.
18659
18660         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
18661         cursor position when moving vertically with the arrow keys and
18662         scrolling with page-up/page-down. (Arrow keys save only the X,
18663         scrolling saves both X and Y.)
18664
18665         This means you can line-up / line-down or page-up / page-down
18666         without losing your place, and also that moving vertically
18667         with the cursor keys keeps the same X position, not the same
18668         character count:
18669
18670         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
18671         arrow keys move by display lines, not paragraphs.
18672
18673 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
18674
18675         * gtk/gtklayout.c: Make sure that the bin window is at least
18676         as big as the allocation. (Should we also make sure that the
18677         bin window is big enough to completely cover widget->window?)
18678
18679         * gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
18680         function to get the onscreen rectangle.
18681
18682         * gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
18683         for offsets in window coordinates.
18684
18685 Sun Apr 16 16:13:27 2000  Owen Taylor  <otaylor@redhat.com>
18686
18687         * gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
18688         confusion.
18689
18690         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
18691         from the widget direction.
18692
18693         * gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg): 
18694         Add a "direction" attribute.
18695
18696         * gtk/gtktextview.c: global s/tkxt/text_view/.
18697
18698         * gtk/testtext.c: Added long block of text in Arabic, to test out
18699         the direction attributes. (Some problems with the shaping system
18700         for arabic become obvious - like the fact the cursor splits words
18701         into unjoined pieces.)
18702
18703 Fri Apr 14 12:54:34 2000  Owen Taylor  <otaylor@redhat.com>
18704
18705         * gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
18706
18707         * gtk/gtktextlayout.c: Fix up alignment.
18708
18709         * gtk/testtext.c: Add some tests for centering, wrapping.
18710
18711 Fri Apr 14 09:26:22 2000  Owen Taylor  <otaylor@redhat.com>
18712
18713         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
18714         Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
18715         If we wrote GTK+-specific layout-render function this could just replace
18716         the draw_layout() operation in the vtable.
18717
18718         * gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to 
18719         pango_layout_get_cursor_pos() and use that function.
18720
18721         * gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
18722         is a non-static symbol.
18723
18724         * gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
18725         with gtk_text_btree_find_line_by_y()
18726
18727         * gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
18728         renderer that handles GtkTextAppearance attributes.
18729
18730         * gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h: 
18731
18732           - Move the values in the style that don't affect geometry into a
18733             GtkTextAppearance structure.
18734           - Change underline to take a PangoUnderline and "font" a string
18735             representation of a font description
18736           - Add a "font_desc" attribute which takes a FontDescription structure.
18737
18738         * gtk/gtktextlayout.[ch]:
18739
18740           - Get rid of the display-line list per each line. Instead, we
18741             generate, on demand, a GtkTextLineDisplay structure which]
18742             contains a PangoLayout * and other necesary information
18743             (offsets, cursor locations) for displaying a paragraph.
18744           - Get rid of the code to wrap lines, create display chunks,
18745             etc. Instead, we just go through a paragraph and convert
18746             it into the necessary inputs to a PangoLayout.
18747           - Implement a new attribute type, GtkTextAttrAppearance. This
18748             holds a GtkTextAppearance, and is used to pass colors, 
18749             stipple, etc, through from the layout to the display without
18750             having to use lots and lots of individual attributes.
18751           - Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
18752             in terms of PangoLayout functions.
18753         
18754         * gtk/gtktextview.c: 
18755          
18756           - Handle passing the necessary PangoContext to the layout
18757           - Some fixups in painting to deal with the automatic backing store
18758             and offsetting of GTK+-1.4
18759           - Add a style_set handler so that the default style reacts
18760             properly to theme changes.
18761         
18762         * gtk/gtktext?*.[ch]: Random code-style fixes.
18763
18764         * gtk/testtext.c: Substitute in languages that Pango handles now for Thai
18765
18766 Mon Apr 10 10:33:45 2000  Owen Taylor  <otaylor@redhat.com>
18767
18768         * gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
18769         in original form preparatory to Pango-ization and gdkimcontext-ization.
18770
18771 Thu Apr  6 19:25:39 2000  Owen Taylor  <otaylor@redhat.com>
18772
18773         * gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
18774         so that we can derive from gtkimcontext in language bindings properly.
18775
18776 Thu Apr  6 16:02:52 2000  Owen Taylor  <otaylor@redhat.com>
18777
18778         * gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
18779         Add a compose table including (almost) all the compose combinations
18780         from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
18781         data in the XIM implementation.
18782
18783         * gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
18784         Moved functions to convert keyvalues from and to unicode here from
18785         the win32 port and made them public.
18786
18787 Wed Apr  5 16:37:29 2000  Owen Taylor  <otaylor@redhat.com>
18788
18789         * gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
18790
18791 Wed Apr  5 16:27:45 2000  Owen Taylor  <otaylor@redhat.com>
18792
18793         * gtk/gtkimcontext.[ch]: Base class for new input context system
18794
18795         * gtk/gtkimmulticontext.[ch]: Proxy input context that allows
18796         the real input context implementation to be loaded from modules
18797         and switched on the fly.
18798
18799         * gtk/gtkcontextsimple.[ch]: Simple implementation of an input
18800         context that just does direct keysymbol => unicode translation.
18801
18802         * gtk/gtkentry.[ch]: Start switching editing over to using
18803         GtkInputContext. (No handling of preedit yet.)
18804
18805 Wed Apr  5 15:48:41 2000  Owen Taylor  <otaylor@redhat.com>
18806
18807         * gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
18808         many substitutions. (klass should not be subsituted.)
18809
18810 Wed Apr  5 00:18:14 2000  Owen Taylor  <otaylor@redhat.com>
18811
18812         * configure.in: Add checks for Pango
18813
18814         * configure.in docs/Makefile.am: Add test for sgml2html
18815         and allow 'make dist' without building html, but print out
18816         warnings in that case. (For making snapshots)
18817
18818         * gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
18819         Add Pango libraries and C flags
18820
18821         * gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
18822         Add function (gdk_draw_layout) to draw a pango layout.
18823
18824         * gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
18825         for getting Pango contexts for GDK.
18826
18827         * gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
18828
18829         * gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
18830         editing.
18831
18832         * gtk/gtkentry.c: Hack in simple Hebrew input with direct
18833         keysym => unicode translations. More languages can be added
18834         here, but real input-method support is needed.
18835
18836         * docs/Changes-1.4.txt: Added note about entry behavior.
18837         
18838         * gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
18839         to set the reading direction for a widget and the global direction.
18840         Add test which allows toggling the global direction. Two private
18841         flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
18842
18843         * gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
18844           gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c 
18845
18846         * gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
18847
18848         * gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
18849         underlining now handled by Pango.
18850
18851         * gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
18852         to RCStyle and Style. (Having both this and the old font name and GdkFont 
18853         is temporary.)
18854
18855         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added 
18856         convenience functions for creating contexts and layouts for widgets.
18857
18858         * gtk/testgtk.c: Enhance label tests with multilingual labels.
18859
18860 2000-05-29  Jonathan Blandford  <jrb@redhat.com>
18861
18862         * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
18863         titles to be active, even if they aren't visible.
18864         (gtk_clist_column_titles_passive):  Ditto.
18865
18866 2000-05-21  Nils Barth  <nils_barth@post.harvard.edu>
18867
18868         * gtkmenu.c:
18869         * gtkmenu.h:
18870         * gtktypeutils.h: Spelling/grammar fixes in comments.
18871
18872 Tue May 23 12:25:07 CEST 2000 lupus <lupus@debian.org>
18873
18874         * gdk/nanox/*.h: add missing header files.
18875
18876 Fri May 19 11:52:59 2000  Tim Janik  <timj@gtk.org>
18877
18878         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set
18879         send_event to TRUE.
18880         (gtk_drawing_area_size): queue a resize.
18881
18882 Sun Mar 26 03:21:28 2000  Tim Janik  <timj@gtk.org>
18883
18884         * gtk/gtksignal.c (gtk_signal_handlers_destroy): when unref-ing
18885         the handlers, also invalidate them. bug nailed down by Karl Nelson
18886         <kenelson@ece.ucdavis.edu>.
18887
18888 Fri May 19 06:49:23 2000  Tim Janik  <timj@gtk.org>
18889
18890         * gtk/gtkfontsel.c (gtk_font_selection_get_font_name): handle
18891         "(nil)" foundries, patch from Grigorios Magklis.
18892
18893         * gtk/gtkfontsel.c (gtk_font_selection_load_font): don't crash
18894         on non-available fonts, based on a patch by Grigorios Magklis
18895         <maglis@cs.rochester.edu>.
18896
18897 2000-05-18  Elliot Lee  <sopwith@redhat.com>
18898
18899         * gdk/x11/gdkregion-generic.c: If a region does not have any
18900         rectangles, or if the specified rectangle is not in the region, then return GDK_OVERLAP_RECTANGLE_OUT
18901         instead of GDK_OVERLAP_RECTANGLE_IN.
18902
18903 2000-05-17  Jonathan Blandford  <jrb@redhat.com>
18904
18905         * gtk/gtklayout.c (gtk_layout_map): Remove references to
18906         OFFSCREEN, as it is no longer necessary.
18907
18908 Wed May 17 10:52:12 2000  Owen Taylor  <otaylor@redhat.com>
18909
18910         * gtk/gtkcolorsel.c: Patch from David Santiago
18911         <mrcooger@cyberverse.com> to change things so that the 
18912         indicator of the active palette entry is done independently,
18913         not via the focus, since it should always be visible.
18914
18915 2000-05-17  Tor Lillqvist  <tml@iki.fi>
18916
18917         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Plug same
18918         refcount leaks as in the X11 backend.
18919
18920         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Logging
18921         cosmetics.
18922
18923         * gdk/win32/gdkwindow-win32.c: Similar changes as in X11
18924         backend. Add _gdk_windowing_window_destroy().
18925
18926         * gtk/gtkcolorsel.c: Include correct backend-specific header.
18927         Don't use XColor unless on X11. (No GDK_VISUAL_STATIC_COLOR
18928         either, but these probably do exist on nanox?)
18929         
18930         * gtk/gtkhsv.c: Use G_PI (fresh from <glib.h>) instead of M_PI
18931         which isn't necessarily defined by <math.h>.
18932
18933         * gtk/gtkobject.c (gtk_object_init): Don't go up the class
18934         ancestry past GtkObject.
18935
18936         * gtk/gtktypeutils.h: Mark GTK_TYPE_IDENTIFIER for export/import
18937         from DLL on Win32.
18938
18939         * gtk/gtk.def: Update corresponding to recent changes.
18940
18941         * gtk/makefile.{cygwin,msc}: Updates.
18942
18943 Fri May 12 18:46:51 2000  Owen Taylor  <otaylor@redhat.com>
18944
18945         * docs/Changes-1.4.txt: A bit of editing.
18946
18947         * gdk/gdkwindow.c (_gdk_window_clear_update_area) 
18948         * gdk/x11/gdkwindow-x11.c (gdk_window_hide): Add a function
18949         to clear the update area for the window, and clear it
18950         when hiding a window.
18951
18952         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Ignore
18953         if window destroyed.
18954
18955         * gdk/gdkwindow.c (gdk_window_end_paint): Likewise.
18956
18957         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c gdk/gdkinternals.h: Move 
18958         gdk_window_destroy() to the generic code, since there was a lot of 
18959         window-system-independent logic it in. Add a function:
18960         
18961          _gdk_window_destroy() 
18962
18963         to the internal API to destroy a window without unreferencing it.
18964         Add a function:
18965
18966          _gdk_windowing_window_destroy()
18967
18968         That does the windowing-system-dependent part of destroying 
18969         the window.
18970
18971 Fri May 12 11:07:41 2000  Owen Taylor  <otaylor@redhat.com>
18972
18973         * gtk/testgtk.c: Fix various memory leaks of pixmaps.
18974
18975 Fri May 12 11:06:10 2000  Owen Taylor  <otaylor@redhat.com>
18976
18977         * gtk/gtkwidget.c docs/Changes-1.4.txt (gtk_widget_shape_combine_mask): 
18978         Make gtk_widget_shape_combine_mask() keep a reference count on
18979         the pixmap since it keeps it around.
18980
18981 Fri May 12 10:53:29 2000  Owen Taylor  <otaylor@redhat.com>
18982
18983         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix refcount
18984         leak.
18985
18986         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix refcount
18987         leak with event filters.
18988
18989 Thu May 11 14:29:44 2000  Owen Taylor  <otaylor@redhat.com>
18990
18991         * gtk/gtkdnd.c (gtk_drag_dest_set_internal): Remove the
18992         signal handlers with the right data arguments. (Fixes
18993         some warnings when a widget was repeatedly set as a drag
18994         destination.)
18995
18996         * gdk/x11/gdkdnd-x11.c (gdk_window_register_dnd): Set data on the
18997         window so we can avoid avoid setting the DND properties on the
18998         toplevel window repeatedly.
18999
19000 2000-05-13  Tor Lillqvist  <tml@iki.fi>
19001
19002         * gdk/win32/gdkwin32.h: Define more message types missing from
19003         mingw headers.
19004
19005         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
19006         call gdk_window_destroy_notify(). It was never called. This
19007         probably meant that the GdkWindow was never freed. Thanks Owen for
19008         noticing (!).
19009
19010         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
19011         window as destroyed before calling DestroyWindow(). DestroyWindow()
19012         causes a call to the window procedure (gdk_WindowProc), which
19013         calls gdk_event_translate(), which calls
19014         gdk_window_destroy_notify(), which gets confused unless the window
19015         is set as destroyed.
19016
19017         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
19018         this function to indicate it's win32 only. Put inside #ifdef
19019         G_ENABLE_DEBUG.
19020
19021         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
19022         debugging function. (gdk_event_translate:) Add a default branch
19023         that uses the above function to print debug messages with all
19024         Windows messages symbolically.
19025
19026         * gdk/win32/gdkprivate-win32.h: Declare it, and
19027         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
19028
19029 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
19030
19031         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
19032         public header file.
19033
19034 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
19035
19036         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
19037
19038         * gtk/gtktext.c: made the adjustments no-construct args, simply
19039         provide default adjustments.
19040         (gtk_text_destroy): release adjustments.
19041
19042         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
19043         adjustment argument non-construct.
19044
19045         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
19046         instead of in finalize.
19047         (gtk_progress_get_text_from_value): 
19048         (gtk_progress_get_current_text): 
19049         (gtk_progress_set_value): 
19050         (gtk_progress_get_percentage_from_value): 
19051         (gtk_progress_get_current_percentage): 
19052         (gtk_progress_set_percentage): 
19053         (gtk_progress_configure): ensure an adjustment is present.
19054
19055 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
19056
19057         * gtk/gtkcolorsel.[hc]:
19058         * gtk/gtkcolorseldialog.[hc]:
19059         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
19060         their parent implementation, use bit fields for boolean values, don't
19061         create unused widgets, usage of glib types, braces go on their own
19062         lines, function argument alignment, #include directives etc. etc. etc..
19063
19064         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
19065
19066 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
19067
19068         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
19069
19070         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
19071         of NULL.
19072
19073         * gtk/gtkcombo.c (gtk_combo_item_destroy): don't keep references
19074         to freed data.
19075         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
19076
19077         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
19078         to NULL when the toplevel is getting destroyed.
19079         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
19080         (gtk_menu_destroy): 
19081         (gtk_menu_init): store the information of whether we have to
19082         readd the initial child ref_count during destruction in a new
19083         GtkMenu field needs_destruction_ref_count.
19084
19085         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
19086         here, those reading: learn from my mistake! ;)
19087         in order for set_?adjustment to support a default adjustemnt if
19088         invoked with an adjustment pointer of NULL, the code read (pseudo):
19089         if (v->adjustment) unref (v->adjustment);
19090         if (!adjustment) adjustment = adjustment_new ();
19091         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
19092         now imagine the first unref to actually free the old adjustment and
19093         adjustment_new() creating a new adjustment from the very same memory
19094         portion. here, the latter comparision will unintendedly fail, and
19095         all hell breaks loose.
19096         (gtk_viewport_set_hadjustment):
19097         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
19098         after unreferencing it.
19099
19100         * gtk/gtkcontainer.[hc]: removed toplevel registration
19101         functions: gtk_container_register_toplevel(),
19102         gtk_container_unregister_toplevel() and
19103         gtk_container_get_toplevels() which had wrong semantics
19104         anyways: it didn't reference and copy the list.
19105
19106         * gtk/gtkwindow.c: we take over the container toplevel registration
19107         bussiness now. windows are registered across multiple destructions,
19108         untill they are finalized. the initial implicit reference count
19109         users are holding on windows is removed with the first destruction
19110         though.
19111         (gtk_window_init): ref & sink and set has_user_ref_count, got
19112         rid of gtk_container_register_toplevel() call. add window to
19113         toplevel_list.
19114         (gtk_window_destroy): unref the window if has_user_ref_count
19115         is still set, got rid of call to
19116         gtk_container_unregister_toplevel().
19117         (gtk_window_finalize): remove window from toplevel list.
19118         (gtk_window_list_toplevels): new function to return a newly
19119         created list with referenced toplevels.
19120         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
19121
19122         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
19123         adjustment a non-construct arg.
19124         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
19125         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
19126         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
19127
19128         * gtk/gtkrange.c: added some realized checks.
19129         (gtk_range_destroy): get rid of the h/v adjustments in the
19130         destroy handler instead of finalize. remove timer.
19131         (gtk_range_get_adjustment): demand create adjustment.
19132
19133         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
19134         we simply create them on demand now and get rid of them in
19135         the destroy handler.
19136         (gtk_viewport_destroy): get rid of the h/v adjustments in the
19137         destroy handler instead of finalize.
19138         (gtk_viewport_get_hadjustment): 
19139         (gtk_viewport_get_vadjustment): 
19140         (gtk_viewport_size_allocate): demand create h/v adjustment
19141         if required.
19142
19143         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
19144         gtk_widget_real_destroy () functionality.
19145         (gtk_widget_real_destroy): reinitialize with a new style, instead
19146         of setting widget->style to NULL.
19147
19148 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
19149
19150         * gtk/gtkcalendar.c:
19151         * gtk/gtkbutton.c: ported _get_type() implementation over to
19152         GType, either to preserve memchunks allocation facilities,
19153         or because Gtk+ 1.0 GtkTypeInfo was still being used.
19154
19155         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
19156         over. prepare for ::destroy to be emitted multiple times.
19157         removed reference tracer magic. chain into GObjectClass.shutdown()
19158         to emit ::destroy signal.
19159
19160         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
19161         fundamental.
19162
19163         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
19164         cludge.
19165
19166         * gtk/gtksocket.c:
19167         * gtk/gtkplug.c:
19168         * gtk/gtklayout.c:
19169         * gtk/gtklabel.c:
19170         * gtk/gtkargcollector.c:
19171         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
19172         not being a fundamental anymore, and to work with the new
19173         type system (nuked fundamental type varargs clutter).
19174
19175         * gtk/*.c: install finalize handlers in the GObjectClass
19176         part of the class structure.
19177         changed direct GTK_OBJECT()->klass accesses to
19178         GTK_*_GET_CLASS().
19179         changed direct object_class->type accesses to GTK_CLASS_TYPE().
19180
19181         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
19182         GType. made most of the GTK_*() type macros and Gtk* typedefs
19183         simple wrappers around macros and types provided by GType.
19184         most notably, a significant portion of the old API vanished:
19185         GTK_TYPE_MAKE(),
19186         GTK_TYPE_SEQNO(),
19187         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
19188         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
19189         GTK_TYPE_ARGS,
19190         GTK_TYPE_CALLBACK,
19191         GTK_TYPE_C_CALLBACK,
19192         GTK_TYPE_FOREIGN,
19193         GtkTypeQuery,
19194         gtk_type_query(),
19195         gtk_type_set_varargs_type(),
19196         gtk_type_get_varargs_type(),
19197         gtk_type_check_object_cast(),
19198         gtk_type_check_class_cast(),
19199         gtk_type_describe_tree(),
19200         gtk_type_describe_heritage(),
19201         gtk_type_free(),
19202         gtk_type_children_types(),
19203         gtk_type_set_chunk_alloc(),
19204         gtk_type_register_enum(),
19205         gtk_type_register_flags(),
19206         gtk_type_parent_class().
19207         replacements, where available are described in ../docs/Changes-1.4.txt.
19208         implemented compatibility functions for the remaining API.
19209
19210         * configure.in: depend on glib 1.3.1, use gobject module.
19211
19212 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
19213
19214         * TODO.xml: Various updates to current status.
19215
19216 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
19217
19218         * gtk.m4: Print out version when test succeeds.
19219
19220 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
19221
19222         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
19223         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
19224         
19225         (Original triangle color selector from Simon Budig
19226         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
19227         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
19228         Santiago <mrcooger@cyberverse.com>)
19229
19230         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
19231         out into a separate widget.
19232
19233         * gtk/testgtk.c: Add some checkbuttons for toggling palette
19234         and opacity controls.
19235
19236 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
19237
19238         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
19239         snuck in prematurely.
19240
19241 2000-05-07  Tor Lillqvist  <tml@iki.fi>
19242
19243         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
19244         had deleted a ! operator by mistake, which caused
19245         GDK_SELECTION_CLEAR events never to be generated, which caused
19246         only the first copy to the clipboard from an gtkeditable to
19247         actually cause a copy to the Windows clipboard.
19248
19249 2000-05-06  Tor Lillqvist  <tml@iki.fi>
19250
19251         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
19252         compilation, too. Current mingw gcc distributions include the
19253         necessary headers. Also the necessary IIDs are now in mingw
19254         headers/libraries, and own definitions unnecessary.
19255
19256         More hacking on OLE2 DND, still doesn't work though, and thus
19257         ifdeffed out.
19258
19259         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
19260         here, too.
19261
19262 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
19263
19264         * gdk/nanox/*: nano-X port work in progress.
19265         * gdk/simple.c: simple test for Gdk.
19266         * README.nanox: notes about the port: read this first!
19267         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
19268         with nano-X.
19269
19270 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
19271
19272         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
19273         gdk_window_clear() into common code, implement in terms of
19274         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
19275         not redirected to the backing rectangle.
19276
19277 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
19278
19279         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
19280         EXTRA_DIST. It does not work well when the file that
19281         everything depends on is not in the tarball.
19282
19283 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
19284
19285         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
19286         with recursion where process_updates() is called from
19287         an expose handler. (GtkTextView is highly broken in
19288         doing this, but it should work, so it is a nice test
19289         case.)
19290
19291 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
19292
19293         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
19294         handle the case where updates are queued during processing of
19295         updates.
19296
19297 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
19298
19299         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
19300         window is on gdk_display - use that instead of segfaulting.
19301
19302 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
19303
19304         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
19305         broken and require an empty arg, give it to them.
19306
19307 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
19308
19309         * gtk/gtklabel.h: indentation fixes.
19310
19311 2000-05-02  Tor Lillqvist  <tml@iki.fi>
19312
19313         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
19314         draw too narrow or too low arcs, they seem to fail, at least with
19315         some display drivers.
19316
19317         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
19318
19319         Large changes to the Win32 backend, partially made necessary by
19320         the changes to the backend-independent internal
19321         structures. Attempts to implement similar backing store stuff as
19322         on X11. The current (CVS) version of the Win32 backend is *not* as
19323         stable as it was before the no-flicker branch was merged. A
19324         zipfile with that version is available from
19325         http://www.gimp.org/win32/. That should be use by "production"
19326         code until this CVS version is usable. (But note, the Win32
19327         backend has never been claimed to be "production quality".)
19328
19329         * README.win32: Add the above comment about versions.
19330
19331         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
19332
19333         * gdk/gdk.def: Update.
19334
19335         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
19336         presumably be replaced by some more better mechanism as 1.4 gets
19337         closer to release shape.
19338
19339         * gdk/makefile.{cygwin,msc}: Update.
19340
19341         * gdk/win32/*.c: Correct inclusions of the backend-specific and
19342         internal headers. Change code according to changes in these. Use
19343         gdk_drawable_*, not gdk_window_* where necessary.
19344
19345         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
19346         our old DND.
19347
19348         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
19349         to interpret single characters as UTF-8. Thanks to Hans Breuer.
19350         Use correct function name in warning messages.
19351
19352         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
19353         GSourceFuncs gdk_event_prepare and gdk_event_check.
19354         (gdk_event_get_graphics_expose): Do implement, use
19355         PeekMessage. Thanks to Hans Breuer.
19356         (event_mask_string): Debugging function to print an GdkEventMask.
19357         (gdk_pointer_grab): Use it.
19358
19359         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
19360         (old) book I used claimed was Hangul actually is CJK Unified
19361         Ideographs Extension A. Also, Hangul Syllables were missing.
19362         Improve logging.
19363
19364         * gdk/win32/gdkgc-win32.c: Largish changes.
19365
19366         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
19367         g_win32_getlocale() from GLib, and not setlocale() to get current
19368         locale name.
19369
19370         * gdk/win32/gdkprivate-win32.h
19371         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
19372         gdkwin32.h, similarily as in the X11 backend.
19373
19374         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
19375         assignment was used instead of equals in if test. Thanks to Hans
19376         Breuer.
19377
19378         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
19379         the X11 version.
19380
19381         * gdk/win32/makefile.{cygwin,msc}
19382         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
19383         path to the Win32 headers that works also with the mingw compiler.
19384
19385         * gtk/gtkstyle.c: Include <string.h>.
19386
19387 2000-04-26  Havoc Pennington  <hp@redhat.com>
19388
19389         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
19390         replacing the broken gtk_label_get ()
19391
19392 2000-04-15  Havoc Pennington  <hp@pobox.com>
19393
19394         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
19395         this keeps scanner scripts from getting confused.
19396
19397         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
19398         data, rather than void
19399
19400 2000-04-15  Tor Lillqvist  <tml@iki.fi>
19401
19402         * gtk/gtkclist.c (gtk_clist_motion)
19403         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
19404         with is_hint FALSE, get x and y from the event. They used to be
19405         used uninitialised. The Win32 backend never sends motion events
19406         marked as hints. This for instance fixes the annoying file and
19407         font selector behaviour in the Win32 version.
19408
19409 2000-04-14  Tor Lillqvist  <tml@iki.fi>
19410
19411         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
19412         gtk_private_n_signals variables, they are used by some software,
19413         sigh.
19414
19415         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
19416         installation directory from the Registry, where the installer
19417         should have put it.
19418
19419 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
19420
19421         * gdk/x11/Makefile.am: Fix problem with installation directory for
19422         gdkx.h
19423
19424         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
19425         <mrcooger@cyberverse.com> so that when selecting menus with the
19426         mouse, the first item will not be selected, but when selecting
19427         with an accelerator, or navigating left-right on a menubar with
19428         the menus popped up, the first item will be selected.
19429
19430 2000-04-05  Dan Damian  <dand@dnttm.ro>
19431
19432         * configure.in: Added "ro" to ALL_LINGUAS.
19433
19434 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
19435
19436         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
19437         indentation.
19438
19439         * Makefile.am (EXTRA_DIST): Fix typo.
19440
19441         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
19442         to catch gdkconfig.h
19443
19444         * gtk/gtkitemfactory.c: Added FIXME.
19445
19446 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
19447
19448         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
19449         s/return_if_fail/return_val_if_fail/g and add a return value.
19450
19451 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
19452
19453         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
19454         merge slipup.
19455
19456         * gdk/gdkinput.h: Fix missing line from merge.
19457
19458 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
19459
19460         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
19461         instead of gdkprivate.h.
19462
19463 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
19464
19465         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
19466         parent class to correctly be GtkDialogClass.
19467
19468 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
19469
19470         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
19471         toplevel windows and their immediate children by their parents,
19472         since the size of toplevel windows is out of our immediate
19473         control and we don't get any real benefit from trying to track
19474         this size for clipping.
19475
19476         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
19477         for input_only windows.
19478
19479         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
19480         to fix some hacks and make sure that we don't try to set the
19481         background of input only windows.
19482
19483 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
19484
19485         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
19486         the _really_ internal stuff, and leave gdkprivate.h for the fake private
19487         stuff that we've traditionally exposed.
19488
19489         * gdk/**.c: Use gdkinternals.h where appropriate.
19490
19491         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
19492         not include gdkprivate-x11.h, move all stuff of conceivable public
19493         interest into gdkx.h; keep all really private stuff in
19494         uninstalled header gdkprivate-x11.h.
19495
19496         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
19497         image->image_put on windows through a new function _gdk_window_draw_image()
19498         to allow us to do backing store for images. (Sort of ugly)
19499
19500         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
19501         contexts locally so that we can offset them properly when drawing 
19502         onto backing pixmaps.
19503
19504         * gdk/gdkinput.h: Reindented
19505
19506         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
19507         pixmap or color for the window, so we can properly initialize
19508         our double-buffer pixmaps, and also so that we temporarily set
19509         a background of None while scrolling.
19510
19511         * gdk/gdkregion.h: Revise region boolean operators to have an
19512         interface that is actually convenient - switch from creating new
19513         regions on every op, to "methods" that modify existing regions
19514         (A = A OP B). 3 argument forms which allow dest == src, would also
19515         be possible, but the current interfaces seem to map nicely
19516         onto what needs to be done. (There is quite a lot of region
19517         code in GDK now.)
19518
19519         * gdk/gdkregion.h: Add constructor from rectangle and a copy
19520         operator.
19521
19522         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
19523         gdkpoly-generic.h: Copy region code from Xlib, switch it over
19524         to 32 bit coordinates, modify it to be mostly GTK+ style
19525         and to have interfaces that match gdkregion.h.
19526
19527         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
19528         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
19529         create a backing pixmap and redirect all drawing to
19530         that backing pixmap until a matching gdk_window_end_paint().
19531
19532         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
19533         Create a special drawable class for GtkWindow's that 
19534         redirects the drawing to the backing pixmap as necessary
19535         and then calls the real operations in _gdk_windowing_window_class.
19536
19537         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
19538         Store invalid region for each window. Generate expose events for invalid
19539         region in an idle. This replaces both the expose compression
19540         and the redrawing queuing in GTK+. It is both more efficient and
19541         simpler than either one individually and far more so then the
19542         combination.
19543
19544         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
19545         Emulate 32 bit coordinates for windows with 16 bit coordinates
19546         by offsetting drawing, guffaw scrolling techniques and
19547         mapping/unmapping child windows as necessary.
19548
19549         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
19550         where, when invalid regions are processed, the region is stored,
19551         and if expose events come in that are detectably duplicate
19552         the processed exposes (by comparison of event serial numbers),
19553         the stored region is subtracted out of those exposes.
19554
19555         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
19556         regions newly exposed when scrolling or resizing windows.
19557         This, combined with forcing processesing of queued invalidated
19558         regions, gives nice flicker-free scrolling.
19559
19560         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
19561         invalidated regions after every scroll.
19562
19563         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
19564         emulation in GDK. Its, for all practical purposes just a
19565         GtkViewport/GtkFixed hybrid now.
19566
19567         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
19568         (16-bit) structures as necessary instead of just casting.
19569
19570         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
19571         in terms of the structures from gdkregion-generic.c, using appropriate
19572         offsets from GDK to X11 coordinates. Cache clip mask and
19573         origin and ts origin locally and only flush to the server
19574         when drawing, to avoid constantly setting and resetting these
19575         values when offsetting GC's for scrolling and backing pixmaps.
19576
19577         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
19578
19579         * gtk/gtkcontainer.c: Call process_all_updates at end
19580         of resizing to reduce flicker. (Avoids having redraw
19581         lag arbitrarily behind resize under some circumstances)
19582
19583         * gtk/gtkentry.c: Remove old backing store code, and simply take
19584         advantage of the new backing store capabilities of GDK.
19585
19586         * gtk/gtkmain.c: Simple implementation of widget backing
19587         store - simply push a paint while handling each expose.
19588         (Should really be configurable widget for widget.)
19589         
19590         * gtk/gtkwidget.c: Remove all the old complicated redraw
19591         code, and simply invalidate the GDK windows from
19592         gdk_window_queue_clear(), etc. (Sigh, so much carefully
19593         debugged complexity ... gone to the winds.)
19594
19595         Remove all the code for suppressing expose events while
19596         resizes are pending; this isn't needed since the invalid
19597         areas won't be processed until after the resizes are
19598         processed, since they are in a lower priority idle.
19599
19600 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
19601
19602         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
19603         and height of dest rectangle for non-intersecting rectangles.
19604
19605 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
19606
19607         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
19608         for GdkRectangle.
19609
19610 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
19611
19612         * gdk/gdk{events,image,private,types,window}.h
19613          gdk/x11/gdkinputprivate.h: Change all coordinates
19614          from int16 to int. Also, Change width and height from
19615          unsigned to signed to avoid all the stupid C 
19616          signedness bugs.
19617
19618 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
19619
19620         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
19621         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
19622         Add some more detailed checking.
19623
19624         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
19625         New function to retrieve the depth of a drawable.
19626
19627         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
19628         field, reorder fields to save memory. 
19629
19630 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
19631
19632         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
19633         of the background image instead of scaling the background down to
19634         a line.
19635
19636         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
19637         which temporarily set slider to wrong size.
19638
19639         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
19640         queue_clear().
19641
19642 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
19643
19644 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
19645
19646         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
19647
19648 2000-03-17  Tor Lillqvist  <tml@iki.fi>
19649
19650         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
19651         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
19652
19653         * gdk/win32/gdkfont-win32.c
19654         * gdk/win32/gdkproperty-win32.c
19655         * gdk/win32/gdkselection-win32.c
19656         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
19657         now declared such.
19658
19659 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
19660
19661         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
19662
19663 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
19664
19665         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
19666         is called without trapping X errors.
19667
19668 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
19669
19670         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
19671         way into the fontset lists.
19672
19673 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
19674
19675         * gtk/gtkthemes.h: add extern "C" scope.
19676
19677 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
19678
19679         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
19680         to make appends to the list constant. (gtk-guy-990901-0.patch)
19681
19682 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
19683
19684         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
19685         for the typename hash table.
19686
19687 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
19688
19689         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
19690         to make sure we never divide by zero. 
19691         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
19692
19693 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
19694
19695         * gtk/gtkfontsel.c: Apply patch from
19696         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
19697         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
19698
19699         Also, some cleanups in atom handling.
19700
19701 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
19702
19703         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
19704         not GtkWidget.
19705
19706 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
19707
19708         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
19709         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
19710         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
19711         more guint wrap-around bugs before going to bed.
19712
19713 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
19714
19715         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
19716         guint wrap arounds in allocation.width.
19717
19718         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
19719         process untill we fit the allocation given.
19720
19721 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
19722
19723         * gtk/gtkwidget.c:
19724         (gtk_widget_unrealize): guard widget access with ref/unref
19725         around signal emission.
19726         (gtk_widget_hide): same here, but also check its destroyed
19727         state before queueing a resize.
19728
19729 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
19730
19731         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
19732         of gtk_default_insensitive_bg as insensitive base color.
19733
19734         * gtk/gtktext.c (gtk_text_style_set): set the background color according
19735         to the widget's state.
19736         (gtk_text_realize): same here.
19737         (gtk_text_state_changed): same here.
19738         (draw_bg_rect): compare background color against base[] from
19739         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
19740
19741 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
19742
19743         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
19744         grabs are active, unless a delete event is send to the toplevel
19745         of the currently grab holding widget.
19746
19747 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
19748
19749         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
19750         debugging g_print's.
19751
19752 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
19753
19754         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
19755         ever make the scrolled-window requisition ever depend on the 
19756         visibility state of the scrollbars for the AUTOMATIC policy. 
19757         This breaks the GTK+ requisition model, and causes loops.
19758
19759 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
19760
19761         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
19762         the default font to avoid problems with XFree86-4.0 where the
19763         default charset is iso10646-1, not iso8859-1.
19764
19765 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
19766
19767         * acinclude.m4
19768         * config.guess
19769         * config.sub
19770         * ltconfig
19771         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
19772
19773         * gtk/Makefile.am: minor cosmetic consistency tweak
19774
19775 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
19776
19777         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
19778         the activate_time to 0, so that we handle a quick
19779         press/release press/release properly and don't suppress
19780         the second release. (Red Hat bug #7545)
19781
19782 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
19783
19784         * gtk/gtkctree.c (row_delete):
19785         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
19786         bugs with destruction notifier, *always* update internal
19787         structures *before* calling user code.
19788
19789 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
19790
19791         A few more fixes for bug #5487, #2051, #2677.
19792         * gtk/gtkclist.c : 
19793         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
19794         not GDK_BUTTON_PRESS.
19795         (resync_selection): resync only if selection_mode is
19796         GTK_SELECTION_EXTENDED
19797         * gtk/gtkctree.c (resync_selection): same here
19798
19799 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
19800
19801         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
19802         gdk_drag_get_selection() and gtk_menu_detach().
19803
19804         [ From Jeroen Ruigrok/Asmodai ]
19805
19806 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
19807
19808         * gtk/gtknotebook.c (gtk_notebook_size_request): 
19809         page->tab_label can be NULL.
19810
19811 2000-01-25  Havoc Pennington  <hp@pobox.com>
19812         
19813         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
19814         arg is boolean
19815
19816         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
19817
19818         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
19819
19820         * gdk/gdkproperty.c (gdk_property_get): return boolean
19821
19822         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
19823
19824         * gdk/gdkim.c (gdk_im_ready): return boolean
19825
19826         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
19827
19828         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
19829         glib clash, should fix glib)
19830
19831         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
19832         (gdk_get_show_events): return gboolean, and canonicalize 
19833         to TRUE/FALSE
19834
19835         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
19836         colormap is private
19837         (gdk_colors_alloc): gboolean whether to be contiguous
19838         (gdk_color_equal): return gboolean since we are a predicate
19839         and not a qsort() (this looks semi-wrong due to glib breakage,
19840         IMO glib should be fixed)
19841         
19842         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
19843         (gdk_get_use_xshm): return gboolean
19844         (gdk_pointer_is_grabbed): return gboolean
19845
19846         * gdk/gdk.h: Change prototypes to match all the above changes,
19847         and re-run egtk-format-protos as required.
19848
19849 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
19850
19851         * gtk/gtkctree.c (resync_selection): 
19852         * gtk/gtkclist.c (resync_selection):
19853
19854         Return immediately if clist->drag_pos < 0. This is a workaround
19855         for the corrupt state that the clist gets into when a
19856         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
19857
19858         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
19859         
19860         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
19861         variable from recent commit.
19862
19863 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
19864
19865         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
19866
19867 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
19868
19869         * gtk/Makefile.am: prefix all autogenerated source that get build in
19870         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
19871         in builddir. since we subsequently cd into srcdir for autogeneration,
19872         the paths have to be stripped from the target file names, thusly we
19873         use $(@F) as target names now.
19874         put a comment about configure.in's --disable-rebuilds option,
19875         which can be used for non-writable source directories, for development
19876         setups though, srcdir has to be *writable*.
19877
19878 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
19879
19880         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
19881           Finish the job of allowing event to be NULL.
19882           (Fixes bug #4283, reported by Chris Blizzard)
19883
19884         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
19885           things so that the cursor appears on screen, properly
19886           take into account INNER_BORDER.
19887           (Fixes bug #4754, reported by Antonio Campos)
19888
19889 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
19890
19891         * gtk/gtknotebook.c (gtk_notebook_map): Don't
19892           show the tab_label unless it itself is visible.
19893
19894           gtk/gtknotebook.c (gtk_notebook_size_request):
19895           Do a better job of making sure that the visibility
19896           of the tab label corresponds to whether it should
19897           be mapped or not.
19898
19899 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
19900
19901         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
19902           Use the requisition, not the allocation, since the
19903           allocation has not necessarily been computed yet.
19904           (Pointed out by Eugene Osintsev)
19905
19906 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
19907
19908         * gtk/gtkstyle.c (gtk_style_new): Dont' set
19909           style/base[GTK_STATE_INSENSITIVE] both to
19910           gtk_default_insensitive_bg!
19911           (Bug #2187, reported by Jonathan Blandford)
19912
19913         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
19914           Add Alt_L, Alt_R to list of invalid accelerators.
19915           (Bug #3736, reported by Vlad Harchev)
19916
19917 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
19918
19919         * gtk/gtkfilesel.c (open_ref_dir): Fix several
19920         bugs which occured after an attempt to open 
19921         invalid home directory left cmpl_state->reference_dir == NULL.
19922
19923          - completion on files in home directory didn't work
19924          - completion on an empty string caused  segfault
19925
19926          (Bug #3678, reported by Steve Ratcliffe)
19927
19928         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
19929         cut and paste error that was causing scales to
19930         be incorrectly positioned.
19931         (Bug #2956,
19932          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
19933
19934 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
19935
19936         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
19937         when checking for dcgettext, if we've found we needed
19938         it for dgettext.
19939 +
19940 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
19941
19942         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
19943         queue_clear on NO_WINDOW widgets during a reparent,
19944         since at that point the window and widget heirarchies
19945         are out of sync. This stops crashing in some cases
19946         (the scrolled window reparent test, for instance), and
19947         _probably_ won't cause drawing errors.
19948
19949         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
19950         test do what it was supposed to do and be robust against
19951         window closings, etc. (Bug #2443)
19952
19953 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
19954
19955         * gtk/gtkentry.c: Fix return values on mouse events.
19956         (Bug #2686, Sky <seb_sky@yahoo.com>)
19957
19958         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
19959         (pointed out by George Lebl)
19960
19961         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
19962         (From Ettore Perazzoli  <ettore@helixcode.com>)
19963  
19964 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
19965
19966         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
19967         clicks between rows or outside calender area correctly.
19968         (Patch from Damon Chaplin)
19969
19970         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
19971         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
19972           Call destroy function when overwriting existing data. 
19973           (Pointed out by Damon Chaplin)
19974
19975 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
19976
19977         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
19978           which was causing problems on various systems with Xmu.
19979           This hasn't been needed for a very long time.
19980           (Fixes #1185 3167)
19981
19982 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
19983
19984         * gdk/gdki18n.h: Include <ctype.h> when defining
19985           gdk_isw* in terms of is* as a fallback.
19986           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
19987
19988 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
19989
19990         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
19991           realize the widget when it is size allocated!
19992           (old, old bug)
19993
19994         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
19995           Removed unused call to gdk_window_get_size() that
19996           showed up when the above was fixed.
19997
19998 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
19999
20000         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
20001           fix up widget->window when the widget is a
20002           NO_WINDOW container widget.
20003
20004 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
20005
20006         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
20007           to account for the fact that feof() does _not_ 
20008           return TRUE on errors, and thus avoid infinite loops
20009           when trying to use gdk_pixmap_create_from_xpm()
20010           on unreadable values.
20011
20012 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
20013
20014         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
20015
20016 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
20017
20018         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
20019           gdk_gc_set_dashes to take gint8 instead of gchar to
20020           make it clearer that it is _not_ a NULL terminated string.
20021
20022         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
20023           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
20024           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
20025           arguments.
20026
20027 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
20028
20029         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
20030         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
20031         background size relative to our allocation, guard against small
20032         allocations, we may have not yet been size allocated.
20033
20034 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
20035
20036         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
20037         not just version == 3. We implement all 3 + most of 4 - 
20038         (we don't support matching text/plain;charset=iso-8859-1
20039         to a dest that expects text/plain). We'll still advertise
20040         3 to be safe, but any client implementing version >= 3
20041         must interoperate with 3.
20042         
20043 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
20044
20045         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
20046         background and gc members, add a warning in gtk_tooltips_set_color()
20047         indicating that this function is deprecated.
20048
20049 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
20050
20051         * docs/gtkfaq.sgml: FAQ Update:
20052           - Minor cleanups (Emmanuel, me)
20053           - New questions:
20054                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
20055                 How can I retrieve the text from a GtkMenuItem? (timj)
20056                 How do I validate/limit/filter the input to a GtkEntry? (me)
20057                 Memory does not seem to be released when I free the list
20058                         nodes I've allocated (timj)
20059
20060 2000-03-07  Tor Lillqvist  <tml@iki.fi>
20061
20062         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
20063         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
20064         for which it is no use to call GetLastError onWin9x.
20065         (gdk_other_api_failed) New function, for general error
20066         reporting without calling GetLastError.
20067         (gdk_win32_api_failed) OTOH, this function always calls
20068         GetLastError. (gdk_win32_last_error_string) Remove this function,
20069         GLib has the equivalent now.
20070
20071         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
20072         call them with function name, file name and line number in the
20073         arguments.
20074
20075         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
20076         functions.
20077         
20078         * gtk/gtk.def: Add some missing entry points.
20079
20080         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
20081         gtk_paned_set_gutter_size, which don't exist any longer, as void.
20082         
20083         Fixes by Hans Breuer:
20084
20085         * gdk/makefile.msc: Update for debugging.
20086
20087         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
20088         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
20089         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
20090         in the dash_list.
20091
20092         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
20093         the x11 backend.
20094
20095         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
20096
20097         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
20098
20099 2000-03-04  Tor Lillqvist  <tml@iki.fi>
20100
20101         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
20102         just pixel value of background colour.
20103
20104         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
20105         containing code snippet previously duplicated in a couple of
20106         places.
20107         
20108         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
20109         gdk_colormap_color.
20110
20111         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
20112         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
20113         events for autorepeated Shift, Control and Alt keys. Use
20114         gdk_colormap_color.
20115
20116         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
20117         pointer is inside the window the cursor of which we are setting,
20118         call SetCursor immediately.
20119
20120         * gdk/win32/makefile.cygwin
20121         * gtk/makefile.cygwin: If we don't have the build number stamp
20122         file, use zero.
20123
20124         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
20125         gtk_paned_set_gutter_size as empty.
20126
20127         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
20128         
20129 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
20130
20131         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
20132           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
20133           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
20134           docs/gtk_tut.sgml docs/gtk.texi TODO:
20135
20136           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
20137
20138 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
20139
20140         * gtk/gtkcalendar.c: Implement num_marked_dates,
20141           and don't emit mutiple day_selected signals on
20142           month_prev.
20143
20144 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
20145
20146         * docs/make-todo (lineno): let title and logo be configurable so
20147         that GNOME can use this script too.
20148
20149         * TODO.xml: added logourl and a title
20150
20151 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
20152
20153         * TODO.xml: Added some UI items, and an explanatory
20154         comment at the top of the file.
20155
20156 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
20157
20158         * TODO.xml: some updates, added abunch of new entries.
20159         a note for those fiddeling with this file, when done
20160         with it, invoke:
20161         $ ./docs/make-todo TODO.xml >/dev/null
20162         and correct output errors before comitting changes.
20163
20164 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
20165
20166         * TODO.xml: Added XML-structured TODO file.
20167         * docs/make-todo: python script to turn TODO.xml into
20168           pretty XML output. 
20169
20170 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
20171
20172         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
20173         the function to let it draw the seven dots, instead of the old,
20174         much maligned, method.
20175         (draw_dot): New function to draw a dot.
20176
20177         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
20178         to draw the handle inside the border width as opposed to outside.
20179         Use paint function instead of gdk_draw_point.
20180
20181         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
20182         to draw the handle inside the border width as opposed to outside.
20183         Use paint function instead of gdk_draw_point.
20184
20185         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
20186         Change indenting to be more GTK like.
20187
20188 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
20189
20190         * docs/gtk_tut.sgml: New section on GtkCalendar
20191         * examples/calendar: Update example code
20192
20193 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
20194
20195         * docs/gtkfaq.sgml: FAQ Update
20196
20197 2000-02-19  Anders Carlsson  <andersca@gnu.org>
20198
20199         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
20200         to prevent the scroll event to be propagated upwards.
20201
20202 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
20203
20204         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
20205         OwnerGrabButtonMask from button entries for
20206         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
20207
20208         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
20209         to the event mask (which will result in button/press release
20210         being added to the event mask on Unix) so scrolling works
20211         for layouts in scroll windows.
20212
20213         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
20214
20215         Patch from Anders Carlsson  <andersca@gnu.org> to add
20216         a scroll event.
20217
20218         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
20219         scrolling to the "Test Scrolling" part of testgtk.
20220  
20221         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
20222  
20223         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
20224         it against GDK_SCROLL.
20225  
20226         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
20227         way of mouse wheel scrolling.
20228  
20229         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
20230  
20231         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
20232  
20233         * gtk/gtkmain.c: Removed previous mouse wheel hack.
20234  
20235         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
20236         gdk_event_mask_table.
20237  
20238         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
20239         GdkEventScroll handler.
20240  
20241         * gdk/gdkevents.h: Added GdkEventScroll structure.
20242  
20243 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
20244
20245         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
20246         and Anders Carlsson to change the Paned widgets so that they
20247         can be dragged from anywhere along the length. Also change
20248         the way that this is drawn to make this apparent.
20249
20250         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
20251         from George Lebl to check that option_menu->menu is present
20252         before getting history.
20253
20254 2000-02-14  Tor Lillqvist  <tml@iki.fi>
20255
20256         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
20257         before the assertion for non-NULL segment list.
20258
20259         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
20260         Seems that pattern brushes *must* be 8x8 pixels! At least on my
20261         machine, but it might be display driver dependent. Sigh, so make
20262         sure the stipple is that size. Does Windows suck or what?
20263
20264         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
20265         places.
20266
20267 2000-02-13  Havoc Pennington  <hp@pobox.com>
20268
20269         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
20270         refcount to 1
20271         (gdk_cursor_new): init refcount to 1
20272
20273         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
20274
20275 2000-02-13  Tor Lillqvist  <tml@iki.fi>
20276
20277         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
20278         so that we don't have to do unnecessary settings to the HDC.
20279
20280         * gdk/win32/gdkdrawable-win32.c
20281         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
20282         gdk_gc_predraw.
20283
20284         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
20285         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
20286         GDI paths, call WidenPath to get the outline of the stroken path,
20287         and then fill the outline (with the brush that was built from the
20288         stipple).
20289
20290         * gdk/win32/gdkgc-win32.c: Factor out common code from
20291         _gdk_win32_gc_new and gdk_win32_gc_set_values into
20292         gdk_win32_gc_values_to_win32values. Use correct colour for
20293         SetBkColor() (Until now the code actually used a random colour in
20294         the call to SetBkColor()... but that didn't show up as not many
20295         GDI APIs use the background colour. Pattern (opaque stippled)
20296         brushes do.)
20297
20298         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
20299         gdk_win32_api_failed): New functions for error logging.
20300
20301         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
20302         WIN32_API_FAILED to call them, passing function or file name and
20303         line number.
20304
20305         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
20306
20307         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
20308         GdkColor for foreground and background in GdkGCWin32Data.
20309
20310         * gdk/makefile.cygwin: Link in the resource object separately.
20311
20312         * gdk/win32/rc/gdk.rc
20313         * gtk/gtk.rc (New file)
20314         * gdk/win32/makefile.cygwin
20315         * gtk/makefile.cygwin: Update build number in DLLs automatically,
20316         as in GLib.
20317
20318 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
20319
20320         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
20321         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
20322         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
20323         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
20324         parameters given and cursor->ref_count. coding style fixups.
20325
20326         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
20327         not GtkWidget.
20328         
20329         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
20330         fix up widget macros and add _GET_CLASS() variant.
20331         
20332         * gtk/*.c: some GtkType fixups.
20333
20334 2000-02-09  Tor Lillqvist  <tml@iki.fi>
20335
20336         * gdk/win32/gdkproperty-win32.c
20337         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
20338         were reversed.
20339
20340 2000-02-04  Tor Lillqvist  <tml@iki.fi>
20341
20342         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
20343         g_filename_to_utf8 to convert the font names Windows gives us from
20344         whatever is the default codepage to UTF-8.
20345         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
20346         in the other direction.
20347
20348         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
20349         error in debugging output.
20350
20351 2000-02-02  Tor Lillqvist  <tml@iki.fi>
20352
20353         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
20354         and height parameters to gdk_window_clear_area(). Not minus one.
20355
20356 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
20357
20358         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
20359         checks if the widget passed to gtk_drag_get_data() was not the
20360         dest widget.
20361
20362 2000-02-01  Tor Lillqvist  <tml@iki.fi>
20363
20364         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
20365         g_filename_from_utf8 functions (which were added a moment ago to
20366         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
20367         size buffers.
20368
20369         gtk_file_selection_get_filename returns the filename in the C
20370         runtime encoding. It calls g_filename_from_utf8, but copies the
20371         returned string to a static buffer, which is returned. I think
20372         this is better than returning the result from g_filename_from_utf8
20373         directly, which would mean all apps that use it would have to free
20374         the return value. Or should this function care about this issue at
20375         all? Maybe a new function with clearly defined semantics.
20376
20377         * gtk/gtkfilesel.h: Add comment about
20378         gtk_file_selection_get_filename returning the filename in the C
20379         runtime's encoding.
20380
20381         * README.win32
20382         * gdk/gdk.def
20383         * gdk/makefile.{cygwin,msc}
20384         * gtk/gtk.def: Updates.
20385
20386         * gdk/gdkcursor-win32.c: Initialise refcount.
20387
20388 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
20389
20390         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
20391
20392 2000-01-30  Havoc Pennington  <hp@pobox.com>
20393
20394         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
20395         destroy
20396
20397         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
20398
20399         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
20400         implemented in platform-specific code
20401
20402         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
20403
20404         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
20405         underscore in front
20406
20407         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
20408         put an underscore in front
20409
20410         * gdk/gdkcursor.c: new file, implements
20411         gdk_cursor_ref/gdk_cursor_unref
20412
20413         * gdk/gdkcursor.h: Refcount GdkCursor
20414
20415         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
20416
20417 2000-01-29  Tor Lillqvist  <tml@iki.fi>
20418
20419         * gdk/gdkwindow.h
20420         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
20421
20422 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
20423
20424         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
20425         structures to properly inherit from GtkWidget not GtkBin.
20426
20427 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
20428
20429         * gtk+.spec.in: Added lib/gtk+/include/* to %files
20430         (bug #5178 - Peter Wainright)
20431         
20432         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
20433         so that it will be installed.
20434         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
20435
20436 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
20437
20438         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
20439         for the GtkStyleClass vtable const.
20440
20441         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
20442         take a const string argument like GtkTranslateFunc. This will
20443         require changes in use code.
20444
20445 2000-01-19  Tor Lillqvist  <tml@iki.fi>
20446
20447         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
20448         semantics (to mimic the X11 backend, which just calls XClearArea)
20449         is to check for zero width (and height), and in that case use the
20450         window's width minus x (height minus y). This fixes for instance
20451         some redraw problems with gtkclist, which were easily noticeable
20452         in the gtk file selection widget.
20453
20454         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
20455         windows.
20456
20457 2000-01-13  Tor Lillqvist  <tml@iki.fi>
20458
20459         * configure.in
20460         * gdk/Makefile.am
20461         * gdk/x11/Makefile.am
20462         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
20463         (bug #5177).
20464         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
20465         out later.
20466
20467 2000-01-09  Tor Lillqvist  <tml@iki.fi>
20468
20469         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
20470         WM_MOVE for iconified or invisible windows. This fixes various
20471         problems when minimising windows. Thanks to Bernd Herd.
20472
20473 2000-01-05  Tor Lillqvist  <tml@iki.fi>
20474
20475         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
20476         backend's draw_lines method, not draw_points.
20477
20478 2000-01-02  Tor Lillqvist  <tml@iki.fi>
20479
20480         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
20481         before Owen's reorganisation: Don't have queued_events and
20482         queued_tail statics in this file, but use gdk_queued_events and
20483         gdk_queued_tail. This makes exposure event compression work again.
20484
20485         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
20486         seem to be needed?
20487
20488 1999-12-30  Tor Lillqvist  <tml@iki.fi>
20489
20490         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
20491         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
20492         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
20493         doesn't do anything.
20494
20495         * gdk/gdk.def: Add gdk_xid_table_insert.
20496
20497         * gdk/win32/gdkprivate-win32.h
20498         * gdk/win32/gdkevents-win32.c
20499         * gdk/win32/gdkinput-win32.c
20500         
20501         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
20502         extension_events field in the GdkWindowWin32Data struct. Use only
20503         the extension_events field in GdkWindowPrivate. Previously one was
20504         set, and the other one tested, which broke tablet
20505         functionality. Thanks to Keishi Suenaga for pointing this out.
20506
20507 1999-12-18  Tor Lillqvist  <tml@iki.fi>
20508
20509         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
20510         When handling a single character (text length == 1), don't handle
20511         it as if it was UTF-8.
20512
20513 1999-12-11  Tor Lillqvist  <tml@iki.fi>
20514
20515         * Makefile.am: Distribute README.win32.
20516         
20517         * gdk/Makefile.am
20518         * gdk/win32/Makefile.am: Distribute Win32 files.
20519
20520         * gdk/makefile.msc: New file.
20521
20522         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
20523         after label).
20524
20525         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
20526         gdk_error_code as GDKVAR, as they are referred outside GDK.
20527
20528         * gdk/win32/makefile.msc: Update.
20529
20530         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
20531         tweaks. Check only if at least one of those Unicode subrange bits
20532         we care for is set. If no code page bits are set, guess (wildly)
20533         based on the charset.
20534
20535         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
20536
20537         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
20538         non-NULL.
20539
20540         * gtk/gtkdnd.c
20541         * gtk/gtklayout.c
20542         * gtk/gtkplug.c
20543         * gtk/gtkselection.c
20544         * gtk/gtksocket.c
20545         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
20546         appropriate. There must be a cleaner way to handle this?
20547
20548         * gtk/gtkrc.c: Must include windows.h on Win32.
20549
20550         * gtk/testgtk.c: No need to include gdkx.h.
20551
20552         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
20553
20554 1999-12-07  Tor Lillqvist  <tml@iki.fi>
20555
20556         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
20557         the rbearing is set to the same as the width, but this should be
20558         fixed.
20559
20560 1999-12-06  Tor Lillqvist  <tml@iki.fi>
20561
20562         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
20563         function. If Windows doesn't tell us what Unicode subranges a font
20564         covers, guesstimate based on the codepages it covers. This will
20565         hopefully help those Windows versions or fonts that don't give us
20566         any useful Unicode subrange information with GetTextCharsetInfo.
20567         Call this function in gdk_font_load_internal.
20568
20569         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
20570         minor changes.
20571
20572 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
20573
20574         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
20575         New function, long needed.
20576
20577 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
20578
20579         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
20580         only_if_exists argument of gdk_atom_intern to
20581         bool.
20582
20583 1999-11-25  Tor Lillqvist  <tml@iki.fi>
20584
20585         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
20586         Fix two copy&paste errors.
20587
20588         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
20589         win32 has changed.
20590
20591         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
20592         GdkWin32SingleFont struct.
20593
20594         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
20595         subranges of loaded fonts. Clear font signature first, in case
20596         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
20597         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
20598
20599         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
20600         Unoffset clip region.
20601
20602 1999-11-23  Tor Lillqvist  <tml@iki.fi>
20603
20604         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
20605         event->any.window before calling filter functions.
20606
20607 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
20608
20609         * gtk/gtkgamma.h: Adapt cast macros to standard.
20610
20611 [ Merges from 1.2 ]
20612
20613 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
20614
20615         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
20616         If translation does not include a '/', use entire
20617         translation instead of crashing.
20618
20619 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
20620
20621         * docs/gtk_tut.sgml:
20622         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
20623
20624 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
20625
20626         * gtk/gtkselection.c (gtk_target_list_remove): Use
20627         g_list_remove_link, not g_list_remove.
20628
20629         [ From Geert Bevin <gbevin@thunderstorms.org> ]
20630         
20631 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
20632
20633         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
20634         statement upon unselection (how the heck did that slip in?).
20635
20636 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
20637
20638         * gtk/gtktext.c (gtk_text_freeze): 
20639         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
20640         in frozen state (and aparently crashes). patch provided by Anders
20641         Melchiorsen <and@kampsax.dtu.dk>.
20642
20643 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
20644
20645         * fix insensitive default/focus widget activation,
20646         reported by Matt Goodall <mgg@isotek.co.uk>.
20647
20648         * gtk/gtkwindow.c (gtk_window_key_press_event): 
20649         (gtk_window_activate_default):
20650         (gtk_window_activate_focus):
20651         return handled=FALSE for actiavtion of insensitive default
20652         widgets. return handled=TRUE for activation of insensitive
20653         focus widgets. don't activate in either case.
20654
20655 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
20656
20657         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
20658         and $glib_cflags to match library order and in the
20659         theory that an old version of GLib is more likely to
20660         be in the include directory for X then vice-versa.
20661         (Bug #2776)
20662
20663 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
20664
20665         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
20666         to determine the locale for fontsets, not LC_MESSAGES;
20667         the user may want English messages with a handling
20668         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
20669         will still be broken) (Bug #2891)
20670
20671 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
20672
20673         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
20674
20675 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
20676
20677         * gtk/gtkrc.ko: Changed the Korean default fontset.
20678
20679 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
20680
20681         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
20682         where when scrolling to the left or top double exposes
20683         were done, causing major slowdowns.
20684
20685 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
20686
20687         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
20688         names to lowercase and alphanumeric, before looking
20689         them up.
20690
20691         * gtk/Makefile.am: Install codeset variant gtkrc files
20692         with normalized names.
20693
20694 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
20695
20696         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
20697         popup menus when the menu is already visible, but its parent
20698         is still hidden, (happens after tornoff window got hidden).
20699
20700 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
20701
20702         * gtk/Makefile.am (install-data-local): Fix
20703         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
20704         deleted, causing error messages on install.
20705
20706 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
20707
20708         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
20709         the handle as well, since we now sometimes ignore
20710         exposes on the handle while resizing.
20711
20712 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
20713
20714         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
20715         extra g_free introduced in one of the last one or two 
20716         commits.
20717
20718 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
20719
20720         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
20721         consistent, put each style that a gtkrc.* file creates
20722         in a unique namespace, remove old files before installing.
20723
20724 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
20725
20726         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
20727         gtk_rc_init is called multiple times. (Yes, people who
20728         do that have bugs in their code.)
20729
20730 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
20731
20732         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
20733         Remove it since it's generated by the Makefile anyway
20734
20735 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
20736
20737         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
20738         device->info.axes for core pointer.
20739
20740 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
20741
20742         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
20743         idle_id, to deal with obsolete, broken C libraries.
20744
20745 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
20746
20747         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
20748         allocation->x/y twice!
20749
20750         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
20751         consistent with gtk_vscale_pos_trough().
20752
20753 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
20754
20755         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
20756         be queueing a resize on a toplevel container between
20757         the time we show it and when we map it. So, we need
20758         to test GTK_WIDGET_VISIBLE() for toplevels, and only
20759         use GTK_WIDGET_DRAWABLE() for child windows.
20760
20761 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
20762
20763         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
20764         (fixes bug #2144)
20765
20766 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
20767
20768         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
20769         container DRAWABLE (instead of VISIBLE), so we don't queue
20770         resizes on non-toplevel containers.
20771
20772 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
20773
20774         * gtk/gtkselection.[ch]: Make the data argument
20775         const guchar *.
20776
20777 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
20778
20779         * gtk/gtkwindow.c: Try to behave sensibly if 
20780         the focus widget is the window itself. (Should
20781         we allow this at all?)
20782
20783 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
20784
20785         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
20786         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
20787         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
20788         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
20789         in prototypes and implementations consistent (Tomas Ogren).
20790
20791         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
20792         before the widget is unparented (reported by damon).
20793
20794         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
20795         since we provide unsigned data anyways.
20796
20797 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
20798
20799         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
20800         the call to gtk_tooltips_layout_text() until later.
20801
20802         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
20803         Call gtk_widget_ensure_style() before using the style.
20804
20805 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
20806
20807         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
20808         for old widgets that don't propagate draws to all
20809         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
20810
20811 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
20812
20813         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
20814         for a redraw but just the widget that requested the resize.
20815
20816 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
20817
20818         * gtk/gtkcontainer.c: added new widget level method
20819         gtk_container_set_reallocate_redraws() and a GtkContainer flag
20820         reallocate_redraws : 1 to reflect the setting, exported this through
20821         the argument system as a boolean ::reallocate_redraws.
20822
20823         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
20824         on the widget because the allocation changes, do so as well for
20825         widget->parent if the parent has reallocate_redraws set to TRUE.
20826         with that containers requesting reallocation redraws get automatically
20827         redrawn if their children changed allocation (this unfortunately
20828         affects also other children that didn't change allocation, but we
20829         cannot work around that before 1.3).
20830
20831 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
20832
20833         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
20834         _and_ height are >0 (not _or_).
20835
20836         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
20837         instead of gtk_container_queue_resize(), which is a core gtk internal
20838         function (must have been on crack when i queued that).
20839
20840         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
20841         we can check more reliably if we want to discard expose events.
20842         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
20843         flag.
20844         
20845         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
20846         we simply trust these events. for deciding whether to discard exposes,
20847         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
20848         
20849 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
20850
20851         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
20852         queues of areas that are completely off screen.
20853
20854         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
20855         logic for handleboxes.
20856
20857         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
20858         check on width/height.
20859
20860 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
20861
20862         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
20863         we are fine with using $@ the way we do (if we actually encounter
20864         brokeness with $@ in VPATH builds because of additional path prefixes,
20865         we need to use $(@F) actually).
20866
20867 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
20868
20869         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
20870         short lived bugs, that would allow language bindings to do surgeries
20871         to our guts.
20872
20873 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
20874
20875         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
20876         where comparison was being done against an uninitialized
20877         value causing intermittant results depending on
20878         compiler flags. Also make it clearer that we aren't
20879         ever initializing the child as 0x0 (though this will
20880         be caught in gtk_widget_size_allocate())
20881
20882 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
20883
20884         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
20885         gtk_window_unset_transient_for() call after we do checks
20886         involving the old transient parent.
20887         [ From Lance Capser <lmc@cyberhighway.net> ]
20888
20889 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
20890
20891         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
20892         an empty file.
20893
20894 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
20895
20896         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
20897         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
20898
20899 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
20900
20901         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
20902         `$@' is valid only in the build dir, not after we've done 
20903         `cd $srcdir'.  Also use `test -f' instead of less portable
20904         `test -e'.
20905
20906 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
20907
20908         * gtk/gtktext.c (correct_cache_insert): Rewrite
20909          for simplicity, and hopefully correctness.
20910          (Fixes bug #1322, which was a segfault when
20911           on some insertions with the properties around
20912           the insertion set up just wrong.)
20913
20914         * gtk/gtktext.c (gtk_text_adjustment): When we receive
20915          a "changed" signal, clamp the new value to the adjustment
20916          bounds to avoid segfaulting if someone tries to change
20917          the adjustment to a bogus value. (Bug #1795)
20918
20919 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
20920
20921         * gtk/gtkmain.c: Ignore unexpected destroy notifies
20922         for children, for toplevel windows handle them
20923         like delete_event.
20924
20925         * gtk/gtkplug.c: Add an unrealize handler so that
20926         we unref plug->socket_window when we are done
20927         with it.
20928
20929 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
20930
20931         * gtk/gtktext.c (clear_area): Fix stupid signedness
20932          problem that was causing background to sometimes
20933          be misaligned.
20934
20935 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
20936
20937         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
20938         
20939         * gtk/gtkmenu.c (gtk_menu_position): Make
20940          sure we never position menus with negative x, y,
20941          since gtk_widget_set_uposition() can't handle that.
20942
20943         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
20944          Modify the positioning code a bit so that we always
20945          put the top-left corner onscreen. (This is for
20946          UI reasons, gtk_menu_position() now takes care of
20947          gtk_widet_set_uposition() brokeness.)
20948
20949 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
20950
20951         * gtk/Makefile.am: fixed up things for -jx, x > 1.
20952
20953 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
20954
20955         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
20956           RC style that is passed in. The lack of the ref
20957           before was a bug. If people worked around this
20958           bug, this will introduce a slight memory leak
20959           in their code. The code should typically look like:
20960
20961             rc_style = gtk_rc_style_new ();
20962             [...]
20963             gtk_widget_modify_style (widget, rc_style);
20964             gtk_rc_style_unref (rc_style);
20965
20966         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
20967           the style if it was already set.
20968
20969         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
20970           style if it was set before.
20971
20972 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
20973
20974         * gtk/testgtk.c (main): Add a check to see if we
20975           are being run from the correct directory and
20976           to quit nicely if we are not.
20977
20978         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
20979           static.
20980
20981 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
20982
20983         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
20984
20985         * gtk/gtkwindow.c:
20986         queue resizes unconditionally (gtk_widget_queue_resize will figure
20987         what to do if the window is not realized).
20988         (gtk_window_move_resize): only recenter the window
20989         for GTK_WIN_POS_CENTER_ALWAYS.
20990         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
20991         the same way as GTK_WIN_POS_CENTER.
20992
20993 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
20994
20995         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
20996         with (!(info->last_flags & GDK_HINT_POS)) instead of
20997         (!info->last_flags & GDK_HINT_POS).
20998
20999         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
21000         new_height unconditionally, because we use these values even if
21001         !default_size_changed && !hints_changed.
21002         comented the (default_size_changed || hints_changed) case with
21003         respect to resize rejects from the window manager.
21004
21005         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
21006         in the zvt condition hack, since this includes the window hints, set
21007         the hints after the handling_resize case.
21008
21009         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
21010         window is initially shown with to the geometry.
21011
21012 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
21013
21014         * gtk/gtkwindow.c (gtk_window_move_resize):
21015         s/size_changed/default_size_changed/g so i know what's
21016         really going on (frying brain on smaller flame now).
21017
21018 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
21019
21020         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
21021         we have size_changed upon handling_resize. this is a gross
21022         workaround for the broken zvt widget and should be removed in
21023         1.3 again (search for FIXME).
21024         Owen provided an accurate comment for this:
21025
21026         /* We could be here for two reasons
21027          *  1) We coincidentally got a resize while handling
21028          *     another resize.
21029          *  2) Our computation of size_changed was completely
21030          *     screwed up, probably because one of our children
21031          *     is broken. It's probably a zvt widget.
21032          *
21033          * For 1), we could just go ahead and ask for the
21034          * new size right now, but doing that for 2)
21035          * might well be fighting the user (and can even
21036          * trigger a loop). Since we really don't want to
21037          * do that, we requeue a resize in hopes that
21038          * by the time it gets handled, the child has seen
21039          * the light and is willing to go along with the
21040          * new size. (this happens for the zvt widget, since
21041          * the size_allocate() above will have stored the
21042          * requisition corresponding to the new size in the
21043          * zvt widget)
21044          *
21045          * This doesn't buy us anything for 1), but it shouldn't
21046          * hurt us too badly, since it is what would have
21047          * happened if we had gotten the configure event before
21048          * the new size had been set.
21049          */
21050
21051 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
21052
21053         * gtk/gtkrc.c: deal properly with the fact that RC
21054           style lists may include rc styles more than once.
21055
21056         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
21057           unused static function.
21058
21059         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
21060           stack of directories of RC files currently being
21061           parsed and implicitely add them to pixmap path.
21062           
21063           This fixes a bug where the directory would get
21064           appended then overwritten by pixmap_path declarations.
21065
21066           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
21067
21068         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
21069           theme's exit function. (Patch from Peter Wainwright,
21070           bug #1454)
21071
21072         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
21073           Add a destroy() handler to take care of removing
21074           group for menu item. (Fixes bug #1197)
21075
21076         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
21077           in warning message.
21078
21079 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
21080
21081         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
21082         roundtrip to figure window's width and height, since we know that
21083         anyways from widget->allocation.
21084
21085 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
21086
21087         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
21088           the hints after we request the new size.
21089
21090 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
21091
21092         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
21093           GTK_WIDGET_REALIZED() assertion - we can compute the
21094           hints before we are realized.
21095
21096         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
21097           hint changing so that we have a value of hints_changed
21098           when we decide whether to constrain the window size.
21099
21100         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
21101
21102         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
21103         change back to G_MAXINT.
21104
21105 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
21106
21107         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
21108         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
21109         contain uncluttered values.
21110         (gtk_window_compute_hints): simply assert that window is realized
21111         and that geometry_info is valid, since we rely on this anyways.
21112         (gtk_window_constrain_size): major cleanups to the code.
21113         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
21114         for the base size, instead of the minimums. use 32767 as max width
21115         and height (like in gtkwindow.c) instead of G_MAXINT.
21116
21117 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
21118
21119         * cleaned up the GtkContainer.need_resize flag handling mess, we
21120         only need to force resize requests when we were prematurely
21121         realized, or our widget tree was modified when we were temporarily
21122         hidden. handling these cases directly upon showing the window (i.e.
21123         while the GdkWindow is still unmapped) avoids the need to wait for
21124         a configure event response and therefore makes the GUI more snappier
21125         and avoids blank windows during the roundtrip.
21126
21127         * gtk/gtkwidget.c:
21128         (gtk_widget_hide): 
21129         (gtk_widget_show): don't queue resizes on toplevels, they know how
21130         to deal with matters.
21131
21132         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
21133         flag directly for not visible resize containers and spare us unecessary
21134         signal emissions.
21135
21136         * gtk/gtkwindow.c:
21137         (gtk_window_realize): if we need to enforce premature size allocation,
21138         queue a container resize so we are correctly resized later on.
21139         (gtk_window_init):
21140         (gtk_window_size_request):
21141         don't freak around with the ->need_resize flag,
21142         gtk_container_queue_resize() will care about that.
21143         (gtk_window_show):
21144         handle initial resizing issues here, we can handle matters better in
21145         this place, especially since we know that our GdkWindow is still
21146         unmapped.
21147         (gtk_window_move_resize):
21148         don't care about ->need_resize at all.
21149         handle size changes properly that occoured while we waited for a
21150         configure event.
21151
21152 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
21153
21154         * gtk/gtkwidget.c (gtk_widget_set_uposition):
21155         * gtk/gtkwindow.[hc] (gtk_window_reposition):
21156         Move the hint setting code from gtk_widget_set_uposition
21157         to here; set the hints so that we respect any previously
21158         set geometry hints.
21159
21160         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
21161         change the window hints here or move the window here,
21162         let that happen in gtk_window_move_resize().
21163
21164 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
21165
21166         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
21167         to already queued resizes (and therefore redraws) on a widget, check
21168         its anchestry as well.
21169
21170         * gtk/gtkcontainer.c:
21171         (gtk_container_queue_resize): clear resize widgets for resize
21172         containers before aborting prematurely. this is especially important
21173         for toplevels which may need imemdiate processing or their resize
21174         handler to be queued.
21175         (gtk_container_dequeue_resize_handler): added new internal function for
21176         gtkwindow.c.
21177
21178         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
21179         configure event, take possible changes in window position into account
21180         as well.
21181         if we request a new window size, queue up a resize handler that will
21182         last until the configure event response arrives.
21183         combined the ->need_resize case (initial show) with the general size
21184         (hints) changed case and added even more comments.
21185         if !auto_shrink, only revert to the old allocation if the new size
21186         is smaller than the current allocation.
21187
21188 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
21189
21190         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
21191                            gtk_window_set_geometry_hints
21192                            gtk_window_set_default_size):
21193         When hints are set, queue a resize so that the hints will
21194         be eventually reset on the toplevel.
21195
21196         * gtk/gtkwindow.c (gtk_window_show): Use
21197         gtk_window_compute_default_size(). Clear the need_resize flag
21198         on the initail map so that we don't unnecessarily trigger the
21199         resize code.
21200
21201         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
21202         into separate functions. Compare the hints we are setting
21203         with what we set last time so that we can accurately
21204         tell when we need to reset the hints.
21205
21206         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
21207         function to figure out the size from requisition
21208         and default_size.
21209
21210         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
21211         from fvwm to constrain a size to the geometry hints.
21212
21213         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
21214         to compare two sets of geometry hints.
21215
21216         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
21217         from gtk_window_set_hints(), just compute the hints,
21218         don't set them.
21219
21220         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
21221         code from gtk_window_move_resize() to separate function,
21222         rationalize a bit.
21223
21224 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
21225
21226         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
21227         structure into a new private structure.
21228
21229         * gtkrc.c: Split GtkRcStyle into public/private.
21230         In the private part, add a list of pointers to the
21231         RcStyle lists this RcStyle participates in.
21232
21233         * gtkrc.c: When a RcStyle is free, remove all
21234         lists referencing it from the 
21235         realized_style_ht hash, and free those lists.
21236         
21237         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
21238         gtk_rc_init(), since that adds the default styles
21239         to the list of parsed RC files again.
21240
21241         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
21242         
21243 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
21244
21245         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
21246         checks that ensure that a widget's allocation is at least 1 in width
21247         and height. (GNOME note: this doesn't affect old panel code anymore,
21248         because GtkSocket will request width and height of at least 1 since
21249         Fri Jul 23).
21250
21251         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
21252         allocated yet (happens if the user realizes the window prematurely),
21253         size request and allocate it.
21254         (gtk_window_size_allocate): guard against guint underflows.
21255
21256 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
21257
21258         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
21259         in gtk_built_sources, so gtk.defs gets built prior to all other
21260         sources.
21261
21262 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
21263
21264         * gtk/Makefile.am:
21265         invoke indent on gtkmarshal.*. 
21266         rewrote source generation rules, use COPYING as oldest source tag for
21267         a piggyback rule to generate all sources from (don't touch it ;).
21268         major cleanups, strip spaces on build rules for GNU Make.
21269
21270         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
21271         source and target files from commandline arguments. don't invoke indent.
21272
21273 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
21274
21275         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
21276         notebook after switch to avoid drawing problems.
21277         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
21278         
21279         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
21280         show them instead. 
21281         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
21282
21283 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
21284
21285         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
21286         notebook after switch to avoid drawing problems.
21287         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
21288         
21289         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
21290         show them instead. 
21291         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
21292
21293 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
21294
21295         * gtk/gtkwindow.c:
21296         we use window->need_resize from configure_event now, to indicate that
21297         the gtkwindow should keep its allocation (e.g. because the user resized
21298         the window through window manager handles). resize_count is now reliably
21299         used to figure whether we got the allocation we requested from the
21300         window manager.
21301         configure events get queued as resizes now, the real stuff (size
21302         computation and allocation) now only goes on in gtk_window_move_resize().
21303         GtkWindow's requisition now contains its *real* requisition (like all
21304         other widgets), *not* taking usize into account.
21305         geometry_info->last_{width|height} is now updated from set_hints() only
21306         so it always contains the last hints we set for the window manager.
21307         made some event handlers return TRUE instead of FALSE.
21308         the overall code should be much more straight forward now, and the
21309         significant code portions are accompanied by comments now.
21310         (gtk_window_set_hints):
21311         removed requisition argument and made it
21312         fetch the requisition through gtk_widget_get_child_requisition.
21313         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
21314         does that now.
21315         (gtk_window_show):
21316         ensure that the widget is realized before calling 
21317         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
21318         ensure that we got properly size requested and allocated before
21319         realization.
21320         (gtk_window_configure_event):
21321         ignore plain window moves, or reallocate the widget tree through the
21322         resize queue otherwise.
21323         (gtk_window_move_resize):
21324         mostly rewrote this function to figure window manager hints more
21325         reliably, coalesce window moves and resizes to reduce configure events
21326         and do actuall size allocations.
21327
21328 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
21329
21330         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
21331         that have a resize pending, because a redraw is already queued for them.
21332
21333         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
21334         hack to clear resize_widgets.
21335
21336         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
21337         for resize containers prior to size allocation. (this is also a bit
21338         ugly, but avoids side effects for stopped emissions and is thus more
21339         reliable).
21340         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
21341
21342         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
21343         function from gtk_tooltips_expose, as we connect to ::expose_event
21344         *and* ::draw now.
21345
21346 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
21347
21348         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
21349         checks.
21350         (gtk_target_list_unref): Likewise.
21351
21352         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
21353
21354 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
21355
21356         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
21357         guard against division by zero. (Fixes bug #1339)
21358
21359 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
21360
21361         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
21362         Prevent the trivial leak of information of allowing
21363         word motion when the entry is not visible.
21364
21365 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
21366
21367         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
21368         modality to error dialog as well as confirmation dialogs.
21369         (Bug #1803, reported by Rosanna Wing Sze Yuen)
21370
21371 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
21372
21373         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
21374         tree->view_lines.
21375         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
21376
21377         * gtk/Makefile.am (install-data-local): Solaris apparently
21378         has various troubles with ln -f; use rm first instead.
21379         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
21380
21381 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
21382
21383         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
21384         use `cp' followed by `rm' (the `rm' was already there).
21385
21386 July 30, 1999 Elliot Lee <sopwith@redhat.com>
21387         
21388         * configure.in: Fix autoconf warnings about cross compilation by
21389         trying to provide sane defaults for AC_TRY_RUN.
21390         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
21391         put them into $(srcdir) when generated. Also add a dependency of
21392         gtksignal.h on gtkmarshal.h for -j builds. 
21393         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
21394
21395 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
21396
21397         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
21398         GDK_THREADS_{LEAVE,ENTER} pair.
21399         (From Paul Fisher <pnfisher@redhat.com>)
21400
21401 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
21402
21403         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
21404         width and height are always >0 (owen).
21405
21406 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
21407
21408         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
21409         change that assured that a widget's allocated with and height are
21410         always >1, since this breaks *buggy* panel code. unfortunately this
21411         back-breaks the gimp's color selector.
21412
21413         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
21414         allocation is always >0 in width and height, before sending the
21415         configure event; this is a *gross* hack to get the gimp back to work.
21416         
21417         * marked both cases with TODO-1.3
21418
21419 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
21420
21421         * gtk/gtktext.c: Don't display wrap indicators when
21422         text is not editable and word wrap is on.
21423
21424 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
21425
21426         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
21427         option menus here as they are not derived from menu shell, assure that
21428         the option menu has a menu we can add items to.
21429
21430 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
21431
21432         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
21433         width/height to (gint) before calculations and check against < 0 to
21434         avoid guint wraparounds.
21435
21436 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
21437
21438         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
21439         width and height is never zero. sanity check both dimensions against
21440         32767 and issue a warning if the allocation is greater than that.
21441
21442 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
21443
21444         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
21445         to g_main_pending() as well.
21446
21447 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
21448
21449         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
21450         call to g_main_iteration() - since that will regrab
21451         GTK+ lock to process events.
21452
21453 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
21454
21455         * gtk/gtkwindow.c
21456         - Regularize with the rest of GTK+ by making widget->requisition
21457           not reflect the set_usize()
21458         - Always recompute geometry hints, then check if they
21459           changed before sending them to the X server. The
21460           previous checks for changes would fail in a number
21461           of circumstances. 
21462
21463 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
21464
21465         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
21466
21467 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
21468
21469         * gtk/gtkdnd.c:
21470         - Code cleanups
21471         - Instantaneously update on modifier key presses
21472         - Allow cancellation of the drag with Escape.
21473
21474 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
21475
21476         * gtk/testgtk.c (create_handle_box): Set the policy
21477         to auto_shrink - otherwise the appearance is rather
21478         strange when flipping between horizontal and vertical.
21479
21480 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
21481
21482         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
21483         (gtk_window_set_default_size): don't change a value if it's < 0.
21484         queue a resize.
21485
21486 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
21487
21488         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
21489
21490 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
21491
21492         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
21493         add an extra "/" when concating "/" + filename.
21494         (From Matt Grossman <mattg@oz.net>)
21495
21496 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
21497
21498         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
21499         for fg_gc if we set it for drawing pixmap.
21500
21501 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
21502
21503         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
21504         
21505         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
21506         already set, call old engine's destroy function and
21507         unref the old engine.
21508
21509 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
21510
21511         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
21512
21513 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
21514
21515         * gtk/gtkaccelgroup.h: mark certain functions as internal.
21516
21517 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
21518
21519         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
21520         expand behaviour changed.
21521
21522         * gtk/gtklabel.c (gtk_label_set_pattern):
21523         (gtk_label_set_justify):
21524         (gtk_label_set_line_wrap):
21525         don't bother invoking queue_clear, the reallocation does
21526         that for us, always free_words so the upcoming resize will
21527         relayout the label's contents.
21528
21529 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
21530
21531         * applied argument implementation patches from Elena Devdariani
21532         <elena@cogent.ca>.
21533
21534         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
21535         ::space_style, ::relief
21536         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
21537         * gtk/gtkpreview.c: ::expand
21538         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
21539         * gtk/gtknotebook.c: ::homogeneous
21540         * gtk/gtklabel.c: ::wrap
21541         * gtk/gtklist.c: ::selection_mode
21542         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
21543         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
21544         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
21545         * gtk/gtkclist.c: ::sort_type
21546         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
21547         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
21548
21549 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
21550
21551         * gtk/gtkstyle.c: Removed ill-thought-out part of last
21552         comment.
21553
21554 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
21555
21556         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
21557         counting right when we have to attach a new style
21558         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
21559
21560         * gtk/gtkstyle.c: Documented the refcounting
21561         peculularities of gtk_style_attach.
21562
21563 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
21564
21565         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
21566         window types.
21567
21568         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
21569         of GTK_TOPLEVEL for creating the window.
21570
21571 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
21572
21573         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
21574         the last argument (reported by Per Winkvist).
21575         
21576 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
21577
21578         Fixes for invisible XOR lines (Frank Loemker
21579         <floemker@TechFak.Uni-Bielefeld.DE>)
21580         
21581         * gtk/gtkclist.c (gtk_clist_realize): Always use
21582         a non-zero pixel for GDK_XOR.
21583
21584         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
21585         Use GDK_INVERT instead of GDK_XOR.
21586
21587 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
21588
21589         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
21590         signals if h/voffsets differ from adjustment values.
21591         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
21592
21593 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
21594
21595         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
21596         ::selection-done emissions up to the topmost menu shell.
21597
21598 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
21599
21600         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
21601         the user data on the window before destroying it.
21602
21603         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
21604         unrealize handler to take care of destroying 
21605         notebook->panel properly. 
21606         (Bug #1198 - Morten Welinder <terra@diku.dk>)
21607
21608         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
21609         of g_new and g_realloc to stop memory leak. (Actually,
21610         we could just use g_realloc(), but I'm not 100% sure
21611         that is portable).
21612         (Bug #1196 - Morten Welinder <terra@diku.dk>)
21613
21614 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
21615
21616         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
21617
21618         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
21619         for fontsets.
21620
21621         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
21622         with bin/button confusion.
21623
21624 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
21625
21626         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
21627         and show how preselection of radio items is done.
21628
21629 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
21630
21631         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
21632         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
21633         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
21634         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
21635         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
21636         * gtk/gtktable.c (gtk_table_attach): 
21637         * gtk/gtklist.c (gtk_list_insert_items): 
21638         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
21639         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
21640         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
21641         * gtk/gtkbin.c (gtk_bin_add): 
21642         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
21643         * gtk/gtkfixed.c (gtk_fixed_put): 
21644         * gtk/gtklayout.c (gtk_layout_put):
21645         general fixups to container_add logic. always realize child if
21646         child->parent is realized, only map the child and queue a resize
21647         if child and child->parent are both visible.
21648
21649 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
21650
21651         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
21652         instead of gtk_container_foreach to walk and unrealize children, so
21653         composite children get also unrealized.
21654         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
21655         (gtk_widget_map): assert that the widget is visible (basic constrain).
21656         (gtk_widget_real_map): assert that the widget is realized (basic
21657         constrain).
21658
21659 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
21660
21661         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
21662
21663 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
21664
21665         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
21666         file for iso-8859-2 locales.
21667
21668         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
21669
21670 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
21671
21672         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
21673          (Pointed out by andy@rz.uni-karlsruhe.de and others).
21674          Remove some suspicious and useless lines. 
21675
21676 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
21677
21678         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
21679         width,height = 0, 0 to mean - here to edge of window,
21680         instead of -1, -1, since the former is all we support.
21681
21682 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
21683
21684         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
21685         when removing from quit_functions list.
21686
21687 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
21688
21689         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
21690
21691 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
21692
21693         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
21694          When redrawing characters on non-visible entry, use appropriate
21695          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
21696
21697 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
21698
21699         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
21700         from drag coordinates.
21701         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
21702         use drag_dest_cell.
21703
21704         * gtk/gtktree (drag_dest_cell)
21705         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
21706         (Bug #1129)
21707
21708 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
21709
21710         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
21711         translate_* fields.
21712         (gtk_item_factory_finalize): invoke translate_notify independant from
21713         translate_data.
21714         (gtk_item_factory_set_translate_func): likewise.
21715         (gtk_item_factory_destroy): only remove ifactory pointer from those
21716         widgets that belong to us (stupid me).
21717
21718 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
21719
21720         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
21721         rc_style list when lookup succeeeds.
21722
21723 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
21724
21725         * gtk/gtkctree.c (resync_selection): 
21726         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
21727         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
21728         bug.
21729
21730 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
21731
21732         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
21733         Add some missing GDK_THREADS_ENTER()/LEAVE around
21734         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
21735
21736 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
21737
21738         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
21739         rather than emit_by_name.
21740
21741         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
21742         on the widget across multiple signal emissions.
21743         (gtk_editable_delete_text): same here.
21744         (gtk_editable_class_init): set widget_class->activate_signal after
21745         editable_signals[ACTIVATE] has been created.
21746
21747 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
21748
21749         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
21750         position here prematurely -- we might not have the
21751         right ->min_position and ->max_position yet.
21752
21753 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
21754
21755         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
21756         Add error traps so if the other end of the connection
21757         dies, we survive.
21758
21759         * gtk/gtkselection.c (gtk_selection_notify): Clean
21760         up properly when selection property retrieval fails.
21761         
21762         * gtk/gtkselection.c (gtk_selection_request): Correctly
21763         reject SelectionRequest notifies where the handler
21764         returns no data.
21765
21766 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
21767
21768         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
21769         when we've previously highlighted.
21770
21771         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
21772         emit two "drag_leave" signals for Motif drops.
21773
21774         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
21775         back the correct status messages when dropping from
21776         Motif onto a proxy window that is rejecting the
21777         drop.
21778
21779 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
21780
21781         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
21782         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
21783         to compare two argument values. added gtk_arg_to_valueloc() to set a
21784         variable from an arg through its location (pointer).
21785
21786         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
21787         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
21788         as gfloat*, uchars are collected as guchar*, ints are collected as
21789         gint*, etc...
21790
21791 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
21792
21793         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
21794         Include <string.h> instead of <strings.h>.
21795
21796         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
21797         (actually, a lot more duplicate includes occur if
21798          you trace through the sequence of #include's)
21799         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
21800         
21801 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
21802
21803         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
21804         gtk-a-higuti-990322-[0-3]
21805
21806         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
21807         that was causing -DX_LOCALE not to work.
21808
21809         * gtk/gtkrc.c (gtk_rc_init):
21810         X_LOCALE will never have LC_MESSAGES defined
21811
21812 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
21813
21814         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
21815         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
21816
21817         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
21818         left/right as well (gtk-michael-980726-0.patch.gz).
21819
21820         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
21821         for pointer values, use gchar instead of char. fixed uline allocation
21822         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
21823         chunks instead of G_ALLOC_ONLY.
21824         (gtk_label_size_request): always alter requisition as passed and leave
21825         widget->requisition alone.
21826         (gtk_label_set_text): allow NULL strings.
21827         (gtk_label_new): likewise.
21828
21829 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
21830
21831         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
21832
21833 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
21834
21835         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
21836         *and* mapped (i.e. drawable).
21837         (gtk_bin_expose): only send exposes to drawable children.
21838
21839         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
21840         (gtk_box_expose): only send exposes to drawable children.
21841
21842         * gtk/gtkhscale.c (gtk_hscale_draw): 
21843         * gtk/gtkvscale.c (gtk_vscale_draw):
21844         hm, this is an ugly one. we first compute the size of our trough area
21845         here (window relative) and then check intersection with the draw_area
21846         which is parent relative because we're a NO_WINDOW widget, so we need
21847         to offset the trough area by allocation.x and allocation.y before the
21848         check. (this must not be done for the background area though, since
21849         that's already computed parent relative).
21850
21851 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
21852
21853         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
21854         unrealize title buttons.
21855
21856 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
21857
21858         * gtk/gtkclist.c (gtk_clist_column_title_passive)
21859         (gtk_clist_column_title_active): 
21860         only connect/disconnect to GtkWidgetClass::event to block mouse events.
21861
21862         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
21863         zero initialize event, removed superfluous gdk_window_get_pointer call
21864
21865         * gtk/gtklist.c (gtk_list_vertical_timeout)
21866         (gtk_list_horizontal_timeout): removed superfluous
21867         gdk_window_get_pointer call
21868
21869 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
21870
21871         * plugging problems reported by "Bruce Mitchener, Jr."
21872         <bruce@puremagic.com> due to a purify session.
21873
21874         * gtk/gtkstyle.c:
21875         (gtk_style_ref): 
21876         (gtk_style_unref): assert ref_count to be > 0.
21877
21878         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
21879         the requisition.
21880         (gtk_clist_set_shift): likewise.
21881
21882         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
21883         adjustments.
21884
21885         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
21886         event before sending it and set send_event to TRUE (which needs to
21887         be done for *all* synthesized events).
21888         (gtk_list_vertical_timeout): likewise.
21889
21890         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
21891         leaks.
21892
21893         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
21894         to TRUE when synthesizing events.
21895
21896 [ *** end of merges from 1.2 *** ]      
21897         
21898 1999-11-21  Tor Lillqvist  <tml@iki.fi>
21899
21900         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
21901         (or copied from gdkconfig.h.win32 on Win32, sigh).
21902
21903         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
21904
21905         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
21906
21907         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
21908
21909         * gdk/gdkconfig.h.win32: New file.
21910
21911         * gdk/win32/makefile.cygwin: Build just a static archive here.
21912
21913         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
21914         for the DLL from the static archive built above.
21915
21916         * gdk/gdk.def: Moved here from the win32 subdirectory.
21917
21918         * gdk/win32/*: Adapt for the changed private struct organisation.
21919
21920         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
21921
21922 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
21923
21924         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
21925         for wheel mice (buttons 4 and 5).
21926
21927 1999-11-18  Tor Lillqvist  <tml@iki.fi>
21928
21929         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
21930         drawables use just the pixel field in the foreground and
21931         background GdkColor of the GdkGC.
21932
21933         gdk_gc_set_{fore,back}ground() are called in the GIMP with
21934         GdkColors containing uninitialized (red,green,blue) fields, and
21935         just the pixel field filled in, and furthermore in the
21936         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
21937         It thus turns out that we really don't need to have the full
21938         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
21939         it later to have just the pixel values.
21940
21941 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
21942
21943         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
21944
21945 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
21946
21947         * docs/gtkfaq.sgml: threads example from Erik Mouw.
21948         New question on GtkLabel background colors.
21949
21950         * docs/gtk_tut.sgml:
21951           - Correct the example code callback
21952             function definitions.
21953           - Update the gtkdial example code, from Frans van Schaik.
21954           - Update setselection.c to current API.
21955
21956         * examples/Makefile examples/*/*.c: Update to code
21957         listed in tutorial.
21958
21959 1999-11-10  Tor Lillqvist  <tml@iki.fi>
21960
21961         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
21962         subrange table (from the "Developing International Software for
21963         WIndows 95 and Windows NT" book) was missing the Hangul syllable
21964         block... Get the loaded font's charset correctly.
21965
21966         (Note that this, and the other *-win32.c files, still really are
21967         the old ones, the win32 subdirectory is not ready for compilation
21968         yet after the reorg.)
21969
21970 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
21971
21972         * gtk/gtkclist.c: Fix off-by-one bug in parameter
21973         check.
21974
21975 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
21976
21977         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
21978         on results of XQueryDeviceState().
21979
21980 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
21981
21982         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
21983         we need to accesss only ->children. We need an accessor
21984         for the children.
21985
21986         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
21987         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
21988         to get rid of gdkx.h include.
21989         
21990         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
21991         and random references to 'None'.
21992
21993         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
21994         Get rid of unused #include <gdk/gdkx.h>
21995
21996         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
21997         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
21998         gdkconfig.h.
21999
22000 1999-11-08  Tor Lillqvist  <tml@iki.fi>
22001
22002         * gdk/win32/gdkdraw.c
22003         * gdk/win32/gdkfont.c
22004         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
22005         following yesterday's changes. (Unrelated to Owen's reorg.)
22006
22007 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
22008
22009         * gdk/x11/gdkinput-gxi.c: Add missing include,
22010           fix GdkWindowPrivate => GdkDrawablePrivate.
22011
22012         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
22013
22014         * gdk/x11/Makefile.am (xinput_sources): Add missing
22015         backslash to fix building with --with-xinput=none
22016
22017 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
22018
22019         Move all X specific code into the x11/ directory.
22020         Aside from shuffling things around, did the following:
22021
22022        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
22023          gdk_arg_context_* - a simple argument parsing system
22024          in the style of popt.
22025
22026        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
22027          gdk/x11/gdkprivate-x11.h:
22028          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
22029          add ->klass and ->klass_data fields. The klass_data
22030          field points to an auxilliary structure that is
22031          windowing system dependent.
22032
22033        * gdk/gdkfont.c: Make most of the measurement functions
22034          simply wrappers around gdk_text_extents().
22035
22036        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
22037          _gdk_font_strlen() function that hides the weird
22038          behavior in gtk+-1.[02] where a string is interpreted
22039          differently for 8-bit and 16-bit fonts.
22040
22041        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
22042          to store common code for synthesizing double/triple
22043          press events.
22044         
22045        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
22046          Make all the function that modify an existing GC
22047          simply wrappers around gdk_gc_set_values().
22048          
22049        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
22050          for throwing out later.
22051
22052        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
22053          GdkImagePrivate and GdkColormapPrivate to have a
22054          windowing system dependent part (GdkFontPrivateX etc.)
22055          that "derives" from the system-independent part.
22056
22057        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
22058          Got rid of the included-source-files for XInput in
22059          favor of automake conditionals. (Which didn't exist
22060          when XInput support was originally added.)
22061
22062        * gdk/gdkrgb.c: Remove the visual id from the debugging
22063          statements since that is X11 specific; print out
22064          type/depth info instead.
22065          
22066
22067 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
22068
22069         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
22070         loading duplicates of hashed fonts.
22071
22072         * gdk/gdk.c (gdk_keysym_convert_case): rename
22073         gdk_XConvertCase to gdk_keysym_convert_case, allow
22074         results to be NULL in the GTK+ style.
22075
22076         * gdk/gdkcompat.h: Started compatibility header
22077         for renames.
22078
22079 1999-11-07  Tor Lillqvist  <tml@iki.fi>
22080
22081         * gdk/win32/gdkprivate.h: New font private structures, related to
22082         fontsets.
22083
22084         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
22085         gdk_font_list_free(). On X11, will just be wrappers to
22086         XListFonts() and XFreeFontNames(). On Win32, the code previously
22087         in gtkfontsel.c is now here.
22088
22089         New function gdk_font_xlfd_create(). On X11 will get the FONT
22090         property of the font (for GDK_FONT_FONTs), or call
22091         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
22092         builds a XLFD style name from the font information in the LOGFONT
22093         struct(s).
22094
22095         New function gdk_font_xlfd_free(), which correspondingly frees the
22096         string returned by gdk_font_xlfd_create().
22097
22098         Implement fontsets on Win32. Add a function that iterates over a
22099         wide char string and calls a callback function for each substring
22100         of wide chars from the same Unicode subrange (and thus probably
22101         available in the same real font).
22102
22103         Improve the XLFD emulation a bit.
22104
22105         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
22106
22107         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
22108         Beta3, WM_IME_CHAR messages don't seem to contain the composed
22109         multi-byte char as with the Active IMM on Win9x. Oh well, handle
22110         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
22111         ImmGetCompositionStringW() to get the composed Unicode chars.
22112
22113         * gdk/win32/gdkgc.c
22114         * gdk/win32/gdkdraw.c: Changes needed because of the font private
22115         struct changes.
22116
22117         * gdk/win32/gdk.def: Add the new functions.
22118
22119 1999-11-04  Tor Lillqvist  <tml@iki.fi>
22120
22121         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
22122         get the Platform SDK to get <dimm.h>.
22123
22124         * gdk/win32/gdkevents.c: More event handling fixes and
22125         simplification. Never generate motion events with is_hint true. We
22126         used to do that on bogus grounds earlier. Windows sends
22127         WM_MOUSEMOVE messages on button events even if the mouse hasn't
22128         moved, ignore these.
22129
22130         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
22131
22132         * gdk/win32/gdkglobals.c
22133         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
22134         the TrackMouseEvent function, and use it.
22135
22136         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
22137         char before calling WideCharToMultiByte in order to get a string
22138         for the window title.
22139
22140         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
22141
22142         * gdk/win32/gdk.def: Remove obsolete functions.
22143
22144         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
22145         /nodefaultlib and /defaultlib switches.
22146
22147         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
22148
22149 1999-10-31  Tor Lillqvist  <tml@iki.fi>
22150
22151         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
22152         EuroSign).
22153
22154         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
22155         same type as GdkWChar, especially on Win32.
22156
22157         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
22158
22159         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
22160         before passing to Windows GDI for drawing etc. Convert to the
22161         system default codepage before passing to Windows as window
22162         titles.
22163
22164         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
22165         support changing input locale on the fly.
22166
22167         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
22168         on-the-fly changes. Convert incoming characters from the current
22169         codepage to Unicode (and then to a UTF-8 multi-byte string) based
22170         on the current input language. Use keysym<->Unicode mapping tables
22171         and functions borrowed from xterm sources.
22172
22173         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
22174         editions of Win9x, use the ActiveX-based Active IMM (Input Method
22175         Manager) if available. IMEs and the Active IMM are available under
22176         the disguise of Chinese, Korean and Japanese support for IE and
22177         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
22178         support is present in all editions (as long as you install it).
22179
22180         Call DispatchMessage from gdk_events_queue() (and thus
22181         gdk_WindowProc()), instead of duplicating the code in
22182         gdk_WindowProc().
22183
22184         Reworked the grab handling and propagation code, factored out
22185         duplicated code snippets into separate functions. Other cleanups,
22186         too.
22187
22188         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
22189         the <dimm.h> header describing the Active IMM.
22190
22191         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
22192         just do the same as for "single" fonts.
22193
22194         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
22195         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
22196         the new keysyms from gdkkeysyms.h.
22197
22198         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
22199         fontset, so that gtkentry uses wide characters.
22200
22201         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
22202         GTk+'s system directory "gtk+", not "gtk".
22203
22204 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
22205
22206         * docs/gtkfaq.sgml: FAQ update
22207
22208 1999-10-21  Tor Lillqvist  <tml@iki.fi>
22209
22210         * gdk/win32/gdkprivate.h: Add more font private data.
22211
22212         * gdk/win32/gdkfont.c
22213         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
22214         fonts and strings. Now works much better. You still have to
22215         have a correct font selected, though. No fontset emulation yet.
22216
22217 1999-10-19  Tor Lillqvist  <tml@iki.fi>
22218
22219         * gtk/maketypes.awk: Use G_OS_WIN32.
22220
22221         * gtk/gtk.def: Add some missing entry points. Also some non-public
22222         ones, but PyGTK porter claims to need them.
22223
22224         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
22225         built-in type generation.
22226
22227 1999-10-14  Tor Lillqvist  <tml@iki.fi>
22228
22229         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
22230         GDK_FONT_FONT fonts (which is all we have for now, we don't
22231         emulate fontsets). The X11 version uses plain XDrawString in that
22232         case, too. The string passed to gdk_draw_text_wc seems to be in
22233         fact (at least, when used by gtkentry and gtktext) either in a
22234         single-byte charset, or a DBCS. Not Unicode.
22235
22236         This fixes the problem in gtkfontsel, where even if you had
22237         selected a font with a non-Latin1 charset (windows-greek, for
22238         instance), the preview still used Latin-1 glyphs.
22239
22240         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
22241         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
22242         (gdk_font_load): Recognize the demibold etc weights, even if we
22243         don't have the corresponding constants in the headers.
22244         (gdk_font_hash_insert): Use same hash mechanism as in the X11
22245         version. Should save font resources a bit, when we don't have
22246         multiple HFONTs for the same font.
22247
22248         * gdk/win32/gdkprivate.h: Add the names field as in the X11
22249         version.
22250
22251 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
22252
22253         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
22254         X values
22255
22256 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
22257
22258         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
22259         layout support (as mentioned on
22260         http://www.jcinteractive.com/gnome-ui/software/widgets/)
22261
22262 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
22263
22264         * gtk/fnmatch.c
22265         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
22266
22267 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
22268
22269         * configure.in (ALL_LINGUAS): Added Galician (gl)
22270
22271 1999-10-05  Tor Lillqvist  <tml@iki.fi>
22272
22273         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
22274
22275         * gdk/win32/gdkcompat.c: New file, actually provide an
22276         implementation for the deprecated functions. (Just temporarily.)
22277
22278         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
22279
22280         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
22281
22282         * gdk/win32/gdk.def gtk/gtk.def: Updates.
22283
22284 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
22285
22286         * configure.in: Added "uk" to ALL_LINGUAS.
22287         
22288 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
22289
22290         * configure.in: correct checking for BeOS check
22291
22292         * gdk/gdktypes.h
22293         * gtk/fnmatch.c
22294         * gtk/gtkfilesel.c
22295         * gtk/gtkitemfactory.c
22296         * gtk/gtkmain.[ch]
22297         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
22298
22299 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
22300
22301         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
22302         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
22303         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
22304         by Bulgarian). 
22305
22306 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
22307
22308         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
22309         Fix a reference to window_private->destroyed.   
22310
22311         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
22312         (ugly) setting of an internal GdkWindow member to use
22313         a _slightly_ cleaner macro.
22314
22315         * gdk/gdkprivate.h: Split GdkWindowPrivate into
22316         GdkDrawablePrivate and GdkWindowPrivate.
22317         Add extra macros for accessing GDK_DRAWABLE_ components.
22318
22319         * *.[ch]: Massive adjustments for the above, use the
22320         new macros in a lot of places.
22321
22322 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
22323
22324         * gdk/gdktypes.h: Make GdkDrawable the base type,
22325         not GdkWindow.
22326
22327 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
22328
22329         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
22330
22331 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
22332
22333         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
22334
22335 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
22336
22337         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
22338         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
22339
22340         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
22341
22342         * docs/gtk-config.1: Now autogenerated.
22343         * docs/Changes-1.4.txt: started
22344         
22345 1999-10-03  Tor Lillqvist  <tml@iki.fi>
22346
22347         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
22348         to #ifdef also here.
22349
22350         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
22351         Owen did to the X11 backend.
22352
22353         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
22354         ScrollWindowEx when blitting inside a window, it can't be correct
22355         in the general case.
22356
22357         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
22358         WM_GETMINMAXINFO is easier.
22359
22360         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
22361         depth equal to the bitspixel value, not the visual's depth.
22362
22363         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
22364         to 24 even if the bitspixel value is 32.
22365
22366         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
22367         need to check for depth==32 when bpp==32, depth will always be 24.
22368
22369 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
22370
22371         * docs/Changes-1.4.txt: Started
22372         
22373         * gtk/Makefile.am (gdk_headers): Include all the new headers.
22374
22375         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
22376         
22377         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
22378         into C file.
22379         
22380         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
22381         header to gdkinputprivate.h.
22382
22383         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
22384         unused since before 1.2.
22385
22386 1999-09-30  Tor Lillqvist  <tml@iki.fi>
22387
22388         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
22389         expand possible hex escapes in the font family (put there by
22390         logfont_to_xlfd if the font name isn't a legal XLFD font family,
22391         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
22392         On Win32, add hex escapes here, too.
22393
22394 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
22395
22396         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
22397         to #ifdef GDK_WINDOWING_X11.
22398
22399 [ Merges from gtk-1-2 ]
22400
22401 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
22402
22403         * configure.in: fixed "GNU Make" check to pass with new make version
22404         3.77.95.
22405
22406 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
22407
22408         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
22409         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
22410         AM_PATH_GTK() macros don't get confused by the -pre1.
22411
22412 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
22413
22414         * configure.in (REBUILD): Change check for perl5
22415           to check explicitely for v >= 5.002. (5.001
22416           does not work with our scripts.)
22417
22418 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
22419
22420         * configure.in: evaluate $PERL for the perl version check. added
22421         --disable-rebuilds to give the user an option to completely disable
22422         any source autogeneration rules.
22423
22424 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
22425
22426         * configure.in: evaluate $ac_make when checking for GNU Make.
22427
22428 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
22429
22430         * docs/Makefile.am: added generation.txt.
22431
22432         * Makefile.am: require automake 1.4, build README from README.in and
22433         INSTALL from INSTALL.in in dist-hook.
22434         
22435         * README.in:
22436         * INSTALL.in: new files to autogenerate README and INSTALL from.
22437
22438         * configure.in: figure whether we have GNU Make
22439
22440         * docs/generation.txt: minor additions/corrections.
22441
22442 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
22443
22444         * docs/gtkfaq.sgml: FAQ Update
22445
22446 July 30, 1999 Elliot Lee <sopwith@redhat.com>
22447         
22448         * configure.in: Fix autoconf warnings about cross compilation by
22449         trying to provide sane defaults for AC_TRY_RUN.
22450
22451 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
22452
22453         * ltconfig
22454         * ltmain.sh: upgrade to libtool 1.3.3
22455
22456 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
22457
22458         * INSTALL: Indicate that the --with-glib= configure
22459         time flag is unsupported.
22460
22461 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
22462
22463         * docs/generation.txt: Added a file that gives
22464         documenation about the autogeneration process for
22465         various autogenerated files.
22466         
22467 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
22468
22469         * configure.in (LIBS): Look for libgmodule in the
22470         right location.
22471
22472 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
22473
22474         * docs/gtk_tut.sgml: Removed references to
22475         code examples in my directory on gtk.org as
22476         they should all be in the tutorial now.
22477
22478         * docs/gtk_tut.sgml: Added sources for dial-test
22479         and scribble-xinput programs that were previously
22480         missing.
22481
22482 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
22483
22484         * TODO: Added entry about menu keyboard navigation, removed
22485         some finished items.
22486
22487 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
22488
22489         * acinclude.m4: Standardize on func_dgettext
22490         not func_gettext, so that the checks for dgettext
22491         actually are paid attention to.
22492
22493 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
22494
22495         * configure.in (LIBS): Add $INTLLIBS into $LIBS
22496         directly, rather than repeating the checks for
22497         gettext.
22498
22499         * INSTALL: Added information about gettext and
22500         NLS support.
22501
22502         * acinclude.m4 (LIBM): Check for dgettext, not
22503         just gettext. This should hopefully fix things wrt
22504         systems with old versions of GNU gettext installed.
22505
22506 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
22507
22508         * configure.in (LIBS): Look for libgmodule in the
22509         right location.
22510
22511 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
22512
22513         * autogen.sh: add --enable-maintainer-mode
22514
22515         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
22516
22517 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
22518
22519         * docs/gtk-config.1.in:
22520           docs/Makefile.am:
22521           configure.in: gtk-config is now generated.
22522
22523         * docs/gtk-config.1: Removed, now generated.
22524
22525 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
22526
22527         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
22528         handle CreateNotify itself, still put out a debuging message for
22529         --gdk-debug=events. made the ReparentNotify debugging message more
22530         verbose.
22531         wrap xcoords translation for ConfigureEvents into an error trap,
22532         a destroy event may already be pending, and in that case, the
22533         actuall coordinate values are not at all critical.
22534
22535 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
22536
22537         * gdk/gdkcc.c: Stop leaking the color_hash all over
22538         the place. Simplify and improve the logic.
22539
22540 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
22541
22542         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
22543         for prototypes and function implementations consistent (reported
22544         by Tomas Ogren).
22545
22546 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
22547
22548         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
22549         send_event set in debugging output.
22550         (gdk_compress_exposures): default initialize the event so we don't
22551         operate on bogus values (namely send_event).
22552
22553 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
22554
22555         * gdk/gdkwindow.c: When we receive an unexpected
22556         destroy notify on one of our windows, don't just
22557         warn about it, also mark our windows as destroyed.
22558
22559 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
22560
22561         * gdk/gdkfont.c (gdk_font_hash_insert): Add
22562           name => font and name => fontset hashes. The 
22563           name => fontset hash is a _big_ win since we
22564           weren't previously caching fontsets at all and loading
22565           fontsets is expensive. The name => font hash
22566           is less of a win, but it does save us from doing
22567           repeated XQueryFont calls on the same font.
22568
22569         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
22570           list so we can remove font/fontset from hash.
22571
22572 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
22573
22574         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
22575           and slightly confusing test. [ XInternAtom (,,TRUE)
22576           will never return None ].
22577
22578 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
22579
22580         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
22581           gdk/gdkwindow.c (gdk_window_set_hints):
22582
22583         Don't omit setting the properties if flags == 0 -
22584         there may be an existing set of properties there
22585         already. (Very old bug. Would it be better to
22586         delete the property instead?)
22587
22588         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
22589           spelling error in comment.
22590
22591 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
22592
22593         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
22594           to avoid stomping over gdk_error_warnings.
22595
22596         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
22597           as (bits_per_pixel + 7) / 8. This gives the same
22598           result as before for multiples of 8, but actually
22599           a "reasonable" value for 1bit or 4bit displays.
22600
22601 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
22602
22603         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
22604         GNU Make.
22605
22606 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
22607
22608         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
22609         discarding configure events.
22610
22611 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
22612
22613         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
22614         refcount is greater than zero.
22615
22616         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
22617
22618         * gdk/gdkfont.c (gdk_font_unref): Likewise.
22619
22620         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
22621
22622         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
22623
22624 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
22625
22626         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
22627         that format 32 => sizeof(item) == 4. It really is
22628         sizeof(long).
22629
22630 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
22631
22632         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
22633         core dump at all on X IO errors, only core dump
22634         if --enable-debug for X errors.
22635
22636 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
22637
22638         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
22639         unknown window:" message. disabled ConfigureNotify discarding code,
22640         because it led to events being processed out of order.
22641
22642 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
22643
22644         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
22645
22646         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
22647         we export this function, supress error warnings and don't reset the
22648         error code in the first half of this function.
22649
22650         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
22651         code (instead of just -1) so gdk_error_trap_pop() reveals something
22652         actually informative about the error that happened.
22653
22654         * gdk/*.c:
22655         don't rely on gdk_error_code being -1 if an error occoured, but just
22656         gdk_error_code != 0.
22657
22658 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
22659
22660         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
22661         pointer *before* invoking the filter function, so we at least don't
22662         crash if a filter is removed that is currently executed. window filters
22663         *really* need to be made truely reentrant at some point.
22664
22665 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
22666
22667         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
22668         PropertyNotify debug messages.
22669
22670 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
22671         
22672         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
22673         
22674         * gdk/gdkim.c: Fix cut-and-paste errors for 
22675         x/y and PreeditAttributes/StatusAttributes.
22676
22677 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
22678
22679         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
22680         G_MAXINT to 2^16 to alleviate overflow problems in
22681         various window managers.
22682
22683 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
22684
22685         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
22686         for fontsets.
22687
22688 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
22689
22690         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
22691         Initialize size_hints.x and size_hints.y because kwm
22692         brokenly pays attention to them.
22693         (Bug #1181 -  Lars Heete <hel@admin.de>)
22694
22695 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
22696
22697         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
22698         return value of gdk_list_visuals(). 
22699         (Bug #1193 - Morten Welinder <terra@diku.dk>)
22700
22701 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
22702
22703         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
22704         XSetIMValues to (void *) when comparing to NULL, to workaround
22705         the problem of some compilers barfing since older X headers don't
22706         have the prototype for it.
22707
22708 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
22709
22710         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
22711         for pseudocolor where colormap->colors was double
22712         allocated.
22713
22714         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
22715         color value in the hash table with the pixel filled
22716         in so when we do later hash table lookups, the color
22717         value is correct.
22718         
22719 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
22720
22721         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
22722         making the call
22723
22724 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
22725
22726         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
22727         pointed out by Morten Welinder <terra@diku.dk>.
22728
22729 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
22730
22731         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
22732           default filter from the list
22733
22734 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
22735
22736         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
22737           default filter from the list
22738
22739 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
22740
22741         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
22742
22743         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
22744         g_strdup_printf instead of calcing the length separately
22745
22746 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
22747
22748         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
22749         that we don't do in many other places. (Fixing duplicate 
22750         #include of config.h)
22751
22752         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
22753         Otherwise, #ifndef XINPUT_NONE check in the latter
22754         doesn't work. (Bug #546)
22755
22756 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
22757
22758         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
22759         "None" case insensitive.
22760
22761 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
22762
22763         * gdk/gdkselection.c: 
22764         Add error traps so if the other end of the connection
22765         dies, we survive.
22766
22767 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
22768
22769         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
22770         dest_xid field into two fields - one for the window
22771         to send in messages, one to indicate the last looked
22772         up window for caching purposes. This is needed, so
22773         that Leave messages get the correct window.
22774
22775 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
22776
22777         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
22778         Fix warning created by people mucking around
22779         with the gsource API.
22780
22781         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
22782         Change mapping between GIOCondition and GdkInputCondition
22783         to match the way the Linux kernel does it. This should
22784         fix problems where closed pipes were no longer signalling
22785         GDK_INPUT_READ on systems with a native poll().
22786
22787 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
22788
22789         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
22790         explicitly for the string "None" - it is in the XPM
22791         spec and some servers treat unknown colors in odd ways
22792         (like asking the user!)
22793
22794 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
22795
22796         * gdk/gdkevents.c: made "->" into a "." of previous change so
22797         it compiles
22798
22799 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
22800
22801         * gdk/gdkevents.c (gdk_compress_exposures): Set the
22802         window field of the event structure before calling
22803         user filters.
22804
22805 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
22806
22807         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
22808         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
22809
22810 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
22811
22812         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
22813         intermediate text property - prevents major memory
22814         leak when gdk_use_mb.
22815         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
22816
22817 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
22818
22819         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
22820         gtk-a-higuti-990322-[0-3]
22821
22822         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
22823         sizeof(wchar_t) != sizeof (GdkWChar)
22824
22825         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
22826         that was causing -DX_LOCALE not to work.
22827
22828         * gtk/gtkrc.c (gtk_rc_init):
22829         X_LOCALE will never have LC_MESSAGES defined
22830
22831         * gdk/gdk.c (gdk_init_check):
22832         Remove --xim-preedit and --xim-status from argv properly.
22833
22834         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
22835         that the client window is present on the X server
22836         before we pass it to the input method.
22837
22838 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
22839
22840         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
22841         if --display is specified on the command line, than
22842         the drag window will not be created on that display.
22843         
22844 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
22845
22846         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
22847         lookups with only_if_exists == TRUE were inserting
22848         bogus values into the atom cache.
22849
22850 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
22851
22852         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
22853         then reset it to NULL.
22854
22855         * gdk/gdkcolor.c:
22856         (gdk_colors_free): 
22857         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
22858         key for g_hash_table_remove() in both functions, this prevents us
22859         from accessing possibly uninitialized portions of a GdkColor structure
22860         where we are only interested in its pixel value.
22861
22862 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
22863
22864         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
22865         font hash table, if we have a GdkFontPrivate entry for this font
22866         already, simply increment its reference count, provided by Olaf Dietsche
22867         <olaf.dietsche+list.gtk@netcologne.de>.
22868
22869 1999-09-21  Tor Lillqvist  <tml@iki.fi>
22870
22871         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
22872         just to be sure.
22873
22874         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
22875         unused variables, leftovers from the X11 version.
22876
22877         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
22878
22879         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
22880         downcase fields on X11.
22881
22882 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
22883         
22884         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
22885         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
22886
22887 1999-09-17  Tor Lillqvist  <tml@iki.fi>
22888
22889         * gdk/win32/gdk.def: Add gdk_threads_mutex.
22890
22891         * gtk/makefile.msc: Correct path to libintl.
22892
22893         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
22894         use of gint vs. int, and gint vs. gboolean in headers and
22895         definitions. Use GtkType for the *_get_type functions. Note that
22896         these changes preserve binary compatibility.
22897
22898         * gdk/gdk.c
22899         * gdk/win32/gdk.c
22900         * gdk/gdk.h: Fix inconsistencies: gint vs int.
22901
22902         * gtk/gtkmain.c
22903         * gtk/gtkclist.c
22904         * gtk/gtkmenufactory.c
22905         * gtk/gtknotebook.c
22906         * gtk/gtkwidget.c: Fix inconsistencies, also gint
22907         vs. gboolean.
22908
22909         * gtk/gtkcolorsel.[ch]
22910         * gtk/gtkcombo.[ch]
22911         * gtk/gtkdrawingarea.[ch]
22912         * gtk/gtkgamma.[ch]
22913         * gtk/gtkhandlebox.[ch]
22914         * gtk/gtkhpaned.[ch]
22915         * gtk/gtkhruler.[ch]
22916         * gtk/gtkplug.[ch]
22917         * gtk/gtkpreview.[ch]
22918         * gtk/gtkruler.[ch]
22919         * gtk/gtksocket.[ch]
22920         * gtk/gtkstatusbar.[ch]
22921         * gtk/gtktoolbar.[ch]
22922         * gtk/gtkvbbox.[ch]
22923         * gtk/gtkvpaned.[ch]
22924         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
22925         functions.
22926
22927         * gtk/gtkgamma.h: Fix bug, missing () in call of
22928         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
22929
22930 1999-09-14  Tor Lillqvist  <tml@iki.fi>
22931
22932         * gdk/gdkcolor.c (gdk_colormap_new)
22933         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
22934         colormap->colors was allocated twice.
22935
22936         * gdk/win32/gdk.c: Remove some unused stuff.
22937
22938         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
22939         colormap.
22940
22941         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
22942         * gtk/gtklabel.h (gtk_label_get_type)
22943         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
22944         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
22945         in a couple of places, not guint.
22946
22947 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
22948
22949         * configure.in,po/et.po: added Estonian language file
22950
22951 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
22952
22953         * configure.in,po/da.po: added Danish file
22954
22955 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
22956
22957         * docs/gtkfaq.sgml: Minor FAQ Update
22958
22959 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
22960
22961         * docs/gtkfaq.sgml: FAQ update
22962
22963 1999-08-27  Tor Lillqvist  <tml@iki.fi>
22964
22965         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
22966         way to get window contents continually refreshed while resizing. I
22967         didn't like the effects myself, so it's not on by default.
22968
22969         * gdk/win32/gdkprivate.h: New flag variable
22970         gdk_event_func_from_window_proc, FALSE by default.
22971
22972         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
22973         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
22974         are passed --gdk-event-func-from-window-proc.
22975
22976         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
22977         and we have am event_func, call it instead of enqueing the event.
22978
22979 1999-08-23  Tor Lillqvist  <tml@iki.fi>
22980
22981         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
22982         Kelley: Set expose_count in GdkEventExposes correctly.
22983
22984         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
22985         MULTIPLE_WINDOW_CLASSES).
22986
22987         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
22988         for bug in NT, apparently NT *does* draw the end pixel, too, in
22989         LineTo with a one-pixel pen, so we don't have to do it ourselves.
22990
22991 1999-08-21  Tor Lillqvist  <tml@iki.fi>
22992
22993         Improvements by Hans Breuer: 
22994
22995         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
22996
22997         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
22998         CS_?REDRAW flags as they cause lots of (late) redraws when "show
22999         window contents while dragging" is turned on. Allocate at least
23000         one unique class for every GdkWindowType. If support for single
23001         window-specific icons is ever needed (eg. Dialog specific), every
23002         such window should get its own class.
23003
23004 1999-08-19  Tor Lillqvist  <tml@iki.fi>
23005
23006         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
23007         error that caused crashes.
23008
23009 1999-08-17  Tor Lillqvist  <tml@iki.fi>
23010
23011         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
23012         window, use ScrollWindowEx, and call UpdateWindow. This prevents
23013         bugs when for instance part of the window was outside the
23014         display. Thanks to Philippe Colantoni for finding and fixing this.
23015
23016 1999-08-16  Tor Lillqvist  <tml@iki.fi>
23017
23018         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
23019         endpoint calculations which were totally wrong. (A little RTFMing
23020         helps a lot ;-)
23021
23022         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
23023         from a separate directory, not from gettext, because of licensing
23024         issues (we want to use the LGPL version).
23025
23026         * README.win32: Mention the intl from glibc vs from gettext issue.
23027
23028 1999-08-13  Tor Lillqvist  <tml@iki.fi>
23029
23030         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
23031         in the key event handling: Now AltGr chars work again. Also,
23032         now Alt-digits are passed up as well as Control-digits.
23033         Pass keypad plus and minus as normal plus and minus.
23034
23035 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
23036
23037         * docs/gtkfaq.sgml: FAQ Update
23038
23039 1999-07-25  Tor Lillqvist  <tml@iki.fi>
23040
23041         * README.win32
23042         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
23043         the Wintab SDK.
23044
23045         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
23046         OK, but getting closer. Guard against bogus tilt data from Wacom
23047         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
23048         enable easier building without Wintab.
23049
23050         * gdk/win32/gdkinput.h
23051         * gdk/win32/gdkevents.c 
23052         * gdk/win32/gdkwindow.c: Minor changes related related to above.
23053         
23054         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
23055         code. As we have just one visual on Win32, no sense to have it in a
23056         table, and no need for the hash table.
23057
23058         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
23059         better on white background.
23060
23061 1999-07-21  Tor Lillqvist  <tml@iki.fi>
23062
23063         * README.win32: Update gcc build instructions. Mention gettext is
23064         GPL.
23065
23066         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
23067         supported cursor size with GetSystemMetrics.
23068
23069         * gdk/win32/gdkfont.c
23070         * gtk/gtkfontsel.c: Guard against some font weight and charset
23071         symbols being undefined (in mingw32 headers).
23072
23073         * gdk/win32/makefile.cygwin
23074         * gtk/makefile.cygwin
23075         * gtk/gtkthemes.c: No longer need to have differently named
23076         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
23077
23078 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
23079
23080         * docs/gtkfaq.sgml: Long awaited FAQ update.
23081
23082 1999-07-15  Tor Lillqvist  <tml@iki.fi>
23083
23084         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
23085         it. Obscure bit manipulation needed.
23086
23087         * gdk/win32/gdkevents.c: Logging.
23088         
23089         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
23090         style (file name include compiler name) for theme engines.
23091
23092 1999-07-13  Tor Lillqvist  <tml@iki.fi>
23093
23094         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
23095
23096         * gdk/win32/gdkevents.c: Fix long-standing bug in key
23097         events. The key.string wasn't zero-terminated, still we strdup'ed
23098         it in gdk_event_copy(). Synthesize crossing events for button
23099         events before possible propagation.
23100
23101         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
23102
23103         * gdk/win32/makefile.cygwin
23104         * gtk/makefile.cygwin: Use new DLL naming style for the
23105         GCC-compiled ones.
23106
23107         * gdk/win32/makefile.msc
23108         * gtk/makefile.msc: Cosmetics mostly.
23109
23110         * gtk/gtk.def: Add missing entry points.
23111
23112         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
23113
23114 1999-07-09  Tor Lillqvist  <tml@iki.fi>
23115
23116         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
23117         or height is zero. Don't print a warning if Pie or Arc fails, they
23118         always fail (?) for very narrow ellipses.
23119
23120         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
23121         the part or the destination window corresponding to source area
23122         outside of the source drawable's boundary.
23123
23124         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
23125         anything if less than two points.
23126
23127         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
23128         return NULL. Gtk cut-and-paste inside a single program works
23129         better this way. (It always gets the clipboard contents from
23130         Windows, not from its own copy, which is cleared anyway. I can't
23131         say I fully understand what happens... Emulating the X selection
23132         and property stuff is a bit of a mess.)
23133
23134         * gdk/win32/gdkevents.c
23135         * gdk/win32/gdkproperty.c: A bit more verbose logging.
23136
23137         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
23138         that never got deleted). Revamp gdk_region_shrink.
23139
23140         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
23141         after use.
23142
23143         * gtk/gtk.def: Add some missing entry points.
23144
23145         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
23146         component.
23147
23148 1999-07-04  Tor Lillqvist  <tml@iki.fi>
23149
23150         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
23151         Control-digits specially.
23152
23153 1999-07-03  Tor Lillqvist  <tml@iki.fi>
23154
23155         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
23156
23157 1999-06-28  Tor Lillqvist  <tml@iki.fi>
23158
23159         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
23160         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
23161         finding this.)
23162
23163 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
23164
23165         * gtk+.spec.in: Corrected some typos in files section.
23166         
23167 1999-06-15  Tor Lillqvist  <tml@iki.fi>
23168
23169         * README.win32: Mention using GNU gettext.
23170         * config.h.win32: Enable NLS stuff.
23171         * gtk/makefile.msc: Use GNU gettext.
23172         * gdk/win32/gdkdnd.c: Minor header reorg.
23173         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
23174         cosmetics.
23175         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
23176         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
23177
23178 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
23179
23180         * acinclude.m4
23181         * config.guess
23182         * config.status
23183         * ltconfig
23184         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
23185
23186 1999-05-30  Tor Lillqvist  <tml@iki.fi>
23187
23188         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
23189         SafeAdjustWindowRectEx. Don't override all calls to
23190         AdjustWindowRectEx by it, but use it only in two places: When
23191         creating a new top-level window and when moving a top-level
23192         window.
23193
23194         Use screen coordinate rectangle, not client rectangle, in
23195         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
23196         when we try to place a window so that the decoration (mainly,
23197         title bar) isn't visible.
23198
23199         These changes fix the bug that showed up for instance as the
23200         GIMP's saved top-level windows moving right and down (by an amount
23201         equal to the window decoration) for each session. This bug showed
23202         up also in testgtk's "Saved Position".
23203
23204         gdk_window_resize also redone a bit.
23205
23206 1999-05-25  Tor Lillqvist  <tml@iki.fi>
23207
23208         * gtk/testgtkrc: Add (commented out) Windows-style theme
23209         include line.
23210
23211         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
23212
23213 1999-05-18  Tor Lillqvist  <tml@iki.fi>
23214
23215         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
23216         gdkx.h to a gdk subdirectory, so that applications can include
23217         these with <gdk/*.h> without trouble.
23218
23219         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
23220         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
23221         have their bitmap destroyed.
23222
23223         * gdk/win32/gdk.def: Add gdk_root_parent.
23224
23225 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
23226
23227         * configure.in
23228           gtk-config.in
23229           ltconfig
23230           ltmain.sh     
23231           gtk/Makefile.am: changes to compile nicely (with xlib) 
23232           on BeOS
23233
23234 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
23235
23236         * acinclude.m4
23237         * config.guess
23238         * config.sub
23239         * ltconfig
23240         * ltmain.sh: upgrade to libtool 1.3
23241
23242 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
23243
23244         * gtk/gtkclist.c:
23245         * gtk/gtkctree.c: merges from gtk-1-2
23246
23247 1999-04-25  Tor Lillqvist  <tml@iki.fi>
23248
23249         Support added for building using a GNU toolchain on Win32,
23250         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
23251
23252         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
23253         * config.h.win32: Changes for gcc.
23254         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
23255         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
23256         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
23257         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
23258         Protect shl stuff unavaiilable with mingw32 headers.
23259         * gdk/win32/gdkevents.c: Fix typo.
23260         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
23261         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
23262         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
23263         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
23264         the mingw32 headers.
23265         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
23266         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
23267         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
23268         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
23269         Test for NATIVE_WIN32, not _MSC_VER.
23270         * gtk/gtkmain.c: No use warning about developer version on Win32,
23271         there aren't any non-developer versions anyhow.
23272         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
23273         * gtk/makefile.msc: Use pthread from another directory. Minor other
23274         changes. 
23275
23276 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
23277
23278         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
23279           default filter from the list
23280
23281 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
23282
23283         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
23284          when gtk_widget_grab_default() is called for a widget that
23285          is not within a GtkWindow.
23286
23287 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
23288
23289         * docs/gtk_tut.sgml, examples/clist.c: use a
23290           scrolled window in the clist example. Minor
23291           tutorial fixes.
23292
23293 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
23294
23295         * docs/gtk_tut.sgml: Style check from David King
23296           <dking@youvegotmail.net>
23297
23298 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
23299
23300         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
23301         compile with unknown value of GDK_WINDOWING
23302
23303 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
23304
23305         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
23306         after the rule is fired.
23307         (install-exec-local): Install gdkconfig.h only if the contents are
23308         different from the currently installed gdkconfig.h.
23309
23310 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
23311
23312         * gdk/Makefile.am (configexecincludedir): Rename from 
23313         configincludedir so that gdkconfig.h will be installed 
23314         as part of `make install-exec'. 
23315
23316 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
23317
23318         * acinclude.m4
23319         * config.guess
23320         * config.sub
23321         * ltconfig
23322         * ltmain.sh: upgrade to libtool 1.2f
23323
23324         * autogen.sh: libtool is not required to autogen gtk+
23325
23326         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
23327         needed)
23328
23329 1999-03-18  Tor Lillqvist  <tml@iki.fi>
23330
23331         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
23332         declaring gdk variables exported/imported from the DLL. New image
23333         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
23334         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
23335         GDK_DRAG_PROTO_OLE2.
23336
23337         * gdk/gdk.h: Merge in Win32 version: Two new functions,
23338         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
23339         declared only for the Win32 version, but could be in the X11
23340         version as well. (Needed for a Xlib-less gdk_imlib.)
23341         gdk_color_hash should have only one parameter. Declare
23342         gdk_threads_mutex with GDKVAR.
23343         
23344         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
23345         just one parameter.
23346
23347         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
23348         per pixel, not bits.
23349
23350         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
23351         Fetch bpp (which means bits-per-pixel here) from another place on
23352         Win32. Accept also depth==32 (which we might get on Win32) with
23353         bpp==32.
23354
23355         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
23356         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
23357         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
23358         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
23359         in the backend-dependent directory, not in the common gdk
23360         directory.
23361
23362         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
23363         headers.
23364
23365 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
23366
23367         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
23368         want to use the Gtk+ devel version (which is true, and yes - even i am
23369         currently working with the 1.2.x branch). so everyone reading this, you
23370         probably want to issue
23371         cvs checkout -r glib-1-2 glib
23372         and
23373         cvs checkout -r gtk-1-2 gtk+
23374         as your next two comands.
23375
23376 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
23377
23378         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
23379         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
23380
23381         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
23382         file. strongly deprecated the GTK_HAVE_* macros, we provide
23383         GTK_CHECK_VERSION() for people that need to check for certain
23384         Gtk+ versions.
23385
23386         * gtk/gtkcompat.h: removed this from CVS.
23387         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
23388         idea right from the start, it just didn't seem like that back then.
23389
23390 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
23391
23392         * merges from gtk-1-2:
23393
23394 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
23395
23396         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
23397         item factory class has been created.
23398         (gtk_item_factory_parse_rc): likewise.
23399
23400         * gtk/gtkmenu.c:
23401         keep proper references for old_active_menu_item.
23402         (gtk_menu_reparent): unset the usize of the new parent,
23403         so the menu can sanely be size requested and we don't get nasty screen
23404         artefacts upon next reparentation.
23405         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
23406         enter notify. only synthesize enter notifies if the pointer really is
23407         inside the event window.
23408         (gtk_menu_popdown): use gtk_menu_shell_deselect().
23409         (gtk_menu_popup): move the background setting stuff into
23410         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
23411
23412         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
23413         gtk_menu_shell_select_item() to select the new item.
23414         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
23415         do the right thing for deselection as well.
23416
23417 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
23418
23419         * gtk/gtkwidget.[hc]:
23420         (gtk_widget_accelerators_locked): return whether a widget's accelerators
23421         are locked.
23422
23423         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
23424         existing accelerators if the widget's accelerators are locked.
23425
23426 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
23427
23428         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
23429
23430         * gtk/gtkmenu.c: truely forward key press and key release events to
23431         the menu widget from the toplevel or tearoff window. we can't simply
23432         connect to that, we need to stop further processing of the events as
23433         well.
23434
23435 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
23436
23437         * gtk/gtkmenu.c:
23438         (gtk_menu_key_press): pass event->keyval, event->state to
23439         gtk_accelerator_valid, instead of event->keyval twice.
23440         refuse to install single letter accelerators for menus that use
23441         single letter shortcuts.
23442
23443         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
23444         gtk_menu_ensure_uline_accel_group().
23445
23446         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
23447         which will always return an uline accel group, made
23448         gtk_menu_get_uline_accel_group() return NULL if the group isn't
23449         yet created.
23450
23451 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
23452
23453         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
23454
23455         * gtk/gtkclist.c (gtk_clist_column_title_passive):
23456         Leave button sensitive, trap  button_press, button_release,
23457         motion_notify, enter_notify and leave_notify events instead.
23458         (gtk_clist_column_title_active): disconnect event handler.
23459         (gtk_clist_drag_data_get): fixed memory leak. Reported by
23460         Guillaume Laurent <glaurent@worldnet.fr>
23461
23462 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
23463
23464         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
23465         width/height mixups.
23466
23467         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
23468         if needed.
23469
23470 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
23471
23472         * gtk/testgtk.c (create_item_factory): unref the item factory after
23473         window's destruction.
23474
23475         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
23476         count on the menu shell around the menu item's activation, since the
23477         signal emission may cause menu shell destruction.
23478
23479         * gtk/gtkitemfactory.c:
23480         the previous code leaked one accel group per menu. we use
23481         gtk_menu_get_uline_accel_group() now to fix that, and with that
23482         also create the underline accelerator group of the menus only if
23483         required (i.e. an underline accelerator has been specified).
23484         (gtk_item_factory_construct):
23485         (gtk_item_factory_create_item): removed code that would create an
23486         extra accel group for the menu (and leak references).
23487         (gtk_item_factory_create_item): adapted the underline accelerator
23488         installation code to properly feature gtk_menu_get_uline_accel_group().
23489
23490         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
23491         menu->accel_group, this may return NULL if the accelerator group
23492         hasn't been set yet.
23493         added gtk_menu_get_uline_accel_group() to retrive the underline
23494         accelerator group of the menu, this will be created on demand
23495         and proper care is taken about its reference count.
23496
23497         * gtk/gtkitemfactory.h:
23498         * gtk/gtkitemfactory.c:
23499         dumped the approach of keeping a widgets by action list on the
23500         factory since the factory<->widget destroy negotiation didn't work
23501         and would be hard to get going at all. instead we keep a list of
23502         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
23503         persistant throughout a program's life time).
23504         also, i removed the static const gchar *key_* variables, and made
23505         them inline strings (they weren't actually used anyways).
23506         (gtk_item_factory_add_item): update ifactory->items.
23507         (gtk_item_factory_destroy): destroy ifactory->items (and remove
23508         the item factory pointer from the remaining ifactory widgets).
23509         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
23510         list to find the widget.
23511         (gtk_item_factory_get_item): new function that works around
23512         gtk_item_factory_get_widget() limitations, this function will only
23513         return menu items, even for <Branch> entries.
23514
23515 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
23516
23517         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
23518         font hash table, if we have a GdkFontPrivate entry for this font
23519         already, simply increment its reference count, provided by Olaf Dietsche
23520         <olaf.dietsche+list.gtk@netcologne.de>.
23521
23522         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
23523         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
23524
23525 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
23526
23527         * gtk/gtkcontainer.c:
23528         (gtk_container_add_with_args):
23529         (gtk_container_addv):
23530         (gtk_container_add): before adding a child to a conatiner, make sure
23531         it is (default) constructed, this is neccessary because under certain
23532         circumstances the child will get relized and mapped immediatedly, in
23533         which case it has to be constructed already.
23534
23535 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
23536
23537         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
23538         values > 1 as TRUE also.
23539
23540 1999-03-16  Tor Lillqvist  <tml@iki.fi>
23541
23542         * README.win32: New file.
23543                 
23544         * configure.in: Check for lstat.
23545
23546         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
23547         completeness.
23548
23549         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
23550
23551         * gtk/gtk.def: Removed CRs.
23552
23553         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
23554         ..\gdk\win32).
23555
23556         * gdk/win32/makefile.msc: Correct upwards relative paths.
23557         
23558 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
23559
23560         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
23561           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
23562           it was connecting a void function to expose_event and the int
23563           returning function to the draw signal
23564
23565 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
23566
23567         * configure.in:
23568         Use correct path to libgmodule.la when ref'ing uninstalled copy
23569         of glib.  (Already in stable branch, Bug #417)
23570
23571 1999-03-15  Tor Lillqvist  <tml@iki.fi>
23572
23573         Win32 merge and general portability stuff:
23574                 
23575         * acconfig.h,configure.in: Check for <sys/time.h>.
23576
23577         * gdk/win32: New directory (actually, been there for a while).
23578         
23579         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
23580         NATIVE_WIN32, and use these. Always case fold on Win32. No
23581         backslashed escapes on native Win32.
23582
23583         * gtk/{gtk.def,makefile.msc}: New files.
23584
23585         * gtk/Makefile.am: Add above new files.
23586         
23587         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
23588         instead of <strings.h>.
23589
23590         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
23591         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
23592         <unistd.h> appropriately.
23593
23594         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
23595         Use ABS() (from <glib.h>) instead of abs().
23596         
23597         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
23598         of gtk (and thus glib) headers, so that WIN32 will be
23599         defined. With MS C, include <direct.h> for mkdir prototype.
23600
23601         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
23602         some casts, needed by MS C.
23603
23604         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
23605         implemented).
23606
23607         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
23608         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
23609         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
23610
23611         * gtk/gtkmain.h: Mark variables for export/import on Win32.
23612                 
23613         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
23614         the event is not a hint, or its window is not the slider. Needed
23615         on Win32, at least.
23616
23617         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
23618         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
23619         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
23620         a subdirectory of the Windows directory as gtk system
23621         configuration directory.
23622
23623         * gtk/gtkselection.c: No chunks on Win32.
23624
23625         * gtk/gtksocket.c: Not implemented on Win32.
23626
23627         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
23628
23629         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
23630
23631         * gtk/maketypes.awk: Declare variables with a macro that expands to
23632         necessary export/import magic in the case of Win32.
23633                 
23634         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
23635
23636 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
23637
23638         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
23639         since those were meant only for gdki18n.h.  
23640         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
23641         for widechar tests.
23642         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
23643
23644 1999-03-13  Tor Lillqvist  <tml@iki.fi>
23645
23646         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
23647         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
23648
23649         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
23650         installed) to CFLAGS.
23651
23652         * gdk/Makefile.am: Add rules for gdkconfig.h.
23653
23654         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
23655         APIs.
23656
23657         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
23658         gdkx.h anyway when compiling for X11.
23659         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
23660         general): Merge in Win32 version.
23661         
23662         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
23663         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
23664         expansion (if we don't have HAVE_PWD_H), allow for drive
23665         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
23666         included code from Craig Setera's port to Win32 (the one that uses
23667         X11, and the cygwin dll), even if it probably will be abandoned.
23668
23669         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
23670         the user entered one herself.  This way one can complete *.h and
23671         don't get matches on any .help files, for instance.
23672         
23673 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
23674
23675         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
23676         font hash table, if we have a GdkFontPrivate entry for this font
23677         already, simply increment its reference count, provided by Olaf Dietsche
23678         <olaf.dietsche+list.gtk@netcologne.de>.
23679
23680         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
23681         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
23682
23683 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
23684
23685         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
23686         the number of calls to gdk_draw_point() (and thus to X) by
23687         clipping the points by hand.
23688
23689         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
23690         the clip parameter.
23691         (gtk_handle_box_paint): Only paint the handle if the expose area
23692         intersects it.
23693
23694 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
23695
23696         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
23697
23698 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
23699
23700         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
23701         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
23702
23703 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
23704
23705         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
23706          textmode (O_TEXT) for OS/2 version.
23707
23708 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
23709
23710         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
23711         GtkSpinButton, "input" and "output", to make the output more flexible.
23712         The user has to provide a mapping between adjustment->value and the
23713         output string (and vice versa, if the spin button is editable). 
23714         See testgtk for examples.
23715
23716 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
23717
23718         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
23719         new one.
23720         
23721         * configure.in: set gtk+ version to 1.3.0.