]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
New function to walk through a model in a depth first manner, with the
[~andy/gtk] / ChangeLog.pre-2-6
1 Fri Jun 29 00:13:34 2001  Jonathan Blandford  <jrb@redhat.com>
2
3         * gtk/gtktreemodel.c (gtk_tree_model_foreach): New function to
4         walk through a model in a depth first manner, with the option to
5         break out.
6
7 Fri Jun  8 18:52:10 2001  Jonathan Blandford  <jrb@redhat.com>
8
9         * gtk/gtktreeview.[hc]: Patch Thomas Broyer from
10         <tbroyer@ltgt.net>. Expander arrows are now attached to a specific
11         column and follow it when draged, rather than a location in the
12         view. "expander_column" property and drawing functions changed
13         accordingly.  Fixes bug #55942.
14
15         (gtk_tree_view_{set,get}_expander_column): Now works with a
16         GtkTreeViewColumn* instead of int.
17
18 Thu Jun 28 22:53:18 2001  Owen Taylor  <otaylor@redhat.com>
19
20         *  gdk/gdk.c gtk/gtktypeutils.c: Fix args to g_type_init(). 
21
22 2001-06-28  Havoc Pennington  <hp@pobox.com>
23
24         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
25         image data to the screen, using a server grab to avoid race
26         conditions.
27
28         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove 
29         check for NULL return from gtk_image_new_from_stock(), it never
30         returns NULL.
31         (gtk_item_factory_create_item): fix bug where we parsed the stock
32         ID as an inline pixbuf
33
34         * gtk/gtktext.c (gtk_text_key_press): numeric keypad support
35
36         * gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
37         support (should be using binding set here)
38
39         * gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
40         support (should be using binding set here)
41
42         * gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad 
43         support
44
45         * gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
46
47         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
48
49         * gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
50
51         * gtk/gtkimcontextsimple.c
52         (gtk_im_context_simple_filter_keypress): keypad
53
54         * gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad 
55
56         * gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
57
58         * gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
59
60         * gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
61         should be binding-setted)
62
63         * gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
64
65         * gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
66
67         * gtk/gtkcalendar.c: numeric keypad fixes
68
69         * gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
70         support
71
72         * gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
73         screwup
74
75         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha): 
76         clip the render area to the drawable's clip region in advance,
77         so we don't get data from the server that we don't need.
78
79         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
80         check return value of gdk_pixbuf_get_from_drawable(), fall back 
81         to bilevel alpha if we can't get the pixbuf to composite against.
82
83         * gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
84
85         * gdk/gdkimage.c (gdk_image_get_colormap): add
86         gdk_image_set_colormap, gdk_image_get_colormap
87
88         * gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
89         take a region of the image, instead of converting the entire
90         image.
91
92         * gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
93         keybinding signal. Add default bindings for it. Add default
94         handler for show_help that shows the tooltip for the widget.
95
96         * gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
97         "close" keybinding signal, remove key press handler.
98
99         * gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
100         it's not our usual practice to leave a deprecated function around
101         with a runtime warning, plus we don't want it to appear in docs,
102         plus if we make them yellow no one will want to change them
103         anyhow.
104
105 Thu Jun 28 23:53:31 2001  Tim Janik  <timj@gtk.org>
106
107         * gtk/gtkwidget.c (gtk_widget_hide): !GTK_OBJECT_DESTROYED() ->
108         GTK_WIDGET_REALIZE() for resize queueing.
109
110         * gtk/gtkmain.c (gtk_main_do_event): !GTK_OBJECT_DESTROYED() ->
111         GTK_WIDGET_REALIZE() for post event delivery destruction upon
112         GDK_DESTROY.
113         
114         * gtk/gtkwidget.c: added GtkWidget::event-after notification signal, to
115         sompensate for former (pre-2.0) connect_after() facility.
116         (gtk_widget_send_expose): 
117         (gtk_widget_event): assert the widget is realized, since event delivery
118         to non-realized widgets is essentially a bug. event handlers should
119         be able to unconditionally rely on widget->window (unless they
120         emit events on their own which can trigger widget destruction).
121         (gtk_widget_event_internal): removed old outdated GTK_OBJECT_DESTROYED()
122         logic. event delivery happens as follows:
123         a) emission of GtkWidget::event (RUN_LAST handler). returns was_handled.
124         b) if !was_handled in (a) and the widget is still realized, emit event-
125            specific signal (RUN_LAST handler). returns was_handled.
126         c) emission of GtkWidget::event-after for notification if the widget is
127            still realized (regardless of was_handled from previous stages, no
128            class handler). no return value.
129         d) was_handled gets passed on to caller, to determine further
130            propagation. if the widget got unrealized meanwhile, was_handled
131            is returned as TRUE.
132
133         * gdk/gdkevents.[hc]: added gdk_event_get_root_coords() and
134         gdk_event_get_coords().
135
136 Thu Jun 28 17:18:41 2001  Tim Janik  <timj@gtk.org>
137
138         * configure.in (GTK_MICRO_VERSION): up version to 1.3.7, interface
139         age 0, binary age 0. depend on glib 1.3.7.
140
141         * gtk/gtkcontainer.c: remove g_signal_handlers_disconnect_by_func() hack.
142
143         * gtk/gtkmenubar.c: same here.
144         
145         * gtk/gtkcontainer.c (gtk_container_focus_tab): fix param-spec retrival.
146
147         * gtk/gtkcolorsel.c (gtk_color_selection_init): fix connect_data() usage.
148
149         * gtk/gtkentry.c (gtk_entry_focus_in): same here.
150         
151         * gtk/gtkmenubar.c (add_to_window): likewise.
152         
153         * gtk/gtktextbtree.c: and here...
154         
155         * gtk/gtktextview.c (gtk_text_view_ensure_layout): same thing.
156         
157         * gtk/gtktoolbar.c (gtk_toolbar_init): once more.
158         
159         * gtk/gtktreemodel.c (connect_ref_callbacks): and another time.
160         
161         * gtk/gtktreeviewcolumn.c:
162         (_gtk_tree_view_column_set_tree_view): yet again.
163
164         * demos/gtk-demo/images.c (progressive_timeout): demonstrate
165         signal connections without g_signal_connect_data().
166         
167         * demos/gtk-demo/stock_browser.c (do_stock_browser): second
168         demo of the matter.
169         
170         * demos/testpixbuf.c (main): running out of equality phrases for the
171         ChangeLog, but had to adapt connections here as well.
172         
173         * demos/testanimation.c (progressive_timeout): and for the fun of it,
174         tackled this the same way.
175         
176         * tests/testtext.c (create_view): ok, it's becoming a pain at this
177         point, but had enough enery for one more fix.
178
179         * tests/testtreecolumns.c (main): stand up man, do your work!
180
181         * tests/testtreeview.c (set_columns_type): ok, this is the last file i
182         fix, either that's been all of it or CVS gtk is broken yet again.
183         
184 2001-06-29  James Henstridge  <james@daa.com.au>
185
186         The following changes correspond to bug #56812
187
188         * gdk/gdkinput.h, gdk/gdkevents.c (GDK_TYPE_DEVICE): register type
189         code for GdkDevice.
190
191         * gdk/gdkcursor.[ch] (GDK_TYPE_CURSOR): register type code for
192         GdkCursor.
193
194 2001-06-19  Havoc Pennington  <hp@pobox.com>
195
196         * gdk/x11/gdkwindow-x11.c (gdk_window_show_unraised): new function
197         for mapping a window without fooling with stacking order, but
198         updating the "withdrawn" flag
199
200         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Do event
201         filtering as soon as possible, moving move resize and wmspec_check
202         handling after the event filter.  Make default filter apply to all
203         events, not just those with no GdkWindow wrapped around the X
204         window. Fix a FIXME about how the window could be a pixmap using 
205         RTTI; this of course assumes GDK_IS_WINDOW() is optimized. 
206
207         Also, be robust against events not on a known GdkWindow.
208
209         * gdk/x11/gdkmain-x11.c (gdk_x11_grab_server,
210         gdk_x11_ungrab_server): export reference-counted server grabs, so
211         other people can grab server over a GDK function that also does
212         so.
213
214 Wed Jun 27 19:40:31 2001  Jonathan Blandford  <jrb@redhat.com>
215
216         * gtk/gtktreeviewcolumn.c
217         (gtk_tree_view_column_pack_start_cell_renderer): New function to
218         reflect that you can (hypothetically) pack cell renderers into a
219         column.
220         (gtk_tree_view_column_pack_end_cell_renderer): ditto.
221         (gtk_tree_view_column_cell_is_visible): Move more functionality to
222         the column.
223         (gtk_tree_view_column_cell_can_focus): Move more functionality to
224         the column.
225
226         * gtk/gtktreeview.c: Move to use new column-packing code.
227         (gtk_tree_view_real_expand_row): remove totally braindead code.
228         (gtk_tree_view_real_collapse_row): ditto.
229
230 2001-06-27  Kjartan Maraas  <kmaraas@gnome.org>
231
232         * gtk/gtktreeviewcolumn.c: Fix a typo.
233         
234 2001-06-26  Joel Becker  <jlbec@evilplan.org>
235
236         * gdk-pixbuf/gdk-pixbuf-csource.c: remove '#include "x"' line
237           at the end of the file
238
239 2001-06-26  Havoc Pennington  <hp@redhat.com>
240
241         * gtk/gtkwindow.c (gtk_window_set_policy): forgot a notification
242
243 2001-06-26  Havoc Pennington  <hp@redhat.com>
244
245         * gtk/gtkwindow.c (gtk_window_class_init): add "resizable"
246         property
247
248 Tue Jun 26 12:59:28 2001  Jonathan Blandford  <jrb@redhat.com>
249
250         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): fix
251         stupid missing statement
252
253         * gtk/gtktreeview.c (gtk_tree_view_set_destroy_count_func): New
254         private function for ATK.  It notifies you of how many _visible_
255         children are deleted when a node is deleted.  Should be used by
256         atk only.
257
258 Tue Jun 26 11:06:34 2001  Owen Taylor  <otaylor@redhat.com>
259
260         * gtk/gtkclist.c gtk/gtkentry.c gtk/gtkspinbutton.c:
261         Use new pango_context_get_metrics() to fix problems
262         with font lists in descriptions. (#56184, reported by
263         Jonas Borgström)
264
265 Tue Jun 26 10:04:30 2001  Tim Janik  <timj@gtk.org>
266
267         * gtk/gtkiconfactory.c:
268         * gtk/gtkitemfactory.c: use gdk_pixbuf_new_from_stream(). fixed up
269         item factory so inlined pixbufs actually work.
270
271 2001-06-25  Havoc Pennington  <hp@redhat.com>
272
273         * gtk/gtktreeviewcolumn.h, gtk/gtktreeviewcolumn.c:
274         s/RESIZEABLE/RESIZABLE/
275
276         * gtk/gtkwindow.c, gtk/gtkwindow.h: s/resizeable/resizable/
277
278 2001-06-25  Alexander Larsson  <alexl@redhat.com>
279
280         * configure.in:
281         Added --enable-fbmanager. This is some experimental code
282         that lets several GtkFB apps coordinate their access to the
283         framebuffer.
284         
285         * acconfig.h:
286         Added ENABLE_FB_MANAGER.
287
288         * gdk/linux-fb/Makefile.am:
289         Added gdkfbmanager and gdkfbswitch.
290
291         * gdk/linux-fb/gdkkeyboard-fb.c:
292         * gdk/linux-fb/gdkmouse-fb.c:
293         * gdk/linux-fb/gdkprivate-fb.h:
294         Split device init and open so that
295         they can be opened and closed while switched
296         away.
297
298         * gdk/linux-fb/gdkmain-fb.c:
299         Add the basic manager communication.
300
301         * gdk/linux-fb/gdkrender-fb.c:
302         Don't update to the shadow fb if we're
303         blocked by the fb manager.
304
305 Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
306
307         * docs/Changes-2.0.txt: Add note about child property
308         changes.
309
310 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
311
312         * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
313         drag-and-drop GTK_ICON_SIZE_DND (Default to 32x32)
314
315         * gtk/gtkdnd.c (gtk_drag_dest_set_target_list): Fix problem
316         with un'reffing wrong list reported by Jeff Franks.
317
318         * gtk/gtkdnd.[ch] (_gtk_drag_{source,}dest_handle_event): _prefix.
319
320         * gtk/gtkdnd.c (gtk_drag_set_icon_default): Use GTK_STOCK_DND
321         for the default icon. Remove inline XPM.
322
323         * gtk/gtkstock.h gtk/gtkiconfactory.c:
324         Add GTK_STOCK_DND GTK_STOCK_DND_MULTIPLE (Currently, stock_new
325         is used for GTK_STOCK_DND, but it is a bit too small.)
326
327         * gtk/stock-icons/stock_dnd_multiple.png
328         gtk/stock-icons/Makefile.am: New stock icon moved from gnome-libs.
329
330         * gtk/gtkdnd.c (gtk_drag_source_event_cb): Only return
331         TRUE when starting a drag. In other cases, we are
332         just observing. (#52995)
333
334         * gtk/gtkdnd.[ch] (gtk_drag_set_icon_{stock,pixbuf}): Add 
335         function to set the icon for a drag from a GdkPixbuf
336         or stock ID.
337
338         * gtk/gtkdnd.[ch] (gtk_drag_source_set_icon_{stock,pixbuf}): 
339         Likewise, for drag sources.
340
341         * gtk/gtkdnd.h: Deprecate gtk_drag_set_default_icon.
342         (Now should be done using the stock system.)
343
344 Sun Jun 24 12:06:47 2001  Owen Taylor  <otaylor@redhat.com>
345
346         * gtk/gtktextview.[ch] (gtk_text_view_set_text_window_size): 
347         Removed - didn't work and not particularly useful anyways
348         if it did. 
349
350 Sun Jun 24 11:29:35 2001  Owen Taylor  <otaylor@redhat.com>
351
352         * gdk/x11/gdkimage-x11.c (gdk_image_new): Fix stupid error
353         introduced last night that was making things decidedly not work.
354
355         * gtk/*.[ch]: Patch from Kristian Rietveld adding 80 getters
356         so that we have getter/setter pairing everywhere it makes
357         sense. (#55767)
358
359         * gtk/gtkradiobutton.[ch] gtk/gtktoolbar.c tests/testgtk.:
360         Rename gtk_radio_button_group to gtk_radio_button_get_group, add a
361         deprecated compat macro. (#55516)
362
363         * gtk/gtklabel.[ch]: Add functions
364         gtk_label_set/get_use_underline(), gtk_label_set/get_use_markup(),
365         gtk_label_set_label(), which mirror the property API for GtkLabel.
366         Make gtk_label_get_attributes() only reflect the attributes
367         set by gtk_label_set_attributes.
368
369         * gtk/gtknotebook.c (gtk_notebook_set_current_page) gtk/gtkcompat.h: Rename
370         from gtk_notebook_set_page().
371
372 Sat Jun 23 18:02:46 2001  Owen Taylor  <otaylor@redhat.com>
373
374         * configure.in: Fix tests for XShm.h.
375
376         * gdk/x11/gdkimage-x11.c: Cleanup error handling in
377         gdk_image_new() by use of goto, properly use g_object_unref().
378
379 Sat Jun 23 22:03:20 2001  Tim Janik  <timj@gtk.org>
380
381         * gdk/x11/gdkimage-x11.c (gdk_image_init): disabled g_free (image)
382         calls, as GdkImage is an object. these should be g_obejct_unref()
383         instead but that won't work because of the g_error() statement
384         in gdk_x11_image_destroy(). so for now, i did s/g_free/LEAK_IMAGE/
385         to spot these places.
386
387 Sat Jun 23 10:27:53 2001  Owen Taylor  <otaylor@redhat.com>
388
389         * modules/input/gtkimcontextxim.c: Fixup some problems with 
390         text length handling in error cases.
391
392         * gtk/gtkwidget.c (gtk_widget_size_allocate): Reorder
393         a bit to make test actually warn on attempt to allocation
394         a negative size. (#56101, Matthias Clasen)
395
396 Fri Jun 22 14:06:08 2001  Jonathan Blandford  <jrb@redhat.com>
397
398         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
399         noticed by Brian Cameron.
400         (gtk_tree_view_real_expand_row): Fix bug noticed by Brian
401         Cameron.
402
403 2001-06-22  Hans Breuer  <hans@breuer.org>
404
405         * gdk/gdk.def : updated externals
406
407         * gdk/win32/gdkdrawable-win32.c : corrected some casts
408         in GDK_NOTEs
409
410         * gdk/win32/gdkevents-win32.c : use _gdk_windowing_window_get_offsets
411         to translate coordinates to the internal > 16 bit system
412         Try to handle WM_WINDOWPOSCHANGED to get better performance for
413         when moving/resizing
414
415         * gdk/win32/gdkkeys-win32.c : implement gdk_keymap_get_default ()
416         and gdk_keymap_get_direction (). The latter is untested for
417         the RTL case
418
419         * gtk/gtk.def : updated externals
420
421         * gtk/gtkmain.c : gtk_get_default_language () should reurn the result
422         from pango_language_from_string (), not an already freed pointer
423
424         * gtk/stock-icons/stock_menu_sort_ascending.png : PNGs need to be 
425         binary (-kb) to be useable on windoze
426  
427 2001-06-21  Alexander Larsson  <alexl@redhat.com>
428
429         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description): 
430         Update to new PangoLanguage changes.
431         
432         * gtk/gtkwindow-decorate.c:
433         * gtk/gtkwindow.[ch]:
434         Added setting argument to gtk_window_set_has_frame ()
435         
436 Thu Jun 21 13:42:01 2001  Owen Taylor  <otaylor@redhat.com>
437
438         * gdk/x11/gdkkeys-x11.c (gdk_keymap_get_direction): Handle
439         the case without XKB properly.
440
441         * gtk/gtkrc.c (gtk_rc_set_default_files): Remove
442         unused gtk_rc_auto_parse variable.
443
444         * gtk/gtkrc.[ch] gtk/gtkstyle.c docs/Changes-2.0.txt:
445         Remove gtk_rc_set_image_loader(), gtk_rc_load_image(), no
446         longer needed with GdkPixbuf.
447
448         * gtk/gtkrc.c (_gtk_rc_init): Make private.
449
450 Fri Jun 15 16:26:12 2001  Owen Taylor  <otaylor@redhat.com>
451
452         * gtk/gtkentry.h: Mark deprecated functions with
453         GTK_DISABLE_DEPRECATED.
454
455 Mon Jun 11 18:15:16 2001  Owen Taylor  <otaylor@redhat.com>
456
457         * gdk/gdk.h: Add missing gdk_rectangle_get_type() prototype.
458
459         * gtk/gtk[hv]scale.c: Include math.h, stdlib.h
460
461         * gdk/gdkpango.h gtk/gtkclist.c gtk/gtkentry.c gtk/gtkmain.[ch]
462           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtktextbuffer.c
463           gtk/gtktextdisplay.c gtk/gtktextiter.[ch]
464           gtk/gtktextlayout.c gtk/gtktexttag.[ch] gtk/gtkwidget.c: Adapt
465           to recent changes in Pango.
466
467         * tests/testgtk.c: Set language tags with gtk_label_set_markup()
468           to test whether the basic engine honors them.
469
470 Thu Jun 21 02:13:40 2001  Tim Janik  <timj@gtk.org>
471
472         * gtk/gtkcontainer.[hc]: added gtk_container_child_set_property() and
473         gtk_container_child_get_property().
474
475 Wed Jun 20 19:19:15 2001  Jonathan Blandford  <jrb@redhat.com>
476
477         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): clean up
478         (gtk_tree_view_move_cursor_page_up_down): implement.
479
480 Wed Jun 20 05:32:05 2001  Tim Janik  <timj@gtk.org>
481
482         * gtk/gtkspinbutton.c: make maximum digits compile time configurable
483         via MAX_DIGITS and up to 20. 5 was just ridiculously small.
484         don't use automatic fixed size buffer for printf-ing floats, doubles
485         can expand to really _huge_ strings, use g_strdup_printf() instead.
486
487 Wed Jun 20 04:28:24 2001  Tim Janik  <timj@gtk.org>
488
489         * gtk/gtkrange.c (gtk_range_class_init): hum, "adjustment" was a
490         construct property in 1.2 and still needs to be.
491
492         * gtk/gtkwidget.c: "composite_child" is not a settable property.
493
494 Tue Jun 19 19:13:19 2001  Jonathan Blandford  <jrb@redhat.com>
495
496         * gtk/gtkliststore.c (gtk_list_store_clear): 
497         * gtk/gtktreestore.c (gtk_tree_store_clear): New functions to
498         clear a model.
499
500 Mon Jun 18 02:00:49 2001  Tim Janik  <timj@gtk.org>
501
502         * gtk/gtkwidget.c (gtk_widget_get_property): fix PROP_EVENTS.
503
504         * gtk/Makefile.am:
505         * gtk/gtk.h: disabled GtkPacker compilation.
506
507         * gtk/gtkarg.[hc], gtk/gtkargcollector.c: got rid of these.
508
509         * gtk/gtknotebook.c:
510         * gtk/gtktable.c:
511         * gtk/gtkbox.c: ported this over to child properties.
512
513         * gtk/gtksettings.c: fetch class properties via
514         g_object_class_list_properties().
515
516         * gtk/gtkcontainer.[hc]: implemented child properties, got rid of the
517         child arg interface. use gobjectnotifyqueue.c for child property
518         notification.
519
520         * gtk/gtkwidget.[hc]: provide necessary means for container child
521         properties, i.e. ::child_notify signal,
522         gtk_widget_freeze_child_notify(),
523         gtk_widget_child_notify(),
524         gtk_widget_thaw_child_notify().
525
526         * tests/testgtk.c: removed inferior property handling code, for
527         property editing, a generic module should be used, and GLE
528         coincidentally fullfills that purpose.
529
530         * docs/reference/Makefile.am: disabled gtk docs building, gtk-doc
531         needs to be adapted to g_object_class_list_properties() before this
532         builds again.
533
534 Mon Jun 18 20:06:10 2001  Jonathan Blandford  <jrb@redhat.com>
535
536         * gtk/gtktreeview.c (gtk_tree_view_row_expanded): New function to
537         test if a node is expanded.
538
539 Mon Jun 18 19:41:38 2001  Jonathan Blandford  <jrb@redhat.com>
540
541         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
542         where collapsing a selected row would result in the cursor/anchor
543         getting screwed up.
544
545 Fri Jun 15 18:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
546
547         * gtk/gtktreesortable.c (gtk_tree_sortable_set_sort_func): Rename
548         gtk_tree_sortable_sort_column_id_set_func.  It's much shorter now.
549         * gtk/gtktreeview.c (gtk_tree_view_sort_iter_changed): WOOO!!!
550         Now I can really reorder/sort all Store widgets.  treesorttest
551         seems to just work now.
552         * gtk/gtklistview.c (gtk_list_store_iter_changed): Whoops.
553         testtreesort worked through a big coincidence all this time.
554         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Nasty bug fix in nasty
555         code.
556         * tests/testtreecolumns.c: Big 'ol warning at the top letting
557         people know that this code should never ever ever be copied.
558
559 2001-06-15  Jonas Borgström  <jonas@codefactory.se>
560
561         * gtk/gtkwindow.h: Fixed a small typo, it should be
562         GTK_WINDOW_GROUP_GET_CLASS and not GTK_WINDOW_GET_CLASS
563         on line 134.
564
565 2001-06-14  Havoc Pennington  <hp@redhat.com>
566
567         Docs fixups, and:
568         
569         * gtk/gtkcompat.h: remove GTK_DISABLE_COMPAT_H, replace with
570         GTK_DISABLE_DEPRECATED
571
572 Thu Jun 14 19:21:27 2001  Jonathan Blandford  <jrb@redhat.com>
573
574         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Whoops.  Forgot
575         this a couple months ago.  Now GtkTreeStore sort of sorts.  I'll
576         finish it off tonight, though it basically works now when it's a
577         list.  Also, I have a sinking feeling neither GtkTreeStore or
578         GtkListStore actually resort when adding a new item.  I'll look
579         into it.
580
581 2001-06-14  Havoc Pennington  <hp@redhat.com>
582
583         * demos/gtk-demo/main.c (load_file): fix bug identified by
584         warnings I just added to gtktextbuffer
585
586 2001-06-14  Havoc Pennington  <hp@redhat.com>
587
588         * gtk/gtkwindow.c (window_group_cleanup_grabs): fix other typo
589
590         * gtk/gtkwidget.c (gtk_widget_propagate_state): fix typo
591
592         * gtk/gtktextbtree.c: don't leak node data all over the place.
593
594         * demos/gtk-demo/main.c (main): create fontify tags for the right
595         buffer
596
597         * gtk/gtktextbuffer.c, gtk/gtktexttagtable.c: enhance docs
598         to mention tags in the same table can't have the same name,
599         suggested by Skip Montanaro
600
601 2001-06-11  Havoc Pennington  <hp@redhat.com>
602
603         * gtk/gtktexttagtable.c (gtk_text_tag_table_add): improve warning 
604         for trying to add two tags with same name to the tag table
605
606         * demos/gtk-demo/main.c (main): fix colors ;-)
607
608 `Fri Jun  8 17:56:52 2001  Owen Taylor  <otaylor@redhat.com>
609
610         * gtk/gtkwindow.[ch] gtk/gtkmain.c: Add a GtkWindowGroup struct
611         that allows grouping together multiple windows so that grabs
612         within that set of windows only affect those windows.
613
614         * gtk/gtkmain.c gtk/gtkwidget.[ch]: Add a "grab_notify"
615         signal for notification when a widget becomes shadowed
616         by a grab or is no longer shadowed by a grab.
617
618         * gtk/gtkwidget.c (gtk_widget_propagate_state)
619           gtk/gtkmain.c: (gtk_widget_grab_add): Don't allow
620         insenstive widgets to maintain a grab.
621
622 2001-06-14  Alexander Larsson  <alexl@redhat.com>
623
624         * docs/README.linux-fb:
625         Add some example config files that can be used with the URW fonts.
626         
627         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init): 
628         Set up the color ramps for DirectColor mode.
629
630 2001-06-11  Havoc Pennington  <hp@redhat.com>
631
632         * Release 1.3.6
633          
634 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
635
636         * gdk/linux-fb/gdkwindow-fb.c:
637         Unify shaped window code and make it repaint the area that used
638         to be part of the shape, but isn't anymore.
639
640 2001-06-11  Havoc Pennington  <hp@redhat.com>
641
642         * NEWS: Updates
643
644         * configure.in (GTK_MINOR_VERSION): bump version to 1.3.6
645
646         * gtk/Makefile.am: glib_genmarshal already contains top_builddir
647         
648 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
649
650         * gdk/linux-fb/gdkdnd-fb.c (gdk_drag_status):
651         Don't pass on GDK_ACTION_DEFAULT. The Xdnd code
652         passes zero instead, so do we.
653         
654 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
655
656         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
657         Deep copy dash_list too.
658         (_gdk_fb_gc_new): Set default cap_style before
659         setting values.
660
661 2001-06-12  Alexander Larsson  <alla@lysator.liu.se>
662
663         * gdk/linux-fb/gdkkeyboard-fb.c (gdk_keymap_get_default,
664         gdk_keymap_get_direction): New functions.
665
666 Tue Jun 12 12:41:27 2001  Jonathan Blandford  <jrb@redhat.com>
667
668         * gtk/gtktreemodel.h (GTK_TREE_MODEL_LIST_ONLY): further justify
669         gtk_tree_model_get_flags by adding a second flag for atk.
670
671         * gtk/gtktreemodel.c: make cursor behavior interact better with
672         mouse presses.
673
674 Mon Jun 11 12:43:08 2001  Jonathan Blandford  <jrb@redhat.com>
675
676         * gtk/gtktreeview.c (gtk_tree_view_class_init): changed
677         expand_row/collapse_row to be 2 signals each -- test_expand_row
678         and row_expanded as well as test_collapse_row and row_collapsed.
679
680 2001-06-10  Anders Carlsson  <andersca@codefactory.se>
681
682         * demos/gtk-demo/stock_browser.c (do_stock_browser): Update
683         signal name to be changed instead of selection_changed.
684
685 2001-06-08  Havoc Pennington  <hp@redhat.com>
686
687         * gtk/gtkentry.c (gtk_entry_class_init): add read-only
688         "scroll_offset" property for notification when the layout offsets
689         may have changed
690         (gtk_entry_adjust_scroll): add notify for scroll_offset
691         (gtk_entry_layout_index_to_text_index): function to compensate for
692         preedit string when doing coordinate stuff on the entry's layout
693         (gtk_entry_text_index_to_layout_index): inverse function
694         (gtk_entry_get_layout_offsets): hook to get current position of
695         the layout      
696         (gtk_entry_get_layout): hook to get the layout itself.
697
698         * gtk/gtklabel.c (gtk_label_get_layout): new function
699
700 Fri Jun  8 19:49:29 2001  Jonathan Blandford  <jrb@redhat.com>
701
702         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): New
703         keybinding.
704         (gtk_tree_view_focus): Fix merge conflict.
705
706 Fri Jun  8 18:41:30 2001  Jonathan Blandford  <jrb@redhat.com>
707
708         * gtk/gtktreeview.c (gtk_tree_view_set_cursor): new function to
709         clean up cursor handling.
710
711 2001-06-08  Havoc Pennington  <hp@redhat.com>
712
713         * gtk/gtktextbuffer.c (gtk_text_buffer_get_start_iter): added this
714         function
715
716         * gtk/gtktextview.c (gtk_text_view_get_default_attributes): added
717         this function
718
719 2001-06-08  Alex Larsson  <alexl@redhat.com>
720
721         * gtk/gtkcompat.h.in:
722         Added compat macros for all old GTK_TYPE_GDK_xxx types.
723         Fixes bug #52892
724
725 2001-06-08  Havoc Pennington  <hp@redhat.com>
726         
727         * gtk/gtkhsv.h (struct _GtkHSVClass): had GtkContainerClass as
728         parent still
729
730 2001-06-08  Havoc Pennington  <hp@redhat.com>
731
732         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): geez,
733         don't call g_list funcs on GSList
734
735         * gtk/gtkwidget.c (gtk_widget_child_focus): replaces
736         gtk_container_focus(), since some widgets have focusable locations
737         which are not other widgets. These widgets should not have to be 
738         containers just to manage the focus. For example, GtkHSV is
739         currently a container for no good reason. Also, this cleans
740         up the "if (is_container && is_sensitive && is_drawable)
741         container_focus ()" mess in widget implementations.
742
743         * gtk/gtkcontainer.c (gtk_container_focus): deprecate this
744         function, and have it just call gtk_widget_child_focus().
745
746         * gtk/gtkhsv.c: derive from widget not container
747         
748         Throughout: fix to reflect GtkContainer::focus change
749         
750 Fri Jun  8 12:38:49 2001  Jonathan Blandford  <jrb@redhat.com>
751
752         * gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of
753         range.  Fix bug #55921
754
755         * gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug
756         (#55920).
757
758 Fri Jun  8 12:03:07 2001  Owen Taylor  <otaylor@redhat.com>
759
760         * gdk/gdkkeys.[ch]: Add a direction-changed signal,
761         and gdk_keymap_get_current_direction().
762
763         * gdk/x11/gdkevents-x11.c gdk/x11/gdkkeys-x11.c
764           gdk/x11/gdkmain-x11.c gdk/x11/gdkprivate-x11.h: Track
765         the current locked group, use it to set the keymap
766         direction.
767
768         * gtk/gtksettings.c: Add a new gtk-split-cursor setting
769         to determine whether we draw a split cursor or use
770         a jumping cursor based on the current direction.
771
772         * gtk/gtkentry.c gtk/gtktextview.c gtk/gtktextlayout.[ch]:
773         Obey the split cursor setting. 
774
775 Fri Jun  8 11:57:50 2001  Owen Taylor  <otaylor@redhat.com>
776
777         * gtk/gtkimmulticontext.c (activate_cb): Only activate
778         when toggling on, not when toggling off... (#55906)
779
780 Wed Jun  6 10:37:07 2001  Owen Taylor  <otaylor@redhat.com>
781
782         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): 
783         s/gdk_window_begin_paint/gdk_window_begin_paint_region/
784         in docs. (#55812, Vitaly Tishkov)
785
786 2001-06-08  Anders Carlsson  <andersca@codefactory.se>
787
788         * demos/gtk-demo/main.c (create_tree): Changed signal name from
789         selection_changed to changed in signal connection to GtkTreeSelection,
790         also used g_signal_connectc since GtkTreeSelection is now a GObject.
791
792 Thu Jun  7 18:25:42 2001  Jonathan Blandford  <jrb@redhat.com>
793
794         * gtk/gtktreeselection.c: Now it's a GObject instead of a
795         GtkObject.  The GtkTreeSelection::selection_changed signal is now
796         the GtkTreeSelection::changed signal.
797
798         * gtk/gtktreeview.c: Modified to deal with new GtkTreeSelection
799         object.
800
801         * tests/gtktree*.c: Modified to deal with new GtkTreeSelection
802         object.
803
804 2001-06-07  Havoc Pennington  <hp@redhat.com>
805
806         * gtk/Makefile.am: fix glib-mkenums and glib-genmarshal again
807
808 2001-06-07  Havoc Pennington  <hp@redhat.com>
809         
810         * gtk/Makefile.am: fixups for glib-mkenums and glib-genmarshal
811         (not tested yet because with absolute path to srcdir I can't build
812         atk, but it was broken anyway so this may help) 
813
814 2001-06-07  Havoc Pennington  <hp@redhat.com>
815
816         * configure.in: output m4macros/Makefile
817         
818 Wed Jun  6 21:59:16 2001  Jonathan Blandford  <jrb@redhat.com>
819
820         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): hook up arrow
821         buttons.  Fixes #55460 reported by matthiasc@poet.de.
822
823 Wed Jun  6 21:18:54 2001  Jonathan Blandford  <jrb@redhat.com>
824
825         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): centralize
826         expansion/collapsing so it only happens in one place.
827         (gtk_tree_view_real_expand_row): ditto.
828
829 2001-06-07  Havoc Pennington  <hp@redhat.com>
830
831         * tests/Makefile.am: add missing -I flag
832
833         * gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc.
834
835         * configure.in: use pkg-config to see if GModule is
836         supported; fix to properly turn on included loaders 
837         when GModule isn't supported; don't use AC_CHECK_LIB 
838         when libs are not installed yet
839
840         * autogen.sh: add support for AUTOGEN_SUBDIR_MODE
841
842         * Makefile.am (SUBDIRS): add m4macros subdir
843
844         * gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in
845         dependencies also.
846
847 Wed Jun  6 19:31:11 2001  Jonathan Blandford  <jrb@redhat.com>
848
849         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix silly bug
850         reported by "Padraig O'Briain" <Padraig.Obriain@Sun.COM>.
851
852 Wed Jun  6 20:01:38 2001  Jonathan Blandford  <jrb@redhat.com>
853
854         * gtk/gtktreeview.c
855         (gtk_tree_view_real_expand_collapse_cursor_row): Handle key
856         bindings to expand and collapse rows.
857         (gtk_tree_view_real_select_cursor_parent): New key binding.
858         (gtk_tree_view_real_toggle_cursor_row): New key binding.
859
860         * gtk/gtkmarshal.list: new
861         marshaller. (VOID__BOOLEAN_BOOLEAN_BOOLEAN)
862
863 2001-06-06  Havoc Pennington  <hp@redhat.com>
864
865         * gtk/gtkrange.c (gtk_range_class_init): add "inverted" property
866
867         * gtk/gtkscale.c (gtk_scale_class_init): Change Page Up and Page
868         Down to move visually rather than logically, since it confuses 
869         people. Add -/+ and Ctrl--/+ bindings for logical movement.
870
871 2001-06-06  Alex Larsson  <alexl@redhat.com>
872
873         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
874         Fix up error messages.
875
876 Wed Jun  6 10:34:42 2001  Owen Taylor  <otaylor@redhat.com>
877
878         * gtk/gtktooltips.h: Include gtkwidget.h 
879         (#55798, Karl Nelson)
880
881         * gdk/x11/gdkwindow-x11.c (utf8_is_latin1): 0xff is
882         a valid latin-1 character. (Marc Lehmann, #35467)
883
884         * gdk/x11/gdkwindow-x11.c: Fix minor typo in comment. 
885         (Marc Lehmann, #35467)
886         
887 2001-06-05  Alex Larsson  <alexl@redhat.com>
888
889         * demos/gtk-demo/appwindow.c (do_appwindow):
890         Don't swap the order of the args to gtk_widget_destroyed.
891
892         * tests/testgtk.c (destroy_properties):
893         Don't crash when the properties window is destroyed.
894
895         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock):
896         Use with_mnemonics to handle the case of stock items with
897         underscores in them.
898
899 2001-06-05  Havoc Pennington  <hp@redhat.com>
900
901         * gtk/gtktextiter.c (gtk_text_iter_order): rename from 
902         gtk_text_iter_reorder
903
904 2001-06-05  Havoc Pennington  <hp@redhat.com>
905
906         * gtk/gtktoolbar.c (gtk_toolbar_remove_space): new function
907
908 2001-06-05  Havoc Pennington  <hp@redhat.com>
909
910         * gtk/gtkspinbutton.c (gtk_spin_button_set_range): clamp the value 
911         to the range that was set
912
913         * gtk/gtkrange.c: add value_changed signal, primarily 
914         intended for use with GtkScale
915         (gtk_range_set_increments): new function
916         (gtk_range_set_range): new function with weird name
917         (gtk_range_set_value): new function
918         (gtk_range_get_value): new function
919
920         * gtk/gtkspinbutton.c (gtk_spin_button_get_value): rename 
921         from gtk_spin_button_get_value_as_float(). Compat #define
922         added for get_value_as_float.
923
924         * gtk/gtkhscale.c (gtk_hscale_new_with_range): new function
925
926         * gtk/gtkvscale.c (gtk_vscale_new_with_range): new function
927
928 Tue Jun  5 14:57:18 2001  Jonathan Blandford  <jrb@redhat.com>
929
930         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_size): Fix bug #55573
931
932 Mon Jun  4 12:41:25 2001  Owen Taylor  <otaylor@redhat.com>
933
934         * gtk/gtkwidget.h: Deprecate gtk_widget_set().
935
936         * tests/testgtk.c (create_tooltips): Remove usage of
937         gtk_widget_set().
938
939 2001-06-05  Havoc Pennington  <hp@redhat.com>
940
941         * gtk/gtkcolorsel.c: Use new mnemonic convenience functions
942
943         Applying patch from Jeff Franks, with function docs added.
944         
945         * gtk/gtkcheckbutton.c (gtk_check_button_new_with_mnemonic):
946         remove call to set_mnemonic_widget, change docs a bit.  
947
948         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_with_mnemonic):
949         new function
950
951         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_new_with_mnemonic):
952         new function
953
954         * gtk/gtkmenuitem.c (gtk_menu_item_new_with_mnemonic): new function
955
956         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic): new
957         function
958         (gtk_radio_button_new_with_mnemonic_from_widget): new function
959
960         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_new_with_mnemonic):
961         new function
962
963         * gtk/gtktogglebutton.c (gtk_toggle_button_new_with_mnemonic): new
964         function        
965
966         * gtk/gtklabel.c (gtk_label_new_with_mnemonic): Improve docs on 
967         auto-selection of mnemonic widget.
968
969 Mon Jun  4 15:05:24 2001  Jonathan Blandford  <jrb@redhat.com>
970
971         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_max_width):
972         Fix segfault found by Vitaly Tishkov <tvv@sparc.spb.su>.
973         (gtk_tree_view_column_set_min_width): ditto.
974
975 Tue Jun  5 11:04:06 2001  Owen Taylor  <otaylor@redhat.com>
976
977         * gdk/gdkpixmap.h (GDK_PIXMAP_GET_CLASS): 
978         s/GdkPixmapClass/GdkPixmapObjectClass/. (#51890, Jeff Franks)
979
980 Mon Jun  4 12:50:11 2001  Owen Taylor  <otaylor@redhat.com>
981
982         * gtk/gtkctree.c (gtk_ctree_insert_gnode): Add a missing
983         gtk_clist_thaw().
984
985 2001-06-04  Havoc Pennington  <hp@pobox.com>
986
987         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore 
988         releases for buttons 6, 7
989
990 2001-06-04  Havoc Pennington  <hp@redhat.com>
991
992         * gtk/gtkseparatormenuitem.h: Fix a search-and-replace screwup
993         (s/CHECK/SEPARATOR/ gone awry). Patch from Jeff Franks, bug
994         #55562
995
996 2001-06-04  Havoc Pennington  <hp@redhat.com>
997
998         * gtk/gtktextview.c (gtk_text_view_size_request): handle case
999         where text_view->layout == NULL by assuming its size is 0, 
1000         i.e. same as if we haven't done any reflow. Reported by 
1001         Hidetoshi Tajima #55448 
1002
1003 2001-06-04  Havoc Pennington  <hp@redhat.com>
1004
1005         * gdk/x11/gdkevents-x11.c (gdk_event_translate): support button 6
1006         and 7 for scroll left/right, from Thomas Broyer
1007
1008 2001-05-10  Havoc Pennington  <hp@redhat.com>
1009
1010         * gtk/gtksettings.c (gtk_settings_get_property): Handle case where
1011         we need to parse the xsetting as if it were an RC file string.
1012
1013         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): load initial
1014         value of palette from settings, not from static variable
1015
1016         * gdk/x11/gdkevents-x11.c: add color palette, toolbar mode to
1017         xsettings translation table
1018
1019         * gtk/gtktoolbar.c (gtk_toolbar_new): Remove arguments, because 
1020         hardcoding the toolbar style conflicts with new customizable 
1021         toolbar style philosophy
1022         (gtk_toolbar_class_init): add settings for default toolbar style;
1023         these are used unless the app specifically forces a toolbar style
1024
1025         * gtk/gtksettings.c (settings_install_property_parser): only
1026         return at the start if we warn and parser == NULL
1027
1028         * gtk/gtkcolorsel.c (gtk_color_selection_finalize): disconnect the
1029         palette changed handler so we don't notify dead color selections
1030
1031         * gtk/gtkstyle.c (gtk_default_draw_shadow): handle
1032         xthickness/ythickness of 0 or 1 properly 
1033         (gtk_default_draw_resize_grip): clear the background behind the
1034         resize grips, and align to bottom right if we square the 
1035         area to be drawn.
1036
1037         * gtk/gtkstatusbar.c (gtk_statusbar_init): set horizontal usize on 
1038         statusbar label to 1, so it doesn't make toplevels resize oddly
1039         (gtk_statusbar_size_request): add grip size to request
1040         (gtk_statusbar_size_allocate): hack so the hbox still works with 
1041         the grip size in the request
1042
1043         * gtk/gtktoolbar.c (gtk_toolbar_show_all): override to fix 
1044         bug where showing all on a toplevel makes the toolbar 
1045         button text appear despite the toolbar mode
1046
1047         * gtk/gtkmenubar.c: add internal padding style property
1048
1049         * gtk/gtktoolbar.c: Add internal padding style property; add
1050         shadow type style property
1051
1052         * gtk/gtkmenubar.c (gtk_menu_bar_paint): paint box with widget
1053         state; and put Container::border_width outside the frame
1054
1055         * gtk/gtktextview.c: don't draw focus rectangle if we're in
1056         interior focus mode, we just use blinking cursor
1057
1058 2001-06-04  Havoc Pennington  <hp@redhat.com>
1059
1060         * configure.in: Make gdk-pixbuf have same version number as GTK
1061
1062 2001-06-04  Havoc Pennington  <hp@redhat.com>
1063
1064         * gtk/gtkspinbutton.c: Get rid of stupid g_return_if_fail on 
1065         digits greater than 6. If there actually are limits (which there
1066         likely aren't), should clamp to them not warn.
1067         (gtk_spin_button_new_with_range): don't take log of 0
1068         (gtk_spin_button_size_request): use digits to compute size
1069         request, rather than step increment.
1070
1071         * tests/testgtk.c (create_spins): test larger values of digits
1072         
1073         * gtk/gtkfontsel.c (gtk_font_selection_init): scroll to selected
1074         font on map not expose, so we don't get weirdness during scrolling
1075
1076 2001-06-04  Havoc Pennington  <hp@redhat.com>
1077
1078         * gtk/gtkclist.c (vadjustment_value_changed): Apply fix from
1079         Sam Solon, bug #54577, update value even if not drawable.
1080
1081 2001-06-04  Havoc Pennington  <hp@redhat.com>
1082
1083         * gtk/gtkrange.c (gtk_range_scroll_event): change SCROLL_RIGHT to
1084         SCROLL_LEFT, reported by Thomas Broyer.
1085
1086 2001-06-04  Havoc Pennington  <hp@redhat.com>
1087
1088         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): 
1089         Process updates immediately, to prevent funny lag effect
1090         when scrolling, at some mild potential efficiency cost.
1091
1092 2001-06-04  Havoc Pennington  <hp@redhat.com>
1093
1094         * gtk/gtkrange.c (gtk_range_button_press): on middle click, center
1095         slider on the click.
1096
1097 2001-06-03  Havoc Pennington  <hp@pobox.com>
1098
1099         * gtk/gtkstyle.c (gtk_default_draw_slider): make this special-case
1100         hscale/vscale details, so we can use it for scrollbar as well.
1101
1102         * tests/testgtk.c (reformat_value): honor digits from GtkScale
1103
1104         * gtk/gtkenums.h (GtkTroughType): Remove this enum
1105         (GtkScrollType): add START and END from GtkTroughType
1106
1107         * gtk/gtkstyle.c (gtk_default_draw_slider): was not properly using
1108         its x/y arguments
1109
1110         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkscrollbar.h,
1111         gtk/gtkscrollbar.c, gtk/gtkscale.h, gtk/gtkscale.c,
1112         gtk/gtkhscrollbar.h, gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.h,
1113         gtk/gtkvscrollbar.c, gtk/gtkhscale.h, gtk/gtkhscale.c,
1114         gtk/gtkvscale.h, gtk/gtkvscale.c: Rewrite GtkRange and subclasses.
1115
1116         Notable changes in the process:
1117          
1118         - stepper_size style property is the height for vertical 
1119           ranges, width for horizontal; the other dimension matches
1120           the trough size
1121         - add ability to do NeXT-style steppers (and several other styles
1122           that don't make any sense)
1123         - added min_slider_length, fixed_slider_length properties to
1124           GtkScrollbar
1125         - cleaned some private (or at least useless) functions out of
1126           gtkscale.h    
1127         - moved bindings to GtkScale from subclasses, even arrow keys,
1128           since blind users don't know scale orientation.
1129         - change move_slider action signal to use new GtkScrollType,
1130           remove GtkTroughType argument
1131         - digits rounds the values a range will input to the given 
1132           number of decimals, but will not try to force adjustment 
1133           values set by other controllers. That is, we no longer
1134           modify adjustment->value inside a value_changed handler.
1135         - added getters for GtkScale setters
1136         - middle-click begins a slider drag
1137         
1138 Fri Jun  1 18:54:47 2001  Jonathan Blandford  <jrb@redhat.com>
1139
1140         * gtk/gtktreeview.c: (gtk_tree_view_focus): Initial stab at
1141         getting the focus code to work.
1142         (gtk_tree_view_class_init): Add a bunch of keybindings.
1143
1144         * gtk/gtktreeviewcolumn.c
1145         (gtk_tree_view_column_set_cell_data_func):
1146         s/GtkCellDataFunc/GtkTreeCellDataFunc.
1147         (_gtk_tree_view_column_set_tree_view): Use "notify::model" instead
1148         of "properties_changed" to help justify the death of the latter
1149         signal. (-:
1150
1151         * tests/testtreefocus.c (main): Let some columns be focussable to
1152         test focus better.
1153
1154 2001-06-01  Havoc Pennington  <hp@redhat.com>
1155
1156         * gtk/gtkentry.c (gtk_entry_commit_cb): implement overwrite mode
1157         
1158         * gtk/gtktextview.c (gtk_text_view_commit_handler): don't
1159         overwrite in overwrite mode if we already deleted the selection
1160         and replaced it with new text.  
1161
1162         * gtk/gtklabel.c (gtk_label_select_region_index): if you set the
1163         selection to an empty range, clear the clipboard if we owned it.
1164         (gtk_label_set_selectable): give up selection if we become
1165         unselectable.
1166         (gtk_label_state_changed): override state changed to unselect text
1167         when insensitive
1168         (get_text_callback): add paranoia check that indexes aren't
1169         outside of label->text
1170         (gtk_label_select_region): make -1 for start_offset mean "end of
1171         label," for consistency with GtkEditable
1172
1173         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): honor
1174         GTK_DIALOG_NO_SEPARATOR flag
1175
1176 Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
1177
1178         * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
1179         notifications on non-existant "enable_arrow_keys".
1180         (#53753, Skip Montanaro)
1181
1182 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
1183
1184         * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
1185         GDK_TYPE_RECTANGLE.
1186
1187         * gtk/gtkwidget.c (gtk_widget_class_init): Fix type
1188         of allocation argument be GDK_TYPE_RECTANGLE.
1189
1190 Thu May 31 12:43:57 2001  Owen Taylor  <otaylor@redhat.com>
1191
1192         * gtk/gtkoptionmenu.c: Account for the fact that the border
1193         width is _outside_ the window. (Fixes #54585, bug found
1194         by Bastien Nocera.)
1195
1196 Wed May 30 15:56:30 2001  Owen Taylor  <otaylor@redhat.com>
1197
1198         * gtk/gtksettings.c (gtk_settings_get_property): Validate
1199         value from GDK settings against parameter spec.
1200
1201         * gdk/x11/gdkevents-x11.c (gdk_setting_get): Add assignments
1202         to temporary values and use g_value_transform(), since
1203         thinking that GValue was going to be easy or efficient
1204         to use was, of course, a mistake.
1205
1206         * gtk/gtksettings.c: Add cursor blink setting.
1207         
1208         * gdk/x11/gdkevents-x11.c: Add cursor blink X settings.
1209
1210         * gtk/gtkentry.c: Add cursor blinking.
1211
1212         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): Use
1213         cursor blink global settings.
1214
1215         * gtk/gtkentry.c (gtk_entry_button_press): Add notification
1216         for :text_position in places where it is missing.
1217
1218 Tue May 29 18:17:11 2001  Owen Taylor  <otaylor@redhat.com>
1219
1220         * autogen.sh (have_libtool): Fix GNU sedism (#55430)
1221
1222 Tue May 29 17:40:29 2001  Owen Taylor  <otaylor@redhat.com>
1223
1224         * configure.in (GTK_DEP_CFLAGS): Use $PKG_CONFIG,
1225         not pkg-config. (#51032)
1226
1227         * gdk/gdkproperty.h: Remove inappropriate G_GNUC_CONST
1228         (fixes #51952, James Henstridge)
1229         
1230 2001-05-27  Alexander Larsson  <alla@lysator.liu.se>
1231
1232         * gtk/gtkstock.h (GTK_STOCK_GO_UP):
1233         Rename to the more correct gtk-go-up.
1234
1235         * gtk/stock-icons/stock_menu_sort_ascending.png:
1236         Added new file.
1237         
1238         * gtk/stock-icons/stock_menu_sort_descending.png:
1239         Changed to show descending instead of ascending.
1240
1241         * gtk/gtkiconfactory.c:
1242         Added menu size icon to sort ascending.
1243
1244         * gtk/stock-icons/Makefile.am:
1245         Added stock_menu_sort_ascending.png.
1246         
1247         * gtk/gtkseparatormenuitem.c:
1248         Use correct typenames.
1249
1250 Sun May 20 20:07:35 2001  Tim Janik  <timj@gtk.org>
1251
1252         * gtk/gtksignal.[hc] (gtk_signal_connect_full): make hanlder id a
1253         gulong as in GSignal.
1254
1255 Fri May 25 19:04:17 2001  Jonathan Blandford  <jrb@redhat.com>
1256
1257         * gtk/gtktreeview.c (gtk_tree_view_calc_size): Remove almost all
1258         instances of GtkCellRenderer in code (all but dnd icon code).
1259         Virtualized in GtkTreeViewColumn.  Now I need to move focus in
1260         there, and I can do multiple Cells per column.
1261
1262         * gtk/gtktreeviewcolumn.c: Proxy all cell calls correctly
1263
1264         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): fix bug
1265         when model was unreffed prior to removing the row reference.
1266
1267 2001-05-25  Havoc Pennington  <hp@redhat.com>
1268
1269         * gtk/gtkiconfactory.c: fix so that default icons are created if 
1270         you call gtk_stock_list_ids()
1271
1272         * demos/gtk-demo/stock_browser.c (create_model): sort stock items
1273         in list
1274
1275 2001-05-25  Havoc Pennington  <hp@redhat.com>
1276
1277         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): get sizes an icon
1278         set can render without falling back to missing image icon
1279
1280         * gtk/gtktextview.c (gtk_text_view_size_request): request full
1281         size of text, instead of random values
1282
1283         * gtk/gtktreeview.c (gtk_tree_view_size_request): request full
1284         size of tree view, instead of random values
1285
1286         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): render fallback
1287         image in an appropriate size
1288
1289         * gtk/gtkstock.h: Rename the stock items including _BUTTON_,
1290         etc. not to include that. i.e. s/GTK_STOCK_BUTTON_OK/GTK_STOCK_OK/
1291
1292         Throughout: fix GTK_STOCK_BUTTON_ instances
1293         
1294         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
1295         gtk/gtkiconfactory.c, gtk/stock-icons/Makefile.am:
1296         Add a bunch of new stock items/icons
1297
1298         * gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
1299         new function, convenience for inserting columns with a data func
1300
1301         * gtk/gtkiconfactory.c: keep a list of all existing icon factories
1302         (_gtk_icon_factory_list_ids): use list of all factories to
1303         generate a list of all known IDs
1304
1305         * gtk/gtkstock.c (gtk_stock_list_ids): replace
1306         gtk_stock_list_items() with a function that returns all IDs known
1307         including those for GtkIconFactory.
1308
1309 2001-05-25  Hans Breuer  <hans@breuer.org>
1310
1311         * gdk/win32/gdkgc-win32.c : made fil mode GDK_STIPPLED actually
1312         work -> check boxes and radio buttons are drawn now, even on win9x.
1313         Improved line settings a bit, still no clue how to get really dotted
1314         lines on win9x, on NT it's PS_ALTERNATE.
1315
1316         * gdk/win32/gdkwindow-win32.c : use SafeAdjustWindowRect for 
1317         GDK_HINT_MIN_SIZE as well
1318
1319         * gdk/win32/makefile.am : added gdkkeys-win32.c to EXTRA_DIST
1320
1321         * gtk/gtk.def : updated
1322
1323         * gtk/gtktreeprivate.h : change column_drop_func to be a function
1324         pointer not a function pointer pointer
1325
1326         * tests/testdnd.c : include <stdlib.h> for putenv prototype
1327
1328         * tests/testsocket.c : made it compile on win32 again
1329
1330         * tests/makefile.msc : one more test-app uses prop-editor.obj
1331
1332 2001-05-22  Havoc Pennington  <hp@pobox.com>
1333
1334         * gtk/gtkbin.c (gtk_bin_get_child): New function
1335
1336 Wed May 23 20:07:53 2001  Owen Taylor  <otaylor@redhat.com>
1337
1338         * gtk/gtkimcontextsimple.c: Add Mode_Switch to list of keys
1339         to ignore when doing compose processing.
1340
1341 2001-05-22  Joe Shaw  <joe@ximian.com>
1342
1343         * gtk/gtktextiter.c (_gtk_text_btree_get_iter_at_last_toggle): 
1344         Simplify as suggested by Havoc. Just get the last iter and work
1345         backward to the tag instead of getting a line and working back from
1346         there. Fixes passing in an invalid offset to
1347         iter_init_from_byte_offset().
1348
1349 Tue May 22 16:25:27 2001  Jonathan Blandford  <jrb@redhat.com>
1350
1351         * gtk/gtktreeview*.h: 
1352         * gtk/gtkcell*.h:
1353         * gtk/gtk*store.h:
1354         Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS
1355         macros to all objects.
1356
1357 Tue May 22 15:13:52 2001  Jonathan Blandford  <jrb@redhat.com>
1358
1359         * gtk/gtkcellrenderertext.c
1360         (gtk_cell_renderer_text_set_fixed_size): Evil function to deal
1361         with very large (TM) amounts of text.  May be moved to
1362         GtkCellRenderer in the future, though I'm not sure it wants to be
1363         this accessible.
1364
1365         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
1366         More sanity brought to this class.  I like it.
1367
1368         * tests/testtreecolumns.c (ViewColumnModel): Amazingly scary test
1369         case.  Kids, don't try this at home.
1370
1371         * gtk/gtktreemodel.c (gtk_tree_model_get_iter_root): new
1372         convenience function.
1373
1374         * gtk/gtkwindow.c (gtk_window_set_geometry_hints): Fix typo in docs.
1375
1376 2001-05-21  Alexander Larsson  <alexl@redhat.com>
1377
1378         * gtk/gtkfontsel.c:
1379         Added properties. Based on patch by Lee Mallabone.
1380
1381         * gtk/gtkruler.c:
1382         * gtk/gtkhruler.c:
1383         * gtk/gtkvruler.c:
1384         * gtk/gtktext.c:
1385         * gtk/gtktextview.c:
1386         Converted GtkArg to GParam. Based on patches by John Margaglione.
1387
1388         * tests/Makefile.am:
1389         * tests/testtext.c:
1390         Add a property editor to testtext.
1391         
1392 Mon May 21 11:29:21 2001  Owen Taylor  <otaylor@redhat.com>
1393
1394         * gtk/gtk{h,v,}paned.c: Only show the separator if 
1395
1396         * configure.in: Fixed reversed conditional causing all image
1397         libraries to be linked in.
1398
1399 2001-05-21  Joe Shaw  <joe@ximian.com>
1400
1401         * gtk/gtklayout.c (gtk_text_layout_get_lines): Remove the assertion
1402         that top_y needs to be >= 0.
1403
1404 2001-05-11  Havoc Pennington  <hp@pobox.com>
1405         
1406         * gdk/x11/gdkmain-x11.c: Improve error messages for X errors and
1407         losing connection to the X server.
1408
1409 Sun May 20 13:59:20 2001  Owen Taylor  <otaylor@redhat.com>
1410
1411         * configure.in: Start checks for X from pangox/pangoxft
1412         CFLAGS to avoid duplicate libraries.
1413
1414         * gdk/Makefile.am (LDFLAGS): Remove extra -lm.
1415
1416         * configure.in (GDK_PIXBUF_PACKAGES): Fix GDK_PIXBUF_PACKAGES
1417         to include gobject.
1418         
1419 2001-05-18  Alexander Larsson  <alexl@redhat.com>
1420
1421         * gtk/gtkspinbutton.c:
1422         Convert GtkArgs to GParams. Based on patch by John Margaglione.
1423         Also do size request reasonable for MAXDOUBLE. Previously it printed
1424         the limits to a buffer and overran it. Instead do it using log10() and
1425         limit the width to 10 digits.
1426         
1427         * gtk/gtkwidget.c (gtk_widget_get_property):
1428         Correctly handle setting the parent property to NULL.
1429
1430 Fri May 18 15:26:26 2001  Owen Taylor  <otaylor@redhat.com>
1431
1432         * gtk/gtktextview.c (gtk_text_view_style_set): Reset 
1433         style attributes even if the widget isn't realized.
1434
1435         * demos/gtk-demo/main.c: Use a slightly smaller font.
1436
1437 Fri May 18 14:25:20 2001  Owen Taylor  <otaylor@redhat.com>
1438
1439         * gtk/gtkcontainer.c: Remove reallocate-redraws property.
1440         This is something that only a widget writer would ever want
1441         to change.
1442
1443         * gtk/gtksignal.c: Handle G_SIGNAL_TYPE_STATIC_SCOPE for
1444         gtk_signal_emit_by_name().
1445
1446         * gtk/gtkviewport.c: Fix some warnings.
1447
1448         * gtk/gtkwidget.c gtk/gtksizegroup.c: Add "size group" facility
1449         allowing the requisitions of multiple widgets to be grouped
1450         together.
1451
1452         * tests/testgtk.c: Add GtkSizeGroup test
1453
1454         * demos/gtk-demo/sizegroup.c: Add GtkSizeGroup demo.
1455
1456         * demos/gtk-demo/main.c demos/gtk-demo/pixbufs.c: Fix some
1457         warnings.
1458
1459         * configure.in: Switch to using AM_GLIB_GNU_GETTEXT.
1460
1461 2001-04-28  Martin Baulig  <baulig@suse.de>
1462
1463         * gtk/gtkimagemenuitem.[ch]: Renamed gtk_image_menu_item_add_icon()
1464         to gtk_image_menu_item_set_icon() and made it work if there's already
1465         an image.
1466         (gtk_image_menu_item_new): This function doesn't take any arguments anymore.
1467         (gtk_image_menu_item_new_with_label): New function.
1468
1469 Thu May 17 16:20:04 2001  Jonathan Blandford  <jrb@redhat.com>
1470
1471         * demos/gtk-demo/main.c (fontify): It's the worlds ugliest
1472         highlighting code!!!!  The result is okay so long as you don't try
1473         to stress it.  It also highlights a bug in the TextView so it's in
1474         an unproportional font right now until it's fixed.
1475
1476         *demos/gtk-demo/*.c: Clean up code a bit to make it
1477         ugly-parser(TM) friendly. (-:
1478
1479 2001-05-17  Joe Shaw  <joe@ximian.com>
1480
1481         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove the assertions
1482         that x_offset and y_offset must be >= 0. Clip the cursor being drawn
1483         if it is only partially onscreen.
1484
1485 Thu May 17 17:10:13 2001  Owen Taylor  <otaylor@redhat.com>
1486
1487         * gtk/gtkentry.c: Make logical motion and deletion by graphemes, 
1488         not by characters.
1489
1490         * gtk/gtkentry.c: Handle "trailing" returns from Pango when they
1491         are not zero or one; that is, when graphemes of multiple characters
1492         are involved.
1493
1494         * gtk/gtktextlayout.c (line_display_index_to_iter): Remove unnecessary
1495         FIXME.
1496
1497 2001-05-17  Alexander Larsson  <alla@lysator.liu.se>
1498         
1499         * gtk/gtkbbox.c:
1500         Add properties, based on patch by Lee Mallabone.
1501
1502         * gtk/gtknotebook.c:
1503         * gtk/gtktoolbar.c:
1504         Convert from GtkArg to GParam, based on patch by John Margaglione.
1505         
1506         * gtk/gtkhscale.c:
1507         * gtk/gtkvscale.c:
1508         * gtk/gtkhscrollbar.c:
1509         * gtk/gtkvscrollbar.c:
1510         * gtk/gtkrange.c:
1511         Move adjustment property to GtkRange.
1512
1513         * gtk/gtklabel.c:
1514         Setup mnemonics on property changes
1515
1516         * gtk/gtkwidget.c (gtk_widget_get_property):
1517         GdkExtensionMode is an enum, not a flag. Set it with
1518         g_value_set_enum ().
1519
1520         * tests/prop-editor.c:
1521         Better propery editor.
1522
1523         * tests/testgtk.c:
1524         Add new property test. Pass zero to the property editor to
1525         get properties from all derived types.
1526         
1527 Sun May 13 12:01:12 2001  Owen Taylor  <otaylor@redhat.com>
1528
1529         * autogen.sh (have_automake): Require libtool-1.4,
1530         automake-1.4p1.
1531
1532         * acinclude.m4: Remove libtool macros.
1533
1534         * gdk-pixbuf/Makefile.am: Add dependencies to loade
1535         modules.
1536
1537         * gdk/Makefile.am: Add dependency on libgdk_pixbuf.la
1538         for libgdk.
1539
1540         * gtk/Makefile.am: Add dependency on libgdk_pixbuf.la
1541         libgdk.la for libgtk.
1542
1543         * modules/input/Makefile.am: Make modules have full
1544         dependencies.
1545
1546 Wed May 16 14:06:01 2001  Jonathan Blandford  <jrb@redhat.com>
1547
1548         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): fix bug
1549         #54699 where paths weren't being checked for correctness.
1550
1551 Tue May 15 20:13:24 2001  Jonathan Blandford  <jrb@redhat.com>
1552
1553         * gtk/gtktreeviewcolumn.c: You can now set all sorts of properties
1554         in any order you wan, whether or not the column is added to the
1555         tree, or the tree is realized.  Yay!
1556
1557         * gtk/gtktreeviewcolumn.c
1558         (gtk_tree_view_column_setup_sort_column_id_callback): handle
1559         sorting columns a lot saner
1560
1561         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_reorderable):
1562         new function to actually set wether or not a column is
1563         reorderable.
1564
1565         * gtk/gtktreeview.c (gtk_tree_view_unrealize): Only destroy things
1566         if we have 'em.
1567
1568         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_set_tree_view):
1569         Fix nasty bug where we were showing the button just before
1570         realizing it.  As a result, the parent window was
1571         tree_view->window instead of tree_view->priv->header_window.
1572
1573         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable): new property
1574         to let you easily reorder a list or tree.
1575
1576 2001-05-15  Alexander Larsson  <alla@lysator.liu.se>
1577
1578         * gtk/gtkpacker.c: Apply patch from John Margaglione that converts
1579         from args to properties.
1580
1581 Tue May 15 10:11:59 2001  Owen Taylor  <otaylor@redhat.com>
1582
1583         * gtk/gtkpreview.c: Apply patch from John Margaglione converting
1584         from args to properties. (#51957)
1585
1586         * gtk/gtkscale.c (gtk_scale_class_init): Move install property
1587         calls to after ->set_property call.
1588
1589 Mon May 14 14:56:21 2001  Owen Taylor  <otaylor@redhat.com>
1590
1591         * tests/prop-editor.c: Block against redundant changes.
1592
1593         * gtk/gtkpaned.c gtk/gtk[hv]paned.c: Add position, position_set
1594         properties.
1595
1596 Sun May 13 18:40:04 2001  Owen Taylor  <otaylor@redhat.com>
1597
1598         * gdk/gdkpixmap.h: Remove creative formatting.
1599
1600 Thu May 10 19:22:28 2001  Owen Taylor  <otaylor@redhat.com>
1601
1602         * gtk/gtktogglebutton.c:  Patch from John Margaglione converting to
1603         property API. (#51669)
1604
1605         * gtk/gtkscale.c: Patch from John Margaglione converting to
1606         property API. (#51891)
1607
1608         * gtk/gtkaccellabel.c: Applied patch from Lee Mallabone, converting
1609         to property API. (#50985)
1610
1611 Fri May 11 20:13:44 2001  Tim Janik  <timj@gtk.org>
1612
1613         * gtk/gtkmain.c (gtk_main_do_event): remember widget's double
1614         buffering state across expose event, so we still call end_paint().
1615
1616 2001-05-11  Alexander Larsson  <alexl@redhat.com>
1617
1618         * gtk/gtkhsv.c (paint_triangle):
1619         Expose the ring in the triangle at the correct place when
1620         exposing just a part of the triangle.
1621
1622         * gtk/gtkwindow-decorate.c (gtk_decorated_window_focus_change):
1623         Return FALSE, or window focusing will not work.
1624
1625 2001-05-11  Havoc Pennington  <hp@pobox.com>
1626
1627         * gtk/gtkimage.c (gtk_image_new_from_stock): docs, fixes bug
1628         #54144
1629
1630         * gtk/gtkcolorsel.c (gtk_color_selection_new): docs, fixes
1631         bug #54330
1632
1633 Fri May 11 02:53:57 2001  Tim Janik  <timj@gtk.org>
1634
1635         * gtk/gtktogglebutton.c (gtk_toggle_button_expose): don't
1636         propagate exposes to NULL child.
1637
1638         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed): guard
1639         against not having one of the scrollbars.
1640
1641         * gtk/gtklabel.c (gtk_label_setup_mnemonic): clean up after us,
1642         we don't keep a mnemonic window if we have no mnemonic installed.
1643
1644 Fri May 11 01:05:00 2001  Tim Janik  <timj@gtk.org>
1645
1646         * gtk/gtktypeutils.h: grum, gtk_type_class() is not GNUC_CONST
1647         it has the _important_ side effect of initializing a class.
1648
1649 2001-05-10  Alexander Larsson  <alexl@redhat.com>
1650
1651         * gdk/linux-fb/gdkprivate-fb.h:
1652         Make sure you can compile out the implementation/wrapper assert
1653         macros.
1654
1655         * gdk/linux-fb/gdkdrawable-fb2.c:
1656         Check implementation/wrappers, initialize type for pixmap dummys.
1657
1658         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
1659         Hide the cursor if reading from the screen.
1660
1661         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
1662         Fix sign bug in tiling code.
1663
1664         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
1665         Handle background pixmaps.
1666
1667 Wed May  9 15:27:22 2001  Jonathan Blandford  <jrb@redhat.com>
1668
1669         * gtk/gtktreeview.c (gtk_tree_view_set_column_drag_function): New
1670         function to let user control where columns are dragged.
1671
1672         * gtk/gtktreeview.c (gtk_tree_view_key_press): Cancel drags if
1673         Escape is pressed.
1674
1675 Wed May  9 09:08:44 2001  Jonathan Blandford  <jrb@redhat.com>
1676
1677         * gtk/gtktreeview.c (gtk_tree_view_class_init): New
1678         "columns_changed" signal.
1679         (gtk_tree_view_motion_draw_column_motion_arrow): Change column
1680         motion code to draw arrows to the side if indicator is outside the
1681         widget.
1682         (gtk_tree_view_map_expanded_rows): Implement.
1683
1684 2001-05-07  Alexander Larsson  <alexl@redhat.com>
1685
1686         * demos/testpixbuf-save.c: 
1687         * demos/testpixbuf-drawable.c:
1688         Include gdkfb.h on linux-fb.
1689
1690 2001-05-07  Alexander Larsson  <alexl@redhat.com>
1691
1692         * gdk/linux-fb/gdkdnd-fb.c (get_toplevel_window_at):
1693         New function for getting toplevel window at position.
1694         (gdk_drag_find_window): Use get_toplevel_window () instead
1695         of gdk_window_get_pointer(). (gdk_drag_status): Use
1696         correct context for getting window.
1697
1698         * gdk/linux-fb/gdkproperty-fb.c (gdk_atom_name):
1699         g_strdup the atom name.
1700
1701         * gdk/linux-fb/gdkwindow-fb.c:
1702         Costmetic fix.
1703
1704         * gtk/gtkdnd.c (gtk_drag_source_handle_event):
1705         Add code for changing cursor on linux-fb backend (same as
1706         win32).
1707
1708 2001-05-07  Federico Mena Quintero  <federico@ximian.com>
1709
1710         * gtk/gtkwindow.c (gtk_window_focus): Test for bin->child being
1711         present before doing anything with it.  Patch from HÃ¥vard KvÃ¥len
1712         <havardk@netcom.no>.  Fixes Ximian bugzilla #2492 (OK, the bug
1713         report was not for the development branch of GTK+, but it applies
1714         anyways).
1715
1716 2001-05-04  Havoc Pennington  <hp@redhat.com>
1717
1718         * configure.in: fix some shell typos
1719
1720         * gtk/gtkcolorsel.c (gtk_color_selection_destroy): warning fix
1721
1722         * gtk/gtkimage.c: handle animations
1723
1724         * gtk/gtkcheckbutton.c (gtk_check_button_size_request): request
1725         border_width * 2, not just border_width
1726
1727         * gtk/gtkscale.c: add "format_value" signal to allow people
1728         to override the way values are drawn.
1729         (gtk_scale_get_value_size): fix width/height mistake,
1730         and compute size from actual displayed text, not 
1731         from made-up text.
1732
1733         * gtk/gtktexttag.c (gtk_text_tag_class_init): fix return type in 
1734         signal registration
1735
1736         * tests/testtext.c: Add "Remove all tags" menu item for testing
1737
1738         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): implement
1739
1740         * demos/gtk-demo/main.c (main): add hack so we can find modules
1741         without installing gtk
1742
1743         * demos/gtk-demo/textview.c (insert_text): demo font scaling
1744
1745         * gtk/gtkcellrenderertext.c: Add "scale" property (font scaling
1746         factor)
1747         (gtk_cell_renderer_text_set_property): remove some bogus
1748         g_object_notify
1749
1750         * gtk/gtktexttag.c: add "scale" property which is a font scaling
1751         factor
1752
1753         * gtk/gtktextlayout.c (add_text_attrs): add font scale attribute 
1754         to layout
1755
1756         * gtk/gtktextiter.c (gtk_text_iter_is_start): rename from
1757         gtk_text_iter_is_first
1758
1759 2001-01-06  Hans Breuer  <hans@breuer.org>
1760
1761         * gdk/gdk.def : updated exports
1762
1763         * gdk/win32/makefile.msc : -DGDK_ENABLE_BROKEN otherwise
1764         gdk won't compile anymore
1765  
1766         * gdk/win32/gdkevents-win32.c : initialize ret_val when
1767         processing GDK_FILTER functions, initialize event.key->hardware_keycode.
1768         Improved gdk_flush () to not only do pending drawing operations
1769         but also process all currently pending events. This should make
1770         the behaviour more similar to the X11 version.  
1771
1772         * gdk/win32/gdkgc-win32.c (predraw_set_background) : a background
1773         option needs to be set even if there is no GDK_GC_BACKGROUND.
1774         (gdk_win32_hdc_get) : use predraw_set_background () independent
1775         of value_mask. This allows to draw dashed lines leaving the original
1776         background intact.
1777
1778         * gdk/win32/gdkimage-win32.c (gdk_image_new_bitamp) : free data
1779         after processing, because we can't reuse it as the X11 version does.
1780
1781         * gtk/gtk.def : updated exports
1782
1783         * gtk/makefile.msc.in : added ATK, removed all test apps. (I
1784         would like to get rid of this file again, and use straight
1785         makefile.msc again, as the other Gtk+ subdirs do)
1786
1787         * test/makefile.msc (new file) : build the test apps here
1788
1789 2001-05-05  ERDI Gergo  <cactus@cactus.rulez.org>
1790
1791         * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
1792         strike-through setting
1793         (gdk_draw_layout_line_with_colors): Render strike-through
1794
1795 Sat May  5 10:06:24 2001  Owen Taylor  <otaylor@redhat.com>
1796
1797         * Release 1.3.5
1798
1799         * configure.in (GTK_MICRO_VERSION): Up to 1.3.5
1800
1801         * NEWS: Updated
1802
1803         * demos/gtk-demo/Makefile.am (EXTRA_DIST): Fix minor
1804         Makefile breakage.
1805
1806 Sat May  5 09:18:30 2001  Owen Taylor  <otaylor@redhat.com>
1807
1808         * demos/gtk-demo/images.c (progressive_timeout): Fix
1809         typo in filename.
1810
1811         * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment
1812         out FIXME warning; just too annoying.
1813
1814 2001-05-04  Alex Larsson  <alla@lysator.liu.se>
1815
1816         * gdk/linux-fb/gdkcolor-fb.c:
1817         Better error messages.
1818
1819         * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_new):
1820         Initialize abs_x and abs_y.
1821         
1822         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
1823         Correct handling of stipple offset.
1824
1825         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init):
1826         Treat directcolor framebuffers as truecolor.
1827         
1828 Thu May  3 14:13:49 2001  Owen Taylor  <otaylor@redhat.com>
1829
1830         * INSTALL.in HACKING gtk/gtkaccessible.[ch] gtk/gtk.c: Add
1831         dependency on Atk for accessibility support.
1832
1833         * configure.in **/Makefile.am: Major reworking of substituted
1834         variables for CFLAGS/LIBS to make a lot more sane and 
1835         keep the the compile/link lines a bit shorter.
1836
1837         * gdk/x11/gdkkeys-x11.c: Fix #endif with trailing stuff.
1838
1839 Thu May  3 08:10:54 2001  Owen Taylor  <otaylor@redhat.com>
1840
1841         * gtk/gtktexttag.c (gtk_text_tag_class_init): Fix return
1842         value to be G_TYPE_BOOLEAN, not G_TYPE_INT, also,
1843         use _gtk_boolean_handled_accumulator.
1844
1845 Thu May  3 07:00:09 2001  Owen Taylor  <otaylor@redhat.com>
1846
1847         * gtk/gtktextview.c: Patch from Juan Pablo Mendoza Mendoza
1848         to fix things so clicking inside selection leaves cursor
1849         at point where clicked. (#50324)
1850
1851         * gtk/gtksettings.c (gtk_settings_class_init): Restore
1852         sane value for default double click time.
1853
1854         * tests/testtext.c (test_init): Really path to input modules.
1855
1856 2001-05-03  Sven Neumann  <sven@convergence.de>
1857
1858         * demos/testpixbuf-save.c: include target-specific headers as
1859         done in testpixbuf-drawable.c
1860
1861 Wed May  2 20:36:38 2001  Owen Taylor  <otaylor@redhat.com>
1862
1863         * gtk/gtkentry.c (gtk_entry_real_insert_text): Reduce
1864         new_text_length appropriately when we run into the 
1865         size limit for the entry. (#53445, reported by Jeff Franks)
1866
1867         * tests/testgtk.c (create_entry): Remove most of the
1868         property toggle buttons. Replace with a "Props" button
1869         that brings up a property editor.
1870
1871         * tests/prop-editor.[ch] test/testtreeview.c tests/Makefile.am:
1872         Split the property editor code out for reuse, improve.
1873
1874 Wed May  2 17:26:22 2001  Owen Taylor  <otaylor@redhat.com>
1875
1876         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.c: Always
1877         trap errors around calls to XSetInputFocus since we have
1878         no way of knowing reliably whether we are viewable or
1879         not. (#53947)
1880
1881 Tue May  1 09:21:23 2001  Jonathan Blandford  <jrb@redhat.com>
1882
1883         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
1884         fix bug in dropping columns.  Moving columns now basically works
1885         modula some fine tuning.
1886
1887 Tue May  1 19:09:21 2001  Jonathan Blandford  <jrb@redhat.com>
1888
1889         * gtk/gtktreeview.c (gtk_tree_view_horizontal_autoscroll): Add
1890         autoscroll support.  It mostly works, but could use some fine
1891         tuning.
1892         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
1893         Actually move the column.
1894
1895 Mon Apr 30 20:29:27 2001  Owen Taylor  <otaylor@redhat.com>
1896
1897         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c 
1898           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtkwidget.c:
1899           New default theme! A slighly improved version of the 2.0 Raleigh
1900           theme, with Windows-esque focus/drawing default. 
1901           (GtkWidget::interior_focus defaults to TRUE.)
1902
1903         * gtk/gtkstyle.[ch]: Add a text_aa color halfway between text and base.
1904
1905 2001-04-30  Havoc Pennington  <hp@pobox.com>
1906
1907         * tests/testtext.c (line_numbers_expose): fix to work with
1908         gtk_paint_layout change
1909
1910 Mon Apr 30 19:18:07 2001  Owen Taylor  <otaylor@redhat.com>
1911
1912         * gtk/gtkstyle.[ch] gtk/gtkaccellabel.c gtk/gtkcellrenderertext.c
1913           gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c gtk/gtkprogressbar.c
1914           gtk/gtkvruler.c gtk/gtkvscale.c: Add an extra parameter
1915           use_text to gtk_paint_label() to deal with style->bg[] vs style->text[].
1916
1917         * gtk/gtkbbox.c gtk/gtkdialog.c: Tweak padding some to deal
1918           with GtkWidget::interior_focus = TRUE better.
1919
1920         * gtk/gtkbutton.c: Switch ::default_spacing to ::default_border,
1921         ::default_outside_border for more flexibility.
1922
1923         * gtk/gtkwidget.c (gtk_widget_style_get_valist): Remove 
1924         G_VALUE_NO_COPY_CONTENTS, to correspond with the recent
1925         change that had to be made with g_object_get.
1926
1927 Sun Apr 29 20:13:40 2001  Jonathan Blandford  <jrb@redhat.com>
1928
1929         * gtk/gtktreeview.c (gtk_tree_view_get_columns): new function.
1930         (gtk_tree_view_move_column_after): Clean up interface. 
1931
1932 Sun Apr 29 03:02:02 2001  Tim Janik  <timj@gtk.org>
1933
1934         * gtk/gtkpacker.h:
1935         * gtk/gtkenums.h: moved GtkAnchorType and GtkSideType from gtkpacker.h
1936          to gtkenum.h.
1937
1938         * gtk/gtkmain.c (gtk_main_do_event): silence compiler (GDK_SETTING not
1939         handled in switch).
1940
1941         * gtk/Makefile.am:
1942         (gtk.defs): generate enum portions with  glib-mkenums.
1943         (gtktypebuiltins_evals.c): generate this with glib-mkenums.
1944         got rid of makeenums.pl and makeenums.awk in distributed tarballs.
1945         
1946         * gtk/gtkaccelgroup.c (gtk_accel_group_add): refined havocs warning
1947         addition.
1948
1949         * docs/Changes-2.0.txt: keep a note on signal handlers now
1950         not getting emitted during the emission they were connected within.
1951
1952 2001-04-28  Havoc Pennington  <hp@pobox.com>
1953
1954         * gtk/gtkcolorsel.c (palette_new): fix bug in tooltip
1955
1956 2001-04-24  Havoc Pennington  <hp@redhat.com>
1957
1958         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_previous_line): 
1959         (gtk_text_layout_move_iter_to_next_line): fix these two for
1960         invisible text, lots of other stuff still hosed.
1961
1962         * gtk/gtkcolorsel.c (gtk_color_selection_set_change_palette_hook):
1963         new function, replaces the get/set palette stuff. This function 
1964         is intended for use by libgnomeui which should set the hook to a
1965         thing which sets the palette in GConf, and we need the
1966         GConf-to-xsettings proxy which will result in the change being
1967         propagated back to the GTK app.
1968
1969         * gtk/gtkaccelgroup.c (gtk_accel_group_add): add note to warning 
1970         about unusable signals that it may be because the signal has 
1971         parameters.
1972
1973         * gtk/gtkwidget.c (gtk_widget_modify_style): always copy the
1974         style, otherwise gtkrc.c won't know to create a new GtkStyle for
1975         it.
1976         (gtk_widget_modify_color_component): call
1977         gtk_widget_modify_style() so the rc style will get copied.
1978         (gtk_widget_modify_font): ditto
1979
1980         * gtk/gtkrc.c: make a couple variables static
1981
1982         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): hide
1983         help button by default, since it does nothing
1984
1985         * gtk/gtkcolorsel.c: add tooltips, work on key navigation, fool
1986         around with UI
1987
1988         * gtk/gtkentry.c (gtk_entry_realize): request enter/leave notify
1989         so we can have tooltips
1990
1991         * gtk/gtkhsv.c (gtk_hsv_realize): request enter/leave notify so we
1992         can have tooltips
1993
1994         * gdk/gdkimage.h: mark gdk_image_new_bitmap with
1995         GDK_ENABLE_BROKEN, because its memory behavior is completely
1996         hosed.
1997
1998         * gtk/gtknotebook.c: remove key press handler, replace with
1999         binding set, add numeric keypad support
2000
2001         * gtk/gtktextview.c (gtk_text_view_class_init): accept KP_Delete
2002
2003         * gtk/gtktext.c (gtk_text_key_press): add a bunch of KP keysyms
2004
2005         * gtk/gtkentry.c (gtk_entry_class_init): accept GDK_KP_Delete in
2006         addition to plain Delete
2007
2008         * gtk/gtktextview.c (gtk_text_view_key_press_event): accept
2009         GDK_KP_Enter in addition to GDK_Return
2010
2011         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): connect to
2012         activate on entry instead of key press
2013         (gtk_font_selection_on_clist_key_press): get
2014         rid of this signal handler, not needed with new font sel.
2015
2016         * gtk/gtkfilesel.c (gtk_file_selection_key_press): remove a
2017         no-longer-needed emit_stop_by_name(), just return TRUE
2018
2019         * gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.c: remove keybindings
2020         cruft, this widget is no longer focusable.
2021
2022         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkvscale.c,
2023         gtk/gtkhscale.c: Get rid of trough_keys virtual function, add
2024         move_slider action signal, add binding set for vscale/hscale, in
2025         the process support numeric keypad
2026
2027         * gtk/gtkentry.c (gtk_entry_class_init): Add keypad bindings; 
2028         make GDK_Return and GDK_KP_Enter activate the entry via 
2029         binding set, instead of hardcoded.
2030
2031 Fri Apr 27 20:27:21 2001  Jonathan Blandford  <jrb@redhat.com>
2032
2033         * gtk/gtktreeview.[hc]: Massive reorder/cleanup of a lot of the
2034         code.  Some documentation added.
2035
2036 2001-04-27  Havoc Pennington  <hp@redhat.com>
2037
2038         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
2039
2040         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
2041
2042         * gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
2043         line/para separators
2044         (gtk_entry_create_layout): set single paragraph mode on the layout
2045
2046         * gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
2047         spacing between the image and label; instead, inside a button box 
2048         the button will get extra space that will go there, but if people 
2049         configure button box for 0 chubbiness, then there's no spacing.
2050
2051         * gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
2052         and min/max size style properties, so people can tune their
2053         chubbiness.
2054
2055         * tests/testgtk.c (make_toolbar): remove calls to removed toolbar
2056         functions
2057
2058         * gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
2059         space_style, and button_relief into style properties, remove
2060         functions for setting them
2061         
2062         * gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop 
2063         it back down
2064
2065         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
2066         types from gtk_widget_style_get
2067
2068         * gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
2069         with a style property.
2070
2071         * gdk/x11/gdkevents-x11.c: namespace the settings
2072
2073         * gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
2074
2075         * gtk/gtksettings.c (gtk_settings_class_init): remove code with
2076         side effects from inside g_assert(), so that G_DISABLE_ASSERT can
2077         be used. Also, translate doc strings for settings. Also, namespace
2078         the double-click-time property. Also, remove bell properties crap.
2079
2080 2001-04-27  Sven Neumann  <sven@gimp.org>
2081
2082         * Makefile.am: before creating links, check if pkg-config files
2083         exist for the default target. Otherwise link to the pkg-config files
2084         that got installed with this build.
2085
2086 Thu Apr 26 19:11:46 2001  Jonathan Blandford  <jrb@redhat.com>
2087
2088         * gtk/gtktreeview.c (gtk_tree_view_motion): clean up column
2089         dragging code.  Revealed some (potential) GdkWindow bugs.
2090
2091         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): add
2092         _gdk_window_init_position to the end of reparent to fix the case
2093         of reparenting when new_x != old_x and new_y != old_y.
2094
2095 Thu Apr 26 10:54:50 2001  Owen Taylor  <otaylor@redhat.com>
2096
2097         * gtk/gtkentry.c (strstr_len): Fix optimization that
2098         was correct for the use here, but completely incorrect
2099         in general.
2100
2101 Thu Apr 26 10:40:41 2001  Owen Taylor  <otaylor@redhat.com>
2102
2103         * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
2104         until patch adding gtk_window_set_size() is recommitted. 
2105
2106         * **Makefile.am configure.in gdk/x11/gdkim-11.c
2107           gtk/gtkmain.c gtk/gtkimmulticontext.c gtk/gtkmain.c
2108           gtk/gtkrc.c: Remove all traces of -DX_LOCALE support.
2109           (#10784)
2110
2111 Wed Apr 25 12:16:36 2001  Owen Taylor  <otaylor@redhat.com>
2112
2113         * gdk/X11/gdkevents-x11.c (gdk_event_translate): Test for 
2114         window == NULL in a number of cases.
2115
2116         * tests/testdnd.c: Set module path for gdk-pixbuf.
2117
2118 Thu Apr 19 16:11:07 2001  Owen Taylor  <otaylor@redhat.com>
2119
2120         * gtk/Makefile.am xembed.h: File containing #defines
2121         for XEMBED protocol.
2122
2123         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: 
2124
2125         - Change protocol from old plug/socket specific protocol
2126           to XEMBED draft
2127         - Various fixes to work with GTK+-2.0
2128
2129         Still quite a bit of work to do here to handle initiation
2130         from the socket side (as specified by XEMBED), to handle
2131         the more advanced features of XEMBED, and to figure out
2132         a good way to handle same-app embedding with less overhead
2133         than using full XEMBED.
2134
2135 Wed Apr 18 16:04:28 2001  Owen Taylor  <otaylor@redhat.com>
2136
2137         * gtk/gtkwindow.[ch] (gtk_window_real_set_focus): Keep
2138         track of whether the toplevel has the focus; only send
2139         focus-in events to the focus widget when the window
2140         actually has the focus.
2141
2142 2001-04-25  Havoc Pennington  <hp@pobox.com>
2143
2144         * gtk/gtkwindow.h: set_decorations_hint and set_functions_hint
2145         were still in the header
2146
2147 2001-04-24  Alexander Larsson  <alexl@redhat.com>
2148
2149         * gtk/gtkclist.[ch]:
2150         * gtk/gtkctree.c:
2151         When there is a row highlighted for D'n'D it must alse
2152         be painted hightlighted on exposes. Otherwise exposes from
2153         the icon being dragged will mess up the hightlight.
2154
2155         * gtk/gtkfontsel.c:
2156         Don't recenter selected font when exposing the font family
2157         clist. This means you can now actually scroll the font family
2158         list.
2159
2160         * gtk/gtknotebook.c:
2161         Fix focus movement on scrolling tabs that are placed on the left
2162         and right.
2163
2164 2001-04-21  Havoc Pennington  <hp@pobox.com>
2165
2166         * gtk/gtktextdisplay.c (gtk_text_layout_draw): handle 0-height
2167         empty/invisible lines.
2168
2169         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset)
2170         (gtk_text_iter_set_visible_line_index): new functions to set
2171         indexes excluding invisible text
2172
2173         * gtk/gtktextlayout.c (line_display_iter_to_index): get visible 
2174         index
2175
2176         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index)
2177         (gtk_text_iter_get_visible_line_offset): new functions to 
2178         get indexes excluding invisible text
2179
2180         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): strip out a
2181         bunch of extra padding that served no purpose
2182
2183         * gtk/gtkdialog.c: Make all the spacings configurable via style
2184         properties, for chubbiness configuration in themes
2185
2186         * tests/testtext.c: fix path to the immodules.
2187         
2188 Mon Apr 23 18:57:03 2001  Jonathan Blandford  <jrb@redhat.com>
2189
2190         * gtk/gtksocket.c (gtk_socket_filter_func): add missing '}' that
2191         got munched by #endif.
2192
2193         * gtk/Makefile.am (gtk_plug_c_sources): add missing '\'
2194
2195         * gtk/gtktreeview.c: Refactored code to clean up a number of
2196         events.
2197
2198         * gtk/gtktreemodel.c (gtk_tree_path_compare): Switched return
2199         values to make consistent with other functions.  Spotted by Jeff
2200         Franks <jcf@tpg.com.au>.
2201
2202         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Fixes to signal
2203         declaration spotted by Jeff Franks <jcf@tpg.com.au>.
2204
2205 2001-04-23  Sven Neumann  <sven@gimp.org>
2206
2207         * gtk/Makefile.am
2208         * gtk/gtkplug.c
2209         * gtk/gtksocket.c: on request of Owen, reverted my last change 
2210         and exclude gtkplug.c/gtksocket.c from the build for non-X11 targets
2211
2212 2001-04-23  Sven Neumann  <sven@gimp.org>
2213
2214         * gtk/gtkplug.c: put into #ifdef GDK_WINDOWING_X11 to make GTK+
2215         compile for non-X11 targets again
2216
2217 2001-04-20  Alexander Larsson  <alexl@redhat.com>
2218
2219         * gtk/gtkcolorsel.[ch]:
2220         API Change. Take GdkColor arguments instead of gdouble *.
2221         Leave the old gtk_color_selection_set_color for compatibility,
2222         but marked deprecated.
2223         Do correct rounding when converting RGB <-> HSV.
2224         
2225         * gtk/gtkcolorseldialog.c:
2226         * tests/testgtk.c:
2227         Use new GtkColorSelection API.
2228
2229         * gtk/gtkhsv.c:
2230         Fix problem selecting colors in triangle when Hue is 330.
2231         Fix some black dots around the HSB triangle.
2232         
2233         * gtk/gtkfilesel.c:
2234         return FALSE from the focus_in_event handler to fix focus problems.
2235
2236 2001-04-18  Havoc Pennington  <hp@redhat.com>
2237
2238         * gtk/gtkwindow.c (gtk_window_class_init): add signals and binding
2239         set, so keybindings are configurable    
2240         (gtk_window_activate_default): Change to activate the focus widget
2241         instead if there's a focus widget, to be consistent with the
2242         behavior that previously existed in key_press_event
2243
2244 2001-04-18  Havoc Pennington  <hp@redhat.com>
2245
2246         * gdk/gdkkeyuni.c: Handle numeric keypad keysyms; bug #50201
2247
2248 2001-04-18  Havoc Pennington  <hp@redhat.com>
2249
2250         Close bug #50615:
2251         
2252         * gtk/gtkstyle.c (gtk_default_draw_layout): Use text_gc to draw
2253         the layout
2254
2255         * gtk/gtktext.c: Use base/text instead of bg/fg throughout
2256
2257         * gtk/gtkentry.c: Use base/text instead of bg/fg throughout
2258
2259         * gtk/gtktextdisplay.c: Use base/text instead of bg/fg throughout
2260         
2261         * gtk/gtkstyle.c (gtk_style_init): make GTK_STATE_SELECTED default
2262         to blue for base, in addition to bg
2263         
2264 2001-04-18  Havoc Pennington  <hp@redhat.com>
2265
2266         * tests/testgtk.c (create_image): allow shrinking the image window
2267         to test that we clip to allocation.
2268
2269         * gtk/gtkimage.c (gtk_image_expose): clip to allocation,
2270         #9845
2271
2272         * gtk/gtkenums.h: move GtkWrapMode in here, #50472
2273
2274 Wed Apr 18 14:23:14 2001  Owen Taylor  <otaylor@redhat.com>
2275
2276         * gdk/x11/gdkimage-x11.c (gdk_image_new): Try changing
2277         mode on shm segments to 0600. We'll see who complains.
2278
2279         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Call
2280         _gdk_windowing_window_destroy() AFTER recursing through
2281         children.
2282
2283         * tests/Makefile.am (noinst_PROGRAMS): Build testsocket,
2284         testsocket_child on X.
2285
2286         * tests/testsocket[_child].c: Fix uses of
2287         gtk_window_get_default_accel_group().
2288
2289         [ Merge patch from Ramiro Estrugo  <ramiro@eazel.com> from gtk-1-2 ]
2290
2291         * gdk/gdkimage.c: (gdk_image_get):
2292         Deal with the possibility that XGetImage() might return NULL.
2293         Allocate the GdkImagePrivate structure only after XGetImage()
2294         succeeds in order not to dereference a NULL ximage pointer.  This
2295         prevents a core dump when XGetImage() fails - which is unlikely,
2296         but can happen due to race conditions accessing the geometries of
2297         drawables.  An x error will still be triggered, but the gdk image
2298         wrapper at least wont seg fault.
2299         
2300 2001-04-18  Havoc Pennington  <hp@redhat.com>
2301
2302         * gtk/gtkimage.c: fix to properly queue resizes when the image is
2303         set
2304
2305         * gtk/gtktextview.c (gtk_text_view_do_popup): desensitize Paste
2306         if the insertion point isn't editable
2307
2308         * demos/gtk-demo/images.c: Added a GtkImage demo
2309
2310         * demos/gtk-demo/drawingarea.c: drawing area demo
2311         
2312         * demos/gtk-demo/menus.c (create_menu): cleanups
2313
2314 Wed Apr 18 12:15:52 2001  Owen Taylor  <otaylor@redhat.com>
2315
2316         * gdk/x11/gdkwindow-x11.c gdk/x11/gdkwindow-x11.h 
2317           gdk/x11/gdkevents-x11.c: Introduce an extra child
2318         of toplevel windows that serves to hold the focus to
2319         avoid events being delivered to embedded windows.
2320
2321         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Introduce
2322         some extra variables to clean up code and reduce the
2323         number of casts.
2324
2325         * gdk/x11/gdkwindow-x11.h (struct _GdkXPositionInfo): Use
2326         guint for 1 bit bit fields, not gboolean.
2327
2328 Wed Apr 18 10:04:23 2001  Owen Taylor  <otaylor@redhat.com>
2329
2330         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Return FALSE,
2331         not TRUE. (Fixes #52925)
2332
2333 Tue Apr 17 18:05:34 2001  Owen Taylor  <otaylor@redhat.com>
2334
2335         * Released 1.3.4
2336
2337         * NEWS: Updated
2338
2339         * gtk/gtktextview.c (gtk_text_view_class_init): Fix to not
2340         use GTK_TYPE_ENUM.
2341
2342 Tue Apr 17 13:47:12 2001  Owen Taylor  <otaylor@redhat.com>
2343
2344         * configure.in: Don't put -lgthread in GLIB_LIBS, GLIB_DEPLIBS
2345
2346         * gtk/gtktypeutils.h gtk/gtksignals.h: Restore proper parameter
2347         names to compatibility #defines so docs work.
2348
2349         * gtk/gtkenums.h: Remove GtkMenuFactoryType
2350
2351         * gtk/gtkwindow.c gtk/gtkdnd.c: Docs cleanups.
2352
2353         * configure.in: Don't include -lgthread in GLIB_LIBS, GLIB_DEPLIBS
2354
2355         * tests/testgtkrc: No magenta cursors, please.
2356
2357         * README.in INSTALL.in HACKING README.cvs-commits: Updated.
2358
2359         * gtk/gtkenums.h (enum): Remove left over GtkMenuFactoryType.
2360         
2361 Mon Apr 16 14:38:41 2001  Owen Taylor  <otaylor@redhat.com>
2362
2363         * gtk/gtklist.c gtk/gtklistitem.c: Remove explicit pointer
2364         grabs, since they are no longer necessary.
2365
2366         * gtk/gtkcombo.c (gtk_combo_popup_button_press): Fix #52926
2367         by signal_connect() and call gtk_button_pressed() rather
2368         than signal_connect_after().
2369
2370         * tests/testgtk.c: Restore radio menu items to combos 
2371         since they'll look OK with Raleigh, and it is easier
2372         than finishing the process of removing them that was
2373         started earlier.
2374
2375 2001-04-16  Hans Breuer  <hans@breuer.org>
2376
2377         * gdk/gdk.def :
2378         * gtk/gtk.def : added all exports required to link PyGtk 0.7.1
2379
2380         * gdk/gdkfont.h : #define GDK_TYPE gdk_font_get_type ()
2381         we are interested in the functions return value not the function address
2382         * gdk/gdkvisual.h : same for GDK_TYPE_VISUAL
2383
2384         * gtk/makefile.msc.in : reflect movement of GDK_TYPEs from gtk to gdk
2385
2386 2001-04-14  Hans Breuer  <hans@breuer.org>
2387
2388         * gdk/gdk.def :
2389         * gdk/makefile.msc : updated
2390
2391         * gdk/win32/gdkdrawable.win32 (gdk_win32_draw_rectangle) : if modus is 
2392         "fill with tile" do so with new helper function gdk_win32_draw_tiles 
2393         (the testgtk::text backgound pixmap is drawn again)
2394         Changed SetTextAlign before pango_win32_render to TA_BASELINE to reflect 
2395         Win32 Pango change
2396         * gdk/win32/gdkprivate-win32.h : prototype for gdk_win32_draw_tiles
2397
2398         * gdk/win32/gdkproperty-win32.c : first implementation of gdk_setting_get
2399         Not sure if the returned settings have the right unit, because I couldn't
2400         find any docs for the X version ...
2401
2402         * gtk/gtk.def :
2403         * gtk/makefile.msc.in : updated
2404
2405 Thu Apr 12 17:41:17 2001  Owen Taylor  <otaylor@redhat.com>
2406
2407         * gtk-2.0.m4: Fix up to refer to GTK+, not to GLib; fix some
2408         wording problems. (Compared to version from Johannes Stezenbach to
2409         check correctness.)
2410
2411 Thu Apr 12 21:04:26 2001  Tim Janik  <timj@gtk.org>
2412
2413         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): get
2414         this to compile.
2415
2416 2001-04-12  Anders Carlsson  <andersca@codefactory.se>
2417
2418         * gtk/gtkcellrenderertextpixbuf.c (gtk_cell_renderer_text_pixbuf_class_init): It's pixbuf_pos,
2419         not pixbufpos.
2420
2421         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Fix small typo.
2422
2423         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property): xpad and ypad
2424         are unsigned insts, therefore use g_value_set_uint.
2425         (gtk_cell_renderer_set_property): Likewise, use g_value_get_uint.
2426
2427 Sun Apr  8 05:36:06 2001  Jonathan Blandford  <jrb@redhat.com>
2428
2429         * gtk/gtktextview.c (gtk_text_view_class_init): fix a fixme.
2430
2431         * gtk/gtkcellrendertoggle.c: change GTK_TYPE_POINTER to
2432         GTK_TYPE_STRING.
2433
2434         * gtk/gtktreeview.c: New functions to allow initial column
2435         dragging work.
2436
2437         * gtk/gtktreeviewcolumn.c: Initial column dragging support.
2438
2439         * tests/testtreefocus.c: give dave some love.
2440
2441         * tests/testtreesort.c: Modify test to check really long samples.
2442
2443 2001-04-11  Alexander Larsson  <alexl@redhat.com>
2444
2445         * gtk-2.0.m4: Pass pkg-config options
2446         before the other args so it works even if
2447         POSIXLY_CORRECT is set.
2448
2449 Mon Apr  9 19:02:07 2001  Tim Janik  <timj@gtk.org>
2450
2451         * configure.in (GTK_MICRO_VERSION): increment version to 1.3.4 (binary
2452         0, interface 0).
2453
2454 2001-04-04  Denis Oliver Kropp  <dok@convergence.de>
2455
2456         * gtk/gtkcalendar.c (gtk_calendar_button_press):
2457         check for action_func != NULL
2458
2459 2001-04-04  Sven Neumann  <sven@gimp.org>
2460
2461         * tests/testgtk.c (test_init): corrected path to gtk.immodules
2462
2463 Wed Apr  4 09:18:18 2001  Tim Janik  <timj@gtk.org>
2464
2465         * Released Gtk+-1.3.3.
2466
2467 Wed Apr  4 07:42:23 2001  Tim Janik  <timj@gtk.org>
2468
2469         * gdk/Makefile.am (EXTRA_DIST): add makeenums.pl to EXTRA_DIST.
2470
2471 Wed Apr  4 04:13:18 2001  Tim Janik  <timj@gtk.org>
2472
2473         * gtk/stock-icons/Makefile.am: stay in builddir and read/write
2474         files to/from source dir. (if we don't stay in builddir, we
2475         can't reach make-inline-pixbuf.
2476
2477         * gdk/Makefile.am (gdkenumtypes.c): add $(srcdir) to mekeenums.pl
2478         deps.
2479
2480         * configure.in (GTK_MICRO_VERSION): up and away (1.3.3 bin/interface
2481         ages 0).
2482
2483 Tue Apr  3 15:04:45 2001  Jonathan Blandford  <jrb@redhat.com>
2484
2485         * gtk/gtktreemodelsort.h:  removed set_sort_column, as it was
2486         moved to the GtkTreeSortable interface.
2487
2488         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
2489         Make more efficient (fixes #50262).
2490
2491 Tue Apr  3 13:55:37 2001  Owen Taylor  <otaylor@redhat.com>
2492
2493         * NEWS: Updated.
2494
2495         * configure.in: Remove support for uninstalled glib.
2496
2497         * gtk/gtkdnd.c (gtk_drag_highlight_expose): Return FALSE as
2498         so as not to stop emission.
2499
2500         * gtk-config-2.0.in: Exit with an error message that gtk-config-2.0
2501         is no longer supported.
2502
2503         * Makefile.am gtk/Makefile.am tests/*: Moved all tests
2504         into tests, change build order to build modules before
2505         gtk/.
2506
2507         * modules/input/Makefile.am: Move gtk-query-immodules-2.0 invocation
2508         to here.
2509
2510 Tue Apr  3 13:52:57 2001  Tim Janik  <timj@gtk.org>
2511
2512         * gtk/gtkitemfactory.[hc]: changed gtk_item_factory_dump_items()
2513         and gtk_item_factory_dump_rc() GtkPatternSpec argument to
2514         GPatternSpec. this is actually unlikely to cause breakage in
2515         third-party apps since except for gle, pretty much ever caller
2516         passes NULL here.
2517
2518         * gtk/gtkbindings.[hc]: removed gtk_pattern_*() API.
2519
2520         * *.c: use g_pattern_*() API.
2521
2522         * docs/Changes-2.0.txt: GtkPatternSpec->GPatternSpec updates.
2523
2524         * gtk/gtkstyle.c (gtk_default_draw_resize_grip): assert unhandled
2525         directions aren't passed in.
2526
2527         * gtk/gtksettings.[hc] (_gtk_settings_parse_convert): export conversion
2528         functionality to be usable from gtkstyle.c as well, give precedence
2529         for conversion to user-supplied parsers.
2530         s/_gtk_rc_property_parser_for_type/_gtk_rc_property_parser_from_type/;
2531
2532         * gtk/gtkstyle.c (_gtk_style_peek_property_value): use
2533         _gtk_settings_parse_convert() for rcporperty value conversion.
2534
2535 2001-04-03  Alexander Larsson  <alexl@redhat.com>
2536
2537         * gdk/linux-fb/gdkevents-fb.c:
2538         Add empty gdk_setting_get().
2539
2540 Tue Apr  3 05:09:07 2001  Tim Janik  <timj@gtk.org>
2541
2542         * gtk/gtkmain.c (_gtk_boolean_handled_accumulator): use more elaborate
2543         variable names.
2544         
2545         * gtk/makeenums.pl: touch this so enum files get remade.
2546
2547 Mon Apr  2 19:36:57 2001  Jonathan Blandford  <jrb@redhat.com>
2548
2549         * gtk/gtktreestore.c (gtk_tree_store_init):  Bug fix to make trees
2550         work again when not sorted.
2551
2552         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add "collapse_row"
2553         and "expand_row" signal, closing bug 52578.
2554
2555         * gtk/gtktreeview.c (gtk_tree_view_expand_row): Add signal
2556         support.
2557
2558         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): Add signal
2559         support.
2560
2561 Mon Apr  2 18:18:07 2001  Owen Taylor  <otaylor@redhat.com>
2562
2563         * gdk/gdkevents.h: Add GdkEventSetting event for notification
2564         of changes to system settings, gdk_setting_get() to retrieve
2565         a single system setting.
2566
2567         * gdk/x11/gdkevents-x11.c: Bridge gdk_setting_get() and GdkEventSetting
2568         to the draft XSETTINGS mechanism.
2569
2570         * gdk/x11/xsettings-{common,client}.[ch]: Sample-implementation of
2571         XSETTINGS.
2572
2573         * gtk/gtkmain.c gtk/gtksettings.[ch]: Propagate notification
2574         of GDK settings changes to the GtkSettings object.
2575
2576         * gdk/gdkevents.[ch] gdk/gtk/gtksettings.c: Hook up the
2577         double-click-timeout property to GDK.
2578
2579         * gdk/gdkcolor.[ch] gdk/gdkvisual.h gdk/gdkevent.[ch] gdk/gdkfont.[ch]:
2580         Define GDK boxed types here.
2581
2582         * gdk/Makefile.am gdk/makeenums.pl: Generate source files
2583         gdk/gdkenumtypes.[ch] for enum definitions.
2584
2585         * gtk/gtkcompat.h: Add defines for GTK_TYPE_GDK_*
2586         * gtk/gtk-boxed.defs: Comment out GDK types
2587         * gtk/gtktypeutils.h: Remove GDK types
2588         * gtk/Makefile.am: No longer scan GDK headers for enumerataions
2589
2590 Mon Apr  2 16:41:08 2001  Owen Taylor  <otaylor@redhat.com>
2591
2592         * Applied patch from Ron Steinke to add signal accumulators
2593         so that signals with the convention 'TRUE return means
2594         handled' stop emission on a TRUE return.
2595
2596         * gtk/gtkmain.[ch]: Add private accumulator 
2597         _gtk_boolean_handled_accumulator, used throughout GTK+.
2598         
2599         * gtk/gtkspinbutton.c: Add accumulator for ::output.
2600
2601         * gtk/gtktipsquery.c: Add accumulator for ::widget_selected
2602         
2603         * gtk/gtkwidget.c: Add accumulators for event signals,
2604         ::drag_motion, ::drag_drop. Use _gtk_boolean_handled_accumator
2605         for ::mnemonic-activate.
2606
2607         * gtk/gtkwindow.c: Add accumulator for ::frame_event
2608
2609 Mon Apr  2 16:24:21 2001  Owen Taylor  <otaylor@redhat.com>
2610
2611         * gtk/gtkwidget.c: Add missing include.
2612
2613 Mon Apr  2 16:56:15 2001  Jonathan Blandford  <jrb@redhat.com>
2614
2615         * gtk/gtkmarshal.list (VOID:BOXED,BOXED,BOXED,BOXED): new
2616         marshaller.
2617
2618         * gtk/gtktreemodel.c (gtk_tree_model_range_changed): change
2619         "changed" signal to "range_changed".
2620
2621         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix small bug where
2622         removing a tree from one model would remove all trees from that
2623         model.
2624         * gtk/gtktreeview.c (gtk_tree_view_range_changed): use range
2625         changed signal instead.
2626
2627 Mon Apr  2 16:13:58 2001  Owen Taylor  <otaylor@redhat.com>
2628
2629         * gtk/gtkinvisible.c (gtk_invisible_style_set): Avoid
2630         chaining up to parent impl, since we have a INPUT_ONLY
2631         window.
2632
2633         * gtk/gtkentry.[ch]: Add a cursor_color property to set the
2634         foreground color for the cursor.
2635
2636 Mon Apr  2 15:06:13 2001  Owen Taylor  <otaylor@redhat.com>
2637
2638         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Reference 
2639         param spec when caching property values, since we unref it
2640         later when we free the style.
2641
2642         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Dont' free
2643         values since they are retrieved with G_VALUE_NO_COPY_CONTENTS.
2644
2645 Mon Apr  2 10:47:57 2001  Owen Taylor  <otaylor@redhat.com>
2646
2647         * gtk/gtkwidget.c (gtk_widget_class_init): Fix 
2648         G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
2649         stupidity.
2650
2651 Mon Apr  2 00:51:11 2001  Owen Taylor  <otaylor@redhat.com>
2652
2653         [ First pass at adding style properties. Still needs some definite
2654         fine-tuning. ]
2655
2656         * gtk/gtkbutton.c: Add ::default_spacing style property.
2657          
2658         * gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
2659         ::indicator_spacing style properties.
2660
2661         * gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
2662         style properties.
2663
2664         * gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
2665         rather than a normal property.
2666
2667         * gtk/gtkwidget.c: Add an ::interior_focus style property to
2668         draw focus inside buttons, in the Windows/Java Metal/etc. style.
2669
2670         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
2671         Honor ::interior_focus.
2672         
2673         * gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is 
2674         TRUE.
2675
2676         * gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
2677         Add ::slider_width, ::trough_border, ::stepper_size,
2678         ::stepper_spacing style properties.
2679
2680         * gtk/gtkscale.[ch] Add ::slider-length style property.
2681
2682 2001-04-02 Alexander Larsson   <alexl@redhat.com>
2683
2684         * gdk/linux-fb/gdkwindow-fb.c:
2685         Add gdk_window_begin_resize_drag and gdk_window_begin_move_drag. Remove some
2686         warnings that were spewed on startup.
2687
2688         * gtk/gtkwindow-decorate.c:
2689         gtk_window_reposition -> _gtk_window_reposition
2690
2691 Sun Apr  1 21:37:22 2001  Owen Taylor  <otaylor@redhat.com>
2692
2693         * gtk/gtkwidget.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
2694         Add boxed type for GtkRequistion. Use it for ::size-request.
2695
2696         * gtk/gtkstyle.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
2697         Add a new GtkBorder structure useful for geometry properties
2698         for widgets. Add corresponding GTK_TYPE_BORDER.
2699         
2700         * gtk/gtkwidget.c (gtk_widget_class_install_style_property):
2701         Support automatic parser selection like
2702         gtk_settings_install_property_parser().
2703
2704         * gtk/gtksettings.c (_gtk_rc_property_select_parser): Export
2705         functionality for use by gtk_widget_class_install_style_property.
2706         Support GTK_TYPE_BORDER, GTK_TYPE_REQUISITION.
2707
2708 Sun Apr  1 20:48:59 2001  Owen Taylor  <otaylor@redhat.com>
2709
2710         * gtk/gtkentry.c (gtk_entry_class_init): Make invisible-char
2711         g_param_spec_unichar(). 
2712
2713 Sun Apr  1 23:41:37 2001  Tim Janik  <timj@gtk.org>
2714
2715         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): raise window for non
2716         _NET window managers.
2717
2718         * gtk/gtkmenufactory.[hc]: cvs removed those files now.
2719
2720 Sun Apr  1 08:00:13 2001  Tim Janik  <timj@gtk.org>
2721
2722         * gtk/gtkwidget.[hc]: got rid of gtk_widget_popup(), a function that
2723         bad needs to be nuked, not just deprecated.
2724
2725         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): don't use 
2726         gtk_widget_popup().
2727
2728         * gtk/*.[hc]: s/activate_mnemonic/mnemonic_activate/g;
2729         
2730         * gtk/gtkmenufactory.[hc]: removed this long-standingly deprecated
2731         widget.
2732         
2733         * docs/Changes-2.0.txt: updates.
2734         
2735 Sun Apr  1 01:02:54 2001  Jonathan Blandford  <jrb@redhat.com>
2736
2737         * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed):
2738         for (i = 0; i < 100; i ++)
2739           g_print ("I will confirm it compile before committing\n");
2740
2741 Sun Apr  1 00:52:06 2001  Jonathan Blandford  <jrb@redhat.com>
2742
2743         * gtk/gtktreestore.c: Initial work on implementing the
2744         GtkTreeSortable interface.  Basicaly a big cut'n'paste job.
2745
2746 Sun Apr  1 03:28:14 2001  Tim Janik  <timj@gtk.org>
2747
2748         * gtk/gtkwidget.c: fixed a bunch of notifications, added
2749         reference counts around emissions where the widget is used afterwards.
2750         added freeze/thaws around multiple properties being notified.
2751         (_gtk_widget_get_aux_info): cleanups.
2752         
2753         * gtk/gtksettings.c (gtk_settings_install_property): provide
2754         default parsing functions for gdkcolor, enums and flags.
2755
2756         * gtk/gtkwindow.[hc]: partially reverted patch from havoc,
2757         applied by owen.
2758         backed out gtk_window_get_location(), gtk_window_set_location(),
2759         gtk_window_get_size() and gtk_window_set_size(), these
2760         have to be sorted out wrg x/y/width/height/default_with/default_height
2761         properties.
2762         kept a flag in GtkWindowGeometryInfo to handle user
2763         resetting default sizes.
2764         cleaned up ZVT comments.
2765         bunch of assorted bug fixes, notification fixes.
2766         (_gtk_window_reposition): make this a really internal function.
2767         
2768         * gtk/testgtk.c: fixups.
2769         
2770 2001-03-31  Hans Breuer  <hans@breuer.org>
2771
2772         * config.h.win32.in : disable USE_MMX for msvc build cause
2773         the assembler doesn't fit and is out of my scope. Disable
2774         USE_GMODULE for msvc build as wel. The right way to share
2775         binaries on win32 would be to use libtiff.dll etc. To reduce
2776         installation hassles IMO it's better to include all fileformats
2777         builtin to gdk-pixbuf
2778
2779         * gdk-pixbuf/makefile.msc : new file
2780
2781         * gdk/gdk.def : updated
2782
2783         * gdk/win32/gdkevents-win32.c : don't erase the background if
2784         .no_bg is set. It improves the scrolling (e.g. of testgtk main
2785         buttons
2786         * gdk/win32/gdkgeometry-win32.c : added comment about the above
2787
2788         * gdk/win32/gdkwindow-win32.c : added three new functions like
2789         the X version. Only one is implemented, because the other two
2790         "gdk_window_begin_(resize|move)_drag" got no docs and appear to
2791         be default behaviour on win32 anyway ...
2792
2793         * gtk/gtk.def : updated
2794
2795         * gtk/makefile.msc.in : update for new files, use glib-genmarshal
2796         from where it was built and add an additional rule to automagically
2797         build gtkmarshal.[hc]
2798
2799         * gtk/gtkfilesel.c (open_new_dir) : don't increase n_entries
2800         before array access for the current entry isn't finished
2801
2802         * gtk/gtktreeitem.c (gtk_tree_item_subtree_button_click) :
2803         use g_return_val_if_fail
2804
2805         * gtk/testgtk.c (window_controls) : don't use the *wrong* size
2806         for the static array, but let the compiler calculate it. It
2807         makes me wonder if gcc isn't capable to catch bugs like this ...
2808
2809 2001-03-31  James Henstridge  <james@daa.com.au>
2810
2811         * gtk/gtkwidget.c (gtk_widget_size_adjust): fix use of magic
2812         constant "-1" in the aux info structure.
2813
2814 2001-03-30  Alexander Larsson  <alexl@redhat.com>
2815
2816         * gtk/gtkbutton.c (gtk_button_get_property):
2817         * gtk/gtklabel.c:
2818         Remove leaks.
2819         
2820         * gtk/gtkcontainer.c:
2821         * gtk/gtkhscale.c:
2822         * gtk/gtkhscrollbar.c:
2823         * gtk/gtklayout.c:
2824         * gtk/gtkmisc.c:
2825         * gtk/gtkprogress.c:
2826         * gtk/gtkprogressbar.c:
2827         * gtk/gtkrange.c:
2828         * gtk/gtktable.c:
2829         * gtk/gtkviewport.c:
2830         * gtk/gtkvscale.c:
2831         * gtk/gtkvscrollbar.c:
2832         * gtk/gtkwidget.c:
2833         Property patches, based on patches from John Margaglione and Lee Mallabone.
2834
2835 Thu Mar 29 21:20:38 2001  Mike Kestner  <mkestner@ameritech.net>
2836
2837         * gtk/gtkspinbutton.c : added value_changed signal which proxies for the
2838         adjustment. Cleaned redundant preconditions (spin != NULL). Added
2839         inline API function docs.
2840         (gtk_spin_button_new_with_range): New convenience constructor.
2841         (gtk_spin_button_set_increments): New adjustment helper.
2842         (gtk_spin_button_set_range): New adjustment helper.
2843
2844         * gtk/testgtk.c : added test of the new convenince constructor and
2845         value_changed signals.
2846
2847 Thu Mar 29 20:20:38 2001  Jonathan Blandford  <jrb@redhat.com>
2848
2849         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): Now we
2850         listen to the reorder signal.
2851
2852 Wed Mar 28 20:30:26 2001  Owen Taylor  <otaylor@redhat.com>
2853
2854         * gtk/gtkwidget.[ch] (_gtk_widget_get_aux_info): Add private function
2855         to get the aux info structure fo the widget.
2856
2857         * gtk/gtklabel.c gtk/gtkscrolledwindow.c gtk/gtkwindow.c: Use
2858         above function.
2859
2860         [ Patch from  Havoc Pennington  <hp@redhat.com> ]
2861
2862         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): function
2863         to get the size of the window manager frame, basically the same
2864         code that gdk_window_get_root_origin() had
2865         (gdk_window_get_root_origin): use gdk_window_get_frame_extents()
2866
2867         * gtk/gtkwindow.c (gtk_window_set_default_size): use
2868         gdk_window_resize() if the window is realized and resizeable
2869
2870         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): fix
2871         typo so that setting gravity works
2872
2873         * gtk/gtkwindow.c (gtk_window_move_resize): don't ever use
2874         allocation if auto_shrink is on, even if the default size
2875         has not changed.
2876
2877         * gtk/gtkwidget.c (gtk_widget_render_icon): remove bogus
2878         g_return_if_fail
2879
2880 Thu Mar 29 16:29:12 2001  Jonathan Blandford  <jrb@redhat.com>
2881
2882         * gtk/gtkliststore.c (gtk_list_store_iter_changed): Massive
2883         reordering/sorting work.  Now pretty much works.
2884
2885         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Lots of work to make
2886         reorder mostly work.  Still need to get the parity correct.
2887
2888         * gtk/gtktreeviewcolumn.c: Listen for "model" property changed
2889         signal, so I can listen for the sort_column_changed signal so I
2890         can change my "sort_indicator" property.  Cool.
2891
2892 Wed Mar 28 00:03:10 2001  Owen Taylor  <otaylor@redhat.com>
2893
2894         [ Patch from Havoc Pennington, hp@redhat.com ]
2895
2896         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c:
2897         Add functions gdk_window_begin_resize_drag/begin_move_drag
2898         to start resizing or moving a toplevel window. This
2899         is done either using the _NET_WM_MOVERESIZE protocol,
2900         or, if that isn't present, by emulation.
2901
2902         * gtk/gtkwindow.[ch]: Add functions gtk_begin_move/resize_drag
2903         to export the above to GTK+-land.
2904
2905         * gtk/gtkstyle.[ch]: Add ->draw_resize_grip() paint func.
2906         
2907         * gtk/gtkwindow.c gdk/gdkwindow.[ch] (gdk_window_constrain_size):
2908         Move this function into gdkwindow, since we need it
2909         when implementing fallback resizing.
2910
2911         * gdk/x11/gdkwindow-x11.c: gdk_window_set_geometry_hints.
2912         Fix typo when setting gravity.
2913
2914         * gtk/gtkstatusbar.[ch] (gtk_statusbar_set_has_resize_grip):
2915         Add an optional (but on by default) resize grip for resizing 
2916         the parent window.
2917
2918 01-03-29  Alexander Larsson  <alexl@redhat.com>
2919
2920         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
2921         Don't return TRUE from the event handler, that blocks all
2922         event signals on the tooltip widget. Now you can press buttons
2923         in toolbars again.
2924
2925 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
2926
2927         * gtk/testtext.c (create_buffer): Add missing NULL on
2928         valist.
2929
2930         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Fix
2931         c-n-p problem with INCONSISTENT property.
2932
2933         [ Patch from Havoc Pennington  <hp@redhat.com> ]
2934
2935         * gtk/gtkentry.h (struct _GtkEntryClass): add same populate_popup
2936         hook.
2937
2938         * gtk/gtktextview.h (struct _GtkTextViewClass): add populate_popup
2939         signal as a hook for extending the default popup menu
2940
2941         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
2942         use radio menu items for the input method menuitems
2943
2944         * gtk/gtkimcontextsimple.c (check_hex): do better validation of 
2945         inserted unicode from Ctrl-Shift-hex input method
2946
2947         * gtk/gtktextbtree.c (_gtk_text_btree_insert): remove utf8
2948         validatation here, already done at GtkTextBuffer level.
2949
2950         * gtk/gtkwidget.c (gtk_widget_class_init): add binding set, add
2951         popup_menu run action signal and Shift+F10 and Menu keybindings.
2952
2953         * gtk/gtkentry.c: implement a default handler for popup_menu
2954
2955         * gtk/gtktextview.c: implement a default handler for popup_menu
2956
2957         * gtk/gtkmenu.c (gtk_menu_popup): select first item if popup is
2958         from a key event
2959         
2960         * gtk/gtklabel.c: remove "trailer" cruft
2961
2962 Wed Mar 28 17:27:12 2001  Jonathan Blandford  <jrb@redhat.com>
2963
2964         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): new function to
2965         handle reordering of trees.  Seems to mostly work w/ the exception
2966         of the parity flag.
2967
2968         * gtk/gtktreeview.c (gtk_tree_view_reordered): handle "reordered"
2969         signal.
2970
2971 Wed Mar 28 21:12:37 2001  Tim Janik  <timj@gtk.org>
2972
2973         * gtk/gtkwidget.h: c++ fixes.
2974
2975 Sun Mar 25 15:51:28 2001  Owen Taylor  <otaylor@redhat.com>
2976
2977         * gtk/gtksettings.c (gtk_settings_init): Fix use of uninitialized
2978         memory.
2979
2980 Tue Mar 27 22:36:07 2001  Owen Taylor  <otaylor@redhat.com>
2981
2982         * gtk/gtkwidget.h gtk/gtkrange.h: Apply patch from 
2983         Nils Barth fixing event return values. (#51041)
2984
2985         * gtk/gtkwidget.c: Fix some return values for default
2986         functions.
2987
2988         * gtk/gtk[vh]scrollbar.c gtk/gtk[vh]range.c: Fix
2989         return values for trough_keys functions.
2990
2991         * gtk/gtkwidget.h (struct _GtkWidgetClass): Fix return
2992         value for add_accelerator (shoudl have been a void
2993         return.)
2994
2995         * gtk/gtkcellrenderer.[ch]: gtkcellrenderertoggle.h:
2996         Fix return type of EVENT.
2997
2998         * gtk/gtkmarshal.list gtk/gtktexttag.c: Make EVENT
2999         signal return a boolean.
3000
3001 Tue Mar 27 22:07:44 2001  Jonathan Blandford  <jrb@redhat.com>
3002
3003         * gtk/gtkliststore.c (gtk_list_store_sort): Fix arguments to
3004         reordered signal.
3005
3006         * tests/testtreesort.c (main): fix spelling.
3007
3008 Tue Mar 27 20:55:29 2001  Jonathan Blandford  <jrb@redhat.com>
3009
3010         * gtk/gtkliststore.c: More work on implementing sortable
3011         interface.
3012
3013 Mon Mar 26 15:48:45 2001  Owen Taylor  <otaylor@redhat.com>
3014
3015         * gtk/gtkwindow.c (gtk_window_list_toplevels): Don't
3016         reference the widgets in the resulting list. (#11821)
3017         This makes this consistent with gtk_container_children.
3018
3019         * gtk/gtkwindow.c gtk/gtkwidget.c: Fix up the two
3020         uses of gtk_window_list_toplevels.
3021
3022 Mon Mar 26 15:26:17 2001  Owen Taylor  <otaylor@redhat.com>
3023
3024         * gtk/gtkimcontext.c (gtk_im_context_set_use_preedit): Add
3025         a virtual function to set whether the IM context should use 
3026         the preedit string. (#51922)
3027         
3028 Mon Mar 26 14:42:59 2001  Owen Taylor  <otaylor@redhat.com>
3029
3030         * gdk/gdkpango.h: Remove stale FIXME comment.
3031
3032 2001-03-26  Alexander Larsson  <alla@lysator.liu.se>
3033
3034         * gtk/gtkfilesel.c (gtk_file_selection_get_filename):
3035         Fixed bug that returned NULL if a filename was selected.
3036
3037 2001-03-24  Havoc Pennington  <hp@pobox.com>
3038
3039         * gtk/gtkthemes.c (gtk_theme_engine_load): improve error message
3040         to contain the word "theme"
3041
3042 2001-03-24  Havoc Pennington  <hp@pobox.com>
3043
3044         * gtk/gtkhsv.c (gtk_hsv_move): make motion around the ring much
3045         slower but finer-grained
3046         (gtk_hsv_focus): get initial focus on the ring or triangle 
3047         according to tab direction
3048
3049         * gtk/testgtk.c (main): get rid of weird sleep(1) on exit
3050
3051 2001-03-23  Havoc Pennington  <hp@pobox.com>
3052
3053         * gtk/gtkhsv.c: make this somewhat key-navigable
3054
3055         * gtk/gtkfontsel.c: mnemonics
3056
3057         * gtk/gtkgamma.c: mnemonics
3058
3059         * gtk/gtkcolorsel.c: add mnemonics to labels
3060
3061 2001-03-22  Havoc Pennington  <hp@pobox.com>
3062
3063         Applied big patch from Seth Lytle to fix event handler return
3064         values, slightly modified.
3065
3066         * gtk/gtkcalendar.c (gtk_calendar_button_press): return TRUE if
3067         handled.
3068         (gtk_calendar_key_press): return TRUE for GDK_space triggers
3069         select_day
3070
3071         * gtk/gtkclist.c (gtk_clist_button_press): return TRUE if handled
3072         (gtk_clist_button_release): return TRUE if handled
3073
3074         * gtk/gtkcolorsel.c (mouse_release):
3075         (palette_activate): 
3076         (palette_press): 
3077         (palette_new): 
3078         (mouse_press): 
3079         (get_screen_color): 
3080         fixed return type (void to gboolean), return TRUE,
3081         added GTK_SIGNAL_FUNC cast
3082
3083         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fixed return type
3084         (void to gboolean), and return TRUE
3085         (gtk_combo_button_release): changed return value to TRUE after
3086         gtk_grab_add on combo->popwin
3087
3088         * gtk/gtkctree.c (gtk_ctree_button_press): return TRUE if triggers a
3089         collapse or expand
3090
3091         * gtk/gtkcurve.c (gtk_curve_graph_events): return TRUE for
3092         button/motion
3093
3094         * gtk/gtkdnd.c (gtk_drag_source_event_cb): return TRUE for button
3095         press/release and motion that trigger act
3096
3097         * gtk/gtkentry.c (gtk_entry_button_release): return TRUE
3098
3099         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): return TRUE
3100         for GDK_Return
3101         
3102         * gtk/gtklist.c (gtk_list_button_press): return TRUE mostly
3103         (gtk_list_button_release): return TRUE if selection
3104
3105         * gtk/gtklistitem.c (gtk_list_item_button_press): return TRUE on
3106         press
3107
3108         * gtk/gtkmenushell.c (gtk_menu_shell_button_press):
3109         (gtk_menu_shell_button_release): chain parent_menu_shell retval
3110
3111         * gtk/gtknotebook.c (gtk_notebook_button_press): return FALSE if
3112         nothing triggered
3113         (gtk_notebook_button_release): return TRUE if we do anything
3114
3115         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): 
3116         (gtk_spin_button_button_release): return TRUE or chained retval
3117
3118         * gtk/gtktext.c (gtk_text_button_press): 
3119         (gtk_text_button_release): return TRUE
3120         (gtk_text_key_press): remove redundant retval code
3121         
3122         * gtk/gtktreeitem.c (gtk_tree_item_button_press): return TRUE if button
3123         and sensitive
3124         (gtk_tree_item_subtree_button_click): changed type to gint, and return
3125         TRUE if sensitive
3126
3127         * gtk/gtktooltips.c (gtk_tooltips_event_handler): deactivate implies 
3128         return TRUE
3129
3130 2001-03-23  Havoc Pennington  <hp@redhat.com>
3131
3132         * gtk/testgtk.c: fix warnings
3133
3134         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): fix return value
3135
3136         * gtk/gtktextview.c: fix warnings
3137
3138         * gtk/gtktext.c (find_cursor_at_line): fix warning
3139
3140         * gtk/gtkselection.c (gtk_selection_notify): fix warning 
3141
3142         * gtk/gtkitemfactory.c (gtk_item_factory_menu_pos): fix signature
3143         of this function
3144
3145         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
3146         fix warning
3147
3148         * gtk/gtkhandlebox.c (gtk_handle_box_style_set): fix warning
3149
3150         * gtk/gtkfontsel.c: fix warning
3151
3152         * gtk/gtkcolorsel.c: fix warnings
3153
3154 2001-03-23  Havoc Pennington  <hp@redhat.com>
3155
3156         * gtk/gtkhandlebox.c: Apply property patch from Lee Mallabone
3157
3158         * gtk/gtkbox.c: Apply property patch from Lee Mallabone
3159
3160         * gtk/gtkcheckmenuitem.c: Apply property patch from Lee Mallabone,
3161         and deprecated gtk_check_menu_item_set_show_toggle().
3162         
3163         * gtk/gtkbutton.c: Apply property patch from Lee Mallabone
3164
3165         * gtk/gtkfilesel.c: Apply property patch from Lee Mallabone
3166
3167         * gtk/gtkframe.c: Apply property patch from Lee Mallabone
3168
3169 2001-03-23  Havoc Pennington  <hp@redhat.com>
3170
3171         * gtk/gtktoolbar.c, gtk/gtkimcontext.c, gtk/gtklabel.c: fix up
3172         some docs
3173
3174 Fri Mar 23 16:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
3175
3176         * gtk/gtktreeviewcolumn.h (GtkCellDataFunc): Forgot to namespace
3177         this.
3178
3179         * gtk/gtktreestore.c (gtk_tree_store_set_value): change from
3180         set_cell to set_value
3181
3182         * gtk/gtkliststore.c (gtk_list_store_set_value): change from
3183         set_cell to set_value
3184
3185 Thu Mar 22 19:27:34 2001  Jonathan Blandford  <jrb@redhat.com>
3186
3187         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
3188         fix braino.
3189         * gtk/gtktreesortable.[ch]: New interface to add cleanup sortable
3190         support.
3191
3192         * gtk/gtktreeview.c: Addition of initial sortable support.
3193
3194         * gtk/gtktreestore.c: Addition of initial sortable support.
3195
3196         * gtk/gtkliststore.c: Addition of initial sortable support.
3197
3198         * gtk/gtkmarshal.list: yet another marshaller.
3199
3200         * gtk/gtktreedatallist.[ch]: shared code between the store models
3201         for handling sorting headers.
3202
3203 2001-03-22  Havoc Pennington  <hp@redhat.com>
3204
3205         * gtk/gtkcontainer.c (gtk_container_set_focus_chain): 
3206         (gtk_container_unset_focus_chain): Add ability to override the 
3207         focus chain for a container explicitly
3208
3209 Thu Mar 22 13:01:44 2001  Tim Janik  <timj@gtk.org>
3210
3211         * gtk/gtklabel.[hc]: some cleanups, fixed mnemonic_widget handling,
3212         added PROP_MNEMONIC_WIDGET.
3213
3214         * gtk/gtkwindow.c (gtk_window_activate_mnemonic): 
3215         (gtk_window_remove_mnemonic): 
3216         (gtk_window_add_mnemonic): fixed assertions.
3217         (gtk_window_activate_mnemonic): constrain modifier checks to those
3218         permitted by gtk_accelerator_get_default_mod_mask().
3219         got rid of gtk_window_get_default_accel_group().
3220
3221         * gtk/gtkwidget.c (gtk_widget_real_activate_mnemonic): handle non
3222         activatable widgets either by focussing or a warning.
3223         added a signal accumulator to ::activate_mnemonic which stops the
3224         emission once a handler returned TRUE.
3225
3226 2001-03-22  Havoc Pennington  <hp@pobox.com>
3227
3228         * gtk/gtktoolbar.c (gtk_toolbar_insert_stock): handle mnemonics in
3229         the stock item label
3230
3231         * gtk/gtklabel.c: s/@gtk_func/gtk_func()/ in docs
3232
3233         * gtk/gtkstock.c (builtin_items): add mnemonics where missing
3234
3235         * demos/gtk-demo/*.c: Add mnemonics all over the place
3236
3237         * gtk/gtklabel.h: mark parse_uline deprecated
3238
3239 2001-03-21  Alexander Larsson  <alexl@redhat.com>
3240
3241         * gtk/gtkitemfactory.[ch]:
3242         Add support for stock and normal imagemenuitems.
3243         
3244         * gtk/testgtk.c:
3245         Add some tests for mnemonics, stock toolbars, stock
3246         and image menuitems in itemfactory and gdk_window_scroll.
3247
3248 2001-03-21  Alexander Larsson  <alexl@redhat.com>
3249
3250         * gtk/gtkbutton.[ch]:
3251         * gtk/gtkdialog.c:
3252         Renamed gtk_button_new_stock() to gtk_button_new_from_stock() and
3253         removed accel_group argument. Renamed gtk_button_new_accel() to
3254         gtk_button_new_with_mnemonic() and removed accel_group argument.
3255
3256         * gtk/gtkcheckbutton.[ch]:
3257         New function gtk_check_button_new_with_mnemonic().
3258
3259         * gtk/gtkentry.c:
3260         Override activate_mnemonic and just grab focus.
3261
3262         * gtk/gtkitemfactory.c:
3263         Don't add menu uline accel group, instead use mnemonics support.
3264
3265         * gtk/gtklabel.[ch]:
3266         New support for mnemonics.
3267
3268         * gtk/gtkmarshal.list:
3269         Needed BOOLEAN:BOOLEAN for activate_mnemonic.
3270
3271         * gtk/gtkmenu.[c]:
3272         * gtkmenushell.c:
3273         Use mnemonics instead of accel groups for uline
3274         support in menu items.
3275         Removed gtk_menu_get_uline_accel_group() and
3276         gtk_menu_ensure_uline_accel_group().
3277
3278         * gtk/gtkmenuitem.c:
3279         Override activate_mnemonic to handle switching between
3280         menu items if there are collisions.
3281         
3282         * gtk/gtknotebook.c:
3283         Connect to activate_mnemonic on the tab_label, so that
3284         activating it switches to that notebook page.
3285
3286         * gtk/gtkwidget.[ch]:
3287         Add activate_mnemonic signal. New function
3288         gtk_widget_activate_mnemonic() to emit it.
3289         Default implementation does activate/grab_focus.
3290
3291         * gtk/gtkwindow.[ch]:
3292         Add support for mnemonics in windows.
3293         New functions:
3294         gtk_window_add_mnemonic, gtk_window_remove_mnemonic,
3295         gtk_window_activate_mnemonic, gtk_window_set_mnemonic_modifier
3296
3297         * gtk/testgtk.c:
3298         Update to function name changes.
3299         
3300 2001-03-21  Alexander Larsson  <alexl@redhat.com>
3301
3302         * gtk/gtkimagemenuitem.[c]:
3303         Add gtk_image_menu_item_new_from_stock()
3304
3305 Tue Mar 20 15:00:43 2001  Jonathan Blandford  <jrb@redhat.com>
3306
3307         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
3308         Fix buglet in meeting.
3309
3310 2001-03-19  Havoc Pennington  <hp@redhat.com>
3311
3312         * gtk/gtkiconfactory.c: Make GtkIconSource an opaque datatype, and
3313         add a bunch of accessor functions. This is because we have
3314         reasonable expectations of extending what fields it contains in
3315         the future.
3316
3317         * gtk/gtkstyle.c (gtk_default_render_icon): adapt to icon source
3318         changes
3319
3320         * gtk/gtkrc.c (gtk_rc_parse_icon_source): fix to use new
3321         GtkIconSource   
3322
3323 Mon Mar 19 15:53:36 2001  Owen Taylor  <otaylor@redhat.com>
3324
3325         * gtk/gtkitemfactory.c gtk/testgtk.c: Handle quoting of / with \; properly
3326         handle __ in paths, quote " and \n in gtk_item_factory_dump_items().
3327
3328         * gtk/gtkadjustment.[ch] gtk/gtkclist.c gtk/gtkhruler.c gtk/gtklayout.c 
3329           gtk/gtklist.c gtk/gtkprogress.[ch] gtk/gtkprogressbar.[ch] gtk/gtkrange.[ch]
3330           gtk/gtkruler.[ch] gtk/gtkscale.c gtk/gtkscrolledwindow.c gtk/gtkspinbutton.[ch]
3331           gtk/gtktext.c gtk/gtktextview.c gtk/gtkvruler.c gtk/testgtk.c:
3332         Change float to double everywhere with the exception of 0<->1.0 alignment
3333         and GtkCurve.
3334
3335 2001-03-19  Tor Lillqvist  <tml@iki.fi>
3336
3337         * gdk/win32/gdkdrawable-win32.c
3338         * gdk/win32/gdkimage-win32.c: Use correct casts in debugging
3339         output.
3340
3341         * demos/testpixbuf-drawable.c: If GDK_WINDOWING_WIN32, include
3342         gdkwin32.h.
3343
3344 2001-03-18  Tor Lillqvist  <tml@iki.fi>
3345
3346         * gdk/win32/gdkevents-win32.c (print_window_state): New function.
3347         print_event_state, print_event): Use preprocessor macro to make
3348         code more compact. Print also GDK_WINDOW_STATE events.
3349         (synthesize_crossing_events): Remove the old #ifdeffed-out code.
3350         
3351         * gtk/gtk.def
3352         * gtk/makefile.mingw.in: Update.
3353
3354         * gtk/gtkmain.h: Check for G_PLATFORM_WIN32, not only G_OS_WIN32,
3355         to catch also Cygwin.
3356
3357 Sun Mar 18 01:15:30 2001  Tim Janik  <timj@gtk.org>
3358
3359         * gtk/gtkspinbutton.[hc]: added rc-style argument
3360         GtkSpinButton::shadow_type.
3361         removed spin_button->shadow_type, gtk_spin_button_set_shadow_type()
3362         and ARG_SHADOW_TYPE as it doesn' make much sense to try to override
3363         rc-style settings.
3364
3365         * gtk/gtkfixed.c: removed gtk_fixed_paint() (was unused).
3366
3367         * gtk/gtkwidget.c: quark cleanups.
3368
3369         * gtk/gtkrc.[hc]: added gtk_rc_scanner_new() to create an rc-file
3370         scanner with appropriate configuration, renamed GtkRcStyleClass.clone
3371         to create_rc_style() (we don't do cloning in standard OO sense).
3372         added per rc style properties.
3373         
3374         * gtk/gtkstyle.[hc]: added code to retrive pspec conformant rc-style
3375         property values and for caching those. some cleanups.
3376         
3377         * gtk/Makefile.am: -DG_DISABLE_CONST_RETURNS.
3378         
3379         * gtk/gtksettings.[hc]: new file for global rc-file properties
3380         (at least currently, should get extended to support X properties
3381         and other communication mechanisms).
3382         
3383         * gtk/gtkwidget.[hc]: added style property support:
3384         (gtk_widget_class_install_style_property_parser): install style
3385         property pspec with parser function for rc-file values other
3386         than LONG, DOUBLE or STRING.
3387         (gtk_widget_class_install_style_property): same as above without
3388         parser (parsers are going to be needed quite infrequently).
3389         (gtk_widget_style_get_property): retrive style property value.
3390         (gtk_widget_style_get_valist): same as above with varargs support,
3391         has NOCOPY semantics.
3392         (gtk_widget_style_get): wrapper around gtk_widget_style_get_valist().
3393
3394 Fri Mar 16 18:24:53 2001  Jonathan Blandford  <jrb@redhat.com>
3395
3396         * demos/gtk-demo/main.c (row_activated_cb): modified to use
3397         "row_activated" signal.
3398
3399         * gtk/gtktreeview.c (gtk_tree_view_row_activated): oh, the
3400         stupidity.  Lets actually pass in the row with this signal...
3401
3402 Fri Mar 16 18:01:17 2001  Jonathan Blandford  <jrb@redhat.com>
3403
3404         * gtk/gtktreeviewcolumn.[ch]: s/GTK_TREE_COLUMN/GTK_TREE_VIEW_COLUMN
3405
3406         * gtk/gtktreeview.c (gtk_tree_view_row_activated): New signal.
3407
3408         * gtk/gtktreeview.c (gtk_tree_view_destroy): moved pretty much
3409         everything into the ::destroy function, and freed a lot more.
3410
3411 2001-03-16  Havoc Pennington  <hp@redhat.com>
3412
3413         * gtk/gtkwidget.h (struct _GtkWidgetAuxInfo): change to use gint
3414         instead of gint16, to avoid overflow issues, since sizes > 16-bit
3415         are now allowed.
3416
3417 2001-03-16  Havoc Pennington  <hp@redhat.com>
3418
3419         * Applied patch from Nils Barth (bug # 51041) to 
3420         replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
3421         in various places.
3422
3423 2001-03-15  Havoc Pennington  <hp@redhat.com>
3424         
3425         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): add varargs 
3426         for properties to set on the tag.
3427
3428         * gtk/testtext.c: fixups to reflect create_tag change
3429         
3430         * gtk/gtktexttag.c (gtk_text_tag_set_property):
3431         background/foreground stipple are objects, not boxed.
3432
3433         * demos/gtk-demo/textview.c: intellihancing
3434
3435 Fri Mar 16 11:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
3436
3437         * gtk/gtktreeview.c (gtk_tree_view_set_model): Fixed some
3438         braindeadness spotted by Jamie Strachan <frostfreek@yahoo.com>.
3439
3440 2001-03-16  Alexander Larsson  <alexl@redhat.com>
3441
3442         * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
3443         Fix sign error with queued region translations.
3444
3445 2001-03-15  HideToshi Tajima  <tajima@happy>
3446
3447         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
3448         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_location):
3449         * gtk/gtkentry.c (update_im_cursor_location): 
3450         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_location):
3451         * gtk/gtkimcontext.h (struct _GtkIMContextClass): rename
3452         set_cursor_pos to set_cursor_location in GtkInputContext class
3453
3454 Thu Mar 15 18:22:44 2001  Jonathan Blandford  <jrb@redhat.com>
3455
3456         * gtk/gtkcellrenderer.h: Changed prototype to allow for getting
3457         the location of the cell relative to its area.
3458         * gtk/gtkcell*: modified for above change
3459         * gtk/gtktreeview.c: modified for above change.
3460
3461 Wed Mar 14 13:58:32 2001  Jonathan Blandford  <jrb@redhat.com>
3462
3463         * gtk/gtktreeview.c (gtk_tree_view_set_model): Ref the model.
3464          (gtk_tree_view_finalize): actually unref the model.  Thanks to
3465         Jamie Strachan <frostfreek@yahoo.com> for noticing this error.
3466
3467 2001-03-14  Havoc Pennington  <hp@redhat.com>
3468
3469         * gtk/gtkdata.h, gtk/gtkdata.c: Delete.
3470         
3471         * gtk/gtk.h: remove gtkdata.h
3472
3473         * gtk/Makefile.am: remove gtkdata
3474         
3475         * gtk/gtktext.c (gtk_text_set_adjustments): connect to "destroy"
3476         not "disconnect" on the adjustments.
3477         
3478         * gtk/gtktooltips.h, gtk/gtktooltips.c: derive from GtkObject not
3479         GtkData
3480
3481         * gtk/gtkadjustment.h, gtk/gtkadjustment.c: derive from GtkObject
3482         not GtkData
3483
3484         * configure.in: handle case where X render exists, but Pango lacks
3485         Xft support.
3486
3487 2001-03-15 Alexander Larsson  <alexl@redhat.com>
3488
3489         * gtk/gtktoolbar.[ch]:
3490         New functions gtk_toolbar_set_icon_size and gtk_toolbar_insert_stock
3491         to add stock items to toolbars.
3492
3493         * gtk/Makefile.am:
3494         Remove ../gdk/gdkim.h from gdk_headers.
3495
3496 2001-03-15  Sven Neumann  <sven@gimp.org>
3497
3498         * gdk/gdkim.h: removed
3499         
3500         * gdk/gdkprivate.h
3501         * gdk/x11/gdkim-x11.c: do not include gdkim.h 
3502
3503 2001-03-14  HideToshi Tajima  <tajima@happy.sunsoft.eng.sun.com>
3504
3505         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_pos):
3506         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_pos):
3507         * gtk/gtkimcontext.h (struct _GtkIMContextClass): add
3508         set_cursor_pos() virtual method
3509
3510         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_class_init):
3511         (gtk_im_context_xim_set_cursor_pos): add implementation for
3512         set_cursor_pos() method
3513
3514         * gtk/gtkentry.c (recompute_idle_func): set current cursor
3515         position to input methods
3516
3517 Mon Mar 12 21:02:08 2001  Jonathan Blandford  <jrb@redhat.com>
3518
3519         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Fix up focus
3520         code a lot.
3521
3522         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): use
3523         g_mem_chunk.
3524         (_gtk_tree_data_list_alloc): use g_mem_chunk.
3525         (_gtk_tree_data_list_node_to_value): Fix to switch on
3526         G_TYPE_FUNDAMENTAL.
3527         (_gtk_tree_data_list_value_to_node): Fix to switch on
3528         G_TYPE_FUNDAMENTAL.
3529         (_gtk_tree_data_list_node_copy): Fix to switch on
3530         G_TYPE_FUNDAMENTAL.
3531
3532 2001-03-12  Havoc Pennington  <hp@redhat.com>
3533
3534         * gtk/gtkwindow.c (gtk_window_class_init): Patch from John Margaglione 
3535         to convert to new property API. Also, change default_width and
3536         default_height get_property to return 0 as the flag value for
3537         "unset"; -1 is not a valid value for these fields.
3538
3539 2001-03-12  Havoc Pennington  <hp@redhat.com>
3540
3541         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: Switch to using an
3542         enum with registration for icon sizes, instead of strings.
3543
3544         * gtkimage.h, gtkimage.c, gtkstyle.h, gtkstyle.c, gtkwidget.h, 
3545         gtkwidget.c: Fix to reflect GtkIconSize
3546         
3547 2001-03-12  Alexander Larsson  <alexl@redhat.com>
3548
3549         Make GtkFB compile and link.
3550         
3551         * gdk/linux-fb/gdkdrawable-fb2.c:
3552         window->mapped to GDK_WINDOW_IS_MAPPED(). 
3553         
3554         * gdk/linux-fb/gdkwindow-fb.c:
3555         window->mapped to GDK_WINDOW_IS_MAPPED(). 
3556         Added gdk_window_shape_combine_region.
3557         Added assorted placeholders for unimplemented new GdkWindow API calls.
3558
3559 2001-03-12  Alexander Larsson  <alexl@redhat.com>
3560
3561         * gtk/gtkfilesel.c:
3562         Add more test when converting filenames from/to utf-8.
3563         Don't allow entering text in the filename entry which isn't allowed in
3564         a filename. Just beep instead.
3565
3566 2001-03-12  Alexander Larsson  <alexl@redhat.com>
3567
3568         * gtk/gtkclist.c:
3569         Scroll using gdk_window_scroll(). Don't wait for exposes.
3570         Move the column headers in an order that makes them flash less.
3571
3572 2001-03-10  Hans Breuer  <hans@breuer.org>
3573
3574         * gdk/gdk.def : updated
3575
3576         * gdk/win32/gdkgc-win32.c : pixmaps are visible again, due
3577         to offseting the clip_mask at the right place
3578
3579         * gdk/win32/gdkwindow-win32.c : don't create background brushes
3580         for all the gdkClasses, especially not for the input_only case.
3581         Otherwise flickering wont be avoidable, because we don't get
3582         WM_ERASEBKGND message for these windows.
3583
3584         * gdk/win32/gdkevents-win32.c : initialize event->expose.region
3585         and fixed massive redraw problems apparently triggered by Alexanders 
3586         recent change. Not fully understood the GDK_EXPOSE / WM_PAINT handling
3587         but it seems to work quite well :-)
3588
3589         * gdk/win32/gdkprivate-win32.h : added _gdk_window_process_expose
3590         prototype
3591
3592 Sat Mar 10 12:15:31 2001  Jonathan Blandford  <jrb@redhat.com>
3593
3594         * gtk/gtktreestore.c (gtk_tree_store_set_cell): Fix a stupid typo.
3595         (gtk_list_store_set_cell): Fix a stupid typo.
3596
3597 Fri Mar  9 20:36:21 2001  Jonathan Blandford  <jrb@redhat.com>
3598
3599         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): Make
3600         select_all not work if you're in SINGLE mode (it doesn't make that
3601         much sense, anyway.)
3602
3603         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
3604         handle types more sanely.
3605         (_gtk_tree_data_list_value_to_node): handle types more sanely.
3606         (_gtk_tree_data_list_node_copy): handle types more sanely.
3607
3608         * gtk/gtkliststore.c (gtk_list_store_set_cell): fix to work with
3609         GValue better. Converts the type as well.
3610
3611         * gtk/gtktreestore.c (gtk_tree_store_set_cell): fix to work with
3612         GValue better. Converts the type as well.
3613
3614 Wed Mar  7 20:47:41 2001  Owen Taylor  <otaylor@redhat.com>
3615
3616         * gtk/gtktext.c gtk/gtkoldeditable.[ch] gdk/gdk.[ch]
3617         gdk/Makefile.am gdk/x11/Makefile.am gdk/x11/gdkevents-x11.c 
3618         gdk/x11/gdkglobals-x11.c gdk/x11/gdkprivate-x11.c
3619         gdk/x11/gdkx.h gdk/x11/gdkim-x11.c: Remove old XIM code.
3620
3621         * gdk/win32/gdkim-win32.c gdk/linux-fb/gdkim-fb.c: Remove
3622         gdk_im/gdk_ic.
3623
3624 2001-03-09  Hans Breuer  <hans@breuer.org>
3625
3626         * gdk/gdk.def : updated
3627
3628         * gdk/win32/gdkevents-win32.c : don't ask input_only windows
3629         for their palette
3630
3631         * gdk/win32/gdkgeometry-win32.c : reflect GdkWindowObject::mapped
3632         removing
3633
3634         * gdk/win32/gdkwindow-win32.c : reflect GdkWindowObject::mapped
3635         removing and implemented Havoc's GdkWindow state functions; 
3636         stick/unstick only as no-op, cause I don't know how to emulate 
3637         on win32 ...
3638
3639         * gtk/gtk.def : updated
3640
3641         * gtk/gtkbox.c (gtk_box_get_spacing) : use g_return_val_if_fail ()
3642
3643         * gtk/gtktypeutils.c : #include <string.h>
3644
3645         * gtk/gtkwindow.h : declare gtk_window_set_decorated ()
3646
3647 Fri Mar  9 09:31:55 2001  Tim Janik  <timj@gtk.org>
3648
3649         * gtk/gtkwidget.c (gtk_widget_class_init): fixed signals with
3650         GDK_TYPE_DRAG_CONTEXT, it needs to be marshaled as an object,
3651         not a boxed.
3652
3653 2001-03-09  Alexander Larsson  <alexl@redhat.com>
3654
3655         * docs/Changes-2.0.txt:
3656         Document expose event->region change and that gtk_widget_event
3657         doesn't allow passing expose events.
3658
3659         * gdk/gdkevents.h:
3660         Add region to expose event.
3661         
3662         * gdk/gdkevents.c:
3663         Handle event->region in gdk_event_copy() and gdk_event_free().
3664
3665         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
3666         Generate expose_event->region when creating expose events.
3667
3668         * gdk/x11/gdkevents-x11.c:
3669         Generate expose events with regions when translating X events.
3670
3671         * gtk/gtkcontainer.[ch]:
3672         Default expose handler that propagates expose events to NO_WINDOW
3673         children. New function gtk_container_propagate_expose()
3674
3675         * gtk/gtkwidget.[ch]:
3676         Moved gtk_widget_event implementation to gtk_widget_event_internal.
3677         gtk_widget_event calls gtk_widget_event_internal but doesn't allow
3678         expose events. New function gtk_widget_send_expose() to send expose
3679         events. New function gtk_widget_region_intersect() to calculate
3680         window/region intersections.
3681         
3682         * gtk/gtkmain.c (gtk_main_do_event):
3683         Use gdk_window_begin_paint_region() instead of gdk_window_begin_paint_rect().
3684         Use gtk_widget_send_expose() to send expose events.
3685         
3686         * gtk/gtkbin.c:
3687         * gtk/gtkbox.c:
3688         * gtk/gtkfixed.c:
3689         * gtk/gtkimagemenuitem.c:
3690         * gtk/gtklist.c:
3691         * gtk/gtkpacker.c:
3692         * gtk/gtktable.c:
3693         * gtk/gtktree.c:
3694         Remove expose handler, using the default container implementation
3695         instead.
3696         
3697         * gtk/gtkbutton.c:
3698         * gtk/gtkcheckbutton.c:
3699         * gtk/gtkeventbox.c:
3700         * gtk/gtkfixed.c:
3701         * gtk/gtkhandlebox.c:
3702         * gtk/gtklayout.c:
3703         * gtk/gtklistitem.c:
3704         * gtk/gtkmenu.c:
3705         * gtk/gtkmenubar.c:
3706         * gtk/gtkmenuitem.c:
3707         * gtk/gtknotebook.c:
3708         * gtk/gtkoptionmenu.c:
3709         * gtk/gtkpaned.c:
3710         * gtk/gtkscrolledwindow.c:
3711         * gtk/gtktogglebutton.c:
3712         * gtk/gtktoolbar.c:
3713         * gtk/gtktreeitem.c:
3714         * gtk/gtkviewport.c:
3715         Chain expose handler to parent class handler. Use
3716         gtk_container_propagate_expose() to propagate exposes.
3717
3718         * gtk/gtkclist.c (check_exposures):
3719         * gtk/gtktext.c (process_exposes):
3720         Use gtk_widget_send_expose instead of gtk_widget_event.
3721
3722 Thu Mar  8 19:40:28 2001  Jonathan Blandford  <jrb@redhat.com>
3723
3724         * gtk/gtktreeview.c (gtk_tree_view_destroy): Add destroy function.
3725
3726 Thu Mar  8 19:18:27 2001  Jonathan Blandford  <jrb@redhat.com>
3727
3728         * gtk/gtktreeview.c (gtk_tree_view_unref_tree_helper): Actually
3729         unref the nodes.   Fixes bug #50058.
3730
3731         * gtk/gtktreemodel.c (gtk_tree_model_ref_node): change
3732         "::ref_iter" to "::ref_node".
3733         (gtk_tree_model_unref_node): change "::unref_iter" to
3734         "::unref_node". Fixes bug #50064.
3735
3736 Thu Mar  8 17:40:09 2001  Jonathan Blandford  <jrb@redhat.com>
3737
3738         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): add
3739         support for invisible cells.
3740          (gtk_tree_view_bin_expose): ditto
3741
3742 Thu Mar  8 16:36:00 2001  Jonathan Blandford  <jrb@redhat.com>
3743
3744         * gtk/gtktreemodel.c (gtk_tree_model_get_type): add prerequesite
3745         on gobjects.
3746
3747         * tests/testtreefocus.c (main): New test file.
3748
3749         * tests/testtreeview.c: update to latest glib changes.
3750
3751         * tests/testtreecolumns.c: update to latest glib changes.
3752
3753 Thu Mar  8 18:13:20 2001  Tim Janik  <timj@gtk.org>
3754
3755         * gtk/testgtk.c: re-enabled event watcher emission hooks.
3756
3757 Thu Mar  8 16:51:21 2001  Tim Janik  <timj@gtk.org>
3758
3759         * *.c: added accumulator data argument to g_signal_newc()
3760         functions.
3761
3762         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): 
3763         * gtk/gtktreeview.c (gtk_tree_view_setup_model): 
3764         * gtk/treestoretest.c (make_window):
3765         s/g_signal_connect/g_signal_connectc/.
3766
3767         * gtk/gtktextbuffer.c: completed signal arg fixups,
3768         they also needed G_SIGNAL_TYPE_STATIC_SCOPE flag.
3769
3770 Thu Mar  8 00:02:30 2001  Owen Taylor  <otaylor@redhat.com>
3771
3772         * gtk/gtkwidget.[ch] (gtk_widget_get_name): Make
3773         G_CONST_RETURN.
3774
3775         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add a 
3776         ::hierarchy-changed signal when a widget changes
3777         from anchored to unanchored or vice versa.
3778         (anchored means 
3779          gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW) != NULL.)
3780         Use a private flag to keep track of this efficiently.
3781
3782 2001-03-07  Havoc Pennington  <hp@redhat.com>
3783
3784         * gtk/testgtk.c (create_spins): uglify so that size request gets
3785         tested.
3786
3787         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Base size
3788         request on values for upper/lower, completes #6152
3789
3790 Wed Mar  7 20:07:22 2001  Owen Taylor  <otaylor@redhat.com>
3791
3792         * Makefile.am: Remove gtk-config-2.0 again.
3793         (Grrrr, pkg-config. And stops make loops.)
3794
3795 Thu Mar  8 00:18:29 2001  Tim Janik  <timj@gtk.org>
3796
3797         * gtk/gtksignal.[hc]: removed old emission hook API.
3798         
3799         * docs/Changes-2.0.txt: fixed sections.
3800         
3801         * gtk/gtktextbuffer.c: signal arg fixups.
3802
3803 2001-03-07  Havoc Pennington  <hp@redhat.com>
3804
3805         * gtk/gtktextview.c (invalidated_handler): use PRIORITY_VALIDATE
3806
3807         * gtk/gtktextview.h (GTK_TEXT_VIEW_PRIORITY_VALIDATE): add this
3808         here, bug #50368; changed to be GDK_PRIORITY_REDRAW + 5, instead
3809         of GDK_PRIORITY_REDRAW + 1, so you can insert stuff in between the
3810         validation and the redraw which is higher priority than the
3811         validation.
3812
3813 2001-03-07  Havoc Pennington  <hp@redhat.com>
3814
3815         * gtk/gtkentry.c (gtk_entry_get_property): remove trailer
3816         (gtk_entry_set_property): remove trailer
3817
3818         * gtk/gtkentry.c (gtk_entry_set_width_chars): 
3819         (gtk_entry_get_width_chars): new functions, to set size request to 
3820         a given number of characters
3821
3822         * gtk/testgtk.c (create_dialog): beef up the dialog test slightly
3823
3824         * gtk/gtkdialog.c (gtk_dialog_set_has_separator): new function
3825         (gtk_dialog_get_has_separator): new function
3826         (run_delete_handler): fix to not emit "response" signal
3827         because we already did in the delete event handler installed
3828         at dialog creation time.
3829         
3830         * gtk/gtkdialog.h: add a has_separator property,
3831         add GTK_DIALOG_NO_SEPARATOR flag
3832
3833 2001-03-07  Havoc Pennington  <hp@redhat.com>
3834
3835         * gtk/gtkwindow.c (gtk_window_set_decorated): new function, turns
3836         off decorations for a window.
3837
3838         * demos/gtk-demo/button_box.c (create_bbox): adapt to button box
3839         changes
3840
3841         * gtk/gtklabel.c (gtk_label_get_layout_offsets): new function 
3842         to get location of PangoLayout inside the label, closes #51198
3843
3844         * gtk/testgtk.c (create_bbox): fix up button box usage
3845
3846         * gtk/testcalendar.c (create_calendar): fix up button box usage
3847
3848         * gtk/gtkfilesel.c (gtk_file_selection_init): fixup buttonbox usage
3849
3850         * gtk/gtkdialog.c (gtk_dialog_init): fixup buttonbox usage
3851
3852         * gtk/gtkhbbox.h: deprecations
3853
3854         * gtk/gtkvbbox.h: deprecations
3855
3856         * gtk/gtkbox.c (gtk_box_get_spacing): new function, used to
3857         emulate deprecated gtk_button_box_get_spacing
3858
3859         * gtk/gtkbbox.h: deprecate some useless functions, remove entirely 
3860         the "set global default" functions
3861         (struct _GtkButtonBox): remove "spacing" field, use the one from 
3862         GtkBox base class
3863
3864         * gtk/gtkbbox.c (_gtk_button_box_child_requisition): rename with uscore
3865
3866         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): If we fail to
3867         render the icon, return the missing image icon.
3868
3869         * gtk/gtkimage.c (gtk_image_set_from_file): fall back to missing
3870         image icon if the load fails.   
3871
3872         * gtk/gtkstock.h (GTK_STOCK_MISSING_IMAGE): Add stock icon for use
3873         when no image is found; should be the Netscape "missing image"
3874         icon eventually but for now is a random image
3875
3876         * gtk/gtkwindow.c (gtk_window_set_role): new function, sets the 
3877         role for the session manager
3878
3879         * gtk/testgtk.c (dnd_drop): remove use of GTK_WINDOW_DIALOG
3880
3881         * gtk/gtkcompat.h (GTK_WINDOW_DIALOG): compat #define
3882         GTK_WINDOW_DIALOG GTK_WINDOW_TOPLEVEL
3883
3884         * gtk/gtkenums.h (enum GtkWindowType): remove GTK_WINDOW_DIALOG
3885
3886 Wed Mar  7 13:24:57 2001  Tim Janik  <timj@gtk.org>
3887
3888         * gtk/*.c: marshaller fixes.
3889         
3890         * gtk/gtkmarshal.list: extreme cleanup.
3891
3892         * gtk/gtktreeview.c (gtk_tree_view_class_init): disable interface
3893         param spec for now.
3894
3895         * gtk/gtktexttag.c (gtk_text_tag_set_property): use g_value_get_boxed()
3896         where appliable.
3897
3898         * gtk/gtktypeutils.[hc]: updates to GLib API changes.
3899         special cased autogenerated boxed types from gtktypebuiltins_ids.c
3900         which are not reference counted:
3901         GtkSelectionData, GdkEvent, GdkColor, GtkTextIter, PangoTabArray,
3902         PangoFontDescription, GtkTreeIter and GtkTreePath.
3903
3904 Thu Mar  1 03:58:56 2001  Tim Janik  <timj@gtk.org>
3905
3906         * gtk/gtktreeselection.h: 
3907         * gtk/gtktreemodel.c:
3908         * gtk/gtktreedatalist.[hc]: fixed includes. no gobject/*
3909         file should be included directly, and gobject/gmarshal.h
3910         as well as gtk/gtkmarshal.h even can't be included directly.
3911
3912         * Makefile.am: grr, install gtk-config-2.0.
3913
3914         * gtk/testgtk.c:
3915         * gtk/simple.c:
3916         * gtk/gtkmenu.c:
3917         * gtk/gtkitemfactory.c: use g_object_connect() instead of
3918         passing "*signal*::*" args to gtk_widget_set().
3919         
3920         * gtk/gtktypeutils.[hc]: got rid of GTK_TYPE_SIGNAL.
3921         
3922         * gtk/*.c: removed trailer arg from property setters and getters.
3923         macro fixups.
3924
3925 2001-03-07  Alexander Larsson  <alexl@redhat.com>
3926
3927         * gtk/gtklabel.c (set_markup): Removed warning
3928
3929 Tue Mar  6 19:59:12 2001  Jonathan Blandford  <jrb@redhat.com>
3930
3931         * gtk/gtkcellrenderer.h (struct _GtkCellRenderer): Add visible
3932         field to allow you to hide cell renderers.
3933
3934         * gtk/gtkcellrenderer.c: Add support for invisible cells.
3935
3936         * gtk/gtktreeview.c: Add support for invisible cells.
3937
3938 Tue Mar  6 17:25:07 2001  Jonathan Blandford  <jrb@redhat.com>
3939
3940         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_clicked):
3941         Add "clicked" signal back to columns.
3942
3943         * ChangeLog: remove conflict markers.
3944
3945 Tue Mar  6 10:45:45 2001  Owen Taylor  <otaylor@redhat.com>
3946
3947         * gtk/gtkbutton.c: Add animation of activation by, on 
3948         activate, pressing the button, and adding a timeout that 
3949         releases the button after 250ms or on key release and
3950         emits ::clicked. (#51501)
3951
3952         * gtk/gtkdialog.c: Bit of a hack - for buttons in the
3953         action area, we connect to ::clicked instead of ::activate
3954         so the dialog stays up through the animation.
3955
3956 Mon Mar  5 16:38:15 2001  Owen Taylor  <otaylor@redhat.com>
3957
3958         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): Only
3959         check the ignore_enter flag for the menu shell that
3960         the item is actually a child of, not for attached
3961         submenus. (#51536)
3962
3963 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
3964
3965         * gtk/gtkmain.c (gtk_propagate_event): Only do special
3966         special key-press grab handling for widgets within
3967         GtkWindows. Otherwise, fall through to normal case.
3968
3969         This prevents key events being sent twice to GtkInvisible
3970         widgets, which can cause all sorts of mischief.
3971
3972 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
3973
3974         * gtk/gtkmain.c (gtk_propagate_event): When a grab
3975         widget is in effect, give the grab widget a first
3976         crack at KEY_PRESS/RELEASE events. (#424)
3977
3978 2001-03-06  James Henstridge  <james@daa.com.au>
3979
3980         * gtk/gtkwidget.c (gtk_widget_class_init): set the class closure
3981         offset for the window_state_event to point at window_state_event
3982         rather than no_expose_event.
3983
3984 Mon Mar  5 19:10:15 2001  Jonathan Blandford  <jrb@redhat.com>
3985
3986         * gtk/gtkimmodule.h: fix busted /* comment */
3987
3988 Mon Mar  5 15:07:05 2001  Jonathan Blandford  <jrb@redhat.com>
3989
3990         * gtk/gtktreeview.c: Apply patch from John Margaglione to add
3991         object properties.
3992
3993 Mon Mar  5 14:55:19 2001  Jonathan Blandford  <jrb@redhat.com>
3994
3995         * gtk/gtkcellrenderertoggle.c: Apply patch from Lee Mallabone to
3996         add object properties.
3997
3998         * gtk/gtkcellrenderertextpixbuf.c: Apply patch from Lee Mallabone
3999         to add object properties.
4000
4001         * gtk/gtkcellrenderertext.c: Apply patch from Lee Mallabone to add
4002         object properties.
4003
4004         * gtk/gtkcellrendererpixbuf.c: Apply patch from Lee Mallabone to
4005         add object properties.
4006
4007         * gtk/gtkcellrenderer.c: Apply patch from Lee Mallabone to add
4008         object properties.
4009
4010 Mon Mar  5 14:38:54 2001  Jonathan Blandford  <jrb@redhat.com>
4011
4012         * gtk/gtktreemodel.c: renamed "child_toggled" to
4013         "has_child_toggled".
4014
4015         * gtk/gtktreeview.c: Handle removing columns better.  Updated to
4016         handle new signal name.
4017
4018         * gtk/gtktreestore.c: Updated to handle new signal name.
4019         * gtk/gtklisttore.c: Updated to handle new signal name.
4020         * gtk/gtktreemodelsort.c: Updated to handle new signal name.
4021
4022 2001-03-05  Alexander Larsson  <alexl@redhat.com>
4023
4024         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state):
4025         Set GDK_WINDOW_TYPE_HINT_MENU on tearoff window.
4026
4027 2001-03-05  Michael Natterer  <mitch@gimp.org>
4028
4029         * gtk/gtklabel.c: Made the "parent_class" pointer static. The
4030         pixbuf-engine coincidentially also failed to make one of it's
4031         parent_class pointers static, causing overwriting of GtkLabel's
4032         parent_class pointer in pixbuf_style_class_init().
4033         (Will commit the fix to the pixbuf-engine too).
4034
4035 2001-03-05  Alexander Larsson  <alexl@redhat.com>
4036
4037         * gdk/gdkwindow.h:
4038         Added GdkWindowTypeHint type. Added modal_hint field to GdkWindindow.
4039         New functions gdk_window_set_type_hint, gdk_window_set_modal_hint and
4040         gdk_window_set_icon_list for net wmspec functionality.
4041
4042         * gdk/x11/gdkwindow-x11.c:
4043         Set _NEW_WM_STATE_MODAL from window->modal_hint in set_inital_hints.
4044         Implement gdk_window_set_type_hint, gdk_window_set_modal_hint and
4045         gdk_window_set_icon_list.
4046         Added gdk_wmspec_change_state helper function and used it in the code.
4047         Set _NET_WM_ICON_NAME in gdk_window_set_title and gdk_window_set_icon_name.
4048
4049         * gtk/gtkdialog.c (gtk_dialog_init):
4050         Set GDK_WINDOW_TYPE_HINT_DIALOG.
4051
4052         * gtk/gtkhandlebox.c (gtk_handle_box_realize):
4053         Set GDK_WINDOW_TYPE_HINT_TOOLBAR.
4054
4055         * gtk/gtkwindow.c:
4056         new function gtk_window_set_type_hint.
4057         On realize, set type hint and modal hint.
4058
4059         * gtk/gtkwindow.h:
4060         Added type_hint field and gtk_window_set_type_hint.
4061
4062 2001-03-05  Alexander Larsson  <alexl@redhat.com>
4063
4064         * gtk/gtklabel.[ch]:
4065         Convert from GtkArg to GParam (originally based on patch from Lee Mallabone).
4066         New function gtk_label_get_accel_keyval () to get the underline accelerator
4067         of the label. Setting the label pattern overrides other attributes.
4068
4069 Mon Mar  5 14:51:10 MET 2001  Sven Neumann  <sven@gimp.org>
4070
4071         * gtk/gtkrc.c: fixed compiler warnings by inserting some consts.
4072         Added missing initializers to gtk_rc_style_init().
4073
4074 Sun Mar 04  07:30:03 2001 CET Mikael Hermansson <mikeh@bahnhof.se>
4075
4076         * gtk/gtktextview.c: fixed bug #51097 about setting 
4077         gtk_text_view_set_border_window_size() if the widget is 
4078         already realized.
4079
4080 Sat Mar  3 16:59:16 2001  Owen Taylor  <otaylor@redhat.com>
4081
4082         * gdk/gdkpango.h gdk/x11/gdkwindow-x11.c: Doc fixes
4083
4084         * gdk/win32/gdkinput.c (gdk_device_get_axis): Remove doc
4085         comment. Won't do to have duplicated doc comments between
4086         the platform subdirs.
4087
4088 Sat Mar  3 16:26:33 2001  Owen Taylor  <otaylor@redhat.com>
4089
4090         * gdk/x11/gdkmain-x11.c gdk/x11/gdkkeys-x11.c 
4091           gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.c:
4092
4093         Detectable auto-repeat - make a repeating key generate
4094         press/press/press/release instead of press/release pairs.
4095
4096         If we have Xkb and XkbSetDectableAutoRepeat supports
4097         that, we do it that way. Otherwise, when we get
4098         a release event, we check ahead with XPending to see
4099         if the next key is a KeyPress with the same keycode
4100         and timestamp. (Not 100% reliable, but pretty close.)
4101           
4102 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
4103         
4104         * gtk/gtkmain.c (gtk_propagate_event): Only do special
4105         special key-press grab handling for widgets within
4106         GtkWindows. Otherwise, fall through to normal case.
4107  
4108         This prevents key events being sent twice to GtkInvisible
4109         widgets, which can cause all sorts of mischief.
4110  
4111 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
4112  
4113         * gtk/gtkmain.c (gtk_propagate_event): When a grab
4114         widget is in effect, give the grab widget a first
4115         crack at KEY_PRESS/RELEASE events. (#424)
4116  
4117 Sat Mar  3 15:39:49 2001  Owen Taylor  <otaylor@redhat.com>
4118
4119         * gtk/gtkentry.c (gtk_entry_button_press): Add shift-clicking
4120         to extend the selection. (Roughly based on patch
4121         from Jay Cox, #50939)
4122
4123         * gtk/gtkentry.c (gtk_entry_button_press): Fix triple-clicking
4124         to properly handle previous GDK_BUTTON_PRESS. 
4125         (Patch from Jay Cox, #50938)
4126
4127         * gtk/gtkentry.c (gtk_entry_real_delete_text): Move the
4128         '\0' back along with the deleted text. (#51148)
4129
4130 Mon Jan 22 14:31:29 2001  Owen Taylor  <otaylor@redhat.com>
4131
4132         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Unshift
4133         the group when extracting it from the X keyboard event.
4134
4135         * modules/input/Makefile.am modules/input/imipa.c: 
4136         Simple module for entering IPA. (Do we need a 
4137         gtk-stupid-input-tricks CVS module?)
4138
4139 Sat Mar  3 13:32:47 2001  Owen Taylor  <otaylor@redhat.com>
4140
4141         * gtk/gtkimmodule.c (gtk_im_module_init): Remove spurious
4142         const.
4143
4144         * gdk-pixbuf-2.0.pc.in gtk+-2.0.pc.in: Fix include path.
4145
4146         * gtk/gtkdialog.c (gtk_dialog_set_default_response): If there
4147         is no focus widget for the dialog currently, grab the focus as well
4148         as the default.
4149
4150         * gtk/gtkdialog.c (gtk_dialog_set_default_response): Get
4151         the action area's children to iterate through, not the
4152         dialog's children.
4153
4154 Sat Mar  3 13:21:27 2001  Owen Taylor  <otaylor@redhat.com>
4155
4156         * tests/Makefile.am tests/testsocket.c tests/testsocket_child.c:
4157         Add plug-socket tests. (Won't work worth a darn until I commit
4158         the rest of the plug-socket changes, but no reason these
4159         can't go into CVS now.)
4160
4161 2001-03-02  Havoc Pennington  <hp@redhat.com>
4162
4163         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_flush): use
4164         _gdk_region_get_xrectangles()
4165
4166         * gdk/x11/gdkmain-x11.c (_gdk_region_get_xrectangles): new function
4167
4168         * gtk/testgtk.c (create_shapes): add test for shape_combine_region
4169
4170         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_region): new
4171         function, contributed by Ron Steinke    
4172
4173         * gdk/x11/gdkevents-x11.c (gdk_wmspec_supported): rename
4174         gdk_net_wm_supports
4175
4176         * gdk/gdkregion-generic.c (gdk_region_get_rectangles): 
4177         New function, contributed by Ron Steinke
4178
4179         * gtk/gtkentry.c (gtk_entry_get_layout_offsets): New function, 
4180         used to line up the text in the entry when using the entry for
4181         editable sheet cell hacks
4182
4183         * gtk/testgtk.c (create_entry): test the activate_default setting
4184         on GtkEntry
4185
4186         * gtk/gtkentry.c (gtk_entry_set_activates_default): New function to 
4187         cause the entry to activate the default button for a dialog when 
4188         activated
4189         (gtk_entry_get_activates_default): new function
4190
4191 Wed Feb 28 19:10:43 2001  Owen Taylor  <otaylor@redhat.com>
4192
4193         * gtk/gtkclist.c (real_remove_row): Patch from ChiDeok
4194         Hwang to move call to sync_selection() up a few lines
4195         to before the row list is modified, to fix crash when
4196         removing rows in the undo_selection list.
4197
4198         (Test case provided by Daniel Elstner:
4199
4200         http://mail.gnome.org/archives/gtk-list/2001-February/msg00359.html)
4201
4202 Fri Feb 23 15:06:48 2001  Owen Taylor  <otaylor@redhat.com>
4203
4204         * gtk/gtktree.c (gtk_tree_class_init): Do the setting
4205         of tree->root_tree in parent_set rather than _map(), 
4206         fixing #50892 in a bit better manner.
4207
4208 Thu Feb 22 17:07:58 2001  Owen Taylor  <otaylor@redhat.com>
4209
4210         * gtk/gtkmenu.c (gtk_menu_popup): Don't flip cursor. (#50934)
4211
4212 Tue Feb  2 11:22:33 2001  Jody Goldberg <jgoldberg@home.com>
4213
4214         * gtk/gtkstyle.c : Remove duplicate fwd decl for
4215         gtk_default_draw_shadow.
4216
4217 ue Feb 20 11:40:58 2001  Owen Taylor  <otaylor@redhat.com>
4218
4219         * gdk/gdkimage.c (gdk_image_new): Remove excess 
4220         warning, make warnings more verbose, treat a error
4221         in shmat as permanent, and don't try again.
4222         (#51163, Ed Randall.)
4223
4224 Mon Feb 19 20:15:28 2001  Owen Taylor  <otaylor@redhat.com>
4225
4226         * gtk/gtkrange.c (gtk_range_timer_1st_time): Add an initial
4227         delay for the first click before starting to scroll.
4228         (based on #51026, gtk-enf-990512-0.patch, Eric Fisher)
4229
4230         * gtk/gtktext.c: GtkText should have I-beam cursor. 
4231         (based on gtk-enf-990513-1.patch, Eric Fisher.)
4232
4233 Mon Feb 19 16:42:19 2001  Owen Taylor  <otaylor@redhat.com>
4234
4235         * gtk/gtklayout.c (gtk_layout_allocate_child): Tiny
4236         cleanup to remove some references to unused
4237         ->xoffset, ->yoffset.
4238
4239 Mon Feb 19 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>
4240
4241         * gdk/gdkrgb.c (gdk_rgb_convert_555_br): Fix incorrect
4242         mask. (#51039, fix from Martin Maierhofer)
4243
4244 Fri Feb 16 20:09:42 2001  Owen Taylor  <otaylor@redhat.com>
4245
4246         * gtk/gtkctree.c (gtk_ctree_class_init): Add bindings
4247         for unshifted + and shifted = for non-us keyboards.
4248         Make <Control>+ and <Control>- work as well as 
4249         <Control>KP_Plus, <Control>KP_Minus for recursive
4250         open/close.  (#2682, René Seindal)
4251
4252 Fri Feb 16 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
4253
4254         * gtk/gtkmenushell.c (gtk_real_menu_shell_cancel): Unset
4255         the active menu item before deactivating the menu,
4256         so gtk_menu_popdown doesn't change the history. (#50964)
4257         
4258 Fri Feb 16 15:55:22 2001  Owen Taylor  <otaylor@redhat.com>
4259
4260         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): 
4261         draw lines with text_gc rather than black_gc.
4262         (Patch from Vlad Harchev <hvv hippo ru>, #50926)
4263
4264 Thu Mar  1 19:50:56 2001  Jonathan Blandford  <jrb@redhat.com>
4265
4266         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
4267         Move handling of buttons fully in gtktreeviewcolumn.  This code is
4268         less interrelated then it was, but it still requires the
4269         GtkTreeView to map it.
4270
4271         * test/testtreecolumn.c: Now I can add a column to one view,
4272         remove it, add it to the another view, remove it, then re-add it
4273         to the first.  Nifty.
4274
4275 Thu Mar  1 13:14:27 GMT 2001  Tony Gale <gale@gtk.org>
4276
4277         * docs/tutorial/gtk-tut.sgml: Minor corrections
4278
4279 Wed Feb 28 16:36:46 2001  Jonathan Blandford  <jrb@redhat.com>
4280
4281         * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize
4282         GtkRowReference.
4283
4284 2001-02-28  Havoc Pennington  <hp@redhat.com>
4285
4286         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove draw_focus and
4287         draw_default
4288         (gtk_widget_draw_focus): remove this function; we could instead
4289         make it just gtk_widget_draw(), but in most cases I think the
4290         result would be broken user code, so think it's better to have
4291         that code not compile and get fixed
4292         (gtk_widget_draw_default): ditto
4293
4294         * gtk/gtkwidget.c: Add default handlers for focus_in_event and
4295         focus_out_event that set/unset GTK_HAS_FOCUS and call queue_draw
4296         
4297         * gtk/gtkwindow.c (gtk_window_set_default): just queue a draw when
4298         widgets lose/get the default, instead of calling draw_default
4299         
4300         * docs/Changes-2.0.txt: note about all this
4301
4302         Then fixed every widget in GTK, I won't list all the filenames.
4303
4304 Tue Feb 27 19:32:53 2001  Jonathan Blandford  <jrb@redhat.com>
4305
4306         * gtk/gtktreemodel.c (deleted_callback): Proxy out to
4307         _gtk_tree_row_reference_deleted.
4308         (inserted_callback): Proxy out to
4309         _gtk_tree_row_reference_inserted.
4310         (_gtk_tree_row_reference_new_from_view): Somewhat yukky hack to
4311         get around signal emission ordering problem.
4312
4313         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
4314         fix to work with SINGLE 
4315         (_gtk_tree_selection_internal_select_node): Major sanitization on
4316         selections.  SINGLE now seems to work.
4317
4318         * tests/Makefile.am: add testtreecolumn.c:
4319
4320         * tests/testtreecolumn.c: New test.  Mostly points out selection
4321         bugs currently, but will test columns later.
4322
4323         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Fix really nasty
4324         selection bug.  I hate touching this code -- it's scary.
4325
4326 2001-02-26  Havoc Pennington  <hp@redhat.com>
4327
4328         * gtk/testgtk.c: test the window state stuff
4329
4330         * gtk/gtkwindow.c (gtk_window_present): new function, makes a
4331         window come to the user's attention as if it were just created
4332         (gtk_window_iconify): new function
4333         (gtk_window_deiconify): new function
4334         (gtk_window_stick): new function
4335         (gtk_window_unstick): new function
4336         (gtk_window_maximize): new function
4337         (gtk_window_unmaximize): new function
4338
4339         * gtk/gtkwidget.h, gtk/gtkwidget.c: add window_state_event signal
4340
4341         * gtk/gtkmain.c (gtk_main_do_event): handle GDK_WINDOW_STATE
4342
4343         * gdk/x11/gdkevents-x11.c: create window state events when
4344         appropriate
4345         (gdk_wmspec_supported): new function
4346
4347         * gdk/x11/gdkwindow-x11.c (gdk_window_iconify): handle
4348         iconification before showing the window
4349         (gdk_window_deiconify): new function
4350         (gdk_window_stick): new function
4351         (gdk_window_unstick): new function
4352         (gdk_window_maximize): new function
4353         (gdk_window_unmaximize): new function
4354
4355         * gdk/gdkwindow.c: store the window state in the window; 
4356         change to using the GDK_WINDOW_STATE_WITHDRAWN flag instead of
4357         window->mapped.
4358         (gdk_window_get_state): return the current window state
4359
4360         * gdk/gdkevents.c (gdk_event_get_time): handle GDK_WINDOW_STATE
4361         (gdk_event_get_state): handle GDK_WINDOW_STATE
4362         (gdk_synthesize_window_state): function to create the window state
4363         events
4364
4365         * gdk/gdkevents.h (struct _GdkEventWindowState): new type of
4366         event, for changes to "window state" such as maximized, sticky, 
4367         etc.
4368         
4369         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): new function,
4370         focuses a window
4371
4372         * gdk/x11/gdkmain-x11.c (_gdk_wmspec_supported): new function, 
4373         finds out if we support a given WM spec hint
4374
4375 Tue Feb 27 13:37:38 GMT 2001  Tony Gale <gale@gtk.org>
4376
4377         * docs/faq/gtk-faq.sgml: New question re memory leaks.
4378
4379 2001-02-25  Hans Breuer  <hans@breuer.org>
4380
4381         * gdk/gdk.h : changed #ifdef GDK_DISBALE_DEPRECARED to #ifndef
4382         cause we want to loose those prototypes only in the latter case
4383
4384         * gdk/win32/gdkevents-win32.c : can't cast from GdkPixmap to
4385         GdkPixmapImplWin32 because it itsn't derived from it. Use the
4386         impl member variable instead
4387
4388         * gtk/gtk.def : updated
4389
4390         * gtk/gtklist.c : 
4391         * gtk/gtkmenus.c : include <string.h> for memset ()
4392
4393         * gtk/makefile.msc.in : updated and don't define GTK_COMPILATION
4394         for everthing built here, but for gtk-x.x.dll only. This solves
4395         problem of indifferent gtk type definitions
4396
4397 Sat Feb 24 20:11:39 2001  Jonathan Blandford  <jrb@redhat.com>
4398
4399         * gtk/gtkclipboard.h: actually put /* */ around #endif comment.
4400
4401 Fri Feb 23 17:50:13 2001  Jonathan Blandford  <jrb@redhat.com>
4402
4403         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Only draw the
4404         column that is exposed.
4405
4406         (_gtk_tree_view_update_size): Changed name from set_size, and
4407         changed function to do more work, and not force people calling it
4408         to figure out the size.  Simplifies a lot of code elsewhere.
4409
4410 2001-02-23  Alexander Larsson  <alexl@redhat.com>
4411
4412         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf):
4413         return solid masks for xpms that have no transparent color.
4414         This makes the ..._create_from_xpm... API backwards
4415         compatible.
4416
4417 2001-02-23  Tor Lillqvist  <tml@iki.fi>
4418
4419         * README.win32: Update. Mention the gtk-1-3-win32-production
4420         branch.
4421
4422         * gdk/win32/bdfcursor.c: New file. A program that generates
4423         xcursors.h. Thanks to Stefan Ondrejicka.
4424
4425         * gdk/win32/xcursors.h: New file, contains the X cursor font in a
4426         compact format.
4427
4428         * gdk/win32/Makefile.am (EXTRA_DIST): Add new files.
4429
4430         * gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): New
4431         function, uses xcursors.h.
4432         (gdk_cursor_new): Use _gdk_win32_data_to_wcursor to generate
4433         cursor from inline data instead of using LoadCursor() to generate
4434         it from a resource.
4435
4436         * gdk/win32/gdkevents-win32.c (gdk_event_translate): At button up
4437         event, must check the Windows message for mouse button state, as
4438         the GDK event state might not have been built if it is
4439         undelivered. Remove one goto.
4440
4441         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Call
4442         SetCursor() if the current cursor as returned by GetCursor() is
4443         the window's previous cursor. The ChildWindowFromPoint() test
4444         apparently didn't work correctly.
4445
4446         * gdk/win32/rc/*.cur: Remove.
4447
4448         * gdk/win32/rc/gdk.rc.in: Remove cursors.
4449
4450         * gdk/win32/rc/Makefile.am (EXTRA_DIST): Remove from here, too.
4451
4452         * gtk/makefile.{mingw,msc}.in: Updates.
4453
4454 Wed Feb 21 20:56:50 2001  Jonathan Blandford  <jrb@redhat.com>
4455
4456         * gtk/gtktreemodel.h: add functions for signal emission.
4457
4458         * gtk/gtktreestore.c: move to use above functions instead of
4459         g_signal_emit.
4460
4461         * gtk/gtkliststore.c: ditto
4462
4463 Wed Feb 21 15:41:34 2001  Jonathan Blandford  <jrb@redhat.com>
4464
4465         * gtk/gtktreestore.c: removed signals.  Moved to inherit from
4466         GObject instead of GtkObject.
4467
4468         * gtk/gtkliststore.c: ditto.
4469
4470         * gtk/gtktreemodelsort.c: ditto.
4471
4472         * gtk/gtktreemodel.c (gtk_tree_model_base_init): moved signals to
4473         GtkTreeModelIface, instead of in each model.
4474
4475 2001-02-21  Havoc Pennington  <hp@redhat.com>
4476
4477         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_child_anchor):
4478         unbreak this function
4479
4480         * gtk/gtkentry.c: apply patch from Lee Mallabone to add object 
4481         properties
4482
4483         * gtk/gtkcurve.c: apply patch from Lee Mallabone to add object
4484         properties
4485
4486         * gtk/gtkcombo.c: apply patch from Lee Mallabone to add object 
4487         properties
4488
4489         * gtk/gtkentry.c (gtk_entry_set_max_length): have this take -1 to
4490         mean unset the max length
4491
4492 Wed Feb 21 14:23:05 2001  Jonathan Blandford  <jrb@redhat.com>
4493
4494         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data_func):
4495         Changed name to be set_cell_data_func to make it clear what
4496         the functino does.  Close bug #51069.
4497
4498 Tue Feb 20 16:49:00 2001  Jonathan Blandford  <jrb@redhat.com>
4499
4500         * gtk/testgtk.c (main): Remove turning on of profiling malloc,
4501         have memory actually freed.  Keeps box running longer.
4502
4503 2001-02-21  Alexander Larsson  <alexl@redhat.com>
4504         
4505         * gtk/gtkseparatormenuitem.[ch]:
4506         Added new menu separator item. The drawing and size handling
4507         is still done in GtkMenuItem, but the API is a bit more sane.
4508         
4509         * gtk/Makefile.am:
4510         Add gtkseparatormenuitem.[ch].
4511
4512         * gtk/gtk.h:
4513         Add gtkseparatormenuitem.h.
4514         
4515         * gtk/gtkentry.c:
4516         * gtk/gtkmenufactory.c:
4517         * gtk/gtktextview.c:
4518         Use the new API for menu separators.
4519         
4520         * demos/gtk-demo/menus.c (create_menu):
4521         Add some GtkSeparatorMenuItem demo code.
4522
4523 2001-02-20  Havoc Pennington  <hp@redhat.com>
4524
4525         * gtk/gtkaspectframe.c: Convert to new property API, patch from 
4526         Lee Mallabone
4527
4528         * gtk/gtkarrow.c: Convert to new property API, patch from 
4529         Lee Mallabone
4530
4531 Tue Feb 20 14:26:41 2001  Jonathan Blandford  <jrb@redhat.com>
4532
4533         * tests/testtreeview.c (toggled_callback): fix to reflect change
4534         in GtkTreeModelStore.
4535
4536 Tue Feb 20 12:16:12 2001  Jonathan Blandford  <jrb@redhat.com>
4537
4538         * gtk/gtkiconfactory.c (gtk_icon_set_new_from_pixbuf): New
4539         function to create an icon set from a pixbuf.
4540
4541 2001-02-20  Alexander Larsson  <alexl@redhat.com>
4542
4543         * gtk/gtkcellrenderertext.[ch]:
4544         Add a "markup" property.
4545
4546         * gtk/treestoretest.c:
4547         Use the markup property, remove some leftover stuff from
4548         GtkTreeModelMapping.
4549
4550 2001-02-20  Alexander Larsson  <alexl@redhat.com>
4551
4552         * gtk/gtklabel.c (gtk_label_set_selectable):
4553         Queue a redraw if the selectable setting was changed.
4554
4555 2001-02-20  Alexander Larsson  <alexl@redhat.com>
4556
4557         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
4558         Actually copy the whole gc, not just the public parts.
4559         
4560         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
4561         GDK_WINDOW_TEMP are not toplevel. Fixes selectable
4562         labels.
4563
4564 2001-02-19  Havoc Pennington  <hp@pobox.com>
4565
4566         * gdk/gdkwindow.c: docs
4567
4568         * gdk/gdkrgb.c: docs
4569
4570         * gdk/gdkregion-generic.c: docs
4571
4572         * gdk/gdkgc.c (gdk_gc_set_values): docs
4573
4574         * gdk/gdkdraw.c: docs
4575
4576         * gdk/gdkdrawable.h: deprecate drawable get/set data
4577
4578 Mon Feb 19 20:37:35 2001  Jonathan Blandford  <jrb@redhat.com>
4579
4580         * demos/gtk-demo/dialog.c: Add simple new demo.
4581
4582 2001-02-19  Havoc Pennington  <hp@redhat.com>
4583
4584         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): add
4585         insert_child_anchor signal, bug #50245
4586
4587         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): change
4588         from create_child_anchor, so the anchor is passed in
4589
4590         * gtk/gtktextchild.c (gtk_text_child_anchor_new): new function
4591         (_gtk_widget_segment_new): have the child anchor object passed in, 
4592         instead of creating it.
4593
4594         * gtk/gtktextbuffer.c (gtk_text_buffer_modified): rename
4595         to gtk_text_buffer_get_modified
4596
4597 2001-02-19  Havoc Pennington  <hp@redhat.com>
4598
4599         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): hmm, someone
4600         changed GLib without fixing GTK
4601
4602         * gtk/gtkrange.h: Rename all the stupid implementation detail 
4603         functions to have an underscore in front. Most of them should 
4604         probably just go away, but for starters don't export them.
4605         Bug #50482
4606
4607 2001-02-19  Havoc Pennington  <hp@redhat.com>
4608
4609         * gdk/gdkcolor.h: test was backward, so deprecated functions were
4610         excluded by default
4611
4612         * gtk/gtkstyle.c (gtk_default_draw_diamond): draw etched in/out,
4613         clean up the old code a bit
4614
4615         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): draw
4616         inconsistent state
4617
4618         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator):
4619         draw inconsistent state
4620
4621         * gtk/testgtk.c (create_toggle_buttons): add test for inconsistent
4622         (create_menu): add inconsistent test
4623
4624         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_set_inconsistent):
4625         new function
4626         (gtk_check_menu_item_get_inconsistent): new function
4627         (gtk_real_check_menu_item_draw_indicator): draw the inconsistent
4628         state (using etched in for now)
4629
4630         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator):
4631         draw inconsistent state
4632
4633         * gtk/gtktogglebutton.c (gtk_toggle_button_set_inconsistent): new
4634         function, used when the user has selected a range of stuff in
4635         different states
4636         (gtk_toggle_button_get_inconsistent): accessor for that
4637         (gtk_toggle_button_paint): draw inconsistent state (etched in?
4638         don't know what else to do)
4639
4640 2001-02-19  Hans Breuer <hans@breuer.org>
4641
4642         * gtk/gtk.def : updated exported symbols
4643
4644         * gtk/makefile.msc.in : updated
4645
4646         * gtk/gtkstyle.c (gtk_style_realize) : gets called without
4647         a colormap, when invoked from testgtk::entry. I'm not sure where
4648         the bug is, but g_return_if_fail (GDK_IS_COLORMAP (colormap));
4649         avoids immediate crashing ...
4650
4651         * gtk/gtkmain.c (check_setugid) : totally disabled on win32;
4652         any objections ?
4653
4654         * gtk/gtktreemodel.c : called G_VALUE_LCOPY with an extra
4655         0 parameter. At least msvc doesn't like macros with var args. 
4656         I simply removed the extra 0, was it a feature or a typo ?
4657
4658         * gtk/gtktreeviewcolumn.[hc] (gtk_tree_view_column_set_func) :
4659         removed the extra indirection from the GtkTreeViewColumnFunc parameter,
4660         because the value assignment to the internal struct wasn't working.
4661         I'm not absolutely sure. The problem could have been resolved by
4662         changing the "func" declartion in the struct, but was the pointer
4663         to the function pointer intended ?
4664
4665         * gtk+/gtk/gtktreedatalist.c : include gboxed.h
4666
4667         * gdk/gdk.def : updated exported symbols
4668
4669         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_image) :
4670         only use SetDIBitsToDevice if there is a palette at the drawable
4671         and the image is GDK_VISUAL_PSEUDO_COLOR
4672
4673         * gdk/win32/gdkkeys-win32.c : msvc still has no <unistd.h> ...
4674
4675         * gdk/win32/gdkwindow-win32.c : #include "gdk.h" /* gdk_rectangle_intersect */
4676
4677         * gdk/*/makefile.msc : updated
4678
4679 2001-02-19  Havoc Pennington  <hp@redhat.com>
4680
4681         * demos/gtk-demo/Makefile.am (INCLUDES): GDK_DISABLE_COMPAT_H,
4682         GDK_DISABLE_DEPRECATED (we need to merge those two #defines)
4683
4684         * gdk/x11/gdkmain-x11.c (gdk_key_repeat_disable): nuke
4685         (gdk_key_repeat_restore): nuke
4686
4687         * gdk/gdk.c (gdk_exit_func): #if 0 this for now, don't install it
4688         (gdk_init_check): no atexit func
4689
4690         * gdk/gdkrgb.h: mark some stuff deprecated
4691
4692         * gdk/gdkcolor.h: mark some stuff deprecated
4693         
4694         * gdk/gdk.h: deprecated gdk_exit, gdk_input_*
4695
4696         * gdk/gdkfont.h: bracket in GDK_DISABLE_DEPRECATED
4697
4698 2001-02-16  Havoc Pennington  <hp@redhat.com>
4699
4700         * gtk/gtkvscrollbar.c (gtk_vscrollbar_trough_keys): use the visual
4701         scroll steps.
4702
4703         * gtk/gtkvscale.c (gtk_vscale_trough_keys): use the visual scroll
4704         steps, and add Ctrl-arrow shortcuts for paging visually as with
4705         HScale, since Page Up and Page Down move logically.
4706
4707         * gtk/gtkenums.h (GtkScrollType): add GTK_SCROLL_STEP_UP,
4708         GTK_SCROLL_STEP_DOWN, etc. for visual scroll directions
4709         
4710         * gtk/gtkrange.c (gtk_range_key_press): handle the visual scroll
4711         steps
4712         (gtk_range_scroll): handle the visual steps
4713
4714         * gtk/gtklist.c (gtk_list_scroll_horizontal): handle the up/down
4715         scroll steps
4716
4717         * gtk/gtkhscale.c (gtk_hscale_trough_keys): use the visual scroll
4718         steps, not the logical ones.
4719
4720         * gtk/gtkclist.c (move_focus_row): handle the up/down scroll steps
4721         (scroll_vertical): handle up/down steps
4722
4723 2001-02-19 Alexander Larsson  <alexl@redhat.com>
4724
4725         * gdk/linux-fb/gdkimage-fb.c (gdk_image_new_bitmap):
4726         Copy data and free data with free().
4727
4728         * gdk-pixbuf/gdk-pixbuf.c:
4729         * gdk-pixbuf/io-jpeg.c:
4730         * gdk-pixbuf/io-png.c:
4731         Use g_try_malloc/g_free instead malloc/free.
4732         
4733         * gdk-pixbuf/test-gdk-pixbuf.c:
4734         Must... initialize... gobject...
4735         
4736         * gdk-pixbuf/pixops/timescale.c:
4737         * gtk/gtkcalendar.c:
4738         Use g_malloc instead of malloc.
4739         
4740 2001-02-19 Alexander Larsson  <alla@lysator.liu.se>
4741
4742         * gtk/testgtkrc:
4743         Comment out property assignments, these don't work yet.
4744
4745 2001-02-17  Havoc Pennington  <hp@pobox.com>
4746
4747         * gtk/gtkalignment.c (gtk_alignment_class_init): clean this up a
4748         bit.
4749
4750 2001-02-17  Havoc Pennington  <hp@pobox.com>
4751
4752         * gtk/gtklabel.c (gtk_label_ensure_layout): fix screwup with
4753         shadowed variables that had broken size request in some cases,
4754         leading to bogus tooltips (#50996)
4755
4756 2001-02-06  Jon K Hellan  <hellan@acm.org>
4757
4758         Implement fast browsing of tooltips, bug #50619
4759         
4760         * gtk/gtktooltips.h (struct _GtkTooltips): Add use_sticky_delay
4761         and last_popdown
4762         
4763         * gtk/gtktooltips.c (gtk_tooltips_init): Initialize sticky_delay,
4764         use_sticky_delay and last_popdown.
4765         (gtk_tooltips_draw_tips, gtk_tooltips_set_active_widget): Record
4766         time of popdown.
4767         (gtk_tooltips_set_active_widget): Unset sticky behaviour if widget
4768         is NULL.
4769         (gtk_tooltips_recently_shown): New static function.  Return true
4770         if < sticky_delay has elapsed since last popdown.
4771         (gtk_tooltips_event_handler): Display window after sticky_delay
4772         (presumably < normal delay) if < STICKY_REVERT_DELAY has elapsed
4773         since last popdown.
4774         
4775 2001-02-17  Havoc Pennington  <hp@pobox.com>
4776
4777         * gtk/gtktypeutils.h (GtkSignalFunc): change it to take (void)
4778         instead of (). #6394
4779
4780         * gtk/gtkprogressbar.c (gtk_progress_bar_get_text): Add
4781         G_CONST_RETURN, make it return by reference, #50473
4782         
4783 Sat Feb 17 06:47:27 2001  Tim Janik  <timj@gtk.org>
4784
4785         * gtk/gtkmenu.c (gtk_menu_motion_notify): default initialize the
4786         generated ENTER_NOTIFY event with 0, otherwise not explicitely
4787         setup fields contain garbage (e.g. subwindow, breaking
4788         gdk_drawable_ref() upon event copy).
4789         (gtk_menu_stop_navigating_submenu_cb): same here.
4790
4791         * gtk/gtklist.c (gtk_list_vertical_timeout): 
4792         * gtk/gtklist.c (gtk_list_horizontal_timeout): 
4793         * gtk/gtkclist.c (vertical_timeout): 
4794         * gtk/gtkclist.c (horizontal_timeout): change direct assignment
4795         default-zero-intialization for unions to memset(,0,), as unions are
4796         not fully default-zero-initialized by compilers (GdkEvent x = { 0, };
4797         has to become GdkEvent x; memset (&x, 0, sizeof (x)); )
4798
4799         * gtk/gtktreeview.c (gtk_tree_view_set_rows_drag_source): scratch
4800         g_closure_sink() warning.
4801
4802         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): 
4803         * gtk/gtktreestore.c (gtk_tree_store_set_valist): 
4804         * gtk/gtkliststore.c (gtk_list_store_set_valist): 
4805         fix G_VALUE_COLLECT() and G_VALUE_LCOPY() calls.
4806         
4807 Fri Feb 16 17:49:59 2001  Jonathan Blandford  <jrb@redhat.com>
4808
4809         * gtk/gtktreestore.[hc], gtk/gtkliststore.[ch]: removed
4810         gtk_*_store_get, and moved to GtkTreeModel.
4811
4812         * gtk/gtktreemodel.h (gtk_tree_model_set{v,}): Added
4813
4814         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): added.
4815
4816         * gtk/Makefile.am: remove gtktreemodelmapping.[ch]
4817
4818         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_func): let you
4819         set the func.
4820
4821         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
4822         freeze/thaw notify between setting all the properties for a cell.
4823
4824         * gtk/gtk.h: remove gtktreemodelsimple.h, and gtktreemodelmapping.h
4825
4826 2001-02-15  Havoc Pennington  <hp@redhat.com>
4827
4828         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): convert
4829         the X coordinates so they're with respect to the line, rather than 
4830         with respect to the layout.
4831
4832         * gtk/gtkalignment.c: Convert to new property API, patch from Lee
4833         Mallabone
4834
4835         * gtk/testgtk.c (create_range_controls): add vscale tests, 
4836         and inverted test
4837
4838         * gtk/gtkrange.c (gtk_range_set_inverted): new function to fix 
4839         #50806
4840
4841         * gtk/gtkentry.c (gtk_entry_get_text): add G_CONST_RETURN
4842
4843         * gtk/gtktextiter.h (gtk_text_iter_is_last): rename 
4844         gtk_text_iter_is_end
4845
4846         * gtk/gtktextbuffer.h (gtk_text_buffer_get_last_iter):
4847         rename gtk_text_buffer_get_end_iter
4848
4849         * gtk/testgtk.c (create_labels): Add test for selectable
4850
4851         * gtk/gtkentry.c (gtk_entry_draw_text): Use new GDK API to draw
4852         the selection stuff. This code is kind of broken since it doesn't 
4853         use the theme engine.
4854
4855         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
4856         fix infinite loop and y offset problem
4857         (gdk_draw_layout_line_with_colors): fix foreground color handling
4858
4859         * gtk/gtklabel.h, gtk/gtklabel.c: Implement a "selectable" flag 
4860         that makes the label selectable.
4861         
4862         * gtk/gtklabel.c (gtk_label_style_set): recreate the label's
4863         layout when the style is set, since fonts etc. could have changed.      
4864
4865 Fri Feb 16 14:22:05 2001  Jonathan Blandford  <jrb@redhat.com>
4866
4867         * gtk/Makefile.am: Removed gtktreemodelsimple.[ch]
4868
4869         * gtk/gtktreemodelsimple.[ch]: removed.
4870
4871 2001-02-16  Alexander Larsson  <alexl@redhat.com>
4872
4873         * gtk/gtktreemodelmapping.[ch]:
4874         New files. Implement GtkTreeModelMapping.
4875         
4876         * gtk/Makefile.am:
4877         Add gtktreemodelmapping.[ch].
4878         
4879         * gtk/gtk.h:
4880         Add gtktreemodelmapping.h
4881
4882         * gtk/treestoretest.c:
4883         Test the GtkTreeModelMapping
4884
4885 Tue Feb 13 13:16:09 2001  Jonathan Blandford  <jrb@redhat.com>
4886
4887         * demos/gtk-demo/panes.c (create_pane_options): If we're going to
4888         have a demo, we might as well pass in real values.  Thanks to
4889         clahey for pointing this out.
4890
4891 2001-02-14  Havoc Pennington  <hp@pobox.com>
4892
4893         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_remove): add
4894         "static" to a private function
4895         (gtk_image_menu_item_class_init): remove destroy handler,
4896         add "image" object property
4897
4898 2001-02-13  Alexander Larsson  <alla@lysator.liu.se>
4899
4900         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region):
4901         Add a shortcut if the window and the current clip_region doesn't
4902         overlap. This is needed when there are a lot of windows in a
4903         window. The layout test in testgtk is a good test.
4904
4905         * gdk/linux-fb/gdkwindow-fb.c:
4906         Whitespace fix.
4907
4908 2001-02-13  Sven Neumann  <sven@convergence.de>
4909
4910         * demos/testanimation.c: replaced deprecated gtk_drawing_area_size
4911
4912 2001-02-13  Alexander Larsson  <alexl@redhat.com>
4913
4914         * gdk/linux-fb/gdkcursor-fb.c (gdk_fb_cursor_unhide):
4915         Don't reference last_cursor if it is null. Fixes crash when rotating
4916         the screen before having moved the mouse.
4917
4918         * gdk/linux-fb/gdkcc-fb.c: Zapp!
4919
4920         * gdk/linux-fb/Makefile.am: Don't compile gdkcc-fb.c
4921
4922         * gdk/linux-fb/gdkwindow-fb.c: Fix typo. width->height. Fixes redraw 
4923         when using 90 or 270 degrees rotation.
4924
4925 2001-02-12  Havoc Pennington  <hp@pobox.com>
4926
4927         * gdk/gdkpango.c (gdk_pango_get_gc): fix bug where 
4928         it always set the foreground, even if we were only using
4929         a stipple.
4930         (gdk_draw_layout_line_with_colors): new function, allow
4931         override colors
4932         (gdk_draw_layout_with_colors): new function, allow override
4933         colors
4934         (gdk_pango_layout_line_get_clip_region): function to get the clip
4935         region for a logical text range
4936         (gdk_pango_layout_get_clip_region): get the clip region for a
4937         logical text range
4938
4939         * gdk/x11/gdkcolor-x11.c: forward declare gdk_colormap_sync(),
4940         (gdk_colormap_new): fix call to gdk_colormap_sync() so it has 
4941         the right number of arguments.
4942
4943         * gtk/gtktextbtree.c (gtk_text_btree_node_check_consistency):
4944         enhance the function to check that node data corresponds to a 
4945         view still belonging to the tree.
4946
4947         * gtk/gtktreeview.c (gtk_tree_view_changed): we were leaking the 
4948         GtkTreePath
4949         (gtk_tree_view_inserted): ditto
4950         (gtk_tree_view_child_toggled): ditto
4951
4952         * gtk/gtktreemodel.c (gtk_tree_path_append_index): use realloc to
4953         simplify this code.
4954
4955         * gtk/gtkcellrenderertext.c (get_layout): fix leak of 
4956         a PangoAttrList
4957
4958         * demos/gtk-demo/main.c (load_file): Fix leak of a GString
4959
4960         * gtk/gtkentry.c (gtk_entry_realize): Fix leak of a GdkCursor
4961
4962         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): consider toggle
4963         size in the size request 
4964         (gtk_menu_bar_size_allocate): consider toggle size here
4965
4966         * gtk/gtkimagemenuitem.h, gtkimagemenuitem.c: Menu item
4967         that displays a widget in the toggle slot
4968
4969         * gtk/testgtk.c: test GtkImageMenuItem
4970
4971         * gtk/Makefile.am, gtk/gtk.h: Add GtkImageMenuItem
4972         
4973         * gtk/gtkmenuitem.h: Use "gint" not "guint16" for toggle size
4974         request and allocation
4975
4976         * gtk/gtkmenu.c (gtk_menu_size_request): use gint not guint16
4977
4978         * gtk/gtkcheckmenuitem.c
4979         (gtk_check_menu_item_toggle_size_request): ditto
4980         
4981 Mon Feb 12 23:43:30 2001  Owen Taylor  <otaylor@redhat.com>
4982
4983         * gtk/Makefile.am (gdk_headers): Remove gdkcc.h 
4984         reference.
4985
4986         * configure.in gtk/gtkmain.c: Add checks for setuid/setgid,
4987         and refuse to initialize GTK+ if they fail.
4988
4989 Mon Feb 12 15:02:07 2001  Owen Taylor  <otaylor@redhat.com>
4990
4991         * configure.in: Add check for gtk-doc version.
4992
4993 Thu Feb  8 17:18:26 2001  Owen Taylor  <otaylor@redhat.com>
4994
4995         * gtk/gtklabel.c (gtk_label_size_request): Fix bug
4996         where the xpad/ypad was only being used on one side!
4997
4998 2001-02-11  Tor Lillqvist  <tml@iki.fi>
4999
5000         * gdk/win32/gdkcolor-win32.c (gdk_colormap_query_color): New
5001         function, copied from X11 version.
5002
5003         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Eliminate
5004         DestroyCursor failures. The reason for the problem (despite the
5005         inconsistent messages from GetLastError()) was that
5006         DestroyCursor() cannot be called while a cursor is set in a
5007         window. Set the new cursor first and then destroy the old one.
5008         Thanks to jpe@archaeopteryx.com.
5009
5010         * gdk/win32/gdkcc-win32.c: Remove.
5011
5012         * gdk/win32/Makefile.am: Remove from here, too.
5013         
5014         * gdk/gdk.def
5015         * gdk/makefile.mingw.in: Update. Godbye GdkColorContext.
5016
5017         * gtk/gtk.def
5018         * gtk/makefile.mingw.in: Updates.
5019
5020 2001-02-08  Havoc Pennington  <hp@redhat.com>
5021
5022         * gtk/gtkbin.c (gtk_bin_add): better error message if you try to
5023         add a widget to a bin that already has a child.
5024
5025         * gdk/gdkcc.h, gdk/gdkcc-x11.c: Remove GdkColorContext, #50512
5026
5027         * docs/Changes-2.0.txt: note that GdkColorContext is gone.
5028         
5029         * gdk/x11/Makefile.am (libgdk_x11_la_SOURCES): remove gdkcc-x11.c
5030
5031         * gdk/gdk.h: remove gdkcc.h
5032
5033         * gdk/Makefile.am (gdk_public_h_sources): remove gdkcc.h
5034
5035         * gtk/gtkpixmap.c (build_insensitive_pixmap): rewrite using
5036         GdkPixbuf, since the previous implementation was GdkColorContext
5037         dependent.
5038
5039         * gtk/testgtk.c (create_pixmap): add test for insensitive GtkPixmap
5040         
5041 Thu Feb  8 19:00:00 2001  Jonathan Blandford  <jrb@redhat.com>
5042
5043         * gtk/gtktreeview.c (TREE_VIEW_VERTICAL_SEPARATOR): moved back to
5044         a sane value!
5045
5046 2001-02-08  Havoc Pennington  <hp@redhat.com>
5047
5048         * gtk/gtkstyle.c (get_darkened_gc): let's darken colors, not
5049         lighten them.
5050
5051 2001-02-08  Havoc Pennington  <hp@redhat.com>
5052
5053         * gtk/gtktextview.c (gtk_text_view_destroy_layout): remove
5054         validation idle
5055
5056         * demos/gtk-demo/main.c (create_tree): adjust to changes in text
5057         cell renderer
5058
5059         * demos/pixbuf-demo.c (timeout): remove deprecated
5060         gtk_widget_draw
5061
5062         * demos/testpixbuf-save.c (main): remove deprecated
5063         gtk_drawing_area_size
5064
5065         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): allocate
5066         buttons even if the model isn't setup. gtk_tree_view_check_dirty()
5067         at the start of the allocation.
5068         (gtk_tree_view_check_dirty): handle column->button == NULL, handle
5069         unsetup or NULL model.
5070
5071         * gtk/gtkstyle.c (gtk_default_draw_flat_box): drawing for the 
5072         even/odd/sorted cells in the tree view.
5073
5074         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
5075         bugfixes
5076
5077         * gtk/gtktreeview.c: assorted bugfixy stuff. Draw the row
5078         backgrounds with draw_flat_box using different detail for even/odd
5079         rows.
5080
5081         * gtk/gtkrbtree.c, gtkrbtree.h: Keep track of the parity of each
5082         row, so we can draw the alternating colors thing
5083
5084         * gtk/gtktexttag.c (gtk_text_tag_set_property): if we change a
5085         property from a synonym property, notify for the synonym.
5086         Also, nuke the background_gdk_set and foreground_gdk_set synonyms
5087         (gtk_text_tag_get_property): Always return the font, even if
5088         all its fields aren't set
5089
5090         * gtk/gtkcellrenderertext.h (struct _GtkCellRendererText): don't
5091         store the attr list; it leaves us with no way to change attributes
5092         in _render according to the render flags, and no way to implement
5093         get_property. Instead store all the specific text attributes. 
5094         Separate whether an attribute is enabled from its value. Sync all
5095         properties with GtkTextTag, make them all consistent, etc.
5096
5097         * gtk/gtkcellrenderer.h: Add a flag GTK_CELL_RENDERER_SORTED so
5098         renderers can highlight the sort row/column     
5099
5100         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_property): use
5101         accessor functions to get values; this has the side effect of
5102         showing up which accessor functions were missing. Added those.
5103
5104         * gtk/gtktreeviewcolumn.h: Replace set_justification with
5105         set_alignment, to be consistent with GtkLabel, GtkMisc
5106
5107         * gtk/gtktreeviewcolumn.c: Added code to display sort indicator
5108         arrow.
5109
5110         * gtk/Makefile.am (gtk_public_h_sources): add gtktreesortable.h
5111
5112         * gtk/gtktreesortable.h: updates in here
5113
5114 2001-02-07  Sven Neumann  <sven@convergence.de>
5115
5116         * gtk/gtkentry.c (gtk_entry_draw_text): convert area_height to 
5117         pango dimensions after painting the background. We used to draw
5118         gigantic flat boxes here.
5119
5120 Mon Feb  5 22:05:57 2001  Owen Taylor  <otaylor@redhat.com>
5121
5122         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Fix syntax
5123         error introduced with earlier commit) (pointed out by
5124         Ollie Lho)
5125
5126 Mon Feb  5 12:25:06 2001  Owen Taylor  <otaylor@redhat.com>
5127
5128         * gtk/gtkbutton.c: Remove calls to gtk_grab_add/gtk_grab_remove,
5129         which are no longer necessary.
5130
5131 Mon Feb  5 13:22:54 GMT 2001  Tony Gale <gale@gtk.org>
5132
5133         * docs/faq/gtk-faq.sgml: s/MISK/MISC/
5134
5135 2001-02-04  Tor Lillqvist  <tml@iki.fi>
5136
5137         * gdk/gdk.def
5138         * gdk/win32/gdkim-win32.c (gdk_ic_attr_new, gdk_ic_attr_destroy):
5139         Provide dummy implementations.
5140
5141 Sun Feb  4 07:55:17 2001  Tim Janik  <timj@gtk.org>
5142
5143         * gtk/gtksignal.h: removed gtk_signal_init() compat define.
5144
5145         * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument
5146         GTypeDebugFlags debug_flags and pass it on to g_type_init ();
5147         deprecated this function.
5148
5149         * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as
5150         argument.
5151
5152 Sun Feb  4 07:45:45 2001  Tim Janik  <timj@gtk.org>
5153
5154         * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS.
5155
5156 2001-02-03  Havoc Pennington  <hp@pobox.com>
5157
5158         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Fix bug reported by
5159         Mikael Hermansson with patch from Mikael (if there was a toggle
5160         start one after the first character in the range, this function
5161         was broken). Bug #50380
5162
5163 Sat Feb  3 11:28:03 2001  Owen Taylor  <otaylor@redhat.com>
5164
5165         * configure.in: Remove confusing comment about X11.
5166
5167 Fri Feb  2 19:21:23 2001  Owen Taylor  <otaylor@redhat.com>
5168
5169         * gdk/gdkwindow.c (gdk_propagate_shapes): Surround additional
5170         regions with HAVE_SHAPE_EXT. (#50511, Eric Ding)
5171         
5172 Fri Feb  2 18:31:54 2001  Owen Taylor  <otaylor@redhat.com>
5173
5174         * gdk/x11/gdkimage-x11.c: Remove definition of _XOPEN_SOURCE, since
5175         it breaks things on BSD. If you want to compile GTK+ with
5176         -ansi -pedantic, you should supply CPP_FLAGS=_XOPEN_SOURCE 
5177         when configuring, since GTK+ simply can't be "pure ANSI" 
5178         in the header files it uses. (#8170, Greg Hudson)
5179
5180 2001-02-02  Havoc Pennington  <hp@redhat.com>
5181
5182         * gtk/gtkwindow.c: docs
5183
5184         * gtk/gtkwidget.c: docs
5185         (gtk_widget_set_colormap): add a reference to the colormap
5186         (gtk_widget_get_default_colormap): add a reference to the colormap
5187
5188         * gtk/gtktextbtree.c (gtk_text_mark_set_visible): docs
5189
5190         * gtk/gtktextiter.c: docs
5191
5192         * gtk/gtkmain.c (gtk_propagate_event): docs
5193
5194         * gtk/gtkpaned.c (gtk_paned_get_position): docs
5195         (gtk_paned_set_position): docs
5196
5197         * gtk/gtktreesortable.h (struct _GtkTreeSortableIface): Initial
5198         sort interface, no implementation yet.
5199
5200         * demos/testpixbuf.c (new_testrgb_window): replace
5201         gtk_drawing_area_size() with gtk_widget_set_usize()
5202
5203         * demos/testpixbuf-drawable.c (main): ditto
5204         
5205         * gtk/testgtk.c: remove use of GtkStatusbarMsg
5206
5207         * gtk/gtktextbuffer.c: docs
5208
5209         * gtk/gtkstock.c: docs
5210
5211         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_shadow_type): docs
5212
5213         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): docs
5214
5215         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): fix docs
5216         
5217         * gtk/gtkimage.c: add some docs in here
5218         (gtk_image_size_request): change name of
5219         gtk_widget_render_stock_icon
5220         (gtk_image_get_icon_set): don't dup returned string
5221         (gtk_image_get_icon_set): don't dup returned string
5222
5223         * gtk/gtkwidget.c (gtk_widget_render_icon): rename from 
5224         gtk_widget_render_stock_icon(), more consistent with gtkstyle.h
5225         and gtkiconfactory.h functions
5226
5227         * gtk/gtkiconfactory.c: add some docs in here
5228
5229         * gtk/gtkmain.c (gtk_get_default_language): document
5230         (gtk_get_current_event): document
5231         (gtk_get_current_event_state): document
5232         (gtk_get_event_widget): document
5233
5234         * gtk/gtkentry.c (gtk_entry_set_invisible_char): document
5235
5236         * gtk/gtkcontainer.c: Add some documentation
5237         (gtk_container_add): give a more explanatory warning on adding an
5238         already-parented widget, this is kind of a FAQ and also a common
5239         typo that's easier to debug with a nice warning 
5240
5241         * gtk/gtkcellrenderertoggle.c
5242         (gtk_cell_renderer_toggle_get_active): remove, I was on crack
5243         adding this, it's useless
5244         (gtk_cell_renderer_toggle_set_active): remove
5245         (gtk_cell_renderer_toggle_get_radio): add
5246
5247         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): don't allow
5248         the NULL cell renderer, that doesn't make any sense to me. 
5249
5250         * demos/gtk-demo/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED,
5251         demo code should never use deprecated features.
5252
5253         * demos/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED, demo
5254         code should never use deprecated features.
5255
5256         * gtk/gtkwidget.h: Mark gtk_widget_draw, gtk_widget_queue_clear,
5257         gtk_widget_queue_clear_area deprecated
5258
5259         * gtk/gtklayout.h: mark gtk_layout_freeze/gtk_layout_thaw
5260         deprecated
5261
5262         * gtk/gtklabel.h: mark gtk_label_get() deprecated
5263
5264         * gtk/gtkimage.h: mark the legacy GtkImage functions that took 
5265         a GdkImage deprecated, replaced by new consistently-named
5266         functions       
5267
5268         * gtk/gtkmain.h: Mark gtk_exit() deprecated
5269
5270         * gtk/gtkdrawingarea.h: mark gtk_drawing_area_size deprecated
5271
5272         * gtk/gtkstyle.h: mark gtk_draw_string, gtk_paint_string 
5273         deprecated
5274
5275         * gtk/gtkstatusbar.h: Move GtkStatusbarMsg to the .c file, 
5276         so it won't appear in docs and confuse people.
5277
5278         * gtk/gtkprogressbar.h: Mark all the old methods deprecated
5279
5280         * gtk/gtkprogress.h: Mark all methods deprecated, mark the cast
5281         macros deprecated. (can't mark the type itself deprecated, since
5282         GtkProgressBar is not deprecated and we need the type decl to use
5283         GtkProgressBar)
5284
5285         * gtk/gtkpixmap.h: Mark deprecated
5286
5287         * gtk/gtkoldeditable.h: Mark deprecated
5288
5289         * gtk/gtklist.h: Mark deprecated
5290
5291         * gtk/gtklabel.h: delete "GtkLabelWord" typedef, not used 
5292         for anything anymore.
5293
5294         * gtk/gtkctree.h: Mark deprecated
5295
5296         * gtk/gtkclist.h: Mark deprecated
5297
5298         * gtk/gtkpreview.h: Mark deprecated
5299
5300         * gtk/gtkpacker.h: Mark deprecated
5301
5302         * gtk/gtktipsquery.h: Mark deprecated
5303
5304         * gtk/gtkinputdialog.h: Add comment that it will move out of GTK
5305
5306         * gtk/gtkvruler.h: Add comment that it will move out of GTK
5307
5308         * gtk/gtkhruler.h: Add comment that it will move out of GTK
5309
5310         * gtk/gtkruler.h: Add comment that it will move out of GTK
5311
5312         * gtk/gtkgamma.h: Add comment that it will move out of GTK
5313
5314         * gtk/gtkcurve.h: Add comment that it will move out of GTK
5315
5316 Fri Feb  2 17:16:09 2001  Owen Taylor  <otaylor@redhat.com>
5317
5318         * gdk/x11/gdkcolor-x11.c (gdk_colormap_sync): Make
5319         gdk_colormap_sync private since it was never exported
5320         in a header file.
5321
5322         * gdk/x11/gdkcolor-x11.c (gdk_colormap_new): Fill in
5323         colormap->colors[] for StaticGray, StaticColor colormaps.
5324
5325         * gdk/gdkpixbuf-drawable.c: Fix problems where image->bpp
5326         was being used as if it was image->bits_per_pixel.
5327
5328         * gdk/gdkimage.h, gdk/x11/gdkimage-x11.c: Save the bits-per-pixel
5329         for the image in the GdkImage structure since it isn't
5330         reconstructable, and we need it to handle packed types
5331
5332         * gdk/win32/gdkimage-win32.c: Set image->bits_per_pixel. (I'm making
5333         the assumption that on Win32 image->bits_per_pixel == image->depth,
5334         always.
5335
5336         * gdk/linux-fb/gdkimage-fb.c: Set image->bits_per_pixel.
5337
5338         * gdk/gdkrgb.c (gdk_rgb_select_conv): Exit with an informative
5339         warning message if no converter can be found. 
5340
5341 Fri Feb  2 15:09:51 2001  Owen Taylor  <otaylor@redhat.com>
5342
5343         * gtk/fnmatch.c (FOLD): Fix problem with passing signed
5344         chars to isupper() / tolower(). (#567)
5345
5346         * examples/packer/pack.c: Add GINT_TO_POINTER, GPOINTER_TO_INT
5347         to clear up 64-bit warnings. (#567)
5348
5349 Fri Feb  2 12:26:50 2001  Owen Taylor  <otaylor@redhat.com>
5350
5351         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Get rid of
5352         a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
5353
5354         * gtk/gtkrc.c Makefile.am: Use $(libdir), not $(exe_prefix),
5355         since some people set $(libdir) separately. (#1290, David Kaelbling)
5356
5357 Thu Feb  1 18:25:46 2001  Owen Taylor  <otaylor@redhat.com>
5358
5359         * gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not
5360         defined, define MAXPATHLEN to 2048. (The Hurd doesn't have
5361         MAXPATHLEN, but the code here depends on a fixed value.)
5362         (#4524)
5363
5364 Wed Jan 31 22:01:04 2001  Owen Taylor  <otaylor@redhat.com>
5365
5366         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Handle the case
5367         where child == NULL and handle_position == RIGHT or BOTTOM. (#8041g)
5368
5369 Wed Jan 31 21:20:39 2001  Owen Taylor  <otaylor@redhat.com>
5370
5371         * gtk/gtkctree.c (real_tree_move): If the node being moved isn't
5372         viewable there is no way that moving the node will cause the 
5373         focus row to become not viewable, so omit check on the visibility
5374         of new_sibling, which is irrelevant. (Fixes #8002, David Helder)
5375
5376 Wed Jan 31 20:38:17 2001  Owen Taylor  <otaylor@redhat.com>
5377
5378         * gtk/gtkentry.c (gtk_entry_commit_cb): Delete the current
5379         selection before inserting new text.
5380
5381 Wed Jan 31 18:49:33 2001  Owen Taylor  <otaylor@redhat.com>
5382
5383         * gtk/gtkoptionmenu.c (gtk_option_menu_item_state_changed_cb):
5384         Make the sensitivity of the reparented child track that of
5385         the original parent menu item. (#34218, David Hodson)
5386
5387         * gtk/gtkoptionmenu.c (gtk_option_menu_item_destroy_cb): Handle
5388         the case where the current item is destroyed properly.
5389
5390         * gtk/gtkoptionmenu.c: Some additional code cleanups and fix
5391         some edge cases with child-less menuitems.
5392         
5393 Wed Jan 31 17:16:13 2001  Owen Taylor  <otaylor@redhat.com>
5394
5395         * gtk/gtkcombo.c (gtk_combo_window_key_press): Make Return
5396         key pop down window. (#12074, Jon K Hellan)
5397
5398 Wed Jan 31 16:21:42 2001  Owen Taylor  <otaylor@redhat.com>
5399
5400         * gtk/gtklist.c (gtk_list_signal_item_toggle): Don't allow
5401         toggling of rows off in BROWSE or EXTENDED mode. (#12072, Jon K Hellan) 
5402         The solution here isn't perfect - you get an extraneous
5403         emission of "toggle", which could conceivably confuse an app,
5404         but better than the current situation. LXR search seems to
5405         indicate that no apps in GNOME CVS connect to "toggle".
5406
5407 Wed Jan 31 15:46:13 2001  Owen Taylor  <otaylor@redhat.com>
5408
5409         * gtk/Makefile.am (libgtkinclude_HEADERS): Move gtkcompat.h from
5410         gtk_public_h_sources to directly here to avoid warning when
5411         building srcdir != builddir. (#9656)
5412
5413 Tue Jan 30 19:49:02 2001  Owen Taylor  <otaylor@redhat.com>
5414
5415         * gtk/gtkrange.c: Patch from Kipp Hickman to make the event
5416         handlers in gtkrange.c return the proper values (TRUE == handled)
5417         (#10316).
5418
5419         This is just the tip of the iceberg, but gtkrange.c is the
5420         most common place where the propagation is problematical,
5421         and also a place where it is almost certainly safe to change
5422         this in the stable branch.
5423
5424         (You don't want right click popups on a range control or anything...)
5425
5426 Tue Jan 30 18:57:59 2001  Owen Taylor  <otaylor@redhat.com>
5427
5428         * gtk/gtktext.c (clear_focus_area): We need to clear the focus
5429         area on focus out, even if a background pixmap isn't set.
5430         (#13941)
5431         
5432 Tue Jan 30 18:24:10 2001  Owen Taylor  <otaylor@redhat.com>
5433
5434         * gtk/gtknotebook.c (gtk_notebook_set_shape): Fix from Sean Cunningham
5435         to deal with setting the shape properly when scrolling arrows are
5436         turned on, but not visible because there is sufficient space.
5437         (#13432)
5438
5439 Tue Jan 30 16:39:25 2001  Owen Taylor  <otaylor@redhat.com>
5440
5441         * gtk/gtkitemfactory.c (gtk_item_factory_delete_item): For menu
5442         items with submenus, destroy the item along with the submenu.
5443         (#7841, Brian Masney(?)) Also, handle paths of the form '<foo>/abcd...' 
5444         properly.
5445
5446         * gtk/testgtk.c (menu_items): Add a dummy branch that we delete
5447         later.
5448
5449 Tue Jan 30 15:51:25 2001  Owen Taylor  <otaylor@redhat.com>
5450
5451         * gtk/gtkwindow.c (gtk_window_real_set_focus): Fix a problem where
5452         the focus widget sometimes wasn't drawn with the default if there
5453         was no default widget.
5454
5455         * gtk/gtkstyle.c (gtk_style_real_unrealize): free colors,
5456         unreference pixmaps. 
5457
5458         * gtk/gtkstyle.c (gtk_style_realize): Reference colormap
5459         for some extra safety.
5460
5461 Mon Jan 29 19:00:01 2001  Owen Taylor  <otaylor@redhat.com>
5462
5463         * gtk/gtk{ctree.c,clist.c} (set_cell_contents): Handle setting
5464         the text of a cell to the old pointer value better, by
5465         copying the new text before freeing the old text. Some code
5466         cleanup. (#8079, Karl Nelson)
5467
5468 Mon Jan 29 16:50:19 2001  Owen Taylor  <otaylor@redhat.com>
5469
5470         * gtk/gtklabel.[ch] gtk/gtkframe.[ch]: Make gtk_label_get_text()
5471         gtk_frame_get_label() non strdup'ing, and G_CONST_RETURN.
5472
5473 Mon Jan 29 15:22:51 2001  Owen Taylor  <otaylor@redhat.com>
5474
5475         * gtk/gtkmenu.c (gtk_menu_remove): When removing an
5476         item from a menu, check to see if it matches 
5477         menu->old_active_menu_item, and if so, unref and clear
5478         old_active_menu_item (Patch from Pavel Cisler)
5479
5480         * gtk/gtkmenushell.c (gtk_menu_shell_remove): Unset 
5481         menu_shell->active_menu_item, if it is the child being
5482         removed. (Patch based on that of Gene Ragan, #50337)
5483
5484 2001-01-31  Alexander Larsson  <alla@lysator.liu.se>
5485
5486         * gdk/linux-fb/gdkselection-fb.c: 
5487         * gdk/linux-fb/gdkcolor-fb.c: 
5488         * gdk/linux-fb/gdkdrawable-fb2.c: 
5489         * gdk/linux-fb/gdkfont-fb.c: 
5490         * gdk/linux-fb/gdkim-fb.c: 
5491         * gdk/linux-fb/gdkinput.c: 
5492         * gdk/linux-fb/gdkkeyboard-fb.c: 
5493         * gdk/linux-fb/gdkmain-fb.c: 
5494         * gdk/linux-fb/gdkrender-fb.c: 
5495         A bunch of whitespace cleanup.
5496         
5497 2001-01-30  Havoc Pennington  <hp@pobox.com>
5498
5499         * gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in 
5500         #ifdef GTK_ENABLE_BROKEN.
5501
5502         * gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
5503         GTK_ENABLE_BROKEN just before including the broken headers.
5504         
5505         * gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
5506         deprecated types registered.
5507
5508         * gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
5509         we have to test the broken stuff.
5510
5511         * docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
5512         
5513 2001-01-30  Havoc Pennington  <hp@redhat.com>
5514
5515         * gtk/gtkliststore.c (gtk_list_store_insert_before): fix bug in
5516         here where prev pointer was set to the wrong thing
5517
5518         * gtk/gtktreemodel.c (gtk_tree_path_is_ancestor): new function
5519         (gtk_tree_path_is_descendant): new function
5520
5521         * gtk/gtkliststore.c (gtk_list_store_iter_n_children): return
5522         cached length
5523         (gtk_list_store_get_iter): don't modify iter if we can't get the
5524         path.
5525
5526         * gtk/gtkliststore.h (struct _GtkListStore): cache the length
5527         
5528         * gtk/gtktreednd.h: add virtual function row_drop_possible() to
5529         GtkTreeDragDest
5530
5531         * gtk/gtktreestore.c (copy_node_data): fix varargs type error that
5532         was causing segfault
5533
5534         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_copy): set next
5535         pointer to NULL
5536
5537         * gtk/gtktreestore.c (gtk_tree_store_append): fix memleak
5538
5539         * gtk/gtkliststore.c (gtk_list_store_iter_next): don't modify iter
5540         on returning FALSE
5541         (gtk_list_store_iter_children): ditto
5542         (gtk_list_store_iter_nth_child): ditto
5543         (gtk_list_store_iter_nth_child): ditto
5544         (gtk_list_store_iter_parent): ditto
5545
5546         * gtk/gtktreestore.c (gtk_tree_store_get_path): g_return_if_fail
5547         on iter->user_data != NULL instead of silently accepting it.
5548         (gtk_tree_store_iter_next): ditto. Also, don't modify iter unless
5549         we are returning TRUE.
5550         (gtk_tree_store_iter_children): ditto
5551         (gtk_tree_store_iter_nth_child): ditto
5552         (gtk_tree_store_iter_parent): ditto
5553         (gtk_tree_store_insert): remove handling of parent->user_data ==
5554         NULL, replace with parent == NULL       
5555
5556         * gtk/gtktreemodel.c (inserted_callback): put some fixes in here,
5557         and a comment explaining things
5558
5559         * gtk/gtktreestore.c: add GtkTreeDragSource/GtkTreeDragDest
5560         interface support to GtkTreeStore.
5561
5562         * gtk/gtktreemodel.c (gtk_tree_path_prev): didn't properly return
5563         FALSE if no prev, fix
5564
5565         * gtk/gtktreeview.c (set_source_row): use a row reference
5566         (set_dest_row): use a row reference
5567
5568 Sat Jan 27 15:52:02 2001  Jonathan Blandford  <jrb@redhat.com>
5569
5570         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
5571         stupid typo pointed out by Kristian Rietveld <kristian@planet.nl>.
5572         (gtk_tree_selection_select_iter): The same as above.
5573
5574 2001-01-26  Havoc Pennington  <hp@redhat.com>
5575
5576         * gtk/gtktreemodel.c, gtk/gtktreemodel.h: add GtkTreeRowReference
5577         which holds a handle to a specific row (particular set of values
5578         in the model, i.e. pointer-identity row).
5579
5580         * gtk/gtktreeview.c, gtk/gtktreeprivate.h, gtk/gtktreeselection.c:
5581         use GtkTreeRowReference for anchor, cursor, and drag_dest_row.
5582         Still need to use it for the src/dest row saved on the drag context.
5583
5584 2001-01-26  Havoc Pennington  <hp@redhat.com>
5585
5586         * gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
5587
5588         * gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
5589         not offset by TREE_VIEW_HEADER_HEIGHT
5590         (gtk_tree_view_tree_to_widget_coords): fix to not offset by
5591         TREE_VIEW_HEADER_HEIGHT
5592
5593         * configure.in (included_loaders): for me, --with-included-loaders
5594         generates the error "the specified loader yes does not exist",
5595         i.e. the arg defaults to "yes", so change test for value ""
5596         to test for value "yes", and include all loaders in that case.
5597
5598         * gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
5599
5600         * gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
5601         handle TREE_VIEW_VERTICAL_SEPARATOR
5602         (gtk_tree_view_bin_expose): fix to consider the row offset as
5603         pointing halfway into vertical separator.       
5604         (gtk_tree_view_draw_node_focus_rect): ditto
5605
5606         * gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
5607         --gtk-debug=updates, which causes gdk_window_set_debug_updates
5608         (TRUE) to be called.
5609
5610         * gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
5611         debug mode where the invalid region is colored in on invalidate,
5612         so you can see the flicker and know whether your redraw code is 
5613         doing a good job.
5614
5615         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in 
5616         tree window coordinates (clip rect is in tree window coords)
5617
5618         * gtk/Makefile.am: add gtktreednd.[hc]
5619
5620         * gtk/gtkliststore.c: implement gtktreednd interfaces.
5621
5622         * gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
5623         drag-and-drop data operations on a model (so we can set up tree
5624         drag-and-drop automatically)
5625
5626         * gtk/testgtk.c: Add a window to change sensitivity in the
5627         GtkLabel test; add a way to change the entry frame in GtkEntry
5628         test
5629
5630         * gtk/gtkentry.c (gtk_entry_set_has_frame): 
5631         (gtk_entry_get_has_frame): new functions to remove the frame
5632         around an entry
5633         (gtk_entry_size_request): shrink requisition if no frame
5634         (gtk_entry_draw_focus): don't draw frame if no frame
5635
5636         * gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
5637         checks inside a cell renderer
5638         (gtk_default_draw_option): ditto for options
5639
5640         * gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
5641         children from the alignment, not the button
5642         (gtk_tree_view_column_init): ref/sink the column, to emulate
5643         GObject refcounting.
5644
5645         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
5646         
5647         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
5648         Use theme functions to draw the toggles 
5649
5650         * gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
5651
5652         * gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
5653         GdkPangoAttrEmbossed to use in rendering insensitive text
5654
5655         * gdk/gdkpango.c (gdk_draw_layout_line): render new properties
5656
5657         * gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
5658         using new GDK features
5659         
5660 2001-01-24  Alexander Larsson  <alexl@redhat.com>
5661
5662         * gtk/gtkimage.c:
5663         Splitted gtk_image_clear into gtk_image_clear() and
5664         gtk_image_reset(). Call gtk_image_clear() in ::destroy
5665         to avoid leaks.
5666
5667         * gtk/gtklabel.c (set_markup):
5668         Don't leak text.
5669
5670         * gtk/gtktextlayout.c:
5671         Always free display->shaped_objects.
5672
5673         * gtk/testgtk.c (create_clist):
5674         Don't leak custom style.
5675
5676 2001-01-23  Alexander Larsson  <alexl@redhat.com>
5677
5678         * gtk/gtkcolorsel.c (grab_color_at_mouse):
5679         Don't leak image. Simplify using gdk_colormap_query_color().
5680         (gtk_color_selection_init): Don't leak dropper_pixmap and mask.
5681
5682         * linux-fb/gdkcolor-fb.c:
5683         Implemented gdk_colormap_query_color.
5684
5685 2001-01-23  Alexander Larsson  <alexl@redhat.com>
5686
5687         * linux-fb/gdkcursor-fb.c:
5688         Don't leak built-in cursors.
5689
5690         * linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_polygon):
5691         Don't leak tmp_points.
5692
5693         * linux-fb/gdkfont-fb.c (gdk_font_from_description):
5694         Don't modify desc. Don't leak font if the PangoFont
5695         isn't found.
5696         
5697         * linux-fb/gdkgc-fb.c (gdk_fb_gc_finalize):
5698         Free dash_list.
5699
5700         * linux-fb/gdkkeyboard-fb.c (gdk_fb_handle_key):
5701         Don't leak string.
5702         
5703 2001-01-20  Havoc Pennington  <hp@pobox.com>
5704
5705         * gtk/gtktexttag.h (enum GtkWrapMode): rename member fields
5706         from GTK_WRAPMODE_WORD to GTK_WRAP_WORD, etc., seems nicer to 
5707         me, matches Pango
5708
5709 2001-01-22  Havoc Pennington  <hp@redhat.com>
5710
5711         * demos/testanimation.c: fix to reflect gdk-pixbuf changes
5712
5713         * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes
5714
5715         * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: 
5716         Remove, move back to gdk-pixbuf
5717
5718         * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents
5719         to all the word functions
5720
5721         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return
5722         before doing anything on NULL layout or if we don't have the focus
5723
5724         * gtk/testtext.c (fill_example_buffer): "justification"
5725
5726         * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute
5727         to be called "justification" not "justify"
5728
5729         * demos/gtk-demo/textview.c (create_tags): "justification"
5730         
5731         * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
5732
5733 2001-01-22  Alexander Larsson  <alexl@redhat.com>
5734
5735         * gdk/gdkwindow.c (gdk_window_invalidate_region):
5736         Don't leak visible_region. Use visible_region instead of region.
5737         
5738         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
5739         Don't do extra gdk_drawable_ref(). This is not X.
5740         (gdk_fb_window_find_focus, gdk_fb_change_focus): make sure
5741         gdk_fb_focused_window is ref:ed.
5742         (gdk_fb_window_send_crossing_events): Watch out for destroyed
5743         windows.
5744
5745 2001-01-22  Alexander Larsson  <alexl@redhat.com>
5746
5747         * gtk/gtkwindow-decorate.c (gtk_decorated_window_realize):
5748         Don't leak the PangoFontDescriptor.
5749
5750 Sun Jan 21 09:58:00 2001  Jonathan Blandford  <jrb@redhat.com>
5751
5752         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): Make fail
5753         when not realized.
5754         (gtk_tree_view_scroll_to_cell): Make work when not realized.
5755         (gtk_tree_view_realize): add scroll_to support
5756         (gtk_tree_view_finalize): add a finalize method.  Populate.
5757         (gtk_tree_view_insert_column): ref and sink the column.
5758         (gtk_tree_view_append_column): ref and sink the column.
5759         (gtk_tree_view_queue_draw_node): New function to handle redrawing
5760         individual nodes.  Should make the code much more efficient, if
5761         actually used.
5762
5763 2001-01-19  Havoc Pennington  <hp@redhat.com>
5764
5765         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
5766         byte_offset variable was being used to mean both "offset into
5767         layout" and "offset into buffer line" which was no longer true
5768         with addition of preedit string; fix
5769
5770 2001-01-19  Havoc Pennington  <hp@redhat.com>
5771
5772         * demos/gtk-demo/main.c (button_press_event_cb): sync to tree changes
5773
5774         * gtk/gtkrbtree.c (_gtk_rbtree_node_find_offset): fix this
5775         function
5776
5777         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_widget):
5778         implement
5779
5780         * gtk/gtktreeview.c (gtk_tree_view_move_to): rename
5781         scroll_to_cell, matches TextView scroll functions better
5782         (gtk_tree_view_tree_to_widget_coords): new function
5783         (gtk_tree_view_widget_to_tree_coords): new function
5784         (gtk_tree_view_get_visible_rect): new function
5785         (gtk_tree_view_get_path_at_pos): accept negative coordinates
5786         (gtk_tree_view_draw_node_focus_rect): new function moved from
5787         draw_focus, also, use width of bin_window as width of the focus
5788         rect
5789         (gtk_tree_view_expand_row): fix bug where it didn't recognize
5790         already-expanded rows
5791         (gtk_tree_view_get_cell_rect): new function
5792         (gtk_tree_view_get_path_at_pos): return the click position
5793         relative to the passed-in cell
5794         (gtk_tree_view_set_expander_column): new function
5795
5796         * configure.in: remove gtk-config-2.0 chmod
5797
5798         * gtk/gtktextview.c (gtk_text_view_drag_motion): small cleanups,
5799         and properly handle drags with targets we don't understand
5800         (gtk_text_view_drag_end): don't stop scrolling, the source isn't
5801         scrolling anyway
5802         (gtk_text_view_drag_drop): stop scrolling here though, and set the
5803         mark invisible
5804
5805         * gtk/gtkdnd.c (gtk_drag_dest_find_target): export as a public
5806         function
5807         (gtk_drag_dest_get_target_list): new function
5808         (gtk_drag_dest_set_target_list): new function
5809         
5810         * gtk/gtktreeview.c: Add a bunch of drag-and-drop implementation
5811
5812         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add fields
5813         related to drag-and-drop
5814
5815 2001-01-19  Alexander Larsson  <alexl@redhat.com>
5816
5817         * gdk/linux-fb/gdkprivate-fb.h:
5818         Define EMULATE_GDKFONT.
5819         Add extra pango_font stuff to GfkFontPrivate.
5820         
5821         * gdk/linux-fb/gdkdrawable-fb2.c:
5822         * gdk/linux-fb/gdkfont-fb.c:
5823         If EMULATE_GDKFONT defined, implement a slow lame GdkFont
5824         emulation using PangoFont.
5825
5826 2001-01-17  Havoc Pennington  <hp@pobox.com>
5827
5828         * gtk/gtkprogressbar.c, gtk/gtkprogressbar.h: Add "getters" for
5829         all the non-deprecated set_foo functions. Added missing object
5830         properties, and added g_object_notify() to setters. 
5831         Wrote docs.
5832         
5833 2001-01-18  Tor Lillqvist  <tml@iki.fi>
5834
5835         * gtk/gtkmain.c
5836         * gtk/gtkrc.c: (Win32) Use the new
5837         g_win32_get_package_installation_(sub)directory() functions.
5838
5839         * config.h.win32.in: New file.
5840         
5841         * config.h.win32: Removed.
5842
5843         * configure.in: Output config.h.win32.
5844
5845         * Makefile.am: Add it to EXTRA_DIST.
5846
5847         * gtk/gtk.def: Update.
5848
5849 Wed Jan 17 16:22:54 2001  Owen Taylor  <otaylor@redhat.com>
5850
5851         * gtk/gtklabel.c (gtk_label_size_request): Set the
5852         attributes onto the PangoLayout even if they are newly
5853         created from label->pattern.
5854
5855 Tue Jan  9 11:20:48 2001  Owen Taylor  <otaylor@redhat.com>
5856
5857         * gdk/x11/gdkdnd-x11.c: Remove unused variable.
5858
5859         * gtk/gtkdnd.c: Encapsulate storing and retrieving info
5860         structures in functions. Fixes bug where gtk_dataset_*
5861         was accidentally still being used in one place, causing
5862         every dest side event to be treated independently.
5863
5864         * gtk/gtkdnd.c: Remove last vestages of handling
5865         ::draw (fixes warning)
5866         
5867         * gtk/gtkentry.[ch]: Add drag and drop support.
5868
5869         * gtk/gtkdnd.[ch] gtk/gtktextview.c gtk/gtkentry.c: Add
5870         new function gtk_check_drag_threshhold() for checking
5871         to check if (dx,dy) has exceeded the threshhold for starting
5872         a drag and use it everywhere.
5873
5874 Mon Jan  8 11:58:05 2001  Owen Taylor  <otaylor@redhat.com>
5875
5876         * gtk+-2.0.pc.in gdk-pixbuf-2.0.pc.in (Cflags): Remove -I${includedir},
5877         add -I{includedir}/gtk-2.0.
5878
5879         * gtk/gtktreeview.[ch] gtktreemodelsort.[ch] gtknotebook.c
5880         gdk/gdk-pixbuf.h: Doc fixups.
5881         
5882         * gtk/gtkobject.h: Remove trailing , from enum
5883
5884 2001-01-17 Alexander Larsson <alexl@redhat.com> 
5885
5886         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_shadow_fb_draw_arc):
5887         Doh! Mixed up x and y.
5888
5889         * gdk/linux-fb/gdkglobals-fb.c:
5890         Removed gdk_fb_pointer_grab_window_events,
5891         added _gdk_fb_pointer_grab_owner_events and
5892         _gdk_fb_keyboard_grab_owner_events.
5893
5894         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab):
5895         Set all button mask if GDK_BUTTON_MOTION_MASK set. Send
5896         crossing events before grabbing. Set _gdk_fb_pointer_grab_owner_events.
5897         (gdk_fb_pointer_ungrab): Unset _gdk_fb_pointer_grab_owner_events
5898         Send crossing events after ungrab finished.
5899         (gdk_keyboard_grab): Set ..._owner_events
5900         (type_masks): Move out of function.
5901         (gdk_fb_other_event_window, gdk_fb_pointer_event_window,
5902         gdk_fb_keyboard_event_window): New functions, return the
5903         window an event should be targeted at. Handles grabs and
5904         event propagation. Can return NULL.
5905         (gdk_event_make): Remove event_mask checking. Now always
5906         returns an event.
5907                 
5908         * gdk/linux-fb/gdkkeyboard-fb.c:
5909         * gdk/linux-fb/gdkproperty-fb.c:
5910         * gdk/linux-fb/gdkselection-fb.c:
5911         Use new event_window/gdk_event_make() behaviour.
5912         
5913         * gdk/linux-fb/gdkmouse-fb.c:
5914         Use new event_window/gdk_event_make() behaviour.
5915         Only send motion events if in the same window.
5916         If grabbed, use cursor from window if sibling of grabbed
5917         window, and cursor from grabbed window otherwise.
5918
5919         * gdk/linux-fb/gdkprivate-fb.h:
5920         Update gdk_fb_window_send_crossing_events, gdk_event_make
5921         and grab varaible declarations. Add gdk_fb_*_event_window().
5922
5923         * gdk/linux-fb/gdkwindow-fb.c:
5924         Use new event_window/gdk_event_make() behaviour.
5925         Keep correct track of focus window.
5926         (gdk_window_set_events): Set all specific button motion masks
5927         if GDK_BUTTON_MOTION_MASK set.
5928
5929         * gtk/gtkdnd.c (gtk_drag_update):
5930         Free info->last_event if gdk_drag_motion returned FALSE.
5931
5932 2001-01-16  Tor Lillqvist  <tml@iki.fi>
5933
5934         * gdk/win32/gdkwindow-win32.c (gdk_window_show, gdk_window_hide):
5935         Eliminate redraws when input-only windows are shown or
5936         hidden. Thanks to jpe@archaeopteryx.com.
5937
5938 Tue Jan 16 13:13:13 GMT 2001  Tony Gale <gale@gtk.org>
5939
5940         * docs/faq/gtk-faq.sgml: FAQ update:
5941           - Update to bugzilla
5942           - Add GTK+ and security/SUID/SGID
5943           - Add DnD question
5944
5945 2001-01-16  Alexander Larsson  <alla@lysator.liu.se>
5946
5947         * gdk/linux-fb/gdkdnd-fb.c:
5948         Some cleanups.
5949         
5950 2001-01-15  Havoc Pennington  <hp@pobox.com>
5951
5952         * tests/testtreeview.c: add test stuff for CellRendererToggle
5953
5954         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_model): add this
5955         accessor
5956
5957         * gtk/gtkcellrenderertoggle.c: distinguish different event types,
5958         only toggle on button press (would do release like GtkButton, but
5959         we'd need implicit grab code for treeview cells)
5960
5961 2001-01-16  Tor Lillqvist  <tml@iki.fi>
5962
5963         * gdk/win32/gdkvisual-win32.c: Include <stdlib.h> for getenv().
5964
5965         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't use
5966         GDK_COLORMAP_PRIVATE_DATA on a potentially NULL GdkColormap.
5967
5968         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Adapt calls
5969         to g_{locale,filename}_{to,from}_utf8 to match current API.
5970
5971         * gtk/makefile.msc.in (gtk_OBJECTS)
5972         * gtk/makefile.mingw.in (gtk_OBJECTS): Add gtkwindow-decorate.
5973
5974         * gtk/gtk.def: Update.
5975
5976 2001-01-15  Tor Lillqvist  <tml@iki.fi>
5977
5978         * gdk/win32/gdkevents-win32.c (synthesize_crossing_events): New
5979         implementaion that more closely mimics the events that an X server
5980         would generate. Especially, properly generate GDK_NOTIFY_VIRTUAL and
5981         GDK_NOTIFY_NONLINEAR_VIRTUAL crossing events. This makes buttons
5982         with nested preview widgets, for instance, more responsive when
5983         you move the mouse quickly into them.
5984         (find_window_for_pointer_event): Make it actually compile.
5985         (gdk_event_translate): Set send_event to the value of
5986         InSendMessage (). This doesn't really mean the same as X11's
5987         send_event flag, but is close enough, says jpe@archaeopteryx.com
5988
5989 2001-01-15  Alexander Larsson  <alexl@redhat.com>
5990
5991         * gdk/linux-fb/gdkdnd-fb.c:
5992         Implemented drag and drop.
5993         Seems to be mostly working. I sometimes get an assert from gtkdnd.c:2664
5994         when it tries to free and then copy the same event (info->last_event).
5995         I am not sure about why this happens, but will continue looking.
5996
5997 2001-01-15  Alexander Larsson  <alexl@redhat.com>
5998
5999         * gdk/linux-fb/gdkwindow-fb.c:
6000         Use gdk_window_invalidate_rect instead of
6001         gdk_window_invalidate_rect_clear to minimise flashing.
6002         When hiding windows you need to clear the root window though.
6003
6004 2001-01-15  Alexander Larsson  <alexl@redhat.com>
6005
6006         * gdk/linux-fb/gdkdrawable-fb2.c:
6007         For optization, add an full_shapes argument to gdk_fb_clip_region.
6008         If this is false, only the cliprects of the shapes are used.
6009
6010         * gdk/linux-fb/gdkprivate-fb.h:
6011         Export gdk_fb_window_peek_shape.
6012         Add full_shapes to gdk_fb_clip_region.
6013
6014         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
6015         When moving a window, don't clear everything under the it, just the
6016         root window. Makes stuff faster and flash less.
6017         (gdk_window_get_pointer): Correctly handle offseted shapes, due to
6018         USE_CHILD_SHAPE. (gdk_fb_window_peek_shape): Return the correct
6019         offset of the shape.
6020         
6021
6022 2001-01-12  Havoc Pennington  <hp@redhat.com>
6023
6024         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): offset the 
6025         current invalid region, fixes redraw bug while scrolling the 
6026         text widget
6027
6028         * gtk/gtktextview.c, gtk/gtktextview.h:
6029         Rearrange the scrolling/validation/etc. code in a major way, 
6030         so it seems to make sense to me. Probably isn't genuinely that
6031         much better, but...
6032
6033         * gtk/gtktexttag.c (set_fg_color): fix name of property used for
6034         notifies
6035
6036         * gtk/gtktextmark.c (gtk_text_mark_get_left_gravity): new function
6037
6038 2001-01-12  Alexander Larsson  <alla@lysator.liu.se>
6039
6040         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_set_rotation):
6041         Hide mouse pointer while rotation. Show it afterwards.
6042
6043 2001-01-12  Alexander Larsson  <alexl@redhat.com>
6044
6045         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region): Take shaped
6046         windows in consideration when generating clip region.
6047
6048         * gdk/linux-fb/gdkfb.h:
6049         Huge HACK. Added GDK_FB_USE_CHILD_SHAPE.
6050
6051         * gdk/linux-fb/gdkprivate-fb.h:
6052         Add shape to GdkWindowFBDatat.
6053         exported gdk_fb_window_get_abs_shape().
6054         removed gdk_fb_draw_lines declaration.
6055
6056         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_impl_fb_init):
6057         Init shape to NULL. (gdk_fb_window_send_crossing_events): Don't
6058         send focus changes when there is a grabbed window.
6059         (gdk_window_get_pointer): Handle shaped windows.
6060         (gdk_fb_region_create_from_bitmap): Convert bitmap to region.
6061         (gdk_fb_window_peek_shape): Returns the shape for a window,
6062         handles GDK_FB_USE_CHILD_SHAPE.
6063         (gdk_fb_window_get_abs_shape): Returns the shape of the window,
6064         offseted to absolute positions. Handles GDK_FB_USE_CHILD_SHAPE.
6065         (gdk_window_shape_combine_mask): Implement.
6066
6067         * gtk/gtkwindow-decorate.c:
6068         HACK! Set GDK_FB_USE_CHILD_SHAPE on window->frame to make sure
6069         setting the shape of a window makes the window transparent.
6070
6071 2001-01-11  Havoc Pennington  <hp@redhat.com>
6072
6073         * gtk/gtktreemodelsimple.h: Oops, broke some macros
6074
6075 2001-01-10  Havoc Pennington  <hp@redhat.com>
6076
6077         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clear_attributes):
6078         add this function, bug 40251
6079
6080         * gtk/gtktreemodelsimple.h (GTK_TYPE_TREE_MODEL_SIMPLE): fix name
6081         of type macro   
6082
6083 2001-01-11  Alexander Larsson  <alexl@redhat.com>
6084
6085         * acconfig.h:
6086         Added ENABLE_SHADOW_FB
6087
6088         * configure.in:
6089         Added --disable-shadowfb
6090
6091         * gdk/linux-fb/gdkcursor-fb.c:
6092         Update shadowfb when updating cursor
6093
6094         * gdk/linux-fb/gdkdrawable-fb2.c:
6095         Added wrappers for shadowfb that calls  the normal drawable
6096         methods, but calls gdk_shadow_fb_update(bounding box) when
6097         GdkWindows are drawed to.
6098         Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
6099         which also returns the bounding box.
6100
6101         * gdk/linux-fb/gdkfb.h:
6102         Added GdkFBAngle type and gdk_fb_set_rotation declaration.
6103
6104         * gdk/linux-fb/gdkgeometry-fb.c:
6105         Update shadowfb when scrolling window.
6106
6107         * gdk/linux-fb/gdkglobals-fb.c:
6108         Add _gdk_fb_screen_angle.
6109         
6110         * gdk/linux-fb/gdkkeyboard-fb.c:
6111         Test code for screen rotation. Shift-F2 in the xlate driver
6112         rotates the screen.
6113
6114         * gdk/linux-fb/gdkmain-fb.c:
6115         Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
6116
6117         * gdk/linux-fb/gdkmouse-fb.c:
6118         Use fb_width/height instead of modeinfo.xres/yres.
6119
6120         * gdk/linux-fb/gdkprivate-fb.h:
6121         Added fb_men, fb_width, fb_height & fb_stride. When using
6122         shadow fb these can differ from the framebuffer stuff.
6123         Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
6124         gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
6125         _gdk_fb_screen_angle. Removed CM, RP.
6126
6127         * gdk/linux-fb/gdkrender-fb.c:
6128         Added code for shadowfb handling and screen rotation using
6129         shadowfb.
6130
6131         * gdk/linux-fb/gdkwindow-fb.c:
6132         Use fb_mem, fb_stride, fb_width, fb_height.
6133         Added recompute_rowstride to reset the rowstride of all windows.
6134         Added gdk_fb_recompute_all() which recomputes rootwindow size,
6135         window abs positions and window rowstrides. Usefull when the
6136         rotation has changed.
6137
6138 Thu Jan 11 13:16:50 GMT 2001  Tony Gale <gale@gtk.org>
6139
6140         * docs/faq/gtk-faq.sgml: update to make web site updating easier
6141
6142 2001-01-10  Havoc Pennington  <hp@redhat.com>
6143
6144         * gtk/gtktreestore.c (gtk_tree_store_insert_before): handle case
6145         where sibling == iter
6146         (gtk_tree_store_insert_after): handle sibling == iter
6147         (gtk_tree_store_prepend): remove stamp checks
6148         (gtk_tree_store_insert_before): ditto
6149         (gtk_tree_store_append): ditto
6150         (gtk_tree_store_get_path): ditto
6151         (gtk_tree_store_get_value): ditto
6152         (gtk_tree_store_iter_has_child): ditto
6153         (gtk_tree_store_iter_n_children): ditto
6154         (gtk_tree_store_iter_nth_child): ditto
6155         (gtk_tree_store_insert_after): ditto
6156         (gtk_tree_store_is_ancestor): ditto
6157         (gtk_tree_store_iter_depth): ditto
6158         (gtk_tree_store_insert_before): assert that sibling's parent is
6159         the same as the passed-in parent
6160         (gtk_tree_store_insert_after): assert that sibling's parent is
6161         the same as the passed-in parent
6162
6163         
6164         * gtk/gtktreemodel.c (gtk_tree_model_get_first): new convenience 
6165         function to get the first iterator in a model
6166         
6167         * gtk/gtktreestore.c (gtk_tree_store_get_root_iter): remove,
6168         conventionally the "root" in this sense is just NULL afaict.
6169
6170         * gtk/gtkliststore.c (gtk_list_store_insert_before): handle case
6171         where sibling == iter
6172         (gtk_list_store_insert_after): handle case where sibling == iter
6173
6174         * tests/testtreeview.c (run_automated_tests): fairly lame basic
6175         automated tests for ListStore, TreeStore
6176
6177         * gtk/gtkliststore.c (gtk_list_store_remove): update tail pointer
6178         (gtk_list_store_insert): update tail pointer, and fix it to work
6179         (gtk_list_store_insert_before): update tail pointer, and fix it to work
6180         (gtk_list_store_append): use tail to be faster
6181         (gtk_list_store_prepend): fix it, update tail pointer
6182         (gtk_list_store_insert_after): fix it, update tail pointer
6183
6184         * gtk/gtkliststore.h (struct _GtkListStore): add tail pointer for 
6185         the list
6186
6187 2001-01-09  Havoc Pennington  <hp@redhat.com>
6188
6189         * gtk/gtklabel.c (gtk_label_expose): don't draw if label->layout
6190         is NULL due to a pending resize
6191
6192         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): don't set the
6193         column width to values less than 1
6194
6195         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_width): clamp
6196         width to be between min/max width, and still set the width 
6197         even if autosize is turned on, so the tree view can use this 
6198         function in order to autosize.
6199         (gtk_tree_view_column_init): set initial width to 1 not 0
6200
6201         * gtk/gtktreeview.c (gtk_tree_view_size_request_buttons): use
6202         setter function to modify column width, so we get notification
6203         (gtk_tree_view_insert_iter_height): ditto
6204         (gtk_tree_view_calc_size): ditto
6205         (gtk_tree_view_check_dirty): ditto
6206
6207         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add
6208         properties to change all the interesting attributes of the tree
6209         view column.
6210         (gtk_tree_view_column_set_header_clickable): rename set_clickable
6211         (gtk_tree_view_column_get_clickable): add
6212         (gtk_tree_view_column_set_cell_renderer): don't unset the current
6213         attributes; assume a cell renderer with equivalent object
6214         properties has been swapped in. Do g_object_notify().
6215         (gtk_tree_view_column_set_visible): g_object_notify
6216         (gtk_tree_view_column_get_sizing): rename from get_col_type
6217         (gtk_tree_view_column_set_sizing): g_object_notify
6218         (gtk_tree_view_column_set_width): add g_object_notify
6219         (gtk_tree_view_column_set_min_width): ditto
6220         (gtk_tree_view_column_set_max_width): ditto
6221         (gtk_tree_view_column_set_title): ditto
6222         (gtk_tree_view_column_set_clickable): ditto
6223         (gtk_tree_view_column_set_widget): ditto
6224         (gtk_tree_view_column_set_justification): ditto
6225
6226 2001-01-09  Havoc Pennington  <hp@redhat.com>
6227
6228         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): handle case where
6229         there are no rows in the model
6230
6231         * gtk/gtkliststore.c (gtk_list_store_iter_children): if parent is
6232         NULL, then return the start of the list
6233
6234         * gtk/gtktreeview.c (gtk_tree_view_setup_model): don't build tree
6235         if we can't get any rows from an empty model 
6236
6237         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): remove
6238         extraneous * after function pointer typedef usage
6239
6240         * Makefile.am: don't specify full path to cp and rm
6241
6242         * gtk/gtkcellrenderertextpixbuf.c
6243         (gtk_cell_renderer_text_pixbuf_get_size): check width/height !=
6244         NULL before dereferencing, fixes a segfault that happened from
6245         time to time
6246
6247         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
6248         use gdk_pixbuf_render_to_drawable_alpha() to get alpha channel,
6249         and reindent the function
6250         (gtk_cell_renderer_pixbuf_get_size): indentation
6251
6252         * gtk/gtkdialog.c (gtk_dialog_run): destroy main loop only after
6253         we quit it
6254         (gtk_dialog_add_buttons_valist): add g_return_if_fail
6255         (gtk_dialog_set_default_response): New function, to set default
6256         button
6257         (gtk_dialog_set_response_sensitive): New function, to set 
6258         sensitivity of buttons
6259
6260         * gtk/gtkcellrendererpixbuf.c
6261         (gtk_cell_renderer_pixbuf_get_property): allow getting a NULL pixbuf
6262         (gtk_cell_renderer_pixbuf_set_property): allow setting a NULL pixbuf
6263
6264         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
6265         handle any G_TYPE_OBJECT subclass, not just the base class, and 
6266         also boxed types.
6267         (_gtk_tree_data_list_value_to_node): ditto
6268
6269         * gtk/gtkrbtree.c: Run _gtk_rbtree_test at strategic points if 
6270         --gtk-debug=tree
6271
6272         * gtk/gtkmain.c: add GTK_DEBUG_TREE
6273
6274         * gtk/gtkdebug.h: add GTK_DEBUG_TREE
6275
6276 2001-01-09  Tor Lillqvist  <tml@iki.fi>
6277
6278         * gdk/win32/gdkevents-win32.c: Implement better mouse
6279         capturing. Do use SetCapture(). Thanks to jpe@archaeopteryx.com.
6280         (find_window_for_pointer_event): New function.
6281         (gdk_event_translate): Use it when handling mouse events.
6282
6283 2001-01-09  Alexander Larsson  <alla@lysator.liu.se>
6284
6285         * configure.in:
6286         Added --with-included-loaders option
6287
6288         * gdk-pixbuf/Makefile.am:
6289         * gdk-pixbuf/gdk-pixbuf-io.c:
6290         Add support for including selected gdk-pixbuf loaders only.
6291
6292         * gtk/gtkwindow.c (gtk_window_set_frame_dimensions,
6293         gtk_window_set_has_frame):
6294         Added inline documentation.
6295
6296         * gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
6297         * docs/reference/gdk/tmpl/windows.sgml:
6298         Added inline documentation.
6299
6300 Mon Jan  8 14:42:06 2001  Jonathan Blandford  <jrb@redhat.com>
6301
6302         * gtk/gtktreeview.c (gtk_tree_view_realize_buttons): Skip
6303         realizing buttons that have already been realized.
6304
6305 Mon Jan  8 14:06:29 2001  Jonathan Blandford  <jrb@redhat.com>
6306
6307         * tests/testtreeview.c (main): Show menu items before adding to
6308         option menu.
6309
6310         * gtk/gtktreeview.c (gtk_tree_view_set_model): Keep the columns
6311         around if we kill them.
6312
6313         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
6314         Return if we pass in a NULL model.
6315
6316 2001-01-08  Havoc Pennington  <hp@redhat.com>
6317
6318         * tests/testtreeview.c: hack on this some
6319
6320         * gtk/gtktreestore.c (gtk_tree_store_setv): rename
6321         gtk_tree_store_set_valist, v is for arrays, valist for varargs
6322         list
6323         (gtk_tree_store_getv): rename gtk_tree_store_get_valist
6324
6325         * gtk/gtkliststore.h: Add varargs set() and get() convenience
6326         functions
6327
6328 2001-01-08  Alexander Larsson  <alexl@redhat.com>
6329
6330         * gtk/gtkwindow-decorate.[hc]:
6331         * gtk/Makefile.am:
6332         New files. Contains an implementation of a minimal WM for
6333         linux-fb.
6334
6335         * gtk/gtkwindow.h:
6336         Add the possibility for GtkWindows to specify a frame. This
6337         is used for the window decoration code, but could concievably
6338         be used for X programs too (xmms style windows).
6339         GtkWindow->frame is the toplevel window if the window is framed.
6340         The signal frame_event gets all events that are targeted to
6341         GtkWindow->frame.
6342         (_gtk_window_constrain_size): Exported for usage by gtkwindow-decorate.c.
6343         
6344         * gtk/gtkwindow.c:
6345         Implement gtk_window_set_has_frame and gtk_window_set_frame_dimensions.
6346         Call out to gtkwindow-decorate.c for WM support in linx-fb.
6347
6348 2001-01-08  Alexander Larsson  <alexl@redhat.com>
6349
6350         * docs/README.linux-fb:
6351         Correct filename ~/.pangoft2_aliases
6352
6353         * gdk/gdkwindow.h:
6354         Added new function gdk_window_get_decorations.
6355
6356         * gdk/linux-fb/gdkfb.h:
6357         Removed _gdk_window_get_decorations declaration.
6358         Renamed _gdk_window_set_child_handler to
6359         gdk_fb_window_set_child_handler.
6360
6361         * gdk/linux-fb/gdkwindow-fb.c:
6362         Renamed _gdk_window_set_child_handler to
6363         gdk_fb_window_set_child_handler.
6364
6365         * gdk/x11/gdkwindow-x11.c:
6366         New function gdk_window_get_mwm_hints().
6367         Implemented gdk_window_get_decorations.
6368
6369         * docs/reference/gdk/tmpl/windows.sgml:
6370         * docs/reference/gdk/gdk-sections.txt:
6371         Added gdk_window_get_decorations docs.
6372         
6373 2001-01-08  Alexander Larsson  <alla@lysator.liu.se>
6374
6375         * gdk/linux-fb/gdkwindow-fb.c (_gdk_fb_window_find_focus,
6376         gdk_fb_window_find_focus, gdk_fb_send_focus_change,
6377         gdk_fb_window_send_crossing_events):
6378         Possibly send focus events when the mouse moves from one
6379         window to another.
6380
6381 2001-01-07  Tor Lillqvist  <tml@iki.fi>
6382
6383         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title,
6384         gdk_window_new): Adapt calls to g_{locale,filename}_{to,from}_utf8
6385         to match current API.
6386
6387         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): If a secret
6388         environment variable is set, don't call g_error when on a
6389         palettized (PseudoColor) display. Some people want to use GTK+ 
6390         in 256-colour mode even though works only partially.
6391
6392         * gdk/gdk.def
6393         * gtk/gtk.def
6394         * gtk/makefile.mingw.in: Update.
6395
6396 2001-01-05  Havoc Pennington  <hp@redhat.com>
6397
6398         * tests/testtreeview.c: hack on this a bit
6399
6400         * gtk/gtktextlayout.c (gtk_text_layout_class_init):
6401         s/GTK_RUN_LAST/G_SIGNAL_RUN_LAST
6402
6403         * gtk/gtktreemodelsimple.h (GTK_IS_TREE_MODEL_SIMPLE_CLASS): 
6404         was spelled incorrectly
6405         (GTK_IS_TREE_MODEL_SIMPLE): ditto
6406
6407         * gtk/gtktreeview.c (gtk_tree_view_set_headers_clickable): rename
6408         from gtk_tree_view_set_headers_active   
6409
6410         * gtk/gtktexttag.c:
6411         (gtk_text_tag_get_property): handle PROP_DIRECTION
6412         (gtk_text_tag_set_property): g_object_notify when we toggle the _set
6413         properties, bug 40235
6414
6415         * gtk/gtktextiter.c (gtk_text_iter_forward_to_delimiters): rename
6416         forward_to_line_end
6417
6418 Fri Jan  5 16:16:29 2001  Owen Taylor  <otaylor@redhat.com>
6419
6420         * gtk/{gtkcalender.c,gtkfilesel.c,gtkimcontext.c},
6421         modules/input/gtkimcontextxim.c: Adapt to new prototypes
6422         for unicode,locale,filename conversion functions.
6423
6424 2001-01-05  Havoc Pennington  <hp@redhat.com>
6425
6426         * gtk/gtktextiter.c (gtk_text_iter_ends_line): this function was
6427         broken if called on the first position in the buffer.
6428
6429         * gtk/gtktextlayout.c (line_display_index_to_iter): fix
6430         forward_to_delimiters to be called only if we aren't already at
6431         the delimiters.
6432
6433 2001-01-05  Havoc Pennington  <hp@redhat.com>
6434
6435         * demos/gtk-demo/main.c (create_tree): Oops, that didn't link. Fix.
6436
6437 2001-01-05  Alexander Larsson  <alexl@redhat.com>
6438
6439         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_drawable_finalize): free
6440         colormap in here. Sync from X port.
6441         (gdk_fb_set_colormap): allow the colormap to be NULL if you like.
6442         Sync from X port.
6443         (gdk_fb_clip_region): Comment out g_warning about empty clip region.
6444         This happens now and then, and i don't think it is a bug.
6445         (gdk_fb_draw_polygon): Correctly add extra point if startpoint
6446         != endpoint.
6447         (gdk_fb_draw_lines): Don't draw dashed lines if line_style is
6448         GDK_LINE_SOLID.
6449
6450         * gdk/linux-fb/gdkfont-fb.c: Return bogus GdkFont that has
6451         some of the fields filled in at least.
6452
6453         * gdk/linux-fb/miwideline.c: The widths argument to miLineArcI, and
6454         miLineArcD is no more, remove it from the function definition.
6455
6456 2001-01-04  Havoc Pennington  <hp@redhat.com>
6457
6458         * gtk/gtktreeselection.c (gtk_tree_selection_get_tree_view): add
6459         this
6460
6461         * gtk/gtktreemodel.h (struct _GtkTreeIter): rename fields to
6462         user_data instead of tree_node
6463
6464         * gtk/gtktreeprivate.h (TREE_VIEW_COLUMN_WIDTH): rename from
6465         TREE_VIEW_COLUMN_SIZE
6466
6467         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): rename
6468         "size" field to "width" finishes bug 40061
6469
6470         * gtk/gtkcellrenderer.h: Use GtkCellRendererState instead of guint
6471         for bitfields, bug 40268
6472
6473 2001-01-04  Havoc Pennington  <hp@redhat.com>
6474
6475         Rename some stuff:
6476         
6477         s/gtk_tree_view_column_set_size/gtk_tree_view_column_set_width/g;
6478
6479         s/GtkModelSimple/GtkTreeModelSimple/g;
6480         s/GTK_MODEL_SIMPLE/GTK_TREE_MODEL_SIMPLE/g;
6481         s/gtk_model_simple/gtk_tree_model_simple/g;
6482         s/gtkmodelsimple/gtktreemodelsimple/g;
6483
6484         s/gtk_tree_view_column_set_header_active/gtk_tree_view_column_set_header_clickable/g;
6485
6486         s/GtkTreeViewColumnType/GtkTreeViewColumnSizing/g;
6487         s/column_set_col_type/column_set_sizing/g;
6488
6489         s/GtkTreeSelectionType/GtkTreeSelectionMode/g;
6490         s/gtk_tree_selection_set_type/gtk_tree_selection_set_mode/g;
6491
6492         s/GtkCellRendererType/GtkCellRendererState/g;
6493         
6494         * gtk/gtkcellrenderertoggle.c: remove _ macro, include gtkintl.h
6495         (gtk_cell_renderer_toggle_class_init): change "state" property to
6496         "active", to match GtkToggleButton
6497         (gtk_cell_renderer_toggle_get_active): new function, bug
6498         40269
6499         (gtk_cell_renderer_toggle_set_active): new function
6500         (gtk_cell_renderer_toggle_set_property): route changes to toggle
6501         state through gtk_cell_renderer_set_active
6502
6503 Thu Jan  4 15:46:18 2001  Jonathan Blandford  <jrb@redhat.com>
6504
6505         * gtk/gtkmodelsimple.c: Changed a bunch of boxed types to pointers
6506         temporarily until they work again.  Brought up to date with
6507         changes in the model.
6508         * gtk/gtkmodelsimple.h: Brought up to date with changes in the
6509         model.
6510
6511 2001-01-04  Havoc Pennington  <hp@redhat.com>
6512
6513         * gtk/gtktextlayout.c (line_display_index_to_iter): if index is
6514         equal to the line length, then position iterator before paragraph 
6515         separators. Fixes crash reported by Mikael Hermansson when
6516         pressing left arrow from the start of a line.   
6517
6518         * gtk/gtktextiter.c (iter_set_from_byte_offset): Add g_error
6519         about byte indexes off the end
6520         (iter_set_from_char_offset): add g_error about char offsets
6521         off the end
6522
6523 2001-01-03  Havoc Pennington  <hp@redhat.com>
6524
6525         * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
6526
6527         * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use 
6528         of private functions; remove inclusion of private headers.
6529
6530         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this 
6531         function, so we don't need private functions in gtktextdisplay.c
6532
6533         * gtk/gtktextiterprivate.h: underscore-ification
6534
6535         * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
6536         to instead say "only useful to implement widgets"
6537
6538         * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
6539         GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
6540         GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
6541
6542         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
6543         This function was completely broken
6544
6545         * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
6546
6547         * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
6548
6549         * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
6550
6551         * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
6552
6553         * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
6554
6555         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
6556
6557         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
6558         gtk_paint_layout
6559
6560         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
6561         gtk_paint_layout
6562
6563         * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
6564         Progress on bug 40103. Add draw_layout to draw a PangoLayout.
6565         (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
6566         which were not implemented.     
6567
6568         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
6569         insert_pixbuf signal. Rename delete_text to delete_range since it
6570         also deletes pixbufs and child anchors. This almost closes bug
6571         40245 (still need to deal with child anchors)
6572
6573         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
6574         insert_pixbuf, change signal names as appropriate, change types of
6575         signals taking marks/tags to have the specific type, not just
6576         G_TYPE_OBJECT
6577         
6578         * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; 
6579         closes bug 40051
6580
6581         * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
6582         unnecessary remove_contents() call
6583         (gtk_option_menu_class_init): add a "changed" signal, closes
6584         bug 40039
6585         (gtk_option_menu_update_contents): emit "changed" if the 
6586         active menu item changes
6587
6588         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
6589         cast to GtkObject, reported by Jonas Borgstrom
6590         (gdk_pixbuf_loader_finalize): don't close the loader on finalize;
6591         we can't do stuff with side effects in finalize. Instead, spew a
6592         warning if the loader isn't closed.
6593
6594         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
6595         colormap in here, non-X ports probably need to sync to this change
6596
6597         * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove 
6598         assertion that colormap != NULL, you can set the colormap to NULL
6599         if you like.
6600         
6601         * Makefile.am: remove gtk-config-2.0
6602
6603         * configure.in: Use pkg-config to locate GLib. Remove
6604         separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
6605         and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
6606         Use pkg-config to locate Pango. Output correct Pango libs to
6607         gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
6608
6609         * Makefile.am (pkgconfig_DATA): install only target-specific pc
6610         files
6611         (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
6612         X11 pc files
6613
6614         * gtk+-2.0.pc.in (Requires): require the GDK for the current target
6615         unref from here
6616
6617 2001-01-03  Alexander Larsson  <alla@lysator.liu.se>
6618
6619         * configure.in:
6620         Change GTK_NO_CHECK_CASTS to G_DISABLE_CAST_CHECKS.
6621
6622 Tue Jan  2 16:23:05 2001  Owen Taylor  <otaylor@redhat.com>
6623
6624         * gtk/gtktextlayout.c
6625         (gtk_text_layout_move_iter_to_previous_line): Fix unitialized
6626         variable when moving back onto a single line.
6627
6628 2001-01-01  Havoc Pennington  <hp@redhat.com>
6629
6630         * gtk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
6631
6632         * gdk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
6633
6634         * configure.in (LIBTOOL_EXPORT_OPTIONS): define
6635         LIBTOOL_EXPORT_OPTIONS with options to control symbol export
6636
6637 2001-01-01  Havoc Pennington  <hp@redhat.com>
6638
6639         * gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
6640
6641         * gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for 
6642         GtkTextAttributes
6643
6644         * gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug 
6645         #40246
6646         (gtk_text_attributes_copy_values): rename from 
6647         gtk_text_attributes_copy
6648         (gtk_text_attributes_copy): a more standard GTK copy function, 
6649         which returns a new object
6650
6651 2001-01-01  Havoc Pennington  <hp@redhat.com>
6652
6653         * gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
6654         
6655         * gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
6656         don't fill in tree_view->priv->selection, kind of an unexpected
6657         side effect
6658
6659         * gtk/gtkcellrenderertext.c: Remove definition of _ and include
6660         gtkintl.h
6661         
6662         * gtk/gtkcellrenderer.c: Remove definition of _ and include
6663         gtkintl.h
6664         (gtk_cell_renderer_get_property): remove calls to g_value_init
6665
6666         * gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
6667         gtkintl.h
6668
6669         * gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
6670         and include gtkintl.h
6671         (gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
6672         property names
6673
6674         * gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
6675         GtkTreeSelection
6676         (_gtk_tree_selection_new_from_with_view): rename, return
6677         GtkTreeSelection
6678         (_gtk_tree_selection_set_tree_view): rename with uscore
6679         (gtk_tree_selection_get_selected): fill in the "model" out param
6680         first, so it gets filled in even if we return at the top of the 
6681         function
6682         (gtk_tree_selection_real_select_all): add a comment and an else{}
6683         to clarify this a bit
6684         (gtk_tree_selection_real_unselect_all): add the same else{}
6685
6686         * gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
6687         set_tree_view to have underscore prefixes, move them to the
6688         private header, fix return type of new_with_tree_view
6689         (struct _GtkTreeSelection): mark struct
6690         fields private  
6691
6692         * gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
6693         GtkTreeModelFlags, not a guint
6694         (gtk_tree_path_prev): return gboolean not gint
6695         (gtk_tree_path_up): return gboolean not gint
6696
6697         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
6698         return GtkTreeModelFlags, not a guint
6699
6700         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
6701         that child model is non-null before unrefing it
6702         (g_value_int_compare_func): make this a qsort compare func, not 
6703         a boolean predicate
6704
6705         * gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
6706         (add -umn to the end), and mark it unimplemented
6707         (gtk_tree_model_sort_resort): remove, this wasn't implemented, and 
6708         I don't see what it's for - doesn't the model always sort itself?
6709         (gtk_tree_model_sort_set_compare): this had the wrong signature
6710
6711         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
6712         Fix the docs to say that it destructively replaces existing
6713         attributes (previously said that it added attributes).
6714         (gtk_tree_view_column_set_visible): canonicalize bool before
6715         equality testing. Also, check for realization before
6716         hiding/showing the tree_column->window; if this window could exist
6717         before realization, then it's busted and needs fixing, we can't 
6718         create GDK resources pre-realization. Also, remove
6719         superfluous queue_resize(), since set_size() does that for us.
6720         (gtk_tree_view_column_set_col_type): check realization before 
6721         using tree_column->window
6722
6723         * gtk/gtktreedatalist.c: fix filename in copyright notice
6724
6725 2000-12-31  Havoc Pennington  <hp@pobox.com>
6726
6727         * gtk/gtktextview.c: Rearrange all the
6728         scroll-while-dragging-or-selecting code to be different, not
6729         necessarily better. ;-)
6730         (gtk_text_view_scroll_to_mark): Change this
6731         function to take within_margin as a fraction instead of a pixel
6732         value, and to take alignment arguments (indicating where to align 
6733         the mark inside the visible area)
6734         
6735         * gtk/testtextbuffer.c (fill_buffer): fix bad cast of GtkTextTag
6736         to GtkObject
6737
6738         * gtk/gtktextiter.c (gtk_text_iter_set_line_offset): change
6739         behavior so that offsets past the end of the line are not 
6740         allowed, and an offset equal to the line length moves the iterator
6741         to the next line
6742         (gtk_text_iter_set_line_index): make parallel change
6743         (gtk_text_iter_get_bytes_in_line): add this function
6744         
6745         * gtk/gtktextbtree.c (_gtk_text_line_byte_locate): change handling
6746         of byte indexes off the end of the line; byte index at the end of
6747         the line now returns FALSE and doesn't fill in the requested
6748         values, byte index past the end of the line is an error.  Also,
6749         don't allow -1 offset anymore, since its meaning is unclear.
6750
6751         This change exposes some bug in visual cursor motion, where we
6752         end up with a huge invalid byte index; needs fixing. Symptom of 
6753         bug is a crash when you hit up arrow.
6754         
6755         (_gtk_text_line_char_locate): match the change to byte_locate
6756
6757         * gtk/gtktextiter.c (find_by_log_attrs): Handle iteration backward
6758         from start of line properly. fixes bug reported by Mikael
6759         Hermansson where backspace would delete all text before the
6760         cursor.
6761
6762 2000-12-30  Tor Lillqvist  <tml@iki.fi>
6763
6764         * gdk/win32/gdkwindow-win32.c
6765         (gdk_window_impl_win32_get_visible_region): New function, as in
6766         the X11 backend.
6767         (gdk_window_new, gdk_window_set_title): Use g_locale_from_utf8()
6768         instead of duplicating the same code here.
6769
6770         * gdk/win32/gdkwin32.h (GDK_COLORMAP_PRIVATE_DATA): Use
6771         GDK_COLORMAP macro.
6772
6773         * gdk/win32/gdkevents-win32.c (gdk_event_funcs): Use NULL as
6774         destroy function.
6775         (gdk_event_translate): Use GDK_COLORMAP_PRIVATE_DATA to correctly
6776         access that.
6777
6778         * gtk/gtk.def: Update.
6779
6780         * gtk/makefile.mingw.in: Use glib-genmarshal from $(GLIB)/gobject.
6781
6782 2000-12-30  Havoc Pennington  <hp@pobox.com>
6783
6784         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set the system
6785         colormap on input only windows, to avoid special cases all over
6786         the code for these windows.
6787
6788 2000-12-26  Tor Lillqvist  <tml@iki.fi>
6789
6790         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): Call g_error if
6791         we are on a palettized display ("PseudoColor" in X11), as the code
6792         for that doesn't work anyway, and never has.
6793
6794 2000-12-22  Alexander Larsson  <alexl@redhat.com>
6795
6796         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
6797         Don't use isprint() for chars > 255.
6798
6799 2000-12-21  Havoc Pennington  <hp@redhat.com>
6800
6801         * tests/testtreeview.c: more work
6802
6803 2000-12-21  Alexander Larsson  <alexl@redhat.com>
6804
6805         * docs/README.linux-fb:
6806         Update the docs to the new pangoft2 way.
6807
6808 2000-12-21  Alexander Larsson  <alexl@redhat.com>
6809
6810         * configure.in:
6811         For linux-fb get the pangoft2 cflags and libs. This needs a recent
6812         pango version.
6813         Remove modules/linux-fb/Makefile.
6814
6815         * gdk/linux-fb/gdkdrawable-fb2.c:
6816         Render glyphs using freetype.
6817
6818         * gdk/linux-fb/gdkfb.h:
6819         Add new fb-specific functions needed for managing windows.
6820
6821         * gdk/linux-fb/gdkmain-fb.c:
6822         Remove gdk_font_init/fini() calls.
6823
6824         * gdk/linux-fb/gdkpango-fb.c:
6825         Remove old implementation. Use pangoft2 instead.
6826
6827         * gdk/linux-fb/gdkprivate-fb.h:
6828         Remove PangoFBFont and related stuff.
6829
6830         * gdk/linux-fb/gdkwindow-fb.c:
6831         Implement drawable->get_visible_region.
6832         Implement support for _gdk_window_set_child_handler () and
6833         _gdk_window_get_decorations().
6834
6835         * modules/Makefile.am:
6836         Remove linux-fb subdir.
6837
6838         * modules/linux-fb/*:
6839         Removed all.
6840         
6841 2000-12-20  Jonathan Blandford  <jrb@redhat.com>
6842
6843         * gtk/gtkcellrenderer*.c (::get_property): remove g_value_init
6844         calls, as they are no longer needed.
6845
6846         * gtk/gtktreemodelsort.c: Fix up the comparison code.
6847         
6848         * gtk/gtktreemodel.h: Start work on ::reordered signal.  Need to
6849         figure out how to emit a signal on an interface.
6850
6851 2000-12-20  Havoc Pennington  <hp@redhat.com>
6852
6853         * tests: new directory to contain tests, gtk/test* should move
6854         here sometime (with appropriate on-cvs-server hackery)
6855
6856         * tests/testtreeview.c, tests/Makefile.am: a test
6857         
6858         * configure.in (AC_OUTPUT): add tests/Makefile
6859
6860         * gtk/gtktexttag.c (gtk_text_tag_get_property): Add "invisible"
6861         and "invisible_set" which were missing
6862
6863         * gtk/gtkrbtree.h: some cheesy indentation fix
6864         
6865 2000-12-20  Alexander Larsson  <alexl@redhat.com>
6866
6867         * gtk/gtkinvisible.c (gtk_invisible_realize):
6868         Attach the style to the window so that the style it is not
6869         leaked when unrealizing the window.
6870
6871 2000-12-18  Havoc Pennington  <hp@redhat.com>
6872
6873         * gtk/gtktextview.c (gtk_text_view_delete_from_cursor): do
6874         begin/end user action where appropriate
6875         (gtk_text_view_commit_handler): add begin/end user action
6876
6877         * gtk/gtktextbuffer.c: add begin/end user action signals, and
6878         bracket interactive operations with begin/end user action pair.
6879         
6880         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): remove
6881         "interactive" arg from insert_text and delete_text signals.
6882         Add begin_user_action, end_user_action signals
6883         (gtk_text_buffer_begin_user_action): 
6884         (gtk_text_buffer_end_user_action): New functions to delimit 
6885         a user-visible action
6886
6887         * gtk/gtkmarshal.list: update to reflect changes to gtktextbuffer
6888         signals.
6889         
6890 2000-12-18  Havoc Pennington  <hp@redhat.com>
6891
6892         * gdk/gdkevents.c (gdk_event_get_state): wow, that implementation
6893         was pretty non-working.
6894
6895         * gtk/testtext.c (fill_file_buffer): make this a bit more robust
6896         by passing the length to g_utf8_validate().
6897
6898 2000-12-16  Havoc Pennington  <hp@pobox.com>
6899
6900         * gtk/gdk-pixbuf-loader.h, gtk/gdk-pixbuf-loader.c: 
6901         Port to GObject, can go back in gdk-pixbuf after setting up 
6902         a gdk-pixbuf-marshal.h header over there.
6903
6904         * gtk/gtktreeview.c: s/SEPERATOR/SEPARATOR/g;
6905         (gtk_tree_view_class_init): specify GTK_TYPE_ADJUSTMENT for signal
6906         args
6907         (gtk_tree_view_init): don't unset GTK_NO_WINDOW, it shouldn't be
6908         set
6909         (gtk_tree_view_realize_buttons): don't gtk_widget_show() buttons
6910         here, do it when we create the buttons later
6911         (gtk_tree_view_realize_buttons): add some g_return_if_fail 
6912         (gtk_tree_view_map): paranoia checks that column->button is shown 
6913         and unmapped
6914         (gtk_tree_view_size_request): only request visible children.
6915         Move header size calculation in here, for cleanliness, and 
6916         to maintain invariants for child widgets if we eventually 
6917         let users set different children inside the buttons
6918         (gtk_tree_view_map_buttons): factor out code to map buttons,
6919         since it was being called several times
6920         (gtk_tree_view_size_allocate_buttons): move_resize the drag
6921         windows instead of just moving them; their height may change 
6922         if we allow random widgets in there, or the theme changes.
6923         (gtk_tree_view_size_allocate): move button size allocation 
6924         above emitting the scroll signals, to ensure a sane state when we
6925         hit user code
6926         (gtk_tree_view_button_release): remove queue_resize after
6927         tree_view_set_size(), set_size() will handle any resize queuing
6928         that's needed
6929         (gtk_tree_view_focus_in): just queue a draw, don't fool with
6930         draw_focus goo
6931         (gtk_tree_view_focus): use gtk_get_current_event() and
6932         gdk_event_get_state()
6933         (gtk_tree_view_deleted): don't queue_resize() after calling set_size()
6934         (gtk_tree_view_build_tree): fix a "if (foo); {}" bug - i.e. remove
6935         semicolon
6936         (gtk_tree_view_create_button): show the button here
6937         (gtk_tree_view_button_clicked): actually emit the clicked signal
6938         on the column
6939         (_gtk_tree_view_set_size): return right away if the size is
6940         unchanged, as a cheesy optimization
6941         (gtk_tree_view_setup_model): rename set_model_realized to 
6942         setup_model to match the flag that indicates whether we've 
6943         called it
6944         (gtk_tree_view_get_hadjustment): create adjustment if it doesn't
6945         exist, because set_scroll_adjustment does that and it shouldn't
6946         matter what order you call these in
6947         (gtk_tree_view_get_vadjustment): ditto
6948         (gtk_tree_view_set_headers_visible): canonicalize the bool, 
6949         for paranoia
6950         (gtk_tree_view_set_headers_visible): call
6951         gtk_tree_view_map_buttons() instead of using cut-and-paste code
6952         (gtk_tree_view_append_column): clarify whether the return value
6953         is the count of columns before or after, and do the increment 
6954         separately from the return statement so you can tell from the code.
6955         (gtk_tree_view_remove_column): ditto
6956         (gtk_tree_view_insert_column): ditto
6957         (gtk_tree_view_get_column): remove g_return_if_fail for columns
6958         outside the existing range, the docs say that outside-range
6959         columns are allowed, so we handle them as documented. (Presumably
6960         this allows a nice loop with column != NULL as test.)
6961         (gtk_tree_view_move_to): document what 0.0, 0.5, 1.0 alignments 
6962         mean (left/right/center etc.).
6963         (gtk_tree_view_collapse_all): only queue a draw if we're mapped
6964         (gtk_tree_view_expand_row): add docs
6965         (gtk_tree_view_collapse_row): add docs
6966
6967         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clicked): new
6968         function to emit the clicked signal on a column
6969         
6970         * gdk/gdkevents.c (gdk_event_get_state): new function, to get the
6971         state of an event
6972         (gdk_event_get_time): don't treat GDK_SCROLL 
6973         as a button event, remove default case from switch so gcc 
6974         will whine if we don't explicitly handle all event types
6975
6976         * gtk/gtktreeselection.h: added some FIXME 
6977         
6978         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): rename
6979         "columns" to "n_columns" and "column" to "columns" for clarity
6980
6981 2000-12-16  Havoc Pennington  <hp@pobox.com>
6982         
6983         * gtk/gtktextiter.c: General cleanup of the log attr iteration
6984         stuff. This should make e.g. the delete key work again in the
6985         text widget...
6986         (gtk_text_iter_forward_cursor_positions): handle negative count
6987         (gtk_text_iter_backward_cursor_positions): handle negative count
6988         (gtk_text_iter_forward_word_ends): handle negative count
6989         (gtk_text_iter_backward_word_starts): handle negative count
6990
6991         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h,
6992         gtk/gtktexttag.c, gtk/gtktexttagtable.h, gtk/gtktexttagtable.c, 
6993         gtk/gtktextbuffer.h, gtk/gtktextbuffer.c: Convert everything to 
6994         GObject. No doubt will cause breakage.
6995
6996         * demos/gtk-demo/textview.c: remove hacks around
6997         non-GObject-ification of the text objects
6998
6999         * demos/gtk-demo/main.c (main): use g_object_set() to manipulate 
7000         the text tag
7001         
7002 2000-12-14  Havoc Pennington  <hp@pobox.com>
7003
7004         * configure.in: only AC_DEFINE(HAVE_XFT) if we actually determined
7005         that we have Xrender
7006
7007 Thu Dec 14 20:22:31 2000  Owen Taylor  <otaylor@redhat.com>
7008
7009         * gdk/{gdkdrawable.[ch],gdkpixmap.c,gdkwindow.c,x11/gdkwindow.c}:
7010         Add two virtualized functions gdk_drawable_get_clip_region - to
7011         get the clip region when drawing.
7012         
7013         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Rewrite to simple
7014         use invalidate_region.
7015
7016         * gdk/gdkwindow.c (gdk_window_invalidate_region): Clip to visible
7017         region.
7018
7019         * acconfig.h configure.in: Check for Xft. For now, assume
7020         that if Xft is found, Pango was compiled with Xft support
7021         as well.
7022
7023         * gdk/gdkcolor.h gdk/x11/gdkcolor-x11.c: Add 
7024         gdk_colormap_query_color().
7025         
7026         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_glyphs): Draw
7027         with Xft if appropriate.
7028
7029         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Create
7030         a pangoxft context if we have XFT and the environment
7031         variable GD_USE_XFT is set.
7032         
7033         * gdk/x11/gdkx.h (struct _GdkGCX11): Cache the fg_pixel
7034         and also possibly an XftDraw structure.
7035
7036         * gtk/gtkfontsel.c: Handle the case where the font from the
7037         style doesn't match any of the fonts a bit better.
7038         
7039         * gtk/testgtk.c: Add tabs between directional segments for
7040         hebrew/arabic test. (Not really necessary, just a little
7041         prettier.)
7042
7043 2000-12-14  Havoc Pennington  <hp@redhat.com>
7044
7045         * gtk/testtext.c (fill_file_buffer): fix unicode validation when
7046         reading a file
7047
7048 2000-12-14  Havoc Pennington  <hp@redhat.com>
7049
7050         * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove
7051         unused call to get_last_line()
7052
7053         * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER
7054         here until boxed is working (and maybe after that - we should
7055         really not gratuitously break old code)
7056
7057         * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out
7058         specific types for font_desc and tabs args, move them to
7059         GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get 
7060         fixed. Move GdkColor args to GTK_TYPE_POINTER also.
7061
7062         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily
7063         use GTK_TYPE_POINTER for signal signatures as a hack-around
7064
7065         * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and
7066         PangoTabArray
7067
7068         * gtk/gtktextlayout.c (line_display_iter_to_index): 
7069         make static
7070         (line_display_index_to_iter): make static
7071
7072         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
7073         to marshal a string not a boxed
7074
7075         * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text
7076
7077         * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char
7078         since the UTF-8 isn't validated yet
7079
7080         * gtk/gtktextsegment.c (char_segment_check_func): don't require
7081         lines to end in '\n'
7082         
7083         * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use
7084         forward_to_delimiters, and grapheme boundaries
7085         (gtk_text_view_delete_from_cursor): properly handle non-newline
7086         delimiters, and grapheme boundaries
7087
7088         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename
7089         to gtk_text_iter_forward_to_delimiters, and make it work properly
7090         if empty lines end with a character other than '\n'
7091
7092         * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor
7093         position
7094
7095 2000-12-15  Tor Lillqvist  <tml@iki.fi>
7096
7097         * gdk/makefile.{mingw.in,msc} (gdk_OBJECTS): Add gdkkeys.
7098
7099         * gtk/gtk.def
7100         * gdk/gdk.def: Update.
7101
7102         * gdk/win32/gdkmain-win32.c
7103         * gdk/win32/gdkkeys-win32.c: New file. Move some functions from
7104         gdkmain-win32.c here.
7105
7106         * gdk/win32/makefile.mingw.in (all): No need to make
7107         gdk-win32res.o here, the makefile one step up will call us to make
7108         it.
7109
7110         * gdk/win32/makefile.{mingw.in,msc} (gdk_win32_OBJECTS): Add
7111         gdkkeys-win32.
7112
7113         * gdk/win32/gdkcolor-win32.c: Silence gcc -Wall.
7114
7115         * gdk/win32/gdkevents-win32.c (gdk_events_init): Remove leftover
7116         call to g_source_add().
7117
7118         * gdk/win32/gdkgc-win32.c (BitmapToRegion): Plug memory
7119         leak. Thanks to Andreas Kemnade.
7120
7121 2000-12-13  Havoc Pennington  <hp@pobox.com>
7122
7123         * gtk/gtktextbtree.h: Remove double _ in front of some functions
7124
7125         * gtk/gtktext*.[hc]: update accordingly
7126         
7127 2000-12-13  Havoc Pennington  <hp@pobox.com>
7128
7129         * gtk/gtktextbtree.h: Put _ in front of every function in this 
7130         header file
7131
7132         * gtk/gtktext*.[hc]: update to reflect renamed btree functions
7133
7134 2000-12-13  Alex Larsson  <alexl@redhat.com>
7135
7136         * gdk/linux-fb/gdkmouse-fb.c (mouse_devs):
7137         Add support for ps2 intellimouse.
7138
7139         * gdkkeyboard-fb.c:
7140         Move shift-F1 repaint handling to xlate handler only.
7141         
7142         * docs/README.linux-fb:
7143         Add imps2 to docs.
7144         Document the new refresh keys.
7145         
7146 Tue Dec 12 23:46:44 2000  Tim Janik  <timj@gtk.org>
7147
7148         * gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
7149
7150         * gtk/gtkbox.c: change property types from (u)long to (u)int for
7151         ::position and ::padding.
7152
7153         * gtk/gtkcontainer.c: make ::border_width an INT property.
7154
7155         * gtk/gtkpacker.c: make ::position an INT property.
7156
7157         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
7158         guard against NULL h/v scrollbars, since this is used at construction
7159         time.
7160
7161         * gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
7162         internal gtk_clist_constructor().
7163
7164         * gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
7165         gtk_ctree_constructor().
7166
7167         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
7168         ::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
7169
7170         * docs/reference/Makefile.am: fun stuff, disabled docs generation
7171         again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
7172
7173         * gtk/gtkwidget.[hc]:
7174         removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
7175         and gtk_widget_get().
7176         (gtk_widget_new): use g_object_new_valist().
7177         (gtk_widget_set): use g_object_set_valist().
7178
7179         * gtk/gtkobject.[hc]:
7180         removed gtk_object_arg_get_info(), gtk_object_getv(),
7181         gtk_object_query_args(), gtk_object_newv(),
7182         gtk_object_class_add_signals(),
7183         gtk_object_class_user_signal_new(),
7184         gtk_object_class_user_signal_newv(),
7185         gtk_object_arg_set(), gtk_object_arg_get(),
7186         gtk_object_args_collect(),
7187         gtk_object_default_construct(),
7188         gtk_object_constructed(),
7189         GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
7190         removed nsignals, signals and n_args members from GtkObjectClass.
7191         (gtk_object_new): use g_object_new_valist().
7192         (gtk_object_set): use g_object_set_valist().
7193         (gtk_object_get): use g_object_get_valist().
7194         
7195         * gtk/gtkcompat.h: define gtk_object_default_construct().
7196         
7197         * gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
7198         g_object_new().
7199
7200         * gtk/*.c: removed gtk_object_class_add_signals() from class_init()
7201         fucntions, cleaned up method assignments (make sure your structures
7202         are setup properly before calling out). removed all GTK_CONSTRUCTED
7203         hacks ;)
7204
7205 Tue Dec 12 11:52:16 2000  Owen Taylor  <otaylor@redhat.com>
7206
7207         * gtk/gtkclist.c (gtk_clist_optimal_column_width): Fix 
7208         off-by-one error in checks. (Dave Lambert)
7209
7210 2000-12-12  Alexander Larsson  <alexl@redhat.com>
7211
7212         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_close, raw_close):
7213         Don't free gdk_fb_keyboard twice.
7214
7215 Tue Dec 12 08:24:42 2000  Tim Janik  <timj@gtk.org>
7216
7217         * gtk/testgtk.c:
7218         (create_tooltips): 
7219         (create_statusbar): get rid of object_signal:: GtkObject argument uses,
7220         use GObject swapped_signal:: properties instead.
7221
7222         * gtk/gtkcellrenderertoggle.c: 
7223         * gtk/gtkcellrenderertextpixbuf.c: 
7224         * gtk/gtkcellrenderertext.c: 
7225         * gtk/gtkcellrendererpixbuf.c: 
7226         * gtk/gtkcellrenderer.c:
7227         * gtk/gtktreeviewcolumn.c: s/[sg]et_param/[sg]et_property/, fixed
7228         missing warnings for invalid property ids, install properties
7229         with g_object_class_install_property() now.
7230         
7231         * gtk/gtksignal.c:
7232         (gtk_signal_emit): let g_signal_emit_valist() collect the values for us.
7233         
7234 Wed Oct 25 14:17:43 2000  Owen Taylor  <otaylor@redhat.com>
7235         
7236         * gtk/gtkwidget.[ch] (gtk_widget_is_focus): Add a function
7237         to determine if a window is the focus widget within
7238         its toplevel.
7239
7240         * gtk/gtkcontainer.[ch]: Fix the return type of ::focus
7241         to be boolean.
7242
7243         * gtk/gtkcontainer.c (gtk_container_real_focus): Move handling 
7244         of the case where the container CAN_FOCUS to here instead
7245         of having it in each individual move-the-focus place.
7246
7247         * gtk/gtkcontainer.c: Rewrite handling of left-right and up-down
7248         focusing to be geometric in a much more obvious sense. Arrowing
7249         around is still non-intuitive because it isn't perfect and
7250         because entries, etc, grab the arrow keys, but it at least
7251         usually will do what you expect now.
7252         
7253         * gtk/gtknotebook.[ch]: Many cleanups. Moved docs inline in this
7254         file.
7255
7256         * gtk/gtknotebook.c: Change tabs to be a single item in
7257         the focus chain. Make movement of focus on tabs with arrow
7258         keys wrap around.
7259         
7260         * gtk/gtknotebook.c (gtk_notebook_find_child): Add
7261         CHECK_FIND_CHILD macro to give informative error messages
7262         instead of silent returns.
7263
7264         * gtk/gtknotebook.c (gtk_notebook_init): Set the RECEIVES_DEFAULT 
7265         flag since we handle GdkReturn on the tabs.
7266
7267         * gtk/gtknotebook.c (gtk_notebook_expose_tabs): Invalidate
7268         windows rather than sending expose events directly.
7269
7270         * gtk/gtknotebook.[ch] docs/Changes-2.0.txt: Move structure 
7271         definition for GtkNotebookPage into .c file, since it is private.
7272
7273         * gtk/testgtk.c (create_notebook): Add option for 
7274         testing borderless notebook.
7275
7276         * gtk/testgtk.c (page_switch): Removed egregious poking
7277         around in GTK+ internals.
7278
7279         * docs/widget-system.txt: Remove references to GTK_REDRAW_PENDING.
7280
7281         * gtk/gtkclist.[ch]: Remove key press handler, handle focusing
7282         properly through gtk_clist_focus. Make the title headers a
7283         single item in the tab-focus chain, and make left-right wrap
7284         around.
7285
7286         * gtk/gtkwindow.c (gtk_window_focus): Add a custom
7287         focus method so that wrapping around works properly.
7288
7289         * gtk/gtktreeview.c: Remove calls to gtk_container_set_focus_child() - 
7290         that is handled for the widget now. 
7291
7292 Mon Dec 11 11:41:12 2000  Owen Taylor  <otaylor@redhat.com>
7293
7294         * gtk/gtkinvisible.c (gtk_invisible_init): Flag invisible
7295         widgets as TOPLEVEL.
7296
7297         * gtk/gtkwidget.c (gtk_widget_queue_resize): Don't assume
7298         TOPLEVEL widgets are containers.
7299
7300         * gtk/gtkinvisible.h: Remove useless include.
7301
7302 2000-12-11  Havoc Pennington  <hp@redhat.com>
7303
7304         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
7305         Handle chopping off \r\n and 0x2029 in addition to \n before
7306         passing to PangoLayout
7307
7308         * gtk/gtkimcontextsimple.c
7309         (gtk_im_context_simple_get_preedit_string): 
7310         return an empty string if no match is pending
7311
7312         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): add
7313         assertion that the returned preedit string was sane
7314
7315         * gtk/gtktext*.[hc], gtk/testtext.c, gtk/testtextbuffer.c:
7316         s/gtk_text_iter_next_char/gtk_text_iter_forward_char/g;
7317         s/gtk_text_iter_prev_char/gtk_text_iter_backward_char/g;
7318
7319 Mon Dec 11 10:02:26 2000  Owen Taylor  <otaylor@redhat.com>
7320
7321         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_finalize): 
7322         Fix up finalizer to chain to its parent.
7323
7324 2000-12-11  Alexander Larsson  <alexl@redhat.com>
7325
7326         * docs/README.linux-fb (GDK_KEYBOARD_TYPE):
7327         Clearified the difference between the keyboard types. Wrote a note
7328         about the magic sysrq key to get out of raw mode.
7329
7330 2000-12-09  James Henstridge  <james@daa.com.au>
7331
7332         * gdk/linux-fb/gdkmouse-fb.c (GdkFBMouseDevice): add prot struct
7333         member to hold masks for detecting the start of a protocol packet.
7334         (mouse_devs): add packet start masks for ps2 and ms device types.
7335         Left the mask for fidmour blank, as I have no idea what it should
7336         be.
7337         (handle_mouse_io): skip bytes until we get to the start of a
7338         packet.  My Logitech mouse seems to be passing an extra NULL pad
7339         byte, and GPM does a similar thing here.
7340         (gdk_fb_mouse_ms_open): changed error message to not say psaux, as
7341         this is the ms mouse driver.
7342         (gdk_fb_mouse_ms_packet): fix up button handling, which was
7343         completely broken except for button1.  It was checking the wrong
7344         bit in the packet for the status of the right mouse button, and
7345         wrongly assuming right == button2 rather than 3.  I fixed that and
7346         also added support for middle button (button2).
7347
7348 2000-12-08  Havoc Pennington  <hp@redhat.com>
7349
7350         * gtk/gtktextbtree.c (gtk_text_btree_insert): fix breakage here
7351         that cause a segfault on text insertion
7352
7353         * gtk/gtktextchild.c (gtk_text_child_anchor_queue_resize): fix 
7354         warning
7355
7356         * gtk/gtktextiter.c (test_log_attrs): use
7357         _gtk_text_buffer_get_line_log_attrs to speed things up a bit
7358
7359         * gtk/gtktextbuffer.c (_gtk_text_buffer_get_line_log_attrs): 
7360         Get log attrs for a line, using a cache stored on the buffer
7361         
7362         * gtk/gtkcolorsel.h (GTK_COLOR_SELECTION_GET_CLASS): fix typo,
7363         reported by Jeff Franks
7364
7365 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
7366
7367         * gdk/linux-fb/gdkmouse-fb.c (gdk_fb_mouse_ms_open):
7368         /dev/ttyS0 -> /dev/mouse
7369
7370 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
7371
7372         * gdk/linux-fb/gdkfont-fb.c (gdk_fontset_load):
7373         Added dummy gdk_fontset_load.
7374
7375 2000-12-08  Alexander Larsson  <alexl@redhat.com>
7376
7377         * docs/README.linux-fb:
7378         * docs/Makefile.am:
7379         Initial GtkFB docs.
7380         
7381         * gdk/linux-fb/Makefile.am:
7382         Define GDK_DATA_PREFIX.
7383
7384         * gdk/linux-fb/gdkmain-fb.c:
7385         Fix typo.
7386         Change default display to /dev/fb0.
7387
7388         * gdk/linux-fb/gdkpango-fb.c:
7389         Add $(prefix)/share/fonts/ to font path.
7390         
7391 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
7392
7393         * gdk/linux-fb/gdkkeyboard-fb.c:
7394         New file containing the abstracted keyboard driver. Most code
7395         taken from gdkinput-ps2.c
7396
7397         * gdk/linux-fb/gdkinput-ps2.c:
7398         Removed file.
7399         
7400         * gdk/linux-fb/Makefile.am:
7401         Added gdkkeyboard-fb.c, removed gdkinput-ps2.c.
7402
7403         * gdk/linux-fb/gdkcolor-fb.c:
7404         display->fb was renamed to display->fb_fd.
7405
7406         * gdk/linux-fb/gdkcursor-fb.c:
7407         gdk_mouse_get_info -> gdk_fb_mouse_get_info
7408
7409         * gdk/linux-fb/gdkinput.c:
7410         Moved gdk_input_init here from gdkinput-ps2.c
7411
7412         * gdk/linux-fb/gdkmain-fb.c:
7413         display->fb was renamed to display->fb_fd.
7414         Now the tty and the console is opened here instead
7415         of in the keyboard driver. Also check GDK_VT to see what
7416         tty to open.
7417         Move gdk_beep () here from gdkinput-ps2.c
7418         gdk_mouse_get_info -> gdk_fb_mouse_get_info
7419
7420         * gdk/linux-fb/gdkmouse-fb.c:
7421         Add header.
7422         gdk_mouse_get_info -> gdk_fb_mouse_get_info
7423         Return correct keyboard modifiers.
7424         GDK_MOUSETYPE -> GDK_MOUSE_TYPE for consistancy
7425
7426         * gdk/linux-fb/gdkprivate-fb.h:
7427         Add tty and vt info to display.
7428         Add orignal modeinfo storage to display
7429         Update global functions
7430
7431         * gdk/linux-fb/gdkwindow-fb.c:
7432         Added gdk_fb_window_find_focus().
7433         gdk_mouse_get_info -> gdk_fb_mouse_get_info
7434
7435 2000-12-07  Havoc Pennington  <hp@pobox.com>
7436
7437         * gdk/x11/gdkkeys-x11.c (gdk_keymap_lookup_key): fix name of 
7438         function, noticed by Alex
7439
7440 2000-12-06  Elliot Lee  <sopwith@redhat.com>
7441
7442         * configure.in: Detect freetype properly
7443
7444         * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of
7445         above.
7446
7447 2000-12-06  Alexander Larsson  <alexl@redhat.com>
7448
7449         * gdk/linux-fb/Makefile.am:
7450         Add gdkmouse-fb.c
7451         
7452         * gdk/linux-fb/gdkmouse-fb.c:
7453         New file. Abstracted the mouse drivers a bit.
7454
7455         * gdk/linux-fb/gdkcursor-fb.c:
7456         The cursor hide/show functions was moved here from gdkinput-ps2.c.
7457
7458         * gdk/linux-fb/gdkinput-ps2.c:
7459         Removed old mouse handling code. Moved cursor handling code
7460         to gdkcursor-fb.c, moved gdk_fb_window_send_crossing_events() to
7461         gdkwindow-fb.c. gdk_input_get_mouseinfo was renamed to
7462         gdk_mouse_get_info.
7463
7464         * gdk/linux-fb/gdkmain-fb.c:
7465         Pass NULL pointers for x,y in gdk_mouse_get_info call.
7466
7467         * gdk/linux-fb/gdkprivate-fb.h:
7468         Removed public gdk_fb_find_common_ancestor, added and renamed
7469         functions for the new mouse handling code.
7470
7471         * gdk/linux-fb/gdkwindow-fb.c:
7472         Moved gdk_fb_window_send_crossing_events here. added global
7473         variable gdk_fb_window_containing_pointer. made
7474         gdk_fb_find_common_ancestor static. gdk_input_get_mouseinfo was
7475         renamed to gdk_mouse_get_info.
7476
7477 2000-12-06  Alexander Larsson  <alexl@redhat.com>
7478
7479         * gdk/linux-fb/gdkevents-fb.c:
7480         Update to match latest gmain/gsource changes.
7481
7482         * gdk/linux-fb/gdkinput-ps2.c:
7483         Bogus gdk_keymap_get_entries_for_keycode implementation so that
7484         it links. Will be implemented later.
7485
7486 2000-12-03  Havoc Pennington  <hp@pobox.com>
7487
7488         * gdk/Makefile.am: add gdkkeys.[hc]
7489
7490         * gdk/gdkkeys.h, gdk/gdkkeys.c: Move all the keyval stuff to these
7491         files from gdk.h, gdk.c; add GdkKeymap type and operations on it.
7492
7493         * acconfig.h, configure.in: add checks and command line options
7494         for XKB
7495
7496         * gdk/x11/gdkkeys-x11.c: Implement the above functions
7497         
7498         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Put the keycode
7499         and group in the key event
7500
7501         * gdk/gdkevents.h (struct _GdkEventKey): Add a hardware_keycode
7502         field with the low-level hardware key code, and a group
7503         field with the keyboard group
7504
7505         * gdk/x11/gdkprivate-x11.h: include config.h for HAVE_XKB,
7506         and declare a couple globals used for keymap handling
7507         
7508         * gtk/gtkimcontextsimple.c: Implement ISO 14755 input method,
7509         hold down Shift-Control and type a hex number to get a Unicode 
7510         character corresponding to the hex number
7511         (gtk_im_context_simple_get_preedit_string): Fix cursor position
7512         (return bytes not chars)
7513
7514 2000-12-05  Elliot Lee  <sopwith@redhat.com>
7515
7516         * gdk/gdkcolor.h: Make GdkColor specify element sizes
7517         to avoid waste on 64-bit platforms.
7518
7519 Tue Dec  5 15:49:31 2000  Owen Taylor  <otaylor@redhat.com>
7520
7521         * INSTALL: Fix link to PNG home, remove reference
7522         to fribidi.
7523
7524         * gdk/x11/gdkevents-x11.c: Fix up for new GMain API.
7525         
7526         * gdk/win32/gdkevents-win32.c: Fix up for new GMain API. (Not
7527         tested.)
7528
7529         * gtk/gtkcheckmenuitem.c: Permanently turn on
7530         always_show_toggle.
7531
7532         * gtk/gtkclist.c (gtk_clist_get_pixtext): Allow mask to 
7533         be NULL. (Vladimir Klebanov, #26545)
7534
7535         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text): Fix 
7536         some signed/unsigned comparison problems. (#6510,
7537         David Kaelbling)
7538
7539         * gtk/gtkwidget.[ch] (gtk_widget_is_ancestor): Change
7540         return type to boolean (Oskar Liljeblad, #18648)
7541
7542 2000-12-05  Alexander Larsson  <alexl@redhat.com>
7543
7544         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_display_new):
7545         Remove bogus colormap setting.
7546
7547 2000-12-05  Alexander Larsson  <alexl@redhat.com>
7548
7549         * gdk/linux-fb/gdkcolor-fb.c:
7550         More complete colormap handling. Now GdkRGB work in 8 bpp modes.
7551
7552         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_image):
7553         Must set colormap.
7554         
7555 Tue Dec  5 13:17:53 GMT 2000  Tony Gale <gale@gtk.org>
7556
7557         * docs/tutorial/gtk-tut.sgml: DND updates
7558
7559 2000-12-05  Alexander Larsson  <alla@lysator.liu.se>
7560
7561         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
7562         Remove old debug g_warning().
7563         (gdk_fb_draw_drawable): The src argument can be either a wrapper
7564         or an implementation, just pass the implementation to draw_drawable_2.
7565         
7566         * gdk/linux-fb/gdkprivate-fb.h:
7567         Added GDK_IS_DRAWABLE_IMPL_FBDATA()
7568
7569         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
7570         clear and invalidate area when window is destroyed.
7571         (send_map_events): Remove old commented out code.
7572
7573 2000-12-05  Alexander Larsson  <alexl@redhat.com>
7574
7575         * gdk/linux-fb/gdkpango-fb.c:
7576         Use italic instead of oblique in font aliases.
7577         
7578         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic,
7579         _gdk_fb_gc_calc_state): Support GDK_XOR, add g_warning for
7580         other unsupported functions.
7581
7582 2000-12-04  Havoc Pennington  <hp@redhat.com>
7583
7584         * gtk/gtkpaned.c (gtk_paned_expose): fix this to be sane
7585
7586         * gtk/gtkvpaned.c (gtk_vpaned_expose): Add an expose handler
7587
7588         * gtk/gtkhpaned.c (gtk_hpaned_expose): Add an expose handler
7589
7590         * gtk/gtknotebook.c (gtk_notebook_draw_tab): put in a temporary 
7591         hack to avoid infinite loops (synthetic expose event) - 
7592         Owen has more appropriate fixes in a branch he'll check in later.
7593
7594         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle paragraph
7595         separator, CR, and CRLF as line ends
7596
7597         * gtk/gtktextbtree.c (gtk_text_btree_insert): on insertion, break
7598         into lines using pango_find_paragraph_boundary(); other bits of
7599         the widget are still going to be broken if the boundary isn't '\n'
7600         though
7601
7602 2000-12-04  Alexander Larsson  <alexl@redhat.com>
7603
7604         * gdk/linux-fb/gdkfont-fb.c (gdk_text_width): Divide size by 2, not
7605         multiply.
7606
7607         * gdk/linux-fb/gdkpango-fb.c:
7608         Copied some 26.6 scaling macros from pango to clean up the rounding.
7609         (pango_fb_font_get_glyph_info): Correct sign on x value.
7610
7611         * gdk/linux-fb/gdkprivate-fb.h:
7612         Removed unreferenced external functions.
7613
7614         * modules/linux-fb/Makefile.am: Use ` instead of '.
7615
7616         * modules/linux-fb/basic.c:
7617         Remove dead code. In particular the dummy lang engine which broke all
7618         pango layouts in GtkFB. Don't include tables-big.i anymore.
7619
7620         * modules/linux-fb/tables-big.i:
7621         Upgrade to latest version from pango. Left for reference, basic_ranges
7622         moved to basic.c.
7623         
7624 2000-12-04  Havoc Pennington  <hp@redhat.com>
7625
7626         Fix bugs Alex found:
7627         
7628         * gtk/gtktooltips.c (gtk_tooltips_force_window): nuke connection
7629         to "draw"
7630
7631         * gtk/gtkdnd.c (gtk_drag_highlight): nuke connection to "draw"
7632
7633         * gtk/gtkcolorsel.c (palette_new): nuke connection to "draw"
7634
7635         * gtk/gtklistitem.c (gtk_list_item_expose): Put the old _draw() 
7636         implementation in here, apparently the expose() implementation was
7637         dead code.
7638
7639 2000-12-04  Alexander Larsson  <alexl@redhat.com>
7640
7641         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
7642         Return positive descent.
7643
7644 2000-12-02  Havoc Pennington  <hp@pobox.com>
7645
7646         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove "draw" virtual
7647         method and signal
7648         
7649         * gtk/gtkwidget.c (gtk_widget_draw): Now just queues a draw then
7650         calls gdk_window_process_updates() to push the exposes through
7651         (gtk_widget_class_init): No more draw signal, no
7652         gtk_widget_real_draw()  
7653         
7654         * gtk/gtkbin.c (gtk_bin_draw): remove
7655
7656         * gtk/gtkbox.c (gtk_box_draw): remove
7657
7658         * gtk/gtkbutton.c (gtk_button_draw): remove
7659
7660         * gtk/gtkcalendar.c (gtk_calendar_draw): remove
7661
7662         * gtk/gtkcheckbutton.c (gtk_check_button_draw): remove
7663
7664         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_draw): remove
7665
7666         * gtk/gtkclist.c (gtk_clist_draw): remove
7667
7668         * gtk/gtkentry.c (gtk_entry_draw): remove
7669
7670         * gtk/gtkeventbox.c (gtk_event_box_draw): remove
7671
7672         * gtk/gtkfixed.c (gtk_fixed_draw): remove
7673
7674         * gtk/gtkframe.c (gtk_frame_draw): remove
7675
7676         * gtk/gtkhandlebox.c (gtk_handle_box_draw): remove
7677
7678         * gtk/gtkhpaned.c (gtk_hpaned_draw): remove
7679
7680         * gtk/gtklayout.c (gtk_layout_draw): remove
7681
7682         * gtk/gtklist.c (gtk_list_draw): remove
7683
7684         * gtk/gtklistitem.c (gtk_list_item_draw): remove
7685
7686         * gtk/gtkmenu.c (gtk_menu_draw): remove
7687
7688         * gtk/gtkmenubar.c (gtk_menu_bar_draw): remove
7689
7690         * gtk/gtkmenuitem.c (gtk_menu_item_draw): remove
7691
7692         * gtk/gtknotebook.c (gtk_notebook_draw): remove
7693
7694         * gtk/gtkoptionmenu.c (gtk_option_menu_draw): remove
7695
7696         * gtk/gtkpacker.c (gtk_packer_draw): remove
7697
7698         * gtk/gtkrange.c (gtk_range_draw): remove
7699
7700         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_draw): remove
7701
7702         * gtk/gtkspinbutton.c (gtk_spin_button_draw): remove
7703
7704         * gtk/gtktable.c (gtk_table_draw): remove
7705
7706         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_draw): remove
7707
7708         * gtk/gtktext.c (gtk_text_draw): remove
7709
7710         * gtk/gtktextview.c (gtk_text_view_draw): remove
7711
7712         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): remove
7713
7714         * gtk/gtktoolbar.c (gtk_toolbar_draw): remove
7715
7716         * gtk/gtktree.c (gtk_tree_draw): remove
7717
7718         * gtk/gtktreeitem.c (gtk_tree_item_draw): remove
7719
7720         * gtk/gtktreeview.c (gtk_tree_view_draw): remove
7721
7722         * gtk/gtkviewport.c (gtk_viewport_draw): remove
7723
7724         * gtk/gtkvpaned.c (gtk_vpaned_draw): remove
7725
7726         * gtk/gtkvscale.c (gtk_vscale_draw): remove
7727
7728         * gtk/gtkwindow.c (gtk_window_draw): remove
7729
7730 2000-20-01  Anders Carlsson  <andersca@gnu.org>
7731
7732         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): Fix bug when
7733         a GtkToggleButton is both insensitive and active, it was being
7734         drawn by the GtkButton draw handler which doesn't check the
7735         state. Now it's calling gtk_toggle_button_paint instead.
7736         
7737 2000-12-01  Havoc Pennington  <hp@redhat.com>
7738
7739         * gtk/gtktextdisplay.c (gtk_text_layout_draw): don't create
7740         dangling pointers to the appearance attributes from the 
7741         line display
7742
7743         * gdk/gdkdraw.c (gdk_drawable_get_image): allow negative
7744         width/height to mean "full width/height of drawable"
7745
7746         * gtk/gtktextview.h, gtk/gtktextview.c: Implement double/triple
7747         click to select word/line
7748         
7749         * gtk/gtktextiter.c (test_log_attrs): include paragraph delimiters 
7750         when getting log attrs. Get a slice, so that pixmaps and stuff
7751         are properly handled.
7752
7753         * gtk/gtktextbuffer.c (paste): Fix pasting to work properly if you
7754         paste into the selection (replaces selection now, previously
7755         crashed or added to selection). Reveals longstanding btree bug -
7756         select multiple lines, middle-click on the selection, boom. This
7757         isn't related to my changes though.
7758
7759         * gtk/gtkentry.c (gtk_entry_move_forward_word): Update to reflect
7760         PangoLogAttrs changes
7761         (gtk_entry_move_backward_word): ditto
7762
7763         * gtk/gtktextlayout.h, gtk/gtktextlayout.c: Make the iter motion
7764         functions return bool whether the iter moved onto a
7765         dereferenceable position.
7766  
7767         * gtk/gtktextview.h, gtk/gtktextview.c: Add a bunch of public
7768         functions for motion in terms of display lines.
7769
7770         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): Add function to
7771         get the buffer a mark is inside
7772         
7773 2000-12-01  Alexander Larsson  <alexl@redhat.com>
7774
7775         * gdk/linux-fb/Makefile.am:
7776         * modules/linux-fb/Makefile.am:
7777         Freetype 2 final uses freetype-config
7778
7779         * gdk/linux-fb/gdkpango-fb.c:
7780         Upgrade to use Freetype 2 final.
7781         More flexible support for font aliases, this also fixes a bug with
7782         GtkFontSelector, as the aliases must be visible in the font/family list,
7783         or GtkFontSelector reads uninitialized memory.
7784
7785 2000-11-30 Hidetoshi Tajima  <tajima@eng.sun.com>
7786
7787         * modules/input/gtkimcontextxim.c (setup_im): Add NULL argument to
7788         XGetIMValues to properly terminate variable argument list, and do
7789         NULL return check for ic_values and xim_styles.
7790
7791         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset):
7792         Restore preedit state after XmbResetIC().
7793         
7794         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic):
7795         XvaCreateNestedList() should take XvaNestedList, but not
7796         XvaNestedList*.
7797
7798         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset,
7799         preedit_draw_callback, preedit_caret_callback): Match
7800         "preedit-changed" signal name to "preedit_changed" to be
7801         consistent to the spec.
7802
7803         * gtk/gtkimcontextsimple.c (check_table):
7804         Match "preedit-changed" to "preedit_changed" to be consistent
7805         to the spec.
7806
7807 Thu Nov 30 23:03:04 2000  Owen Taylor  <otaylor@redhat.com>
7808
7809         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Properly handle
7810         gc->clip_region == NULL>
7811
7812 2000-11-30  Tor Lillqvist  <tml@iki.fi>
7813
7814         Changes by Hans Breuer:
7815         
7816         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
7817         Dont't use negative width and height as max_hints. This fixes
7818         Owen's recent testgtk changes for win32.
7819
7820         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get,
7821         gdk_win32_hdc_release): These are exported and may be called with
7822         other drawable types than our GdkDrawableImplWin32 (?).
7823
7824         * gdk/gdkwindow.c: Backing store appears to work on Windows now,
7825         so always #define USE_BACKING_STORE.
7826
7827         * gtk/gtktextdisplay.c (render_layout_line): Use g_print instead
7828         of printf for debugging output.
7829
7830         * gtk/gtktextlayout.c (allocate_child_widgets): Ditto.
7831         
7832         * gtk/gtktextview.c (gtk_text_view_child_allocated): Ditto.
7833
7834         * gtk/gtkmain.h (GTKMAIN_C_VAR): Win32 fix for dllimport
7835         declaration.
7836
7837         * gtk/gtktexttypes.h: Ditto.
7838
7839         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): Return a value
7840         (GDK_VoidSymbol) also if in case of arg check failure.
7841
7842         * gtk/gtkimcontextsimple.c
7843         (gtk_im_context_simple_get_preedit_string): Don't assign cursor
7844         position to the pointer, but to the variable it points to.
7845
7846         * gtk/makefile.msc.in (DEFINES): Define GTK_VERSION.
7847
7848         * gtk/gtk.def: Updates.
7849
7850 2000-11-29  Elliot Lee  <sopwith@redhat.com>
7851
7852         * gtk/gtkmodelsimple.c: Inherits from GTK_TYPE_OBJECT, not
7853         GTK_TYPE_TREE_MODEL.
7854
7855 2000-11-29  Alexander Larsson  <alexl@redhat.com>
7856
7857         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description):
7858         Set the size of the font from the description.
7859         (gdk_text_width): Gross hack that calculates the width
7860         of text by text_length * size/2. This is necessary because
7861         GtkLabel does some ugly gtk_string_width call to calculate
7862         an good size.
7863         (linux-fb/gdkprivate-fb.h): Removed unused field FT_Face.
7864
7865 Wed Nov 29 13:39:19 GMT 2000  Tony Gale <gale@gtk.org>
7866
7867         * docs/tutorial/gtk-tut.sgml: DND updates
7868
7869 2000-11-29  Alexander Larsson  <alexl@redhat.com>
7870
7871         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
7872         If you pass width or height == 0 to gdk_window_clear_area they
7873         should be calculated from the window size.
7874
7875 2000-11-29  Alexander Larsson  <alexl@redhat.com>
7876
7877         * gdk/linux-fb/gdkinput-ps2.c (move_pointer): If there is
7878         a grab, but no grab-cursor, use the cursor from the grabbed
7879         window. (gdk_fb_window_send_crossing_events): Send normal
7880         enter/leave notifications if grab and owner_events == TRUE.
7881
7882 2000-11-29  Alexander Larsson  <alexl@redhat.com>
7883
7884         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
7885         Do implicit button grabs, even if the window doesn't
7886         want the event.
7887         (gdk_fb_window_send_crossing_events): If there is a
7888         grab, only the grabbed window gets normal enter/leave
7889         notifications. On ungrab go from grabbed window to current.
7890         Don't send any notification to b when propagating from c -> b.
7891         If setting a grab on window, don't set prev_window.
7892         (handle_mouse_input): Send enter/leave events to the window the
7893         mouse is over, not the grabbed one.
7894         
7895 2000-11-28  Elliot Lee  <sopwith@redhat.com>
7896
7897         * gdk/gdkregion-generic.c: Zap warning.
7898         * modules/input/Makefile.am: Only build im-xim if USE_X11 is enabled
7899         * gtk/gtkrc.c: s/strcpy/memcpy/ to save a few nanoseconds.
7900
7901 2000-11-28  Alexander Larsson  <alla@lysator.liu.se>
7902
7903         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
7904         The cursor should be hidden if it is part of either the
7905         source or destination region. Not only if it is in both.
7906         (gdk_window_set_transient_for): Silence warnings.
7907
7908 2000-11-28  Alexander Larsson  <alexl@redhat.com>
7909
7910         * gdk/linux-fb/mifillarc.c (miFillArcSliceSetup):
7911         The default mode in X is Pie Arcs, therefore that is
7912         what Gtk+ uses.
7913
7914 2000-11-28  Alexander Larsson  <alexl@redhat.com>
7915
7916         * gdk/linux-fb/gdkinput-ps2.c:
7917         Implement correct EnterNotify/LeaveNotify:
7918         (gdk_fb_window_send_crossing_events): New function that sends
7919         all GdkCrossingEvents from the last mouse-window to the specified
7920         destination.
7921         (gdk_fb_window_visibility_crossing): Removed function.
7922         (handle_mouse_input): Use gdk_fb_window_send_crossing_events()
7923         (send_button_event, gdk_fb_cursor_reset): Use gdk_window_at_pointer
7924         instead of gdk_window_get_pointer() for better readability.
7925
7926         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab,
7927         gdk_fb_pointer_ungrab): Use gdk_fb_window_send_crossing_events.
7928
7929         * gdk/linux-fb/gdkprivate-fb.h:
7930         removed gdk_fb_window_visibility_crossing, added
7931         gdk_fb_window_send_crossing_events and gdk_fb_find_common_ancestor.
7932
7933         gdk/linux-fb/gdkwindow-fb.c (gdk_fb_find_common_ancestor):
7934         New function that finds the least common ancestor of two windows.
7935         (gdk_window_show, gdk_window_hide):
7936         Use gdk_fb_window_send_crossing_events.
7937         (gdk_fb_window_move_resize): Send configure events to toplevel
7938         windows. Use gdk_fb_window_send_crossing_events.
7939
7940 2000-11-27  Havoc Pennington  <hp@redhat.com>
7941
7942         * gtk/gtkprivate.h (enum): Remove a trailing comma
7943
7944 2000-11-27  Federico Mena Quintero  <federico@helixcode.com>
7945
7946         * gtk/gtkspinbutton.c (gtk_spin_button_set_adjustment): Connect to
7947         the "changed" callback of the adjustment.  We need to redraw the
7948         spin button's arrows when the adjustment's range changes.
7949         (adjustment_changed_cb): Draw the arrows.
7950         (gtk_spin_button_value_changed): Draw the arrows.
7951
7952 2000-11-23  Alexander Larsson  <alexl@redhat.com>
7953
7954         * gdk/linux-fb/gdkselection-fb.c:
7955         Initial selection implementation.
7956
7957         * gtk/gtkselection.c:
7958         if GDK_WINDOWING_FB defined, include linux-fb/gdkfb.h and look up
7959         requestor in gtk_selection_request.
7960         
7961         * gdk/linux-fb/gdkfb.h, gdk/linux-fb/gdkglobals-fb.c:
7962         Added gdk_selection_property atom.
7963
7964         * gdk/linux-fb/gdkprivate-fb.h:
7965         Export _gdk_selection_window_destroyed.
7966         Removed mask_off_x/y from GdkCursorPrivateFB.
7967         Removed hbearing, added top, left to PangoFBGlyphInfo.
7968
7969         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
7970         Call _gdk_selection_window_destroyed
7971         (_gdk_windowing_window_init): Don't call gdk_cursor_new() before
7972         the root window has been created.
7973         (static_dx_hack, static_dy_hack, compare_draw_rects,
7974         gdk_fb_window_move_resize): Remove unnecessary sort of rectangles
7975         in region. They are already sorted. Instead just traverse them in
7976         reverse if draw_direction < 0.
7977         
7978         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
7979         Double-clicks must be sent after the normal button_press.
7980         (gdk_fb_cursor_unhide): Remove usage of mask_off_x/y. Clean up.
7981         
7982         * gdk/linux-fb/gdkgeometry-fb.c (gdk_window_scroll):
7983         Pass _gdk_fb_screen_gc instead of NULL.
7984
7985         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
7986         Initialize gdk_selection_property.
7987         (gdk_event_make): Remove unused code.
7988
7989         * gdk/linux-fb/gdkcursor-fb.c:
7990         Make the pixmap for the cursor the same size as the mask. Also remove
7991         the mask_off_x/y fields in GdkCursorPrivateFB and combine
7992         _gdk_cursor_new_from_pixmap() and gdk_cursor_new_from_pixmap()
7993         Now the whole cursor is visible.
7994
7995         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
7996         Fix bug where xdest+height instead of ydest+height was used
7997         to calculate if the source and dest overlapped. This fixes the
7998         redraw bug when the main window in testgtk was scrolled when
7999         partially covered by a tall window.
8000         Copy rectangles in region in order depending on draw_direction.
8001         Also moved the draw_direction flipping of start_y and end_y into
8002         the gc functions, as this might not be what all of them want.
8003         (gdk_fb_draw_lines): Support dashed lines.
8004         (gdk_fb_draw_glyphs): Clean up glyph placement. Also fix positioning
8005         so that the text is positioned correctly (was 1 pixel high).
8006
8007         gdk/linux-fb/gdkgc-fb.c:
8008         Initialize cap_style to GTK_CAP_BUTT. This fixes a problem where
8009         all lines were drawn a pixel to short. Also checked the default of
8010         the rest of the values, and they're the same as X now.
8011
8012         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_glyph_info):
8013         Clean up pixel positioning of the glyphs. Just use bgy->top and
8014         bgy->left. Also used PANGO_PIXEL where appropriate and added 0.5
8015         to all divisions to get correct rounding behaviour.
8016
8017         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_draw_drawable_generic,
8018         gdk_fb_draw_drawable_memmove, gdk_fb_draw_drawable_aa_24):
8019         Moved start_y/end_y flip into draw_drawable implementations.
8020         Flip also x rendering when draw_direction < 0.
8021         Remove unneccesary multiply with draw_direction.
8022
8023 Wed Nov 22 14:11:19 GMT 2000  Tony Gale <gale@gtk.org>
8024
8025         * docs/tutorial/gtk-tut.sgml:
8026           - get rid of gtk_toggle_button_toggled FUD
8027           - start DND section - needs work - based on:
8028                 http://wolfpack.twu.net/docs/gtkdnd/
8029
8030 2000-11-22  Alexander Larsson  <alexl@redhat.com>
8031
8032         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
8033         Correct calculation of font metrics. Now GtkEntrys have sane
8034         size.
8035
8036 2000-11-22  Alexander Larsson  <alexl@redhat.com>
8037
8038         * gdk/gdktypes.h:
8039         Add new type GdkSpan
8040         
8041         * docs/reference/gdk/gdk-sections.txt,
8042         docs/reference/gdk/tmpl/regions.sgml, gdk/gdkregion-generic.c,
8043         gdk/gdkregion.h:
8044         Implement and document gdk_region_spans_intersect_foreach.
8045
8046         * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkrender-fb.c:
8047         Add new file gdkrender-fb.c which contains all core
8048         rendering code.
8049         Add gdk_fb_fill_rectangle_generic (old rectangle code) and
8050         gdk_fb_fill_rectangle_simple_16, gdk_fb_fill_rectangle_simple_32
8051         (optimized rectangle fillers).
8052
8053         * gdk/linux-fb/gdkdrawable-fb2.c:
8054         Move all rendering code to gdkrender-fb.c.
8055         Change from using GdkRectangles and GdkSegments for spans to GdkSpan.
8056         Use the new span intersection functions in gdk_fb_fill_spans.
8057         gdk_fb_draw_rectangle() clips filled rectangles and calls
8058         gc->fill_rectangle with the result.
8059         gdk_fb_fill_spans() gets extra argument "sorted".
8060
8061         * gdk/linux-fb/gdkevents-fb.c:
8062         Remove unused includes and defines.
8063         New function gdk_fb_get_time() to get correct time for events.
8064
8065         * gdk/linux-fb/gdkinput-ps2.c:
8066         Use gdk method of generating multiple-clicks (gdk_event_button_generate)
8067         Make sure to set the time of all events.
8068
8069         * gdk/linux-fb/gdkmain-fb.c:
8070         Use gdk_fb_get_time ().
8071
8072         * gdk/linux-fb/gdkprivate-fb.h:
8073         New virtual GC calls: fill_span & fill_rectangle.
8074         Export gdk_fb_get_time().
8075         gdk_fb_fill_spans() gets extra argument "sorted".
8076
8077         * gdk/linux-fb/mi*.c:
8078         Use GdkSpan instead of GdkRectangle.
8079         Pass correct sorted to gdk_fb_fill_spans. (sorted value taken
8080         from XFree 4 source)
8081         
8082 2000-11-22    <jrb@redhat.com>
8083
8084         * gtk/gtktreeview.c (gtk_tree_view_calc_size): It's amazing what
8085         reversing the order in an if statement will do.  Doing so managed
8086         to make the treemodelsort half work.  Other half will follow after
8087         I get the insert function fully fixed.
8088
8089 2000-11-21  Elliot Lee  <sopwith@redhat.com>
8090         * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
8091         more than 2 bits. Besides, I need to implement an evil hack. :)
8092
8093 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
8094
8095         * docs/tutorial/gtk-tut.sgml: minor corrections
8096
8097 2000-11-20  Jonathan Blandford <jrb@redhat.com>
8098         * gtk/gtktreemodelsort.h: Add convertion functions to let you
8099           convert to and from relative path's and iters.
8100
8101         * gtk/treestoretest.c: move to having a sorted/unsorted view.  Start
8102           testing sorting functions a bit better.  Currently broken -- will
8103           fix in morning.
8104
8105 2000-11-20  Havoc Pennington  <hp@redhat.com>
8106
8107         * gtk/gtkwidget.c: Documented a bunch of functions in here
8108         (gtk_widget_realize): Warn if you try to realize
8109         a widget with no parent that isn't a toplevel
8110         (gtk_widget_intersect): return a gboolean
8111
8112 2000-11-20  Havoc Pennington  <hp@redhat.com>
8113
8114         * gtk/gtktextview.c, gtk/gtktextlayout.c, gtk/gtktextchild.c,
8115         gtk/testtext.c: Semi-finish widget embedding. Need guffaw
8116         scrolling to be implemented in GDK to finish. Also, right now
8117         we just size_allocate all children on every layout change,
8118         which is pretty lame. Test commented out of testtext.c, 
8119         until it works better.
8120
8121 2000-11-20  Alexander Larsson  <alla@lysator.liu.se>
8122
8123         * gdk/linux-fb/gdkdrawable-fb2.c:
8124         Removed unused arguments from gdk_fb_drawable_get_pixel().
8125
8126         * gdk/linux-fb/gdkinput-ps2.c (handle_input_ps2):
8127         Renamed fidur specific mouse packet data in MouseDevice to
8128         generic. Used it in ps2 mouse handling code to avoid blocking
8129         reads.
8130
8131 Sat Nov 18 18:00:17 2000  Jonathan Blandford  <jrb@redhat.com>
8132
8133         * demos/gtk-demo/main.c: Changed to have the list become
8134         non-italic when the demo window is destroyed through an external
8135         event (like a close button).  Doing so found three bugs in the
8136         widget.
8137
8138         * demos/gtk-demo/*.c (do_*): Changed to return the toplevel window.
8139
8140         * gtk/gtkliststore.c (gtk_list_store_set_cell): emit "change" when
8141         we actually set the cell.
8142
8143         * gtk/gtktreestore.c (gtk_tree_store_set_cell): ditto
8144
8145         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
8146         free a leaked path.  Thanks memprof.
8147
8148 Sat Nov 18 11:58:17 2000  Owen Taylor  <otaylor@redhat.com>
8149
8150         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Fix 
8151         off-by-one error when destroying allocated segments
8152         on failure. (Elliot)
8153
8154 Sat Nov 18 11:45:09 2000  Owen Taylor  <otaylor@redhat.com>
8155
8156         * gtk/gtkcalendar.c: Patch from ChiDeok Hwang to fix
8157         memleaks found by Evan Martin.
8158
8159 Fri Nov 17 20:14:20 2000  Owen Taylor  <otaylor@redhat.com>
8160
8161         * Released 1.3.2
8162         
8163         * NEWS: Updates for 1.3.2
8164
8165 2000-11-17  Tor Lillqvist  <tml@iki.fi>
8166
8167         * gdk/gdkevents.h: Add comment that GdkXEvent isn't only for XEvent,
8168         but in general for window system specific events.
8169
8170         * gtk/gtk.def
8171         * gtk/makefile.mingw.in
8172         * gtk/makefile.msc.in: Update.
8173         
8174         * gtk/gtktexttypes.h: Mark variables for export/import from DLL.
8175
8176 Thu Nov 16 16:11:39 2000  Owen Taylor  <otaylor@redhat.com>
8177
8178         * gtk/Makefile.am (EXTRA_DIST): Do not, in any circumstances,
8179         distribute gtk.immodules.
8180
8181         * gtk/Makefile.am (install-data-local): Don't install the
8182         gtk.immodules file created for the uninstalled modules;
8183         instead run gtk-query-immodules after install
8184
8185 Wed Nov 15 21:51:31 2000  Owen Taylor  <otaylor@redhat.com>
8186
8187         * modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
8188         -rpath to the right install location.
8189
8190         * modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
8191         -export-dynamic.
8192
8193         * gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
8194         properly.
8195
8196 2000-11-15  Havoc Pennington  <hp@pobox.com>
8197
8198         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): Apply
8199         patch from Mikael Hermansson to temporarily stop blinking while
8200         the user is using the keyboard to type or navigate. 
8201
8202         Also, when blinking, stay on for longer than we stay off. Also,
8203         return from start_cursor_blink if !cursor_visible, to save
8204         checking that flag all over the place before we call
8205         start_cursor_blink.
8206
8207 Thu Nov 16 01:25:51 2000  Robert Brady  <robert@suse.co.uk>
8208
8209         * gtk/gtkrc.*: Remove the locale-specific gtkrc's, as they
8210         only contain a "fontset" line, which is now ignored.
8211
8212         * gtk/gtkentry.c (gtk_entry_button_release): Make 
8213         double-click-to-select-word work.
8214         
8215 Wed Nov 15 20:16:54 2000  Owen Taylor  <otaylor@redhat.com>
8216
8217         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
8218         Don't move back one char when we are actually at the end of the 
8219         paragraph.
8220
8221 2000-11-15  Robert Brady  <robert@suse.co.uk>
8222
8223         * modules/input/iminuktitut.c (inuktitut_compose_seqs): 
8224         'o' < 'p'.
8225         
8226         * gtk/gtkmain.c: s/CODSET/CODESET/, include <libintl.h> for
8227         bind_textdomain_codeset.
8228
8229         (gtk_init_check): Make the warning about translating default:LTR
8230         sterner.
8231         
8232 Wed Nov 15 18:39:40 2000  Owen Taylor  <otaylor@redhat.com>
8233
8234         * **/Makefile.am : remove unecessary rules for win32-specific
8235         config-substituted targets. If you want these rules, use
8236         --enable-maintainer-mode (called automatically by autogen.sh).
8237         Stops a lot of unneccessary make-time warnings.
8238
8239         * gtk/gtktext{layout,display}.c: Factor in total width as
8240         well as screen when figuring alignment for word-wrap as well as
8241         no wrap; this is necessary to handle lines that cannot be wrapped
8242         at all.
8243
8244 2000-11-15  Havoc Pennington  <hp@redhat.com>
8245
8246         * gtk/testtext.c: Implement essential color cycling feature
8247
8248 2000-11-15  Havoc Pennington  <hp@redhat.com>
8249
8250         * gtk/gtktextview.c (changed_handler): Invalidate the side windows
8251         when we invalidate the main window.
8252
8253         * gtk/testtext.c (create_view): Get rid of text_changed_callback,
8254         GtkTextView will now invalidate the side windows for us when text
8255         changes.
8256
8257 Wed Nov 15 16:02:20 2000  Owen Taylor  <otaylor@redhat.com>
8258
8259         * gtk/gtktextview.c (changed_handler): Call scroll_calc_now()
8260         unconditionally, since we may need to update the horizontal
8261         scrollbars even if the height didn't change.
8262
8263         * gtk/gtktextlayout.c (add_preedit_attrs): Always get
8264         the extra attrs, since some of them affect size.
8265
8266         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Factor in
8267         x_offset correctly.
8268
8269 2000-11-15  Havoc Pennington  <hp@redhat.com>
8270
8271         * gtk/gtktextlayout.c (set_para_values): If indent is negative,
8272         don't move the first line out into the margin, instead move the
8273         whole paragraph in order to make space for the first line within 
8274         the margin
8275
8276 2000-11-15  Havoc Pennington  <hp@redhat.com>
8277
8278         * gtk/gtktextview.c (changed_handler): offset redraw rect by
8279         xoffset in addition to yoffset, so horizontal scrolling doesn't
8280         break redraws
8281
8282 2000-11-15  Havoc Pennington  <hp@redhat.com>
8283
8284         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove extra pixel
8285         from the cursor
8286         (render_layout_line): fix reversed test that caused weird
8287         underlines to get drawn
8288
8289 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
8290
8291         * gdk/linux-fb/gdkprivate-fb.h:
8292         Fix debug macros.
8293         
8294 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
8295
8296         * gdk/linux-fb/gdkprivate-fb.h:
8297         Added virtual functions set_pixel, get_color,
8298         fill_span and draw_drawable to the GC.
8299         Added global _gdk_fb_screen_gc to use instead of
8300         NULL when drawing to the screen.
8301         Added _gdk_fb_gc_calc_state() prototype.
8302
8303         * gdk/linux-fb/gdkgc-fb.c:
8304         Call _gdk_fb_gc_calc_state() on any gc state change.
8305
8306         * gdk/linux-fb/gdkglobals-fb.c:
8307         Add _gdk_fb_screen_gc
8308                 
8309         * gdk/linux-fb/gdkdrawable-fb2.c:
8310         _gdk_fb_gc_calc_state() calculates best functions
8311         for the GC state and depth.
8312         Moved bpp specialized code to separate functions.
8313         Added optimized 24 bpp AA draw_drawable.
8314
8315         * gdk/linux-fb/gdkevents-fb.c:
8316         Silence gcc warning.
8317
8318         * gdk/linux-fb/gdkimage-fb.c:
8319         Use _gdk_fb_screen_gc
8320
8321         * gdk/linux-fb/gdkwindow-fb.c:
8322         Init and use _gdk_fb_screen_gc
8323
8324         * gdk/linux-fb/mitypes.h:
8325         Remove unused types.
8326
8327 2000-11-14  Havoc Pennington  <hp@pobox.com>
8328
8329         * gtk/gtktextlayout.c (add_cursor): use PANGO_PIXELS() to convert
8330         to pixels
8331
8332 2000-11-14  Havoc Pennington  <hp@pobox.com>
8333
8334         * gtk/testtextbuffer.c (fill_buffer): change "offset" to "rise"
8335
8336         * gtk/gtktexttypes.h (GTK_TEXT_UNKNOWN_CHAR): Add macro for
8337         unknown char, no real reason we were using a variable. 
8338         Remove gtk_text_unknown_char variable. Fix all the text widget
8339         files accordingly.
8340
8341         * gtk/gtktexttypes.c: Change "unknown character" to 0xFFFC, 
8342         since the Unicode spec seems to prefer that character for our
8343         purposes.
8344
8345 Wed Nov 15 02:18:01 2000  Robert Brady  <robert@suse.co.uk>
8346
8347         * gtk/gtkrc.c (gtk_rc_get_im_module_file): The return 
8348         value of g_getenv() isn't freeable, so g_strdup it.
8349
8350         * modules/input/inuktitut.c: Inuktitut input method.
8351
8352         * modules/input/Makefile.am: Build this.
8353         
8354 2000-11-14  Elliot Lee  <sopwith@redhat.com>
8355
8356         * gtk/Makefile.am: Install gtk.immodules, needed for operation
8357         of gtk programs.
8358
8359 Tue Nov 14 20:13:06 2000  Owen Taylor  <otaylor@redhat.com>
8360
8361         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): Fix
8362         reversed > that was causing Home to go to end of previous line.
8363
8364         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): Ignore
8365         modified-keypresses (leave for bindings.)
8366
8367         * modules/input/Makefile.am: Remove useless -export-dynamic
8368         from module LDFLAGS.
8369
8370 2000-11-14  Havoc Pennington  <hp@redhat.com>
8371
8372         * gdk/gdkpango.c (gdk_draw_layout_line): Draw underlines one pixel
8373         higher.
8374
8375         * gtk/gtktextdisplay.c (render_layout_line): Take rise into
8376         account. Also, render rise, underline, background, etc. for
8377         pixbufs as well as text. Also, draw underlines one pixel higher.
8378
8379         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): Add a
8380         PangoAttribute for the rise, so it gets drawn properly. Also,
8381         add the GtkTextAppearance attribute for pixbuf/widget segments
8382         as well; we should go ahead and have rise, underline, background,
8383         stipple work for those
8384
8385         * gtk/gtktexttag.c: Rename "offset" property to "rise" to match
8386         Pango
8387
8388 2000-11-15  Tor Lillqvist  <tml@iki.fi>
8389
8390         * gtk/makefile.{mingw,msc}.in (gtk_OBJECTS): Add new objects.
8391
8392         * gtk/gtk.def: Update.
8393
8394         * gtk/gtkrc.c: Can't check for G_OS_WIN32 until glib.h has been
8395         included.
8396         (gtk_rc_get_im_module_file): Use run-time installation directory
8397         on Win32.
8398
8399         * gdk/win32/rc/gdk.rc: Remove.
8400         * gdk/win32/rc/gdk.rc.in: New file.
8401         * gdk/win32/rc/Makefile.am: New file
8402         * gdk/win32/Makefile.am: Corresponding changes.
8403
8404         * gtk/gtk.rc: Remove.
8405         * gtk/gtk-win32.rc.in: New file.
8406         * gtk/Makefile.am: Corresponding changes.
8407
8408         * configure.in: Corresponding changes.
8409
8410         * gtk/gtkcompat.h.win32: Remove, useless. A distribution already
8411         has a built gtkcompat.h. Developers using CVS code on Win32 can
8412         hand-edit it from gtkcompat.h.in.
8413
8414         * gtk/makefile.{mingw,msc}.in: Correspondingly don't try to make
8415         gtkcompat.h from gtkcompat.h.win32.
8416
8417 2000-11-14  Havoc Pennington  <hp@redhat.com>
8418
8419         * gtk/gtktextview.c (gtk_text_view_drag_motion): Fix drag-and-drop
8420         to default to GDK_ACTION_MOVE if the drag is within a single
8421         widget. Defaults to GDK_ACTION_COPY between widgets.
8422
8423 Mon Nov 13 14:43:48 2000  Owen Taylor  <otaylor@redhat.com>
8424
8425         * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir
8426
8427         * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk
8428
8429         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles
8430         srcdir != builddir
8431
8432         * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk
8433
8434         * configure.in (GTK_VERSION): Up to 1.3.2
8435
8436         * modules/input/Makefile.am (im_xim_la_SOURCES): Add 
8437         gtkimcontextxim.h
8438
8439         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add
8440         missing doc comment.
8441
8442 2000-11-14  Alexander Larsson  <alexl@redhat.com>
8443
8444         * modules/linux-fb/basic.c:
8445         Use the glib iconv wrappers.
8446
8447 2000-11-13  Havoc Pennington  <hp@pobox.com>
8448
8449         * demos/gtk-demo/textview.c: spiff up the demo a bit; reveals
8450         still more bugs.
8451
8452         * gtk/gtktextview.c (gtk_text_view_value_changed): don't try to
8453         scroll the GdkWindows before realization.
8454
8455 2000-11-13  Havoc Pennington  <hp@redhat.com>
8456
8457         * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug 
8458         where GC didn't always get updated properly
8459
8460         * demos/gtk-demo/textview.c (create_tags): Use subattributes
8461         of fonts instead of setting the entire font
8462
8463         * gtk/testtext.c (fill_example_buffer): Use "size" instead of
8464         setting entire font
8465
8466         * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings
8467
8468         * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into 
8469         a bunch of individually-settable font attributes. You can still 
8470         use the "font" and "font_desc" args, they just set all the font
8471         attributes at once.
8472
8473 2000-11-13 Elliot Lee <sopwith@redhat.com>
8474
8475         * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
8476
8477 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
8478
8479         * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
8480         * gtk/gtktreemodel.c (gtk_tree_path_free): ditto
8481
8482         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): make
8483         work better.
8484
8485 2000-11-13  Havoc Pennington  <hp@redhat.com>
8486
8487         * gtk/gtkimmodule.c (gtk_im_module_init): Free the filename of 
8488         the module file.
8489
8490         * gtk/gtktexttag.c (gtk_text_attributes_copy): fix memory leak of
8491         dest->language
8492
8493         * gtk/testtext.c: Test pixels above/below/inside paragraphs
8494         settings
8495
8496         * gtk/gtktextview.c: Implement object args and setters/getters for
8497         all the aspects of the GtkTextAttributes that are not set from
8498         GtkWidget attributes. This is spacing, justification, margins,
8499         etc.
8500
8501         (gtk_text_view_set_arg)
8502         (gtk_text_view_get_arg): implement get/set for editable, wrap mode
8503         args
8504         (gtk_text_view_class_init): Add args for justify, left_margin,
8505         right_margin, indent, and tabs
8506         
8507
8508         * gtk/gtktextlayout.c (set_para_values): fix to display indent
8509         attribute properly
8510
8511         * gtk/gtktexttag.c: Remove left_wrapped_line_margin attribute, 
8512         replace with indent attribute
8513
8514         * gtk/gtktextlayout.c (set_para_values): multiply indent by
8515         PANGO_SCALE
8516
8517         * gtk/gtktextdisplay.c (render_para): Use PangoLayoutIter,
8518         rearranging code to do that
8519         (gtk_text_layout_draw): Pass in the y for the whole LineDisplay,
8520         i.e. don't subtract the top_margin first, just to keep
8521         all margin-futzing in one place.
8522
8523         * gdk/gdkpango.c (gdk_draw_layout): Use PangoLayoutIter
8524
8525         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Remove
8526         special case of last line, Pango now handles this itself.
8527         (gtk_text_layout_get_iter_at_pixel): Fix incorrect clamp of the 
8528         Y coordinate
8529         (gtk_text_layout_move_iter_to_x): port to use PangoLayoutIter
8530         (find_display_line_above): wasn't moving the byte index as it
8531         iterated over lines, so always returned byte 0. Also, port to use
8532         PangoLayoutIter.
8533         (find_display_line_below): same problem as
8534         find_display_line_above. Also, port to use PangoLayoutIter.
8535
8536 2000-11-13  Alexander Larsson  <alexl@redhat.com>
8537
8538         * gdk/linux-fb/*.[ch]:
8539         Massive reindent to gtk+ standard. My hands hurt.
8540
8541         * gdk/linux-fb/gdkcolor-fb.c:
8542         Move GdkColorPrivateFB from inherited to windowing_data
8543
8544         * gdk/linux-fb/gdkcursor-fb.c:
8545         _gdk_cursor_new_from_pixmap made static
8546
8547         * gdk/linux-fb/gdkdnd-fb.c:
8548         GdkDragContextPrivate moved to windowing_data
8549
8550         * gdk/linux-fb/gdkdrawable-fb2.c:
8551         Removed endian.h, use glib endianness macros instead
8552         Some cleanups in the usage of GDK_DRAWABLE_FBDATA
8553         and GDK_DRAWABLE_IMPL_FBDATA
8554
8555         * gdk/linux-fb/gdkfont-fb.c:
8556         Add empty gdk_font_load(). Needed for linking of Gtk+.
8557
8558         * gdk/linux-fb/gdkimage-fb.c:
8559         Removed endian.h, use glib endianness macros instead
8560         Moved GdkImagePrivateFB to windowing_data
8561         gdk_image_new_bitmap didn't always allocate enough
8562         memory.
8563
8564         * gdk/linux-fb/gdkinput-ps2.c:
8565         Added semi-working support for MS serial mice.
8566
8567         * gdk/linux-fb/gdkprivate-fb.h:
8568         s/GdkWindowPrivate/GdkWindowObject/
8569         Removed GdkWindowPrivate typedef
8570         s/GDK_DRAWABLE_P/GDK_DRAWABLE_FBDATA/
8571         Removed GDK_DRAWABLE_P
8572         Move GdkColorPrivateFB from inherited to windowing_data
8573         Moved GdkImagePrivateFB to windowing_data
8574
8575         * gdk/linux-fb/gdkvisual-fb.c:
8576         Removed some unused debug code.
8577
8578         * gdk/linux-fb/gdkwindow-fb.c:
8579         Use stock cursors instead of including X headers.
8580         s/GdkWindowPrivate/GdkWindowObject/
8581
8582         * gdk/linux-fb/mitypes.h:
8583         Removed unused types.
8584
8585         * modules/linux-fb/basic.c:
8586         Use the pango fribidi wrappers.
8587
8588 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
8589
8590         * gdk/linux-fb/gdkcolor-fb.c, gdk/nanox/gdkmain-nanox.c,
8591         gdk/win32/gdkcolor-win32.c, gdk/win32/gdkwin32id.c,
8592         gdk/x11/gdkcolor-x11.c, gdk/x11/gdkvisual-x11.c, gdk/x11/gdkxid.c,
8593         gtk/gtkgc.c, gtk/gtkrc.c, gtk/gtktext.c: GCompareFunc ->
8594         GEqualFunc where applicable.
8595         
8596         * gdk/linux-fb/gdkpango-fb.c: pango_font_description_compare ->
8597         pango_font_description_equal as changed in pango.
8598         
8599         * gdk/nanox/gdkmain-nanox.c: gdk_xid_compare -> gdk_xid_equal.
8600
8601         * gdk/win32/gdkcolor-win32.c: gdk_colormap_cmp -> gdk_colormap_equal.
8602
8603         * gdk/win32/gdkwin32id.c: gdk_handle_compare -> gdk_handle_equal.
8604
8605         * gdk/x11/gdkcolor-x11.c: gdk_colormap_cmp -> gdk_colormap_equal.
8606
8607         * gdk/x11/gdkvisual-x11.c: gdk_visual_compare -> gdk_visual_equal.
8608
8609         * gdk/x11/gdkxid.c: gdk_xid_compare -> gdk_xid_equal.
8610
8611         * gtk/gtkgc.c: gtk_gc_key_compare -> gtk_gc_key_equal and
8612         gtk_gc_drawable_compare -> gtk_gc_drawable_equal.
8613
8614         * gtk/gtkrc.c: gtk_rc_style_compare -> gtk_rc_style_equal and
8615         gtk_rc_styles_compare -> gtk_rc_styles_equal.
8616
8617 2000-11-12  Havoc Pennington  <hp@pobox.com>
8618
8619         * demos/gtk-demo/Makefile.am (democodedir): change demo install
8620         dir to datadir/gtk+-2.0/demo
8621
8622         * demos/gtk-demo/textview.c: Text widget demo; reveals all 
8623         sorts of text widget and Pango font bugs. Urgh.
8624
8625         * demos/gtk-demo/Makefile.am (demos): Add textview.c
8626
8627         * demos/gtk-demo/main.c (create_tree): Add instructions at top of
8628         tree that you should double click to see the demo. Fix 
8629         types of variables to reflect changed return values from 
8630         GtkTreeStore and GtkTreeViewColumn constructors.
8631
8632         * gtk/gtktextbuffer.c (gtk_text_buffer_new): ref/sink the
8633         newly-created buffer to prepare for GObject semantics
8634
8635         * gtk/testtext.c: don't leak the buffer with GObject semantics
8636
8637         * gtk/testtextbuffer.c: ditto
8638         
8639 2000-11-12  Havoc Pennington  <hp@pobox.com>
8640
8641         Rename this testgtk to gtk-demo to avoid confusion, and 
8642         install it so people can use it as a supplement to 
8643         the documentation.
8644         
8645         * demos/gtk-demo: Moved from demos/testgtk
8646
8647         * demos/testgtk: Removed
8648
8649         * configure.in: make Makefile in gtk-demo
8650         
8651         * demos/gtk-demo/Makefile.am: Install sample source to 
8652         datadir/gtk-demo (maybe there's a better place?), and 
8653         rename the binary to gtk-demo
8654         
8655         * demos/gtk-demo/main.c (load_file): Load installed sample
8656         source if source isn't found in pwd.
8657
8658 2000-11-09  Havoc Pennington  <hp@pobox.com>
8659
8660         * gtk/gtkentry.c (gtk_entry_class_init): Add an "invisible_char" 
8661         argument to set the char displayed when visibility == FALSE
8662         (gtk_entry_create_layout): If !entry->visible, replace 
8663         all chars with the "invisible char"
8664
8665         * gtk/testgtk.c: Test the invisible_char deal
8666         
8667 Mon Nov 13 02:16:33 2000  Robert Brady  <robert@suse.co.uk>
8668
8669         * gtk/gtkstyle.c (gtk_style_init): Fall back to "fixed" if we
8670         can't get a native font in the right encoding.
8671
8672 Mon Nov 13 00:09:29 2000  Robert Brady  <robert@suse.co.uk>
8673
8674         * configure.in: Chinese .pos have been renamed to zh_CN and zh_TW
8675         respectively.
8676
8677 Sun Nov 12 19:11:42 2000  Owen Taylor  <otaylor@redhat.com>
8678
8679         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
8680         Fix warning when moving between paragraphs.
8681
8682         * gtk/gtkentry.[ch]: Change move => move_cursor, 
8683         delete => delete_from_cursor, insert => insert_at_cursor
8684
8685 Sun Nov 12 22:52:51 2000  Robert Brady  <robert@suse.co.uk>
8686
8687         * modules/input/imviqr.c: A vietnamese VIQR-based input method.
8688
8689         * modules/input/imthai-broken.c: A Thai input method for use if
8690         Thai keys are really generating Latin1 keysyms.
8691
8692         * modules/input/Makefile.am: Build these.
8693
8694 Sun Nov 12 22:15:35 2000  Robert Brady  <robert@suse.co.uk>
8695
8696         * gtk/gtkfileselection.c, gdk/win32/gdkfont-win32.c: 
8697         g_filename_{to,from}_utf8 now takes an extra parameter.
8698
8699         * gtk/gtkcalendar.c (gtk_calendar_init): Convert output of
8700         strftime into UTF-8.
8701
8702         (column_from_x, gtk_calendar_paint_day_names): Support RTL
8703         calendars.
8704
8705         (gtk_calendar_paint_day_names): Draw day names in the right 
8706         place.
8707         
8708 Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>
8709
8710         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
8711         problem with using result of g_get_charset() backwards -
8712         pointed out by Mikael Hermansson <mikeh@bahnhof.se>.
8713
8714         * gtk/gtkwindow.c (gtk_window_compute_hints): Support
8715         negative min_width/height and max_width/height to
8716         mean "requisition"; this allows setting a window
8717         to be user-resizable in only one direction easily.
8718
8719         * gtk/testgtk.c (create_main_window): Remove hard-coded
8720         usize - set a default size in the vertical direction.
8721
8722 Sun Nov 12 13:33:01 2000  Owen Taylor  <otaylor@redhat.com>
8723
8724         * gtk/gtkrange.c: Add some missing casts. Support 
8725         2 and 3 button clicks on the arrows to mean 
8726         "move by pages" and "jump to end". (Like gtkspinbutton)
8727
8728 2000-11-12 Hans Breuer <Hans@Breuer.Org>
8729
8730         * gdk/win32/makefile.msc : reflect build module changes
8731
8732         * gdk/win32/gdkcursor-win32.c : can't cast to impl type directly
8733         from GdkPixmap*, cast implementation member instead.
8734
8735         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_drawable) : The
8736         passed in drawable is of type GdkDrawableImplWin32, the GdkPixmap *src 
8737         maybe either GdkDrawable or GdkDrawableImpl. Corrected all casts, add
8738         more Gdi functions return value checking. 
8739         (gdk_win32_draw_image) : use IMAGE_PRIVATE_DATA to get on the
8740         GdkImagePrivateWin32 *.
8741
8742         * gdk/win32/gdkevents-win32.c : Disable the SetCapture call to make
8743         menus useable again. Add #pragma message to keep reminded on this issue.
8744         (gdk_event_translate) : don't generate GDK_EXPOSE events for InputOnly
8745         windows. This allows to enable backing store on Win32!
8746
8747         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image) : the passed
8748         in drawable is of impl type. Correct specific type checks appropriate.
8749  
8750         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data) : check 
8751         GDK_WINDOW_DESTROYED before allocating new resources.
8752
8753         * gdk/win32/gdkselection-win32.c : Handle GDK_WINDOW_DESTROYED case
8754
8755         * gdk/win32/gdkwindow-win32.c : more Gdi return value checking,
8756         (gdk_window_foreign_new) initialize parent handle.
8757         (gdk_window_destroy_notify) add GDK_IS_WINDOW check
8758
8759         * gdk/win32/gdkgeometry-win32.c (_gdk_window_move_resize_child) :
8760         Let the GDI invalidate the window on MoveWindow call to fix scrolling
8761         problems (e.g. main buttons in testgtk). 
8762
8763 Sat Nov 11 23:07:30 2000  Owen Taylor  <otaylor@redhat.com>
8764
8765         * gtk/gtkentry.c (gtk_entry_key_press): Call 
8766         gtk_widget_activate for GDK_Return.
8767
8768         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): Fix handling
8769         of preedit cursor position.
8770
8771 Sun Nov  5 04:24:53 2000  Owen Taylor  <otaylor@redhat.com>
8772
8773         * gtk/gtkcellrenderertextpixbuf.c: Make parent_class
8774         static.
8775
8776 Tue Sep 19 10:54:22 2000  Owen Taylor  <otaylor@redhat.com>
8777
8778         * modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
8779         out support for multiple locales; that simple doesn't
8780         work reliably with current Xlib
8781
8782         * gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
8783         gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c: 
8784         Add support for positioning the cursor within the preedit string.
8785
8786 Mon Sep 18 23:56:32 2000  Owen Taylor  <otaylor@redhat.com>
8787
8788         * modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
8789         at XIM input method module.
8790
8791         * gtk/gtktextview.c: Check for bindings after passing
8792         events to im context filter.
8793
8794 Mon Sep 18 11:50:51 2000  Owen Taylor  <otaylor@redhat.com>
8795
8796         * gtk/gtktextlayout.c (add_preedit_attrs): Handle
8797         empty attribute lists properly.
8798
8799 Sun Sep 17 10:08:16 2000  Owen Taylor  <otaylor@redhat.com>
8800
8801         * gtk/queryimmodules.c (main): Return non-zero exit
8802         status if errors were encountered querying any
8803         modules.
8804
8805         * modules/input/Makefile.am (moduledir): remove
8806         leftover bin program target.
8807
8808         * docs/make-todo: Fix typo in error message.
8809
8810 Sat Sep 16 14:04:30 2000  Owen Taylor  <otaylor@redhat.com>
8811
8812         * configure.in: Add modules/input/Makefile
8813
8814 Sat Sep 16 14:01:52 2000  Owen Taylor  <otaylor@redhat.com>
8815
8816         * gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
8817         don't include gtkthemes.h.
8818
8819         * gtk/testgtk.c gtk/testtext.c: Set environment variables
8820         to point
8821
8822         * gtk/Makefile.am: Add new .c and .h files, build 
8823         gtk-query-immodules and use it to create a gtk.immodules
8824         file for use of test programs.
8825
8826         * gtk/gtkpreview.c: remove extra blank line.
8827
8828 Sat Sep 16 13:21:04 2000  Owen Taylor  <otaylor@redhat.com>
8829
8830         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table): 
8831         Add the ability to add extra tables beyond the default
8832         one, and also the ability to have compose sequences 
8833         that are prefixes of other compose sequences. 
8834
8835         * gtk/gtkimcontextsimple.c: Export a preedit string which
8836         consists of possible candidates for keystrokes that have
8837         been entered but not yet committed.
8838
8839         * gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
8840         gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
8841
8842         * gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems): 
8843         Add a function to add input-method switching menu items
8844         to a menu.
8845
8846         * gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
8847         when switching input methods.
8848
8849         * gtk/gtkimcontextsimple.[ch]: Change the format of
8850         the compose table to allow compose tables of different
8851         lengths / sequence.
8852
8853 Sat Sep 16 13:05:48 2000  Owen Taylor  <otaylor@redhat.com>
8854
8855         * gtk/gtkimmodule.[ch]: Support routines for loading
8856         GtkIMContext implementations dynamically at runtime.
8857
8858         * modules/input/imcyrillic-translit.c: A sample input
8859         method (based on GtkIMContextSimple with an extra table),
8860         which demonstrates preedit strings and the module
8861         system for input modules
8862
8863         * gtk/queryimmodules.c: Program to query the available
8864         input modules and write the results into a file.
8865          
8866         * gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
8867         extra config options "im_module_file" (cache file for
8868         input method modules), and "im_module_path" - path
8869         to look for modules when generating cache file.
8870
8871         This doesn't scale.
8872
8873 Sat Sep 16 13:09:06 2000  Owen Taylor  <otaylor@redhat.com>
8874
8875         * gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the 
8876         generic code from gtkthemes into a new abstraction
8877         GtkModule which has the logic for implementing
8878         a loadable module which implements a number of 
8879         GObject types.
8880
8881 Sat Sep 16 13:07:13 2000  Owen Taylor  <otaylor@redhat.com>
8882
8883         * gtk/gtkeditable.[ch]: Convert GtkEditable from
8884         a class into an interface  
8885         
8886         * gtk/gtkoldeditable.[ch]: Move the old editable
8887         implementation into here, so legacy widgets can
8888         still rely on the implemenation. GtkOldEditable
8889         exports GtkEditable. Make selection handling
8890         code use new text conversion functions (and
8891         handle UTF-8 as a side-effect). Use GtkClipboard
8892         for CLIPBOARD.
8893
8894         * gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
8895         Adopt to match above changes.
8896
8897         * gtk/gtkentry.[ch]: Implement GtkEditable directly,
8898         avoid GtkOldEditable implementation. Restructure
8899         to reduce number of places that modify state directly.
8900         Move to GtkBindingSet. Display the preedit string.
8901         Queue recomputation of PangoLayout and scroll position
8902         to improve effiency of doing complex changes naively.
8903         Add a menu with cut/copy/paste and input method selection.
8904
8905 Thu Sep 14 22:11:05 2000  Owen Taylor  <otaylor@redhat.com>
8906
8907         * gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
8908         to set preedit string and attributes; display preedit string by
8909         inserting string and attributes at cursor when creating the
8910         GtkTextLineDisplay.
8911
8912         * gtk/gtktextlayout.c: Move all conversions between byte
8913         positions in PangoLayout and GtkTextIter into new functions
8914         line_display_iter_to_index/index_to_iter that properly
8915         handle the preedit string.
8916
8917         * gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
8918         it to return const char * (eventually will end up
8919         as GCONST char *, most likely.)
8920
8921         * gtk/gtktextview.[ch]: Handle the preedit string, call
8922         gtk_im_context_reset() as necessary, add a menu to switch
8923         input methods.
8924         
8925         * gtk/gtktextlayout.[ch]: Remove useless
8926         gtk_text_layout_get_log_attrs() function.
8927
8928 2000-11-11  Tor Lillqvist  <tml@iki.fi>
8929
8930         * gdk/gdk.def
8931         * gtk/gtk.def: Update.
8932
8933         * gdk/win32/*.c: Add last argument to g_type_register_static()
8934         calls.
8935
8936         * gdk/win32/gdkwindow-win32.c: Silence gcc -Wall.
8937
8938         * gdk/win32/gdkevents-win32.c: Handle MSH_MOUSEWHEEL messages
8939         generated by older wheel mouse drivers. Get the correct y
8940         coordinate from WM_MOUSEWHEEL messages.
8941
8942         * gdk/win32/gdkgc-win32.c (gdk_win32_cap_style_to_string,
8943         gdk_win32_fill_style_to_string, gdk_win32_function_to_string,
8944         gdk_win32_join_style_to_string, gdk_win32_line_style_to_string):
8945         Debugging functions.
8946
8947         * gdk/win32/gdkprivate-win32.h: Declare them.
8948
8949         * gdk/win32/gdkinput-win32.h: Add declaration for
8950         gdk_input_window_destroy().
8951
8952         * gtk/makefile.mingw.in: Pass -DGTK_VERSION. Add gtktreemodel.o.
8953
8954 Fri Nov 10 19:06:41 2000  Jonathan Blandford  <jrb@redhat.com>
8955
8956         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): New
8957         function to help handle keeping things in sync.
8958
8959 Fri Nov 10 12:10:34 2000  Jonathan Blandford  <jrb@redhat.com>
8960
8961         * gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
8962         BOXED marshallers.
8963
8964         * gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
8965         (gtk_list_store_class_init): use the new BOXED marshallers.
8966
8967         * gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
8968         new_with_values to new_with_types.
8969         (gtk_tree_store_get_column_type): add this.
8970         (gtk_tree_store_class_init): use the new BOXED marshallers.
8971
8972         * gtk/gtkmarshal.list: Added a number of BOXED marshallers to
8973         mirror some POINTER marshallers.
8974
8975 Thu Nov  9 11:23:22 2000  Jonathan Blandford  <jrb@redhat.com>
8976
8977         * gtk/gtktreemodel.h (struct _GtkTreeIter): added more fields to
8978         allow more interesting iterators.  Also, made the lifecycle of
8979         iterators more explicit.
8980
8981         * gtk/gtktreemodelsort.[ch]: New model for sorting.
8982
8983         * gtk/gtk-boxed.defs (GtkTreeIter, GtkTreePath): Added two boxed
8984         types.
8985
8986 2000-11-09  Alexander Larsson  <alexl@redhat.com>
8987
8988         * demos/testgtk/menus.c:
8989         Changes to make the new testgtk compile after
8990         gtk_menu_append was removed.
8991
8992         * gdk/linux-fb/gdkdrawable-fb2.c
8993         (gdk_fb_get_depth, gdk_fb_get_visual,
8994         gdk_drawable_impl_fb_class_init): Implement
8995         these drawable functions. Now GtkImages work again.
8996
8997         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Change prototype.
8998
8999         * gdk/linux-fb/gdkprivate-fb.h (_gdk_fb_get_image): Change prototype.
9000         
9001         * gdk/linux-fb/gdkmain-fb.c (fb_modes_parse_mode,
9002         gdk_fb_setup_mode_from_name, gdk_fb_set_mode, gdk_fb_display_new);
9003         Parse /etc/fb.modes, use the environment variables GDK_DISPLAY_MODE,
9004         GDK_DISPLAY_DEPTH, GDK_DISPLAY_WIDTH, GDK_DISPLAY_HEIGHT.
9005
9006 2000-11-08  Havoc Pennington  <hp@pobox.com>
9007
9008         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add visible and
9009         visible_set args, don't know where these had gone, I thought they
9010         used to be there
9011
9012         * gtk/testtext.c: Add a menu item to apply invisibility tag;
9013         now we can test the feature and see that it's totally broken.
9014
9015 2000-11-08  Havoc Pennington  <hp@pobox.com>
9016
9017         Make DND copy pixbufs and tags when source and target share a 
9018         tag table.
9019         
9020         * gtk/gtktextview.c (gtk_text_view_drag_data_get): provide the
9021         in-process GTK_TEXT_BUFFER_CONTENTS target
9022         (gtk_text_view_drag_data_received): Paste from
9023         GTK_TEXT_BUFFER_CONTENTS if we receive it.
9024
9025 2000-11-08  Alexander Larsson  <alexl@redhat.com>
9026
9027         * docs/Changes-2.0.txt: Add note about GtkMenuPositionFunc
9028         API changes.
9029
9030         * gtk/gtkmenu.c: Add support for scrolling menus.
9031         Remove gtk_menu_append/prepend/insert, these have been moved to
9032         gtkcompat.h as #defines.
9033
9034         * gtk/gtkcompat.h.in:
9035         Add compatibility #defines for gtk_menu_append/prepend/insert
9036
9037         * gtk/gtkmenu.h: Add data needed for scrolling menus.
9038         GtkMenuPositionFunc gets an extra argument push_in.
9039         gtk_menu_append/prepend/insert removed.
9040         
9041         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Change menu
9042         positioning behaviour to fit to scrolling menus.
9043
9044         * gtk/gtkmenuitem.c (gtk_menu_item_forall): Don't recurse
9045         into menuitem->submeny. That is wrong, and broke torn
9046         off submenus of torn off menus, since they were unrealized
9047         when the first menu was unrealized.
9048
9049         * gtk/gtkmenushell.[ch]: Virtualize gtk_menu_shell_insert() and
9050         gtk_menu_shell_select_item() since these need to be overridden in
9051         GtkMenu.
9052
9053         * gtk/gtkoptionmenu.c (gtk_opttion_menu_position): Change menu
9054         positioning behaviour to fit to scrolling menus.
9055         (gtk_option_menu_key_press, gtk_option_menu_button_press): Select
9056         the current item so that it is prelighted when the menu pops up.
9057         This is a workaround to the fact that the menu doesn't get the
9058         initial enter event (due to grabs).
9059
9060         * gtk/gtkfilesel.c, gtk/gtkinputdialog.c, gtk/testgtk.c:
9061         s/gtk_menu_append/gtk_menu_shell_append/
9062
9063         * gtk/gtknotebook.c:
9064         s/gtk_menu_insert/gtk_menu_shell_insert/
9065
9066         * gtk/testgtk.c (create_menu, create_menus):
9067         Create the first menu with 50 items so that menu scrolling
9068         can be tested.
9069         
9070         
9071         Patch from Jonathan Blandford  <jrb@redhat.com>
9072
9073         * gtk/gtkmenuitem.[ch] (gtk_menu_item_toggle_size_request): new
9074         system to handle size requests.  First, we ask what the size of
9075         the toggle is.  Then, when allocating the size, we allocate the
9076         toggle_size first.  This way we can have multiple menu-item
9077         classes w/o needing a seperate class for each.
9078
9079         * gtk/gtkmenu.c (gtk_menu_size_request): Actually use the new system.
9080         * gtk/gtkmenu.c (gtk_menu_size_allocate): Use the new system.
9081
9082         * gtk/gtkcheckmenuitem.c
9083         (gtk_check_menu_item_toggle_size_request): New function to handle
9084         the toggle size-request.
9085
9086 2000-11-07  Havoc Pennington  <hp@redhat.com>
9087
9088         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location):
9089         Half-ass somewhat fix this function, so that scrolling to the
9090         insertion point works. Pango hacking is in the future to really
9091         fix it.
9092
9093         * gtk/gtktextview.c (gtk_text_view_drag_data_get): Don't calculate
9094         length of data, no longer used.
9095
9096         * gtk/gtktextbuffer.c (gtk_text_buffer_finalize): move destroy
9097         method contents in here, get rid of destroy method
9098         (gtk_text_buffer_insert_range): Fix some g_return_if_fail checks
9099         that were backward. Remove debug spew.
9100         (cut_or_copy): Make the clipboard work with insert_range to
9101         preserve tags and pixbufs, not just the primary selection.
9102
9103 2000-11-07  Havoc Pennington  <hp@redhat.com>
9104
9105         * gtk/gtktextmark.c (gtk_text_mark_is_visible): rename 
9106         to gtk_text_mark_get_visible
9107
9108         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): fix
9109         bug that was generating an invalid iterator
9110
9111         * gtk/gtktextiter.c (gtk_text_iter_get_offset): move call to
9112         ensure_char_offsets() in front of code placing the iter in an
9113         invalid state.
9114
9115         * gtk/gtktextbuffer.c (gtk_text_buffer_paste_primary):
9116         make override_location arg const
9117         (paste): Replace the selection if we paste into the 
9118         current selection
9119
9120         * gtk/gtkselection.h: Remove "GtkSelectioData"
9121         (struct _GtkSelectionData): move the definition here.
9122
9123         * gtk/gtktextbuffer.c (gtk_text_buffer_update_primary_selection):
9124         Export the GTK_TEXT_BUFFER_CONTENTS target for in-process copies
9125
9126         * gtk/gtktextiter.c (gtk_text_iter_get_tags): New function
9127
9128         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_range): implement
9129         (gtk_text_buffer_insert_range_interactive): implement
9130         (gtk_text_buffer_get_tags): Remove, replaced by
9131         gtk_text_iter_get_tags()
9132
9133         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Add a search
9134         limit parameter, to avoid infinite linear scan.
9135         (gtk_text_iter_backward_search): Add search limit
9136         (gtk_text_iter_forward_find_char): Add search limit
9137         (gtk_text_iter_backward_find_char): Add search limit
9138
9139 2000-11-07  Alexander Larsson  <alla@lysator.liu.se>
9140
9141         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
9142         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkimage-fb.c,
9143         gdk/linux-fb/gdkpango-fb.c, gdk/linux-fb/gdkpixmap-fb.c,
9144         gdk/linux-fb/gdkwindow-fb.c:
9145         use g_object_new() instead of g_type_create_instance() which
9146         is a private function for fundamental type implementations.
9147
9148         * gdk/linux-fb/gdkinput-ps2.c:
9149         Use MEDIUMRAW instead of RAW keycodes. Remove keyboard state-table
9150         instead just store the current modifier state. Add a (somewhat broken)
9151         keyboard input parser for XLATE mode too, if we couldn't use MEDIUMRAW.
9152         Rename exported function gdk_input_ps2_get_mouseinfo to
9153         gdk_input_get_mouseinfo.
9154
9155         * gdk/linux-fb/gdkmain-fb.c, gdk/linux-fb/gdkprivate-fb.h,
9156         gdk/linux-fb/gdkwindow-fb.c:
9157         gdk_input_ps2_get_mouseinfo was renamed to gdk_input_get_mouseinfo.
9158         
9159
9160 2000-11-02  Havoc Pennington  <hp@redhat.com>
9161
9162         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
9163         use stock buttons. Should be 100% source compatible, appropriate
9164         filesel fields now point to dialog->vbox and dialog->action_area.
9165         On the bizarre side, dialog->action_area and filesel->action_area
9166         are not the same widget.
9167         (gtk_file_selection_init): Put some padding around the selection
9168         entry, so it isn't touching the GtkDialog separator.    
9169
9170         * gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog, 
9171         use stock buttons, etc. Should also be source compatible.
9172         Set the dialog default title in _init not _new().
9173         
9174         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
9175         Use stock buttons; don't put a button box inside the existing
9176         dialog button box. Don't bother with push/pop colormap anymore.
9177
9178         * gtk/gtkdialog.h (GtkResponseType): Add a bunch of more 
9179         specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
9180         for message dialog, and necessary for the font selection and color
9181         selection with help and apply buttons.
9182         
9183         * gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer 
9184         to the created button widget. Set GTK_CAN_DEFAULT on the button.
9185         (gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
9186         between buttons, put less padding around the action area.
9187         (gtk_dialog_run): Exit on unmap rather than on destroy. 
9188         This will also exit the loop if the widget is hidden.
9189         (gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
9190         instead of GTK_RESPONSE_NONE; since we're already adding a bunch
9191         of GTK_RESPONSE_* stuff, this seems cleaner, and lets you 
9192         special-case delete event.
9193
9194         * gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
9195         formatting
9196         
9197 Sun Nov  5 05:32:39 2000  Tim Janik  <timj@gtk.org>
9198
9199         * gtk/testgtk.c (uposition_stop_configure): provide a toggle
9200         button to temporarily disable position recording in the
9201         "saved position" test.
9202
9203 Sat Nov  4 05:37:17 2000  Tim Janik  <timj@gtk.org>
9204
9205         * gtk/gtkthemes.c: added compat code that temporarily implements
9206         GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
9207         going to be revamped by owen's upcoming GtkModule patches, but
9208         untill then people want gtk to build, right? ;)
9209
9210 2000-11-04  Havoc Pennington  <hp@pobox.com>
9211
9212         * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member
9213         list
9214
9215         * docs/Changes-2.0.txt: Add note about
9216         gtk_container_get_toplevels()
9217
9218         * gtk/gtktextview.h: formatting
9219         
9220         * gtk/gtktextview.c: don't start descriptions with "Returns",
9221         confuses gtk-doc
9222
9223 Sat Nov  4 10:12:27 2000  Owen Taylor  <otaylor@redhat.com>
9224
9225         * autogen.sh: When doing sanity checking on ACLOCAL_FLAGS,
9226         look for glib-2.0.m4 not glib.m4. (Ali Abdin)
9227
9228 2000-11-03  Havoc Pennington  <hp@redhat.com>
9229
9230         * gtk/gtktexttagtable.c: Docs
9231         (gtk_text_tag_table_size): return a signed int
9232
9233         * gtk/gtktexttag.c: s/tkxt/text/g; write documentation
9234         (gtk_text_tag_event): make the event_object a GObject
9235
9236         * gtk/gtktextview.c: Write API docs for all functions.
9237
9238         * gtk/gtktextview.h: add GTK_TEXT_WINDOW_PRIVATE as return value
9239         for gtk_text_view_get_window_type() called on one of the private
9240         windows.
9241
9242         * gtk/gtktextview.c: Instead of accessing text_view->buffer
9243         directly, call get_buffer() which demand-creates a default
9244         buffer. So gtk_text_view_new() can be used to create a view with a
9245         default buffer in it, if you just want an empty text box users can
9246         put data in. Useful for GUI builders also.
9247
9248 2000-11-03  Pablo Saratxaga <pablo@mandrakesoft.com>
9249
9250         * gtk/gtkrc.zh_TW.*: moved gtkrc.zh_TW.Big5 to gtkrc.zh_TW.big5;
9251         the charset encodign portion MUST be in lowercase.
9252         * gtk/gtkrc.az: added file for Azeri language
9253
9254 2000-11-03  Havoc Pennington  <hp@redhat.com>
9255
9256         Get widgets working on the btree/buffer side. Display of them 
9257         still doesn't work.
9258         
9259         * gtk/gtktextview.c: start implementing child widget stuff
9260
9261         * gtk/gtktextiter.c (gtk_text_iter_get_child_anchor): new function
9262
9263         * gtk/gtktextlayout.c: handle embedded widgets
9264
9265         * gtk/gtktextdisplay.c: handle embedded widgets
9266
9267         * gtk/gtktextchild.c: Implement all the child anchor goo
9268
9269         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor): New
9270         function
9271
9272         * gtk/gtktextbtree.c: Add child anchor table to the btree struct
9273         (insert_pixbuf_or_widget_segment): abstract out common portions of 
9274         creating a child anchor or a pixbuf segment.
9275         (gtk_text_btree_create_child_anchor): new function
9276         (gtk_text_btree_unregister_child_anchor): new function
9277
9278         * gtk/gtkmarshal.list: added VOID:OBJECT,INT,INT for the
9279         allocate_child signal on GtkTextLayout
9280
9281         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): fix bogus return
9282         values
9283         (gtk_text_iter_get_child_anchor): new function
9284
9285         * gtk/gtktextbuffer.c (gtk_text_buffer_real_changed): Add a
9286         default handler for the changed signal, which calls
9287         gtk_text_buffer_set_modified(), instead of just always emitting
9288         changed then calling set_modified() manually. I guess this is
9289         maybe more flexible. It seems logical.
9290
9291 Fri Nov  3 08:58:38 2000  Tim Janik  <timj@gtk.org>
9292
9293         * gtk/gtkobject.c: _g_signal_handlers_destroy() is prefixed with '_'
9294         now.
9295
9296         * gtk/gtksignal.c: use g_signal_connect_closure_by_id() now.
9297
9298 Thu Nov  2 14:10:51 2000  Owen Taylor  <otaylor@redhat.com>
9299
9300         * gdk/x11/gdkdnd-x11.c: Fix a bunch of functions that should have
9301         been marked static.
9302
9303 2000-11-02  Havoc Pennington  <hp@redhat.com>
9304
9305         * gtk/testgtk.c (create_labels): had a test backward
9306
9307         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Copy the client-side GC
9308         fields, so the dest GC ends up with the correct clip origin, 
9309         etc. Fixes a bug where colored labels didn't redraw 
9310         properly.
9311
9312 2000-11-02  Alexander Larsson  <alexl@redhat.com>
9313
9314         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
9315         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkpango-fb.c,
9316         gdk/linux-fb/gdkpixmap-fb.c, gdk/linux-fb/gdkwindow-fb.c:
9317         Add last argument to t_type_register_static call.
9318         
9319         * gdk/linux-fb/gdkdrawable-fb2.c:
9320         Add last argument to t_type_register_static call.
9321         export the get_image drawable virtual function.
9322
9323         * gdk/linux-fb/gdkimage-fb.c:
9324         Add last argument to t_type_register_static call.
9325         rename gtk_image_get to _gdk_fb_get_image and
9326         export it for use by gdkdrawable-fb2.
9327
9328         * gdk/linux-fb/gdkprivate-fb.h:
9329         export _gdk_fb_get_image.
9330
9331         * gdk/linux-fb/gdkselection-fb.c:
9332         Add new api call stubs.
9333
9334         * gtk/Makefile.am:
9335         Missing ( in linux-fb part.
9336
9337         * modules/linux-fb/Makefile.am:
9338         Must link with gdk_pixbuf or get unresolved symbol.
9339
9340 2000-11-01  Havoc Pennington  <hp@pobox.com>
9341
9342         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Use 
9343         GTK_TYPE_TEXT_ITER and BOXED marshallers
9344
9345         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): ditto
9346
9347         * gtk/gtktexttag.c (gtk_text_tag_class_init): ditto
9348         
9349         * gtk/gtk-boxed.defs: add GtkTextIter
9350
9351         * gtk/gtkmarshal.list: Add marshallers for text widget that 
9352         properly use OBJECT and BOXED
9353
9354 2000-11-01  Havoc Pennington  <hp@redhat.com>
9355
9356         * gtk/testgtk.c (create_labels): Test set_markup_with_accel()
9357
9358         * gtk/gtklabel.c (set_markup): Convert the unichar to a GDK keyval
9359         before returning it. 
9360         
9361 2000-11-01  Havoc Pennington  <hp@redhat.com>
9362
9363         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
9364         Clip the rectangle to be rendered to the drawable, since
9365         get_from_drawable() requires a region within the drawable
9366
9367 2000-11-01  Havoc Pennington  <hp@redhat.com>
9368
9369         * gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
9370         from coordinates.
9371
9372 Wed Oct 25 20:10:57 2000  Owen Taylor  <otaylor@redhat.com>
9373
9374         * gdk/gdkevents.c (gdk_event_copy): Only ref the window if
9375         it isn't NULL.
9376
9377 2000-11-01  Havoc Pennington  <hp@pobox.com>
9378
9379         * gtk/gtklabel.c (gtk_label_set_attributes): Set a PangoAttrList
9380         on a label
9381         (gtk_label_finalize): unref the attr list if any.
9382
9383         * gtk/testgtk.c (create_get_image): close test on second click
9384         (make_message_dialog): close dialog if it exists
9385
9386         * gdk/gdkpango.c (gdk_draw_layout): Handle rise attribute
9387
9388         * gdk-2.0.pc.in (Requires): Make it require gdk-pixbuf-2.0 not
9389         gdk-pixbuf
9390
9391         * gtk/gtklabel.c (gtk_label_set_markup): new function to set label
9392         from Pango markup format
9393         (gtk_label_set_markup_with_accel): ditto but with accelerator
9394         parsing
9395
9396         * gtk/gtkimage.c (gtk_image_expose): reformatting.
9397
9398         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable): Hack to
9399         reflect current state of GDK - use gdk_drawable_get_colormap, etc.
9400         Check GDK_IS_WINDOW() not !GDK_IS_PIXMAP() to decide whether to 
9401         call gdk_window_get_origin().
9402
9403         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
9404         implement GDK_PIXBUF_ALPHA_FULL
9405         
9406 Wed Nov  1 03:43:42 2000  Tim Janik  <timj@gtk.org>
9407
9408         * gtk/gtksignal.c (gtk_signal_compat_matched): make use of
9409         g_signal_handlers_block_matched, g_signal_handlers_unblock_matched and
9410         g_signal_handlers_disconnect_matched to block/unblock and disconnect
9411         multiple handlers respectively, instead of only treating the
9412         first handler found (bug reported by owen).
9413
9414 Mon Oct 30 19:23:50 2000  Jonathan Blandford  <jrb@redhat.com>
9415
9416         * gtk/gtktreeview.c (gtk_tree_view_expand_row): New function.
9417
9418         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): New function.
9419
9420         * gtk/gtktreeview.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c
9421         gtk/gtktreestore.h, gtk/gtktreeview.h, gtk/gtktreeviewcolumn.c,
9422         gtk/gtktreeviewcolumn.h: Fixed inline docs.
9423
9424         * docs/reference/gtk/tree_widget.sgml: Proto intro to the tree
9425         widget.  Needs writing someday.
9426
9427         * docs/reference/gtk/tmpl/gtktree*sgml: Added the tree widget to
9428         the docs.
9429
9430 2000-10-30  Havoc Pennington  <hp@redhat.com>
9431
9432         * gtk/gtktextview.h, gtk/gtktextview.c:
9433         Rename delete_at_cursor delete_from_cursor, and 
9434         move to move_cursor.
9435
9436 2000-10-30  Havoc Pennington  <hp@redhat.com>
9437
9438         * gtktextbtree.c, gtktextbtree.h, gtktextbuffer.c,
9439         gtktextbuffer.h, gtktextchild.c, gtktextchild.h,
9440         gtktextchildprivate.h, gtktextdisplay.c, gtktextdisplay.h,
9441         gtktextiter.c, gtktextiter.h, gtktextiterprivate.h,
9442         gtktextlayout.c, gtktextlayout.h, gtktextmark.c, gtktextmark.h,
9443         gtktextmarkprivate.h, gtktextsegment.c, gtktextsegment.h,
9444         gtktexttag.c, gtktexttag.h, gtktexttagprivate.h,
9445         gtktexttagtable.c, gtktexttagtable.h, gtktexttypes.c,
9446         gtktexttypes.h, gtktextview.c, gtktextview.h:
9447
9448         Massive reindentation and reformatting. Arg alignment and comments
9449         still need fixing in various places.
9450
9451 2000-10-30  Havoc Pennington  <hp@redhat.com>
9452
9453         * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals
9454         to be named insert_at_cursor and delete_at_cursor so C++ can
9455         handle them.
9456
9457 2000-10-28  Tor Lillqvist  <tml@iki.fi>
9458
9459         * gtk/gtkrc.c (gtk_rc_append_default_module_path): Make sure not
9460         to get a double directory separator in case the home directory
9461         ends with one. This would cause trouble especially on Windows,
9462         where the path will be confused with the syntax for an an UNC
9463         (network share) path \\server\share\path.
9464         (gtk_rc_add_initial_default_files): Ditto.
9465
9466 Sat Oct 28 02:33:09 2000  Robert Brady  <robert@suse.co.uk>
9467
9468         * gtk/gtkmarshal.list: add new marshallers for GtkTextView.
9469
9470         * gtk/gtktextview.c: Use correct marshallers.
9471
9472 Fri Oct 27 17:56:26 2000  Jonathan Blandford  <jrb@redhat.com>
9473
9474         * gtk/gtkliststore.c: Not sure how this ever worked.  Fixed it to
9475         use new iter stuff, and added all the appropriate signals et al.
9476
9477         * gtk/gtktreedatalist.h: s/gtk/_gtk to further reinforce that this
9478         code is internal to gtk only.
9479
9480 2000-10-28  Tor Lillqvist  <tml@iki.fi>
9481
9482         * gtk/gtk.def
9483         * gtk/makefile.{mingw,msc}.in: Adjust to Tim's changes. Use
9484         glib-genmarshal etc.
9485
9486 Fri Oct 27 20:15:00 2000  Tim Janik  <timj@gtk.org>
9487
9488         * gtk/Makefile.am: added dependancies for testtextbuffer which broke
9489         parallel builds.
9490
9491 Fri Oct 27 18:51:44 2000  Tim Janik  <timj@gtk.org>
9492
9493         * gtk/gtksignal.[hc]: adapt to GSignal signature changes.
9494
9495 2000-10-27  Robert Brady  <robert@suse.co.uk>
9496
9497         * configure.in (ALL_LINGUAS): Add en@IPA (English, phonetic), 
9498         en_GB (British), ia (Interlingua).
9499
9500 2000-10-26  Havoc Pennington  <hp@redhat.com>
9501
9502         * gtk/gtktextiter.c (my_strrstr): fix constness warning
9503
9504         Fixed output of:
9505         nm -g -l .libs/libgtk-x11-1.3.so | grep ' T ' | grep -v gtk_ | grep -v GTK_
9506         
9507         * gtk/gtktextsegment.c (char_segment_new): rename
9508         (_char_segment_new_from_two_strings): rename
9509         (_toggle_segment_new): rename
9510         
9511         * gtk/gtkclipboard.c (ensure_clipboard_widget): make this static
9512         (make_clipboard_widget): make it static
9513         (text_get_func): static
9514         (text_clear_func): static
9515
9516         * gtk/gtkcolorsel.c (adjustment_changed): make this function
9517         static
9518         (hex_changed): make it static
9519         (hsv_changed): make it static
9520         (opacity_entry_changed): make it static
9521
9522         * gtk/gtktextbtree.c (change_node_toggle_count): rename with _gtk
9523         (toggle_segment_check_func): rename with _gtk
9524
9525         * gtk/gtktextchild.c (_pixbuf_segment_new): rename with _gtk
9526         (_widget_segment_new): rename
9527         (_widget_segment_add): rename
9528         (_widget_segment_remove): rename
9529         (_widget_segment_ref): rename
9530         (_widget_segment_unref): rename
9531
9532         * gtk/gtktextmark.c (_mark_segment_new): Rename
9533         _gtk_mark_segment_new   
9534
9535 2000-10-26  Havoc Pennington  <hp@redhat.com>
9536
9537         * gtk/gtkmarshal.list: add new marshallers used by the text widget
9538         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
9539         types
9540
9541         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
9542         marshaller types
9543
9544         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
9545         gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
9546         license on these files.
9547
9548         * gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
9549         work.
9550
9551         * gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to 
9552         runtime random number different for each tree, instead of 
9553         a constant I made up.
9554
9555 Thu Oct 26 07:36:16 2000  Tim Janik  <timj@gtk.org>
9556
9557         * gtk/Makefile.am: buncha cleanups, kludged build sources
9558         dependencies with a Makefile: oldest-source-stamp dependancy
9559         for the moment. automake is really fighting us here, with
9560         intentionally not allowing user-defined rules or dependancies
9561         prior to it's -include $(DEP_FILES) statement. sucks rocks!
9562
9563         * gtk/Makefile.am: added gtktextlayout.h and gtktextdisplay.h
9564         to public headers. tehy have a comment stating that they are
9565         "semi-public" aren't included by gtk.h and if enums popup there,
9566         they can be /*< skip >*/-ed.
9567
9568         * gtk/gtktextlayout.h: 
9569         * gtk/gtktextdisplay.h: indentation fixes, comment fixes,
9570         added LGPL... <SIGH>
9571
9572 Wed Oct 25 20:40:25 2000  Jonathan Blandford  <jrb@redhat.com>
9573
9574         * gtk/gtktreemodel.h: Got rid of GtkTreeNode, and changed it to
9575         GtkTreeIter.  Added iterators everywhere.
9576
9577         * gtk/gtktreeviewcolumn.c: Changed to use the iterators.
9578
9579         * gtk/gtktreeviewselection.c: Changed to use the iterators.
9580
9581         * gtk/gtktreestore.c: Changed to use the iterators.
9582
9583         * gtk/gtkliststore.c: Commented out the code.  Will convert to
9584         iterators tomorrow.
9585
9586         * gtk/gtkmodelsimple.c: Commented out the code.  Will convert to
9587         iterators tomorrow.
9588
9589         * gtk/treestoretest.c: Changed to use iterators.
9590
9591         * demos/testgtk/main.c: Moved to use the new iterator system.
9592
9593 Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>
9594
9595         * gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
9596         localization misbehaviour.
9597
9598         * gtk/gtk-boxed.defs: nuked "boxed" type GtkCTreeNode, since it's
9599         a useless type without copy/free.
9600
9601         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_TYPE_POINTER instead
9602         of GTK_TYPE_CTREE_NODE.
9603
9604 Thu Oct 26 00:51:52 2000  Tim Janik  <timj@gtk.org>
9605
9606         * gtk/gtksignal.c:
9607         (gtk_signal_emitv): use g_value_set_static_{string|boxed} where
9608         applicable.
9609
9610         * gtk/gtk-boxed.defs (GtkSelectionData): specify
9611         gtk_selection_data_copy and gtk_selection_data_free
9612         do GtkSelectionData work as params in signals.
9613
9614 Wed Oct 25 20:47:41 2000  Tim Janik  <timj@gtk.org>
9615
9616         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
9617         implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
9618         couldn't they at least give it a non-standard name?
9619         
9620         * gtk/gtktextlayout.c: arg! yet another implementation of
9621         gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
9622
9623         * gtk/gtktextbuffer.c: gotcha! captured a vagabonding
9624         gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
9625         home. now i know this _is_ a conspiracy.
9626
9627         * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
9628         ::state-changed.
9629
9630         * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): 
9631         (gtk_accel_group_create_add): marshaller signature fixups.
9632
9633         * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
9634         pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
9635
9636         * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
9637         anymore.
9638
9639 Tue Oct 24 23:59:21 2000  Tim Janik  <timj@gtk.org>
9640
9641         * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
9642         due to the signal system changes, it wouldn't build currently. to
9643         be fixed soon.
9644
9645         * docs/Changes-2.0.txt: GtkSignal/GSignal updates.
9646
9647         * gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
9648         so it needs gtk_marshal_VOID__ENUM() instead of
9649         gtk_marshal_NONE__UINT().
9650
9651         * gdk/gdk*.c: adapted type registration functions.
9652
9653         * gtk/gtkbindings.c:
9654         * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
9655         gone.
9656
9657         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
9658
9659         * gtk/gtkobject.c:
9660         (gtk_object_destroy):
9661         (gtk_object_shutdown): fixed recursion guards. basically we have to
9662         catch the case where any of GObject.shutdown() or gtk_object_destroy()
9663         is called during ::destroy, and avoid recursion there.
9664
9665         * gtk/gtktypeutils.c:
9666         * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
9667         boxed_copy/boxed_free. this needs a more general solution based on a
9668         publically installed code-generator utility.
9669
9670         * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
9671         glib's gobject has support for that now.
9672         define GtkSignalMarshaller in terms of GSignalCMarshaller.
9673
9674 Mon Oct 23 09:36:42 2000  Tim Janik  <timj@gtk.org>
9675
9676         * gtk/gtksignal.[hc]:
9677         * gtk/gtkmarshal.[hc]:
9678         * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
9679         compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
9680         removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
9681         care of that.
9682
9683         * *.c: marshaller name fixups.
9684
9685         * gtk/gtkmarshal.list: added a comment briefing the format.
9686
9687 Sun Oct 22 23:14:39 2000  Tim Janik  <timj@gtk.org>
9688
9689         * gtk/gtksignal.[hc]: nuked old implementation. we mostly have
9690         compatibility macros here now. more specifically, most of
9691         the API is preserved (yes, _most_, nonwithstanding the
9692         following exceptions listed, the API is stil lHUGE ;)
9693         things that got removed completely:
9694         GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
9695         gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
9696         gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
9697         gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
9698         gtk_signal_remove_emission_hook().
9699         non-functional functions variants:
9700         gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
9701         the GtkCallbackMarshal argument to gtk_signal_connect_full() is
9702         not supported anymore.
9703         (gtk_signal_compat_matched): new internal function to aid
9704         implementation of the compatibility macros, it  provides
9705         functionality to block/unblock/disconnect handlers based
9706         on func/data.
9707
9708         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
9709
9710         * *.c: adaptions to new type registration API signatures.
9711
9712 Fri Oct 20 15:26:33 2000  Tim Janik  <timj@gtk.org>
9713
9714         * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
9715
9716 2000-10-25  Robert Brady  <robert@suse.co.uk>
9717
9718         * gdk/x11/gdkproperty-x11.c (gdk_property_get, gdk_property_change,
9719         gdk_property_delete): If window == NULL, assume the root window.
9720         (restoring the behaviour that was in 1.2).
9721         
9722         * gtk/testtext.c (save_buffer): Allow creation of new files when
9723         saving.
9724
9725         (fill_file_buffer): Don't die if a UTF-8 sequence is split across
9726         calls to read().
9727
9728 2000-10-25  Tor Lillqvist  <tml@iki.fi>
9729
9730         * gdk/gdkwindow.c: Include x11/gdkx.h only when building for X11.
9731
9732         * gdk/win32/gdkdrawable-win32.c
9733         * gdk/win32/gdkimage-win32.c
9734         * gdk/win32/gdkprivate-win32.h: Corresponding changes as in the
9735         X11 backend.
9736
9737         * gdk/win32/gdkcc-win32.c
9738         * gdk/win32/gdkcolor-win32.c
9739         * gdk/win32/gdkfont-win32.c
9740         * gdk/win32/gdkinput-win32.c
9741         * gdk/win32/gdkmain-win32.c
9742         * gdk/win32/gdkproperty-win32.c: Silence gcc -Wall.
9743
9744 2000-10-24  Havoc Pennington  <hp@redhat.com>
9745
9746         * gtk/gtktextview.c (gtk_text_view_scroll_to_mark_adjusted): make
9747         it a static function
9748
9749         * gtk/gtktextbtree.c (gtk_text_btree_tag): Gee, maybe we should
9750         redraw text when a tag is applied to it.
9751
9752         * gtk/gtktexttag.c (gtk_text_tag_affects_size)
9753         (gtk_text_tag_affects_nonsize_appearance): private functions to
9754         see if a tag requires various kinds of redraw/layout to be queued
9755         up.
9756
9757         * gtk/gtktexttag.h (struct _GtkTextTag): Remove relief crackrock
9758
9759         * gtk/testtext.c (fill_example_buffer): Put the cursor 
9760         at the start of the buffer, so search works by default
9761
9762         * gtk/gtktextiter.c (lines_match): init match_start always
9763
9764         * gtk/gtktextbuffer.c (gtk_text_buffer_get_iter_at_line_index): New
9765         function, get iter at a line + a byte index
9766
9767         * gtk/gtktextiter.c (gtk_text_iter_set_line_index): New function,
9768         to set byte position within a line
9769         (gtk_text_iter_check): remove leftover G_BREAKPOINT thing
9770
9771 2000-10-23  Havoc Pennington  <hp@redhat.com>
9772
9773         * gtk/testtext.c: Re-enable the "find" dialog
9774
9775         * gtk/testgtk.c: Add test for gdk_drawable_get_image
9776         
9777         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix bug where
9778         the arguments to gdk_draw_drawable were in the wrong order
9779         (gdk_window_paint_init_bg): This function was ignoring the
9780         init_region, instead of clipping to it, so the entire backing
9781         pixmap was cleared on every begin_paint()
9782         (gdk_window_begin_paint_region): Hmm, the same list-walking bug
9783         was in here again, the loop kept using the same GtkWindowPaint
9784         over and over.
9785         (gdk_window_begin_paint_region): Fix a bug where we had two
9786         x_offset instead of x_offset and y_offset
9787
9788         * gdk/gdkdraw.c (gdk_drawable_get_image): get composite drawable
9789         before we get the image.
9790         (gdk_draw_drawable): get the composite before we draw the drawable.
9791         (gdk_drawable_real_get_composite_drawable): default
9792         get_composite_drawable implementation that returns the drawable 
9793         itself
9794
9795         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Add
9796         get_composite_drawable virtual function
9797
9798         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix a cheesy
9799         list-walking bug
9800
9801         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable): Add a hack to
9802         make this work if the source drawable is a GdkDrawableImplX11
9803         instead of a public drawable type. This is really broken; the
9804         problem is that GdkDrawable needs a virtual method get_xid(), but
9805         of course that doesn't work in practice. Enter RTTI.
9806
9807         Also, improve mismatched depth message.
9808
9809         * gdk/gdkpixmap.c (gdk_pixmap_get_image): Implement get_image for
9810         GdkPixmap
9811
9812         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_class_init):
9813         install _gdk_x11_get_image as our implementation of get_image
9814         
9815         * gdk/x11/gdkimage-x11.c (gdk_image_get): Rename to
9816         _gdk_x11_get_image and export for use in gdkdrawable-x11.c
9817
9818         * gdk/gdkimage.c (gdk_image_get): Make this just a wrapper around
9819         gdk_drawable_get_image
9820
9821         * gdk/gdkdraw.c (gdk_drawable_get_image): call virtual get_image
9822
9823         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Virtualize
9824         get_image
9825
9826         * gtk/gtktreestore.c (gtk_tree_store_get_node): remove weird
9827         trailing semicolon after for loop
9828
9829 Mon Oct 23 12:07:57 2000  Owen Taylor  <otaylor@redhat.com>
9830
9831         * gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
9832         where font_desc for widget's context lagged widget's font_desc by
9833         one step.
9834
9835 2000-10-22  Tor Lillqvist  <tml@iki.fi>
9836
9837         * gdk/win32/gdkgc-win32.c
9838         * gdk/win32/gdkimage-win32.c: Remove gcc -Wall warnings.
9839
9840         * gtk/makefile.mingw.in
9841         * gtk/gtk.def: Updates.
9842
9843         * gtk/testgtk.c: sleep() is called _sleep in MS's C
9844         library.
9845
9846         * gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
9847
9848         * gtk/makefile.msc: Remove
9849
9850         * gtk/makefile.msc.in: New file, like makefile.mingw.in.
9851
9852         * gtk/Makefile.am: Add it.
9853
9854         * configure.in: Generate it.
9855
9856         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
9857         * gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
9858         something even if not implemented, to satisfy picky MSVC.
9859
9860         Patches by Hans Breuer:
9861         
9862         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_glyphs): Call
9863         SetBkMode() and SetTextAlign() before calling
9864         pango_win32_render().
9865
9866         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values):
9867         Set hcliprgn to NULL after destroying it.
9868         (gdk_gc_set_clip_rectangle): Delete hcliprgn and set to NULL.
9869
9870         * gdk/win32/gdkgeometry-win32.c
9871         (_gdk_windowing_window_queue_antiexpose): More effective
9872         implementation.
9873
9874         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use drawable's
9875         depth as default, not the visual's.
9876
9877         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Guard
9878         against empty title.
9879
9880         * gdk/win32/gdkprivate-win32.h: Define a helper macro,
9881         IMAGE_PRIVATE_DATA.
9882
9883         * gdk/win32/gdkimage-win32.c: Use it.
9884
9885 2000-10-22  Robert Brady  <robert@suse.co.uk>
9886
9887         * configure.in: Check for bind_textdomain_codeset
9888
9889         * gtk/gtkmain.c (gtk_init_check): If bind_textdomain_codeset 
9890         present, make use of it.
9891
9892         Add a translatable string "default:LTR" which, if translated
9893         to "default:RTL", will cause the default direction to be
9894         Right-to-Left.
9895
9896         * gtk/gtkrange.h, gtk/gtkrange.c: Take into account the widget 
9897         direction if marked as flippable.
9898
9899         * gtk/gtkhscale.c: Mark widget as flippable.
9900         
9901 2000-10-04  Havoc Pennington  <hp@redhat.com>
9902
9903         * gtk/testgtk.c (create_buttons): create some stock buttons
9904         with the default accel group
9905         (create_image): test some new GtkImage features
9906         (make_message_dialog): test GtkMessageDialog
9907         (create_modal_window): fix someone's bizzarro indentation
9908
9909         * gtk/gtkwindow.h, gtk/gtkwindow.c: Implement 
9910         GTK_WIN_POS_CENTER_ON_PARENT. 
9911         Add "destroy with parent" setting, which means the window goes
9912         away with its transient parent.
9913         (gtk_window_get_default_accel_group): get the default accel group
9914         for the window.
9915         (gtk_window_set_destroy_with_parent): set/unset destroy with
9916         parent flag
9917         (gtk_window_read_rcfiles): invalidate icon set caches
9918         after reloading rcfiles 
9919
9920         * gtk/gtkenums.h (GtkWindowPosition): add
9921         GTK_WIN_POS_CENTER_ON_PARENT, which centers a dialog 
9922         on its parent window when the dialog is mapped for the first time.
9923
9924         * gtk/gtkmessagedialog.h, gtk/gtkmessagedialog.c: Add 
9925         a simple message dialog class
9926         
9927         * gtk/gtkdialog.c (gtk_dialog_init): Connect delete event 
9928         handler to emit response signal, and maybe later it would
9929         honor a hide_on_delete flag - though that isn't there yet.
9930         Set border width on the vbox to 2, so we get some padding.      
9931         Use a button box for the action area.
9932         (gtk_dialog_key_press): synthesize a delete event if Esc
9933         is pressed and the GtkWidget key press handler didn't 
9934         handle the escape key.
9935         (gtk_dialog_new_with_buttons): new function creates a dialog
9936         with some default buttons in it.
9937         (gtk_dialog_add_action_widget): add an activatable widget
9938         as a button in the dialog - you can also add a non-activatable
9939         widget by accessing the action area directly.
9940         (gtk_dialog_add_button): add a simple button - stock ID or 
9941         label - to the action area
9942         (gtk_dialog_response): emit response signal
9943         (gtk_dialog_run): block waiting for the dialog, return 
9944         the response. Override normal delete_event behavior, so that 
9945         delete_event does nothing inside gtk_dialog_run().
9946
9947         * gtk/gtkdialog.h, gtk/gtkdialog.c: Add "response" signal
9948         emitted when an action widget is clicked or the dialog gets
9949         delete_event
9950
9951         * gtk/gtk.h: add gtkmessagedialog.h
9952
9953         * gtk/Makefile.am: add gtkmessagedialog.[hc]
9954
9955 2000-10-18  Havoc Pennington  <hp@redhat.com>
9956
9957         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): Fix a bug 
9958         where any number of empty lines would get skipped
9959
9960         * gtk/gtktextiter.h: Remove padding from GtkTextIter; live on the
9961         edge.
9962
9963         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): enhance the
9964         warning about invalid iterators (explain more thoroughly)
9965         (gtk_text_iter_in_region): rename gtk_text_iter_in_range
9966
9967         * gtk/gtktextview.c (FOCUS_EDGE_WIDTH): Make focus rectangle less
9968         big
9969
9970         * demos/*.c: Add error handling
9971
9972         * gtk/gtktextbuffer.c: don't modify const iterators
9973
9974         * gtk/gdk-pixbuf-loader.c: Add full error handling here
9975
9976         * gtk/gtkimage.c (gtk_image_set_from_file): ignore errors
9977         on file load
9978
9979         * gtk/gtkiconfactory.c: Update to reflect addition of error
9980         handling to gdk-pixbuf loaders
9981
9982 Wed Oct 18 11:14:05 2000  Owen Taylor  <otaylor@redhat.com>     
9983
9984         * configure.in demos/Makefile.am demos/testgtk/*: Start of work to
9985         move to new modularized testgtk.
9986
9987 2000-10-17  Jonathan Blandford  <jrb@redhat.com>
9988
9989         * gtk/gtktreeview.c: Draw the arrows correctly.
9990
9991         * gtk/gtktreemodel.c: Added user docs.
9992
9993         * gtk/gtk.h: remove gtktreedatalist.h.
9994
9995         * gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
9996         parent when generating my type.
9997
9998         * gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
9999         POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
10000
10001 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
10002
10003         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move
10004         GtkTreeModel from object to interface.
10005
10006 2000-10-16  Havoc Pennington  <hp@redhat.com>
10007
10008         * gtk/gtktreeviewcolumn.c: #include gtklabel.h, fixing 
10009         compilation
10010
10011 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
10012
10013         * gtk/gtktreeselection.c: Add API documentation to all public
10014         functions.
10015
10016         * gtk/gtktreeviewcolumn.c: Added API documentation to all public
10017         functions.
10018
10019 2000-10-15  Jonathan Blandford  <jrb@redhat.com>
10020
10021         * gtk/gtktreeview.c (gtk_tree_view_insert_column): New function
10022         proposed by Guy Harris <gharris@flashcom.net>.  Also, added API
10023         docs to all public functions.
10024
10025         * gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
10026         gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
10027         gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
10028         gtk/gtktreemodel.h, gtk/gtktreeselection.c,
10029         gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
10030         issue.
10031
10032 2000-10-14  Robert Brady  <robert@suse.co.uk>
10033
10034         * configure.in: Added "fa" (Persian) to ALL_LINGUAS.
10035
10036 2000-10-12  Jonathan Blandford  <jrb@redhat.com>
10037
10038         * gtk/gtktreedatalist.[ch] (gtk_tree_data_list_value_to_node): Added
10039         values other then G_TYPE_STRING.
10040         * gtk/gtktreeselection.c: Minor commenting updates.
10041         * gtk/gtktreeview.c: Format updates.
10042
10043 2000-10-09  Tor Lillqvist  <tml@iki.fi>
10044
10045         * README.win32: Update.
10046
10047         * gdk/win32/gdkgeometry-win32.c (gdk_window_clip_changed): Add two
10048         lines that had been deleted by mistake (?).
10049
10050         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Handle
10051         also the case fg==white and bg==black (but still not randomly
10052         coloured cursors). Thanks to Wolfgang Sourdeau.
10053
10054         * gdk/win32/*.c: Silence gcc -Wall.
10055
10056         * gtk/gtk.def: Add missing entry points.
10057
10058         Fixes by Hans Breuer:
10059
10060         * gdk/makefile.msc
10061         * gdk/win32/makefile.msc: Update.
10062
10063         * gdk/testgdk.c: If compiling with debugging (with _DEBUG defined,
10064         some MSVC thing, presumably), cause breakpoint on failures. Add
10065         GDK_NOR case. Call g_log_set_always_fatal.
10066
10067         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_insert): Handle
10068         should be pased by reference.
10069         
10070         * gdk/win32/gdkprivate-win32.h: Correct declaration accordingly.
10071         
10072         * gdk/win32/*.c: Correct calls to gdk_win32_handle_table_insert.
10073
10074         * gdk/win32/gdkevents-win32.c
10075         * gdk/win32/gdkwindow-win32.c: Handle WM_CREATE.
10076
10077         * gdk/win32/gdkgc-win32.c: Fix mixups of drawable and
10078         implementation object.
10079
10080         * gdk/win32/gdkimage-win32.c (gdk_image_get): Handle drawables,
10081         not just windows.
10082         
10083         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize):
10084         Use the wrapper object.
10085         
10086 2000-10-06  Havoc Pennington  <hp@redhat.com>
10087
10088         * Makefile.am (SRC_SUBDIRS): contrib subdir
10089
10090         * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library,
10091         so it can be used in Xlib version
10092
10093         * demos/testpixbuf.c (update_timeout): error checking from 1.0
10094         tree
10095
10096         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync
10097         change from 1.0 tree that returns first frame of animation
10098         if the loaded file is an animation.
10099
10100         * contrib: add new directory to hold stuff that comes with GTK+
10101         but isn't really part of GTK+ (for now, gdk-pixbuf-xlib)
10102         
10103         * configure.in: add contrib/*
10104
10105 2000-10-05  Havoc Pennington  <hp@redhat.com>
10106
10107         * demos/testpixbuf-save.c: add pixbuf save test
10108
10109         * demos/Makefile.am: add testpixbuf-save.c
10110
10111 2000-10-05  Jonathan Blandford  <jrb@redhat.com>
10112
10113         * gtk/gtktree.h (GTK_TREE_SELECTION): Replaced with
10114         GTK_TREE_SELECTION_OLD to prevent conflict with gtktreeselection.c
10115         * gtk/testgtk.c: s/GTK_TREE_SELECTION/GTK_TREE_SELECTION_OLD/
10116         * gtk/gtktreeselection.[ch]: Replaced
10117         "node_selected"/"node_unselected" signal with "selection_changed"
10118         signal.
10119
10120 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
10121
10122         * gtk/gtk{tree,cell}?*.[ch]: Checked in initial draft of the new
10123         tree widget.
10124
10125 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
10126
10127         * gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
10128         drawing.
10129
10130 Wed Oct  4 15:52:15 2000 Owen Taylor  <otaylor@redhat.com>
10131
10132         * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
10133         Move list pointer forwards before removing item from
10134         list. (Crash reported by Salmaso Raffaele)
10135
10136         * gdk/gdkwindow.h: Remove spurious trailing ,
10137
10138         * gdk/Makefile.am (LDFLAGS): You can't do interlibrary
10139         dependencies on uninstalled libraries, sorry folks.
10140
10141 2000-10-04  Havoc Pennington  <hp@redhat.com>
10142
10143         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
10144         gtk/gtkiconfactory.c: Fix copyrights    
10145
10146         * demos/testpixbuf.c: add inline pixbuf test
10147         
10148 Mon Sep 25 15:05:17 2000  Owen Taylor  <otaylor@redhat.com>
10149
10150         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c (gdk_window_iconify):
10151         Add gdk_window_iconify.
10152
10153         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c
10154         (gdk_window_set_geometry_hints): Add win_gravity
10155         to geometry structure.
10156
10157         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
10158         Implement _NET_WM_PING.
10159
10160         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check):
10161         Set _NET_WM_PID on the client leader.
10162
10163         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_name):
10164         Handle UTF-8 better.
10165
10166         * gdk/x11/gdkwindow-x11.c (gdk_window_set_title): Handle
10167         UTF-8 better, set _NET_WM_NAME as well. Only set
10168         icon name if it hasn't previously been explicitely 
10169         set.
10170
10171 2000-10-03  Havoc Pennington  <hp@redhat.com>
10172
10173         * gtk/testtextbuffer.c: clean up trailing whitespace,
10174         add extensive tests for tag toggle iteration.
10175         
10176         * gtk/gtktextiter.c (MAX_LINEAR_SCAN): decrease linear scan 
10177         distance
10178
10179         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
10180         optimize case where the tag root is on level 1
10181         (gtk_text_line_previous_could_contain_tag): attempt to implement
10182         (gtk_text_line_next_could_contain_tag): Abstract out node_compare
10183         functionality
10184
10185         * gtk/gtktextiter.c (gtk_text_iter_backward_to_tag_toggle):
10186         Implement this, though not very efficiently.
10187
10188         * gtk/gtktextiterprivate.h: reformat
10189
10190         * gtk/gtktextiter.c (gtk_text_iter_get_char): return 0 on the end
10191         iterator
10192
10193         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_interactive): Fix
10194         this to properly revalidate the iterators.
10195
10196         * gtk/gtktextview.c (gtk_text_view_delete): fix control-K to work
10197         properly at the end of the line (and therefore on empty lines)
10198
10199         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Gee,
10200         maybe we should return a value...
10201
10202 2000-10-03  Tor Lillqvist  <tml@iki.fi>
10203
10204         * config.h.win32: Guard definition of alloca(). glib.h now handles
10205         that.
10206
10207         * gdk/gdk.def
10208         * gtk/gtk.def: Add new entry points.
10209
10210         Changes just to make GTK+ build without errors on Win32. No hope
10211         of it working in its current state, though...:
10212         
10213         * gdk/win32/gdkselection-win32.c: Remove gcc -Wall warnings.  Add
10214         some functions from the X11 backend, just to make GTK+ build.
10215
10216         * gdk/makefile.mingw.in
10217         * gtk/makefile.mingw.in: Use correct gdk_pixbuf version
10218         number. Add new object files.
10219
10220         * gtk/gtkclipboard.c: Include gdkwin32.h on Win32. Use
10221         GetMessageTime to get timestamp (where on X11 uses
10222         gdk_x11_get_server_time()).
10223
10224 2000-10-02  Havoc Pennington  <hp@pobox.com>
10225
10226         * gtk/gtktextview.c: text_window_* weren't static and should have
10227         been.
10228         Start work on child widgets; not yet complete, syncing to 
10229         office computer.
10230
10231         * gtk/gtktextchild.h: change this to contain a public interface,
10232         starting work on child interfaces.
10233         * gtk/gtktextchildprivate.h: move private interfaces here
10234
10235         * gtk/Makefile.am: update to reflect gtktextchildprivate.h
10236
10237         * gtk/gtktextview.h, gtk/gtktextview.c, gtk/gtktextbuffer.h,
10238         gtk/gtktextbuffer.c, gtk/gtktextiter.h, gtk/gtk/textiter.c, 
10239         gtk/gtktextmark.c: copyright notices
10240
10241         * gtk/gtktextmarkprivate.h: reformat, and put _ in front of
10242         internal functions      
10243
10244         * gtk/gtktextchild.c (_pixbuf_segment_new): put _ in front of
10245         internal function
10246
10247         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
10248         Reformatting    
10249
10250 2000-09-30  Havoc Pennington  <hp@pobox.com>
10251
10252         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Handle
10253         NULL start/end pointers
10254
10255         * gtk/gtktextbuffer.c: Write some docs
10256         (gtk_text_buffer_get_selection_bounds): Allow start/end to be
10257         NULL, so you can just check whether there's a selection.        
10258
10259         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): No need to 
10260         cleanup_line or segments_changed ourselves, it gets done 
10261         in unlink_segment
10262
10263         * gtk/gtktextmark.h:
10264         s/gtk_text_mark_deleted/gtk_text_mark_get_deleted/
10265         
10266         * gtk/gtktextsegment.h: Clean up some indentation and naming mess
10267
10268         * gtk/gtktextmark.c: delete some more old Tk cruft
10269
10270         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_mark): add ref to
10271         mark before removing it, so we can emit MARK_DELETED with a valid
10272         pointer.
10273         (gtk_text_buffer_mark_set): hold ref across signal emission
10274
10275         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): improve
10276         whining about attempts to delete special marks
10277
10278         * gtk/gtktextbuffer.c (_gtk_text_buffer_spew): Prepend with
10279         underscore, since it's internal.
10280
10281         * gtk/gtktextbuffer.h: Remove find_string prototype, this is 
10282         now implemented in terms of iterators in gtktextiter.h
10283
10284         * gtk/gtktextbuffer.c (gtk_text_buffer_set_text): 
10285         New function, destructively sets contents of buffer. Also 
10286         a convenient way to clear the buffer by setting text to ""
10287
10288         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): reformat
10289         multiline string literal
10290
10291         * gtk/testtext.c (text_changed_callback): Redraw line numbers if
10292         text changes.
10293
10294         * gtk/gtktextiter.c (forward_char): Return FALSE if new location 
10295         is not dereferenceable
10296         (gtk_text_iter_forward_lines): fix return value
10297
10298 2000-09-29  Havoc Pennington  <hp@redhat.com>
10299
10300         * gtk/gtktexttag.c (gtk_text_tag_set_priority): fix indentation
10301
10302         * gtk/gtktextview.c: Implement drag thresholding; change functions 
10303         that set border window size to have nicer name
10304         (gtk_text_view_mark_set_handler):  Fix this to have the 
10305         right signature.
10306
10307         * gtk/testtextbuffer.c (fill_buffer): Update with pixbuf changes
10308
10309         * gtk/testtext.c: Update with API changes, put line numbers on 
10310         both sides.
10311         
10312         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): Replace get_pixmap
10313         with this
10314
10315         * gtk/gtktextchild.h, gtk/gtktextchild.c: replace all pixmap with
10316         pixbuf; delete a big block of #if 0 Tk code
10317
10318         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_pixbuf): Replace 
10319         insert_pixmap with insert_pixbuf
10320
10321 2000-09-29  Martin Baulig  <baulig@suse.de>
10322
10323         * gdk-pixbuf.pc.in: Renamed to gdb-pixbuf-2.0.pc.in to avoid
10324         confusion with the GdkPixbuf of the GNOME 1.x platform.
10325
10326 2000-09-29  Havoc Pennington  <hp@pobox.com>
10327
10328         * gtk/gtktextview.c: Implement the side windows.
10329
10330         * gtk/testtext.c: Implement simple line numbering in the 
10331         left side window; seems to make scrolling sloooow. Oops.
10332         Also, cursor blink is for some reason causing redraws
10333         of the line numbers. Should investigate...
10334
10335 2000-09-28  Havoc Pennington  <hp@redhat.com>
10336
10337         * gtk/gtktextview.c: Set up infrastructure to deal with lots of 
10338         scrolling child windows, and draw focus rectangle properly.
10339         
10340         (gtk_text_view_buffer_to_window_coords):
10341         Coordinate transformation to deal with all these freaking windows
10342         and offsets
10343         (gtk_text_view_window_to_buffer_coords): transform the other way
10344
10345         * gtk/testtext.c (create_buffer): Update to match Pango API change
10346
10347         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Go over the
10348         anonymous tags
10349         (foreach_unref): don't emit remove signal from finalize, just
10350         set tag's parent to NULL
10351
10352 2000-09-26  Havoc Pennington  <hp@redhat.com>
10353
10354         * gtk/gtkiconfactory.c (gtk_icon_set_clear): remove
10355         Fix some warnings       
10356
10357 2000-09-26  Havoc Pennington  <hp@redhat.com>
10358
10359         * gtk/Makefile.am (gtk_private_h_sources): Move more text widget
10360         headers into the private header list
10361
10362         * Makefile.am (pkgconfig_DATA): install pkg-config files
10363
10364         * configure.in: add pkg-config files
10365
10366         * gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
10367
10368         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
10369         outstanding icon caches on theme change.
10370
10371         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three 
10372         important types:
10373
10374         (GtkIconSource): Specification for creating a pixbuf 
10375         appropriate for a direction/state/size triplet from 
10376         a source pixbuf or filename
10377
10378         (GtkIconSet): List of GtkIconSource objects that are used to
10379         create the "same" icon (e.g. an OK button icon), and cache for
10380         rendered icons
10381
10382         (GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
10383         up the icon set for a given stock ID.  GTK maintains a stack of
10384         GtkIconFactory to search, and applications or libraries can add
10385         additional icon factories on top of the stack
10386         
10387         * gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse 
10388         the set of GtkIconSource specified for a given stock ID into 
10389         a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the 
10390         RcStyle, under the specified stock ID.
10391
10392         * gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
10393         render_icon used to derive a GdkPixbuf from a GtkIconSource.
10394         This allows people to theme how prelight, insensitive, etc. are
10395         done.
10396
10397         (gtk_style_lookup_icon_set): Look up a stock ID in the list of
10398         icon factories for a style, and return the resulting 
10399         icon set if any.
10400
10401         (gtk_style_render_icon): Render an icon using the render_icon 
10402         method in the GtkStyleClass.
10403
10404         * gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon): 
10405         Use the style for a given widget to look up a stock ID, get the
10406         icon set, and render an icon using the render_icon method 
10407         of the style
10408
10409         * gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
10410         (contains information about a stock item), the built-in stock item
10411         IDs, and functions to add/lookup stock items.
10412
10413         * gtk/stock-icons/*: Stock icons that come with GTK
10414
10415         * gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
10416         a button based on a GtkStockItem
10417         (gtk_button_new_accel): Takes a uline string and accel group, and
10418         installs the accelerator.
10419
10420         * gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
10421         image-display widget.
10422
10423 2000-09-25  Havoc Pennington  <hp@redhat.com>
10424
10425         * gtk/gtktexttypes.c: Remove Latin1 conversion stuff
10426
10427         * gtk/gtktextbtree.c (gtk_text_btree_node_remove_data): 
10428         Fix a bug when removing node data, we didn't properly 
10429         re-splice the linked list after removing the data.
10430
10431         * gtk/gtktextview.c (gtk_text_view_key_press_event): Pass through 
10432         GDK_Tab as literal tab, Ctrl-Tab to tab to focus widget
10433
10434         * gtk/gtktextbuffer.c (selection_received): fix g_convert usage
10435
10436         * gtk/gtktextlayout.c (set_para_values): Set tab array 
10437         for the layout from the GtkTextTag.
10438
10439         * gtk/gtktexttypes.h: delete tab and search cruft, 
10440         remove g_convert() in favor of GLib version
10441
10442         * gtk/gtktexttypes.c: remove tab implementation from here,
10443         move to Pango
10444
10445         * gtk/gtktexttag.h, gtk/gtktexttag.c: Implement 
10446         tab stuff using new PangoTabArray from Pango
10447
10448         * gtk/gtktexttag.c (gtk_text_attributes_fill_from_tags): Remove
10449         unused border_width stuff
10450
10451 Thu Sep 14 12:21:12 2000  Owen Taylor  <otaylor@redhat.com>
10452
10453         * gtk/gtktexttypes.[ch]: Remove g_convert (moved to
10454         glib) and now useless utf_to_latin1() latin1_to_utf()
10455
10456         * gtk/gtktextview.[ch]: Change ::move_insert and
10457         ::delete_text action signals to ::move and ::delete;
10458         create the signals with the right enumeration type,
10459         not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
10460         C-v bindings, change Home, End to move to beginning/end
10461         of line, Add C-Home C-End to move to beginning/end
10462         of buffer. Change ::cut_text to ::cut_clipboard, etc;
10463         combine ::scroll_text into ::move; use new GtkSelectionData
10464         functions to simplify DND text handling.
10465         
10466         * gtk/gtkenums.h gtk/gtktextview.h: Move movement,
10467         deletion enumerations here, rename enumeration values to 
10468         be consistently plural.
10469
10470         * gtk/gtktextbuffer.c: Use new clipboard interfaces
10471         for cut/copy/paste and primary selection.
10472
10473         * gtk/gtktextbuffer.[ch]: Remove excess time and
10474         'interactive' arguments from cut/copy/paste;
10475         rename cut to cut_clipboard, etc; remove
10476         gtk_text_buffer_get_clipboard_contents().
10477
10478         * gtk/gtktextlayout.[ch]: Add 
10479         gtk_text_layout_move_iter_to_line_end() to move the iter to 
10480         line ends.
10481
10482         * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
10483         Functions to set or get a UTF-8 string on the selection
10484         data.
10485
10486         * gtk/gtkclipboard.[ch]: New, simplified selection handling
10487         interfaces.
10488
10489         * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
10490         created widgets - one of these is useless if we don't.
10491
10492         * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
10493         a public function clear all targets registered for the
10494         widget.
10495
10496         * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
10497         Never call gtk_widget_realize() - that was just asking
10498         for bizarre side-effects.
10499
10500         * gtk/gtkselection.c (gtk_selection_owner_set): Call
10501         gdk_selection_owner_set even if the widget is the
10502         same so that we reliably update the timestamp on
10503         the server.
10504
10505         * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a 
10506         gdk_x11_get_server_time() function.
10507         
10508         * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
10509         gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
10510         Add some tricky filtering on serial numbers for
10511         selection clear events to fix up long-standard
10512         race condition FIXME's in gtkselection.c.
10513
10514         * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
10515         routines to convert from utf8 to compound text or
10516         STRING and from a text property to UTF-8.
10517
10518         * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add 
10519         a convenience function gdk_get_current_event_time().
10520
10521         * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
10522         and free selection_data->data properly
10523
10524 Sat Sep  9 10:23:53 2000  Owen Taylor  <otaylor@redhat.com>
10525
10526         * gtk/gtkthemes.c: Remove some unecessary includes.
10527
10528 2000-09-08  Jonathan Blandford  <jrb@redhat.com>
10529
10530         * gtk/gtktextdisplay.c
10531         * gtk/gtktextlayout.c
10532         * gtk/gtktexttag.c
10533         * gtk/gtktexttag.h
10534         * gtk/testtext.c: Change the overstrike property to strikethrough,
10535         to closer match pango.
10536
10537 Fri Sep  8 14:28:00 2000  Owen Taylor  <otaylor@redhat.com>
10538
10539         * gtk/gtktextview.c: Fix up visibility so that focus,
10540         cursor_visible and blink interact properly.  Reenable cursor blink
10541         which had been roughly disabled. Make blink and focus
10542         properly per-view.
10543
10544         * gtk/gtktextlayout.[ch] (gtk_text_layout_set_cursor_visible):
10545         Add a flag for whether to display insertion cursor and
10546         a function to set the flag.
10547
10548         * gtk/gtktextlayout.c (gtk_text_layout_get_line_yrange): Change
10549         get_line_y() to get_line_yrange(), to be a bit more generally
10550         useful.
10551
10552 Thu Sep 07 20:54:33 2000  George Lebl <jirka@5z.com>
10553
10554         * gtk/gtkmenu.c:  in gtk_menu_set_submenu_navigation_region
10555           do stop_navigating_submenu, to clear last timeout properly.
10556           Also in gtk_menu_motion_notify move ignore_enter above
10557           the conditional to make it always happen as suggested by Owen
10558
10559 2000-09-07  Tor Lillqvist  <tml@iki.fi>
10560
10561         * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o
10562
10563         * gdk/win32/gdkwin32.h: Add more definitions missing from the free
10564         w32api headers.
10565
10566         * gdk/win32/gdkprivate-win32.h: Add a couple of missing
10567         declarations.
10568
10569         * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings.
10570         (gdk_win32_get_colormap): A line had been deleted by mistake.
10571
10572         * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too.
10573         (gdk_event_translate): Handle more virtual keycodes to be able to
10574         generate GDK events for Control-comma, Control-period, etc.
10575
10576         * gtk/gtk.def: Add some missing entry points.
10577
10578 Thu Sep  7 11:47:02 2000  Owen Taylor  <otaylor@redhat.com>
10579
10580         * gtk/gtktextbuffer.c gtk/gtkimcontext.c gtk/gtkwidget.c:
10581         Doc comment fixing. (Mostly non-matching parameter names.)
10582
10583         * gtk/gtkcalendar.c gtk/gtklist.c gtk/gtknotebook.c: Modify
10584         comments a little to avoid looking like a doc comment.
10585
10586         * gtk/gtkspinbutton.h (GTK_INPUT_ERROR): Change INPUT_ERROR to
10587         GTK_INPUT_ERROR. (Should the mechanism for erros in spin button
10588         conversions be changed to GError?)
10589
10590         * gtk/gtkcolorsel.c (GTK_CUSTOM_PALETTE_WIDTH/HEIGHT): 
10591         Move private #defines into .c file.
10592
10593         * gtk/gtktexttag.c (gtk_text_tag_class_init): Alphabetize
10594         order of argument addition, remove duplicates.
10595
10596         * gtk/gtkaspectframe.h (struct _GtkAspectFrameClass):
10597         parent class is FrameClass, not BinClass.
10598
10599         * gtk/gtk.h: Add gtkinvisible, which was missing.
10600         (It's occasionalyl useful for client apps, if seldom.)
10601
10602         * gdk/gdktypes.h: Remove obsolete GDK_CORE_POINTER
10603         #define.
10604
10605 Wed Sep  6 09:53:15 2000  Owen Taylor  <otaylor@redhat.com>
10606
10607         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Use X-space
10608         coordinates when creating window, instead of GDK-space
10609         coordinates. (Avoid BadValue on too large windows.)
10610
10611 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
10612
10613         * configure.in (use_mmx_asm): Remove conftest* after use along the
10614         lines of AC_TRY_COMPILE.        
10615         
10616         * gtk/gtkrc.c (gtk_rc_parse_file): Use g_path_get_dirname instead
10617         of g_dirname, which is deprecated.
10618         (gtk_rc_parse_any): Removed calls to
10619         g_scanner_{freeze,thaw}_symbol_table, which are deprecated.
10620
10621         * gtk/gtkbindings.c (binding_entry_new, binding_entry_destroy):
10622         Removed calls to g_hash_table_{freeze,thaw}, as they are
10623         deprecated now.
10624
10625         * gtk/testtext.c (buffer_pretty_name): Use g_path_get_basename
10626         instead of g_basename.
10627         
10628 2000-09-04 Elliot Lee <sopwith@redhat.com>
10629         
10630         * gdk/gdkpixbuf.h: Put text after #endif inside a comment to avoid
10631         ANSI warning.
10632
10633 Sun Sep 03 00:47:08 2000  George Lebl <jirka@5z.com>
10634
10635         * gtk/gtkwidget.h:  Add some documenting comments about 
10636           GTK_CAN_DEFAULT, GTK_HAS_DEFAULT and GTK_RECEIVES_DEFAULT
10637           just as owen said on irc.
10638
10639         * gtk/gtkwindow.c (gtk_window_set_default):  Don't blindly
10640           set HAS_DEFAULT.  Only set it if there isn't another window
10641           holding it (a focus window which RECEIVES_DEFAULT) and only unset
10642           it if the widget is not the focused window with RECEIVES_DEFAULT.
10643           This fixes weird double default bugs in dialogs which has things
10644           call gtk_window_set_default at times.
10645
10646 Fri Sep  1 22:39:07 2000  Owen Taylor  <otaylor@redhat.com>
10647
10648         * gtk/gtkmenu.[ch] TODO.xml: Apply patch from
10649         Nils Barth and David Santiago to improve submenu
10650         navigation. The patch does this by creating a triangular
10651         region from the point where the pointer leaves the
10652         menu to the submenu.  While the pointer is in
10653         that region and a timeout has not expired, events 
10654         that would cause the active submenu to change are
10655         ignored.
10656
10657 Fri Sep  1 15:34:46 2000  Owen Taylor  <otaylor@redhat.com>
10658
10659         * gdk/x11/gdkwindow-x11.c (gdk_window_move): Fix bug where
10660         moving a toplevel window immediately after sizing it would
10661         result in it being sized back to the old size since 
10662         impl->width, impl->height aren't updated until we hear
10663         back from the server. There is still a (longstanding) bug
10664         here that gdk_window_get_size() will give the wrong size
10665         until we do hear back.
10666
10667 2000-08-31  Havoc Pennington  <hp@redhat.com>
10668
10669         * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, 
10670         gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, 
10671         gtk/gtktexttagprivate.h, gtk/gtktextview.c:
10672         Rename GtkTextStyleValues to GtkTextAttributes
10673
10674 2000-08-31  Havoc Pennington  <hp@pobox.com>
10675
10676         * gtk/gtktextbtree.c (GtkTextBTree): cache end line, 
10677         for rapid testing whether an iterator is the end iterator
10678         (gtk_text_btree_new): init end line cache
10679         (gtk_text_line_is_last): use fast cached line to 
10680         see if we're the last line.
10681         (get_last_line): use cached line here too, should 
10682         speed up some random unrelated code.
10683         
10684 2000-08-30  Havoc Pennington  <hp@pobox.com>
10685
10686         * gtk/gtkmarshal.list: Add marshallers for changed GtkTextBuffer
10687         signals.
10688
10689         * gtk/gtktextbuffer.h: Add "interactive" arg to insert_text and
10690         delete_text signals. This allows the signals to be used for
10691         implementing undo.
10692
10693         * gtk/gtktextbuffer.c: Change signal handler signatures; 
10694         provide "interactive" argument when emitting insert_text or
10695         delete_text signal.
10696         
10697 2000-08-30  Havoc Pennington  <hp@pobox.com>
10698
10699         * gtk/gtktextbuffer.c: Docs
10700
10701 Fri Aug 25 12:16:15 2000  Owen Taylor  <otaylor@redhat.com>
10702
10703         * gdk/x11/gdkimage-x11.c: remove GDK_IMAGE_SHARED_PIXMAP
10704         from switch statements, since Tor removed the enumeration
10705         value.
10706         
10707         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
10708         s/GDK_IS_WINDOW/GDK_IS_DRAWABLE/.
10709
10710 2000-08-29 Elliot Lee <sopwith@redhat.com>
10711         * */*.h: Use G_GNUC_CONST.
10712
10713 2000-08-27  Havoc Pennington  <hp@pobox.com>
10714
10715         * gtk/gtktextiter.c, gtk/gtktextiter.h: wrote lots of API docs,
10716         minor indentation fixes, inserted some FIXME about stuff I
10717         realized was broken while documenting it.
10718         (gtk_text_iter_get_pixmap): allow out params to be NULL, following
10719         GTK convention  
10720
10721 Tue Aug 22 12:33:24 2000  Owen Taylor  <otaylor@redhat.com>
10722
10723         * gtk/testgtk.c (create_styles): Fix double free of
10724         font desc.
10725
10726 Mon Aug 21 22:39:18 2000  Owen Taylor  <otaylor@redhat.com>
10727
10728         * gtk/gtkwidget.[ch]: Add gtk_widget_modify_{fg,bg,text,base,font}.
10729         
10730         * gtk/testgtk.c (create_styles): Add a test for modifying
10731         the style through gtk_widget_modify_*.
10732
10733         * gtk/gtkwidget.c (gtk_widget_get_modifier_style): Add
10734         a function to get the current modifier style.
10735
10736         * gtk/gtkwidget.c (gtk_widget_modify_style): Make a copy
10737         of the passed in GtkRcStyle instead of ref'ing it.
10738
10739         * gtk/gtkrc.[ch]: Add gtk_rc_style_copy().
10740
10741 2000-08-20  Tor Lillqvist  <tml@iki.fi>
10742
10743         * gdk/gdkimage.h
10744         * gdk/win32/gdkimage-win32.c: No need any longer on Win32 for the
10745         shared memory image+pixmap GdkImage type, or
10746         gdk_image_bitmap_new(). They were used in the gdk_imlib port, but
10747         I am dropping that.
10748
10749         * gtk/gtkmain.h: On Win32, use a #define to map gtk_init() to
10750         actually call gtk_init_abi_check(), passing also
10751         sizeof(GtkWindow). Ditto for gtk_init_check(). 
10752
10753         * gtk/gtk.def
10754         * gtk/gtkmain.c: (gtk_init_abi_check, gtk_init_check_abi_check):
10755         New functions, used to check that the GTK+-using code has been
10756         compiled using the correct compiler and switches. In particular,
10757         with gcc one has to use the -fnative-struct switch as GTK+ is
10758         compiled with that.
10759
10760 Fri Aug 18 17:27:46 2000  Owen Taylor  <otaylor@redhat.com>
10761
10762         * gtk/gtkclist.c (gtk_clist_merge): Don't leave dangling
10763         ->prev fields when merging lists. (Found simultaneously
10764         by Pawel Salek and Jakub Jelinek)
10765
10766 2000-08-12  Tor Lillqvist  <tml@iki.fi>
10767
10768         * gdk/gdk.def
10769         * gtk/gtk.def: Add missing entries.
10770
10771         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Use
10772         OUT_TT_ONLY_PRECIS, try to get a TrueType font.
10773
10774         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): New
10775         function. Dummy implementation at this point.
10776
10777         * gtk/makefile.mingw.in: Fix typo. Add testtext and testtextbuffer
10778         rules. Undefine GTK_COMPILATION when compiling the test programs.
10779         
10780         * gtk/gtkdebug.h: Mark gtk_debug_flags for export/import.
10781
10782 2000-08-11  Tor Lillqvist  <tml@iki.fi>
10783
10784         * gtk/gtkfilesel.c: Add more calls to g_filename_{to,from}_utf8()
10785         to convert back and forth from UTF-8 and the "system" (or "current
10786         locale") charset when necessary. Indentation/spacing cleanup.
10787
10788 2000-08-10  Havoc Pennington  <hp@redhat.com>
10789
10790         * Makefile.am (snapshot): Change the format of the snapshot
10791         version to match glib
10792
10793         * gdk/win32/Makefile.am (EXTRA_DIST): remove gdkinputprivate.h
10794         from EXTRA_DIST since it doesn't seem to exist
10795
10796 2000-08-10  Tor Lillqvist  <tml@iki.fi>
10797
10798         * gtk/gtkfilesel.c (open_new_dir): Use the "system codepage"
10799         version of the directory name (not the UTF-8 one) when building
10800         the path name to stat().
10801
10802 2000-08-03  Elliot Lee  <sopwith@redhat.com>
10803
10804         * gdk/gdkpango.c (gdk_draw_layout_line): Don't shape runs with a
10805         PANGO_ATTR_SHAPE set.
10806
10807 Thu Aug  3 09:17:06 2000  Owen Taylor  <otaylor@redhat.com>
10808
10809         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Applied patch from
10810         Peter Osterlund to simplify the code while keeping the
10811         functionality the same.
10812
10813 Wed Aug  2 14:57:38 2000  Owen Taylor  <otaylor@redhat.com>
10814
10815         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Move
10816         is_viewable() test further inside the function, since removing the 
10817         window from the redraw list without clearing ->update_area
10818         was also very broken.
10819
10820 2000-08-02  Tor Lillqvist  <tml@iki.fi>
10821
10822         * configure.in: Check for <unistd.h>.
10823
10824 2000-08-01  Martin Baulig  <baulig@suse.de>
10825
10826         * gtk/gtkmain.c (gtk_init_check): Use g_message() and not g_warning()
10827         to display the message that this is a development version of GTK+.
10828
10829 Mon Jul 31 18:37:36 2000  Owen Taylor  <otaylor@redhat.com>
10830
10831         * gtk/gtkentry.c (entry_adjust_scroll): Fix problem where computation
10832         was depending on widget->allocation instead of the width of text_area,
10833         which was incorrect for subclasses like GtkSpinButton.
10834
10835         * gdk/gdkpango.c (gdk_draw_layout): Fix a couple of typos
10836         with width == 1 tests that should be width == -1.
10837
10838 Mon Jul 31 16:45:48 2000  Owen Taylor  <otaylor@redhat.com>
10839
10840         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Replace broken, 
10841         (broken, Elliot, every single window blank on X) custom code with call
10842         to gdk_window_is_viewable() which a) prevents code duplicate and
10843         b) works. 
10844
10845 2000-07-31  Elliot Lee  <sopwith@redhat.com>
10846
10847         * gtk/gtkcolorsel.c: We really do need to include gdkfb.h in order
10848         to get the GDK_PARENT_ROOT() macro to work.
10849         * gtk/gtkmarshal.list: Add NONE:STRING,POINTER
10850         * gdk/gdkwindow.c: Don't send expose events, or invalidate pieces
10851         of, windows that aren't shown.
10852         * gdk/linux-fb: Redraw-when-menu-hidden solved, plus a bunch of
10853         pointer grab stuff.
10854
10855 Mon Jul 31 13:53:16 BST 2000  Tony Gale <gale@gtk.org>
10856
10857         * docs/gtkfaq.sgml docs/gtk-faq.sgml:
10858           s/gtk_main_iteration/g_main_iteration/
10859
10860           Did this already in change:
10861                 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
10862           don't know how it got reverted.
10863
10864 2000-07-31  Stanislav Brabec  <utx@penguin.cz>
10865
10866         * gdk/gdk.c: #ifdef G_ENABLE_DEBUG around gdk_arg_debug_cb and
10867         gdk_arg_no_debug_cb to fix compilation problem with --disable-debug.
10868
10869         * gdk/Makefile.am: Link gdk against actually compiled gdk_pixbuf-1.3,
10870         not gdk_pixbuf.
10871
10872 2000-07-30  Pablo Saratxaga <pablo@mandrakesoft.com>
10873
10874         * configure.in,po/{sp,sr}.po: Added Serbian files
10875
10876 2000-07-30  Tor Lillqvist  <tml@iki.fi>
10877
10878         * gdk/Makefile.am: Add makefile.mingw.in to EXTRA_DIST.
10879
10880         * gdk/win32/gdkevents-win32.c (gdk_events_init, gdk_events_queue):
10881         Remove the g_pipe_readable_msg stuff. Not needed with new GLib
10882         GIOChannel implementation.
10883
10884         * gdk/win32/gdkinput.c
10885         * gdk/win32/gdkpango-win32.c: Update license name here, too.
10886
10887         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_lookup): Fix
10888         definition to match prototype.
10889
10890         * gtk/makefile.mingw.in: Add libiconv CFLAGS and LIBS.
10891
10892 2000-07-27  Elliot Lee  <sopwith@redhat.com>
10893
10894         * gtk/gdk-pixbuf-loader.[ch]: Add gdk_pixbuf_loader_new_with_type
10895         function, to allow handling image formats that cannot be detected
10896         by looking at content alone.
10897
10898 Thu Jul 27 13:13:21 BST 2000  Tony Gale <gale@gtk.org>
10899
10900         * docs/tutorial/*.gif *.jpg *.eps
10901           Update these to the same look-n-feel.
10902           Why does including images in DocBook suck so badly?
10903
10904 Thu Jul 27 05:06:29 2000  Tim Janik  <timj@gtk.org>
10905
10906         * gtk/gtktable.c: applied patch from Phil Thompson
10907         <phil@river-bank.demon.co.uk> that enables space settings for
10908         the last row/columns as well.
10909
10910 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
10911
10912         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
10913         updates the license headers to the GNU Lesser General Public License,
10914         as well as updating the copyright year to 2000.
10915
10916 2000-07-26  Robert Brady  <rwb197@zepler.org>
10917
10918         * configure.in: Cause GETTEXT_PACKAGE to be consistent in config.h
10919           and po/Makefile, was installing and looking for them under gtk20
10920           and gtk2 respectively.
10921
10922 2000-07-25  Havoc Pennington  <hp@redhat.com>
10923
10924         * gtk/testtext.c: Comment out some stuff that depends on the rest
10925         of my patches.
10926
10927 2000-07-25  Havoc Pennington  <hp@redhat.com>
10928
10929         * gtk/gtkmarshal.list: Add NONE:POINTER,POINTER,INT for the text
10930         buffer
10931
10932 2000-07-25  Havoc Pennington  <hp@redhat.com>
10933
10934         * gtk/testtext.c, gtk/testtextbuffer.c: update to reflect text
10935         widget changes.
10936
10937         * gtk/gtktextview.h: To be consistent with usage of "line"
10938         throughout the API to mean "newline-terminated thingy", change
10939         MOVEMENT_LINE to be MOVEMENT_WRAPPED_LINE, and MOVEMENT_PARAGRAPH
10940         to MOVEMENT_LINE.
10941
10942         (GtkTextView): Add flags for default editability, and whether to
10943         show the cursor. Add functions to get/set that. Add 
10944
10945         (gtk_text_view_get_iter_location): new function
10946
10947         * gtk/gtktexttypes.h: Move GtkTextLine typedef from here to
10948         gtktextlayout.h
10949         (g_convert): Add g_convert temporarily, will go in glib in a bit
10950         
10951         * gtk/gtktexttagtable.h: include gtktexttag.h, and define
10952         GtkTextTagTableForeach instead of brokenly using GHFunc.
10953         Change gtk_text_tag_table_foreach() so it doesn't use GHFunc.
10954
10955         * gtk/gtktexttagprivate.h: Remove GtkTextStyleValues from here,
10956         moved to public header.
10957
10958         * gtk/gtktexttag.h: Rename the "elide" attribute of tags to
10959         "invisible", since "elide" was a bad name.
10960         (gtk_text_tag_get_priority): Added
10961
10962         (GtkTextStyleValues): put this in public header, along with
10963         functions to use it.
10964
10965         * gtk/gtktextmarkprivate.h: Include more headers, since we no
10966         longer include gtktextbtree.h.
10967
10968         * gtk/gtktextmark.h: Add gtk_text_mark_ref, gtk_text_mark_unref,
10969         gtk_text_mark_deleted
10970
10971         * gtk/gtktextlayout.h: Don't include the "really private" headers,
10972         only buffer/iter. Forward declare GtkTextLIne and GtkTextLineData
10973         to make this possible. Now we only need to install
10974         gtktextlayout.h, not gtktextbtree.h and gtktext*private.h.
10975         (However the Makefile.am isn't changed yet because of the
10976         logistics of merging gtk-hp-patches piecemeal)
10977
10978         * gtk/gtktextiterprivate.h: include btree header, so it compiles;
10979         rename gtk_text_iter_get_line to gtk_text_iter_get_text_line since
10980         gtk_text_iter_get_line is now used in the public API for a
10981         different purpose.
10982
10983         * gtk/gtktextiter.h: Clean up function names to be more
10984         consistent. Always call char offset "offset" and byte index
10985         "index". A "line" is always a line number. 
10986
10987         (gtk_text_iter_is_last): new function, more efficient than 
10988         the existing way to check
10989         (gtk_text_iter_is_first): new function, also more efficient
10990
10991         (gtk_text_iter_up_lines, gtk_text_iter_down_lines): Remove these
10992
10993         (gtk_text_iter_next_char, gtk_text_iter_prev_char): Renamed from 
10994         gtk_text_iter_forward_char, etc.
10995
10996         (gtk_text_iter_forward_to_tag_toggle): Renamed from
10997         forward_find_tag_toggle, since this isn't a linear search
10998
10999         (GtkTextCharPredicate): rename from GtkTextViewCharPredicate
11000
11001         (gtk_text_iter_forward_search, gtk_text_iter_backward_search): 
11002         New functions, search for a buffer substring.
11003
11004         * gtk/gtktextbuffer.h: Add fields to store whether a paste is
11005         interactive and default editable (since we need to store that info
11006         until we receive the selection data).
11007
11008         Remove all the _at_char and at_line etc. versions of functions;
11009         only have iterator versions.
11010
11011         Add _interactive() versions of functions, that consider the
11012         editability of text. (FIXME add interactive flag to the 
11013         insert/delete signals per Darin's suggestion)
11014
11015         (gtk_text_buffer_get_tag_table): new function, demand-creates the
11016         tag table if necessary
11017
11018         Remove declaration of gtk_text_buffer_get_iter_from_string
11019
11020         (_gtk_text_buffer_get_btree): private/internal function, added.
11021         
11022
11023         * gtk/gtktextbtree.h: Remove forward decl of GtkTextLineData.
11024         (gtk_text_line_is_last): new function
11025
11026 2000-07-25  Havoc Pennington  <hp@redhat.com>
11027
11028         * gtk/gtkprogressbar.h: Implement new sane, 5-function API for
11029         using GtkProgressBar. See Changes-2.0.txt for details.
11030
11031         * gtk/gtkprogressbar.c: Add object arguments "fraction" and
11032         "pulse_step" which are the equivalent of
11033         gtk_progress_bar_set_pulse_step and gtk_progress_bar_set_fraction.
11034         Implement new API.
11035         
11036         * gtk/gtkprogress.h (struct _GtkProgress): Add a field
11037         (use_text_format) to mark whether text set on the progress bar is
11038         a format string. Deprecate entire GtkProgress interface.
11039
11040         * gtk/gtkprogress.c (gtk_progress_init): init use_text_format to TRUE
11041         (gtk_progress_build_string): make this a no-op if use_text_format
11042         is FALSE
11043
11044         * docs/Changes-2.0.txt: Describe progress bar changes.
11045
11046 2000-07-25  Tor Lillqvist  <tml@iki.fi>
11047
11048         * Makefile.am: Include the build directory.
11049
11050         * configure.in: Generate build/Makefile, build/win32/Makefile,
11051         gdk/, gdk/win32/, and gtk/makefile.mingw.
11052
11053         * config.h.win32: Add USE_GMODULE and USE_MMX for gdk-pixbuf.
11054         Add GETTEXT_PACKAGE.
11055         
11056         * gdk/gdk.def
11057         * gtk/gtk.def: Updates.
11058
11059         * gdk/gdkfont.h
11060         * gdk/gdkpixmap.h: Remove temporary Win32-only functions, we don't
11061         need them any longer.
11062
11063         * gdk/gdkinput.h: Mark gdk_core_pointer for export/import.
11064
11065         * gdk/makefile.mingw.in: Define GDK_COMPILATION. Link with
11066         PANGOWIN32_LIBS and gdk_pixbuf.
11067
11068         * gdk/win32: Compiles, but no doubt doesn't work at all.
11069
11070         * gdk/win32/makefile.mingw.in: Define GDK_COMPILATION. 
11071
11072         * gdk/win32/gdkinput.c: New file, temporarily.
11073         
11074         * gdk/win32/gdkinput-win32.h: New file
11075
11076         * gdk/win32/gdkinputprivate.h: Remove.
11077
11078         * gdk/win32/gdkpango-win32.c: New file.
11079
11080         * gtk/makefile.mingw.in: New file
11081
11082         * gtk/makefile.cygwin: Removed
11083         
11084         * gtk/Makefile.am: Update accordingly.
11085
11086         * gtk/gtkrc.[ch] (gtk_win32_get_installation_directory): Renamed and
11087         made externally visible.
11088
11089         * gtk/gtkmain.c: Use it.
11090         
11091         * gtk/gtktextdisplay.c: No need to include pangox.h, pango.h
11092         is enough.
11093
11094         * gtk/gtktypeutils.c: Mark glib_debug_objects for import.
11095
11096 2000-07-24 Elliot Lee <sopwith@redhat.com>
11097         * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
11098         individual backends already.
11099         * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
11100         again. Yes, there really is a good reason for this, if you are using the gdkregion
11101         internals, and if you're not, why do you care?
11102         * gdk/gdkwindow.c: Fix inverted condition
11103         * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
11104         * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
11105         * gtk/gtkrange.c: Redraw trough when moving.
11106         * gtk/gtktypeutils.c: Fix warning by adding const cast.
11107         * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
11108
11109 2000-07-23  Tor Lillqvist  <tml@iki.fi>
11110
11111         * configure.in: Check for mkstemp and sigsetjmp. Output
11112         gdk-pixbuf/makefile.mingw and gdk-pixbuf/pixops/makefile.mingw.
11113
11114         More work on GDK for Win32. Still in an intermediate state.
11115
11116         * gdk/makefile.cygwin
11117         * gdk/win32/makefile.cygwin: Removed.
11118         
11119         * gdk/makefile.mingw.in
11120         * gdk/win32/makefile.mingw.in: New files.
11121
11122         * gdk/Makefile.am
11123         * gdk/win32/Makefile.am: Generate and distribute them.
11124
11125         * gdk/win32/gdkwindow-win32.h
11126         * gdk/win32/gdkdrawable-win32.h
11127         * gdk/win32/gdkpixmap-win32.h: New files.
11128
11129         * gdk/win32/gdkcolor-win32.c
11130         * gdk/win32/gdkcursor-win32.c
11131         * gdk/win32/gdkdrawable-win32.c
11132         * gdk/win32/gdkgc-win32.c
11133         * gdk/win32/gdkimage-win32.c
11134         * gdk/win32/gdkprivate-win32.h
11135         * gdk/win32/gdkwin32.h: Update data structures. Cosmetics:
11136         Rename fields and variables called xcursor, xid, etc (these names
11137         were leftovers from the X11 backend) to hcursor, hwnd, hbitmap etc.
11138
11139 Sat Jul 22 17:41:26 2000  Owen Taylor  <otaylor@redhat.com>
11140
11141         * gtk/gtkentry.[ch]: Fix some problems with vertical
11142         alignment.
11143
11144         * gtk/gtkentry.c (gtk_entry_find_position): Fix 
11145         char/byte confusion.
11146
11147 Sat Jul 22 11:16:05 2000  Owen Taylor  <otaylor@redhat.com>
11148
11149         * gtk/gtktextview.c (changed_handler): Fix bug where
11150         redraw wasn't being done properly when height of
11151         dirty region changed.
11152
11153         * demos/Makefile.am: Remove various references to
11154         -lgmodule
11155
11156 Fri Jul 21 15:28:13 2000  Owen Taylor  <otaylor@redhat.com>
11157
11158         * gtk/gtktextlayout.[ch], gtk/gtktextdisplay.c: Use new
11159         PangoAttrShape to reserve space for pixmaps, add 
11160         GSList *pixmaps to GtkTextLineDisplay, draw the pixmaps
11161         in the display functions.
11162         
11163         * gtk/testgtk.c (create_layout): Set some more exotic
11164         scrolled window options
11165
11166         * gtk/gtkscrolledwindow.[ch] (gtk_scrolled_window_set_shadow_type):
11167         Add function to set the shadow type of a window, to allow
11168         putting a shadow around widgets such as GtkLayout or GnomeCanvas
11169         which don't draw their own frame.
11170
11171 Fri Jul 21 16:34:42 BST 2000  Tony Gale <gale@gtk.org>
11172
11173         * docs/tutorial/package-db-tutorial.sh: New file for
11174           packaging DocBook format tutorial
11175
11176 Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>
11177
11178         * docs/tutorial/gtk-tut.sgml: Minor updates
11179
11180         * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
11181
11182 2000-07-19  Tor Lillqvist  <tml@iki.fi>
11183
11184         * gtk/gtksignal.c: Fix C++ comment.
11185
11186         * gtk/gtkimmulticontext.c
11187         * gtk/gtktextbtree.c: Remove gccisms: Don't use __FUNCTION__,
11188         don't return value from void functions.
11189
11190         * gtk/gtk.def: Add gtk_rc_style_unref.
11191
11192 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
11193
11194         * gdk-pixbuf/gdk-pixbuf.h, gtk/gtkhsv.h, gtk/gtktextbtree.h,
11195         gtk/gtktextbuffer.h, gtk/gtktextchild.h, gtk/gtktextdisplay.h,
11196         gtk/gtktextiter.h, gtk/gtktextiterprivate.h, gtk/gtktextlayout.h,
11197         gtk/gtktextmarkprivate.h, gtk/gtktextsegment.h, gtk/gtktexttag.h,
11198         gtk/gtktexttagtable.h, gtk/gtktexttypes.h, gtk/gtktextview.h,
11199         gtk/gtktypeutils.h: Include files outside of the extern "C"
11200         block. Makes some C++ compiler happy. Reported by Denis Vakatov
11201         <vakatov@peony.nlm.nih.gov>.
11202
11203 Wed Jul 19 14:07:57 BST 2000  Tony Gale <gale@gtk.org>
11204
11205         * docs/tutorial/gtk-tut.sgml: Yet more clean ups.
11206           Completes first pass. Hurrah!
11207
11208 Tue Jul 18 17:17:55 BST 2000  Tony Gale <gale@gtk.org>
11209
11210         * docs/tutorial/gtk-tut.sgml: More clean ups.
11211
11212 Mon Jul 17 18:52:38 2000  Owen Taylor  <otaylor@redhat.com>
11213
11214         * gtk/gtkentry.c (gtk_entry_draw_text): Restore code to
11215         paint the background of the text area which was accidentally
11216         removed at some point.
11217
11218         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch] gtk/gtkthemes.[ch]: 
11219           
11220          - Move most of the functionality from the theme vtable
11221            into GtkRcStyleClass and GtkStyleClass. The moved
11222            vtable functions were changed a bit in the move to
11223            work better in their new home.
11224
11225          - Get rid of the engine and engine_data fields from
11226            GtkRcStyle and GtkStyle; instead the theme
11227            engine derives theme-specific subclasses of GtkRcStyle
11228            and GtkStyle
11229
11230          - Add extra dlsym() found entry point to themes,
11231            theme_create_rc_style().
11232
11233         * gtk/gtkstyle.c: Copy xthickness, ythickness fields
11234         in gtk_style_real_copy.
11235
11236         * gtk/themes.[ch]: add a function gtk_theme_engine_register_type()
11237         to register a type associated with an engine. (The engine
11238         won't be unloaded as there is an instance of the type.)
11239
11240
11241 Mon Jul 17 18:19:06 BST 2000  Tony Gale <gale@gtk.org>
11242
11243         * docs/tutorial/gtk-tut.sgml: Clean ups.
11244
11245 Mon Jul 17 13:59:29 BST 2000  Tony Gale <gale@gtk.org>
11246
11247         * docs/tutorial/gtk-tut.sgml: Initial DocBook version. Lots
11248           of cleaning up to do.
11249
11250 2000-07-15  Tor Lillqvist  <tml@iki.fi>
11251
11252         * gdk/testgdk.c: New file, quick hack to test backends for
11253         pixel-by-pixel correctness of the most simple graphic operations.
11254
11255 Fri Jul 14 20:30:25 2000  Owen Taylor  <otaylor@redhat.com>
11256
11257         * Really release 1.3.1
11258         
11259         * gtk-config-2.0.in gtk-2.0.m4: Fix up to correspond to new
11260         include structure.
11261
11262 Fri Jul 14 18:40:39 2000  Owen Taylor  <otaylor@redhat.com>
11263
11264         * Released 1.3.1
11265
11266 Fri Jul 14 16:21:26 2000  Owen Taylor  <otaylor@redhat.com>
11267
11268         * gtk/gtktextlayout.c: use FALSE for size_only most
11269         of the time when calling gtk_text_layout_get_line_display()
11270         to avoid causing double reshapes when a redraw follows
11271         immediately after.
11272
11273 Tue Jul 11 11:13:40 2000  Owen Taylor  <otaylor@redhat.com>
11274
11275         * gtk/gtkrange.c (gtk_range_default_[hv]slider_update): Invalidate
11276         appropriate region and gdk_window_process_updates() so trough
11277         updating doesn't lag behind the window being scrolled.
11278
11279         * gdk/gdkgc.c: Make parent_class pointer static.
11280          
11281 Sun Jul  9 21:31:23 2000  Owen Taylor  <otaylor@redhat.com>
11282
11283         * gdk/gdk-pixbuf.c gtk/gdk-pixbuf-loader.c gtk/gtktextview.c:
11284         include <string.h>.
11285          
11286         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Fix
11287         cut-and-paste error in computing memory offset for 4 channels.
11288
11289 Fri Jul 14 14:05:02 2000  Owen Taylor  <otaylor@redhat.com>
11290
11291         * gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string): Remove
11292         gtk_rc_append_default_pixmap_path(), since it wasn't
11293         adding an interesting path and we don't have a meaningful
11294         default for this value.
11295
11296 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
11297
11298         * configure.in Makefile.am gtk-config.m4 gtk.m4: Move
11299         gtk-config to gtk-config-2.0 move gtk_.m4 to
11300         gtk-2.0.m4
11301
11302         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
11303         gdk/Makefile.am demos/Makefile.am: Change 
11304         library names to libgtk-1.3.la, etc, so that we
11305         can distinguish gtk-1.2 and gtk-2.0 on the linkline.
11306
11307         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
11308         gdk/Makefile.am gdk/x11/Makfile.am
11309         Move include files into /usr/include/gtk-2.0, 
11310         /usr/lib/gtk-2.0/include/
11311          
11312         * autogen.sh acconfig.h configure.in gtk/gtkmain.c
11313         gtk/gtkintl.h: Change package for gettext from 
11314         gtk+ to gtk20. Put hack in autogen.sh to modify
11315         po/Makefile.in.in after gettextize to make this
11316         possible.
11317
11318         * gtk+.spec: Some updates, not tested.
11319
11320         * gdk-pixbuf/Makefile.am: Move loaders into
11321         $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders.
11322
11323         * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations
11324         $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir
11325         to THEMENAME/gtk-2.0/. Move engine directory  to
11326         $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
11327         
11328 2000-07-12  Tor Lillqvist  <tml@iki.fi>
11329
11330         Win32 changes, still doesn't build though.
11331
11332         * gdk/makefile.cygwin
11333         * gdk/win32/makefile.cygwin
11334         * gtk/makefile.cygwin: Updates.
11335
11336         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Use the same
11337         default values for fg and bg pixel as X11 does (0 and 1), not
11338         black and white. Use PS_ENDCAP_FLAT and PS_JOIN_MITER by default.
11339         Use 0 for pen width by default (treated as 1 anyway later, but for
11340         apps that might check the value in the GdkGC).
11341         (gdk_win32_hdc_get, gdk_win32_hdc_release): New functions, public
11342         interface to gdk_gc_predraw and _postdraw.
11343
11344         * gdk/win32/gdkwin32.h
11345         * gdk/gdk.def: Add gdk_win32_hdc_{get,release}.
11346
11347         * gdk/win32/gdkcolor-win32.c (gdk_colormap_alloc1): Remove
11348         extraneous semicolon.
11349
11350         * gdk/win32/gdkdrawable-win32.c: Check also for pen_width == 0.
11351
11352         * gdk/win32/gdkimage-win32.c (gdk_image_new): Use the visual's depth,
11353         not the Win32 bitspixel value.
11354
11355         * gdk/win32/gdkcc-win32.c:
11356         * gdk/win32/gdkcolor-win32.c 
11357         * gdk/win32/gdkprivate-win32.h
11358         * gdk/win32/gdkwin32.h: Changes to make compilable, with new
11359         GDK object structure.
11360
11361 Tue Jul 11 20:59:35 2000  Tim Janik  <timj@gtk.org>
11362
11363         * docs/tutorial/gtk_tut_12.es.sgml (name): 
11364         * docs/tutorial/gtk_tut_it.sgml (name): 
11365         * docs/tutorial/gtk_tut_fr.sgml (name): 
11366         * docs/tutorial/gtk_tut.sgml (name): scratched notion of completely
11367         outdated email adress: s/timj@psynet.net/timj@gtk.org/.
11368
11369 Tue Jul 11 13:10:57 BST 2000  Tony Gale <gale@gtk.org>
11370
11371         * docs/faq/gtk-faq.sgml: Cleanup indenting and various
11372           small changes.
11373
11374 Tue Jul 11 08:04:58 2000  Tim Janik  <timj@gtk.org>
11375
11376         * gtk/gtktree.c (gtk_real_tree_select_child): eek, i've never seen
11377         a bug here, never been here and never fixed anything ;(
11378         (don't segfault if tree->root_tree is NULL, which happens prior
11379         to widget realization, but puke instead).
11380
11381 Tue Jul 11 06:38:42 2000  Tim Janik  <timj@gtk.org>
11382
11383         * gtk/gtkrc.h: add xthickness and ythickness to GtkRcStyle and
11384         add the necessary tokens.
11385
11386         * gtk/gtkrc.c (gtk_rc_style_init): properly initiality the rc style.
11387         (gtk_rc_style_to_style): copy thicknesses.
11388         (gtk_rc_init_style): apply thicknesses.
11389         (gtk_rc_parse_style): parse xthickness and ythickness.
11390
11391         * gdk/x11/gdkdnd-x11.c: silence compiler in switch() statements.
11392
11393         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): 
11394         (gdk_window_new): 
11395         (_gdk_windowing_window_init): 
11396         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new): 
11397         (gdk_pixmap_create_from_data): 
11398         (gdk_bitmap_create_from_data): 
11399         (gdk_pixmap_new): 
11400         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
11401         (gdk_image_new): 
11402         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): 
11403         * gdk/x11/gdkdnd-x11.c (gdk_drag_context_new): 
11404         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get):
11405         (gdk_colormap_get_system): 
11406         (gdk_colormap_new): 
11407         * gdk/gdkwindow.c (gdk_window_init): 
11408         * gtk/gtkstyle.c (gtk_style_new):
11409         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
11410         * gdk/gdkpixmap.c (gdk_pixmap_init): 
11411         * gtk/gtkrc.c (gtk_rc_style_new):
11412         use g_object_new() instead of g_type_create_instance() which
11413         is a private function for fundamental type implementations.
11414
11415 Thu Jul  6 16:12:14 2000  Owen Taylor  <otaylor@redhat.com>
11416
11417         * configure.in: Add check for db2html
11418
11419 Thu Jul  6 14:53:05 2000  Owen Taylor  <otaylor@redhat.com>
11420
11421         * gtk/gtktypeutils.c (gtk_type_init): Add a temporary 
11422         hack to set glib_debug_objects based on gtk_debug_flags.
11423
11424 Thu Jul  6 14:12:13 2000  Owen Taylor  <otaylor@redhat.com>
11425
11426         * INSTALL.in: Update the Prerequisites section.
11427
11428         * Makefile.am demos/Makefile.am docs/Makefile.am
11429         docs/tutorial/Makefile.am gdk/x11/Makefile.am
11430         gdk/linux-fb/Makefile.am: Dist fixes
11431
11432 Thu Jul  6 12:26:03 2000  Owen Taylor  <otaylor@redhat.com>
11433
11434         * NEWS: 10,000 foot view of 1.3.1 changes.
11435
11436 Thu Jul  6 11:54:03 2000  Owen Taylor  <otaylor@redhat.com>
11437
11438         * gdk/gdk.h gdk/gdktypes.h gdk/linux-fb/gdkmain-fb.c
11439         gdk/nanox/gdkmain-nanox.c gdk/win32/gdkevents-win32.c
11440         gdk/win32/gdkinput-win32.c gdk/win32/gdkwin32.h
11441         gdk/x11/gdkmain-x11.c: 
11442
11443         Patch from George Lebl to add a GdkGrabStatus enumeration to use
11444         as a return value of gdk_*_grab(). Previously, we just
11445         returned the X11 values directly.
11446
11447 Thu Jul  6 11:27:44 2000  Owen Taylor  <otaylor@redhat.com>
11448
11449         * gdk/x11/Makefile.am: Patch from George Lebl to 
11450         install all the headers in the right place.
11451
11452 Tue Jul  4 13:13:01 BST 2000  Tony Gale <gale@gtk.org>
11453
11454         * docs/faq/gtk-faq.sgml: Add remaining sections. Completes
11455           initial conversion to DocBook.
11456
11457 2000-07-04  Tor Lillqvist  <tml@iki.fi>
11458
11459         * README.win32: Improve a bit.
11460
11461         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle also
11462         WM_SYSCHAR, and other changes to get handling of Alt+nnn or
11463         Alt+0nnn on the numpad (used to enter characters by numeric code
11464         from current DOS or ANSI codepage) working correctly, as in other
11465         Windows apps.
11466
11467         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Use
11468         same argument validity tests as in X11 version.
11469         (_gdk_cursor_destroy): Use DestroyCursor, not DestroyIcon.
11470
11471         * gdk/win32/gdkwin32.h: Add also WM_MOUSEWHEEL and CopyCursor
11472         definitions in case missing from headers.
11473
11474         * gdk/win32/gdkwindow-win32.c (gdk_win32_window_destroy): Also
11475         destroy the window-specific cursor.
11476         (RegisterGdkClass): Use the global gdk_ProgInstance instead of
11477         calling GetModuleHandle(NULL).
11478         (gdk_window_set_cursor): Reworked to always copy the passed cursor
11479         with CopyCursor before setting it as the window-specific
11480         cursor. It is OK for the caller to destroy the GdkCursor (and thus
11481         also its Windows cursor) after calling this function. Destroy any
11482         previous window-specific cursor.
11483
11484 Mon Jul  3 17:54:49 2000  Owen Taylor  <otaylor@redhat.com>
11485
11486         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): 
11487         font charset is iso8859-1, not iso-8859-1.
11488
11489 Mon Jul  3 17:08:14 2000  Owen Taylor  <otaylor@redhat.com>
11490
11491         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale):
11492         Use g_get_charset() instead of g_get_codeset().
11493
11494         * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: 
11495         Comment out some strdup'ing functions to keep timj
11496         happy until we finish fighting this out.
11497
11498 Mon Jul  3 14:24:16 2000  Owen Taylor  <otaylor@redhat.com>
11499
11500         * gtk/gtkwidget.c (gtk_widget_draw): Ignore calls with
11501         <= width or height.
11502
11503         * gtk/gtktable.c (gtk_table_attach): Fix missed merge
11504         from 1.2 for parent/child states.
11505
11506         * gdk/gdkgc.c (gdk_gc_set_rgb_fg/bg_color): Fix a couple
11507         of typos.
11508
11509         * gdk/gdkevents.[ch]: Remove press/xtilt/ytilt fields of
11510         event structures, replace with a generic axes field. Replace 
11511         deviceid/sourec with GdkDevice *device.
11512
11513         * gdk/gdkevents.[ch] (gdk_event_get_axis): Add function
11514         to extract particular axis use value from event. (Also
11515         can be used for normal X/Y.)
11516
11517         * gdk/gdkinput.h gdk/x11/gdkinput*: Major revision;
11518         allow for arbitrary number of axes, namespace everything
11519         as gdk_device_*. Replace guint32 deviceid with GdkDevice *
11520         everywhere.
11521
11522         * gdk/x11/{gdkmain-x11.c,gdkevent-x11.c,gdkinput*}: 
11523         Get rid of the gdk_input_vtable setup if favor of simply
11524         defining the functions in gdkinput-none/gxi/xfree.c in
11525         a similar fashion to the way that the port structure is 
11526         done.
11527
11528         * gtk/gtkdnd.c: Fix fields of synthesized button press event
11529         for new event structures. 
11530
11531         * gtk/gtkinputdialog.c gtk/testinput.c: Revise to match
11532         new device interfaces.
11533
11534 Sun Jul  2 18:19:50 2000  Owen Taylor  <otaylor@redhat.com>
11535
11536         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_layout): Add a 'text' argument to
11537         set the initial text.
11538
11539         * gtk/gtkaccellabel.c gtk/gtkcalendar.c gtk/gtkclist.c
11540         gtk/gtkentry.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c
11541         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvruler.c
11542         gtk/gtkvscale.c: Adapt to new argument of create_pango_layout().
11543
11544         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
11545         pango_layout_set_font_description to simplify.
11546
11547 Sun Jul  2 17:43:41 2000  Owen Taylor  <otaylor@redhat.com>
11548
11549         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
11550         pango_layout_set_font_description to simplify.
11551
11552 Sun Jul  2 17:06:40 2000  Owen Taylor  <otaylor@redhat.com>
11553
11554         * gtk/gtkcalendar.c gtk/gtkclist.c gtk/gtkctree.c gtk/gtkhscale.c
11555         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvscale.c gtk/gtkaccellabel.c: Use
11556         pango_layout_get_pixel_extents() to remove a large number of '/ PANGO_SCALE'.
11557
11558         * gtk/gtk[hv]ruler.c gtk/gtklabel.c: replace some / PANGO_SCALE with
11559         PANGO_PIXELS() macro.
11560
11561 Sun Jul  2 15:24:41 2000  Owen Taylor  <otaylor@redhat.com>
11562
11563         * gtk/gtkwidget.[ch] (gtk_widget_get_pango_context): Add new function
11564         that returns a PangoContext owned by the widget and updated to
11565         match future changes in the widget. Also, make 
11566         gtk_widget_create_pango_layout() use this context. If we ever
11567         add a ::changed signal to PangoContext, this will make things
11568         much more convenient. 
11569
11570         * gtk/gtkentry.c gtk/gtklabel.c: Call pango_layout_context_changed()
11571         in the appropriate places instead of destroying the layouts and
11572         creating new ones.
11573
11574         * gtk/gtkfontsel.[ch] gtk/gtkclist.c: Use gtk_widget_get_pango_context()
11575         in a few strategic places.
11576
11577 Sun Jul  2 14:37:58 2000  Owen Taylor  <otaylor@redhat.com>
11578
11579         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Call 
11580         gtk_widget_size_request() on reparented child, if one. Otherwise,
11581         queue_resize() on the child never results in it getting size-requested
11582         at all.
11583
11584         * gtk/testgtk.c (build_option_menu): Remove silly radio-menu-items
11585         in option menus, so that (with luck) people won't copy it into
11586         their apps in the future.
11587
11588         * gtk/gtkoptionmenu.c: Connect ::size_request on the menu
11589         to gtk_option_menu_calc_size. This isn't perfect, but should fix
11590         a lot of problems with changing the size of the menu's menu
11591         items after adding it to the option menu.
11592
11593         * gtk/gtktexttag.c: Include gtkmain.h for gtk_get_default_language().
11594
11595         * gtk/gtkwidget.[ch]: Add a ::direction_changed that triggers when
11596         the text direction for a widget changes.
11597
11598         * gtk/gtk{entry.c,label.[ch],textview.[ch]} gtk/testgtk.c: Use
11599         ::direction_changed to get rid of various hacks.
11600
11601 Sun Jul  2 13:19:12 2000  Owen Taylor  <otaylor@redhat.com>
11602
11603         * docs/Changes-2.0.txt: Move Changes-1.4.txt to the appropriate
11604         name.
11605
11606 Sun Jul  2 13:06:26 2000  Owen Taylor  <otaylor@redhat.com>
11607
11608         * gdk/x11/gdkpixmap-x11.[ch] Changes-1.4.txt: Add a is_foreign
11609         flag to the structure. Do not call XFreePixmap on pixmaps created
11610         by gdk_pixmap_foreign_new().
11611
11612 Sun Jul  2 12:45:50 2000  Owen Taylor  <otaylor@redhat.com>
11613
11614         * gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
11615         value using GdkRGB functionality given GdkColormap and GdkColor.
11616         (name not final, waiting for inspiration.)
11617         
11618         * gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
11619         set the foreground/background of a GC using the GC's colormap
11620         and GdkRGB. (name not final, waiting for inspiration.)
11621
11622         * gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from 
11623         gdk_rgb_get_cmap(), put #define in gdkcompat.h.
11624
11625         * gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
11626         gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
11627         purely a function of the corresponding colormap. Make
11628         gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
11629
11630         * gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
11631         gdk_pixbuf_*create_from_xpm_* in terms of
11632         gdk_pixbuf_new_from_xpm_data(), move into platform independent
11633         code.
11634
11635         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
11636         advantage of the new draw_rgb_32_image_dithalign.
11637
11638         * gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
11639
11640         * gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
11641         on each created GC.
11642
11643         * gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
11644
11645         * gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
11646         which we initialize from the drawable when the GC is created,
11647         if the drawable has a colormap.
11648
11649         * gdk/x11/gdkgc-x11.c: include string.h for memset.
11650
11651         * gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
11652
11653         * gtk/gtklayout.[ch]: Remove unsed configure serial member.
11654
11655 Sat Jul  1 16:28:32 2000  Owen Taylor  <otaylor@redhat.com>
11656
11657         * gdk/x11/gdkevents-x11.c (gdk_event_translate): When
11658         actually returning expose events, make sure to set
11659         the count field properly.
11660
11661         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): Fix
11662         accidentally reintroced bug which always cleared
11663         the graphics_exposures value. 
11664
11665 Wed Jun 28 18:03:09 BST 2000  Tony Gale <gale@gtk.org>
11666
11667         * docs/faq/gtk-faq.sgml: Change DocBook layout slightly
11668
11669 Wed Jun 28 17:49:05 BST 2000  Tony Gale <gale@gtk.org>
11670
11671         * docs/faq/gtk-faq.sgml: Finish Section 6. Add Section 7.
11672
11673 Wed Jun 28 13:31:55 BST 2000  Tony Gale <gale@gtk.org>
11674
11675         * docs/faq/gtk-faq.sgml: Start of Section 6.
11676
11677 Mon Jun 26 19:37:04 2000  Owen Taylor  <otaylor@redhat.com>
11678
11679         * configure.in: Put 1.3.1 in warning message, not 1.3.0.
11680         
11681         (Fixes problem with drawing childless frames. Pointed out
11682         by and a first patch from Anders)
11683         
11684         * gtk/gtkframe.c (gtk_frame_compute_child_allocation): Always
11685         compute a child_allocation, even if we don't have a child.
11686
11687         * gtk/gtkaspectframe.c (gtk_aspect_frame_compute_child_allocation):
11688         Always chain to the parent's impl, even if we don't have a child.
11689
11690 Mon Jun 26 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
11691
11692         * gdk/gdkrgb.c: If possible, create only a single shm segment and
11693         use multiple parts of it instead of creating a bunch of separate
11694         segments, since the maximum number of segments per system is not
11695         large. (This might be worth backporting to GTK+-1.2.x if we make a
11696         new release )
11697
11698         * gdk/gdkrgb.c: Localize a bunch of variables into the GdkRgbInfo
11699         structure in preparation for per-colormap GdkRGB.
11700
11701         * gdk/x11/gdkimage-x11.c (gdk_image_new): Don't set gdk_use_xshm
11702         to False when we get EINVAL from shmget so that the caller of
11703         gdk_image_new can retry with a smaller segment size.
11704
11705 Mon Jun 26 13:01:16 BST 2000  Tony Gale <gale@gtk.org>
11706
11707         * docs/faq/gtk-faq.sgml: Add Sections 4 & 5.
11708
11709 Fri Jun 23 17:54:23 2000  Tim Janik  <timj@gtk.org>
11710
11711         * configure.in: make the current version number 1.3.1 (binary age 0,
11712         interface age 0).
11713         
11714         * gtkfeatures.h, gtkfeatures.h.in: dejavue, get rid of these *again*,
11715         gtkcompat.h is all we want.
11716
11717         * gtk/gtktypeutils.[hc]: define most of the primitive types in terms of
11718         GLib primitive types. fixed g_type_register_fundamental() argument
11719         ordering.
11720
11721         * gtk-config.in (lib_gtk): add -lgdk_pixbuf so third party code
11722         compiles.
11723
11724         * gdk-pixbuf-loader.[hc]: get rid of unistd.h include.
11725         object code cleanup, comment trigraph fixes, etc...
11726
11727 2000-06-23  Havoc Pennington  <hp@redhat.com>
11728
11729         * gtk/gtktextview.c (gtk_text_view_set_buffer): Use anonymous mark 
11730         instead of making up a bogus name for first_para_mark
11731
11732         * gtk/gtkstatusbar.h, gtk/gtkstatusbar.c: Allow 
11733         0 as a context ID
11734
11735 Thu Jun 22 17:43:51 BST 2000  Tony Gale <gale@gtk.org>
11736
11737         * docs/faq/gtk-faq.sgml: Change filename. Add Section 3.
11738
11739 2000-06-21  Havoc Pennington  <hp@pobox.com>
11740
11741         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Fix bug where
11742         we didn't check window->bg_pixmap != GDK_NO_BG.
11743
11744         * gtk/gdk-pixbuf-loader.c: Change to reflect GObject-ification of
11745         gdk-pixbuf
11746
11747 Thu Jun 22 14:02:19 BST 2000  Tony Gale <gale@gtk.org>
11748
11749         * docs/faq/gtk-faq.sgm: Move file to here.
11750           TODO: Update Makfile.am 
11751
11752 Thu Jun 22 13:41:09 BST 2000  Tony Gale <gale@gtk.org>
11753
11754         * docs/gtk-faq.sgm: Add Section 2
11755
11756 Thu Jun 22 08:43:45 BST 2000  Tony Gale <gale@gtk.org>
11757
11758         * docs/gtk-faq.sgm: New file. Start of DocBook
11759           version of the FAQ.
11760
11761 Wed Jun 21 23:04:17 2000  Owen Taylor  <otaylor@redhat.com>
11762
11763         * configure.in (GDK_PIXBUF_MAJOR): Define version
11764         numbers for GDK_PIXBUF_*, as they get substituted
11765         into a header file. Need to consider versioning
11766         for gdk-pixbuf more carefully later.
11767
11768 2000-06-21  Raja R Harinath  <harinath@cs.umn.edu>
11769
11770         Work with srcdir != builddir.   
11771         * demos/testanimation.c: Don't include "gdk-pixbuf.h".  Use
11772         <gtk/gdk-pixbuf-loader.h>, not "gtk-pixbuf/gdk-pixbuf-loader.h".
11773         * demos/testpixbuf.c: Likewise.
11774         * demos/testpixbuf-scale.c: Don't include "gdk-pixbuf.h".
11775         * demos/testpixbuf-drawable.c: Don't include "gdk-pixbuf.h".  Use
11776         <gdk/x11/gdkx.h>.
11777         * demos/pixbuf-demo.c: Use <gtk/gtk.h> not "gtk.h".  Don't include
11778         "gdk-pixbuf.h".
11779         * demos/Makefile.am (INCLUDES): Remove unneeded directories.
11780
11781 Wed Jun 21 19:45:02 2000  Owen Taylor  <otaylor@redhat.com>
11782
11783         * TODO.xml: Change 1.4 version numbers to 2.0.
11784
11785 Wed Jun 21 19:29:08 2000  Owen Taylor  <otaylor@redhat.com>
11786
11787         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf-drawable.c: Indentation
11788         fixups to GTK+ standard.
11789
11790 Wed Jun 21 16:38:13 2000  Owen Taylor  <otaylor@redhat.com>
11791
11792         * gdk-pixbuf/* docs/reference/gdk-pixbuf/*: Welcome aboard,
11793         gdk-pixbuf.
11794
11795         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
11796         fixups for GObject.
11797
11798         * gdk/Makefile.am gdk/gdkpixbuf-render.[ch] gdk/gdkpixbuf.[ch]: Bits of 
11799         gdk-pixbuf with GDK dependencies moved into GDK.
11800         
11801         * gtk/Makefile.am gtk/gdk-pixbuf-loader.[ch]: Temporarily
11802         move gdk-pixbuf-loader here until GObject has signals.
11803
11804         * demos/: New directory of demos. Move demos from
11805         gdk-pixbuf here.
11806
11807         * demos/pixbuf-init.c: Small bit of code to check for
11808         loaders in ../gdk-pixbuf/.libs/gdk-pixbuf, and if found,
11809         set GDK_PIXBUF_MODULEDIR appropriately.
11810
11811         * gdk/gdkcompat.h: Remove GDK_DRAWABLE_PIXMAP compat
11812         define which no longer makes sense.
11813
11814 2000-06-21  Havoc Pennington  <hp@redhat.com>
11815
11816         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Use
11817         gtk_get_default_language
11818
11819         * gtk/gtkmain.h, gtk/gtkmain.c (gtk_get_default_language): 
11820         new function to get the default language
11821
11822         * gtk/gtktexttagprivate.h, gtk/gtktexttag.c, gtktextview.c: 
11823         s/gtk_text_view_style_values/gtk_text_style_values/
11824
11825         * gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktexttagprivate.h:
11826         Add a "language" field to tags.
11827
11828         (gtk_text_tag_set_arg): Fix bug in setting
11829         "bg_full_height_set" tag.
11830
11831 2000-06-21  Havoc Pennington  <hp@redhat.com>
11832
11833         * gtk/gtktextiter.h: Use gunichar instead of gint when appropriate
11834         in the interfaces
11835
11836         * gtk/gtktexttypes.c: Remove UTF functions, use glib 
11837         stuff instead when possible.
11838
11839         * gtk/gtktexttypes.h: Delete some unused constants
11840
11841         * gtktextbtree.c, gtktextiter.c, gtktextsegment.c, gtktextview.c,
11842         testtextbuffer.c: use glib instead of custom unicode routines
11843
11844 Wed Jun 21 12:50:58 2000  Owen Taylor  <otaylor@redhat.com>
11845
11846         * docs/es/: Removed mistakenly added generated sgml
11847
11848         * docs/{gdk.texi,gtk.texi,gdk.sgml} macros.texi texinfo.tex:
11849         Remove outdated info files.
11850
11851         * docs/gtk_tut* docs/package_tutorial.sh docs/tutorial:
11852         Moved tutorial files into subdir
11853
11854         * docs/gtkfaq.sgml docs/faq/gtkfaq.sgml: Move FAQ into
11855         subdir.
11856
11857         * docs/man/gtk_button.pod: Remove. (contents will be
11858         integrated into gtk-reference button page.)
11859
11860         * configure.in docs/Makefile.am docs/tutorial/Makefile.am
11861         docs/faq/Makefile.am: Adjust for new organization
11862
11863 2000-06-21 Christopher Blizzard  <blizzard@redhat.com>
11864
11865         * gdk/x11/Makefile.am (install-data-local): use $(mkinstalldirs)
11866         not $(MKINSTALLDIRS)
11867
11868 Wed Jun 21 12:24:28 2000  Owen Taylor  <otaylor@redhat.com>
11869
11870         * gtk/testgtk.c (create_text): Finish the job Elliot started
11871         of removing font setting test for text widget. (Since text widget
11872         and GdkFont are not deprecated, and cause portability problems.)
11873
11874 Wed Jun 21 11:41:43 2000  Owen Taylor  <otaylor@redhat.com>
11875
11876         * gtk/gtkentry.c gtk/gtkimcontextsimple.c gtk/gtklabel.c
11877         gtk/gtktexttypes.c gtk/testtext.c modules/linux-fb/basic.c:
11878         Remove use of libunicode in favor of new GLib functions.
11879
11880         * gtk/gtkcolorsel.c: Remove conditional includes for FB, win32,
11881         nano-x, framebuffer. The X11 include is just a hack until we get
11882         the necessary functions in gdkcolor.h, so there is no reason to
11883         add other includes of platforms.
11884
11885         * gtk/gtkwindow.c (gtk_window_compute_default_size): Revert 
11886         window bigger than the screen change.
11887
11888         * gtk/testgtk.c: Revert some random changes from Elliot
11889         that had no particular point and were causing testgtkrc
11890         not to function correctly.
11891         
11892         * gdk/gdkregion-generic.h: Revert change from Elliot. Just
11893         because GdkSegment and GdkRegionBox have the same fields,
11894         it doesn't mean that 'typedef GdkSegment GdkRegionBox'
11895         results in clearer code.
11896
11897         * gdk/x11/gdkinput-x11.c (gdk_input_common_select_events,
11898         gdk_input_translate_coordinates): Fix missed GdkObjectification
11899
11900 2000-06-18  Elliot Lee  <sopwith@redhat.com>
11901
11902         * gdk/Makefile.am, gdk/*/Makefile.am: Fix conditionality to work the "right" way.
11903         * gtk/gtk{plug,socket}.h: Missed commits from previous.
11904
11905 2000-06-20  Havoc Pennington  <hp@redhat.com>
11906
11907         * modules/linux-fb/Makefile.am: Make this compile
11908         without framebuffer enabled
11909
11910         * gdk/linux-fb/Makefile.am: Add conditional to not build
11911         framebuffer unless specified in configure
11912
11913         * gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
11914         the size of the target instead of source if -1 was passed for
11915         width/height
11916
11917         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
11918         width/height confusion.
11919
11920 2000-06-19  Havoc Pennington  <hp@redhat.com>
11921
11922         * gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
11923         GDK_DRAWABLE_XID. In the future, we probably want to make it
11924         faster with G_DISABLE_CHECKS turned on.
11925
11926 2000-06-14  Havoc Pennington  <hp@redhat.com>
11927
11928         * gdk/Makefile.am: add gdkpixmap.c
11929
11930         * gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
11931         s/gdk_image_init/_gdk_windowing_image_init
11932
11933         * gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
11934         ref/unref
11935
11936         * gdk/gdkcolor.h: make GdkColormap a GObject subclass
11937
11938         * gdk/gdkcompat.h: remove GdkWindowType compat, since
11939         GdkWindowType is now non-deprecated; 
11940         change gdk_window_get_type() compat to be
11941         gdk_window_get_window_type().
11942
11943         * gdk/gdkdnd.h: make GdkDragContext a GObject.
11944
11945         * gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
11946         virtual GObject. Make all functions call into the vtable.
11947         Move gdk_image_put() guts in here. Remove GdkDrawableType
11948         and gdk_drawable_get_type(), these are now GdkWindow-specific.
11949         draw_image, get_depth, get_size, set_colormap, get_colormap,
11950         get_visual added to the vtable.
11951         
11952         * gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual 
11953         GObject. Virtualize everything. 
11954         (gdk_gc_new_with_values): remove check for destroyed window,
11955         because now GdkWindow::create_gc will check this.
11956         (gdk_gc_set_values): New function to set GC values, this 
11957         was already implemented but wasn't in the header
11958
11959         * gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
11960
11961         * gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
11962         _gdk_window_draw_image(), remove _gdk_windowing_window_class,
11963         remove _gdk_window_class; add _gdk_window_impl_get_type() and
11964         _gdk_pixmap_impl_get_type(). Rename gdk_window_init to
11965         _gdk_windowing_window_init, rename gdk_image_init to
11966         _gdk_windowing_image_init.
11967         
11968         * gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
11969         (gdk_draw_layout): Remove check for destroyed window, 
11970         because all the drawable methods already check it.
11971         
11972         * gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
11973         Add gdkpixmap.c which contains implementation of GdkDrawable
11974         virtual table (by chaining to a platform-specific implementation
11975         object).
11976         
11977         * gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP, 
11978         GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
11979         GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
11980         GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
11981         GdkColormapPrivate. 
11982
11983         * gdk/gdktypes.h: #include <glib-object.h>
11984
11985         * gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
11986         Move most functionality to platform-specific implementation
11987         object. GdkWindow itself now handles the backing store, then
11988         chains to the platform-specific implementation.
11989         (gdk_window_get_window_type): return GdkWindowType of the window.
11990         (gdk_window_peek_children): New routine, returns the children of 
11991         a GdkWindow
11992         (gdk_window_get_children): Was in X11-specific code and did 
11993         XQueryTree. Changed to simply return a copy of window->children; 
11994         so it can go in cross-platform code.
11995         
11996         * gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
11997
11998         * gdk/x11/gdkcolor-x11.c: implement X-specific parts of 
11999         GdkColormap; just changed to use the new private data instead
12000         of casting to GdkColormapPrivate.
12001
12002         * gdk/x11/gdkcursor-x11.c: added a couple typechecks to 
12003         gdk_cursor_new().
12004
12005         * gdk/x11/gdkdnd-x11.c: Change the way we access private fields 
12006         (private data member in the GObject). 
12007         (xdnd_manager_source_filter): Function had broken 
12008         error handling, fix it (use gdk_error_trap_push).
12009
12010         * gdk/x11/gdkdrawable-x11.c: This file now implements
12011         a base class for GdkWindowImplX11/GdkPixmapImplX11. This 
12012         base class is purely for the convenience of the X port,
12013         and not part of the interface to cross-platform GDK.
12014
12015         * gdk/x11/gdkevents-x11.c: Reflect various renamings.
12016         
12017         * gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
12018         specific to X, and returned by the create_gc virtual method
12019         of GdkDrawableImplX11. 
12020         (gdk_x11_gc_set_dashes): Change this to take an array of gint8
12021         rather than gchar, this was also changed in the GdkGC vtable.
12022         (gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
12023         mask is 0, return immediately, instead of checking every flag.
12024         This is faster, and keeps us from segfaulting if values is NULL
12025         and the mask contains some nonzero flags.
12026
12027         * gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
12028         GdkWindow.
12029
12030         * gdk/x11/gdkglobals-x11.c: change type of grab window, since 
12031         GdkWindowPrivate is gone.
12032
12033         * gdk/x11/gdkim-x11.c: rename things that got renamed.
12034
12035         * gdk/x11/gdkimage-x11.c: implement in terms of GObject, and 
12036         remove the image_put stuff that got transferred to GdkDrawable.
12037         
12038         * gdk/x11/gdkinput.c: renamings
12039
12040         * gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
12041
12042         * gdk/x11/gdkpixmap-x11.c: GObject conversion
12043
12044         * gdk/x11/gdkprivate-x11.h: indentation fixes
12045
12046         * gdk/x11/gdkproperty-x11.c: renamings
12047
12048         * gdk/x11/gdkselection-x11.c: renamings
12049
12050         * gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now 
12051         implements the platform-specific "impl" object.
12052         Moved gdk_window_get_children to gdk/gdkwindow.c
12053
12054         * gdk/x11/gdkx.h: Remove all the private structs and private datas
12055         that no longer exist. Add declaration of GdkGCX11 object here.
12056         Fix all the macros to still work. 
12057
12058         * gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
12059         GdkDragContext from the boxed types since they are now GObjects.
12060
12061         * gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
12062         moved xthickness/ythickness into the instance. GtkStyleClass
12063         functions are now in the standard vtable for GtkStyle, so you have
12064         to create a GObject subclass to write a theme engine.
12065         (gtk_style_copy): fixed a leaked PangoFontDescription
12066         (gtk_style_init): renamed gtk_style_realize, so gtk_style_init
12067         can be the standard GObject function.
12068         
12069         * Throughout GTK:
12070         s/style->klass->[xy]thickness/style->[xy]thickness
12071         s/pango_layout_unref/g_object_unref/
12072
12073         * gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
12074         
12075         * gtk/gtksocket.c: Use gdk_window_get_user_data() instead of 
12076         accessing GDK internals.
12077
12078         * gtk/gtkwidget.c: Use gdk_window_peek_children() instead of 
12079         accessing GDK internals.
12080
12081 2000-06-18  Elliot Lee  <sopwith@redhat.com>
12082
12083         * gtk/gtkwindow.c: Don't allow creation of a window bigger than the screen.
12084
12085         * gtk/gtkrange.c: Fix the mega-jumpy-with-lagged-events scrollbar
12086         problem by calculating event position relative to the trough
12087         rather than the slider.
12088         * gtk/gtkdnd.c, gtk/gtkcolorsel.c: Include FB headers if appropriate.
12089
12090         * gdk/gdkgc.h: Add GDK_NOR.
12091
12092         * configure.in, Makefile.am: Add modules top level dir
12093         * configure.in: Only use pangox library if building x11 target.
12094         * gdk/gdkdnd.h: Add GDK_DRAG_PROTO_LOCAL enum for future intra-app use.
12095
12096 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
12097
12098         * gtk/gtkcolorsel.c: Change private class member to be named
12099         private_data throughout the file.
12100
12101         * gtk/gtkcolorsel.h (struct _GtkColorSelection): Change private to
12102         private_data to avoid clashing with keyword.
12103
12104 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
12105
12106         * gdk/gdkdnd.h: Add comment to remove warning.
12107
12108 Sun Jun 18 15:35:35 2000  Pablo Saratxaga <pablo@mandrakesoft.com>
12109
12110         * gtk/gtkrc.cp1251,gtk/Makefile.am: the cp1251 is also used by
12111         Byelorussian language; changed the Makefile and file names 
12112         to reflect that.
12113
12114 Mon Jun 12 16:58:40 2000  Owen Taylor  <otaylor@redhat.com>
12115
12116         * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw
12117         rather than gdk_window_hide; this makes things work
12118         correctly if the window is programmatically hidden while
12119         iconified.
12120
12121 Sun Jun 11 12:46:19 2000  Owen Taylor  <otaylor@redhat.com>
12122
12123         * gtk/gtkdnd.c (gtk_drag_set_default_icon): Fix
12124         cut and paste typo where wrong pixmap was being
12125         unref'ed. (Pointed out by a friend of KUSANO Takayuki.)
12126
12127 Sun Jun 11 10:22:36 2000  Owen Taylor  <otaylor@redhat.com>
12128
12129         * gtk/gtkselection.c (gtk_selection_bytes_per_item):
12130         Add helper function to compute format / bytes 
12131         relationship. Use in a couple places to fix up
12132         errors which assume 8 * format.
12133
12134         * gtk/gtkselection.c (gtk_selection_request): Use 32
12135         rather than 8 * sizeof (GdkAtom), to work correctly
12136         on Alpha.
12137
12138 Thu Jun  8 21:54:51 2000 Christopher Blizzard  <blizzard@redhat.com>
12139
12140         * gtk/Makefile.am (DEPS): deps include libgtk-x11.la, not
12141         libgtk.la
12142         (LDADDS): include libgtk-x11.la and libgdk-x11.la, not the non-x11
12143         versions
12144
12145         * gtk/gtklabel.c (gtk_label_get_text): Make sure that the error
12146         checking macros return NULL since the function has a return value.
12147
12148 Wed Jun  7 15:44:42 2000  Owen Taylor  <otaylor@redhat.com>
12149
12150         * gtk/Makefile.am (LDFLAGS): Add missing backslash that was keeping
12151         GTK+ from building at all.
12152
12153         * gdk/Makefile.am (gdk_c_sources): Fix up some indentation issues.
12154
12155 Mon Jun  5 19:32:53 CEST 2000 Paolo Molaro <lupus@linuxcare.com>
12156
12157         * configure.in, gtk-config.in, gdk/Makefile.am, gdk/*/Makefile.am,
12158         gtk/Makefile.am: make it possible to configure gtk for different
12159         targets on the same platform. The library name is now 
12160         libgtk-$target-$version.so. gtk-config accepts a --target x11|nanox|linux-fb
12161         flag. Only the x11 target compiles right now.
12162         * gdk/gdkregion-generic.h, gdk/gdkregion-generic.c, gdk/gdkpoly-generic.h,
12163         gdk/gdkpolyreg-generic.c: move generic region code in the main GDK dir.
12164         * gdk/nanox/gdk*generic*: delete generic region code.
12165         * gdk/linux-fb/gdk*generic*: delete generic region code.
12166         * README.nanox: update information.
12167         
12168 Tue Jun  6 10:53:59 2000  Owen Taylor  <otaylor@redhat.com>
12169
12170         * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
12171         prepend not append. (Pointed out by Brett Hall.)
12172
12173 Tue Jun  6 01:59:57 2000  Owen Taylor  <otaylor@redhat.com>
12174
12175         * gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
12176
12177 Mon Jun  5 16:00:09 2000  Owen Taylor  <otaylor@redhat.com>
12178
12179         * gdk/gdk.c (gdk_init_check): Add call to g_type_init() - we'll
12180         need this later, and this makes sure that the atexit for
12181         glib gets called after that for GDK, so atexits are
12182         properly ordered for object leak checking.
12183
12184         * gdk/gdk.c (gdk_exit_func): Call gdk_windowing_exit().
12185
12186         * gdk/x11/gdkmain-x11.c (gdk_windowing_exit): Call 
12187         pango_x_shutdown_display()
12188
12189         * gtk/simple.c (main): Close window on destroy.
12190
12191 Mon Jun  5 11:50:02 2000  Owen Taylor  <otaylor@redhat.com>
12192
12193         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): We need
12194         to treat initial creation different from setting with 
12195         regards to the graphics-exposures parameter, so add a parameter
12196         indicating whether this is initial or not.
12197
12198 Mon Jun  5 13:29:31 2000  Owen Taylor  <otaylor@redhat.com>
12199
12200         * gdk/x11/gdkevents-x11.c: Hack gdk_event_get_graphics_expose()
12201         to sort of work by adding an extra return_exposes arg
12202         to gdk_event_translate() - it might be better to simply
12203         deprecate the function altogether and force people to rewrite
12204         without it. gdk_window_scroll() handles most of it, and where
12205         gdk_window_scroll() doesn't work, simply redrawing more does.
12206
12207         * gtk/gtkwidget.c (gtk_widget_set_default_direction): Fix up
12208         assertion.
12209
12210         * gtk-config.in: Include PANGO_CFLAGS/LIBS.
12211
12212         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Remove a 
12213         bunch of pretty much useless /* Print debugging info */ comments 
12214         which had drifted away from the code they were commenting.
12215
12216 2000-06-02  Havoc Pennington  <hp@pobox.com>
12217
12218         * gtk/testtextbuffer.c: Test program to make sure GtkTextBuffer
12219         is in working order.
12220         
12221         * gtk/testtext.c: Change to reflect anonymous mark API
12222
12223         * gtk/gtktextview.c: Convert from mark names to GtkTextMark*.
12224
12225         * gtk/gtktexttag.h (struct _GtkTextTag): remove the affects_size
12226         field, which was unused.
12227
12228         * gtk/gtktextmarkprivate.h (GTK_IS_TEXT_MARK): add this macro,
12229         saves some typing.
12230
12231         * gtk/gtktextbuffer.c: Switch from mark names to GtkTextMark*   
12232
12233         * gtk/gtktextbtree.c (gtk_text_btree_new): set the not_deleteable
12234         flag on the insertion point and selection bound
12235
12236         Throughout, use GtkTextMark instead of GtkTextLineSegment, and 
12237         make mark-manipulation functions take a GtkTextMark* instead of a
12238         mark name.
12239         
12240         * gtk/gtktextmarkprivate.h: Add a "not_deleteable" flag to 
12241         GtkTextMarkBody; will be used to detect attempts to delete
12242         the permanent marks (insert and selection bound)
12243
12244         * gtk/Makefile.am (noinst_PROGRAMS): add testtextbuffer 
12245
12246 Fri Jun  2 12:56:01 2000  Owen Taylor  <otaylor@redhat.com>
12247
12248         * gtk/gtkwidget.c (gtk_widget_init): Initialize DOUBLE_BUFFERED
12249         flag to on.
12250
12251         * gtk/gtkwidget.c (gtk_widget_draw) gtk/gtkmain.c (gtk_main_do_event): 
12252         Honor DOUBLE_BUFFRED_FLAG
12253
12254         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a
12255         function to set the DOUBLE_BUFFERED flag.
12256
12257         * gtk/gtkwidget.h: Add GTK_DOUBLE_BUFFERED flag to indicate whether
12258         or not exposes done on the widget should be double-buffered.
12259
12260         * gtk/gtkenums.h (GtkTextDirection): Reverse order of enumerations
12261         to be what would be expected. (Fixes problem with a
12262         g_return_if_fail() validating a TextDirection enumeration)
12263
12264 Thu Jun  1 23:05:13 2000  Owen Taylor  <otaylor@redhat.com>
12265
12266         * gtk/gtkwidget.c: Remove all references to 
12267         offscreen flag which was no longer used.
12268
12269         * gtk/gtkprivate.h (enum): Remove unused flags and compress.
12270
12271         * gtk/gtkframe.c (gtk_frame_set_label_widget): Check
12272         for non-null label_widget->parent.
12273
12274         * gtk/gtkentry.c: Get rid of code to deal with PangoAttribute 
12275         which no longer was used.
12276
12277         * gdk/gdkpango.c (gdk_pango_context_get_info): make static.
12278
12279         * gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
12280         for null arguments.
12281
12282         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
12283         check for destroyed windows.
12284
12285 Thu Jun  1 13:48:45 2000  Owen Taylor  <otaylor@redhat.com>
12286
12287         * gtk/gtkimmulticontext.c: Add a finalize method and unref
12288         the slave context there.
12289
12290         * gtk/gtkinvisible.[ch]: Make reference counting behavior
12291         identical to GtkWindow.
12292
12293 Thu Jun  1 01:54:11 2000  Owen Taylor  <otaylor@redhat.com>
12294
12295         * Makefile.am gdk/gdkpango.c: Copy the layout render function from
12296         pangox to here, so we can write them independent of rendering
12297         system, using GDK primitives.
12298
12299         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
12300         gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
12301         since we have a rendering-system independent implementation in
12302         terms of draw_glyphs().
12303         
12304         * gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
12305         function to render a single line.
12306
12307         * gdk/x11/gdkpango.c: Move the guts of this file mostly
12308         into ../gdkpango.c, which simplifies things, since we
12309         don't have to deal with raw X gc's.
12310
12311 Fri May 19 04:28:16 2000  Owen Taylor  <otaylor@redhat.com>
12312
12313         * gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
12314         get the logical attributes for a given GtkTextLine.
12315
12316 Tue May 30 16:05:39 2000  Owen Taylor  <otaylor@redhat.com>
12317
12318         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
12319         g_locale_get_codeset() to g_get_codeset() change.
12320
12321 Tue May 30 15:03:19 2000  Owen Taylor  <otaylor@redhat.com>
12322
12323         * gtk/testcalendar.c (calendar_font_selection_ok): Use font
12324         descriptions.
12325
12326         * gtk/gtkentry.c (gtk_entry_draw_text): Center text within
12327         the entry.
12328
12329         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
12330         redoing (vastly simplifying) for Pango. Still needs quite
12331         a bit of work. (Size selection is currently poor. List of 
12332         predefined sizes is not a good idea, since all of these
12333         sizes won't necessarily be distinct.)
12334
12335 Tue May 30 13:50:19 2000  Owen Taylor  <otaylor@redhat.com>
12336
12337         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
12338         CODESET results for LANG=C.
12339
12340 Mon May 29 15:49:10 2000  Owen Taylor  <otaylor@redhat.com>
12341
12342         * gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
12343         which takes a stringized pango font description;
12344         ignore the older 'font' and 'fontset' declarations.
12345
12346         * gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
12347         field with a GdkFont derived via gdk_font_from_description(),
12348         for compatibility. (Should we just remove it entirely?
12349         Probably too much compatibility breakage, but people
12350         should be migrating to the new Pango stuff as quickly
12351         as possible.)
12352
12353 Mon May 29 15:47:41 2000  Owen Taylor  <otaylor@redhat.com>
12354
12355         * gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
12356
12357 Mon May 29 15:44:46 2000  Owen Taylor  <otaylor@redhat.com>
12358
12359         * gtk/gtkcalender.c: Roughly pango-ized. Really needs 
12360         redoing; there are some bugs in size allocation right
12361         now, the semi-existant distinction between header / day
12362         fonts was removed, but, with Pango, could actually
12363         be made functional in a nice way.
12364         
12365         * gtk/testcalender: Move calender from examples into this
12366         directory as a test program. (We really need to restrcture
12367         testgtk into a whole directory full of tests for every
12368         widget or functionality group, separated into multiple .c
12369         files.)
12370
12371 Mon May 29 15:19:56 2000  Owen Taylor  <otaylor@redhat.com>
12372
12373         * gtk/testgtk.c (file_exists): Fix stupid typo that
12374         was keeping RC file from being loaded.
12375
12376         * gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
12377         RC file font code.
12378
12379 Mon May 29 14:31:27 2000  Owen Taylor  <otaylor@redhat.com>
12380
12381         * gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
12382         Add function to load a GdkFont from a PangoFontDescription.
12383
12384 2000-05-29  Tor Lillqvist  <tml@iki.fi>
12385
12386         * gdk/win32/gdkevents-win32.c (gdk_WindowProc): The local "event"
12387         variable should be of type GdkEventPrivate.
12388
12389 Fri May 26 17:16:40 2000  Owen Taylor  <otaylor@redhat.com>
12390
12391         * gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
12392         to have any widget for the label, use a GtkLabel widget
12393         to display the text. (Based partially on a patch from
12394         Anders Carlson.)
12395
12396         (Quite a bit of code reorganization - strip 90% of the
12397         guts out of gtkaspectframe and add a single virtual
12398         func to GtkFrameClass - compute_child_allocation.)
12399
12400 Fri May 26 12:00:02 2000  Owen Taylor  <otaylor@redhat.com>
12401
12402         * gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
12403         (Removed clist->row_center_offset field because caching
12404         it wasn't saving time or code, added private function
12405         _gtk_clist_create_cell_layout()).
12406
12407 Wed May 24 15:59:37 2000  Owen Taylor  <otaylor@redhat.com>
12408
12409         * gtk/gtkaccellabel.c: Pangoized.
12410
12411         * gtk/[hv]ruler.c: Pangoized
12412
12413 Mon May 22 19:23:59 2000  Owen Taylor  <otaylor@redhat.com>
12414
12415         * gtk/gtkfilesel.c (gtk_file_selection_init):
12416         Use gtk_clist_set_column_auto_resize() to remove need
12417         need for manual column width computations.
12418
12419 Mon May 22 18:50:26 2000  Owen Taylor  <otaylor@redhat.com>
12420
12421         * gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel, 
12422         ensuring Pango correctness, and considerably simplifying the
12423         code.
12424         
12425         * gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
12426
12427         * gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
12428         getting of numbers of lines.
12429
12430         * gtk/gtklabel.c (gtk_label_size_request): Set the requisition
12431         to the actual requested width of the lable, not to the wrap
12432         width we set.
12433
12434         * gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
12435
12436         * gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
12437           gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
12438
12439         * gtk/gtktextview.c: Fix structure inheritance.
12440
12441         * gtk/gtkprogressbar.c: Pangoize.
12442
12443 Mon May 22 15:47:30 2000  Owen Taylor  <otaylor@redhat.com>
12444
12445         * gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
12446         in a function.
12447
12448         * gtk/gtktextlayout.c (find_display_line_above): Fixed
12449         bug with computing line tops.
12450
12451         * gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
12452
12453 Thu May 18 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
12454
12455         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
12456         and y_offset coordinates to do what we need now. (The offset between
12457         buffer and layout coordinates has been reintroduced, but is a 
12458         bit different than before.)
12459
12460         * gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
12461         handle the adjustments ourselves, and scroll as necessary using
12462         the new gdk_window_scroll().
12463         
12464         The advantage of this is that when we are incrementally revalidating,
12465         we are essentially rearranging things around the visible portion
12466         of the screen. With the old setup, the visible portion of the
12467         screen was moved around in the layout, so scrolling and redrawing
12468         to track that caused jumping of the display. Since we now
12469         control the scrolling ourselves, we can suppress this and
12470         only redraw when things actually change.
12471
12472 Thu May 18 18:47:25 2000  Owen Taylor  <otaylor@redhat.com>
12473
12474         * gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
12475         the region not just redisplay it after-all, since we store the
12476         cursors in the LineDisplay. (Ugly interactions here between
12477         GtkLayout and GtkTextBTree here.)
12478         
12479         * gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
12480
12481 Thu May 18 18:43:21 2000  Owen Taylor  <otaylor@redhat.com>
12482
12483         * gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
12484         Added function to scroll contents of a window while keeping the
12485         window constant. Works by XCopyArea or guffaw-scrolling depending
12486         on the details of how the window is set up. (guffaw-scrolling
12487         still needs to be filled in.)
12488
12489 Wed May 17 22:36:53 2000  Owen Taylor  <otaylor@redhat.com>
12490
12491         * gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
12492         move the debugging that was tied to a global variable
12493         to that.
12494
12495         * gtk/gtkmarshal.list: Add NONE:INT,INT,INT
12496
12497         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
12498         validated flag, in line data instead of setting height/width to
12499         -1. This allows us to perform operations with partially invalid
12500         buffer (using the old size for invalid lines) and thus to do
12501         incremental vaidation. Keep height/width aggregates up to date
12502         when deleting text and rebalancing the tree.
12503
12504         * gtk/gtktextbtree.[ch]: Add functions validate a line
12505         (gtk_text_btree_validate_line), and to validate up
12506         to a number of pixels (gtk_text_btree_validate).
12507
12508         * gtk/gtktextlayout.[ch]: Add an ::invalidated signal
12509         that indicates that something is changed and a revalidation
12510         pass is needed. Change ::need_repaint to ::changed, and
12511         make it take old and new yranges instead of a rectangle.
12512
12513         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
12514         the line_data_destroy() function from 
12515         gtk_text_btree_add_view() to a virtual function in 
12516         GtkTextLayout
12517
12518         * gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
12519         since we are handling partial repaints in a different fashion
12520         now.
12521
12522         * gtk/gtktextbtree.[ch]: Only repaint the changed portion
12523         of the selection instead of queueing a repaint on the
12524         entire widget.
12525
12526         * gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
12527         get_selection_bounds() down to btree, make the function
12528         in buffer a wrapper around the btree function.
12529
12530         * gtk/gtktextlayout.[ch]: Add functions to check if the
12531         layout is valid and to recompute either a range of pixels
12532         aroudn a line or a certain total number of pixels.
12533
12534         * gtk/gtktextlayout.[ch]: Cache a single line display;
12535         now that we only redraw the needed portions, the hit rate
12536         for this cache is quite high.
12537         
12538         * gtk/gtktextview.[ch]: Keep track of the first paragraph
12539         on the screen so that when re-laying-out the buffer, we can
12540         keep the same place. This requires connecting to ::value_changed
12541         on the adjustments
12542
12543         * gtk/gtktextview.[ch]: Add idle functions to revalidate
12544         the buffer after we receive an ::invalidated signal.
12545         
12546 Wed May 17 22:10:47 2000  Owen Taylor  <otaylor@redhat.com>
12547
12548         * gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
12549         to max of allocation and layout size, not just to the
12550         layout size.
12551
12552         * gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size): 
12553         Invalidate window so it gets redrawn properly.
12554
12555         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
12556         to mean the entire window.
12557
12558         * gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
12559         into public header.
12560
12561 Mon May 15 14:51:31 2000  Owen Taylor  <otaylor@redhat.com>
12562
12563         * gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
12564         to get the name of a mark.
12565
12566         * gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
12567         to find the paragraph from a y position.
12568
12569 Thu May 11 12:57:20 2000  Owen Taylor  <otaylor@redhat.com>
12570
12571         * gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
12572         nodes have width/height >= 0, not > 0.
12573
12574 Tue May  9 21:29:06 2000  Owen Taylor  <otaylor@redhat.com>
12575
12576         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
12577         Add a size_only flag, so when we only need the size, we don't create
12578         useless appearance attributes.
12579
12580         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
12581         duplicate setting of font description.
12582
12583         * gtk/gtkscale.c: Use PANGO_SCALE instead of 1000 
12584
12585 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
12586
12587         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
12588         EXTRA_DIST. It does not work well when the file that
12589         everything depends on is not in the tarball.
12590
12591 Wed Apr 26 00:56:14 2000  Owen Taylor  <otaylor@redhat.com>
12592
12593         * gtk/testgtk.c: Some hacks and fixes so that it basically
12594         works when not sitting in the GTK+ build tree.
12595
12596 2000-05-03  Havoc Pennington  <hp@redhat.com>
12597
12598         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
12599         Properly determine the ordering of the tag root and the current
12600         line within the tree. Previous algorithm only worked if the tag
12601         root's immediate parent was the common root of both the current
12602         line and the tag root.
12603
12604 Wed Apr 26 00:43:00 2000  Owen Taylor  <otaylor@redhat.com>
12605
12606         * gtk/gtktextlayout.c (set_para_values): Fix some bugs in
12607         alignment.
12608
12609         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
12610         the widget text directional dynamically.
12611
12612         * gtk/gtktextview.[ch]: Added functions to get and set default
12613         wrap mode.
12614
12615 Tue Apr 25 23:47:38 2000  Owen Taylor  <otaylor@redhat.com>
12616
12617         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
12618         in cursor location computation.
12619
12620 Tue Apr 25 23:22:59 2000  Owen Taylor  <otaylor@redhat.com>
12621
12622         * gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
12623         vadjusment values properly when layout gets smaller.
12624
12625         * gtk/gtktextview.c (need_repaint_handler): Areas being
12626         passed in are far completely inaccurate, and sometimes
12627         too small, so, for now, just queue a redraw on the
12628         whole visible region.
12629
12630 2000-04-25  Havoc Pennington  <hp@redhat.com>
12631
12632         * gtk/gtktextbtree.c (summary_destroy): new function to 
12633         destroy tag summary nodes
12634         (gtk_text_line_next_could_contain_tag): this function was 
12635         totally broken if the line passed in wasn't below the tag
12636         root. Fix it.
12637         (gtk_text_btree_first_could_contain_tag): In the tag == NULL 
12638         "wildcard" case, we have to do a linear scan. Blah.
12639         (gtk_text_btree_last_could_contain_tag): In tag == NULL case,
12640         we have to do the linear scan
12641         (tag_removed_cb): When a tag is removed from the tag table, 
12642         remove the GtkTextTagInfo node from the btree.
12643         (gtk_text_btree_spew): Implement the spew function, for 
12644         our debugging pleasure.
12645
12646 Tue Apr 25 19:40:18 2000  Owen Taylor  <otaylor@redhat.com>
12647
12648         * gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
12649         a problem with referring to the wrong buffer.
12650
12651         * gtk/gtkentry.c: Fix focus-in/focus-out confusion.
12652
12653         * gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
12654         font description to gtk_style_new() - otherwise things
12655         don't work without a .gtkrc file.
12656
12657         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
12658         tags table if we create it ourself, too.
12659
12660         * gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
12661         it was conflicting with XKB modifiers.
12662
12663         * gtk/gtktextview.[ch]: Add simple support for 
12664         GtkIMContext.
12665
12666 Mon Apr 24 19:34:18 2000  Owen Taylor  <otaylor@redhat.com>
12667
12668         * gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
12669         with deletion from last commit.
12670
12671 Mon Apr 24 19:29:40 2000  Owen Taylor  <otaylor@redhat.com>
12672
12673         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
12674         in the context from the current locale.
12675         
12676         * gtk/gtkentry.c (gtk_entry_size_request): Use language from the
12677         context, not hardcoded value.
12678
12679         * gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
12680         not logical.
12681
12682 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
12683
12684         * gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
12685         attributes - that doesn't handle partial-glyph selection
12686         properly. Instead use new pango_layout_line_get_x_ranges()
12687         functionality to draw the selection.
12688
12689         * gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
12690         now properly handles out-of-range coordinates.
12691
12692         * gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
12693
12694         * gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
12695         public.
12696
12697         * gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
12698         for paragraphs opposite to the base direction of the widget.
12699
12700         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
12701
12702         * gtk/gtktextlayout.c: Don't split segments on marks, since that
12703         causes Arabic words to reshape as you cursor through.
12704
12705         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
12706         cursor position when moving vertically with the arrow keys and
12707         scrolling with page-up/page-down. (Arrow keys save only the X,
12708         scrolling saves both X and Y.)
12709
12710         This means you can line-up / line-down or page-up / page-down
12711         without losing your place, and also that moving vertically
12712         with the cursor keys keeps the same X position, not the same
12713         character count:
12714
12715         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
12716         arrow keys move by display lines, not paragraphs.
12717
12718 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
12719
12720         * gtk/gtklayout.c: Make sure that the bin window is at least
12721         as big as the allocation. (Should we also make sure that the
12722         bin window is big enough to completely cover widget->window?)
12723
12724         * gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
12725         function to get the onscreen rectangle.
12726
12727         * gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
12728         for offsets in window coordinates.
12729
12730 Sun Apr 16 16:13:27 2000  Owen Taylor  <otaylor@redhat.com>
12731
12732         * gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
12733         confusion.
12734
12735         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
12736         from the widget direction.
12737
12738         * gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg): 
12739         Add a "direction" attribute.
12740
12741         * gtk/gtktextview.c: global s/tkxt/text_view/.
12742
12743         * gtk/testtext.c: Added long block of text in Arabic, to test out
12744         the direction attributes. (Some problems with the shaping system
12745         for arabic become obvious - like the fact the cursor splits words
12746         into unjoined pieces.)
12747
12748 Fri Apr 14 12:54:34 2000  Owen Taylor  <otaylor@redhat.com>
12749
12750         * gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
12751
12752         * gtk/gtktextlayout.c: Fix up alignment.
12753
12754         * gtk/testtext.c: Add some tests for centering, wrapping.
12755
12756 Fri Apr 14 09:26:22 2000  Owen Taylor  <otaylor@redhat.com>
12757
12758         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
12759         Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
12760         If we wrote GTK+-specific layout-render function this could just replace
12761         the draw_layout() operation in the vtable.
12762
12763         * gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to 
12764         pango_layout_get_cursor_pos() and use that function.
12765
12766         * gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
12767         is a non-static symbol.
12768
12769         * gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
12770         with gtk_text_btree_find_line_by_y()
12771
12772         * gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
12773         renderer that handles GtkTextAppearance attributes.
12774
12775         * gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h: 
12776
12777           - Move the values in the style that don't affect geometry into a
12778             GtkTextAppearance structure.
12779           - Change underline to take a PangoUnderline and "font" a string
12780             representation of a font description
12781           - Add a "font_desc" attribute which takes a FontDescription structure.
12782
12783         * gtk/gtktextlayout.[ch]:
12784
12785           - Get rid of the display-line list per each line. Instead, we
12786             generate, on demand, a GtkTextLineDisplay structure which]
12787             contains a PangoLayout * and other necesary information
12788             (offsets, cursor locations) for displaying a paragraph.
12789           - Get rid of the code to wrap lines, create display chunks,
12790             etc. Instead, we just go through a paragraph and convert
12791             it into the necessary inputs to a PangoLayout.
12792           - Implement a new attribute type, GtkTextAttrAppearance. This
12793             holds a GtkTextAppearance, and is used to pass colors, 
12794             stipple, etc, through from the layout to the display without
12795             having to use lots and lots of individual attributes.
12796           - Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
12797             in terms of PangoLayout functions.
12798         
12799         * gtk/gtktextview.c: 
12800          
12801           - Handle passing the necessary PangoContext to the layout
12802           - Some fixups in painting to deal with the automatic backing store
12803             and offsetting of GTK+-1.4
12804           - Add a style_set handler so that the default style reacts
12805             properly to theme changes.
12806         
12807         * gtk/gtktext?*.[ch]: Random code-style fixes.
12808
12809         * gtk/testtext.c: Substitute in languages that Pango handles now for Thai
12810
12811 Mon Apr 10 10:33:45 2000  Owen Taylor  <otaylor@redhat.com>
12812
12813         * gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
12814         in original form preparatory to Pango-ization and gdkimcontext-ization.
12815
12816 Thu Apr  6 19:25:39 2000  Owen Taylor  <otaylor@redhat.com>
12817
12818         * gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
12819         so that we can derive from gtkimcontext in language bindings properly.
12820
12821 Thu Apr  6 16:02:52 2000  Owen Taylor  <otaylor@redhat.com>
12822
12823         * gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
12824         Add a compose table including (almost) all the compose combinations
12825         from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
12826         data in the XIM implementation.
12827
12828         * gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
12829         Moved functions to convert keyvalues from and to unicode here from
12830         the win32 port and made them public.
12831
12832 Wed Apr  5 16:37:29 2000  Owen Taylor  <otaylor@redhat.com>
12833
12834         * gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
12835
12836 Wed Apr  5 16:27:45 2000  Owen Taylor  <otaylor@redhat.com>
12837
12838         * gtk/gtkimcontext.[ch]: Base class for new input context system
12839
12840         * gtk/gtkimmulticontext.[ch]: Proxy input context that allows
12841         the real input context implementation to be loaded from modules
12842         and switched on the fly.
12843
12844         * gtk/gtkcontextsimple.[ch]: Simple implementation of an input
12845         context that just does direct keysymbol => unicode translation.
12846
12847         * gtk/gtkentry.[ch]: Start switching editing over to using
12848         GtkInputContext. (No handling of preedit yet.)
12849
12850 Wed Apr  5 15:48:41 2000  Owen Taylor  <otaylor@redhat.com>
12851
12852         * gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
12853         many substitutions. (klass should not be subsituted.)
12854
12855 Wed Apr  5 00:18:14 2000  Owen Taylor  <otaylor@redhat.com>
12856
12857         * configure.in: Add checks for Pango
12858
12859         * configure.in docs/Makefile.am: Add test for sgml2html
12860         and allow 'make dist' without building html, but print out
12861         warnings in that case. (For making snapshots)
12862
12863         * gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
12864         Add Pango libraries and C flags
12865
12866         * gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
12867         Add function (gdk_draw_layout) to draw a pango layout.
12868
12869         * gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
12870         for getting Pango contexts for GDK.
12871
12872         * gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
12873
12874         * gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
12875         editing.
12876
12877         * gtk/gtkentry.c: Hack in simple Hebrew input with direct
12878         keysym => unicode translations. More languages can be added
12879         here, but real input-method support is needed.
12880
12881         * docs/Changes-1.4.txt: Added note about entry behavior.
12882         
12883         * gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
12884         to set the reading direction for a widget and the global direction.
12885         Add test which allows toggling the global direction. Two private
12886         flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
12887
12888         * gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
12889           gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c 
12890
12891         * gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
12892
12893         * gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
12894         underlining now handled by Pango.
12895
12896         * gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
12897         to RCStyle and Style. (Having both this and the old font name and GdkFont 
12898         is temporary.)
12899
12900         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added 
12901         convenience functions for creating contexts and layouts for widgets.
12902
12903         * gtk/testgtk.c: Enhance label tests with multilingual labels.
12904
12905 2000-05-29  Jonathan Blandford  <jrb@redhat.com>
12906
12907         * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
12908         titles to be active, even if they aren't visible.
12909         (gtk_clist_column_titles_passive):  Ditto.
12910
12911 2000-05-21  Nils Barth  <nils_barth@post.harvard.edu>
12912
12913         * gtkmenu.c:
12914         * gtkmenu.h:
12915         * gtktypeutils.h: Spelling/grammar fixes in comments.
12916
12917 Tue May 23 12:25:07 CEST 2000 lupus <lupus@debian.org>
12918
12919         * gdk/nanox/*.h: add missing header files.
12920
12921 Fri May 19 11:52:59 2000  Tim Janik  <timj@gtk.org>
12922
12923         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set
12924         send_event to TRUE.
12925         (gtk_drawing_area_size): queue a resize.
12926
12927 Sun Mar 26 03:21:28 2000  Tim Janik  <timj@gtk.org>
12928
12929         * gtk/gtksignal.c (gtk_signal_handlers_destroy): when unref-ing
12930         the handlers, also invalidate them. bug nailed down by Karl Nelson
12931         <kenelson@ece.ucdavis.edu>.
12932
12933 Fri May 19 06:49:23 2000  Tim Janik  <timj@gtk.org>
12934
12935         * gtk/gtkfontsel.c (gtk_font_selection_get_font_name): handle
12936         "(nil)" foundries, patch from Grigorios Magklis.
12937
12938         * gtk/gtkfontsel.c (gtk_font_selection_load_font): don't crash
12939         on non-available fonts, based on a patch by Grigorios Magklis
12940         <maglis@cs.rochester.edu>.
12941
12942 2000-05-18  Elliot Lee  <sopwith@redhat.com>
12943
12944         * gdk/x11/gdkregion-generic.c: If a region does not have any
12945         rectangles, or if the specified rectangle is not in the region, then return GDK_OVERLAP_RECTANGLE_OUT
12946         instead of GDK_OVERLAP_RECTANGLE_IN.
12947
12948 2000-05-17  Jonathan Blandford  <jrb@redhat.com>
12949
12950         * gtk/gtklayout.c (gtk_layout_map): Remove references to
12951         OFFSCREEN, as it is no longer necessary.
12952
12953 Wed May 17 10:52:12 2000  Owen Taylor  <otaylor@redhat.com>
12954
12955         * gtk/gtkcolorsel.c: Patch from David Santiago
12956         <mrcooger@cyberverse.com> to change things so that the 
12957         indicator of the active palette entry is done independently,
12958         not via the focus, since it should always be visible.
12959
12960 2000-05-17  Tor Lillqvist  <tml@iki.fi>
12961
12962         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Plug same
12963         refcount leaks as in the X11 backend.
12964
12965         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Logging
12966         cosmetics.
12967
12968         * gdk/win32/gdkwindow-win32.c: Similar changes as in X11
12969         backend. Add _gdk_windowing_window_destroy().
12970
12971         * gtk/gtkcolorsel.c: Include correct backend-specific header.
12972         Don't use XColor unless on X11. (No GDK_VISUAL_STATIC_COLOR
12973         either, but these probably do exist on nanox?)
12974         
12975         * gtk/gtkhsv.c: Use G_PI (fresh from <glib.h>) instead of M_PI
12976         which isn't necessarily defined by <math.h>.
12977
12978         * gtk/gtkobject.c (gtk_object_init): Don't go up the class
12979         ancestry past GtkObject.
12980
12981         * gtk/gtktypeutils.h: Mark GTK_TYPE_IDENTIFIER for export/import
12982         from DLL on Win32.
12983
12984         * gtk/gtk.def: Update corresponding to recent changes.
12985
12986         * gtk/makefile.{cygwin,msc}: Updates.
12987
12988 Fri May 12 18:46:51 2000  Owen Taylor  <otaylor@redhat.com>
12989
12990         * docs/Changes-1.4.txt: A bit of editing.
12991
12992         * gdk/gdkwindow.c (_gdk_window_clear_update_area) 
12993         * gdk/x11/gdkwindow-x11.c (gdk_window_hide): Add a function
12994         to clear the update area for the window, and clear it
12995         when hiding a window.
12996
12997         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Ignore
12998         if window destroyed.
12999
13000         * gdk/gdkwindow.c (gdk_window_end_paint): Likewise.
13001
13002         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c gdk/gdkinternals.h: Move 
13003         gdk_window_destroy() to the generic code, since there was a lot of 
13004         window-system-independent logic it in. Add a function:
13005         
13006          _gdk_window_destroy() 
13007
13008         to the internal API to destroy a window without unreferencing it.
13009         Add a function:
13010
13011          _gdk_windowing_window_destroy()
13012
13013         That does the windowing-system-dependent part of destroying 
13014         the window.
13015
13016 Fri May 12 11:07:41 2000  Owen Taylor  <otaylor@redhat.com>
13017
13018         * gtk/testgtk.c: Fix various memory leaks of pixmaps.
13019
13020 Fri May 12 11:06:10 2000  Owen Taylor  <otaylor@redhat.com>
13021
13022         * gtk/gtkwidget.c docs/Changes-1.4.txt (gtk_widget_shape_combine_mask): 
13023         Make gtk_widget_shape_combine_mask() keep a reference count on
13024         the pixmap since it keeps it around.
13025
13026 Fri May 12 10:53:29 2000  Owen Taylor  <otaylor@redhat.com>
13027
13028         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix refcount
13029         leak.
13030
13031         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix refcount
13032         leak with event filters.
13033
13034 Thu May 11 14:29:44 2000  Owen Taylor  <otaylor@redhat.com>
13035
13036         * gtk/gtkdnd.c (gtk_drag_dest_set_internal): Remove the
13037         signal handlers with the right data arguments. (Fixes
13038         some warnings when a widget was repeatedly set as a drag
13039         destination.)
13040
13041         * gdk/x11/gdkdnd-x11.c (gdk_window_register_dnd): Set data on the
13042         window so we can avoid avoid setting the DND properties on the
13043         toplevel window repeatedly.
13044
13045 2000-05-13  Tor Lillqvist  <tml@iki.fi>
13046
13047         * gdk/win32/gdkwin32.h: Define more message types missing from
13048         mingw headers.
13049
13050         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
13051         call gdk_window_destroy_notify(). It was never called. This
13052         probably meant that the GdkWindow was never freed. Thanks Owen for
13053         noticing (!).
13054
13055         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
13056         window as destroyed before calling DestroyWindow(). DestroyWindow()
13057         causes a call to the window procedure (gdk_WindowProc), which
13058         calls gdk_event_translate(), which calls
13059         gdk_window_destroy_notify(), which gets confused unless the window
13060         is set as destroyed.
13061
13062         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
13063         this function to indicate it's win32 only. Put inside #ifdef
13064         G_ENABLE_DEBUG.
13065
13066         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
13067         debugging function. (gdk_event_translate:) Add a default branch
13068         that uses the above function to print debug messages with all
13069         Windows messages symbolically.
13070
13071         * gdk/win32/gdkprivate-win32.h: Declare it, and
13072         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
13073
13074 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
13075
13076         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
13077         public header file.
13078
13079 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
13080
13081         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
13082
13083         * gtk/gtktext.c: made the adjustments no-construct args, simply
13084         provide default adjustments.
13085         (gtk_text_destroy): release adjustments.
13086
13087         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
13088         adjustment argument non-construct.
13089
13090         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
13091         instead of in finalize.
13092         (gtk_progress_get_text_from_value): 
13093         (gtk_progress_get_current_text): 
13094         (gtk_progress_set_value): 
13095         (gtk_progress_get_percentage_from_value): 
13096         (gtk_progress_get_current_percentage): 
13097         (gtk_progress_set_percentage): 
13098         (gtk_progress_configure): ensure an adjustment is present.
13099
13100 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
13101
13102         * gtk/gtkcolorsel.[hc]:
13103         * gtk/gtkcolorseldialog.[hc]:
13104         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
13105         their parent implementation, use bit fields for boolean values, don't
13106         create unused widgets, usage of glib types, braces go on their own
13107         lines, function argument alignment, #include directives etc. etc. etc..
13108
13109         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
13110
13111 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
13112
13113         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
13114
13115         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
13116         of NULL.
13117
13118         * gtk/gtkcombo.c (gtk_combo_item_destroy): don't keep references
13119         to freed data.
13120         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
13121
13122         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
13123         to NULL when the toplevel is getting destroyed.
13124         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
13125         (gtk_menu_destroy): 
13126         (gtk_menu_init): store the information of whether we have to
13127         readd the initial child ref_count during destruction in a new
13128         GtkMenu field needs_destruction_ref_count.
13129
13130         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
13131         here, those reading: learn from my mistake! ;)
13132         in order for set_?adjustment to support a default adjustemnt if
13133         invoked with an adjustment pointer of NULL, the code read (pseudo):
13134         if (v->adjustment) unref (v->adjustment);
13135         if (!adjustment) adjustment = adjustment_new ();
13136         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
13137         now imagine the first unref to actually free the old adjustment and
13138         adjustment_new() creating a new adjustment from the very same memory
13139         portion. here, the latter comparision will unintendedly fail, and
13140         all hell breaks loose.
13141         (gtk_viewport_set_hadjustment):
13142         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
13143         after unreferencing it.
13144
13145         * gtk/gtkcontainer.[hc]: removed toplevel registration
13146         functions: gtk_container_register_toplevel(),
13147         gtk_container_unregister_toplevel() and
13148         gtk_container_get_toplevels() which had wrong semantics
13149         anyways: it didn't reference and copy the list.
13150
13151         * gtk/gtkwindow.c: we take over the container toplevel registration
13152         bussiness now. windows are registered across multiple destructions,
13153         untill they are finalized. the initial implicit reference count
13154         users are holding on windows is removed with the first destruction
13155         though.
13156         (gtk_window_init): ref & sink and set has_user_ref_count, got
13157         rid of gtk_container_register_toplevel() call. add window to
13158         toplevel_list.
13159         (gtk_window_destroy): unref the window if has_user_ref_count
13160         is still set, got rid of call to
13161         gtk_container_unregister_toplevel().
13162         (gtk_window_finalize): remove window from toplevel list.
13163         (gtk_window_list_toplevels): new function to return a newly
13164         created list with referenced toplevels.
13165         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
13166
13167         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
13168         adjustment a non-construct arg.
13169         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
13170         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
13171         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
13172
13173         * gtk/gtkrange.c: added some realized checks.
13174         (gtk_range_destroy): get rid of the h/v adjustments in the
13175         destroy handler instead of finalize. remove timer.
13176         (gtk_range_get_adjustment): demand create adjustment.
13177
13178         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
13179         we simply create them on demand now and get rid of them in
13180         the destroy handler.
13181         (gtk_viewport_destroy): get rid of the h/v adjustments in the
13182         destroy handler instead of finalize.
13183         (gtk_viewport_get_hadjustment): 
13184         (gtk_viewport_get_vadjustment): 
13185         (gtk_viewport_size_allocate): demand create h/v adjustment
13186         if required.
13187
13188         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
13189         gtk_widget_real_destroy () functionality.
13190         (gtk_widget_real_destroy): reinitialize with a new style, instead
13191         of setting widget->style to NULL.
13192
13193 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
13194
13195         * gtk/gtkcalendar.c:
13196         * gtk/gtkbutton.c: ported _get_type() implementation over to
13197         GType, either to preserve memchunks allocation facilities,
13198         or because Gtk+ 1.0 GtkTypeInfo was still being used.
13199
13200         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
13201         over. prepare for ::destroy to be emitted multiple times.
13202         removed reference tracer magic. chain into GObjectClass.shutdown()
13203         to emit ::destroy signal.
13204
13205         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
13206         fundamental.
13207
13208         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
13209         cludge.
13210
13211         * gtk/gtksocket.c:
13212         * gtk/gtkplug.c:
13213         * gtk/gtklayout.c:
13214         * gtk/gtklabel.c:
13215         * gtk/gtkargcollector.c:
13216         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
13217         not being a fundamental anymore, and to work with the new
13218         type system (nuked fundamental type varargs clutter).
13219
13220         * gtk/*.c: install finalize handlers in the GObjectClass
13221         part of the class structure.
13222         changed direct GTK_OBJECT()->klass accesses to
13223         GTK_*_GET_CLASS().
13224         changed direct object_class->type accesses to GTK_CLASS_TYPE().
13225
13226         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
13227         GType. made most of the GTK_*() type macros and Gtk* typedefs
13228         simple wrappers around macros and types provided by GType.
13229         most notably, a significant portion of the old API vanished:
13230         GTK_TYPE_MAKE(),
13231         GTK_TYPE_SEQNO(),
13232         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
13233         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
13234         GTK_TYPE_ARGS,
13235         GTK_TYPE_CALLBACK,
13236         GTK_TYPE_C_CALLBACK,
13237         GTK_TYPE_FOREIGN,
13238         GtkTypeQuery,
13239         gtk_type_query(),
13240         gtk_type_set_varargs_type(),
13241         gtk_type_get_varargs_type(),
13242         gtk_type_check_object_cast(),
13243         gtk_type_check_class_cast(),
13244         gtk_type_describe_tree(),
13245         gtk_type_describe_heritage(),
13246         gtk_type_free(),
13247         gtk_type_children_types(),
13248         gtk_type_set_chunk_alloc(),
13249         gtk_type_register_enum(),
13250         gtk_type_register_flags(),
13251         gtk_type_parent_class().
13252         replacements, where available are described in ../docs/Changes-1.4.txt.
13253         implemented compatibility functions for the remaining API.
13254
13255         * configure.in: depend on glib 1.3.1, use gobject module.
13256
13257 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
13258
13259         * TODO.xml: Various updates to current status.
13260
13261 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
13262
13263         * gtk.m4: Print out version when test succeeds.
13264
13265 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
13266
13267         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
13268         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
13269         
13270         (Original triangle color selector from Simon Budig
13271         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
13272         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
13273         Santiago <mrcooger@cyberverse.com>)
13274
13275         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
13276         out into a separate widget.
13277
13278         * gtk/testgtk.c: Add some checkbuttons for toggling palette
13279         and opacity controls.
13280
13281 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
13282
13283         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
13284         snuck in prematurely.
13285
13286 2000-05-07  Tor Lillqvist  <tml@iki.fi>
13287
13288         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
13289         had deleted a ! operator by mistake, which caused
13290         GDK_SELECTION_CLEAR events never to be generated, which caused
13291         only the first copy to the clipboard from an gtkeditable to
13292         actually cause a copy to the Windows clipboard.
13293
13294 2000-05-06  Tor Lillqvist  <tml@iki.fi>
13295
13296         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
13297         compilation, too. Current mingw gcc distributions include the
13298         necessary headers. Also the necessary IIDs are now in mingw
13299         headers/libraries, and own definitions unnecessary.
13300
13301         More hacking on OLE2 DND, still doesn't work though, and thus
13302         ifdeffed out.
13303
13304         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
13305         here, too.
13306
13307 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
13308
13309         * gdk/nanox/*: nano-X port work in progress.
13310         * gdk/simple.c: simple test for Gdk.
13311         * README.nanox: notes about the port: read this first!
13312         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
13313         with nano-X.
13314
13315 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
13316
13317         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
13318         gdk_window_clear() into common code, implement in terms of
13319         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
13320         not redirected to the backing rectangle.
13321
13322 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
13323
13324         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
13325         EXTRA_DIST. It does not work well when the file that
13326         everything depends on is not in the tarball.
13327
13328 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
13329
13330         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
13331         with recursion where process_updates() is called from
13332         an expose handler. (GtkTextView is highly broken in
13333         doing this, but it should work, so it is a nice test
13334         case.)
13335
13336 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
13337
13338         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
13339         handle the case where updates are queued during processing of
13340         updates.
13341
13342 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
13343
13344         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
13345         window is on gdk_display - use that instead of segfaulting.
13346
13347 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
13348
13349         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
13350         broken and require an empty arg, give it to them.
13351
13352 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
13353
13354         * gtk/gtklabel.h: indentation fixes.
13355
13356 2000-05-02  Tor Lillqvist  <tml@iki.fi>
13357
13358         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
13359         draw too narrow or too low arcs, they seem to fail, at least with
13360         some display drivers.
13361
13362         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
13363
13364         Large changes to the Win32 backend, partially made necessary by
13365         the changes to the backend-independent internal
13366         structures. Attempts to implement similar backing store stuff as
13367         on X11. The current (CVS) version of the Win32 backend is *not* as
13368         stable as it was before the no-flicker branch was merged. A
13369         zipfile with that version is available from
13370         http://www.gimp.org/win32/. That should be use by "production"
13371         code until this CVS version is usable. (But note, the Win32
13372         backend has never been claimed to be "production quality".)
13373
13374         * README.win32: Add the above comment about versions.
13375
13376         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
13377
13378         * gdk/gdk.def: Update.
13379
13380         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
13381         presumably be replaced by some more better mechanism as 1.4 gets
13382         closer to release shape.
13383
13384         * gdk/makefile.{cygwin,msc}: Update.
13385
13386         * gdk/win32/*.c: Correct inclusions of the backend-specific and
13387         internal headers. Change code according to changes in these. Use
13388         gdk_drawable_*, not gdk_window_* where necessary.
13389
13390         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
13391         our old DND.
13392
13393         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
13394         to interpret single characters as UTF-8. Thanks to Hans Breuer.
13395         Use correct function name in warning messages.
13396
13397         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
13398         GSourceFuncs gdk_event_prepare and gdk_event_check.
13399         (gdk_event_get_graphics_expose): Do implement, use
13400         PeekMessage. Thanks to Hans Breuer.
13401         (event_mask_string): Debugging function to print an GdkEventMask.
13402         (gdk_pointer_grab): Use it.
13403
13404         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
13405         (old) book I used claimed was Hangul actually is CJK Unified
13406         Ideographs Extension A. Also, Hangul Syllables were missing.
13407         Improve logging.
13408
13409         * gdk/win32/gdkgc-win32.c: Largish changes.
13410
13411         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
13412         g_win32_getlocale() from GLib, and not setlocale() to get current
13413         locale name.
13414
13415         * gdk/win32/gdkprivate-win32.h
13416         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
13417         gdkwin32.h, similarily as in the X11 backend.
13418
13419         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
13420         assignment was used instead of equals in if test. Thanks to Hans
13421         Breuer.
13422
13423         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
13424         the X11 version.
13425
13426         * gdk/win32/makefile.{cygwin,msc}
13427         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
13428         path to the Win32 headers that works also with the mingw compiler.
13429
13430         * gtk/gtkstyle.c: Include <string.h>.
13431
13432 2000-04-26  Havoc Pennington  <hp@redhat.com>
13433
13434         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
13435         replacing the broken gtk_label_get ()
13436
13437 2000-04-15  Havoc Pennington  <hp@pobox.com>
13438
13439         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
13440         this keeps scanner scripts from getting confused.
13441
13442         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
13443         data, rather than void
13444
13445 2000-04-15  Tor Lillqvist  <tml@iki.fi>
13446
13447         * gtk/gtkclist.c (gtk_clist_motion)
13448         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
13449         with is_hint FALSE, get x and y from the event. They used to be
13450         used uninitialised. The Win32 backend never sends motion events
13451         marked as hints. This for instance fixes the annoying file and
13452         font selector behaviour in the Win32 version.
13453
13454 2000-04-14  Tor Lillqvist  <tml@iki.fi>
13455
13456         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
13457         gtk_private_n_signals variables, they are used by some software,
13458         sigh.
13459
13460         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
13461         installation directory from the Registry, where the installer
13462         should have put it.
13463
13464 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
13465
13466         * gdk/x11/Makefile.am: Fix problem with installation directory for
13467         gdkx.h
13468
13469         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
13470         <mrcooger@cyberverse.com> so that when selecting menus with the
13471         mouse, the first item will not be selected, but when selecting
13472         with an accelerator, or navigating left-right on a menubar with
13473         the menus popped up, the first item will be selected.
13474
13475 2000-04-05  Dan Damian  <dand@dnttm.ro>
13476
13477         * configure.in: Added "ro" to ALL_LINGUAS.
13478
13479 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
13480
13481         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
13482         indentation.
13483
13484         * Makefile.am (EXTRA_DIST): Fix typo.
13485
13486         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
13487         to catch gdkconfig.h
13488
13489         * gtk/gtkitemfactory.c: Added FIXME.
13490
13491 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
13492
13493         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
13494         s/return_if_fail/return_val_if_fail/g and add a return value.
13495
13496 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
13497
13498         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
13499         merge slipup.
13500
13501         * gdk/gdkinput.h: Fix missing line from merge.
13502
13503 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
13504
13505         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
13506         instead of gdkprivate.h.
13507
13508 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
13509
13510         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
13511         parent class to correctly be GtkDialogClass.
13512
13513 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
13514
13515         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
13516         toplevel windows and their immediate children by their parents,
13517         since the size of toplevel windows is out of our immediate
13518         control and we don't get any real benefit from trying to track
13519         this size for clipping.
13520
13521         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
13522         for input_only windows.
13523
13524         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
13525         to fix some hacks and make sure that we don't try to set the
13526         background of input only windows.
13527
13528 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
13529
13530         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
13531         the _really_ internal stuff, and leave gdkprivate.h for the fake private
13532         stuff that we've traditionally exposed.
13533
13534         * gdk/**.c: Use gdkinternals.h where appropriate.
13535
13536         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
13537         not include gdkprivate-x11.h, move all stuff of conceivable public
13538         interest into gdkx.h; keep all really private stuff in
13539         uninstalled header gdkprivate-x11.h.
13540
13541         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
13542         image->image_put on windows through a new function _gdk_window_draw_image()
13543         to allow us to do backing store for images. (Sort of ugly)
13544
13545         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
13546         contexts locally so that we can offset them properly when drawing 
13547         onto backing pixmaps.
13548
13549         * gdk/gdkinput.h: Reindented
13550
13551         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
13552         pixmap or color for the window, so we can properly initialize
13553         our double-buffer pixmaps, and also so that we temporarily set
13554         a background of None while scrolling.
13555
13556         * gdk/gdkregion.h: Revise region boolean operators to have an
13557         interface that is actually convenient - switch from creating new
13558         regions on every op, to "methods" that modify existing regions
13559         (A = A OP B). 3 argument forms which allow dest == src, would also
13560         be possible, but the current interfaces seem to map nicely
13561         onto what needs to be done. (There is quite a lot of region
13562         code in GDK now.)
13563
13564         * gdk/gdkregion.h: Add constructor from rectangle and a copy
13565         operator.
13566
13567         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
13568         gdkpoly-generic.h: Copy region code from Xlib, switch it over
13569         to 32 bit coordinates, modify it to be mostly GTK+ style
13570         and to have interfaces that match gdkregion.h.
13571
13572         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
13573         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
13574         create a backing pixmap and redirect all drawing to
13575         that backing pixmap until a matching gdk_window_end_paint().
13576
13577         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
13578         Create a special drawable class for GtkWindow's that 
13579         redirects the drawing to the backing pixmap as necessary
13580         and then calls the real operations in _gdk_windowing_window_class.
13581
13582         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
13583         Store invalid region for each window. Generate expose events for invalid
13584         region in an idle. This replaces both the expose compression
13585         and the redrawing queuing in GTK+. It is both more efficient and
13586         simpler than either one individually and far more so then the
13587         combination.
13588
13589         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
13590         Emulate 32 bit coordinates for windows with 16 bit coordinates
13591         by offsetting drawing, guffaw scrolling techniques and
13592         mapping/unmapping child windows as necessary.
13593
13594         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
13595         where, when invalid regions are processed, the region is stored,
13596         and if expose events come in that are detectably duplicate
13597         the processed exposes (by comparison of event serial numbers),
13598         the stored region is subtracted out of those exposes.
13599
13600         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
13601         regions newly exposed when scrolling or resizing windows.
13602         This, combined with forcing processesing of queued invalidated
13603         regions, gives nice flicker-free scrolling.
13604
13605         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
13606         invalidated regions after every scroll.
13607
13608         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
13609         emulation in GDK. Its, for all practical purposes just a
13610         GtkViewport/GtkFixed hybrid now.
13611
13612         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
13613         (16-bit) structures as necessary instead of just casting.
13614
13615         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
13616         in terms of the structures from gdkregion-generic.c, using appropriate
13617         offsets from GDK to X11 coordinates. Cache clip mask and
13618         origin and ts origin locally and only flush to the server
13619         when drawing, to avoid constantly setting and resetting these
13620         values when offsetting GC's for scrolling and backing pixmaps.
13621
13622         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
13623
13624         * gtk/gtkcontainer.c: Call process_all_updates at end
13625         of resizing to reduce flicker. (Avoids having redraw
13626         lag arbitrarily behind resize under some circumstances)
13627
13628         * gtk/gtkentry.c: Remove old backing store code, and simply take
13629         advantage of the new backing store capabilities of GDK.
13630
13631         * gtk/gtkmain.c: Simple implementation of widget backing
13632         store - simply push a paint while handling each expose.
13633         (Should really be configurable widget for widget.)
13634         
13635         * gtk/gtkwidget.c: Remove all the old complicated redraw
13636         code, and simply invalidate the GDK windows from
13637         gdk_window_queue_clear(), etc. (Sigh, so much carefully
13638         debugged complexity ... gone to the winds.)
13639
13640         Remove all the code for suppressing expose events while
13641         resizes are pending; this isn't needed since the invalid
13642         areas won't be processed until after the resizes are
13643         processed, since they are in a lower priority idle.
13644
13645 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
13646
13647         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
13648         and height of dest rectangle for non-intersecting rectangles.
13649
13650 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
13651
13652         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
13653         for GdkRectangle.
13654
13655 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
13656
13657         * gdk/gdk{events,image,private,types,window}.h
13658          gdk/x11/gdkinputprivate.h: Change all coordinates
13659          from int16 to int. Also, Change width and height from
13660          unsigned to signed to avoid all the stupid C 
13661          signedness bugs.
13662
13663 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
13664
13665         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
13666         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
13667         Add some more detailed checking.
13668
13669         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
13670         New function to retrieve the depth of a drawable.
13671
13672         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
13673         field, reorder fields to save memory. 
13674
13675 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
13676
13677         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
13678         of the background image instead of scaling the background down to
13679         a line.
13680
13681         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
13682         which temporarily set slider to wrong size.
13683
13684         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
13685         queue_clear().
13686
13687 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
13688
13689 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
13690
13691         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
13692
13693 2000-03-17  Tor Lillqvist  <tml@iki.fi>
13694
13695         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
13696         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
13697
13698         * gdk/win32/gdkfont-win32.c
13699         * gdk/win32/gdkproperty-win32.c
13700         * gdk/win32/gdkselection-win32.c
13701         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
13702         now declared such.
13703
13704 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
13705
13706         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
13707
13708 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
13709
13710         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
13711         is called without trapping X errors.
13712
13713 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
13714
13715         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
13716         way into the fontset lists.
13717
13718 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
13719
13720         * gtk/gtkthemes.h: add extern "C" scope.
13721
13722 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
13723
13724         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
13725         to make appends to the list constant. (gtk-guy-990901-0.patch)
13726
13727 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
13728
13729         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
13730         for the typename hash table.
13731
13732 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
13733
13734         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
13735         to make sure we never divide by zero. 
13736         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
13737
13738 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
13739
13740         * gtk/gtkfontsel.c: Apply patch from
13741         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
13742         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
13743
13744         Also, some cleanups in atom handling.
13745
13746 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
13747
13748         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
13749         not GtkWidget.
13750
13751 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
13752
13753         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
13754         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
13755         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
13756         more guint wrap-around bugs before going to bed.
13757
13758 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
13759
13760         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
13761         guint wrap arounds in allocation.width.
13762
13763         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
13764         process untill we fit the allocation given.
13765
13766 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
13767
13768         * gtk/gtkwidget.c:
13769         (gtk_widget_unrealize): guard widget access with ref/unref
13770         around signal emission.
13771         (gtk_widget_hide): same here, but also check its destroyed
13772         state before queueing a resize.
13773
13774 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
13775
13776         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
13777         of gtk_default_insensitive_bg as insensitive base color.
13778
13779         * gtk/gtktext.c (gtk_text_style_set): set the background color according
13780         to the widget's state.
13781         (gtk_text_realize): same here.
13782         (gtk_text_state_changed): same here.
13783         (draw_bg_rect): compare background color against base[] from
13784         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
13785
13786 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
13787
13788         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
13789         grabs are active, unless a delete event is send to the toplevel
13790         of the currently grab holding widget.
13791
13792 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
13793
13794         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
13795         debugging g_print's.
13796
13797 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
13798
13799         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
13800         ever make the scrolled-window requisition ever depend on the 
13801         visibility state of the scrollbars for the AUTOMATIC policy. 
13802         This breaks the GTK+ requisition model, and causes loops.
13803
13804 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
13805
13806         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
13807         the default font to avoid problems with XFree86-4.0 where the
13808         default charset is iso10646-1, not iso8859-1.
13809
13810 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
13811
13812         * acinclude.m4
13813         * config.guess
13814         * config.sub
13815         * ltconfig
13816         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
13817
13818         * gtk/Makefile.am: minor cosmetic consistency tweak
13819
13820 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
13821
13822         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
13823         the activate_time to 0, so that we handle a quick
13824         press/release press/release properly and don't suppress
13825         the second release. (Red Hat bug #7545)
13826
13827 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
13828
13829         * gtk/gtkctree.c (row_delete):
13830         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
13831         bugs with destruction notifier, *always* update internal
13832         structures *before* calling user code.
13833
13834 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
13835
13836         A few more fixes for bug #5487, #2051, #2677.
13837         * gtk/gtkclist.c : 
13838         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
13839         not GDK_BUTTON_PRESS.
13840         (resync_selection): resync only if selection_mode is
13841         GTK_SELECTION_EXTENDED
13842         * gtk/gtkctree.c (resync_selection): same here
13843
13844 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
13845
13846         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
13847         gdk_drag_get_selection() and gtk_menu_detach().
13848
13849         [ From Jeroen Ruigrok/Asmodai ]
13850
13851 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
13852
13853         * gtk/gtknotebook.c (gtk_notebook_size_request): 
13854         page->tab_label can be NULL.
13855
13856 2000-01-25  Havoc Pennington  <hp@pobox.com>
13857         
13858         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
13859         arg is boolean
13860
13861         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
13862
13863         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
13864
13865         * gdk/gdkproperty.c (gdk_property_get): return boolean
13866
13867         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
13868
13869         * gdk/gdkim.c (gdk_im_ready): return boolean
13870
13871         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
13872
13873         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
13874         glib clash, should fix glib)
13875
13876         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
13877         (gdk_get_show_events): return gboolean, and canonicalize 
13878         to TRUE/FALSE
13879
13880         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
13881         colormap is private
13882         (gdk_colors_alloc): gboolean whether to be contiguous
13883         (gdk_color_equal): return gboolean since we are a predicate
13884         and not a qsort() (this looks semi-wrong due to glib breakage,
13885         IMO glib should be fixed)
13886         
13887         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
13888         (gdk_get_use_xshm): return gboolean
13889         (gdk_pointer_is_grabbed): return gboolean
13890
13891         * gdk/gdk.h: Change prototypes to match all the above changes,
13892         and re-run egtk-format-protos as required.
13893
13894 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
13895
13896         * gtk/gtkctree.c (resync_selection): 
13897         * gtk/gtkclist.c (resync_selection):
13898
13899         Return immediately if clist->drag_pos < 0. This is a workaround
13900         for the corrupt state that the clist gets into when a
13901         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
13902
13903         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
13904         
13905         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
13906         variable from recent commit.
13907
13908 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
13909
13910         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
13911
13912 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
13913
13914         * gtk/Makefile.am: prefix all autogenerated source that get build in
13915         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
13916         in builddir. since we subsequently cd into srcdir for autogeneration,
13917         the paths have to be stripped from the target file names, thusly we
13918         use $(@F) as target names now.
13919         put a comment about configure.in's --disable-rebuilds option,
13920         which can be used for non-writable source directories, for development
13921         setups though, srcdir has to be *writable*.
13922
13923 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
13924
13925         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
13926           Finish the job of allowing event to be NULL.
13927           (Fixes bug #4283, reported by Chris Blizzard)
13928
13929         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
13930           things so that the cursor appears on screen, properly
13931           take into account INNER_BORDER.
13932           (Fixes bug #4754, reported by Antonio Campos)
13933
13934 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
13935
13936         * gtk/gtknotebook.c (gtk_notebook_map): Don't
13937           show the tab_label unless it itself is visible.
13938
13939           gtk/gtknotebook.c (gtk_notebook_size_request):
13940           Do a better job of making sure that the visibility
13941           of the tab label corresponds to whether it should
13942           be mapped or not.
13943
13944 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
13945
13946         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
13947           Use the requisition, not the allocation, since the
13948           allocation has not necessarily been computed yet.
13949           (Pointed out by Eugene Osintsev)
13950
13951 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
13952
13953         * gtk/gtkstyle.c (gtk_style_new): Dont' set
13954           style/base[GTK_STATE_INSENSITIVE] both to
13955           gtk_default_insensitive_bg!
13956           (Bug #2187, reported by Jonathan Blandford)
13957
13958         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
13959           Add Alt_L, Alt_R to list of invalid accelerators.
13960           (Bug #3736, reported by Vlad Harchev)
13961
13962 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
13963
13964         * gtk/gtkfilesel.c (open_ref_dir): Fix several
13965         bugs which occured after an attempt to open 
13966         invalid home directory left cmpl_state->reference_dir == NULL.
13967
13968          - completion on files in home directory didn't work
13969          - completion on an empty string caused  segfault
13970
13971          (Bug #3678, reported by Steve Ratcliffe)
13972
13973         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
13974         cut and paste error that was causing scales to
13975         be incorrectly positioned.
13976         (Bug #2956,
13977          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
13978
13979 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
13980
13981         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
13982         when checking for dcgettext, if we've found we needed
13983         it for dgettext.
13984 +
13985 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
13986
13987         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
13988         queue_clear on NO_WINDOW widgets during a reparent,
13989         since at that point the window and widget heirarchies
13990         are out of sync. This stops crashing in some cases
13991         (the scrolled window reparent test, for instance), and
13992         _probably_ won't cause drawing errors.
13993
13994         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
13995         test do what it was supposed to do and be robust against
13996         window closings, etc. (Bug #2443)
13997
13998 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
13999
14000         * gtk/gtkentry.c: Fix return values on mouse events.
14001         (Bug #2686, Sky <seb_sky@yahoo.com>)
14002
14003         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
14004         (pointed out by George Lebl)
14005
14006         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
14007         (From Ettore Perazzoli  <ettore@helixcode.com>)
14008  
14009 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
14010
14011         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
14012         clicks between rows or outside calender area correctly.
14013         (Patch from Damon Chaplin)
14014
14015         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
14016         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
14017           Call destroy function when overwriting existing data. 
14018           (Pointed out by Damon Chaplin)
14019
14020 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
14021
14022         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
14023           which was causing problems on various systems with Xmu.
14024           This hasn't been needed for a very long time.
14025           (Fixes #1185 3167)
14026
14027 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
14028
14029         * gdk/gdki18n.h: Include <ctype.h> when defining
14030           gdk_isw* in terms of is* as a fallback.
14031           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
14032
14033 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
14034
14035         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
14036           realize the widget when it is size allocated!
14037           (old, old bug)
14038
14039         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
14040           Removed unused call to gdk_window_get_size() that
14041           showed up when the above was fixed.
14042
14043 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
14044
14045         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
14046           fix up widget->window when the widget is a
14047           NO_WINDOW container widget.
14048
14049 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
14050
14051         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
14052           to account for the fact that feof() does _not_ 
14053           return TRUE on errors, and thus avoid infinite loops
14054           when trying to use gdk_pixmap_create_from_xpm()
14055           on unreadable values.
14056
14057 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
14058
14059         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
14060
14061 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
14062
14063         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
14064           gdk_gc_set_dashes to take gint8 instead of gchar to
14065           make it clearer that it is _not_ a NULL terminated string.
14066
14067         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
14068           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
14069           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
14070           arguments.
14071
14072 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
14073
14074         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
14075         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
14076         background size relative to our allocation, guard against small
14077         allocations, we may have not yet been size allocated.
14078
14079 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
14080
14081         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
14082         not just version == 3. We implement all 3 + most of 4 - 
14083         (we don't support matching text/plain;charset=iso-8859-1
14084         to a dest that expects text/plain). We'll still advertise
14085         3 to be safe, but any client implementing version >= 3
14086         must interoperate with 3.
14087         
14088 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
14089
14090         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
14091         background and gc members, add a warning in gtk_tooltips_set_color()
14092         indicating that this function is deprecated.
14093
14094 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
14095
14096         * docs/gtkfaq.sgml: FAQ Update:
14097           - Minor cleanups (Emmanuel, me)
14098           - New questions:
14099                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
14100                 How can I retrieve the text from a GtkMenuItem? (timj)
14101                 How do I validate/limit/filter the input to a GtkEntry? (me)
14102                 Memory does not seem to be released when I free the list
14103                         nodes I've allocated (timj)
14104
14105 2000-03-07  Tor Lillqvist  <tml@iki.fi>
14106
14107         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
14108         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
14109         for which it is no use to call GetLastError onWin9x.
14110         (gdk_other_api_failed) New function, for general error
14111         reporting without calling GetLastError.
14112         (gdk_win32_api_failed) OTOH, this function always calls
14113         GetLastError. (gdk_win32_last_error_string) Remove this function,
14114         GLib has the equivalent now.
14115
14116         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
14117         call them with function name, file name and line number in the
14118         arguments.
14119
14120         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
14121         functions.
14122         
14123         * gtk/gtk.def: Add some missing entry points.
14124
14125         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
14126         gtk_paned_set_gutter_size, which don't exist any longer, as void.
14127         
14128         Fixes by Hans Breuer:
14129
14130         * gdk/makefile.msc: Update for debugging.
14131
14132         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
14133         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
14134         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
14135         in the dash_list.
14136
14137         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
14138         the x11 backend.
14139
14140         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
14141
14142         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
14143
14144 2000-03-04  Tor Lillqvist  <tml@iki.fi>
14145
14146         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
14147         just pixel value of background colour.
14148
14149         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
14150         containing code snippet previously duplicated in a couple of
14151         places.
14152         
14153         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
14154         gdk_colormap_color.
14155
14156         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
14157         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
14158         events for autorepeated Shift, Control and Alt keys. Use
14159         gdk_colormap_color.
14160
14161         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
14162         pointer is inside the window the cursor of which we are setting,
14163         call SetCursor immediately.
14164
14165         * gdk/win32/makefile.cygwin
14166         * gtk/makefile.cygwin: If we don't have the build number stamp
14167         file, use zero.
14168
14169         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
14170         gtk_paned_set_gutter_size as empty.
14171
14172         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
14173         
14174 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
14175
14176         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
14177           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
14178           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
14179           docs/gtk_tut.sgml docs/gtk.texi TODO:
14180
14181           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
14182
14183 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
14184
14185         * gtk/gtkcalendar.c: Implement num_marked_dates,
14186           and don't emit mutiple day_selected signals on
14187           month_prev.
14188
14189 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
14190
14191         * docs/make-todo (lineno): let title and logo be configurable so
14192         that GNOME can use this script too.
14193
14194         * TODO.xml: added logourl and a title
14195
14196 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
14197
14198         * TODO.xml: Added some UI items, and an explanatory
14199         comment at the top of the file.
14200
14201 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
14202
14203         * TODO.xml: some updates, added abunch of new entries.
14204         a note for those fiddeling with this file, when done
14205         with it, invoke:
14206         $ ./docs/make-todo TODO.xml >/dev/null
14207         and correct output errors before comitting changes.
14208
14209 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
14210
14211         * TODO.xml: Added XML-structured TODO file.
14212         * docs/make-todo: python script to turn TODO.xml into
14213           pretty XML output. 
14214
14215 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
14216
14217         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
14218         the function to let it draw the seven dots, instead of the old,
14219         much maligned, method.
14220         (draw_dot): New function to draw a dot.
14221
14222         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
14223         to draw the handle inside the border width as opposed to outside.
14224         Use paint function instead of gdk_draw_point.
14225
14226         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
14227         to draw the handle inside the border width as opposed to outside.
14228         Use paint function instead of gdk_draw_point.
14229
14230         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
14231         Change indenting to be more GTK like.
14232
14233 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
14234
14235         * docs/gtk_tut.sgml: New section on GtkCalendar
14236         * examples/calendar: Update example code
14237
14238 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
14239
14240         * docs/gtkfaq.sgml: FAQ Update
14241
14242 2000-02-19  Anders Carlsson  <andersca@gnu.org>
14243
14244         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
14245         to prevent the scroll event to be propagated upwards.
14246
14247 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
14248
14249         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
14250         OwnerGrabButtonMask from button entries for
14251         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
14252
14253         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
14254         to the event mask (which will result in button/press release
14255         being added to the event mask on Unix) so scrolling works
14256         for layouts in scroll windows.
14257
14258         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
14259
14260         Patch from Anders Carlsson  <andersca@gnu.org> to add
14261         a scroll event.
14262
14263         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
14264         scrolling to the "Test Scrolling" part of testgtk.
14265  
14266         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
14267  
14268         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
14269         it against GDK_SCROLL.
14270  
14271         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
14272         way of mouse wheel scrolling.
14273  
14274         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
14275  
14276         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
14277  
14278         * gtk/gtkmain.c: Removed previous mouse wheel hack.
14279  
14280         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
14281         gdk_event_mask_table.
14282  
14283         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
14284         GdkEventScroll handler.
14285  
14286         * gdk/gdkevents.h: Added GdkEventScroll structure.
14287  
14288 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
14289
14290         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
14291         and Anders Carlsson to change the Paned widgets so that they
14292         can be dragged from anywhere along the length. Also change
14293         the way that this is drawn to make this apparent.
14294
14295         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
14296         from George Lebl to check that option_menu->menu is present
14297         before getting history.
14298
14299 2000-02-14  Tor Lillqvist  <tml@iki.fi>
14300
14301         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
14302         before the assertion for non-NULL segment list.
14303
14304         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
14305         Seems that pattern brushes *must* be 8x8 pixels! At least on my
14306         machine, but it might be display driver dependent. Sigh, so make
14307         sure the stipple is that size. Does Windows suck or what?
14308
14309         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
14310         places.
14311
14312 2000-02-13  Havoc Pennington  <hp@pobox.com>
14313
14314         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
14315         refcount to 1
14316         (gdk_cursor_new): init refcount to 1
14317
14318         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
14319
14320 2000-02-13  Tor Lillqvist  <tml@iki.fi>
14321
14322         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
14323         so that we don't have to do unnecessary settings to the HDC.
14324
14325         * gdk/win32/gdkdrawable-win32.c
14326         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
14327         gdk_gc_predraw.
14328
14329         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
14330         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
14331         GDI paths, call WidenPath to get the outline of the stroken path,
14332         and then fill the outline (with the brush that was built from the
14333         stipple).
14334
14335         * gdk/win32/gdkgc-win32.c: Factor out common code from
14336         _gdk_win32_gc_new and gdk_win32_gc_set_values into
14337         gdk_win32_gc_values_to_win32values. Use correct colour for
14338         SetBkColor() (Until now the code actually used a random colour in
14339         the call to SetBkColor()... but that didn't show up as not many
14340         GDI APIs use the background colour. Pattern (opaque stippled)
14341         brushes do.)
14342
14343         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
14344         gdk_win32_api_failed): New functions for error logging.
14345
14346         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
14347         WIN32_API_FAILED to call them, passing function or file name and
14348         line number.
14349
14350         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
14351
14352         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
14353         GdkColor for foreground and background in GdkGCWin32Data.
14354
14355         * gdk/makefile.cygwin: Link in the resource object separately.
14356
14357         * gdk/win32/rc/gdk.rc
14358         * gtk/gtk.rc (New file)
14359         * gdk/win32/makefile.cygwin
14360         * gtk/makefile.cygwin: Update build number in DLLs automatically,
14361         as in GLib.
14362
14363 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
14364
14365         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
14366         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
14367         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
14368         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
14369         parameters given and cursor->ref_count. coding style fixups.
14370
14371         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
14372         not GtkWidget.
14373         
14374         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
14375         fix up widget macros and add _GET_CLASS() variant.
14376         
14377         * gtk/*.c: some GtkType fixups.
14378
14379 2000-02-09  Tor Lillqvist  <tml@iki.fi>
14380
14381         * gdk/win32/gdkproperty-win32.c
14382         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
14383         were reversed.
14384
14385 2000-02-04  Tor Lillqvist  <tml@iki.fi>
14386
14387         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
14388         g_filename_to_utf8 to convert the font names Windows gives us from
14389         whatever is the default codepage to UTF-8.
14390         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
14391         in the other direction.
14392
14393         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
14394         error in debugging output.
14395
14396 2000-02-02  Tor Lillqvist  <tml@iki.fi>
14397
14398         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
14399         and height parameters to gdk_window_clear_area(). Not minus one.
14400
14401 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
14402
14403         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
14404         checks if the widget passed to gtk_drag_get_data() was not the
14405         dest widget.
14406
14407 2000-02-01  Tor Lillqvist  <tml@iki.fi>
14408
14409         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
14410         g_filename_from_utf8 functions (which were added a moment ago to
14411         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
14412         size buffers.
14413
14414         gtk_file_selection_get_filename returns the filename in the C
14415         runtime encoding. It calls g_filename_from_utf8, but copies the
14416         returned string to a static buffer, which is returned. I think
14417         this is better than returning the result from g_filename_from_utf8
14418         directly, which would mean all apps that use it would have to free
14419         the return value. Or should this function care about this issue at
14420         all? Maybe a new function with clearly defined semantics.
14421
14422         * gtk/gtkfilesel.h: Add comment about
14423         gtk_file_selection_get_filename returning the filename in the C
14424         runtime's encoding.
14425
14426         * README.win32
14427         * gdk/gdk.def
14428         * gdk/makefile.{cygwin,msc}
14429         * gtk/gtk.def: Updates.
14430
14431         * gdk/gdkcursor-win32.c: Initialise refcount.
14432
14433 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
14434
14435         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
14436
14437 2000-01-30  Havoc Pennington  <hp@pobox.com>
14438
14439         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
14440         destroy
14441
14442         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
14443
14444         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
14445         implemented in platform-specific code
14446
14447         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
14448
14449         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
14450         underscore in front
14451
14452         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
14453         put an underscore in front
14454
14455         * gdk/gdkcursor.c: new file, implements
14456         gdk_cursor_ref/gdk_cursor_unref
14457
14458         * gdk/gdkcursor.h: Refcount GdkCursor
14459
14460         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
14461
14462 2000-01-29  Tor Lillqvist  <tml@iki.fi>
14463
14464         * gdk/gdkwindow.h
14465         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
14466
14467 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
14468
14469         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
14470         structures to properly inherit from GtkWidget not GtkBin.
14471
14472 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
14473
14474         * gtk+.spec.in: Added lib/gtk+/include/* to %files
14475         (bug #5178 - Peter Wainright)
14476         
14477         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
14478         so that it will be installed.
14479         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
14480
14481 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
14482
14483         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
14484         for the GtkStyleClass vtable const.
14485
14486         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
14487         take a const string argument like GtkTranslateFunc. This will
14488         require changes in use code.
14489
14490 2000-01-19  Tor Lillqvist  <tml@iki.fi>
14491
14492         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
14493         semantics (to mimic the X11 backend, which just calls XClearArea)
14494         is to check for zero width (and height), and in that case use the
14495         window's width minus x (height minus y). This fixes for instance
14496         some redraw problems with gtkclist, which were easily noticeable
14497         in the gtk file selection widget.
14498
14499         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
14500         windows.
14501
14502 2000-01-13  Tor Lillqvist  <tml@iki.fi>
14503
14504         * configure.in
14505         * gdk/Makefile.am
14506         * gdk/x11/Makefile.am
14507         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
14508         (bug #5177).
14509         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
14510         out later.
14511
14512 2000-01-09  Tor Lillqvist  <tml@iki.fi>
14513
14514         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
14515         WM_MOVE for iconified or invisible windows. This fixes various
14516         problems when minimising windows. Thanks to Bernd Herd.
14517
14518 2000-01-05  Tor Lillqvist  <tml@iki.fi>
14519
14520         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
14521         backend's draw_lines method, not draw_points.
14522
14523 2000-01-02  Tor Lillqvist  <tml@iki.fi>
14524
14525         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
14526         before Owen's reorganisation: Don't have queued_events and
14527         queued_tail statics in this file, but use gdk_queued_events and
14528         gdk_queued_tail. This makes exposure event compression work again.
14529
14530         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
14531         seem to be needed?
14532
14533 1999-12-30  Tor Lillqvist  <tml@iki.fi>
14534
14535         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
14536         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
14537         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
14538         doesn't do anything.
14539
14540         * gdk/gdk.def: Add gdk_xid_table_insert.
14541
14542         * gdk/win32/gdkprivate-win32.h
14543         * gdk/win32/gdkevents-win32.c
14544         * gdk/win32/gdkinput-win32.c
14545         
14546         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
14547         extension_events field in the GdkWindowWin32Data struct. Use only
14548         the extension_events field in GdkWindowPrivate. Previously one was
14549         set, and the other one tested, which broke tablet
14550         functionality. Thanks to Keishi Suenaga for pointing this out.
14551
14552 1999-12-18  Tor Lillqvist  <tml@iki.fi>
14553
14554         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
14555         When handling a single character (text length == 1), don't handle
14556         it as if it was UTF-8.
14557
14558 1999-12-11  Tor Lillqvist  <tml@iki.fi>
14559
14560         * Makefile.am: Distribute README.win32.
14561         
14562         * gdk/Makefile.am
14563         * gdk/win32/Makefile.am: Distribute Win32 files.
14564
14565         * gdk/makefile.msc: New file.
14566
14567         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
14568         after label).
14569
14570         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
14571         gdk_error_code as GDKVAR, as they are referred outside GDK.
14572
14573         * gdk/win32/makefile.msc: Update.
14574
14575         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
14576         tweaks. Check only if at least one of those Unicode subrange bits
14577         we care for is set. If no code page bits are set, guess (wildly)
14578         based on the charset.
14579
14580         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
14581
14582         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
14583         non-NULL.
14584
14585         * gtk/gtkdnd.c
14586         * gtk/gtklayout.c
14587         * gtk/gtkplug.c
14588         * gtk/gtkselection.c
14589         * gtk/gtksocket.c
14590         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
14591         appropriate. There must be a cleaner way to handle this?
14592
14593         * gtk/gtkrc.c: Must include windows.h on Win32.
14594
14595         * gtk/testgtk.c: No need to include gdkx.h.
14596
14597         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
14598
14599 1999-12-07  Tor Lillqvist  <tml@iki.fi>
14600
14601         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
14602         the rbearing is set to the same as the width, but this should be
14603         fixed.
14604
14605 1999-12-06  Tor Lillqvist  <tml@iki.fi>
14606
14607         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
14608         function. If Windows doesn't tell us what Unicode subranges a font
14609         covers, guesstimate based on the codepages it covers. This will
14610         hopefully help those Windows versions or fonts that don't give us
14611         any useful Unicode subrange information with GetTextCharsetInfo.
14612         Call this function in gdk_font_load_internal.
14613
14614         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
14615         minor changes.
14616
14617 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
14618
14619         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
14620         New function, long needed.
14621
14622 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
14623
14624         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
14625         only_if_exists argument of gdk_atom_intern to
14626         bool.
14627
14628 1999-11-25  Tor Lillqvist  <tml@iki.fi>
14629
14630         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
14631         Fix two copy&paste errors.
14632
14633         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
14634         win32 has changed.
14635
14636         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
14637         GdkWin32SingleFont struct.
14638
14639         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
14640         subranges of loaded fonts. Clear font signature first, in case
14641         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
14642         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
14643
14644         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
14645         Unoffset clip region.
14646
14647 1999-11-23  Tor Lillqvist  <tml@iki.fi>
14648
14649         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
14650         event->any.window before calling filter functions.
14651
14652 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
14653
14654         * gtk/gtkgamma.h: Adapt cast macros to standard.
14655
14656 [ Merges from 1.2 ]
14657
14658 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
14659
14660         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
14661         If translation does not include a '/', use entire
14662         translation instead of crashing.
14663
14664 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
14665
14666         * docs/gtk_tut.sgml:
14667         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
14668
14669 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
14670
14671         * gtk/gtkselection.c (gtk_target_list_remove): Use
14672         g_list_remove_link, not g_list_remove.
14673
14674         [ From Geert Bevin <gbevin@thunderstorms.org> ]
14675         
14676 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
14677
14678         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
14679         statement upon unselection (how the heck did that slip in?).
14680
14681 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
14682
14683         * gtk/gtktext.c (gtk_text_freeze): 
14684         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
14685         in frozen state (and aparently crashes). patch provided by Anders
14686         Melchiorsen <and@kampsax.dtu.dk>.
14687
14688 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
14689
14690         * fix insensitive default/focus widget activation,
14691         reported by Matt Goodall <mgg@isotek.co.uk>.
14692
14693         * gtk/gtkwindow.c (gtk_window_key_press_event): 
14694         (gtk_window_activate_default):
14695         (gtk_window_activate_focus):
14696         return handled=FALSE for actiavtion of insensitive default
14697         widgets. return handled=TRUE for activation of insensitive
14698         focus widgets. don't activate in either case.
14699
14700 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
14701
14702         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
14703         and $glib_cflags to match library order and in the
14704         theory that an old version of GLib is more likely to
14705         be in the include directory for X then vice-versa.
14706         (Bug #2776)
14707
14708 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
14709
14710         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
14711         to determine the locale for fontsets, not LC_MESSAGES;
14712         the user may want English messages with a handling
14713         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
14714         will still be broken) (Bug #2891)
14715
14716 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
14717
14718         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
14719
14720 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
14721
14722         * gtk/gtkrc.ko: Changed the Korean default fontset.
14723
14724 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
14725
14726         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
14727         where when scrolling to the left or top double exposes
14728         were done, causing major slowdowns.
14729
14730 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
14731
14732         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
14733         names to lowercase and alphanumeric, before looking
14734         them up.
14735
14736         * gtk/Makefile.am: Install codeset variant gtkrc files
14737         with normalized names.
14738
14739 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
14740
14741         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
14742         popup menus when the menu is already visible, but its parent
14743         is still hidden, (happens after tornoff window got hidden).
14744
14745 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
14746
14747         * gtk/Makefile.am (install-data-local): Fix
14748         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
14749         deleted, causing error messages on install.
14750
14751 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
14752
14753         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
14754         the handle as well, since we now sometimes ignore
14755         exposes on the handle while resizing.
14756
14757 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
14758
14759         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
14760         extra g_free introduced in one of the last one or two 
14761         commits.
14762
14763 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
14764
14765         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
14766         consistent, put each style that a gtkrc.* file creates
14767         in a unique namespace, remove old files before installing.
14768
14769 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
14770
14771         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
14772         gtk_rc_init is called multiple times. (Yes, people who
14773         do that have bugs in their code.)
14774
14775 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
14776
14777         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
14778         Remove it since it's generated by the Makefile anyway
14779
14780 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
14781
14782         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
14783         device->info.axes for core pointer.
14784
14785 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
14786
14787         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
14788         idle_id, to deal with obsolete, broken C libraries.
14789
14790 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
14791
14792         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
14793         allocation->x/y twice!
14794
14795         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
14796         consistent with gtk_vscale_pos_trough().
14797
14798 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
14799
14800         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
14801         be queueing a resize on a toplevel container between
14802         the time we show it and when we map it. So, we need
14803         to test GTK_WIDGET_VISIBLE() for toplevels, and only
14804         use GTK_WIDGET_DRAWABLE() for child windows.
14805
14806 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
14807
14808         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
14809         (fixes bug #2144)
14810
14811 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
14812
14813         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
14814         container DRAWABLE (instead of VISIBLE), so we don't queue
14815         resizes on non-toplevel containers.
14816
14817 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
14818
14819         * gtk/gtkselection.[ch]: Make the data argument
14820         const guchar *.
14821
14822 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
14823
14824         * gtk/gtkwindow.c: Try to behave sensibly if 
14825         the focus widget is the window itself. (Should
14826         we allow this at all?)
14827
14828 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
14829
14830         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
14831         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
14832         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
14833         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
14834         in prototypes and implementations consistent (Tomas Ogren).
14835
14836         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
14837         before the widget is unparented (reported by damon).
14838
14839         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
14840         since we provide unsigned data anyways.
14841
14842 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
14843
14844         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
14845         the call to gtk_tooltips_layout_text() until later.
14846
14847         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
14848         Call gtk_widget_ensure_style() before using the style.
14849
14850 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
14851
14852         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
14853         for old widgets that don't propagate draws to all
14854         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
14855
14856 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
14857
14858         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
14859         for a redraw but just the widget that requested the resize.
14860
14861 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
14862
14863         * gtk/gtkcontainer.c: added new widget level method
14864         gtk_container_set_reallocate_redraws() and a GtkContainer flag
14865         reallocate_redraws : 1 to reflect the setting, exported this through
14866         the argument system as a boolean ::reallocate_redraws.
14867
14868         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
14869         on the widget because the allocation changes, do so as well for
14870         widget->parent if the parent has reallocate_redraws set to TRUE.
14871         with that containers requesting reallocation redraws get automatically
14872         redrawn if their children changed allocation (this unfortunately
14873         affects also other children that didn't change allocation, but we
14874         cannot work around that before 1.3).
14875
14876 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
14877
14878         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
14879         _and_ height are >0 (not _or_).
14880
14881         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
14882         instead of gtk_container_queue_resize(), which is a core gtk internal
14883         function (must have been on crack when i queued that).
14884
14885         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
14886         we can check more reliably if we want to discard expose events.
14887         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
14888         flag.
14889         
14890         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
14891         we simply trust these events. for deciding whether to discard exposes,
14892         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
14893         
14894 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
14895
14896         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
14897         queues of areas that are completely off screen.
14898
14899         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
14900         logic for handleboxes.
14901
14902         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
14903         check on width/height.
14904
14905 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
14906
14907         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
14908         we are fine with using $@ the way we do (if we actually encounter
14909         brokeness with $@ in VPATH builds because of additional path prefixes,
14910         we need to use $(@F) actually).
14911
14912 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
14913
14914         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
14915         short lived bugs, that would allow language bindings to do surgeries
14916         to our guts.
14917
14918 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
14919
14920         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
14921         where comparison was being done against an uninitialized
14922         value causing intermittant results depending on
14923         compiler flags. Also make it clearer that we aren't
14924         ever initializing the child as 0x0 (though this will
14925         be caught in gtk_widget_size_allocate())
14926
14927 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
14928
14929         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
14930         gtk_window_unset_transient_for() call after we do checks
14931         involving the old transient parent.
14932         [ From Lance Capser <lmc@cyberhighway.net> ]
14933
14934 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
14935
14936         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
14937         an empty file.
14938
14939 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
14940
14941         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
14942         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
14943
14944 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
14945
14946         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
14947         `$@' is valid only in the build dir, not after we've done 
14948         `cd $srcdir'.  Also use `test -f' instead of less portable
14949         `test -e'.
14950
14951 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
14952
14953         * gtk/gtktext.c (correct_cache_insert): Rewrite
14954          for simplicity, and hopefully correctness.
14955          (Fixes bug #1322, which was a segfault when
14956           on some insertions with the properties around
14957           the insertion set up just wrong.)
14958
14959         * gtk/gtktext.c (gtk_text_adjustment): When we receive
14960          a "changed" signal, clamp the new value to the adjustment
14961          bounds to avoid segfaulting if someone tries to change
14962          the adjustment to a bogus value. (Bug #1795)
14963
14964 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
14965
14966         * gtk/gtkmain.c: Ignore unexpected destroy notifies
14967         for children, for toplevel windows handle them
14968         like delete_event.
14969
14970         * gtk/gtkplug.c: Add an unrealize handler so that
14971         we unref plug->socket_window when we are done
14972         with it.
14973
14974 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
14975
14976         * gtk/gtktext.c (clear_area): Fix stupid signedness
14977          problem that was causing background to sometimes
14978          be misaligned.
14979
14980 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
14981
14982         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
14983         
14984         * gtk/gtkmenu.c (gtk_menu_position): Make
14985          sure we never position menus with negative x, y,
14986          since gtk_widget_set_uposition() can't handle that.
14987
14988         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
14989          Modify the positioning code a bit so that we always
14990          put the top-left corner onscreen. (This is for
14991          UI reasons, gtk_menu_position() now takes care of
14992          gtk_widet_set_uposition() brokeness.)
14993
14994 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
14995
14996         * gtk/Makefile.am: fixed up things for -jx, x > 1.
14997
14998 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
14999
15000         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
15001           RC style that is passed in. The lack of the ref
15002           before was a bug. If people worked around this
15003           bug, this will introduce a slight memory leak
15004           in their code. The code should typically look like:
15005
15006             rc_style = gtk_rc_style_new ();
15007             [...]
15008             gtk_widget_modify_style (widget, rc_style);
15009             gtk_rc_style_unref (rc_style);
15010
15011         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
15012           the style if it was already set.
15013
15014         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
15015           style if it was set before.
15016
15017 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
15018
15019         * gtk/testgtk.c (main): Add a check to see if we
15020           are being run from the correct directory and
15021           to quit nicely if we are not.
15022
15023         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
15024           static.
15025
15026 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
15027
15028         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
15029
15030         * gtk/gtkwindow.c:
15031         queue resizes unconditionally (gtk_widget_queue_resize will figure
15032         what to do if the window is not realized).
15033         (gtk_window_move_resize): only recenter the window
15034         for GTK_WIN_POS_CENTER_ALWAYS.
15035         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
15036         the same way as GTK_WIN_POS_CENTER.
15037
15038 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
15039
15040         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
15041         with (!(info->last_flags & GDK_HINT_POS)) instead of
15042         (!info->last_flags & GDK_HINT_POS).
15043
15044         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
15045         new_height unconditionally, because we use these values even if
15046         !default_size_changed && !hints_changed.
15047         comented the (default_size_changed || hints_changed) case with
15048         respect to resize rejects from the window manager.
15049
15050         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
15051         in the zvt condition hack, since this includes the window hints, set
15052         the hints after the handling_resize case.
15053
15054         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
15055         window is initially shown with to the geometry.
15056
15057 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
15058
15059         * gtk/gtkwindow.c (gtk_window_move_resize):
15060         s/size_changed/default_size_changed/g so i know what's
15061         really going on (frying brain on smaller flame now).
15062
15063 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
15064
15065         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
15066         we have size_changed upon handling_resize. this is a gross
15067         workaround for the broken zvt widget and should be removed in
15068         1.3 again (search for FIXME).
15069         Owen provided an accurate comment for this:
15070
15071         /* We could be here for two reasons
15072          *  1) We coincidentally got a resize while handling
15073          *     another resize.
15074          *  2) Our computation of size_changed was completely
15075          *     screwed up, probably because one of our children
15076          *     is broken. It's probably a zvt widget.
15077          *
15078          * For 1), we could just go ahead and ask for the
15079          * new size right now, but doing that for 2)
15080          * might well be fighting the user (and can even
15081          * trigger a loop). Since we really don't want to
15082          * do that, we requeue a resize in hopes that
15083          * by the time it gets handled, the child has seen
15084          * the light and is willing to go along with the
15085          * new size. (this happens for the zvt widget, since
15086          * the size_allocate() above will have stored the
15087          * requisition corresponding to the new size in the
15088          * zvt widget)
15089          *
15090          * This doesn't buy us anything for 1), but it shouldn't
15091          * hurt us too badly, since it is what would have
15092          * happened if we had gotten the configure event before
15093          * the new size had been set.
15094          */
15095
15096 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
15097
15098         * gtk/gtkrc.c: deal properly with the fact that RC
15099           style lists may include rc styles more than once.
15100
15101         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
15102           unused static function.
15103
15104         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
15105           stack of directories of RC files currently being
15106           parsed and implicitely add them to pixmap path.
15107           
15108           This fixes a bug where the directory would get
15109           appended then overwritten by pixmap_path declarations.
15110
15111           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
15112
15113         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
15114           theme's exit function. (Patch from Peter Wainwright,
15115           bug #1454)
15116
15117         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
15118           Add a destroy() handler to take care of removing
15119           group for menu item. (Fixes bug #1197)
15120
15121         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
15122           in warning message.
15123
15124 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
15125
15126         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
15127         roundtrip to figure window's width and height, since we know that
15128         anyways from widget->allocation.
15129
15130 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
15131
15132         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
15133           the hints after we request the new size.
15134
15135 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
15136
15137         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
15138           GTK_WIDGET_REALIZED() assertion - we can compute the
15139           hints before we are realized.
15140
15141         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
15142           hint changing so that we have a value of hints_changed
15143           when we decide whether to constrain the window size.
15144
15145         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
15146
15147         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
15148         change back to G_MAXINT.
15149
15150 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
15151
15152         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
15153         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
15154         contain uncluttered values.
15155         (gtk_window_compute_hints): simply assert that window is realized
15156         and that geometry_info is valid, since we rely on this anyways.
15157         (gtk_window_constrain_size): major cleanups to the code.
15158         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
15159         for the base size, instead of the minimums. use 32767 as max width
15160         and height (like in gtkwindow.c) instead of G_MAXINT.
15161
15162 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
15163
15164         * cleaned up the GtkContainer.need_resize flag handling mess, we
15165         only need to force resize requests when we were prematurely
15166         realized, or our widget tree was modified when we were temporarily
15167         hidden. handling these cases directly upon showing the window (i.e.
15168         while the GdkWindow is still unmapped) avoids the need to wait for
15169         a configure event response and therefore makes the GUI more snappier
15170         and avoids blank windows during the roundtrip.
15171
15172         * gtk/gtkwidget.c:
15173         (gtk_widget_hide): 
15174         (gtk_widget_show): don't queue resizes on toplevels, they know how
15175         to deal with matters.
15176
15177         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
15178         flag directly for not visible resize containers and spare us unecessary
15179         signal emissions.
15180
15181         * gtk/gtkwindow.c:
15182         (gtk_window_realize): if we need to enforce premature size allocation,
15183         queue a container resize so we are correctly resized later on.
15184         (gtk_window_init):
15185         (gtk_window_size_request):
15186         don't freak around with the ->need_resize flag,
15187         gtk_container_queue_resize() will care about that.
15188         (gtk_window_show):
15189         handle initial resizing issues here, we can handle matters better in
15190         this place, especially since we know that our GdkWindow is still
15191         unmapped.
15192         (gtk_window_move_resize):
15193         don't care about ->need_resize at all.
15194         handle size changes properly that occoured while we waited for a
15195         configure event.
15196
15197 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
15198
15199         * gtk/gtkwidget.c (gtk_widget_set_uposition):
15200         * gtk/gtkwindow.[hc] (gtk_window_reposition):
15201         Move the hint setting code from gtk_widget_set_uposition
15202         to here; set the hints so that we respect any previously
15203         set geometry hints.
15204
15205         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
15206         change the window hints here or move the window here,
15207         let that happen in gtk_window_move_resize().
15208
15209 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
15210
15211         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
15212         to already queued resizes (and therefore redraws) on a widget, check
15213         its anchestry as well.
15214
15215         * gtk/gtkcontainer.c:
15216         (gtk_container_queue_resize): clear resize widgets for resize
15217         containers before aborting prematurely. this is especially important
15218         for toplevels which may need imemdiate processing or their resize
15219         handler to be queued.
15220         (gtk_container_dequeue_resize_handler): added new internal function for
15221         gtkwindow.c.
15222
15223         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
15224         configure event, take possible changes in window position into account
15225         as well.
15226         if we request a new window size, queue up a resize handler that will
15227         last until the configure event response arrives.
15228         combined the ->need_resize case (initial show) with the general size
15229         (hints) changed case and added even more comments.
15230         if !auto_shrink, only revert to the old allocation if the new size
15231         is smaller than the current allocation.
15232
15233 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
15234
15235         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
15236                            gtk_window_set_geometry_hints
15237                            gtk_window_set_default_size):
15238         When hints are set, queue a resize so that the hints will
15239         be eventually reset on the toplevel.
15240
15241         * gtk/gtkwindow.c (gtk_window_show): Use
15242         gtk_window_compute_default_size(). Clear the need_resize flag
15243         on the initail map so that we don't unnecessarily trigger the
15244         resize code.
15245
15246         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
15247         into separate functions. Compare the hints we are setting
15248         with what we set last time so that we can accurately
15249         tell when we need to reset the hints.
15250
15251         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
15252         function to figure out the size from requisition
15253         and default_size.
15254
15255         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
15256         from fvwm to constrain a size to the geometry hints.
15257
15258         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
15259         to compare two sets of geometry hints.
15260
15261         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
15262         from gtk_window_set_hints(), just compute the hints,
15263         don't set them.
15264
15265         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
15266         code from gtk_window_move_resize() to separate function,
15267         rationalize a bit.
15268
15269 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
15270
15271         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
15272         structure into a new private structure.
15273
15274         * gtkrc.c: Split GtkRcStyle into public/private.
15275         In the private part, add a list of pointers to the
15276         RcStyle lists this RcStyle participates in.
15277
15278         * gtkrc.c: When a RcStyle is free, remove all
15279         lists referencing it from the 
15280         realized_style_ht hash, and free those lists.
15281         
15282         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
15283         gtk_rc_init(), since that adds the default styles
15284         to the list of parsed RC files again.
15285
15286         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
15287         
15288 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
15289
15290         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
15291         checks that ensure that a widget's allocation is at least 1 in width
15292         and height. (GNOME note: this doesn't affect old panel code anymore,
15293         because GtkSocket will request width and height of at least 1 since
15294         Fri Jul 23).
15295
15296         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
15297         allocated yet (happens if the user realizes the window prematurely),
15298         size request and allocate it.
15299         (gtk_window_size_allocate): guard against guint underflows.
15300
15301 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
15302
15303         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
15304         in gtk_built_sources, so gtk.defs gets built prior to all other
15305         sources.
15306
15307 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
15308
15309         * gtk/Makefile.am:
15310         invoke indent on gtkmarshal.*. 
15311         rewrote source generation rules, use COPYING as oldest source tag for
15312         a piggyback rule to generate all sources from (don't touch it ;).
15313         major cleanups, strip spaces on build rules for GNU Make.
15314
15315         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
15316         source and target files from commandline arguments. don't invoke indent.
15317
15318 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
15319
15320         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
15321         notebook after switch to avoid drawing problems.
15322         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
15323         
15324         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
15325         show them instead. 
15326         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
15327
15328 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
15329
15330         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
15331         notebook after switch to avoid drawing problems.
15332         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
15333         
15334         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
15335         show them instead. 
15336         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
15337
15338 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
15339
15340         * gtk/gtkwindow.c:
15341         we use window->need_resize from configure_event now, to indicate that
15342         the gtkwindow should keep its allocation (e.g. because the user resized
15343         the window through window manager handles). resize_count is now reliably
15344         used to figure whether we got the allocation we requested from the
15345         window manager.
15346         configure events get queued as resizes now, the real stuff (size
15347         computation and allocation) now only goes on in gtk_window_move_resize().
15348         GtkWindow's requisition now contains its *real* requisition (like all
15349         other widgets), *not* taking usize into account.
15350         geometry_info->last_{width|height} is now updated from set_hints() only
15351         so it always contains the last hints we set for the window manager.
15352         made some event handlers return TRUE instead of FALSE.
15353         the overall code should be much more straight forward now, and the
15354         significant code portions are accompanied by comments now.
15355         (gtk_window_set_hints):
15356         removed requisition argument and made it
15357         fetch the requisition through gtk_widget_get_child_requisition.
15358         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
15359         does that now.
15360         (gtk_window_show):
15361         ensure that the widget is realized before calling 
15362         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
15363         ensure that we got properly size requested and allocated before
15364         realization.
15365         (gtk_window_configure_event):
15366         ignore plain window moves, or reallocate the widget tree through the
15367         resize queue otherwise.
15368         (gtk_window_move_resize):
15369         mostly rewrote this function to figure window manager hints more
15370         reliably, coalesce window moves and resizes to reduce configure events
15371         and do actuall size allocations.
15372
15373 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
15374
15375         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
15376         that have a resize pending, because a redraw is already queued for them.
15377
15378         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
15379         hack to clear resize_widgets.
15380
15381         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
15382         for resize containers prior to size allocation. (this is also a bit
15383         ugly, but avoids side effects for stopped emissions and is thus more
15384         reliable).
15385         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
15386
15387         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
15388         function from gtk_tooltips_expose, as we connect to ::expose_event
15389         *and* ::draw now.
15390
15391 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
15392
15393         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
15394         checks.
15395         (gtk_target_list_unref): Likewise.
15396
15397         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
15398
15399 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
15400
15401         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
15402         guard against division by zero. (Fixes bug #1339)
15403
15404 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
15405
15406         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
15407         Prevent the trivial leak of information of allowing
15408         word motion when the entry is not visible.
15409
15410 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
15411
15412         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
15413         modality to error dialog as well as confirmation dialogs.
15414         (Bug #1803, reported by Rosanna Wing Sze Yuen)
15415
15416 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
15417
15418         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
15419         tree->view_lines.
15420         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
15421
15422         * gtk/Makefile.am (install-data-local): Solaris apparently
15423         has various troubles with ln -f; use rm first instead.
15424         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
15425
15426 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
15427
15428         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
15429         use `cp' followed by `rm' (the `rm' was already there).
15430
15431 July 30, 1999 Elliot Lee <sopwith@redhat.com>
15432         
15433         * configure.in: Fix autoconf warnings about cross compilation by
15434         trying to provide sane defaults for AC_TRY_RUN.
15435         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
15436         put them into $(srcdir) when generated. Also add a dependency of
15437         gtksignal.h on gtkmarshal.h for -j builds. 
15438         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
15439
15440 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
15441
15442         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
15443         GDK_THREADS_{LEAVE,ENTER} pair.
15444         (From Paul Fisher <pnfisher@redhat.com>)
15445
15446 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
15447
15448         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
15449         width and height are always >0 (owen).
15450
15451 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
15452
15453         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
15454         change that assured that a widget's allocated with and height are
15455         always >1, since this breaks *buggy* panel code. unfortunately this
15456         back-breaks the gimp's color selector.
15457
15458         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
15459         allocation is always >0 in width and height, before sending the
15460         configure event; this is a *gross* hack to get the gimp back to work.
15461         
15462         * marked both cases with TODO-1.3
15463
15464 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
15465
15466         * gtk/gtktext.c: Don't display wrap indicators when
15467         text is not editable and word wrap is on.
15468
15469 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
15470
15471         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
15472         option menus here as they are not derived from menu shell, assure that
15473         the option menu has a menu we can add items to.
15474
15475 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
15476
15477         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
15478         width/height to (gint) before calculations and check against < 0 to
15479         avoid guint wraparounds.
15480
15481 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
15482
15483         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
15484         width and height is never zero. sanity check both dimensions against
15485         32767 and issue a warning if the allocation is greater than that.
15486
15487 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
15488
15489         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
15490         to g_main_pending() as well.
15491
15492 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
15493
15494         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
15495         call to g_main_iteration() - since that will regrab
15496         GTK+ lock to process events.
15497
15498 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
15499
15500         * gtk/gtkwindow.c
15501         - Regularize with the rest of GTK+ by making widget->requisition
15502           not reflect the set_usize()
15503         - Always recompute geometry hints, then check if they
15504           changed before sending them to the X server. The
15505           previous checks for changes would fail in a number
15506           of circumstances. 
15507
15508 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
15509
15510         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
15511
15512 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
15513
15514         * gtk/gtkdnd.c:
15515         - Code cleanups
15516         - Instantaneously update on modifier key presses
15517         - Allow cancellation of the drag with Escape.
15518
15519 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
15520
15521         * gtk/testgtk.c (create_handle_box): Set the policy
15522         to auto_shrink - otherwise the appearance is rather
15523         strange when flipping between horizontal and vertical.
15524
15525 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
15526
15527         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
15528         (gtk_window_set_default_size): don't change a value if it's < 0.
15529         queue a resize.
15530
15531 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
15532
15533         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
15534
15535 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
15536
15537         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
15538         add an extra "/" when concating "/" + filename.
15539         (From Matt Grossman <mattg@oz.net>)
15540
15541 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
15542
15543         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
15544         for fg_gc if we set it for drawing pixmap.
15545
15546 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
15547
15548         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
15549         
15550         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
15551         already set, call old engine's destroy function and
15552         unref the old engine.
15553
15554 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
15555
15556         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
15557
15558 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
15559
15560         * gtk/gtkaccelgroup.h: mark certain functions as internal.
15561
15562 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
15563
15564         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
15565         expand behaviour changed.
15566
15567         * gtk/gtklabel.c (gtk_label_set_pattern):
15568         (gtk_label_set_justify):
15569         (gtk_label_set_line_wrap):
15570         don't bother invoking queue_clear, the reallocation does
15571         that for us, always free_words so the upcoming resize will
15572         relayout the label's contents.
15573
15574 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
15575
15576         * applied argument implementation patches from Elena Devdariani
15577         <elena@cogent.ca>.
15578
15579         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
15580         ::space_style, ::relief
15581         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
15582         * gtk/gtkpreview.c: ::expand
15583         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
15584         * gtk/gtknotebook.c: ::homogeneous
15585         * gtk/gtklabel.c: ::wrap
15586         * gtk/gtklist.c: ::selection_mode
15587         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
15588         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
15589         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
15590         * gtk/gtkclist.c: ::sort_type
15591         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
15592         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
15593
15594 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
15595
15596         * gtk/gtkstyle.c: Removed ill-thought-out part of last
15597         comment.
15598
15599 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
15600
15601         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
15602         counting right when we have to attach a new style
15603         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
15604
15605         * gtk/gtkstyle.c: Documented the refcounting
15606         peculularities of gtk_style_attach.
15607
15608 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
15609
15610         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
15611         window types.
15612
15613         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
15614         of GTK_TOPLEVEL for creating the window.
15615
15616 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
15617
15618         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
15619         the last argument (reported by Per Winkvist).
15620         
15621 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
15622
15623         Fixes for invisible XOR lines (Frank Loemker
15624         <floemker@TechFak.Uni-Bielefeld.DE>)
15625         
15626         * gtk/gtkclist.c (gtk_clist_realize): Always use
15627         a non-zero pixel for GDK_XOR.
15628
15629         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
15630         Use GDK_INVERT instead of GDK_XOR.
15631
15632 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
15633
15634         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
15635         signals if h/voffsets differ from adjustment values.
15636         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
15637
15638 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
15639
15640         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
15641         ::selection-done emissions up to the topmost menu shell.
15642
15643 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
15644
15645         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
15646         the user data on the window before destroying it.
15647
15648         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
15649         unrealize handler to take care of destroying 
15650         notebook->panel properly. 
15651         (Bug #1198 - Morten Welinder <terra@diku.dk>)
15652
15653         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
15654         of g_new and g_realloc to stop memory leak. (Actually,
15655         we could just use g_realloc(), but I'm not 100% sure
15656         that is portable).
15657         (Bug #1196 - Morten Welinder <terra@diku.dk>)
15658
15659 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
15660
15661         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
15662
15663         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
15664         for fontsets.
15665
15666         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
15667         with bin/button confusion.
15668
15669 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
15670
15671         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
15672         and show how preselection of radio items is done.
15673
15674 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
15675
15676         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
15677         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
15678         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
15679         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
15680         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
15681         * gtk/gtktable.c (gtk_table_attach): 
15682         * gtk/gtklist.c (gtk_list_insert_items): 
15683         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
15684         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
15685         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
15686         * gtk/gtkbin.c (gtk_bin_add): 
15687         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
15688         * gtk/gtkfixed.c (gtk_fixed_put): 
15689         * gtk/gtklayout.c (gtk_layout_put):
15690         general fixups to container_add logic. always realize child if
15691         child->parent is realized, only map the child and queue a resize
15692         if child and child->parent are both visible.
15693
15694 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
15695
15696         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
15697         instead of gtk_container_foreach to walk and unrealize children, so
15698         composite children get also unrealized.
15699         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
15700         (gtk_widget_map): assert that the widget is visible (basic constrain).
15701         (gtk_widget_real_map): assert that the widget is realized (basic
15702         constrain).
15703
15704 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
15705
15706         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
15707
15708 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
15709
15710         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
15711         file for iso-8859-2 locales.
15712
15713         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
15714
15715 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
15716
15717         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
15718          (Pointed out by andy@rz.uni-karlsruhe.de and others).
15719          Remove some suspicious and useless lines. 
15720
15721 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
15722
15723         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
15724         width,height = 0, 0 to mean - here to edge of window,
15725         instead of -1, -1, since the former is all we support.
15726
15727 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
15728
15729         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
15730         when removing from quit_functions list.
15731
15732 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
15733
15734         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
15735
15736 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
15737
15738         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
15739          When redrawing characters on non-visible entry, use appropriate
15740          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
15741
15742 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
15743
15744         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
15745         from drag coordinates.
15746         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
15747         use drag_dest_cell.
15748
15749         * gtk/gtktree (drag_dest_cell)
15750         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
15751         (Bug #1129)
15752
15753 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
15754
15755         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
15756         translate_* fields.
15757         (gtk_item_factory_finalize): invoke translate_notify independant from
15758         translate_data.
15759         (gtk_item_factory_set_translate_func): likewise.
15760         (gtk_item_factory_destroy): only remove ifactory pointer from those
15761         widgets that belong to us (stupid me).
15762
15763 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
15764
15765         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
15766         rc_style list when lookup succeeeds.
15767
15768 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
15769
15770         * gtk/gtkctree.c (resync_selection): 
15771         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
15772         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
15773         bug.
15774
15775 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
15776
15777         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
15778         Add some missing GDK_THREADS_ENTER()/LEAVE around
15779         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
15780
15781 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
15782
15783         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
15784         rather than emit_by_name.
15785
15786         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
15787         on the widget across multiple signal emissions.
15788         (gtk_editable_delete_text): same here.
15789         (gtk_editable_class_init): set widget_class->activate_signal after
15790         editable_signals[ACTIVATE] has been created.
15791
15792 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
15793
15794         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
15795         position here prematurely -- we might not have the
15796         right ->min_position and ->max_position yet.
15797
15798 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
15799
15800         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
15801         Add error traps so if the other end of the connection
15802         dies, we survive.
15803
15804         * gtk/gtkselection.c (gtk_selection_notify): Clean
15805         up properly when selection property retrieval fails.
15806         
15807         * gtk/gtkselection.c (gtk_selection_request): Correctly
15808         reject SelectionRequest notifies where the handler
15809         returns no data.
15810
15811 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
15812
15813         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
15814         when we've previously highlighted.
15815
15816         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
15817         emit two "drag_leave" signals for Motif drops.
15818
15819         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
15820         back the correct status messages when dropping from
15821         Motif onto a proxy window that is rejecting the
15822         drop.
15823
15824 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
15825
15826         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
15827         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
15828         to compare two argument values. added gtk_arg_to_valueloc() to set a
15829         variable from an arg through its location (pointer).
15830
15831         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
15832         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
15833         as gfloat*, uchars are collected as guchar*, ints are collected as
15834         gint*, etc...
15835
15836 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
15837
15838         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
15839         Include <string.h> instead of <strings.h>.
15840
15841         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
15842         (actually, a lot more duplicate includes occur if
15843          you trace through the sequence of #include's)
15844         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
15845         
15846 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
15847
15848         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
15849         gtk-a-higuti-990322-[0-3]
15850
15851         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
15852         that was causing -DX_LOCALE not to work.
15853
15854         * gtk/gtkrc.c (gtk_rc_init):
15855         X_LOCALE will never have LC_MESSAGES defined
15856
15857 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
15858
15859         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
15860         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
15861
15862         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
15863         left/right as well (gtk-michael-980726-0.patch.gz).
15864
15865         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
15866         for pointer values, use gchar instead of char. fixed uline allocation
15867         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
15868         chunks instead of G_ALLOC_ONLY.
15869         (gtk_label_size_request): always alter requisition as passed and leave
15870         widget->requisition alone.
15871         (gtk_label_set_text): allow NULL strings.
15872         (gtk_label_new): likewise.
15873
15874 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
15875
15876         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
15877
15878 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
15879
15880         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
15881         *and* mapped (i.e. drawable).
15882         (gtk_bin_expose): only send exposes to drawable children.
15883
15884         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
15885         (gtk_box_expose): only send exposes to drawable children.
15886
15887         * gtk/gtkhscale.c (gtk_hscale_draw): 
15888         * gtk/gtkvscale.c (gtk_vscale_draw):
15889         hm, this is an ugly one. we first compute the size of our trough area
15890         here (window relative) and then check intersection with the draw_area
15891         which is parent relative because we're a NO_WINDOW widget, so we need
15892         to offset the trough area by allocation.x and allocation.y before the
15893         check. (this must not be done for the background area though, since
15894         that's already computed parent relative).
15895
15896 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
15897
15898         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
15899         unrealize title buttons.
15900
15901 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
15902
15903         * gtk/gtkclist.c (gtk_clist_column_title_passive)
15904         (gtk_clist_column_title_active): 
15905         only connect/disconnect to GtkWidgetClass::event to block mouse events.
15906
15907         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
15908         zero initialize event, removed superfluous gdk_window_get_pointer call
15909
15910         * gtk/gtklist.c (gtk_list_vertical_timeout)
15911         (gtk_list_horizontal_timeout): removed superfluous
15912         gdk_window_get_pointer call
15913
15914 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
15915
15916         * plugging problems reported by "Bruce Mitchener, Jr."
15917         <bruce@puremagic.com> due to a purify session.
15918
15919         * gtk/gtkstyle.c:
15920         (gtk_style_ref): 
15921         (gtk_style_unref): assert ref_count to be > 0.
15922
15923         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
15924         the requisition.
15925         (gtk_clist_set_shift): likewise.
15926
15927         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
15928         adjustments.
15929
15930         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
15931         event before sending it and set send_event to TRUE (which needs to
15932         be done for *all* synthesized events).
15933         (gtk_list_vertical_timeout): likewise.
15934
15935         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
15936         leaks.
15937
15938         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
15939         to TRUE when synthesizing events.
15940
15941 [ *** end of merges from 1.2 *** ]      
15942         
15943 1999-11-21  Tor Lillqvist  <tml@iki.fi>
15944
15945         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
15946         (or copied from gdkconfig.h.win32 on Win32, sigh).
15947
15948         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
15949
15950         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
15951
15952         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
15953
15954         * gdk/gdkconfig.h.win32: New file.
15955
15956         * gdk/win32/makefile.cygwin: Build just a static archive here.
15957
15958         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
15959         for the DLL from the static archive built above.
15960
15961         * gdk/gdk.def: Moved here from the win32 subdirectory.
15962
15963         * gdk/win32/*: Adapt for the changed private struct organisation.
15964
15965         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
15966
15967 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
15968
15969         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
15970         for wheel mice (buttons 4 and 5).
15971
15972 1999-11-18  Tor Lillqvist  <tml@iki.fi>
15973
15974         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
15975         drawables use just the pixel field in the foreground and
15976         background GdkColor of the GdkGC.
15977
15978         gdk_gc_set_{fore,back}ground() are called in the GIMP with
15979         GdkColors containing uninitialized (red,green,blue) fields, and
15980         just the pixel field filled in, and furthermore in the
15981         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
15982         It thus turns out that we really don't need to have the full
15983         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
15984         it later to have just the pixel values.
15985
15986 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
15987
15988         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
15989
15990 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
15991
15992         * docs/gtkfaq.sgml: threads example from Erik Mouw.
15993         New question on GtkLabel background colors.
15994
15995         * docs/gtk_tut.sgml:
15996           - Correct the example code callback
15997             function definitions.
15998           - Update the gtkdial example code, from Frans van Schaik.
15999           - Update setselection.c to current API.
16000
16001         * examples/Makefile examples/*/*.c: Update to code
16002         listed in tutorial.
16003
16004 1999-11-10  Tor Lillqvist  <tml@iki.fi>
16005
16006         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
16007         subrange table (from the "Developing International Software for
16008         WIndows 95 and Windows NT" book) was missing the Hangul syllable
16009         block... Get the loaded font's charset correctly.
16010
16011         (Note that this, and the other *-win32.c files, still really are
16012         the old ones, the win32 subdirectory is not ready for compilation
16013         yet after the reorg.)
16014
16015 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
16016
16017         * gtk/gtkclist.c: Fix off-by-one bug in parameter
16018         check.
16019
16020 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
16021
16022         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
16023         on results of XQueryDeviceState().
16024
16025 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
16026
16027         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
16028         we need to accesss only ->children. We need an accessor
16029         for the children.
16030
16031         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
16032         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
16033         to get rid of gdkx.h include.
16034         
16035         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
16036         and random references to 'None'.
16037
16038         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
16039         Get rid of unused #include <gdk/gdkx.h>
16040
16041         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
16042         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
16043         gdkconfig.h.
16044
16045 1999-11-08  Tor Lillqvist  <tml@iki.fi>
16046
16047         * gdk/win32/gdkdraw.c
16048         * gdk/win32/gdkfont.c
16049         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
16050         following yesterday's changes. (Unrelated to Owen's reorg.)
16051
16052 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
16053
16054         * gdk/x11/gdkinput-gxi.c: Add missing include,
16055           fix GdkWindowPrivate => GdkDrawablePrivate.
16056
16057         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
16058
16059         * gdk/x11/Makefile.am (xinput_sources): Add missing
16060         backslash to fix building with --with-xinput=none
16061
16062 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
16063
16064         Move all X specific code into the x11/ directory.
16065         Aside from shuffling things around, did the following:
16066
16067        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
16068          gdk_arg_context_* - a simple argument parsing system
16069          in the style of popt.
16070
16071        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
16072          gdk/x11/gdkprivate-x11.h:
16073          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
16074          add ->klass and ->klass_data fields. The klass_data
16075          field points to an auxilliary structure that is
16076          windowing system dependent.
16077
16078        * gdk/gdkfont.c: Make most of the measurement functions
16079          simply wrappers around gdk_text_extents().
16080
16081        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
16082          _gdk_font_strlen() function that hides the weird
16083          behavior in gtk+-1.[02] where a string is interpreted
16084          differently for 8-bit and 16-bit fonts.
16085
16086        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
16087          to store common code for synthesizing double/triple
16088          press events.
16089         
16090        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
16091          Make all the function that modify an existing GC
16092          simply wrappers around gdk_gc_set_values().
16093          
16094        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
16095          for throwing out later.
16096
16097        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
16098          GdkImagePrivate and GdkColormapPrivate to have a
16099          windowing system dependent part (GdkFontPrivateX etc.)
16100          that "derives" from the system-independent part.
16101
16102        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
16103          Got rid of the included-source-files for XInput in
16104          favor of automake conditionals. (Which didn't exist
16105          when XInput support was originally added.)
16106
16107        * gdk/gdkrgb.c: Remove the visual id from the debugging
16108          statements since that is X11 specific; print out
16109          type/depth info instead.
16110          
16111
16112 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
16113
16114         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
16115         loading duplicates of hashed fonts.
16116
16117         * gdk/gdk.c (gdk_keysym_convert_case): rename
16118         gdk_XConvertCase to gdk_keysym_convert_case, allow
16119         results to be NULL in the GTK+ style.
16120
16121         * gdk/gdkcompat.h: Started compatibility header
16122         for renames.
16123
16124 1999-11-07  Tor Lillqvist  <tml@iki.fi>
16125
16126         * gdk/win32/gdkprivate.h: New font private structures, related to
16127         fontsets.
16128
16129         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
16130         gdk_font_list_free(). On X11, will just be wrappers to
16131         XListFonts() and XFreeFontNames(). On Win32, the code previously
16132         in gtkfontsel.c is now here.
16133
16134         New function gdk_font_xlfd_create(). On X11 will get the FONT
16135         property of the font (for GDK_FONT_FONTs), or call
16136         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
16137         builds a XLFD style name from the font information in the LOGFONT
16138         struct(s).
16139
16140         New function gdk_font_xlfd_free(), which correspondingly frees the
16141         string returned by gdk_font_xlfd_create().
16142
16143         Implement fontsets on Win32. Add a function that iterates over a
16144         wide char string and calls a callback function for each substring
16145         of wide chars from the same Unicode subrange (and thus probably
16146         available in the same real font).
16147
16148         Improve the XLFD emulation a bit.
16149
16150         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
16151
16152         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
16153         Beta3, WM_IME_CHAR messages don't seem to contain the composed
16154         multi-byte char as with the Active IMM on Win9x. Oh well, handle
16155         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
16156         ImmGetCompositionStringW() to get the composed Unicode chars.
16157
16158         * gdk/win32/gdkgc.c
16159         * gdk/win32/gdkdraw.c: Changes needed because of the font private
16160         struct changes.
16161
16162         * gdk/win32/gdk.def: Add the new functions.
16163
16164 1999-11-04  Tor Lillqvist  <tml@iki.fi>
16165
16166         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
16167         get the Platform SDK to get <dimm.h>.
16168
16169         * gdk/win32/gdkevents.c: More event handling fixes and
16170         simplification. Never generate motion events with is_hint true. We
16171         used to do that on bogus grounds earlier. Windows sends
16172         WM_MOUSEMOVE messages on button events even if the mouse hasn't
16173         moved, ignore these.
16174
16175         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
16176
16177         * gdk/win32/gdkglobals.c
16178         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
16179         the TrackMouseEvent function, and use it.
16180
16181         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
16182         char before calling WideCharToMultiByte in order to get a string
16183         for the window title.
16184
16185         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
16186
16187         * gdk/win32/gdk.def: Remove obsolete functions.
16188
16189         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
16190         /nodefaultlib and /defaultlib switches.
16191
16192         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
16193
16194 1999-10-31  Tor Lillqvist  <tml@iki.fi>
16195
16196         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
16197         EuroSign).
16198
16199         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
16200         same type as GdkWChar, especially on Win32.
16201
16202         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
16203
16204         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
16205         before passing to Windows GDI for drawing etc. Convert to the
16206         system default codepage before passing to Windows as window
16207         titles.
16208
16209         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
16210         support changing input locale on the fly.
16211
16212         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
16213         on-the-fly changes. Convert incoming characters from the current
16214         codepage to Unicode (and then to a UTF-8 multi-byte string) based
16215         on the current input language. Use keysym<->Unicode mapping tables
16216         and functions borrowed from xterm sources.
16217
16218         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
16219         editions of Win9x, use the ActiveX-based Active IMM (Input Method
16220         Manager) if available. IMEs and the Active IMM are available under
16221         the disguise of Chinese, Korean and Japanese support for IE and
16222         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
16223         support is present in all editions (as long as you install it).
16224
16225         Call DispatchMessage from gdk_events_queue() (and thus
16226         gdk_WindowProc()), instead of duplicating the code in
16227         gdk_WindowProc().
16228
16229         Reworked the grab handling and propagation code, factored out
16230         duplicated code snippets into separate functions. Other cleanups,
16231         too.
16232
16233         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
16234         the <dimm.h> header describing the Active IMM.
16235
16236         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
16237         just do the same as for "single" fonts.
16238
16239         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
16240         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
16241         the new keysyms from gdkkeysyms.h.
16242
16243         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
16244         fontset, so that gtkentry uses wide characters.
16245
16246         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
16247         GTk+'s system directory "gtk+", not "gtk".
16248
16249 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
16250
16251         * docs/gtkfaq.sgml: FAQ update
16252
16253 1999-10-21  Tor Lillqvist  <tml@iki.fi>
16254
16255         * gdk/win32/gdkprivate.h: Add more font private data.
16256
16257         * gdk/win32/gdkfont.c
16258         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
16259         fonts and strings. Now works much better. You still have to
16260         have a correct font selected, though. No fontset emulation yet.
16261
16262 1999-10-19  Tor Lillqvist  <tml@iki.fi>
16263
16264         * gtk/maketypes.awk: Use G_OS_WIN32.
16265
16266         * gtk/gtk.def: Add some missing entry points. Also some non-public
16267         ones, but PyGTK porter claims to need them.
16268
16269         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
16270         built-in type generation.
16271
16272 1999-10-14  Tor Lillqvist  <tml@iki.fi>
16273
16274         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
16275         GDK_FONT_FONT fonts (which is all we have for now, we don't
16276         emulate fontsets). The X11 version uses plain XDrawString in that
16277         case, too. The string passed to gdk_draw_text_wc seems to be in
16278         fact (at least, when used by gtkentry and gtktext) either in a
16279         single-byte charset, or a DBCS. Not Unicode.
16280
16281         This fixes the problem in gtkfontsel, where even if you had
16282         selected a font with a non-Latin1 charset (windows-greek, for
16283         instance), the preview still used Latin-1 glyphs.
16284
16285         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
16286         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
16287         (gdk_font_load): Recognize the demibold etc weights, even if we
16288         don't have the corresponding constants in the headers.
16289         (gdk_font_hash_insert): Use same hash mechanism as in the X11
16290         version. Should save font resources a bit, when we don't have
16291         multiple HFONTs for the same font.
16292
16293         * gdk/win32/gdkprivate.h: Add the names field as in the X11
16294         version.
16295
16296 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
16297
16298         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
16299         X values
16300
16301 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
16302
16303         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
16304         layout support (as mentioned on
16305         http://www.jcinteractive.com/gnome-ui/software/widgets/)
16306
16307 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
16308
16309         * gtk/fnmatch.c
16310         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
16311
16312 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
16313
16314         * configure.in (ALL_LINGUAS): Added Galician (gl)
16315
16316 1999-10-05  Tor Lillqvist  <tml@iki.fi>
16317
16318         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
16319
16320         * gdk/win32/gdkcompat.c: New file, actually provide an
16321         implementation for the deprecated functions. (Just temporarily.)
16322
16323         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
16324
16325         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
16326
16327         * gdk/win32/gdk.def gtk/gtk.def: Updates.
16328
16329 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
16330
16331         * configure.in: Added "uk" to ALL_LINGUAS.
16332         
16333 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
16334
16335         * configure.in: correct checking for BeOS check
16336
16337         * gdk/gdktypes.h
16338         * gtk/fnmatch.c
16339         * gtk/gtkfilesel.c
16340         * gtk/gtkitemfactory.c
16341         * gtk/gtkmain.[ch]
16342         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
16343
16344 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
16345
16346         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
16347         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
16348         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
16349         by Bulgarian). 
16350
16351 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
16352
16353         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
16354         Fix a reference to window_private->destroyed.   
16355
16356         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
16357         (ugly) setting of an internal GdkWindow member to use
16358         a _slightly_ cleaner macro.
16359
16360         * gdk/gdkprivate.h: Split GdkWindowPrivate into
16361         GdkDrawablePrivate and GdkWindowPrivate.
16362         Add extra macros for accessing GDK_DRAWABLE_ components.
16363
16364         * *.[ch]: Massive adjustments for the above, use the
16365         new macros in a lot of places.
16366
16367 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
16368
16369         * gdk/gdktypes.h: Make GdkDrawable the base type,
16370         not GdkWindow.
16371
16372 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
16373
16374         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
16375
16376 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
16377
16378         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
16379
16380 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
16381
16382         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
16383         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
16384
16385         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
16386
16387         * docs/gtk-config.1: Now autogenerated.
16388         * docs/Changes-1.4.txt: started
16389         
16390 1999-10-03  Tor Lillqvist  <tml@iki.fi>
16391
16392         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
16393         to #ifdef also here.
16394
16395         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
16396         Owen did to the X11 backend.
16397
16398         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
16399         ScrollWindowEx when blitting inside a window, it can't be correct
16400         in the general case.
16401
16402         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
16403         WM_GETMINMAXINFO is easier.
16404
16405         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
16406         depth equal to the bitspixel value, not the visual's depth.
16407
16408         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
16409         to 24 even if the bitspixel value is 32.
16410
16411         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
16412         need to check for depth==32 when bpp==32, depth will always be 24.
16413
16414 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
16415
16416         * docs/Changes-1.4.txt: Started
16417         
16418         * gtk/Makefile.am (gdk_headers): Include all the new headers.
16419
16420         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
16421         
16422         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
16423         into C file.
16424         
16425         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
16426         header to gdkinputprivate.h.
16427
16428         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
16429         unused since before 1.2.
16430
16431 1999-09-30  Tor Lillqvist  <tml@iki.fi>
16432
16433         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
16434         expand possible hex escapes in the font family (put there by
16435         logfont_to_xlfd if the font name isn't a legal XLFD font family,
16436         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
16437         On Win32, add hex escapes here, too.
16438
16439 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
16440
16441         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
16442         to #ifdef GDK_WINDOWING_X11.
16443
16444 [ Merges from gtk-1-2 ]
16445
16446 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
16447
16448         * configure.in: fixed "GNU Make" check to pass with new make version
16449         3.77.95.
16450
16451 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
16452
16453         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
16454         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
16455         AM_PATH_GTK() macros don't get confused by the -pre1.
16456
16457 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
16458
16459         * configure.in (REBUILD): Change check for perl5
16460           to check explicitely for v >= 5.002. (5.001
16461           does not work with our scripts.)
16462
16463 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
16464
16465         * configure.in: evaluate $PERL for the perl version check. added
16466         --disable-rebuilds to give the user an option to completely disable
16467         any source autogeneration rules.
16468
16469 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
16470
16471         * configure.in: evaluate $ac_make when checking for GNU Make.
16472
16473 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
16474
16475         * docs/Makefile.am: added generation.txt.
16476
16477         * Makefile.am: require automake 1.4, build README from README.in and
16478         INSTALL from INSTALL.in in dist-hook.
16479         
16480         * README.in:
16481         * INSTALL.in: new files to autogenerate README and INSTALL from.
16482
16483         * configure.in: figure whether we have GNU Make
16484
16485         * docs/generation.txt: minor additions/corrections.
16486
16487 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
16488
16489         * docs/gtkfaq.sgml: FAQ Update
16490
16491 July 30, 1999 Elliot Lee <sopwith@redhat.com>
16492         
16493         * configure.in: Fix autoconf warnings about cross compilation by
16494         trying to provide sane defaults for AC_TRY_RUN.
16495
16496 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
16497
16498         * ltconfig
16499         * ltmain.sh: upgrade to libtool 1.3.3
16500
16501 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
16502
16503         * INSTALL: Indicate that the --with-glib= configure
16504         time flag is unsupported.
16505
16506 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
16507
16508         * docs/generation.txt: Added a file that gives
16509         documenation about the autogeneration process for
16510         various autogenerated files.
16511         
16512 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
16513
16514         * configure.in (LIBS): Look for libgmodule in the
16515         right location.
16516
16517 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
16518
16519         * docs/gtk_tut.sgml: Removed references to
16520         code examples in my directory on gtk.org as
16521         they should all be in the tutorial now.
16522
16523         * docs/gtk_tut.sgml: Added sources for dial-test
16524         and scribble-xinput programs that were previously
16525         missing.
16526
16527 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
16528
16529         * TODO: Added entry about menu keyboard navigation, removed
16530         some finished items.
16531
16532 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
16533
16534         * acinclude.m4: Standardize on func_dgettext
16535         not func_gettext, so that the checks for dgettext
16536         actually are paid attention to.
16537
16538 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
16539
16540         * configure.in (LIBS): Add $INTLLIBS into $LIBS
16541         directly, rather than repeating the checks for
16542         gettext.
16543
16544         * INSTALL: Added information about gettext and
16545         NLS support.
16546
16547         * acinclude.m4 (LIBM): Check for dgettext, not
16548         just gettext. This should hopefully fix things wrt
16549         systems with old versions of GNU gettext installed.
16550
16551 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
16552
16553         * configure.in (LIBS): Look for libgmodule in the
16554         right location.
16555
16556 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
16557
16558         * autogen.sh: add --enable-maintainer-mode
16559
16560         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
16561
16562 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
16563
16564         * docs/gtk-config.1.in:
16565           docs/Makefile.am:
16566           configure.in: gtk-config is now generated.
16567
16568         * docs/gtk-config.1: Removed, now generated.
16569
16570 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
16571
16572         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
16573         handle CreateNotify itself, still put out a debuging message for
16574         --gdk-debug=events. made the ReparentNotify debugging message more
16575         verbose.
16576         wrap xcoords translation for ConfigureEvents into an error trap,
16577         a destroy event may already be pending, and in that case, the
16578         actuall coordinate values are not at all critical.
16579
16580 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
16581
16582         * gdk/gdkcc.c: Stop leaking the color_hash all over
16583         the place. Simplify and improve the logic.
16584
16585 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
16586
16587         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
16588         for prototypes and function implementations consistent (reported
16589         by Tomas Ogren).
16590
16591 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
16592
16593         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
16594         send_event set in debugging output.
16595         (gdk_compress_exposures): default initialize the event so we don't
16596         operate on bogus values (namely send_event).
16597
16598 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
16599
16600         * gdk/gdkwindow.c: When we receive an unexpected
16601         destroy notify on one of our windows, don't just
16602         warn about it, also mark our windows as destroyed.
16603
16604 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
16605
16606         * gdk/gdkfont.c (gdk_font_hash_insert): Add
16607           name => font and name => fontset hashes. The 
16608           name => fontset hash is a _big_ win since we
16609           weren't previously caching fontsets at all and loading
16610           fontsets is expensive. The name => font hash
16611           is less of a win, but it does save us from doing
16612           repeated XQueryFont calls on the same font.
16613
16614         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
16615           list so we can remove font/fontset from hash.
16616
16617 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
16618
16619         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
16620           and slightly confusing test. [ XInternAtom (,,TRUE)
16621           will never return None ].
16622
16623 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
16624
16625         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
16626           gdk/gdkwindow.c (gdk_window_set_hints):
16627
16628         Don't omit setting the properties if flags == 0 -
16629         there may be an existing set of properties there
16630         already. (Very old bug. Would it be better to
16631         delete the property instead?)
16632
16633         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
16634           spelling error in comment.
16635
16636 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
16637
16638         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
16639           to avoid stomping over gdk_error_warnings.
16640
16641         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
16642           as (bits_per_pixel + 7) / 8. This gives the same
16643           result as before for multiples of 8, but actually
16644           a "reasonable" value for 1bit or 4bit displays.
16645
16646 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
16647
16648         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
16649         GNU Make.
16650
16651 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
16652
16653         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
16654         discarding configure events.
16655
16656 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
16657
16658         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
16659         refcount is greater than zero.
16660
16661         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
16662
16663         * gdk/gdkfont.c (gdk_font_unref): Likewise.
16664
16665         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
16666
16667         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
16668
16669 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
16670
16671         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
16672         that format 32 => sizeof(item) == 4. It really is
16673         sizeof(long).
16674
16675 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
16676
16677         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
16678         core dump at all on X IO errors, only core dump
16679         if --enable-debug for X errors.
16680
16681 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
16682
16683         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
16684         unknown window:" message. disabled ConfigureNotify discarding code,
16685         because it led to events being processed out of order.
16686
16687 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
16688
16689         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
16690
16691         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
16692         we export this function, supress error warnings and don't reset the
16693         error code in the first half of this function.
16694
16695         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
16696         code (instead of just -1) so gdk_error_trap_pop() reveals something
16697         actually informative about the error that happened.
16698
16699         * gdk/*.c:
16700         don't rely on gdk_error_code being -1 if an error occoured, but just
16701         gdk_error_code != 0.
16702
16703 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
16704
16705         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
16706         pointer *before* invoking the filter function, so we at least don't
16707         crash if a filter is removed that is currently executed. window filters
16708         *really* need to be made truely reentrant at some point.
16709
16710 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
16711
16712         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
16713         PropertyNotify debug messages.
16714
16715 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
16716         
16717         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
16718         
16719         * gdk/gdkim.c: Fix cut-and-paste errors for 
16720         x/y and PreeditAttributes/StatusAttributes.
16721
16722 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
16723
16724         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
16725         G_MAXINT to 2^16 to alleviate overflow problems in
16726         various window managers.
16727
16728 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
16729
16730         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
16731         for fontsets.
16732
16733 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
16734
16735         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
16736         Initialize size_hints.x and size_hints.y because kwm
16737         brokenly pays attention to them.
16738         (Bug #1181 -  Lars Heete <hel@admin.de>)
16739
16740 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
16741
16742         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
16743         return value of gdk_list_visuals(). 
16744         (Bug #1193 - Morten Welinder <terra@diku.dk>)
16745
16746 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
16747
16748         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
16749         XSetIMValues to (void *) when comparing to NULL, to workaround
16750         the problem of some compilers barfing since older X headers don't
16751         have the prototype for it.
16752
16753 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
16754
16755         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
16756         for pseudocolor where colormap->colors was double
16757         allocated.
16758
16759         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
16760         color value in the hash table with the pixel filled
16761         in so when we do later hash table lookups, the color
16762         value is correct.
16763         
16764 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
16765
16766         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
16767         making the call
16768
16769 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
16770
16771         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
16772         pointed out by Morten Welinder <terra@diku.dk>.
16773
16774 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
16775
16776         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
16777           default filter from the list
16778
16779 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
16780
16781         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
16782           default filter from the list
16783
16784 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
16785
16786         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
16787
16788         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
16789         g_strdup_printf instead of calcing the length separately
16790
16791 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
16792
16793         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
16794         that we don't do in many other places. (Fixing duplicate 
16795         #include of config.h)
16796
16797         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
16798         Otherwise, #ifndef XINPUT_NONE check in the latter
16799         doesn't work. (Bug #546)
16800
16801 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
16802
16803         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
16804         "None" case insensitive.
16805
16806 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
16807
16808         * gdk/gdkselection.c: 
16809         Add error traps so if the other end of the connection
16810         dies, we survive.
16811
16812 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
16813
16814         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
16815         dest_xid field into two fields - one for the window
16816         to send in messages, one to indicate the last looked
16817         up window for caching purposes. This is needed, so
16818         that Leave messages get the correct window.
16819
16820 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
16821
16822         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
16823         Fix warning created by people mucking around
16824         with the gsource API.
16825
16826         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
16827         Change mapping between GIOCondition and GdkInputCondition
16828         to match the way the Linux kernel does it. This should
16829         fix problems where closed pipes were no longer signalling
16830         GDK_INPUT_READ on systems with a native poll().
16831
16832 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
16833
16834         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
16835         explicitly for the string "None" - it is in the XPM
16836         spec and some servers treat unknown colors in odd ways
16837         (like asking the user!)
16838
16839 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
16840
16841         * gdk/gdkevents.c: made "->" into a "." of previous change so
16842         it compiles
16843
16844 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
16845
16846         * gdk/gdkevents.c (gdk_compress_exposures): Set the
16847         window field of the event structure before calling
16848         user filters.
16849
16850 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
16851
16852         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
16853         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
16854
16855 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
16856
16857         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
16858         intermediate text property - prevents major memory
16859         leak when gdk_use_mb.
16860         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
16861
16862 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
16863
16864         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
16865         gtk-a-higuti-990322-[0-3]
16866
16867         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
16868         sizeof(wchar_t) != sizeof (GdkWChar)
16869
16870         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
16871         that was causing -DX_LOCALE not to work.
16872
16873         * gtk/gtkrc.c (gtk_rc_init):
16874         X_LOCALE will never have LC_MESSAGES defined
16875
16876         * gdk/gdk.c (gdk_init_check):
16877         Remove --xim-preedit and --xim-status from argv properly.
16878
16879         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
16880         that the client window is present on the X server
16881         before we pass it to the input method.
16882
16883 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
16884
16885         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
16886         if --display is specified on the command line, than
16887         the drag window will not be created on that display.
16888         
16889 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
16890
16891         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
16892         lookups with only_if_exists == TRUE were inserting
16893         bogus values into the atom cache.
16894
16895 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
16896
16897         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
16898         then reset it to NULL.
16899
16900         * gdk/gdkcolor.c:
16901         (gdk_colors_free): 
16902         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
16903         key for g_hash_table_remove() in both functions, this prevents us
16904         from accessing possibly uninitialized portions of a GdkColor structure
16905         where we are only interested in its pixel value.
16906
16907 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
16908
16909         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
16910         font hash table, if we have a GdkFontPrivate entry for this font
16911         already, simply increment its reference count, provided by Olaf Dietsche
16912         <olaf.dietsche+list.gtk@netcologne.de>.
16913
16914 1999-09-21  Tor Lillqvist  <tml@iki.fi>
16915
16916         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
16917         just to be sure.
16918
16919         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
16920         unused variables, leftovers from the X11 version.
16921
16922         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
16923
16924         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
16925         downcase fields on X11.
16926
16927 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
16928         
16929         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
16930         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
16931
16932 1999-09-17  Tor Lillqvist  <tml@iki.fi>
16933
16934         * gdk/win32/gdk.def: Add gdk_threads_mutex.
16935
16936         * gtk/makefile.msc: Correct path to libintl.
16937
16938         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
16939         use of gint vs. int, and gint vs. gboolean in headers and
16940         definitions. Use GtkType for the *_get_type functions. Note that
16941         these changes preserve binary compatibility.
16942
16943         * gdk/gdk.c
16944         * gdk/win32/gdk.c
16945         * gdk/gdk.h: Fix inconsistencies: gint vs int.
16946
16947         * gtk/gtkmain.c
16948         * gtk/gtkclist.c
16949         * gtk/gtkmenufactory.c
16950         * gtk/gtknotebook.c
16951         * gtk/gtkwidget.c: Fix inconsistencies, also gint
16952         vs. gboolean.
16953
16954         * gtk/gtkcolorsel.[ch]
16955         * gtk/gtkcombo.[ch]
16956         * gtk/gtkdrawingarea.[ch]
16957         * gtk/gtkgamma.[ch]
16958         * gtk/gtkhandlebox.[ch]
16959         * gtk/gtkhpaned.[ch]
16960         * gtk/gtkhruler.[ch]
16961         * gtk/gtkplug.[ch]
16962         * gtk/gtkpreview.[ch]
16963         * gtk/gtkruler.[ch]
16964         * gtk/gtksocket.[ch]
16965         * gtk/gtkstatusbar.[ch]
16966         * gtk/gtktoolbar.[ch]
16967         * gtk/gtkvbbox.[ch]
16968         * gtk/gtkvpaned.[ch]
16969         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
16970         functions.
16971
16972         * gtk/gtkgamma.h: Fix bug, missing () in call of
16973         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
16974
16975 1999-09-14  Tor Lillqvist  <tml@iki.fi>
16976
16977         * gdk/gdkcolor.c (gdk_colormap_new)
16978         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
16979         colormap->colors was allocated twice.
16980
16981         * gdk/win32/gdk.c: Remove some unused stuff.
16982
16983         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
16984         colormap.
16985
16986         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
16987         * gtk/gtklabel.h (gtk_label_get_type)
16988         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
16989         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
16990         in a couple of places, not guint.
16991
16992 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
16993
16994         * configure.in,po/et.po: added Estonian language file
16995
16996 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
16997
16998         * configure.in,po/da.po: added Danish file
16999
17000 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
17001
17002         * docs/gtkfaq.sgml: Minor FAQ Update
17003
17004 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
17005
17006         * docs/gtkfaq.sgml: FAQ update
17007
17008 1999-08-27  Tor Lillqvist  <tml@iki.fi>
17009
17010         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
17011         way to get window contents continually refreshed while resizing. I
17012         didn't like the effects myself, so it's not on by default.
17013
17014         * gdk/win32/gdkprivate.h: New flag variable
17015         gdk_event_func_from_window_proc, FALSE by default.
17016
17017         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
17018         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
17019         are passed --gdk-event-func-from-window-proc.
17020
17021         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
17022         and we have am event_func, call it instead of enqueing the event.
17023
17024 1999-08-23  Tor Lillqvist  <tml@iki.fi>
17025
17026         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
17027         Kelley: Set expose_count in GdkEventExposes correctly.
17028
17029         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
17030         MULTIPLE_WINDOW_CLASSES).
17031
17032         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
17033         for bug in NT, apparently NT *does* draw the end pixel, too, in
17034         LineTo with a one-pixel pen, so we don't have to do it ourselves.
17035
17036 1999-08-21  Tor Lillqvist  <tml@iki.fi>
17037
17038         Improvements by Hans Breuer: 
17039
17040         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
17041
17042         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
17043         CS_?REDRAW flags as they cause lots of (late) redraws when "show
17044         window contents while dragging" is turned on. Allocate at least
17045         one unique class for every GdkWindowType. If support for single
17046         window-specific icons is ever needed (eg. Dialog specific), every
17047         such window should get its own class.
17048
17049 1999-08-19  Tor Lillqvist  <tml@iki.fi>
17050
17051         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
17052         error that caused crashes.
17053
17054 1999-08-17  Tor Lillqvist  <tml@iki.fi>
17055
17056         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
17057         window, use ScrollWindowEx, and call UpdateWindow. This prevents
17058         bugs when for instance part of the window was outside the
17059         display. Thanks to Philippe Colantoni for finding and fixing this.
17060
17061 1999-08-16  Tor Lillqvist  <tml@iki.fi>
17062
17063         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
17064         endpoint calculations which were totally wrong. (A little RTFMing
17065         helps a lot ;-)
17066
17067         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
17068         from a separate directory, not from gettext, because of licensing
17069         issues (we want to use the LGPL version).
17070
17071         * README.win32: Mention the intl from glibc vs from gettext issue.
17072
17073 1999-08-13  Tor Lillqvist  <tml@iki.fi>
17074
17075         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
17076         in the key event handling: Now AltGr chars work again. Also,
17077         now Alt-digits are passed up as well as Control-digits.
17078         Pass keypad plus and minus as normal plus and minus.
17079
17080 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
17081
17082         * docs/gtkfaq.sgml: FAQ Update
17083
17084 1999-07-25  Tor Lillqvist  <tml@iki.fi>
17085
17086         * README.win32
17087         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
17088         the Wintab SDK.
17089
17090         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
17091         OK, but getting closer. Guard against bogus tilt data from Wacom
17092         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
17093         enable easier building without Wintab.
17094
17095         * gdk/win32/gdkinput.h
17096         * gdk/win32/gdkevents.c 
17097         * gdk/win32/gdkwindow.c: Minor changes related related to above.
17098         
17099         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
17100         code. As we have just one visual on Win32, no sense to have it in a
17101         table, and no need for the hash table.
17102
17103         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
17104         better on white background.
17105
17106 1999-07-21  Tor Lillqvist  <tml@iki.fi>
17107
17108         * README.win32: Update gcc build instructions. Mention gettext is
17109         GPL.
17110
17111         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
17112         supported cursor size with GetSystemMetrics.
17113
17114         * gdk/win32/gdkfont.c
17115         * gtk/gtkfontsel.c: Guard against some font weight and charset
17116         symbols being undefined (in mingw32 headers).
17117
17118         * gdk/win32/makefile.cygwin
17119         * gtk/makefile.cygwin
17120         * gtk/gtkthemes.c: No longer need to have differently named
17121         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
17122
17123 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
17124
17125         * docs/gtkfaq.sgml: Long awaited FAQ update.
17126
17127 1999-07-15  Tor Lillqvist  <tml@iki.fi>
17128
17129         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
17130         it. Obscure bit manipulation needed.
17131
17132         * gdk/win32/gdkevents.c: Logging.
17133         
17134         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
17135         style (file name include compiler name) for theme engines.
17136
17137 1999-07-13  Tor Lillqvist  <tml@iki.fi>
17138
17139         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
17140
17141         * gdk/win32/gdkevents.c: Fix long-standing bug in key
17142         events. The key.string wasn't zero-terminated, still we strdup'ed
17143         it in gdk_event_copy(). Synthesize crossing events for button
17144         events before possible propagation.
17145
17146         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
17147
17148         * gdk/win32/makefile.cygwin
17149         * gtk/makefile.cygwin: Use new DLL naming style for the
17150         GCC-compiled ones.
17151
17152         * gdk/win32/makefile.msc
17153         * gtk/makefile.msc: Cosmetics mostly.
17154
17155         * gtk/gtk.def: Add missing entry points.
17156
17157         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
17158
17159 1999-07-09  Tor Lillqvist  <tml@iki.fi>
17160
17161         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
17162         or height is zero. Don't print a warning if Pie or Arc fails, they
17163         always fail (?) for very narrow ellipses.
17164
17165         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
17166         the part or the destination window corresponding to source area
17167         outside of the source drawable's boundary.
17168
17169         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
17170         anything if less than two points.
17171
17172         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
17173         return NULL. Gtk cut-and-paste inside a single program works
17174         better this way. (It always gets the clipboard contents from
17175         Windows, not from its own copy, which is cleared anyway. I can't
17176         say I fully understand what happens... Emulating the X selection
17177         and property stuff is a bit of a mess.)
17178
17179         * gdk/win32/gdkevents.c
17180         * gdk/win32/gdkproperty.c: A bit more verbose logging.
17181
17182         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
17183         that never got deleted). Revamp gdk_region_shrink.
17184
17185         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
17186         after use.
17187
17188         * gtk/gtk.def: Add some missing entry points.
17189
17190         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
17191         component.
17192
17193 1999-07-04  Tor Lillqvist  <tml@iki.fi>
17194
17195         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
17196         Control-digits specially.
17197
17198 1999-07-03  Tor Lillqvist  <tml@iki.fi>
17199
17200         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
17201
17202 1999-06-28  Tor Lillqvist  <tml@iki.fi>
17203
17204         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
17205         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
17206         finding this.)
17207
17208 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
17209
17210         * gtk+.spec.in: Corrected some typos in files section.
17211         
17212 1999-06-15  Tor Lillqvist  <tml@iki.fi>
17213
17214         * README.win32: Mention using GNU gettext.
17215         * config.h.win32: Enable NLS stuff.
17216         * gtk/makefile.msc: Use GNU gettext.
17217         * gdk/win32/gdkdnd.c: Minor header reorg.
17218         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
17219         cosmetics.
17220         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
17221         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
17222
17223 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
17224
17225         * acinclude.m4
17226         * config.guess
17227         * config.status
17228         * ltconfig
17229         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
17230
17231 1999-05-30  Tor Lillqvist  <tml@iki.fi>
17232
17233         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
17234         SafeAdjustWindowRectEx. Don't override all calls to
17235         AdjustWindowRectEx by it, but use it only in two places: When
17236         creating a new top-level window and when moving a top-level
17237         window.
17238
17239         Use screen coordinate rectangle, not client rectangle, in
17240         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
17241         when we try to place a window so that the decoration (mainly,
17242         title bar) isn't visible.
17243
17244         These changes fix the bug that showed up for instance as the
17245         GIMP's saved top-level windows moving right and down (by an amount
17246         equal to the window decoration) for each session. This bug showed
17247         up also in testgtk's "Saved Position".
17248
17249         gdk_window_resize also redone a bit.
17250
17251 1999-05-25  Tor Lillqvist  <tml@iki.fi>
17252
17253         * gtk/testgtkrc: Add (commented out) Windows-style theme
17254         include line.
17255
17256         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
17257
17258 1999-05-18  Tor Lillqvist  <tml@iki.fi>
17259
17260         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
17261         gdkx.h to a gdk subdirectory, so that applications can include
17262         these with <gdk/*.h> without trouble.
17263
17264         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
17265         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
17266         have their bitmap destroyed.
17267
17268         * gdk/win32/gdk.def: Add gdk_root_parent.
17269
17270 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
17271
17272         * configure.in
17273           gtk-config.in
17274           ltconfig
17275           ltmain.sh     
17276           gtk/Makefile.am: changes to compile nicely (with xlib) 
17277           on BeOS
17278
17279 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
17280
17281         * acinclude.m4
17282         * config.guess
17283         * config.sub
17284         * ltconfig
17285         * ltmain.sh: upgrade to libtool 1.3
17286
17287 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
17288
17289         * gtk/gtkclist.c:
17290         * gtk/gtkctree.c: merges from gtk-1-2
17291
17292 1999-04-25  Tor Lillqvist  <tml@iki.fi>
17293
17294         Support added for building using a GNU toolchain on Win32,
17295         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
17296
17297         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
17298         * config.h.win32: Changes for gcc.
17299         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
17300         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
17301         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
17302         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
17303         Protect shl stuff unavaiilable with mingw32 headers.
17304         * gdk/win32/gdkevents.c: Fix typo.
17305         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
17306         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
17307         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
17308         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
17309         the mingw32 headers.
17310         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
17311         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
17312         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
17313         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
17314         Test for NATIVE_WIN32, not _MSC_VER.
17315         * gtk/gtkmain.c: No use warning about developer version on Win32,
17316         there aren't any non-developer versions anyhow.
17317         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
17318         * gtk/makefile.msc: Use pthread from another directory. Minor other
17319         changes. 
17320
17321 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
17322
17323         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
17324           default filter from the list
17325
17326 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
17327
17328         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
17329          when gtk_widget_grab_default() is called for a widget that
17330          is not within a GtkWindow.
17331
17332 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
17333
17334         * docs/gtk_tut.sgml, examples/clist.c: use a
17335           scrolled window in the clist example. Minor
17336           tutorial fixes.
17337
17338 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
17339
17340         * docs/gtk_tut.sgml: Style check from David King
17341           <dking@youvegotmail.net>
17342
17343 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
17344
17345         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
17346         compile with unknown value of GDK_WINDOWING
17347
17348 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
17349
17350         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
17351         after the rule is fired.
17352         (install-exec-local): Install gdkconfig.h only if the contents are
17353         different from the currently installed gdkconfig.h.
17354
17355 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
17356
17357         * gdk/Makefile.am (configexecincludedir): Rename from 
17358         configincludedir so that gdkconfig.h will be installed 
17359         as part of `make install-exec'. 
17360
17361 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
17362
17363         * acinclude.m4
17364         * config.guess
17365         * config.sub
17366         * ltconfig
17367         * ltmain.sh: upgrade to libtool 1.2f
17368
17369         * autogen.sh: libtool is not required to autogen gtk+
17370
17371         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
17372         needed)
17373
17374 1999-03-18  Tor Lillqvist  <tml@iki.fi>
17375
17376         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
17377         declaring gdk variables exported/imported from the DLL. New image
17378         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
17379         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
17380         GDK_DRAG_PROTO_OLE2.
17381
17382         * gdk/gdk.h: Merge in Win32 version: Two new functions,
17383         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
17384         declared only for the Win32 version, but could be in the X11
17385         version as well. (Needed for a Xlib-less gdk_imlib.)
17386         gdk_color_hash should have only one parameter. Declare
17387         gdk_threads_mutex with GDKVAR.
17388         
17389         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
17390         just one parameter.
17391
17392         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
17393         per pixel, not bits.
17394
17395         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
17396         Fetch bpp (which means bits-per-pixel here) from another place on
17397         Win32. Accept also depth==32 (which we might get on Win32) with
17398         bpp==32.
17399
17400         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
17401         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
17402         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
17403         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
17404         in the backend-dependent directory, not in the common gdk
17405         directory.
17406
17407         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
17408         headers.
17409
17410 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
17411
17412         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
17413         want to use the Gtk+ devel version (which is true, and yes - even i am
17414         currently working with the 1.2.x branch). so everyone reading this, you
17415         probably want to issue
17416         cvs checkout -r glib-1-2 glib
17417         and
17418         cvs checkout -r gtk-1-2 gtk+
17419         as your next two comands.
17420
17421 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
17422
17423         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
17424         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
17425
17426         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
17427         file. strongly deprecated the GTK_HAVE_* macros, we provide
17428         GTK_CHECK_VERSION() for people that need to check for certain
17429         Gtk+ versions.
17430
17431         * gtk/gtkcompat.h: removed this from CVS.
17432         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
17433         idea right from the start, it just didn't seem like that back then.
17434
17435 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
17436
17437         * merges from gtk-1-2:
17438
17439 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
17440
17441         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
17442         item factory class has been created.
17443         (gtk_item_factory_parse_rc): likewise.
17444
17445         * gtk/gtkmenu.c:
17446         keep proper references for old_active_menu_item.
17447         (gtk_menu_reparent): unset the usize of the new parent,
17448         so the menu can sanely be size requested and we don't get nasty screen
17449         artefacts upon next reparentation.
17450         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
17451         enter notify. only synthesize enter notifies if the pointer really is
17452         inside the event window.
17453         (gtk_menu_popdown): use gtk_menu_shell_deselect().
17454         (gtk_menu_popup): move the background setting stuff into
17455         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
17456
17457         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
17458         gtk_menu_shell_select_item() to select the new item.
17459         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
17460         do the right thing for deselection as well.
17461
17462 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
17463
17464         * gtk/gtkwidget.[hc]:
17465         (gtk_widget_accelerators_locked): return whether a widget's accelerators
17466         are locked.
17467
17468         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
17469         existing accelerators if the widget's accelerators are locked.
17470
17471 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
17472
17473         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
17474
17475         * gtk/gtkmenu.c: truely forward key press and key release events to
17476         the menu widget from the toplevel or tearoff window. we can't simply
17477         connect to that, we need to stop further processing of the events as
17478         well.
17479
17480 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
17481
17482         * gtk/gtkmenu.c:
17483         (gtk_menu_key_press): pass event->keyval, event->state to
17484         gtk_accelerator_valid, instead of event->keyval twice.
17485         refuse to install single letter accelerators for menus that use
17486         single letter shortcuts.
17487
17488         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
17489         gtk_menu_ensure_uline_accel_group().
17490
17491         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
17492         which will always return an uline accel group, made
17493         gtk_menu_get_uline_accel_group() return NULL if the group isn't
17494         yet created.
17495
17496 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
17497
17498         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
17499
17500         * gtk/gtkclist.c (gtk_clist_column_title_passive):
17501         Leave button sensitive, trap  button_press, button_release,
17502         motion_notify, enter_notify and leave_notify events instead.
17503         (gtk_clist_column_title_active): disconnect event handler.
17504         (gtk_clist_drag_data_get): fixed memory leak. Reported by
17505         Guillaume Laurent <glaurent@worldnet.fr>
17506
17507 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
17508
17509         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
17510         width/height mixups.
17511
17512         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
17513         if needed.
17514
17515 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
17516
17517         * gtk/testgtk.c (create_item_factory): unref the item factory after
17518         window's destruction.
17519
17520         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
17521         count on the menu shell around the menu item's activation, since the
17522         signal emission may cause menu shell destruction.
17523
17524         * gtk/gtkitemfactory.c:
17525         the previous code leaked one accel group per menu. we use
17526         gtk_menu_get_uline_accel_group() now to fix that, and with that
17527         also create the underline accelerator group of the menus only if
17528         required (i.e. an underline accelerator has been specified).
17529         (gtk_item_factory_construct):
17530         (gtk_item_factory_create_item): removed code that would create an
17531         extra accel group for the menu (and leak references).
17532         (gtk_item_factory_create_item): adapted the underline accelerator
17533         installation code to properly feature gtk_menu_get_uline_accel_group().
17534
17535         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
17536         menu->accel_group, this may return NULL if the accelerator group
17537         hasn't been set yet.
17538         added gtk_menu_get_uline_accel_group() to retrive the underline
17539         accelerator group of the menu, this will be created on demand
17540         and proper care is taken about its reference count.
17541
17542         * gtk/gtkitemfactory.h:
17543         * gtk/gtkitemfactory.c:
17544         dumped the approach of keeping a widgets by action list on the
17545         factory since the factory<->widget destroy negotiation didn't work
17546         and would be hard to get going at all. instead we keep a list of
17547         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
17548         persistant throughout a program's life time).
17549         also, i removed the static const gchar *key_* variables, and made
17550         them inline strings (they weren't actually used anyways).
17551         (gtk_item_factory_add_item): update ifactory->items.
17552         (gtk_item_factory_destroy): destroy ifactory->items (and remove
17553         the item factory pointer from the remaining ifactory widgets).
17554         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
17555         list to find the widget.
17556         (gtk_item_factory_get_item): new function that works around
17557         gtk_item_factory_get_widget() limitations, this function will only
17558         return menu items, even for <Branch> entries.
17559
17560 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
17561
17562         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
17563         font hash table, if we have a GdkFontPrivate entry for this font
17564         already, simply increment its reference count, provided by Olaf Dietsche
17565         <olaf.dietsche+list.gtk@netcologne.de>.
17566
17567         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
17568         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
17569
17570 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
17571
17572         * gtk/gtkcontainer.c:
17573         (gtk_container_add_with_args):
17574         (gtk_container_addv):
17575         (gtk_container_add): before adding a child to a conatiner, make sure
17576         it is (default) constructed, this is neccessary because under certain
17577         circumstances the child will get relized and mapped immediatedly, in
17578         which case it has to be constructed already.
17579
17580 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
17581
17582         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
17583         values > 1 as TRUE also.
17584
17585 1999-03-16  Tor Lillqvist  <tml@iki.fi>
17586
17587         * README.win32: New file.
17588                 
17589         * configure.in: Check for lstat.
17590
17591         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
17592         completeness.
17593
17594         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
17595
17596         * gtk/gtk.def: Removed CRs.
17597
17598         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
17599         ..\gdk\win32).
17600
17601         * gdk/win32/makefile.msc: Correct upwards relative paths.
17602         
17603 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
17604
17605         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
17606           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
17607           it was connecting a void function to expose_event and the int
17608           returning function to the draw signal
17609
17610 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
17611
17612         * configure.in:
17613         Use correct path to libgmodule.la when ref'ing uninstalled copy
17614         of glib.  (Already in stable branch, Bug #417)
17615
17616 1999-03-15  Tor Lillqvist  <tml@iki.fi>
17617
17618         Win32 merge and general portability stuff:
17619                 
17620         * acconfig.h,configure.in: Check for <sys/time.h>.
17621
17622         * gdk/win32: New directory (actually, been there for a while).
17623         
17624         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
17625         NATIVE_WIN32, and use these. Always case fold on Win32. No
17626         backslashed escapes on native Win32.
17627
17628         * gtk/{gtk.def,makefile.msc}: New files.
17629
17630         * gtk/Makefile.am: Add above new files.
17631         
17632         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
17633         instead of <strings.h>.
17634
17635         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
17636         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
17637         <unistd.h> appropriately.
17638
17639         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
17640         Use ABS() (from <glib.h>) instead of abs().
17641         
17642         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
17643         of gtk (and thus glib) headers, so that WIN32 will be
17644         defined. With MS C, include <direct.h> for mkdir prototype.
17645
17646         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
17647         some casts, needed by MS C.
17648
17649         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
17650         implemented).
17651
17652         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
17653         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
17654         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
17655
17656         * gtk/gtkmain.h: Mark variables for export/import on Win32.
17657                 
17658         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
17659         the event is not a hint, or its window is not the slider. Needed
17660         on Win32, at least.
17661
17662         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
17663         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
17664         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
17665         a subdirectory of the Windows directory as gtk system
17666         configuration directory.
17667
17668         * gtk/gtkselection.c: No chunks on Win32.
17669
17670         * gtk/gtksocket.c: Not implemented on Win32.
17671
17672         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
17673
17674         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
17675
17676         * gtk/maketypes.awk: Declare variables with a macro that expands to
17677         necessary export/import magic in the case of Win32.
17678                 
17679         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
17680
17681 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
17682
17683         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
17684         since those were meant only for gdki18n.h.  
17685         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
17686         for widechar tests.
17687         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
17688
17689 1999-03-13  Tor Lillqvist  <tml@iki.fi>
17690
17691         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
17692         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
17693
17694         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
17695         installed) to CFLAGS.
17696
17697         * gdk/Makefile.am: Add rules for gdkconfig.h.
17698
17699         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
17700         APIs.
17701
17702         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
17703         gdkx.h anyway when compiling for X11.
17704         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
17705         general): Merge in Win32 version.
17706         
17707         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
17708         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
17709         expansion (if we don't have HAVE_PWD_H), allow for drive
17710         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
17711         included code from Craig Setera's port to Win32 (the one that uses
17712         X11, and the cygwin dll), even if it probably will be abandoned.
17713
17714         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
17715         the user entered one herself.  This way one can complete *.h and
17716         don't get matches on any .help files, for instance.
17717         
17718 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
17719
17720         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
17721         font hash table, if we have a GdkFontPrivate entry for this font
17722         already, simply increment its reference count, provided by Olaf Dietsche
17723         <olaf.dietsche+list.gtk@netcologne.de>.
17724
17725         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
17726         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
17727
17728 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
17729
17730         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
17731         the number of calls to gdk_draw_point() (and thus to X) by
17732         clipping the points by hand.
17733
17734         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
17735         the clip parameter.
17736         (gtk_handle_box_paint): Only paint the handle if the expose area
17737         intersects it.
17738
17739 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
17740
17741         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
17742
17743 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
17744
17745         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
17746         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
17747
17748 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
17749
17750         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
17751          textmode (O_TEXT) for OS/2 version.
17752
17753 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
17754
17755         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
17756         GtkSpinButton, "input" and "output", to make the output more flexible.
17757         The user has to provide a mapping between adjustment->value and the
17758         output string (and vice versa, if the spin button is editable). 
17759         See testgtk for examples.
17760
17761 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
17762
17763         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
17764         new one.
17765         
17766         * configure.in: set gtk+ version to 1.3.0.