]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-10
convert the X coordinates so they're with respect to the line, rather than
[~andy/gtk] / ChangeLog.pre-2-10
1 2001-02-15  Havoc Pennington  <hp@redhat.com>
2
3         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): convert
4         the X coordinates so they're with respect to the line, rather than 
5         with respect to the layout.
6
7         * gtk/gtkalignment.c: Convert to new property API, patch from Lee
8         Mallabone
9
10         * gtk/testgtk.c (create_range_controls): add vscale tests, 
11         and inverted test
12
13         * gtk/gtkrange.c (gtk_range_set_inverted): new function to fix 
14         #50806
15
16         * gtk/gtkentry.c (gtk_entry_get_text): add G_CONST_RETURN
17
18         * gtk/gtktextiter.h (gtk_text_iter_is_last): rename 
19         gtk_text_iter_is_end
20
21         * gtk/gtktextbuffer.h (gtk_text_buffer_get_last_iter):
22         rename gtk_text_buffer_get_end_iter
23
24         * gtk/testgtk.c (create_labels): Add test for selectable
25
26         * gtk/gtkentry.c (gtk_entry_draw_text): Use new GDK API to draw
27         the selection stuff. This code is kind of broken since it doesn't 
28         use the theme engine.
29
30         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
31         fix infinite loop and y offset problem
32         (gdk_draw_layout_line_with_colors): fix foreground color handling
33
34         * gtk/gtklabel.h, gtk/gtklabel.c: Implement a "selectable" flag 
35         that makes the label selectable.
36         
37         * gtk/gtklabel.c (gtk_label_style_set): recreate the label's
38         layout when the style is set, since fonts etc. could have changed.      
39
40 Fri Feb 16 14:22:05 2001  Jonathan Blandford  <jrb@redhat.com>
41
42         * gtk/Makefile.am: Removed gtktreemodelsimple.[ch]
43
44         * gtk/gtktreemodelsimple.[ch]: removes
45
46 2001-02-16  Alexander Larsson  <alexl@redhat.com>
47
48         * gtk/gtktreemodelmapping.[ch]:
49         New files. Implement GtkTreeModelMapping.
50         
51         * gtk/Makefile.am:
52         Add gtktreemodelmapping.[ch].
53         
54         * gtk/gtk.h:
55         Add gtktreemodelmapping.h
56
57         * gtk/treestoretest.c:
58         Test the GtkTreeModelMapping
59
60 Tue Feb 13 13:16:09 2001  Jonathan Blandford  <jrb@redhat.com>
61
62         * demos/gtk-demo/panes.c (create_pane_options): If we're going to
63         have a demo, we might as well pass in real values.  Thanks to
64         clahey for pointing this out.
65
66 2001-02-14  Havoc Pennington  <hp@pobox.com>
67
68         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_remove): add
69         "static" to a private function
70         (gtk_image_menu_item_class_init): remove destroy handler,
71         add "image" object property
72
73 2001-02-13  Alexander Larsson  <alla@lysator.liu.se>
74
75         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region):
76         Add a shortcut if the window and the current clip_region doesn't
77         overlap. This is needed when there are a lot of windows in a
78         window. The layout test in testgtk is a good test.
79
80         * gdk/linux-fb/gdkwindow-fb.c:
81         Whitespace fix.
82
83 2001-02-13  Sven Neumann  <sven@convergence.de>
84
85         * demos/testanimation.c: replaced deprecated gtk_drawing_area_size
86
87 2001-02-13  Alexander Larsson  <alexl@redhat.com>
88
89         * gdk/linux-fb/gdkcursor-fb.c (gdk_fb_cursor_unhide):
90         Don't reference last_cursor if it is null. Fixes crash when rotating
91         the screen before having moved the mouse.
92
93         * gdk/linux-fb/gdkcc-fb.c: Zapp!
94
95         * gdk/linux-fb/Makefile.am: Don't compile gdkcc-fb.c
96
97         * gdk/linux-fb/gdkwindow-fb.c: Fix typo. width->height. Fixes redraw 
98         when using 90 or 270 degrees rotation.
99
100 2001-02-12  Havoc Pennington  <hp@pobox.com>
101
102         * gdk/gdkpango.c (gdk_pango_get_gc): fix bug where 
103         it always set the foreground, even if we were only using
104         a stipple.
105         (gdk_draw_layout_line_with_colors): new function, allow
106         override colors
107         (gdk_draw_layout_with_colors): new function, allow override
108         colors
109         (gdk_pango_layout_line_get_clip_region): function to get the clip
110         region for a logical text range
111         (gdk_pango_layout_get_clip_region): get the clip region for a
112         logical text range
113
114         * gdk/x11/gdkcolor-x11.c: forward declare gdk_colormap_sync(),
115         (gdk_colormap_new): fix call to gdk_colormap_sync() so it has 
116         the right number of arguments.
117
118         * gtk/gtktextbtree.c (gtk_text_btree_node_check_consistency):
119         enhance the function to check that node data corresponds to a 
120         view still belonging to the tree.
121
122         * gtk/gtktreeview.c (gtk_tree_view_changed): we were leaking the 
123         GtkTreePath
124         (gtk_tree_view_inserted): ditto
125         (gtk_tree_view_child_toggled): ditto
126
127         * gtk/gtktreemodel.c (gtk_tree_path_append_index): use realloc to
128         simplify this code.
129
130         * gtk/gtkcellrenderertext.c (get_layout): fix leak of 
131         a PangoAttrList
132
133         * demos/gtk-demo/main.c (load_file): Fix leak of a GString
134
135         * gtk/gtkentry.c (gtk_entry_realize): Fix leak of a GdkCursor
136
137         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): consider toggle
138         size in the size request 
139         (gtk_menu_bar_size_allocate): consider toggle size here
140
141         * gtk/gtkimagemenuitem.h, gtkimagemenuitem.c: Menu item
142         that displays a widget in the toggle slot
143
144         * gtk/testgtk.c: test GtkImageMenuItem
145
146         * gtk/Makefile.am, gtk/gtk.h: Add GtkImageMenuItem
147         
148         * gtk/gtkmenuitem.h: Use "gint" not "guint16" for toggle size
149         request and allocation
150
151         * gtk/gtkmenu.c (gtk_menu_size_request): use gint not guint16
152
153         * gtk/gtkcheckmenuitem.c
154         (gtk_check_menu_item_toggle_size_request): ditto
155         
156 Mon Feb 12 23:43:30 2001  Owen Taylor  <otaylor@redhat.com>
157
158         * gtk/Makefile.am (gdk_headers): Remove gdkcc.h 
159         reference.
160
161         * configure.in gtk/gtkmain.c: Add checks for setuid/setgid,
162         and refuse to initialize GTK+ if they fail.
163
164 Mon Feb 12 15:02:07 2001  Owen Taylor  <otaylor@redhat.com>
165
166         * configure.in: Add check for gtk-doc version.
167
168 Thu Feb  8 17:18:26 2001  Owen Taylor  <otaylor@redhat.com>
169
170         * gtk/gtklabel.c (gtk_label_size_request): Fix bug
171         where the xpad/ypad was only being used on one side!
172
173 2001-02-11  Tor Lillqvist  <tml@iki.fi>
174
175         * gdk/win32/gdkcolor-win32.c (gdk_colormap_query_color): New
176         function, copied from X11 version.
177
178         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Eliminate
179         DestroyCursor failures. The reason for the problem (despite the
180         inconsistent messages from GetLastError()) was that
181         DestroyCursor() cannot be called while a cursor is set in a
182         window. Set the new cursor first and then destroy the old one.
183         Thanks to jpe@archaeopteryx.com.
184
185         * gdk/win32/gdkcc-win32.c: Remove.
186
187         * gdk/win32/Makefile.am: Remove from here, too.
188         
189         * gdk/gdk.def
190         * gdk/makefile.mingw.in: Update. Godbye GdkColorContext.
191
192         * gtk/gtk.def
193         * gtk/makefile.mingw.in: Updates.
194
195 2001-02-08  Havoc Pennington  <hp@redhat.com>
196
197         * gtk/gtkbin.c (gtk_bin_add): better error message if you try to
198         add a widget to a bin that already has a child.
199
200         * gdk/gdkcc.h, gdk/gdkcc-x11.c: Remove GdkColorContext, #50512
201
202         * docs/Changes-2.0.txt: note that GdkColorContext is gone.
203         
204         * gdk/x11/Makefile.am (libgdk_x11_la_SOURCES): remove gdkcc-x11.c
205
206         * gdk/gdk.h: remove gdkcc.h
207
208         * gdk/Makefile.am (gdk_public_h_sources): remove gdkcc.h
209
210         * gtk/gtkpixmap.c (build_insensitive_pixmap): rewrite using
211         GdkPixbuf, since the previous implementation was GdkColorContext
212         dependent.
213
214         * gtk/testgtk.c (create_pixmap): add test for insensitive GtkPixmap
215         
216 Thu Feb  8 19:00:00 2001  Jonathan Blandford  <jrb@redhat.com>
217
218         * gtk/gtktreeview.c (TREE_VIEW_VERTICAL_SEPARATOR): moved back to
219         a sane value!
220
221 2001-02-08  Havoc Pennington  <hp@redhat.com>
222
223         * gtk/gtkstyle.c (get_darkened_gc): let's darken colors, not
224         lighten them.
225
226 2001-02-08  Havoc Pennington  <hp@redhat.com>
227
228         * gtk/gtktextview.c (gtk_text_view_destroy_layout): remove
229         validation idle
230
231         * demos/gtk-demo/main.c (create_tree): adjust to changes in text
232         cell renderer
233
234         * demos/pixbuf-demo.c (timeout): remove deprecated
235         gtk_widget_draw
236
237         * demos/testpixbuf-save.c (main): remove deprecated
238         gtk_drawing_area_size
239
240         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): allocate
241         buttons even if the model isn't setup. gtk_tree_view_check_dirty()
242         at the start of the allocation.
243         (gtk_tree_view_check_dirty): handle column->button == NULL, handle
244         unsetup or NULL model.
245
246         * gtk/gtkstyle.c (gtk_default_draw_flat_box): drawing for the 
247         even/odd/sorted cells in the tree view.
248
249         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
250         bugfixes
251
252         * gtk/gtktreeview.c: assorted bugfixy stuff. Draw the row
253         backgrounds with draw_flat_box using different detail for even/odd
254         rows.
255
256         * gtk/gtkrbtree.c, gtkrbtree.h: Keep track of the parity of each
257         row, so we can draw the alternating colors thing
258
259         * gtk/gtktexttag.c (gtk_text_tag_set_property): if we change a
260         property from a synonym property, notify for the synonym.
261         Also, nuke the background_gdk_set and foreground_gdk_set synonyms
262         (gtk_text_tag_get_property): Always return the font, even if
263         all its fields aren't set
264
265         * gtk/gtkcellrenderertext.h (struct _GtkCellRendererText): don't
266         store the attr list; it leaves us with no way to change attributes
267         in _render according to the render flags, and no way to implement
268         get_property. Instead store all the specific text attributes. 
269         Separate whether an attribute is enabled from its value. Sync all
270         properties with GtkTextTag, make them all consistent, etc.
271
272         * gtk/gtkcellrenderer.h: Add a flag GTK_CELL_RENDERER_SORTED so
273         renderers can highlight the sort row/column     
274
275         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_property): use
276         accessor functions to get values; this has the side effect of
277         showing up which accessor functions were missing. Added those.
278
279         * gtk/gtktreeviewcolumn.h: Replace set_justification with
280         set_alignment, to be consistent with GtkLabel, GtkMisc
281
282         * gtk/gtktreeviewcolumn.c: Added code to display sort indicator
283         arrow.
284
285         * gtk/Makefile.am (gtk_public_h_sources): add gtktreesortable.h
286
287         * gtk/gtktreesortable.h: updates in here
288
289 2001-02-07  Sven Neumann  <sven@convergence.de>
290
291         * gtk/gtkentry.c (gtk_entry_draw_text): convert area_height to 
292         pango dimensions after painting the background. We used to draw
293         gigantic flat boxes here.
294
295 Mon Feb  5 22:05:57 2001  Owen Taylor  <otaylor@redhat.com>
296
297         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Fix syntax
298         error introduced with earlier commit) (pointed out by
299         Ollie Lho)
300
301 Mon Feb  5 12:25:06 2001  Owen Taylor  <otaylor@redhat.com>
302
303         * gtk/gtkbutton.c: Remove calls to gtk_grab_add/gtk_grab_remove,
304         which are no longer necessary.
305
306 Mon Feb  5 13:22:54 GMT 2001  Tony Gale <gale@gtk.org>
307
308         * docs/faq/gtk-faq.sgml: s/MISK/MISC/
309
310 2001-02-04  Tor Lillqvist  <tml@iki.fi>
311
312         * gdk/gdk.def
313         * gdk/win32/gdkim-win32.c (gdk_ic_attr_new, gdk_ic_attr_destroy):
314         Provide dummy implementations.
315
316 Sun Feb  4 07:55:17 2001  Tim Janik  <timj@gtk.org>
317
318         * gtk/gtksignal.h: removed gtk_signal_init() compat define.
319
320         * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument
321         GTypeDebugFlags debug_flags and pass it on to g_type_init ();
322         deprecated this function.
323
324         * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as
325         argument.
326
327 Sun Feb  4 07:45:45 2001  Tim Janik  <timj@gtk.org>
328
329         * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS.
330
331 2001-02-03  Havoc Pennington  <hp@pobox.com>
332
333         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Fix bug reported by
334         Mikael Hermansson with patch from Mikael (if there was a toggle
335         start one after the first character in the range, this function
336         was broken). Bug #50380
337
338 Sat Feb  3 11:28:03 2001  Owen Taylor  <otaylor@redhat.com>
339
340         * configure.in: Remove confusing comment about X11.
341
342 Fri Feb  2 19:21:23 2001  Owen Taylor  <otaylor@redhat.com>
343
344         * gdk/gdkwindow.c (gdk_propagate_shapes): Surround additional
345         regions with HAVE_SHAPE_EXT. (#50511, Eric Ding)
346         
347 Fri Feb  2 18:31:54 2001  Owen Taylor  <otaylor@redhat.com>
348
349         * gdk/x11/gdkimage-x11.c: Remove definition of _XOPEN_SOURCE, since
350         it breaks things on BSD. If you want to compile GTK+ with
351         -ansi -pedantic, you should supply CPP_FLAGS=_XOPEN_SOURCE 
352         when configuring, since GTK+ simply can't be "pure ANSI" 
353         in the header files it uses. (#8170, Greg Hudson)
354
355 2001-02-02  Havoc Pennington  <hp@redhat.com>
356
357         * gtk/gtkwindow.c: docs
358
359         * gtk/gtkwidget.c: docs
360         (gtk_widget_set_colormap): add a reference to the colormap
361         (gtk_widget_get_default_colormap): add a reference to the colormap
362
363         * gtk/gtktextbtree.c (gtk_text_mark_set_visible): docs
364
365         * gtk/gtktextiter.c: docs
366
367         * gtk/gtkmain.c (gtk_propagate_event): docs
368
369         * gtk/gtkpaned.c (gtk_paned_get_position): docs
370         (gtk_paned_set_position): docs
371
372         * gtk/gtktreesortable.h (struct _GtkTreeSortableIface): Initial
373         sort interface, no implementation yet.
374
375         * demos/testpixbuf.c (new_testrgb_window): replace
376         gtk_drawing_area_size() with gtk_widget_set_usize()
377
378         * demos/testpixbuf-drawable.c (main): ditto
379         
380         * gtk/testgtk.c: remove use of GtkStatusbarMsg
381
382         * gtk/gtktextbuffer.c: docs
383
384         * gtk/gtkstock.c: docs
385
386         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_shadow_type): docs
387
388         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): docs
389
390         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): fix docs
391         
392         * gtk/gtkimage.c: add some docs in here
393         (gtk_image_size_request): change name of
394         gtk_widget_render_stock_icon
395         (gtk_image_get_icon_set): don't dup returned string
396         (gtk_image_get_icon_set): don't dup returned string
397
398         * gtk/gtkwidget.c (gtk_widget_render_icon): rename from 
399         gtk_widget_render_stock_icon(), more consistent with gtkstyle.h
400         and gtkiconfactory.h functions
401
402         * gtk/gtkiconfactory.c: add some docs in here
403
404         * gtk/gtkmain.c (gtk_get_default_language): document
405         (gtk_get_current_event): document
406         (gtk_get_current_event_state): document
407         (gtk_get_event_widget): document
408
409         * gtk/gtkentry.c (gtk_entry_set_invisible_char): document
410
411         * gtk/gtkcontainer.c: Add some documentation
412         (gtk_container_add): give a more explanatory warning on adding an
413         already-parented widget, this is kind of a FAQ and also a common
414         typo that's easier to debug with a nice warning 
415
416         * gtk/gtkcellrenderertoggle.c
417         (gtk_cell_renderer_toggle_get_active): remove, I was on crack
418         adding this, it's useless
419         (gtk_cell_renderer_toggle_set_active): remove
420         (gtk_cell_renderer_toggle_get_radio): add
421
422         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): don't allow
423         the NULL cell renderer, that doesn't make any sense to me. 
424
425         * demos/gtk-demo/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED,
426         demo code should never use deprecated features.
427
428         * demos/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED, demo
429         code should never use deprecated features.
430
431         * gtk/gtkwidget.h: Mark gtk_widget_draw, gtk_widget_queue_clear,
432         gtk_widget_queue_clear_area deprecated
433
434         * gtk/gtklayout.h: mark gtk_layout_freeze/gtk_layout_thaw
435         deprecated
436
437         * gtk/gtklabel.h: mark gtk_label_get() deprecated
438
439         * gtk/gtkimage.h: mark the legacy GtkImage functions that took 
440         a GdkImage deprecated, replaced by new consistently-named
441         functions       
442
443         * gtk/gtkmain.h: Mark gtk_exit() deprecated
444
445         * gtk/gtkdrawingarea.h: mark gtk_drawing_area_size deprecated
446
447         * gtk/gtkstyle.h: mark gtk_draw_string, gtk_paint_string 
448         deprecated
449
450         * gtk/gtkstatusbar.h: Move GtkStatusbarMsg to the .c file, 
451         so it won't appear in docs and confuse people.
452
453         * gtk/gtkprogressbar.h: Mark all the old methods deprecated
454
455         * gtk/gtkprogress.h: Mark all methods deprecated, mark the cast
456         macros deprecated. (can't mark the type itself deprecated, since
457         GtkProgressBar is not deprecated and we need the type decl to use
458         GtkProgressBar)
459
460         * gtk/gtkpixmap.h: Mark deprecated
461
462         * gtk/gtkoldeditable.h: Mark deprecated
463
464         * gtk/gtklist.h: Mark deprecated
465
466         * gtk/gtklabel.h: delete "GtkLabelWord" typedef, not used 
467         for anything anymore.
468
469         * gtk/gtkctree.h: Mark deprecated
470
471         * gtk/gtkclist.h: Mark deprecated
472
473         * gtk/gtkpreview.h: Mark deprecated
474
475         * gtk/gtkpacker.h: Mark deprecated
476
477         * gtk/gtktipsquery.h: Mark deprecated
478
479         * gtk/gtkinputdialog.h: Add comment that it will move out of GTK
480
481         * gtk/gtkvruler.h: Add comment that it will move out of GTK
482
483         * gtk/gtkhruler.h: Add comment that it will move out of GTK
484
485         * gtk/gtkruler.h: Add comment that it will move out of GTK
486
487         * gtk/gtkgamma.h: Add comment that it will move out of GTK
488
489         * gtk/gtkcurve.h: Add comment that it will move out of GTK
490
491 Fri Feb  2 17:16:09 2001  Owen Taylor  <otaylor@redhat.com>
492
493         * gdk/x11/gdkcolor-x11.c (gdk_colormap_sync): Make
494         gdk_colormap_sync private since it was never exported
495         in a header file.
496
497         * gdk/x11/gdkcolor-x11.c (gdk_colormap_new): Fill in
498         colormap->colors[] for StaticGray, StaticColor colormaps.
499
500         * gdk/gdkpixbuf-drawable.c: Fix problems where image->bpp
501         was being used as if it was image->bits_per_pixel.
502
503         * gdk/gdkimage.h, gdk/x11/gdkimage-x11.c: Save the bits-per-pixel
504         for the image in the GdkImage structure since it isn't
505         reconstructable, and we need it to handle packed types
506
507         * gdk/win32/gdkimage-win32.c: Set image->bits_per_pixel. (I'm making
508         the assumption that on Win32 image->bits_per_pixel == image->depth,
509         always.
510
511         * gdk/linux-fb/gdkimage-fb.c: Set image->bits_per_pixel.
512
513         * gdk/gdkrgb.c (gdk_rgb_select_conv): Exit with an informative
514         warning message if no converter can be found. 
515
516 Fri Feb  2 15:09:51 2001  Owen Taylor  <otaylor@redhat.com>
517
518         * gtk/fnmatch.c (FOLD): Fix problem with passing signed
519         chars to isupper() / tolower(). (#567)
520
521         * examples/packer/pack.c: Add GINT_TO_POINTER, GPOINTER_TO_INT
522         to clear up 64-bit warnings. (#567)
523
524 Fri Feb  2 12:26:50 2001  Owen Taylor  <otaylor@redhat.com>
525
526         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Get rid of
527         a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
528
529         * gtk/gtkrc.c Makefile.am: Use $(libdir), not $(exe_prefix),
530         since some people set $(libdir) separately. (#1290, David Kaelbling)
531
532 Thu Feb  1 18:25:46 2001  Owen Taylor  <otaylor@redhat.com>
533
534         * gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not
535         defined, define MAXPATHLEN to 2048. (The Hurd doesn't have
536         MAXPATHLEN, but the code here depends on a fixed value.)
537         (#4524)
538
539 Wed Jan 31 22:01:04 2001  Owen Taylor  <otaylor@redhat.com>
540
541         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Handle the case
542         where child == NULL and handle_position == RIGHT or BOTTOM. (#8041g)
543
544 Wed Jan 31 21:20:39 2001  Owen Taylor  <otaylor@redhat.com>
545
546         * gtk/gtkctree.c (real_tree_move): If the node being moved isn't
547         viewable there is no way that moving the node will cause the 
548         focus row to become not viewable, so omit check on the visibility
549         of new_sibling, which is irrelevant. (Fixes #8002, David Helder)
550
551 Wed Jan 31 20:38:17 2001  Owen Taylor  <otaylor@redhat.com>
552
553         * gtk/gtkentry.c (gtk_entry_commit_cb): Delete the current
554         selection before inserting new text.
555
556 Wed Jan 31 18:49:33 2001  Owen Taylor  <otaylor@redhat.com>
557
558         * gtk/gtkoptionmenu.c (gtk_option_menu_item_state_changed_cb):
559         Make the sensitivity of the reparented child track that of
560         the original parent menu item. (#34218, David Hodson)
561
562         * gtk/gtkoptionmenu.c (gtk_option_menu_item_destroy_cb): Handle
563         the case where the current item is destroyed properly.
564
565         * gtk/gtkoptionmenu.c: Some additional code cleanups and fix
566         some edge cases with child-less menuitems.
567         
568 Wed Jan 31 17:16:13 2001  Owen Taylor  <otaylor@redhat.com>
569
570         * gtk/gtkcombo.c (gtk_combo_window_key_press): Make Return
571         key pop down window. (#12074, Jon K Hellan)
572
573 Wed Jan 31 16:21:42 2001  Owen Taylor  <otaylor@redhat.com>
574
575         * gtk/gtklist.c (gtk_list_signal_item_toggle): Don't allow
576         toggling of rows off in BROWSE or EXTENDED mode. (#12072, Jon K Hellan) 
577         The solution here isn't perfect - you get an extraneous
578         emission of "toggle", which could conceivably confuse an app,
579         but better than the current situation. LXR search seems to
580         indicate that no apps in GNOME CVS connect to "toggle".
581
582 Wed Jan 31 15:46:13 2001  Owen Taylor  <otaylor@redhat.com>
583
584         * gtk/Makefile.am (libgtkinclude_HEADERS): Move gtkcompat.h from
585         gtk_public_h_sources to directly here to avoid warning when
586         building srcdir != builddir. (#9656)
587
588 Tue Jan 30 19:49:02 2001  Owen Taylor  <otaylor@redhat.com>
589
590         * gtk/gtkrange.c: Patch from Kipp Hickman to make the event
591         handlers in gtkrange.c return the proper values (TRUE == handled)
592         (#10316).
593
594         This is just the tip of the iceberg, but gtkrange.c is the
595         most common place where the propagation is problematical,
596         and also a place where it is almost certainly safe to change
597         this in the stable branch.
598
599         (You don't want right click popups on a range control or anything...)
600
601 Tue Jan 30 18:57:59 2001  Owen Taylor  <otaylor@redhat.com>
602
603         * gtk/gtktext.c (clear_focus_area): We need to clear the focus
604         area on focus out, even if a background pixmap isn't set.
605         (#13941)
606         
607 Tue Jan 30 18:24:10 2001  Owen Taylor  <otaylor@redhat.com>
608
609         * gtk/gtknotebook.c (gtk_notebook_set_shape): Fix from Sean Cunningham
610         to deal with setting the shape properly when scrolling arrows are
611         turned on, but not visible because there is sufficient space.
612         (#13432)
613
614 Tue Jan 30 16:39:25 2001  Owen Taylor  <otaylor@redhat.com>
615
616         * gtk/gtkitemfactory.c (gtk_item_factory_delete_item): For menu
617         items with submenus, destroy the item along with the submenu.
618         (#7841, Brian Masney(?)) Also, handle paths of the form '<foo>/abcd...' 
619         properly.
620
621         * gtk/testgtk.c (menu_items): Add a dummy branch that we delete
622         later.
623
624 Tue Jan 30 15:51:25 2001  Owen Taylor  <otaylor@redhat.com>
625
626         * gtk/gtkwindow.c (gtk_window_real_set_focus): Fix a problem where
627         the focus widget sometimes wasn't drawn with the default if there
628         was no default widget.
629
630         * gtk/gtkstyle.c (gtk_style_real_unrealize): free colors,
631         unreference pixmaps. 
632
633         * gtk/gtkstyle.c (gtk_style_realize): Reference colormap
634         for some extra safety.
635
636 Mon Jan 29 19:00:01 2001  Owen Taylor  <otaylor@redhat.com>
637
638         * gtk/gtk{ctree.c,clist.c} (set_cell_contents): Handle setting
639         the text of a cell to the old pointer value better, by
640         copying the new text before freeing the old text. Some code
641         cleanup. (#8079, Karl Nelson)
642
643 Mon Jan 29 16:50:19 2001  Owen Taylor  <otaylor@redhat.com>
644
645         * gtk/gtklabel.[ch] gtk/gtkframe.[ch]: Make gtk_label_get_text()
646         gtk_frame_get_label() non strdup'ing, and G_CONST_RETURN.
647
648 Mon Jan 29 15:22:51 2001  Owen Taylor  <otaylor@redhat.com>
649
650         * gtk/gtkmenu.c (gtk_menu_remove): When removing an
651         item from a menu, check to see if it matches 
652         menu->old_active_menu_item, and if so, unref and clear
653         old_active_menu_item (Patch from Pavel Cisler)
654
655         * gtk/gtkmenushell.c (gtk_menu_shell_remove): Unset 
656         menu_shell->active_menu_item, if it is the child being
657         removed. (Patch based on that of Gene Ragan, #50337)
658
659 2001-01-31  Alexander Larsson  <alla@lysator.liu.se>
660
661         * gdk/linux-fb/gdkselection-fb.c: 
662         * gdk/linux-fb/gdkcolor-fb.c: 
663         * gdk/linux-fb/gdkdrawable-fb2.c: 
664         * gdk/linux-fb/gdkfont-fb.c: 
665         * gdk/linux-fb/gdkim-fb.c: 
666         * gdk/linux-fb/gdkinput.c: 
667         * gdk/linux-fb/gdkkeyboard-fb.c: 
668         * gdk/linux-fb/gdkmain-fb.c: 
669         * gdk/linux-fb/gdkrender-fb.c: 
670         A bunch of whitespace cleanup.
671         
672 2001-01-30  Havoc Pennington  <hp@pobox.com>
673
674         * gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in 
675         #ifdef GTK_ENABLE_BROKEN.
676
677         * gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
678         GTK_ENABLE_BROKEN just before including the broken headers.
679         
680         * gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
681         deprecated types registered.
682
683         * gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
684         we have to test the broken stuff.
685
686         * docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
687         
688 2001-01-30  Havoc Pennington  <hp@redhat.com>
689
690         * gtk/gtkliststore.c (gtk_list_store_insert_before): fix bug in
691         here where prev pointer was set to the wrong thing
692
693         * gtk/gtktreemodel.c (gtk_tree_path_is_ancestor): new function
694         (gtk_tree_path_is_descendant): new function
695
696         * gtk/gtkliststore.c (gtk_list_store_iter_n_children): return
697         cached length
698         (gtk_list_store_get_iter): don't modify iter if we can't get the
699         path.
700
701         * gtk/gtkliststore.h (struct _GtkListStore): cache the length
702         
703         * gtk/gtktreednd.h: add virtual function row_drop_possible() to
704         GtkTreeDragDest
705
706         * gtk/gtktreestore.c (copy_node_data): fix varargs type error that
707         was causing segfault
708
709         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_copy): set next
710         pointer to NULL
711
712         * gtk/gtktreestore.c (gtk_tree_store_append): fix memleak
713
714         * gtk/gtkliststore.c (gtk_list_store_iter_next): don't modify iter
715         on returning FALSE
716         (gtk_list_store_iter_children): ditto
717         (gtk_list_store_iter_nth_child): ditto
718         (gtk_list_store_iter_nth_child): ditto
719         (gtk_list_store_iter_parent): ditto
720
721         * gtk/gtktreestore.c (gtk_tree_store_get_path): g_return_if_fail
722         on iter->user_data != NULL instead of silently accepting it.
723         (gtk_tree_store_iter_next): ditto. Also, don't modify iter unless
724         we are returning TRUE.
725         (gtk_tree_store_iter_children): ditto
726         (gtk_tree_store_iter_nth_child): ditto
727         (gtk_tree_store_iter_parent): ditto
728         (gtk_tree_store_insert): remove handling of parent->user_data ==
729         NULL, replace with parent == NULL       
730
731         * gtk/gtktreemodel.c (inserted_callback): put some fixes in here,
732         and a comment explaining things
733
734         * gtk/gtktreestore.c: add GtkTreeDragSource/GtkTreeDragDest
735         interface support to GtkTreeStore.
736
737         * gtk/gtktreemodel.c (gtk_tree_path_prev): didn't properly return
738         FALSE if no prev, fix
739
740         * gtk/gtktreeview.c (set_source_row): use a row reference
741         (set_dest_row): use a row reference
742
743 Sat Jan 27 15:52:02 2001  Jonathan Blandford  <jrb@redhat.com>
744
745         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
746         stupid typo pointed out by Kristian Rietveld <kristian@planet.nl>.
747         (gtk_tree_selection_select_iter): The same as above.
748
749 2001-01-26  Havoc Pennington  <hp@redhat.com>
750
751         * gtk/gtktreemodel.c, gtk/gtktreemodel.h: add GtkTreeRowReference
752         which holds a handle to a specific row (particular set of values
753         in the model, i.e. pointer-identity row).
754
755         * gtk/gtktreeview.c, gtk/gtktreeprivate.h, gtk/gtktreeselection.c:
756         use GtkTreeRowReference for anchor, cursor, and drag_dest_row.
757         Still need to use it for the src/dest row saved on the drag context.
758
759 2001-01-26  Havoc Pennington  <hp@redhat.com>
760
761         * gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
762
763         * gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
764         not offset by TREE_VIEW_HEADER_HEIGHT
765         (gtk_tree_view_tree_to_widget_coords): fix to not offset by
766         TREE_VIEW_HEADER_HEIGHT
767
768         * configure.in (included_loaders): for me, --with-included-loaders
769         generates the error "the specified loader yes does not exist",
770         i.e. the arg defaults to "yes", so change test for value ""
771         to test for value "yes", and include all loaders in that case.
772
773         * gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
774
775         * gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
776         handle TREE_VIEW_VERTICAL_SEPARATOR
777         (gtk_tree_view_bin_expose): fix to consider the row offset as
778         pointing halfway into vertical separator.       
779         (gtk_tree_view_draw_node_focus_rect): ditto
780
781         * gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
782         --gtk-debug=updates, which causes gdk_window_set_debug_updates
783         (TRUE) to be called.
784
785         * gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
786         debug mode where the invalid region is colored in on invalidate,
787         so you can see the flicker and know whether your redraw code is 
788         doing a good job.
789
790         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in 
791         tree window coordinates (clip rect is in tree window coords)
792
793         * gtk/Makefile.am: add gtktreednd.[hc]
794
795         * gtk/gtkliststore.c: implement gtktreednd interfaces.
796
797         * gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
798         drag-and-drop data operations on a model (so we can set up tree
799         drag-and-drop automatically)
800
801         * gtk/testgtk.c: Add a window to change sensitivity in the
802         GtkLabel test; add a way to change the entry frame in GtkEntry
803         test
804
805         * gtk/gtkentry.c (gtk_entry_set_has_frame): 
806         (gtk_entry_get_has_frame): new functions to remove the frame
807         around an entry
808         (gtk_entry_size_request): shrink requisition if no frame
809         (gtk_entry_draw_focus): don't draw frame if no frame
810
811         * gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
812         checks inside a cell renderer
813         (gtk_default_draw_option): ditto for options
814
815         * gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
816         children from the alignment, not the button
817         (gtk_tree_view_column_init): ref/sink the column, to emulate
818         GObject refcounting.
819
820         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
821         
822         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
823         Use theme functions to draw the toggles 
824
825         * gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
826
827         * gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
828         GdkPangoAttrEmbossed to use in rendering insensitive text
829
830         * gdk/gdkpango.c (gdk_draw_layout_line): render new properties
831
832         * gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
833         using new GDK features
834         
835 2001-01-24  Alexander Larsson  <alexl@redhat.com>
836
837         * gtk/gtkimage.c:
838         Splitted gtk_image_clear into gtk_image_clear() and
839         gtk_image_reset(). Call gtk_image_clear() in ::destroy
840         to avoid leaks.
841
842         * gtk/gtklabel.c (set_markup):
843         Don't leak text.
844
845         * gtk/gtktextlayout.c:
846         Always free display->shaped_objects.
847
848         * gtk/testgtk.c (create_clist):
849         Don't leak custom style.
850
851 2001-01-23  Alexander Larsson  <alexl@redhat.com>
852
853         * gtk/gtkcolorsel.c (grab_color_at_mouse):
854         Don't leak image. Simplify using gdk_colormap_query_color().
855         (gtk_color_selection_init): Don't leak dropper_pixmap and mask.
856
857         * linux-fb/gdkcolor-fb.c:
858         Implemented gdk_colormap_query_color.
859
860 2001-01-23  Alexander Larsson  <alexl@redhat.com>
861
862         * linux-fb/gdkcursor-fb.c:
863         Don't leak built-in cursors.
864
865         * linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_polygon):
866         Don't leak tmp_points.
867
868         * linux-fb/gdkfont-fb.c (gdk_font_from_description):
869         Don't modify desc. Don't leak font if the PangoFont
870         isn't found.
871         
872         * linux-fb/gdkgc-fb.c (gdk_fb_gc_finalize):
873         Free dash_list.
874
875         * linux-fb/gdkkeyboard-fb.c (gdk_fb_handle_key):
876         Don't leak string.
877         
878 2001-01-20  Havoc Pennington  <hp@pobox.com>
879
880         * gtk/gtktexttag.h (enum GtkWrapMode): rename member fields
881         from GTK_WRAPMODE_WORD to GTK_WRAP_WORD, etc., seems nicer to 
882         me, matches Pango
883
884 2001-01-22  Havoc Pennington  <hp@redhat.com>
885
886         * demos/testanimation.c: fix to reflect gdk-pixbuf changes
887
888         * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes
889
890         * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: 
891         Remove, move back to gdk-pixbuf
892
893         * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents
894         to all the word functions
895
896         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return
897         before doing anything on NULL layout or if we don't have the focus
898
899         * gtk/testtext.c (fill_example_buffer): "justification"
900
901         * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute
902         to be called "justification" not "justify"
903
904         * demos/gtk-demo/textview.c (create_tags): "justification"
905         
906         * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
907
908 2001-01-22  Alexander Larsson  <alexl@redhat.com>
909
910         * gdk/gdkwindow.c (gdk_window_invalidate_region):
911         Don't leak visible_region. Use visible_region instead of region.
912         
913         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
914         Don't do extra gdk_drawable_ref(). This is not X.
915         (gdk_fb_window_find_focus, gdk_fb_change_focus): make sure
916         gdk_fb_focused_window is ref:ed.
917         (gdk_fb_window_send_crossing_events): Watch out for destroyed
918         windows.
919
920 2001-01-22  Alexander Larsson  <alexl@redhat.com>
921
922         * gtk/gtkwindow-decorate.c (gtk_decorated_window_realize):
923         Don't leak the PangoFontDescriptor.
924
925 Sun Jan 21 09:58:00 2001  Jonathan Blandford  <jrb@redhat.com>
926
927         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): Make fail
928         when not realized.
929         (gtk_tree_view_scroll_to_cell): Make work when not realized.
930         (gtk_tree_view_realize): add scroll_to support
931         (gtk_tree_view_finalize): add a finalize method.  Populate.
932         (gtk_tree_view_insert_column): ref and sink the column.
933         (gtk_tree_view_append_column): ref and sink the column.
934         (gtk_tree_view_queue_draw_node): New function to handle redrawing
935         individual nodes.  Should make the code much more efficient, if
936         actually used.
937
938 2001-01-19  Havoc Pennington  <hp@redhat.com>
939
940         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
941         byte_offset variable was being used to mean both "offset into
942         layout" and "offset into buffer line" which was no longer true
943         with addition of preedit string; fix
944
945 2001-01-19  Havoc Pennington  <hp@redhat.com>
946
947         * demos/gtk-demo/main.c (button_press_event_cb): sync to tree changes
948
949         * gtk/gtkrbtree.c (_gtk_rbtree_node_find_offset): fix this
950         function
951
952         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_widget):
953         implement
954
955         * gtk/gtktreeview.c (gtk_tree_view_move_to): rename
956         scroll_to_cell, matches TextView scroll functions better
957         (gtk_tree_view_tree_to_widget_coords): new function
958         (gtk_tree_view_widget_to_tree_coords): new function
959         (gtk_tree_view_get_visible_rect): new function
960         (gtk_tree_view_get_path_at_pos): accept negative coordinates
961         (gtk_tree_view_draw_node_focus_rect): new function moved from
962         draw_focus, also, use width of bin_window as width of the focus
963         rect
964         (gtk_tree_view_expand_row): fix bug where it didn't recognize
965         already-expanded rows
966         (gtk_tree_view_get_cell_rect): new function
967         (gtk_tree_view_get_path_at_pos): return the click position
968         relative to the passed-in cell
969         (gtk_tree_view_set_expander_column): new function
970
971         * configure.in: remove gtk-config-2.0 chmod
972
973         * gtk/gtktextview.c (gtk_text_view_drag_motion): small cleanups,
974         and properly handle drags with targets we don't understand
975         (gtk_text_view_drag_end): don't stop scrolling, the source isn't
976         scrolling anyway
977         (gtk_text_view_drag_drop): stop scrolling here though, and set the
978         mark invisible
979
980         * gtk/gtkdnd.c (gtk_drag_dest_find_target): export as a public
981         function
982         (gtk_drag_dest_get_target_list): new function
983         (gtk_drag_dest_set_target_list): new function
984         
985         * gtk/gtktreeview.c: Add a bunch of drag-and-drop implementation
986
987         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add fields
988         related to drag-and-drop
989
990 2001-01-19  Alexander Larsson  <alexl@redhat.com>
991
992         * gdk/linux-fb/gdkprivate-fb.h:
993         Define EMULATE_GDKFONT.
994         Add extra pango_font stuff to GfkFontPrivate.
995         
996         * gdk/linux-fb/gdkdrawable-fb2.c:
997         * gdk/linux-fb/gdkfont-fb.c:
998         If EMULATE_GDKFONT defined, implement a slow lame GdkFont
999         emulation using PangoFont.
1000
1001 2001-01-17  Havoc Pennington  <hp@pobox.com>
1002
1003         * gtk/gtkprogressbar.c, gtk/gtkprogressbar.h: Add "getters" for
1004         all the non-deprecated set_foo functions. Added missing object
1005         properties, and added g_object_notify() to setters. 
1006         Wrote docs.
1007         
1008 2001-01-18  Tor Lillqvist  <tml@iki.fi>
1009
1010         * gtk/gtkmain.c
1011         * gtk/gtkrc.c: (Win32) Use the new
1012         g_win32_get_package_installation_(sub)directory() functions.
1013
1014         * config.h.win32.in: New file.
1015         
1016         * config.h.win32: Removed.
1017
1018         * configure.in: Output config.h.win32.
1019
1020         * Makefile.am: Add it to EXTRA_DIST.
1021
1022         * gtk/gtk.def: Update.
1023
1024 Wed Jan 17 16:22:54 2001  Owen Taylor  <otaylor@redhat.com>
1025
1026         * gtk/gtklabel.c (gtk_label_size_request): Set the
1027         attributes onto the PangoLayout even if they are newly
1028         created from label->pattern.
1029
1030 Tue Jan  9 11:20:48 2001  Owen Taylor  <otaylor@redhat.com>
1031
1032         * gdk/x11/gdkdnd-x11.c: Remove unused variable.
1033
1034         * gtk/gtkdnd.c: Encapsulate storing and retrieving info
1035         structures in functions. Fixes bug where gtk_dataset_*
1036         was accidentally still being used in one place, causing
1037         every dest side event to be treated independently.
1038
1039         * gtk/gtkdnd.c: Remove last vestages of handling
1040         ::draw (fixes warning)
1041         
1042         * gtk/gtkentry.[ch]: Add drag and drop support.
1043
1044         * gtk/gtkdnd.[ch] gtk/gtktextview.c gtk/gtkentry.c: Add
1045         new function gtk_check_drag_threshhold() for checking
1046         to check if (dx,dy) has exceeded the threshhold for starting
1047         a drag and use it everywhere.
1048
1049 Mon Jan  8 11:58:05 2001  Owen Taylor  <otaylor@redhat.com>
1050
1051         * gtk+-2.0.pc.in gdk-pixbuf-2.0.pc.in (Cflags): Remove -I${includedir},
1052         add -I{includedir}/gtk-2.0.
1053
1054         * gtk/gtktreeview.[ch] gtktreemodelsort.[ch] gtknotebook.c
1055         gdk/gdk-pixbuf.h: Doc fixups.
1056         
1057         * gtk/gtkobject.h: Remove trailing , from enum
1058
1059 2001-01-17 Alexander Larsson <alexl@redhat.com> 
1060
1061         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_shadow_fb_draw_arc):
1062         Doh! Mixed up x and y.
1063
1064         * gdk/linux-fb/gdkglobals-fb.c:
1065         Removed gdk_fb_pointer_grab_window_events,
1066         added _gdk_fb_pointer_grab_owner_events and
1067         _gdk_fb_keyboard_grab_owner_events.
1068
1069         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab):
1070         Set all button mask if GDK_BUTTON_MOTION_MASK set. Send
1071         crossing events before grabbing. Set _gdk_fb_pointer_grab_owner_events.
1072         (gdk_fb_pointer_ungrab): Unset _gdk_fb_pointer_grab_owner_events
1073         Send crossing events after ungrab finished.
1074         (gdk_keyboard_grab): Set ..._owner_events
1075         (type_masks): Move out of function.
1076         (gdk_fb_other_event_window, gdk_fb_pointer_event_window,
1077         gdk_fb_keyboard_event_window): New functions, return the
1078         window an event should be targeted at. Handles grabs and
1079         event propagation. Can return NULL.
1080         (gdk_event_make): Remove event_mask checking. Now always
1081         returns an event.
1082                 
1083         * gdk/linux-fb/gdkkeyboard-fb.c:
1084         * gdk/linux-fb/gdkproperty-fb.c:
1085         * gdk/linux-fb/gdkselection-fb.c:
1086         Use new event_window/gdk_event_make() behaviour.
1087         
1088         * gdk/linux-fb/gdkmouse-fb.c:
1089         Use new event_window/gdk_event_make() behaviour.
1090         Only send motion events if in the same window.
1091         If grabbed, use cursor from window if sibling of grabbed
1092         window, and cursor from grabbed window otherwise.
1093
1094         * gdk/linux-fb/gdkprivate-fb.h:
1095         Update gdk_fb_window_send_crossing_events, gdk_event_make
1096         and grab varaible declarations. Add gdk_fb_*_event_window().
1097
1098         * gdk/linux-fb/gdkwindow-fb.c:
1099         Use new event_window/gdk_event_make() behaviour.
1100         Keep correct track of focus window.
1101         (gdk_window_set_events): Set all specific button motion masks
1102         if GDK_BUTTON_MOTION_MASK set.
1103
1104         * gtk/gtkdnd.c (gtk_drag_update):
1105         Free info->last_event if gdk_drag_motion returned FALSE.
1106
1107 2001-01-16  Tor Lillqvist  <tml@iki.fi>
1108
1109         * gdk/win32/gdkwindow-win32.c (gdk_window_show, gdk_window_hide):
1110         Eliminate redraws when input-only windows are shown or
1111         hidden. Thanks to jpe@archaeopteryx.com.
1112
1113 Tue Jan 16 13:13:13 GMT 2001  Tony Gale <gale@gtk.org>
1114
1115         * docs/faq/gtk-faq.sgml: FAQ update:
1116           - Update to bugzilla
1117           - Add GTK+ and security/SUID/SGID
1118           - Add DnD question
1119
1120 2001-01-16  Alexander Larsson  <alla@lysator.liu.se>
1121
1122         * gdk/linux-fb/gdkdnd-fb.c:
1123         Some cleanups.
1124         
1125 2001-01-15  Havoc Pennington  <hp@pobox.com>
1126
1127         * tests/testtreeview.c: add test stuff for CellRendererToggle
1128
1129         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_model): add this
1130         accessor
1131
1132         * gtk/gtkcellrenderertoggle.c: distinguish different event types,
1133         only toggle on button press (would do release like GtkButton, but
1134         we'd need implicit grab code for treeview cells)
1135
1136 2001-01-16  Tor Lillqvist  <tml@iki.fi>
1137
1138         * gdk/win32/gdkvisual-win32.c: Include <stdlib.h> for getenv().
1139
1140         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't use
1141         GDK_COLORMAP_PRIVATE_DATA on a potentially NULL GdkColormap.
1142
1143         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Adapt calls
1144         to g_{locale,filename}_{to,from}_utf8 to match current API.
1145
1146         * gtk/makefile.msc.in (gtk_OBJECTS)
1147         * gtk/makefile.mingw.in (gtk_OBJECTS): Add gtkwindow-decorate.
1148
1149         * gtk/gtk.def: Update.
1150
1151 2001-01-15  Tor Lillqvist  <tml@iki.fi>
1152
1153         * gdk/win32/gdkevents-win32.c (synthesize_crossing_events): New
1154         implementaion that more closely mimics the events that an X server
1155         would generate. Especially, properly generate GDK_NOTIFY_VIRTUAL and
1156         GDK_NOTIFY_NONLINEAR_VIRTUAL crossing events. This makes buttons
1157         with nested preview widgets, for instance, more responsive when
1158         you move the mouse quickly into them.
1159         (find_window_for_pointer_event): Make it actually compile.
1160         (gdk_event_translate): Set send_event to the value of
1161         InSendMessage (). This doesn't really mean the same as X11's
1162         send_event flag, but is close enough, says jpe@archaeopteryx.com
1163
1164 2001-01-15  Alexander Larsson  <alexl@redhat.com>
1165
1166         * gdk/linux-fb/gdkdnd-fb.c:
1167         Implemented drag and drop.
1168         Seems to be mostly working. I sometimes get an assert from gtkdnd.c:2664
1169         when it tries to free and then copy the same event (info->last_event).
1170         I am not sure about why this happens, but will continue looking.
1171
1172 2001-01-15  Alexander Larsson  <alexl@redhat.com>
1173
1174         * gdk/linux-fb/gdkwindow-fb.c:
1175         Use gdk_window_invalidate_rect instead of
1176         gdk_window_invalidate_rect_clear to minimise flashing.
1177         When hiding windows you need to clear the root window though.
1178
1179 2001-01-15  Alexander Larsson  <alexl@redhat.com>
1180
1181         * gdk/linux-fb/gdkdrawable-fb2.c:
1182         For optization, add an full_shapes argument to gdk_fb_clip_region.
1183         If this is false, only the cliprects of the shapes are used.
1184
1185         * gdk/linux-fb/gdkprivate-fb.h:
1186         Export gdk_fb_window_peek_shape.
1187         Add full_shapes to gdk_fb_clip_region.
1188
1189         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
1190         When moving a window, don't clear everything under the it, just the
1191         root window. Makes stuff faster and flash less.
1192         (gdk_window_get_pointer): Correctly handle offseted shapes, due to
1193         USE_CHILD_SHAPE. (gdk_fb_window_peek_shape): Return the correct
1194         offset of the shape.
1195         
1196
1197 2001-01-12  Havoc Pennington  <hp@redhat.com>
1198
1199         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): offset the 
1200         current invalid region, fixes redraw bug while scrolling the 
1201         text widget
1202
1203         * gtk/gtktextview.c, gtk/gtktextview.h:
1204         Rearrange the scrolling/validation/etc. code in a major way, 
1205         so it seems to make sense to me. Probably isn't genuinely that
1206         much better, but...
1207
1208         * gtk/gtktexttag.c (set_fg_color): fix name of property used for
1209         notifies
1210
1211         * gtk/gtktextmark.c (gtk_text_mark_get_left_gravity): new function
1212
1213 2001-01-12  Alexander Larsson  <alla@lysator.liu.se>
1214
1215         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_set_rotation):
1216         Hide mouse pointer while rotation. Show it afterwards.
1217
1218 2001-01-12  Alexander Larsson  <alexl@redhat.com>
1219
1220         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region): Take shaped
1221         windows in consideration when generating clip region.
1222
1223         * gdk/linux-fb/gdkfb.h:
1224         Huge HACK. Added GDK_FB_USE_CHILD_SHAPE.
1225
1226         * gdk/linux-fb/gdkprivate-fb.h:
1227         Add shape to GdkWindowFBDatat.
1228         exported gdk_fb_window_get_abs_shape().
1229         removed gdk_fb_draw_lines declaration.
1230
1231         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_impl_fb_init):
1232         Init shape to NULL. (gdk_fb_window_send_crossing_events): Don't
1233         send focus changes when there is a grabbed window.
1234         (gdk_window_get_pointer): Handle shaped windows.
1235         (gdk_fb_region_create_from_bitmap): Convert bitmap to region.
1236         (gdk_fb_window_peek_shape): Returns the shape for a window,
1237         handles GDK_FB_USE_CHILD_SHAPE.
1238         (gdk_fb_window_get_abs_shape): Returns the shape of the window,
1239         offseted to absolute positions. Handles GDK_FB_USE_CHILD_SHAPE.
1240         (gdk_window_shape_combine_mask): Implement.
1241
1242         * gtk/gtkwindow-decorate.c:
1243         HACK! Set GDK_FB_USE_CHILD_SHAPE on window->frame to make sure
1244         setting the shape of a window makes the window transparent.
1245
1246 2001-01-11  Havoc Pennington  <hp@redhat.com>
1247
1248         * gtk/gtktreemodelsimple.h: Oops, broke some macros
1249
1250 2001-01-10  Havoc Pennington  <hp@redhat.com>
1251
1252         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clear_attributes):
1253         add this function, bug 40251
1254
1255         * gtk/gtktreemodelsimple.h (GTK_TYPE_TREE_MODEL_SIMPLE): fix name
1256         of type macro   
1257
1258 2001-01-11  Alexander Larsson  <alexl@redhat.com>
1259
1260         * acconfig.h:
1261         Added ENABLE_SHADOW_FB
1262
1263         * configure.in:
1264         Added --disable-shadowfb
1265
1266         * gdk/linux-fb/gdkcursor-fb.c:
1267         Update shadowfb when updating cursor
1268
1269         * gdk/linux-fb/gdkdrawable-fb2.c:
1270         Added wrappers for shadowfb that calls  the normal drawable
1271         methods, but calls gdk_shadow_fb_update(bounding box) when
1272         GdkWindows are drawed to.
1273         Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
1274         which also returns the bounding box.
1275
1276         * gdk/linux-fb/gdkfb.h:
1277         Added GdkFBAngle type and gdk_fb_set_rotation declaration.
1278
1279         * gdk/linux-fb/gdkgeometry-fb.c:
1280         Update shadowfb when scrolling window.
1281
1282         * gdk/linux-fb/gdkglobals-fb.c:
1283         Add _gdk_fb_screen_angle.
1284         
1285         * gdk/linux-fb/gdkkeyboard-fb.c:
1286         Test code for screen rotation. Shift-F2 in the xlate driver
1287         rotates the screen.
1288
1289         * gdk/linux-fb/gdkmain-fb.c:
1290         Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
1291
1292         * gdk/linux-fb/gdkmouse-fb.c:
1293         Use fb_width/height instead of modeinfo.xres/yres.
1294
1295         * gdk/linux-fb/gdkprivate-fb.h:
1296         Added fb_men, fb_width, fb_height & fb_stride. When using
1297         shadow fb these can differ from the framebuffer stuff.
1298         Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
1299         gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
1300         _gdk_fb_screen_angle. Removed CM, RP.
1301
1302         * gdk/linux-fb/gdkrender-fb.c:
1303         Added code for shadowfb handling and screen rotation using
1304         shadowfb.
1305
1306         * gdk/linux-fb/gdkwindow-fb.c:
1307         Use fb_mem, fb_stride, fb_width, fb_height.
1308         Added recompute_rowstride to reset the rowstride of all windows.
1309         Added gdk_fb_recompute_all() which recomputes rootwindow size,
1310         window abs positions and window rowstrides. Usefull when the
1311         rotation has changed.
1312
1313 Thu Jan 11 13:16:50 GMT 2001  Tony Gale <gale@gtk.org>
1314
1315         * docs/faq/gtk-faq.sgml: update to make web site updating easier
1316
1317 2001-01-10  Havoc Pennington  <hp@redhat.com>
1318
1319         * gtk/gtktreestore.c (gtk_tree_store_insert_before): handle case
1320         where sibling == iter
1321         (gtk_tree_store_insert_after): handle sibling == iter
1322         (gtk_tree_store_prepend): remove stamp checks
1323         (gtk_tree_store_insert_before): ditto
1324         (gtk_tree_store_append): ditto
1325         (gtk_tree_store_get_path): ditto
1326         (gtk_tree_store_get_value): ditto
1327         (gtk_tree_store_iter_has_child): ditto
1328         (gtk_tree_store_iter_n_children): ditto
1329         (gtk_tree_store_iter_nth_child): ditto
1330         (gtk_tree_store_insert_after): ditto
1331         (gtk_tree_store_is_ancestor): ditto
1332         (gtk_tree_store_iter_depth): ditto
1333         (gtk_tree_store_insert_before): assert that sibling's parent is
1334         the same as the passed-in parent
1335         (gtk_tree_store_insert_after): assert that sibling's parent is
1336         the same as the passed-in parent
1337
1338         
1339         * gtk/gtktreemodel.c (gtk_tree_model_get_first): new convenience 
1340         function to get the first iterator in a model
1341         
1342         * gtk/gtktreestore.c (gtk_tree_store_get_root_iter): remove,
1343         conventionally the "root" in this sense is just NULL afaict.
1344
1345         * gtk/gtkliststore.c (gtk_list_store_insert_before): handle case
1346         where sibling == iter
1347         (gtk_list_store_insert_after): handle case where sibling == iter
1348
1349         * tests/testtreeview.c (run_automated_tests): fairly lame basic
1350         automated tests for ListStore, TreeStore
1351
1352         * gtk/gtkliststore.c (gtk_list_store_remove): update tail pointer
1353         (gtk_list_store_insert): update tail pointer, and fix it to work
1354         (gtk_list_store_insert_before): update tail pointer, and fix it to work
1355         (gtk_list_store_append): use tail to be faster
1356         (gtk_list_store_prepend): fix it, update tail pointer
1357         (gtk_list_store_insert_after): fix it, update tail pointer
1358
1359         * gtk/gtkliststore.h (struct _GtkListStore): add tail pointer for 
1360         the list
1361
1362 2001-01-09  Havoc Pennington  <hp@redhat.com>
1363
1364         * gtk/gtklabel.c (gtk_label_expose): don't draw if label->layout
1365         is NULL due to a pending resize
1366
1367         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): don't set the
1368         column width to values less than 1
1369
1370         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_width): clamp
1371         width to be between min/max width, and still set the width 
1372         even if autosize is turned on, so the tree view can use this 
1373         function in order to autosize.
1374         (gtk_tree_view_column_init): set initial width to 1 not 0
1375
1376         * gtk/gtktreeview.c (gtk_tree_view_size_request_buttons): use
1377         setter function to modify column width, so we get notification
1378         (gtk_tree_view_insert_iter_height): ditto
1379         (gtk_tree_view_calc_size): ditto
1380         (gtk_tree_view_check_dirty): ditto
1381
1382         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add
1383         properties to change all the interesting attributes of the tree
1384         view column.
1385         (gtk_tree_view_column_set_header_clickable): rename set_clickable
1386         (gtk_tree_view_column_get_clickable): add
1387         (gtk_tree_view_column_set_cell_renderer): don't unset the current
1388         attributes; assume a cell renderer with equivalent object
1389         properties has been swapped in. Do g_object_notify().
1390         (gtk_tree_view_column_set_visible): g_object_notify
1391         (gtk_tree_view_column_get_sizing): rename from get_col_type
1392         (gtk_tree_view_column_set_sizing): g_object_notify
1393         (gtk_tree_view_column_set_width): add g_object_notify
1394         (gtk_tree_view_column_set_min_width): ditto
1395         (gtk_tree_view_column_set_max_width): ditto
1396         (gtk_tree_view_column_set_title): ditto
1397         (gtk_tree_view_column_set_clickable): ditto
1398         (gtk_tree_view_column_set_widget): ditto
1399         (gtk_tree_view_column_set_justification): ditto
1400
1401 2001-01-09  Havoc Pennington  <hp@redhat.com>
1402
1403         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): handle case where
1404         there are no rows in the model
1405
1406         * gtk/gtkliststore.c (gtk_list_store_iter_children): if parent is
1407         NULL, then return the start of the list
1408
1409         * gtk/gtktreeview.c (gtk_tree_view_setup_model): don't build tree
1410         if we can't get any rows from an empty model 
1411
1412         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): remove
1413         extraneous * after function pointer typedef usage
1414
1415         * Makefile.am: don't specify full path to cp and rm
1416
1417         * gtk/gtkcellrenderertextpixbuf.c
1418         (gtk_cell_renderer_text_pixbuf_get_size): check width/height !=
1419         NULL before dereferencing, fixes a segfault that happened from
1420         time to time
1421
1422         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
1423         use gdk_pixbuf_render_to_drawable_alpha() to get alpha channel,
1424         and reindent the function
1425         (gtk_cell_renderer_pixbuf_get_size): indentation
1426
1427         * gtk/gtkdialog.c (gtk_dialog_run): destroy main loop only after
1428         we quit it
1429         (gtk_dialog_add_buttons_valist): add g_return_if_fail
1430         (gtk_dialog_set_default_response): New function, to set default
1431         button
1432         (gtk_dialog_set_response_sensitive): New function, to set 
1433         sensitivity of buttons
1434
1435         * gtk/gtkcellrendererpixbuf.c
1436         (gtk_cell_renderer_pixbuf_get_property): allow getting a NULL pixbuf
1437         (gtk_cell_renderer_pixbuf_set_property): allow setting a NULL pixbuf
1438
1439         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
1440         handle any G_TYPE_OBJECT subclass, not just the base class, and 
1441         also boxed types.
1442         (_gtk_tree_data_list_value_to_node): ditto
1443
1444         * gtk/gtkrbtree.c: Run _gtk_rbtree_test at strategic points if 
1445         --gtk-debug=tree
1446
1447         * gtk/gtkmain.c: add GTK_DEBUG_TREE
1448
1449         * gtk/gtkdebug.h: add GTK_DEBUG_TREE
1450
1451 2001-01-09  Tor Lillqvist  <tml@iki.fi>
1452
1453         * gdk/win32/gdkevents-win32.c: Implement better mouse
1454         capturing. Do use SetCapture(). Thanks to jpe@archaeopteryx.com.
1455         (find_window_for_pointer_event): New function.
1456         (gdk_event_translate): Use it when handling mouse events.
1457
1458 2001-01-09  Alexander Larsson  <alla@lysator.liu.se>
1459
1460         * configure.in:
1461         Added --with-included-loaders option
1462
1463         * gdk-pixbuf/Makefile.am:
1464         * gdk-pixbuf/gdk-pixbuf-io.c:
1465         Add support for including selected gdk-pixbuf loaders only.
1466
1467         * gtk/gtkwindow.c (gtk_window_set_frame_dimensions,
1468         gtk_window_set_has_frame):
1469         Added inline documentation.
1470
1471         * gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
1472         * docs/reference/gdk/tmpl/windows.sgml:
1473         Added inline documentation.
1474
1475 Mon Jan  8 14:42:06 2001  Jonathan Blandford  <jrb@redhat.com>
1476
1477         * gtk/gtktreeview.c (gtk_tree_view_realize_buttons): Skip
1478         realizing buttons that have already been realized.
1479
1480 Mon Jan  8 14:06:29 2001  Jonathan Blandford  <jrb@redhat.com>
1481
1482         * tests/testtreeview.c (main): Show menu items before adding to
1483         option menu.
1484
1485         * gtk/gtktreeview.c (gtk_tree_view_set_model): Keep the columns
1486         around if we kill them.
1487
1488         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
1489         Return if we pass in a NULL model.
1490
1491 2001-01-08  Havoc Pennington  <hp@redhat.com>
1492
1493         * tests/testtreeview.c: hack on this some
1494
1495         * gtk/gtktreestore.c (gtk_tree_store_setv): rename
1496         gtk_tree_store_set_valist, v is for arrays, valist for varargs
1497         list
1498         (gtk_tree_store_getv): rename gtk_tree_store_get_valist
1499
1500         * gtk/gtkliststore.h: Add varargs set() and get() convenience
1501         functions
1502
1503 2001-01-08  Alexander Larsson  <alexl@redhat.com>
1504
1505         * gtk/gtkwindow-decorate.[hc]:
1506         * gtk/Makefile.am:
1507         New files. Contains an implementation of a minimal WM for
1508         linux-fb.
1509
1510         * gtk/gtkwindow.h:
1511         Add the possibility for GtkWindows to specify a frame. This
1512         is used for the window decoration code, but could concievably
1513         be used for X programs too (xmms style windows).
1514         GtkWindow->frame is the toplevel window if the window is framed.
1515         The signal frame_event gets all events that are targeted to
1516         GtkWindow->frame.
1517         (_gtk_window_constrain_size): Exported for usage by gtkwindow-decorate.c.
1518         
1519         * gtk/gtkwindow.c:
1520         Implement gtk_window_set_has_frame and gtk_window_set_frame_dimensions.
1521         Call out to gtkwindow-decorate.c for WM support in linx-fb.
1522
1523 2001-01-08  Alexander Larsson  <alexl@redhat.com>
1524
1525         * docs/README.linux-fb:
1526         Correct filename ~/.pangoft2_aliases
1527
1528         * gdk/gdkwindow.h:
1529         Added new function gdk_window_get_decorations.
1530
1531         * gdk/linux-fb/gdkfb.h:
1532         Removed _gdk_window_get_decorations declaration.
1533         Renamed _gdk_window_set_child_handler to
1534         gdk_fb_window_set_child_handler.
1535
1536         * gdk/linux-fb/gdkwindow-fb.c:
1537         Renamed _gdk_window_set_child_handler to
1538         gdk_fb_window_set_child_handler.
1539
1540         * gdk/x11/gdkwindow-x11.c:
1541         New function gdk_window_get_mwm_hints().
1542         Implemented gdk_window_get_decorations.
1543
1544         * docs/reference/gdk/tmpl/windows.sgml:
1545         * docs/reference/gdk/gdk-sections.txt:
1546         Added gdk_window_get_decorations docs.
1547         
1548 2001-01-08  Alexander Larsson  <alla@lysator.liu.se>
1549
1550         * gdk/linux-fb/gdkwindow-fb.c (_gdk_fb_window_find_focus,
1551         gdk_fb_window_find_focus, gdk_fb_send_focus_change,
1552         gdk_fb_window_send_crossing_events):
1553         Possibly send focus events when the mouse moves from one
1554         window to another.
1555
1556 2001-01-07  Tor Lillqvist  <tml@iki.fi>
1557
1558         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title,
1559         gdk_window_new): Adapt calls to g_{locale,filename}_{to,from}_utf8
1560         to match current API.
1561
1562         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): If a secret
1563         environment variable is set, don't call g_error when on a
1564         palettized (PseudoColor) display. Some people want to use GTK+ 
1565         in 256-colour mode even though works only partially.
1566
1567         * gdk/gdk.def
1568         * gtk/gtk.def
1569         * gtk/makefile.mingw.in: Update.
1570
1571 2001-01-05  Havoc Pennington  <hp@redhat.com>
1572
1573         * tests/testtreeview.c: hack on this a bit
1574
1575         * gtk/gtktextlayout.c (gtk_text_layout_class_init):
1576         s/GTK_RUN_LAST/G_SIGNAL_RUN_LAST
1577
1578         * gtk/gtktreemodelsimple.h (GTK_IS_TREE_MODEL_SIMPLE_CLASS): 
1579         was spelled incorrectly
1580         (GTK_IS_TREE_MODEL_SIMPLE): ditto
1581
1582         * gtk/gtktreeview.c (gtk_tree_view_set_headers_clickable): rename
1583         from gtk_tree_view_set_headers_active   
1584
1585         * gtk/gtktexttag.c:
1586         (gtk_text_tag_get_property): handle PROP_DIRECTION
1587         (gtk_text_tag_set_property): g_object_notify when we toggle the _set
1588         properties, bug 40235
1589
1590         * gtk/gtktextiter.c (gtk_text_iter_forward_to_delimiters): rename
1591         forward_to_line_end
1592
1593 Fri Jan  5 16:16:29 2001  Owen Taylor  <otaylor@redhat.com>
1594
1595         * gtk/{gtkcalender.c,gtkfilesel.c,gtkimcontext.c},
1596         modules/input/gtkimcontextxim.c: Adapt to new prototypes
1597         for unicode,locale,filename conversion functions.
1598
1599 2001-01-05  Havoc Pennington  <hp@redhat.com>
1600
1601         * gtk/gtktextiter.c (gtk_text_iter_ends_line): this function was
1602         broken if called on the first position in the buffer.
1603
1604         * gtk/gtktextlayout.c (line_display_index_to_iter): fix
1605         forward_to_delimiters to be called only if we aren't already at
1606         the delimiters.
1607
1608 2001-01-05  Havoc Pennington  <hp@redhat.com>
1609
1610         * demos/gtk-demo/main.c (create_tree): Oops, that didn't link. Fix.
1611
1612 2001-01-05  Alexander Larsson  <alexl@redhat.com>
1613
1614         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_drawable_finalize): free
1615         colormap in here. Sync from X port.
1616         (gdk_fb_set_colormap): allow the colormap to be NULL if you like.
1617         Sync from X port.
1618         (gdk_fb_clip_region): Comment out g_warning about empty clip region.
1619         This happens now and then, and i don't think it is a bug.
1620         (gdk_fb_draw_polygon): Correctly add extra point if startpoint
1621         != endpoint.
1622         (gdk_fb_draw_lines): Don't draw dashed lines if line_style is
1623         GDK_LINE_SOLID.
1624
1625         * gdk/linux-fb/gdkfont-fb.c: Return bogus GdkFont that has
1626         some of the fields filled in at least.
1627
1628         * gdk/linux-fb/miwideline.c: The widths argument to miLineArcI, and
1629         miLineArcD is no more, remove it from the function definition.
1630
1631 2001-01-04  Havoc Pennington  <hp@redhat.com>
1632
1633         * gtk/gtktreeselection.c (gtk_tree_selection_get_tree_view): add
1634         this
1635
1636         * gtk/gtktreemodel.h (struct _GtkTreeIter): rename fields to
1637         user_data instead of tree_node
1638
1639         * gtk/gtktreeprivate.h (TREE_VIEW_COLUMN_WIDTH): rename from
1640         TREE_VIEW_COLUMN_SIZE
1641
1642         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): rename
1643         "size" field to "width" finishes bug 40061
1644
1645         * gtk/gtkcellrenderer.h: Use GtkCellRendererState instead of guint
1646         for bitfields, bug 40268
1647
1648 2001-01-04  Havoc Pennington  <hp@redhat.com>
1649
1650         Rename some stuff:
1651         
1652         s/gtk_tree_view_column_set_size/gtk_tree_view_column_set_width/g;
1653
1654         s/GtkModelSimple/GtkTreeModelSimple/g;
1655         s/GTK_MODEL_SIMPLE/GTK_TREE_MODEL_SIMPLE/g;
1656         s/gtk_model_simple/gtk_tree_model_simple/g;
1657         s/gtkmodelsimple/gtktreemodelsimple/g;
1658
1659         s/gtk_tree_view_column_set_header_active/gtk_tree_view_column_set_header_clickable/g;
1660
1661         s/GtkTreeViewColumnType/GtkTreeViewColumnSizing/g;
1662         s/column_set_col_type/column_set_sizing/g;
1663
1664         s/GtkTreeSelectionType/GtkTreeSelectionMode/g;
1665         s/gtk_tree_selection_set_type/gtk_tree_selection_set_mode/g;
1666
1667         s/GtkCellRendererType/GtkCellRendererState/g;
1668         
1669         * gtk/gtkcellrenderertoggle.c: remove _ macro, include gtkintl.h
1670         (gtk_cell_renderer_toggle_class_init): change "state" property to
1671         "active", to match GtkToggleButton
1672         (gtk_cell_renderer_toggle_get_active): new function, bug
1673         40269
1674         (gtk_cell_renderer_toggle_set_active): new function
1675         (gtk_cell_renderer_toggle_set_property): route changes to toggle
1676         state through gtk_cell_renderer_set_active
1677
1678 Thu Jan  4 15:46:18 2001  Jonathan Blandford  <jrb@redhat.com>
1679
1680         * gtk/gtkmodelsimple.c: Changed a bunch of boxed types to pointers
1681         temporarily until they work again.  Brought up to date with
1682         changes in the model.
1683         * gtk/gtkmodelsimple.h: Brought up to date with changes in the
1684         model.
1685
1686 2001-01-04  Havoc Pennington  <hp@redhat.com>
1687
1688         * gtk/gtktextlayout.c (line_display_index_to_iter): if index is
1689         equal to the line length, then position iterator before paragraph 
1690         separators. Fixes crash reported by Mikael Hermansson when
1691         pressing left arrow from the start of a line.   
1692
1693         * gtk/gtktextiter.c (iter_set_from_byte_offset): Add g_error
1694         about byte indexes off the end
1695         (iter_set_from_char_offset): add g_error about char offsets
1696         off the end
1697
1698 2001-01-03  Havoc Pennington  <hp@redhat.com>
1699
1700         * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
1701
1702         * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use 
1703         of private functions; remove inclusion of private headers.
1704
1705         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this 
1706         function, so we don't need private functions in gtktextdisplay.c
1707
1708         * gtk/gtktextiterprivate.h: underscore-ification
1709
1710         * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
1711         to instead say "only useful to implement widgets"
1712
1713         * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
1714         GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
1715         GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
1716
1717         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
1718         This function was completely broken
1719
1720         * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
1721
1722         * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
1723
1724         * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
1725
1726         * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
1727
1728         * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
1729
1730         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
1731
1732         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
1733         gtk_paint_layout
1734
1735         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
1736         gtk_paint_layout
1737
1738         * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
1739         Progress on bug 40103. Add draw_layout to draw a PangoLayout.
1740         (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
1741         which were not implemented.     
1742
1743         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
1744         insert_pixbuf signal. Rename delete_text to delete_range since it
1745         also deletes pixbufs and child anchors. This almost closes bug
1746         40245 (still need to deal with child anchors)
1747
1748         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
1749         insert_pixbuf, change signal names as appropriate, change types of
1750         signals taking marks/tags to have the specific type, not just
1751         G_TYPE_OBJECT
1752         
1753         * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; 
1754         closes bug 40051
1755
1756         * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
1757         unnecessary remove_contents() call
1758         (gtk_option_menu_class_init): add a "changed" signal, closes
1759         bug 40039
1760         (gtk_option_menu_update_contents): emit "changed" if the 
1761         active menu item changes
1762
1763         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
1764         cast to GtkObject, reported by Jonas Borgstrom
1765         (gdk_pixbuf_loader_finalize): don't close the loader on finalize;
1766         we can't do stuff with side effects in finalize. Instead, spew a
1767         warning if the loader isn't closed.
1768
1769         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
1770         colormap in here, non-X ports probably need to sync to this change
1771
1772         * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove 
1773         assertion that colormap != NULL, you can set the colormap to NULL
1774         if you like.
1775         
1776         * Makefile.am: remove gtk-config-2.0
1777
1778         * configure.in: Use pkg-config to locate GLib. Remove
1779         separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
1780         and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
1781         Use pkg-config to locate Pango. Output correct Pango libs to
1782         gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
1783
1784         * Makefile.am (pkgconfig_DATA): install only target-specific pc
1785         files
1786         (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
1787         X11 pc files
1788
1789         * gtk+-2.0.pc.in (Requires): require the GDK for the current target
1790         unref from here
1791
1792 2001-01-03  Alexander Larsson  <alla@lysator.liu.se>
1793
1794         * configure.in:
1795         Change GTK_NO_CHECK_CASTS to G_DISABLE_CAST_CHECKS.
1796
1797 Tue Jan  2 16:23:05 2001  Owen Taylor  <otaylor@redhat.com>
1798
1799         * gtk/gtktextlayout.c
1800         (gtk_text_layout_move_iter_to_previous_line): Fix unitialized
1801         variable when moving back onto a single line.
1802
1803 2001-01-01  Havoc Pennington  <hp@redhat.com>
1804
1805         * gtk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
1806
1807         * gdk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
1808
1809         * configure.in (LIBTOOL_EXPORT_OPTIONS): define
1810         LIBTOOL_EXPORT_OPTIONS with options to control symbol export
1811
1812 2001-01-01  Havoc Pennington  <hp@redhat.com>
1813
1814         * gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
1815
1816         * gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for 
1817         GtkTextAttributes
1818
1819         * gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug 
1820         #40246
1821         (gtk_text_attributes_copy_values): rename from 
1822         gtk_text_attributes_copy
1823         (gtk_text_attributes_copy): a more standard GTK copy function, 
1824         which returns a new object
1825
1826 2001-01-01  Havoc Pennington  <hp@redhat.com>
1827
1828         * gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
1829         
1830         * gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
1831         don't fill in tree_view->priv->selection, kind of an unexpected
1832         side effect
1833
1834         * gtk/gtkcellrenderertext.c: Remove definition of _ and include
1835         gtkintl.h
1836         
1837         * gtk/gtkcellrenderer.c: Remove definition of _ and include
1838         gtkintl.h
1839         (gtk_cell_renderer_get_property): remove calls to g_value_init
1840
1841         * gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
1842         gtkintl.h
1843
1844         * gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
1845         and include gtkintl.h
1846         (gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
1847         property names
1848
1849         * gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
1850         GtkTreeSelection
1851         (_gtk_tree_selection_new_from_with_view): rename, return
1852         GtkTreeSelection
1853         (_gtk_tree_selection_set_tree_view): rename with uscore
1854         (gtk_tree_selection_get_selected): fill in the "model" out param
1855         first, so it gets filled in even if we return at the top of the 
1856         function
1857         (gtk_tree_selection_real_select_all): add a comment and an else{}
1858         to clarify this a bit
1859         (gtk_tree_selection_real_unselect_all): add the same else{}
1860
1861         * gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
1862         set_tree_view to have underscore prefixes, move them to the
1863         private header, fix return type of new_with_tree_view
1864         (struct _GtkTreeSelection): mark struct
1865         fields private  
1866
1867         * gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
1868         GtkTreeModelFlags, not a guint
1869         (gtk_tree_path_prev): return gboolean not gint
1870         (gtk_tree_path_up): return gboolean not gint
1871
1872         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
1873         return GtkTreeModelFlags, not a guint
1874
1875         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
1876         that child model is non-null before unrefing it
1877         (g_value_int_compare_func): make this a qsort compare func, not 
1878         a boolean predicate
1879
1880         * gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
1881         (add -umn to the end), and mark it unimplemented
1882         (gtk_tree_model_sort_resort): remove, this wasn't implemented, and 
1883         I don't see what it's for - doesn't the model always sort itself?
1884         (gtk_tree_model_sort_set_compare): this had the wrong signature
1885
1886         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
1887         Fix the docs to say that it destructively replaces existing
1888         attributes (previously said that it added attributes).
1889         (gtk_tree_view_column_set_visible): canonicalize bool before
1890         equality testing. Also, check for realization before
1891         hiding/showing the tree_column->window; if this window could exist
1892         before realization, then it's busted and needs fixing, we can't 
1893         create GDK resources pre-realization. Also, remove
1894         superfluous queue_resize(), since set_size() does that for us.
1895         (gtk_tree_view_column_set_col_type): check realization before 
1896         using tree_column->window
1897
1898         * gtk/gtktreedatalist.c: fix filename in copyright notice
1899
1900 2000-12-31  Havoc Pennington  <hp@pobox.com>
1901
1902         * gtk/gtktextview.c: Rearrange all the
1903         scroll-while-dragging-or-selecting code to be different, not
1904         necessarily better. ;-)
1905         (gtk_text_view_scroll_to_mark): Change this
1906         function to take within_margin as a fraction instead of a pixel
1907         value, and to take alignment arguments (indicating where to align 
1908         the mark inside the visible area)
1909         
1910         * gtk/testtextbuffer.c (fill_buffer): fix bad cast of GtkTextTag
1911         to GtkObject
1912
1913         * gtk/gtktextiter.c (gtk_text_iter_set_line_offset): change
1914         behavior so that offsets past the end of the line are not 
1915         allowed, and an offset equal to the line length moves the iterator
1916         to the next line
1917         (gtk_text_iter_set_line_index): make parallel change
1918         (gtk_text_iter_get_bytes_in_line): add this function
1919         
1920         * gtk/gtktextbtree.c (_gtk_text_line_byte_locate): change handling
1921         of byte indexes off the end of the line; byte index at the end of
1922         the line now returns FALSE and doesn't fill in the requested
1923         values, byte index past the end of the line is an error.  Also,
1924         don't allow -1 offset anymore, since its meaning is unclear.
1925
1926         This change exposes some bug in visual cursor motion, where we
1927         end up with a huge invalid byte index; needs fixing. Symptom of 
1928         bug is a crash when you hit up arrow.
1929         
1930         (_gtk_text_line_char_locate): match the change to byte_locate
1931
1932         * gtk/gtktextiter.c (find_by_log_attrs): Handle iteration backward
1933         from start of line properly. fixes bug reported by Mikael
1934         Hermansson where backspace would delete all text before the
1935         cursor.
1936
1937 2000-12-30  Tor Lillqvist  <tml@iki.fi>
1938
1939         * gdk/win32/gdkwindow-win32.c
1940         (gdk_window_impl_win32_get_visible_region): New function, as in
1941         the X11 backend.
1942         (gdk_window_new, gdk_window_set_title): Use g_locale_from_utf8()
1943         instead of duplicating the same code here.
1944
1945         * gdk/win32/gdkwin32.h (GDK_COLORMAP_PRIVATE_DATA): Use
1946         GDK_COLORMAP macro.
1947
1948         * gdk/win32/gdkevents-win32.c (gdk_event_funcs): Use NULL as
1949         destroy function.
1950         (gdk_event_translate): Use GDK_COLORMAP_PRIVATE_DATA to correctly
1951         access that.
1952
1953         * gtk/gtk.def: Update.
1954
1955         * gtk/makefile.mingw.in: Use glib-genmarshal from $(GLIB)/gobject.
1956
1957 2000-12-30  Havoc Pennington  <hp@pobox.com>
1958
1959         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set the system
1960         colormap on input only windows, to avoid special cases all over
1961         the code for these windows.
1962
1963 2000-12-26  Tor Lillqvist  <tml@iki.fi>
1964
1965         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): Call g_error if
1966         we are on a palettized display ("PseudoColor" in X11), as the code
1967         for that doesn't work anyway, and never has.
1968
1969 2000-12-22  Alexander Larsson  <alexl@redhat.com>
1970
1971         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
1972         Don't use isprint() for chars > 255.
1973
1974 2000-12-21  Havoc Pennington  <hp@redhat.com>
1975
1976         * tests/testtreeview.c: more work
1977
1978 2000-12-21  Alexander Larsson  <alexl@redhat.com>
1979
1980         * docs/README.linux-fb:
1981         Update the docs to the new pangoft2 way.
1982
1983 2000-12-21  Alexander Larsson  <alexl@redhat.com>
1984
1985         * configure.in:
1986         For linux-fb get the pangoft2 cflags and libs. This needs a recent
1987         pango version.
1988         Remove modules/linux-fb/Makefile.
1989
1990         * gdk/linux-fb/gdkdrawable-fb2.c:
1991         Render glyphs using freetype.
1992
1993         * gdk/linux-fb/gdkfb.h:
1994         Add new fb-specific functions needed for managing windows.
1995
1996         * gdk/linux-fb/gdkmain-fb.c:
1997         Remove gdk_font_init/fini() calls.
1998
1999         * gdk/linux-fb/gdkpango-fb.c:
2000         Remove old implementation. Use pangoft2 instead.
2001
2002         * gdk/linux-fb/gdkprivate-fb.h:
2003         Remove PangoFBFont and related stuff.
2004
2005         * gdk/linux-fb/gdkwindow-fb.c:
2006         Implement drawable->get_visible_region.
2007         Implement support for _gdk_window_set_child_handler () and
2008         _gdk_window_get_decorations().
2009
2010         * modules/Makefile.am:
2011         Remove linux-fb subdir.
2012
2013         * modules/linux-fb/*:
2014         Removed all.
2015         
2016 2000-12-20  Jonathan Blandford  <jrb@redhat.com>
2017
2018         * gtk/gtkcellrenderer*.c (::get_property): remove g_value_init
2019         calls, as they are no longer needed.
2020
2021         * gtk/gtktreemodelsort.c: Fix up the comparison code.
2022         
2023         * gtk/gtktreemodel.h: Start work on ::reordered signal.  Need to
2024         figure out how to emit a signal on an interface.
2025
2026 2000-12-20  Havoc Pennington  <hp@redhat.com>
2027
2028         * tests: new directory to contain tests, gtk/test* should move
2029         here sometime (with appropriate on-cvs-server hackery)
2030
2031         * tests/testtreeview.c, tests/Makefile.am: a test
2032         
2033         * configure.in (AC_OUTPUT): add tests/Makefile
2034
2035         * gtk/gtktexttag.c (gtk_text_tag_get_property): Add "invisible"
2036         and "invisible_set" which were missing
2037
2038         * gtk/gtkrbtree.h: some cheesy indentation fix
2039         
2040 2000-12-20  Alexander Larsson  <alexl@redhat.com>
2041
2042         * gtk/gtkinvisible.c (gtk_invisible_realize):
2043         Attach the style to the window so that the style it is not
2044         leaked when unrealizing the window.
2045
2046 2000-12-18  Havoc Pennington  <hp@redhat.com>
2047
2048         * gtk/gtktextview.c (gtk_text_view_delete_from_cursor): do
2049         begin/end user action where appropriate
2050         (gtk_text_view_commit_handler): add begin/end user action
2051
2052         * gtk/gtktextbuffer.c: add begin/end user action signals, and
2053         bracket interactive operations with begin/end user action pair.
2054         
2055         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): remove
2056         "interactive" arg from insert_text and delete_text signals.
2057         Add begin_user_action, end_user_action signals
2058         (gtk_text_buffer_begin_user_action): 
2059         (gtk_text_buffer_end_user_action): New functions to delimit 
2060         a user-visible action
2061
2062         * gtk/gtkmarshal.list: update to reflect changes to gtktextbuffer
2063         signals.
2064         
2065 2000-12-18  Havoc Pennington  <hp@redhat.com>
2066
2067         * gdk/gdkevents.c (gdk_event_get_state): wow, that implementation
2068         was pretty non-working.
2069
2070         * gtk/testtext.c (fill_file_buffer): make this a bit more robust
2071         by passing the length to g_utf8_validate().
2072
2073 2000-12-16  Havoc Pennington  <hp@pobox.com>
2074
2075         * gtk/gdk-pixbuf-loader.h, gtk/gdk-pixbuf-loader.c: 
2076         Port to GObject, can go back in gdk-pixbuf after setting up 
2077         a gdk-pixbuf-marshal.h header over there.
2078
2079         * gtk/gtktreeview.c: s/SEPERATOR/SEPARATOR/g;
2080         (gtk_tree_view_class_init): specify GTK_TYPE_ADJUSTMENT for signal
2081         args
2082         (gtk_tree_view_init): don't unset GTK_NO_WINDOW, it shouldn't be
2083         set
2084         (gtk_tree_view_realize_buttons): don't gtk_widget_show() buttons
2085         here, do it when we create the buttons later
2086         (gtk_tree_view_realize_buttons): add some g_return_if_fail 
2087         (gtk_tree_view_map): paranoia checks that column->button is shown 
2088         and unmapped
2089         (gtk_tree_view_size_request): only request visible children.
2090         Move header size calculation in here, for cleanliness, and 
2091         to maintain invariants for child widgets if we eventually 
2092         let users set different children inside the buttons
2093         (gtk_tree_view_map_buttons): factor out code to map buttons,
2094         since it was being called several times
2095         (gtk_tree_view_size_allocate_buttons): move_resize the drag
2096         windows instead of just moving them; their height may change 
2097         if we allow random widgets in there, or the theme changes.
2098         (gtk_tree_view_size_allocate): move button size allocation 
2099         above emitting the scroll signals, to ensure a sane state when we
2100         hit user code
2101         (gtk_tree_view_button_release): remove queue_resize after
2102         tree_view_set_size(), set_size() will handle any resize queuing
2103         that's needed
2104         (gtk_tree_view_focus_in): just queue a draw, don't fool with
2105         draw_focus goo
2106         (gtk_tree_view_focus): use gtk_get_current_event() and
2107         gdk_event_get_state()
2108         (gtk_tree_view_deleted): don't queue_resize() after calling set_size()
2109         (gtk_tree_view_build_tree): fix a "if (foo); {}" bug - i.e. remove
2110         semicolon
2111         (gtk_tree_view_create_button): show the button here
2112         (gtk_tree_view_button_clicked): actually emit the clicked signal
2113         on the column
2114         (_gtk_tree_view_set_size): return right away if the size is
2115         unchanged, as a cheesy optimization
2116         (gtk_tree_view_setup_model): rename set_model_realized to 
2117         setup_model to match the flag that indicates whether we've 
2118         called it
2119         (gtk_tree_view_get_hadjustment): create adjustment if it doesn't
2120         exist, because set_scroll_adjustment does that and it shouldn't
2121         matter what order you call these in
2122         (gtk_tree_view_get_vadjustment): ditto
2123         (gtk_tree_view_set_headers_visible): canonicalize the bool, 
2124         for paranoia
2125         (gtk_tree_view_set_headers_visible): call
2126         gtk_tree_view_map_buttons() instead of using cut-and-paste code
2127         (gtk_tree_view_append_column): clarify whether the return value
2128         is the count of columns before or after, and do the increment 
2129         separately from the return statement so you can tell from the code.
2130         (gtk_tree_view_remove_column): ditto
2131         (gtk_tree_view_insert_column): ditto
2132         (gtk_tree_view_get_column): remove g_return_if_fail for columns
2133         outside the existing range, the docs say that outside-range
2134         columns are allowed, so we handle them as documented. (Presumably
2135         this allows a nice loop with column != NULL as test.)
2136         (gtk_tree_view_move_to): document what 0.0, 0.5, 1.0 alignments 
2137         mean (left/right/center etc.).
2138         (gtk_tree_view_collapse_all): only queue a draw if we're mapped
2139         (gtk_tree_view_expand_row): add docs
2140         (gtk_tree_view_collapse_row): add docs
2141
2142         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clicked): new
2143         function to emit the clicked signal on a column
2144         
2145         * gdk/gdkevents.c (gdk_event_get_state): new function, to get the
2146         state of an event
2147         (gdk_event_get_time): don't treat GDK_SCROLL 
2148         as a button event, remove default case from switch so gcc 
2149         will whine if we don't explicitly handle all event types
2150
2151         * gtk/gtktreeselection.h: added some FIXME 
2152         
2153         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): rename
2154         "columns" to "n_columns" and "column" to "columns" for clarity
2155
2156 2000-12-16  Havoc Pennington  <hp@pobox.com>
2157         
2158         * gtk/gtktextiter.c: General cleanup of the log attr iteration
2159         stuff. This should make e.g. the delete key work again in the
2160         text widget...
2161         (gtk_text_iter_forward_cursor_positions): handle negative count
2162         (gtk_text_iter_backward_cursor_positions): handle negative count
2163         (gtk_text_iter_forward_word_ends): handle negative count
2164         (gtk_text_iter_backward_word_starts): handle negative count
2165
2166         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h,
2167         gtk/gtktexttag.c, gtk/gtktexttagtable.h, gtk/gtktexttagtable.c, 
2168         gtk/gtktextbuffer.h, gtk/gtktextbuffer.c: Convert everything to 
2169         GObject. No doubt will cause breakage.
2170
2171         * demos/gtk-demo/textview.c: remove hacks around
2172         non-GObject-ification of the text objects
2173
2174         * demos/gtk-demo/main.c (main): use g_object_set() to manipulate 
2175         the text tag
2176         
2177 2000-12-14  Havoc Pennington  <hp@pobox.com>
2178
2179         * configure.in: only AC_DEFINE(HAVE_XFT) if we actually determined
2180         that we have Xrender
2181
2182 Thu Dec 14 20:22:31 2000  Owen Taylor  <otaylor@redhat.com>
2183
2184         * gdk/{gdkdrawable.[ch],gdkpixmap.c,gdkwindow.c,x11/gdkwindow.c}:
2185         Add two virtualized functions gdk_drawable_get_clip_region - to
2186         get the clip region when drawing.
2187         
2188         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Rewrite to simple
2189         use invalidate_region.
2190
2191         * gdk/gdkwindow.c (gdk_window_invalidate_region): Clip to visible
2192         region.
2193
2194         * acconfig.h configure.in: Check for Xft. For now, assume
2195         that if Xft is found, Pango was compiled with Xft support
2196         as well.
2197
2198         * gdk/gdkcolor.h gdk/x11/gdkcolor-x11.c: Add 
2199         gdk_colormap_query_color().
2200         
2201         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_glyphs): Draw
2202         with Xft if appropriate.
2203
2204         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Create
2205         a pangoxft context if we have XFT and the environment
2206         variable GD_USE_XFT is set.
2207         
2208         * gdk/x11/gdkx.h (struct _GdkGCX11): Cache the fg_pixel
2209         and also possibly an XftDraw structure.
2210
2211         * gtk/gtkfontsel.c: Handle the case where the font from the
2212         style doesn't match any of the fonts a bit better.
2213         
2214         * gtk/testgtk.c: Add tabs between directional segments for
2215         hebrew/arabic test. (Not really necessary, just a little
2216         prettier.)
2217
2218 2000-12-14  Havoc Pennington  <hp@redhat.com>
2219
2220         * gtk/testtext.c (fill_file_buffer): fix unicode validation when
2221         reading a file
2222
2223 2000-12-14  Havoc Pennington  <hp@redhat.com>
2224
2225         * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove
2226         unused call to get_last_line()
2227
2228         * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER
2229         here until boxed is working (and maybe after that - we should
2230         really not gratuitously break old code)
2231
2232         * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out
2233         specific types for font_desc and tabs args, move them to
2234         GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get 
2235         fixed. Move GdkColor args to GTK_TYPE_POINTER also.
2236
2237         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily
2238         use GTK_TYPE_POINTER for signal signatures as a hack-around
2239
2240         * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and
2241         PangoTabArray
2242
2243         * gtk/gtktextlayout.c (line_display_iter_to_index): 
2244         make static
2245         (line_display_index_to_iter): make static
2246
2247         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
2248         to marshal a string not a boxed
2249
2250         * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text
2251
2252         * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char
2253         since the UTF-8 isn't validated yet
2254
2255         * gtk/gtktextsegment.c (char_segment_check_func): don't require
2256         lines to end in '\n'
2257         
2258         * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use
2259         forward_to_delimiters, and grapheme boundaries
2260         (gtk_text_view_delete_from_cursor): properly handle non-newline
2261         delimiters, and grapheme boundaries
2262
2263         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename
2264         to gtk_text_iter_forward_to_delimiters, and make it work properly
2265         if empty lines end with a character other than '\n'
2266
2267         * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor
2268         position
2269
2270 2000-12-15  Tor Lillqvist  <tml@iki.fi>
2271
2272         * gdk/makefile.{mingw.in,msc} (gdk_OBJECTS): Add gdkkeys.
2273
2274         * gtk/gtk.def
2275         * gdk/gdk.def: Update.
2276
2277         * gdk/win32/gdkmain-win32.c
2278         * gdk/win32/gdkkeys-win32.c: New file. Move some functions from
2279         gdkmain-win32.c here.
2280
2281         * gdk/win32/makefile.mingw.in (all): No need to make
2282         gdk-win32res.o here, the makefile one step up will call us to make
2283         it.
2284
2285         * gdk/win32/makefile.{mingw.in,msc} (gdk_win32_OBJECTS): Add
2286         gdkkeys-win32.
2287
2288         * gdk/win32/gdkcolor-win32.c: Silence gcc -Wall.
2289
2290         * gdk/win32/gdkevents-win32.c (gdk_events_init): Remove leftover
2291         call to g_source_add().
2292
2293         * gdk/win32/gdkgc-win32.c (BitmapToRegion): Plug memory
2294         leak. Thanks to Andreas Kemnade.
2295
2296 2000-12-13  Havoc Pennington  <hp@pobox.com>
2297
2298         * gtk/gtktextbtree.h: Remove double _ in front of some functions
2299
2300         * gtk/gtktext*.[hc]: update accordingly
2301         
2302 2000-12-13  Havoc Pennington  <hp@pobox.com>
2303
2304         * gtk/gtktextbtree.h: Put _ in front of every function in this 
2305         header file
2306
2307         * gtk/gtktext*.[hc]: update to reflect renamed btree functions
2308
2309 2000-12-13  Alex Larsson  <alexl@redhat.com>
2310
2311         * gdk/linux-fb/gdkmouse-fb.c (mouse_devs):
2312         Add support for ps2 intellimouse.
2313
2314         * gdkkeyboard-fb.c:
2315         Move shift-F1 repaint handling to xlate handler only.
2316         
2317         * docs/README.linux-fb:
2318         Add imps2 to docs.
2319         Document the new refresh keys.
2320         
2321 Tue Dec 12 23:46:44 2000  Tim Janik  <timj@gtk.org>
2322
2323         * gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
2324
2325         * gtk/gtkbox.c: change property types from (u)long to (u)int for
2326         ::position and ::padding.
2327
2328         * gtk/gtkcontainer.c: make ::border_width an INT property.
2329
2330         * gtk/gtkpacker.c: make ::position an INT property.
2331
2332         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
2333         guard against NULL h/v scrollbars, since this is used at construction
2334         time.
2335
2336         * gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
2337         internal gtk_clist_constructor().
2338
2339         * gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
2340         gtk_ctree_constructor().
2341
2342         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
2343         ::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
2344
2345         * docs/reference/Makefile.am: fun stuff, disabled docs generation
2346         again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
2347
2348         * gtk/gtkwidget.[hc]:
2349         removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
2350         and gtk_widget_get().
2351         (gtk_widget_new): use g_object_new_valist().
2352         (gtk_widget_set): use g_object_set_valist().
2353
2354         * gtk/gtkobject.[hc]:
2355         removed gtk_object_arg_get_info(), gtk_object_getv(),
2356         gtk_object_query_args(), gtk_object_newv(),
2357         gtk_object_class_add_signals(),
2358         gtk_object_class_user_signal_new(),
2359         gtk_object_class_user_signal_newv(),
2360         gtk_object_arg_set(), gtk_object_arg_get(),
2361         gtk_object_args_collect(),
2362         gtk_object_default_construct(),
2363         gtk_object_constructed(),
2364         GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
2365         removed nsignals, signals and n_args members from GtkObjectClass.
2366         (gtk_object_new): use g_object_new_valist().
2367         (gtk_object_set): use g_object_set_valist().
2368         (gtk_object_get): use g_object_get_valist().
2369         
2370         * gtk/gtkcompat.h: define gtk_object_default_construct().
2371         
2372         * gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
2373         g_object_new().
2374
2375         * gtk/*.c: removed gtk_object_class_add_signals() from class_init()
2376         fucntions, cleaned up method assignments (make sure your structures
2377         are setup properly before calling out). removed all GTK_CONSTRUCTED
2378         hacks ;)
2379
2380 Tue Dec 12 11:52:16 2000  Owen Taylor  <otaylor@redhat.com>
2381
2382         * gtk/gtkclist.c (gtk_clist_optimal_column_width): Fix 
2383         off-by-one error in checks. (Dave Lambert)
2384
2385 2000-12-12  Alexander Larsson  <alexl@redhat.com>
2386
2387         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_close, raw_close):
2388         Don't free gdk_fb_keyboard twice.
2389
2390 Tue Dec 12 08:24:42 2000  Tim Janik  <timj@gtk.org>
2391
2392         * gtk/testgtk.c:
2393         (create_tooltips): 
2394         (create_statusbar): get rid of object_signal:: GtkObject argument uses,
2395         use GObject swapped_signal:: properties instead.
2396
2397         * gtk/gtkcellrenderertoggle.c: 
2398         * gtk/gtkcellrenderertextpixbuf.c: 
2399         * gtk/gtkcellrenderertext.c: 
2400         * gtk/gtkcellrendererpixbuf.c: 
2401         * gtk/gtkcellrenderer.c:
2402         * gtk/gtktreeviewcolumn.c: s/[sg]et_param/[sg]et_property/, fixed
2403         missing warnings for invalid property ids, install properties
2404         with g_object_class_install_property() now.
2405         
2406         * gtk/gtksignal.c:
2407         (gtk_signal_emit): let g_signal_emit_valist() collect the values for us.
2408         
2409 Wed Oct 25 14:17:43 2000  Owen Taylor  <otaylor@redhat.com>
2410         
2411         * gtk/gtkwidget.[ch] (gtk_widget_is_focus): Add a function
2412         to determine if a window is the focus widget within
2413         its toplevel.
2414
2415         * gtk/gtkcontainer.[ch]: Fix the return type of ::focus
2416         to be boolean.
2417
2418         * gtk/gtkcontainer.c (gtk_container_real_focus): Move handling 
2419         of the case where the container CAN_FOCUS to here instead
2420         of having it in each individual move-the-focus place.
2421
2422         * gtk/gtkcontainer.c: Rewrite handling of left-right and up-down
2423         focusing to be geometric in a much more obvious sense. Arrowing
2424         around is still non-intuitive because it isn't perfect and
2425         because entries, etc, grab the arrow keys, but it at least
2426         usually will do what you expect now.
2427         
2428         * gtk/gtknotebook.[ch]: Many cleanups. Moved docs inline in this
2429         file.
2430
2431         * gtk/gtknotebook.c: Change tabs to be a single item in
2432         the focus chain. Make movement of focus on tabs with arrow
2433         keys wrap around.
2434         
2435         * gtk/gtknotebook.c (gtk_notebook_find_child): Add
2436         CHECK_FIND_CHILD macro to give informative error messages
2437         instead of silent returns.
2438
2439         * gtk/gtknotebook.c (gtk_notebook_init): Set the RECEIVES_DEFAULT 
2440         flag since we handle GdkReturn on the tabs.
2441
2442         * gtk/gtknotebook.c (gtk_notebook_expose_tabs): Invalidate
2443         windows rather than sending expose events directly.
2444
2445         * gtk/gtknotebook.[ch] docs/Changes-2.0.txt: Move structure 
2446         definition for GtkNotebookPage into .c file, since it is private.
2447
2448         * gtk/testgtk.c (create_notebook): Add option for 
2449         testing borderless notebook.
2450
2451         * gtk/testgtk.c (page_switch): Removed egregious poking
2452         around in GTK+ internals.
2453
2454         * docs/widget-system.txt: Remove references to GTK_REDRAW_PENDING.
2455
2456         * gtk/gtkclist.[ch]: Remove key press handler, handle focusing
2457         properly through gtk_clist_focus. Make the title headers a
2458         single item in the tab-focus chain, and make left-right wrap
2459         around.
2460
2461         * gtk/gtkwindow.c (gtk_window_focus): Add a custom
2462         focus method so that wrapping around works properly.
2463
2464         * gtk/gtktreeview.c: Remove calls to gtk_container_set_focus_child() - 
2465         that is handled for the widget now. 
2466
2467 Mon Dec 11 11:41:12 2000  Owen Taylor  <otaylor@redhat.com>
2468
2469         * gtk/gtkinvisible.c (gtk_invisible_init): Flag invisible
2470         widgets as TOPLEVEL.
2471
2472         * gtk/gtkwidget.c (gtk_widget_queue_resize): Don't assume
2473         TOPLEVEL widgets are containers.
2474
2475         * gtk/gtkinvisible.h: Remove useless include.
2476
2477 2000-12-11  Havoc Pennington  <hp@redhat.com>
2478
2479         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
2480         Handle chopping off \r\n and 0x2029 in addition to \n before
2481         passing to PangoLayout
2482
2483         * gtk/gtkimcontextsimple.c
2484         (gtk_im_context_simple_get_preedit_string): 
2485         return an empty string if no match is pending
2486
2487         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): add
2488         assertion that the returned preedit string was sane
2489
2490         * gtk/gtktext*.[hc], gtk/testtext.c, gtk/testtextbuffer.c:
2491         s/gtk_text_iter_next_char/gtk_text_iter_forward_char/g;
2492         s/gtk_text_iter_prev_char/gtk_text_iter_backward_char/g;
2493
2494 Mon Dec 11 10:02:26 2000  Owen Taylor  <otaylor@redhat.com>
2495
2496         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_finalize): 
2497         Fix up finalizer to chain to its parent.
2498
2499 2000-12-11  Alexander Larsson  <alexl@redhat.com>
2500
2501         * docs/README.linux-fb (GDK_KEYBOARD_TYPE):
2502         Clearified the difference between the keyboard types. Wrote a note
2503         about the magic sysrq key to get out of raw mode.
2504
2505 2000-12-09  James Henstridge  <james@daa.com.au>
2506
2507         * gdk/linux-fb/gdkmouse-fb.c (GdkFBMouseDevice): add prot struct
2508         member to hold masks for detecting the start of a protocol packet.
2509         (mouse_devs): add packet start masks for ps2 and ms device types.
2510         Left the mask for fidmour blank, as I have no idea what it should
2511         be.
2512         (handle_mouse_io): skip bytes until we get to the start of a
2513         packet.  My Logitech mouse seems to be passing an extra NULL pad
2514         byte, and GPM does a similar thing here.
2515         (gdk_fb_mouse_ms_open): changed error message to not say psaux, as
2516         this is the ms mouse driver.
2517         (gdk_fb_mouse_ms_packet): fix up button handling, which was
2518         completely broken except for button1.  It was checking the wrong
2519         bit in the packet for the status of the right mouse button, and
2520         wrongly assuming right == button2 rather than 3.  I fixed that and
2521         also added support for middle button (button2).
2522
2523 2000-12-08  Havoc Pennington  <hp@redhat.com>
2524
2525         * gtk/gtktextbtree.c (gtk_text_btree_insert): fix breakage here
2526         that cause a segfault on text insertion
2527
2528         * gtk/gtktextchild.c (gtk_text_child_anchor_queue_resize): fix 
2529         warning
2530
2531         * gtk/gtktextiter.c (test_log_attrs): use
2532         _gtk_text_buffer_get_line_log_attrs to speed things up a bit
2533
2534         * gtk/gtktextbuffer.c (_gtk_text_buffer_get_line_log_attrs): 
2535         Get log attrs for a line, using a cache stored on the buffer
2536         
2537         * gtk/gtkcolorsel.h (GTK_COLOR_SELECTION_GET_CLASS): fix typo,
2538         reported by Jeff Franks
2539
2540 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
2541
2542         * gdk/linux-fb/gdkmouse-fb.c (gdk_fb_mouse_ms_open):
2543         /dev/ttyS0 -> /dev/mouse
2544
2545 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
2546
2547         * gdk/linux-fb/gdkfont-fb.c (gdk_fontset_load):
2548         Added dummy gdk_fontset_load.
2549
2550 2000-12-08  Alexander Larsson  <alexl@redhat.com>
2551
2552         * docs/README.linux-fb:
2553         * docs/Makefile.am:
2554         Initial GtkFB docs.
2555         
2556         * gdk/linux-fb/Makefile.am:
2557         Define GDK_DATA_PREFIX.
2558
2559         * gdk/linux-fb/gdkmain-fb.c:
2560         Fix typo.
2561         Change default display to /dev/fb0.
2562
2563         * gdk/linux-fb/gdkpango-fb.c:
2564         Add $(prefix)/share/fonts/ to font path.
2565         
2566 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
2567
2568         * gdk/linux-fb/gdkkeyboard-fb.c:
2569         New file containing the abstracted keyboard driver. Most code
2570         taken from gdkinput-ps2.c
2571
2572         * gdk/linux-fb/gdkinput-ps2.c:
2573         Removed file.
2574         
2575         * gdk/linux-fb/Makefile.am:
2576         Added gdkkeyboard-fb.c, removed gdkinput-ps2.c.
2577
2578         * gdk/linux-fb/gdkcolor-fb.c:
2579         display->fb was renamed to display->fb_fd.
2580
2581         * gdk/linux-fb/gdkcursor-fb.c:
2582         gdk_mouse_get_info -> gdk_fb_mouse_get_info
2583
2584         * gdk/linux-fb/gdkinput.c:
2585         Moved gdk_input_init here from gdkinput-ps2.c
2586
2587         * gdk/linux-fb/gdkmain-fb.c:
2588         display->fb was renamed to display->fb_fd.
2589         Now the tty and the console is opened here instead
2590         of in the keyboard driver. Also check GDK_VT to see what
2591         tty to open.
2592         Move gdk_beep () here from gdkinput-ps2.c
2593         gdk_mouse_get_info -> gdk_fb_mouse_get_info
2594
2595         * gdk/linux-fb/gdkmouse-fb.c:
2596         Add header.
2597         gdk_mouse_get_info -> gdk_fb_mouse_get_info
2598         Return correct keyboard modifiers.
2599         GDK_MOUSETYPE -> GDK_MOUSE_TYPE for consistancy
2600
2601         * gdk/linux-fb/gdkprivate-fb.h:
2602         Add tty and vt info to display.
2603         Add orignal modeinfo storage to display
2604         Update global functions
2605
2606         * gdk/linux-fb/gdkwindow-fb.c:
2607         Added gdk_fb_window_find_focus().
2608         gdk_mouse_get_info -> gdk_fb_mouse_get_info
2609
2610 2000-12-07  Havoc Pennington  <hp@pobox.com>
2611
2612         * gdk/x11/gdkkeys-x11.c (gdk_keymap_lookup_key): fix name of 
2613         function, noticed by Alex
2614
2615 2000-12-06  Elliot Lee  <sopwith@redhat.com>
2616
2617         * configure.in: Detect freetype properly
2618
2619         * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of
2620         above.
2621
2622 2000-12-06  Alexander Larsson  <alexl@redhat.com>
2623
2624         * gdk/linux-fb/Makefile.am:
2625         Add gdkmouse-fb.c
2626         
2627         * gdk/linux-fb/gdkmouse-fb.c:
2628         New file. Abstracted the mouse drivers a bit.
2629
2630         * gdk/linux-fb/gdkcursor-fb.c:
2631         The cursor hide/show functions was moved here from gdkinput-ps2.c.
2632
2633         * gdk/linux-fb/gdkinput-ps2.c:
2634         Removed old mouse handling code. Moved cursor handling code
2635         to gdkcursor-fb.c, moved gdk_fb_window_send_crossing_events() to
2636         gdkwindow-fb.c. gdk_input_get_mouseinfo was renamed to
2637         gdk_mouse_get_info.
2638
2639         * gdk/linux-fb/gdkmain-fb.c:
2640         Pass NULL pointers for x,y in gdk_mouse_get_info call.
2641
2642         * gdk/linux-fb/gdkprivate-fb.h:
2643         Removed public gdk_fb_find_common_ancestor, added and renamed
2644         functions for the new mouse handling code.
2645
2646         * gdk/linux-fb/gdkwindow-fb.c:
2647         Moved gdk_fb_window_send_crossing_events here. added global
2648         variable gdk_fb_window_containing_pointer. made
2649         gdk_fb_find_common_ancestor static. gdk_input_get_mouseinfo was
2650         renamed to gdk_mouse_get_info.
2651
2652 2000-12-06  Alexander Larsson  <alexl@redhat.com>
2653
2654         * gdk/linux-fb/gdkevents-fb.c:
2655         Update to match latest gmain/gsource changes.
2656
2657         * gdk/linux-fb/gdkinput-ps2.c:
2658         Bogus gdk_keymap_get_entries_for_keycode implementation so that
2659         it links. Will be implemented later.
2660
2661 2000-12-03  Havoc Pennington  <hp@pobox.com>
2662
2663         * gdk/Makefile.am: add gdkkeys.[hc]
2664
2665         * gdk/gdkkeys.h, gdk/gdkkeys.c: Move all the keyval stuff to these
2666         files from gdk.h, gdk.c; add GdkKeymap type and operations on it.
2667
2668         * acconfig.h, configure.in: add checks and command line options
2669         for XKB
2670
2671         * gdk/x11/gdkkeys-x11.c: Implement the above functions
2672         
2673         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Put the keycode
2674         and group in the key event
2675
2676         * gdk/gdkevents.h (struct _GdkEventKey): Add a hardware_keycode
2677         field with the low-level hardware key code, and a group
2678         field with the keyboard group
2679
2680         * gdk/x11/gdkprivate-x11.h: include config.h for HAVE_XKB,
2681         and declare a couple globals used for keymap handling
2682         
2683         * gtk/gtkimcontextsimple.c: Implement ISO 14755 input method,
2684         hold down Shift-Control and type a hex number to get a Unicode 
2685         character corresponding to the hex number
2686         (gtk_im_context_simple_get_preedit_string): Fix cursor position
2687         (return bytes not chars)
2688
2689 2000-12-05  Elliot Lee  <sopwith@redhat.com>
2690
2691         * gdk/gdkcolor.h: Make GdkColor specify element sizes
2692         to avoid waste on 64-bit platforms.
2693
2694 Tue Dec  5 15:49:31 2000  Owen Taylor  <otaylor@redhat.com>
2695
2696         * INSTALL: Fix link to PNG home, remove reference
2697         to fribidi.
2698
2699         * gdk/x11/gdkevents-x11.c: Fix up for new GMain API.
2700         
2701         * gdk/win32/gdkevents-win32.c: Fix up for new GMain API. (Not
2702         tested.)
2703
2704         * gtk/gtkcheckmenuitem.c: Permanently turn on
2705         always_show_toggle.
2706
2707         * gtk/gtkclist.c (gtk_clist_get_pixtext): Allow mask to 
2708         be NULL. (Vladimir Klebanov, #26545)
2709
2710         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text): Fix 
2711         some signed/unsigned comparison problems. (#6510,
2712         David Kaelbling)
2713
2714         * gtk/gtkwidget.[ch] (gtk_widget_is_ancestor): Change
2715         return type to boolean (Oskar Liljeblad, #18648)
2716
2717 2000-12-05  Alexander Larsson  <alexl@redhat.com>
2718
2719         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_display_new):
2720         Remove bogus colormap setting.
2721
2722 2000-12-05  Alexander Larsson  <alexl@redhat.com>
2723
2724         * gdk/linux-fb/gdkcolor-fb.c:
2725         More complete colormap handling. Now GdkRGB work in 8 bpp modes.
2726
2727         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_image):
2728         Must set colormap.
2729         
2730 Tue Dec  5 13:17:53 GMT 2000  Tony Gale <gale@gtk.org>
2731
2732         * docs/tutorial/gtk-tut.sgml: DND updates
2733
2734 2000-12-05  Alexander Larsson  <alla@lysator.liu.se>
2735
2736         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
2737         Remove old debug g_warning().
2738         (gdk_fb_draw_drawable): The src argument can be either a wrapper
2739         or an implementation, just pass the implementation to draw_drawable_2.
2740         
2741         * gdk/linux-fb/gdkprivate-fb.h:
2742         Added GDK_IS_DRAWABLE_IMPL_FBDATA()
2743
2744         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
2745         clear and invalidate area when window is destroyed.
2746         (send_map_events): Remove old commented out code.
2747
2748 2000-12-05  Alexander Larsson  <alexl@redhat.com>
2749
2750         * gdk/linux-fb/gdkpango-fb.c:
2751         Use italic instead of oblique in font aliases.
2752         
2753         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic,
2754         _gdk_fb_gc_calc_state): Support GDK_XOR, add g_warning for
2755         other unsupported functions.
2756
2757 2000-12-04  Havoc Pennington  <hp@redhat.com>
2758
2759         * gtk/gtkpaned.c (gtk_paned_expose): fix this to be sane
2760
2761         * gtk/gtkvpaned.c (gtk_vpaned_expose): Add an expose handler
2762
2763         * gtk/gtkhpaned.c (gtk_hpaned_expose): Add an expose handler
2764
2765         * gtk/gtknotebook.c (gtk_notebook_draw_tab): put in a temporary 
2766         hack to avoid infinite loops (synthetic expose event) - 
2767         Owen has more appropriate fixes in a branch he'll check in later.
2768
2769         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle paragraph
2770         separator, CR, and CRLF as line ends
2771
2772         * gtk/gtktextbtree.c (gtk_text_btree_insert): on insertion, break
2773         into lines using pango_find_paragraph_boundary(); other bits of
2774         the widget are still going to be broken if the boundary isn't '\n'
2775         though
2776
2777 2000-12-04  Alexander Larsson  <alexl@redhat.com>
2778
2779         * gdk/linux-fb/gdkfont-fb.c (gdk_text_width): Divide size by 2, not
2780         multiply.
2781
2782         * gdk/linux-fb/gdkpango-fb.c:
2783         Copied some 26.6 scaling macros from pango to clean up the rounding.
2784         (pango_fb_font_get_glyph_info): Correct sign on x value.
2785
2786         * gdk/linux-fb/gdkprivate-fb.h:
2787         Removed unreferenced external functions.
2788
2789         * modules/linux-fb/Makefile.am: Use ` instead of '.
2790
2791         * modules/linux-fb/basic.c:
2792         Remove dead code. In particular the dummy lang engine which broke all
2793         pango layouts in GtkFB. Don't include tables-big.i anymore.
2794
2795         * modules/linux-fb/tables-big.i:
2796         Upgrade to latest version from pango. Left for reference, basic_ranges
2797         moved to basic.c.
2798         
2799 2000-12-04  Havoc Pennington  <hp@redhat.com>
2800
2801         Fix bugs Alex found:
2802         
2803         * gtk/gtktooltips.c (gtk_tooltips_force_window): nuke connection
2804         to "draw"
2805
2806         * gtk/gtkdnd.c (gtk_drag_highlight): nuke connection to "draw"
2807
2808         * gtk/gtkcolorsel.c (palette_new): nuke connection to "draw"
2809
2810         * gtk/gtklistitem.c (gtk_list_item_expose): Put the old _draw() 
2811         implementation in here, apparently the expose() implementation was
2812         dead code.
2813
2814 2000-12-04  Alexander Larsson  <alexl@redhat.com>
2815
2816         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
2817         Return positive descent.
2818
2819 2000-12-02  Havoc Pennington  <hp@pobox.com>
2820
2821         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove "draw" virtual
2822         method and signal
2823         
2824         * gtk/gtkwidget.c (gtk_widget_draw): Now just queues a draw then
2825         calls gdk_window_process_updates() to push the exposes through
2826         (gtk_widget_class_init): No more draw signal, no
2827         gtk_widget_real_draw()  
2828         
2829         * gtk/gtkbin.c (gtk_bin_draw): remove
2830
2831         * gtk/gtkbox.c (gtk_box_draw): remove
2832
2833         * gtk/gtkbutton.c (gtk_button_draw): remove
2834
2835         * gtk/gtkcalendar.c (gtk_calendar_draw): remove
2836
2837         * gtk/gtkcheckbutton.c (gtk_check_button_draw): remove
2838
2839         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_draw): remove
2840
2841         * gtk/gtkclist.c (gtk_clist_draw): remove
2842
2843         * gtk/gtkentry.c (gtk_entry_draw): remove
2844
2845         * gtk/gtkeventbox.c (gtk_event_box_draw): remove
2846
2847         * gtk/gtkfixed.c (gtk_fixed_draw): remove
2848
2849         * gtk/gtkframe.c (gtk_frame_draw): remove
2850
2851         * gtk/gtkhandlebox.c (gtk_handle_box_draw): remove
2852
2853         * gtk/gtkhpaned.c (gtk_hpaned_draw): remove
2854
2855         * gtk/gtklayout.c (gtk_layout_draw): remove
2856
2857         * gtk/gtklist.c (gtk_list_draw): remove
2858
2859         * gtk/gtklistitem.c (gtk_list_item_draw): remove
2860
2861         * gtk/gtkmenu.c (gtk_menu_draw): remove
2862
2863         * gtk/gtkmenubar.c (gtk_menu_bar_draw): remove
2864
2865         * gtk/gtkmenuitem.c (gtk_menu_item_draw): remove
2866
2867         * gtk/gtknotebook.c (gtk_notebook_draw): remove
2868
2869         * gtk/gtkoptionmenu.c (gtk_option_menu_draw): remove
2870
2871         * gtk/gtkpacker.c (gtk_packer_draw): remove
2872
2873         * gtk/gtkrange.c (gtk_range_draw): remove
2874
2875         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_draw): remove
2876
2877         * gtk/gtkspinbutton.c (gtk_spin_button_draw): remove
2878
2879         * gtk/gtktable.c (gtk_table_draw): remove
2880
2881         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_draw): remove
2882
2883         * gtk/gtktext.c (gtk_text_draw): remove
2884
2885         * gtk/gtktextview.c (gtk_text_view_draw): remove
2886
2887         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): remove
2888
2889         * gtk/gtktoolbar.c (gtk_toolbar_draw): remove
2890
2891         * gtk/gtktree.c (gtk_tree_draw): remove
2892
2893         * gtk/gtktreeitem.c (gtk_tree_item_draw): remove
2894
2895         * gtk/gtktreeview.c (gtk_tree_view_draw): remove
2896
2897         * gtk/gtkviewport.c (gtk_viewport_draw): remove
2898
2899         * gtk/gtkvpaned.c (gtk_vpaned_draw): remove
2900
2901         * gtk/gtkvscale.c (gtk_vscale_draw): remove
2902
2903         * gtk/gtkwindow.c (gtk_window_draw): remove
2904
2905 2000-20-01  Anders Carlsson  <andersca@gnu.org>
2906
2907         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): Fix bug when
2908         a GtkToggleButton is both insensitive and active, it was being
2909         drawn by the GtkButton draw handler which doesn't check the
2910         state. Now it's calling gtk_toggle_button_paint instead.
2911         
2912 2000-12-01  Havoc Pennington  <hp@redhat.com>
2913
2914         * gtk/gtktextdisplay.c (gtk_text_layout_draw): don't create
2915         dangling pointers to the appearance attributes from the 
2916         line display
2917
2918         * gdk/gdkdraw.c (gdk_drawable_get_image): allow negative
2919         width/height to mean "full width/height of drawable"
2920
2921         * gtk/gtktextview.h, gtk/gtktextview.c: Implement double/triple
2922         click to select word/line
2923         
2924         * gtk/gtktextiter.c (test_log_attrs): include paragraph delimiters 
2925         when getting log attrs. Get a slice, so that pixmaps and stuff
2926         are properly handled.
2927
2928         * gtk/gtktextbuffer.c (paste): Fix pasting to work properly if you
2929         paste into the selection (replaces selection now, previously
2930         crashed or added to selection). Reveals longstanding btree bug -
2931         select multiple lines, middle-click on the selection, boom. This
2932         isn't related to my changes though.
2933
2934         * gtk/gtkentry.c (gtk_entry_move_forward_word): Update to reflect
2935         PangoLogAttrs changes
2936         (gtk_entry_move_backward_word): ditto
2937
2938         * gtk/gtktextlayout.h, gtk/gtktextlayout.c: Make the iter motion
2939         functions return bool whether the iter moved onto a
2940         dereferenceable position.
2941  
2942         * gtk/gtktextview.h, gtk/gtktextview.c: Add a bunch of public
2943         functions for motion in terms of display lines.
2944
2945         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): Add function to
2946         get the buffer a mark is inside
2947         
2948 2000-12-01  Alexander Larsson  <alexl@redhat.com>
2949
2950         * gdk/linux-fb/Makefile.am:
2951         * modules/linux-fb/Makefile.am:
2952         Freetype 2 final uses freetype-config
2953
2954         * gdk/linux-fb/gdkpango-fb.c:
2955         Upgrade to use Freetype 2 final.
2956         More flexible support for font aliases, this also fixes a bug with
2957         GtkFontSelector, as the aliases must be visible in the font/family list,
2958         or GtkFontSelector reads uninitialized memory.
2959
2960 2000-11-30 Hidetoshi Tajima  <tajima@eng.sun.com>
2961
2962         * modules/input/gtkimcontextxim.c (setup_im): Add NULL argument to
2963         XGetIMValues to properly terminate variable argument list, and do
2964         NULL return check for ic_values and xim_styles.
2965
2966         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset):
2967         Restore preedit state after XmbResetIC().
2968         
2969         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic):
2970         XvaCreateNestedList() should take XvaNestedList, but not
2971         XvaNestedList*.
2972
2973         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset,
2974         preedit_draw_callback, preedit_caret_callback): Match
2975         "preedit-changed" signal name to "preedit_changed" to be
2976         consistent to the spec.
2977
2978         * gtk/gtkimcontextsimple.c (check_table):
2979         Match "preedit-changed" to "preedit_changed" to be consistent
2980         to the spec.
2981
2982 Thu Nov 30 23:03:04 2000  Owen Taylor  <otaylor@redhat.com>
2983
2984         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Properly handle
2985         gc->clip_region == NULL>
2986
2987 2000-11-30  Tor Lillqvist  <tml@iki.fi>
2988
2989         Changes by Hans Breuer:
2990         
2991         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
2992         Dont't use negative width and height as max_hints. This fixes
2993         Owen's recent testgtk changes for win32.
2994
2995         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get,
2996         gdk_win32_hdc_release): These are exported and may be called with
2997         other drawable types than our GdkDrawableImplWin32 (?).
2998
2999         * gdk/gdkwindow.c: Backing store appears to work on Windows now,
3000         so always #define USE_BACKING_STORE.
3001
3002         * gtk/gtktextdisplay.c (render_layout_line): Use g_print instead
3003         of printf for debugging output.
3004
3005         * gtk/gtktextlayout.c (allocate_child_widgets): Ditto.
3006         
3007         * gtk/gtktextview.c (gtk_text_view_child_allocated): Ditto.
3008
3009         * gtk/gtkmain.h (GTKMAIN_C_VAR): Win32 fix for dllimport
3010         declaration.
3011
3012         * gtk/gtktexttypes.h: Ditto.
3013
3014         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): Return a value
3015         (GDK_VoidSymbol) also if in case of arg check failure.
3016
3017         * gtk/gtkimcontextsimple.c
3018         (gtk_im_context_simple_get_preedit_string): Don't assign cursor
3019         position to the pointer, but to the variable it points to.
3020
3021         * gtk/makefile.msc.in (DEFINES): Define GTK_VERSION.
3022
3023         * gtk/gtk.def: Updates.
3024
3025 2000-11-29  Elliot Lee  <sopwith@redhat.com>
3026
3027         * gtk/gtkmodelsimple.c: Inherits from GTK_TYPE_OBJECT, not
3028         GTK_TYPE_TREE_MODEL.
3029
3030 2000-11-29  Alexander Larsson  <alexl@redhat.com>
3031
3032         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description):
3033         Set the size of the font from the description.
3034         (gdk_text_width): Gross hack that calculates the width
3035         of text by text_length * size/2. This is necessary because
3036         GtkLabel does some ugly gtk_string_width call to calculate
3037         an good size.
3038         (linux-fb/gdkprivate-fb.h): Removed unused field FT_Face.
3039
3040 Wed Nov 29 13:39:19 GMT 2000  Tony Gale <gale@gtk.org>
3041
3042         * docs/tutorial/gtk-tut.sgml: DND updates
3043
3044 2000-11-29  Alexander Larsson  <alexl@redhat.com>
3045
3046         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
3047         If you pass width or height == 0 to gdk_window_clear_area they
3048         should be calculated from the window size.
3049
3050 2000-11-29  Alexander Larsson  <alexl@redhat.com>
3051
3052         * gdk/linux-fb/gdkinput-ps2.c (move_pointer): If there is
3053         a grab, but no grab-cursor, use the cursor from the grabbed
3054         window. (gdk_fb_window_send_crossing_events): Send normal
3055         enter/leave notifications if grab and owner_events == TRUE.
3056
3057 2000-11-29  Alexander Larsson  <alexl@redhat.com>
3058
3059         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
3060         Do implicit button grabs, even if the window doesn't
3061         want the event.
3062         (gdk_fb_window_send_crossing_events): If there is a
3063         grab, only the grabbed window gets normal enter/leave
3064         notifications. On ungrab go from grabbed window to current.
3065         Don't send any notification to b when propagating from c -> b.
3066         If setting a grab on window, don't set prev_window.
3067         (handle_mouse_input): Send enter/leave events to the window the
3068         mouse is over, not the grabbed one.
3069         
3070 2000-11-28  Elliot Lee  <sopwith@redhat.com>
3071
3072         * gdk/gdkregion-generic.c: Zap warning.
3073         * modules/input/Makefile.am: Only build im-xim if USE_X11 is enabled
3074         * gtk/gtkrc.c: s/strcpy/memcpy/ to save a few nanoseconds.
3075
3076 2000-11-28  Alexander Larsson  <alla@lysator.liu.se>
3077
3078         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
3079         The cursor should be hidden if it is part of either the
3080         source or destination region. Not only if it is in both.
3081         (gdk_window_set_transient_for): Silence warnings.
3082
3083 2000-11-28  Alexander Larsson  <alexl@redhat.com>
3084
3085         * gdk/linux-fb/mifillarc.c (miFillArcSliceSetup):
3086         The default mode in X is Pie Arcs, therefore that is
3087         what Gtk+ uses.
3088
3089 2000-11-28  Alexander Larsson  <alexl@redhat.com>
3090
3091         * gdk/linux-fb/gdkinput-ps2.c:
3092         Implement correct EnterNotify/LeaveNotify:
3093         (gdk_fb_window_send_crossing_events): New function that sends
3094         all GdkCrossingEvents from the last mouse-window to the specified
3095         destination.
3096         (gdk_fb_window_visibility_crossing): Removed function.
3097         (handle_mouse_input): Use gdk_fb_window_send_crossing_events()
3098         (send_button_event, gdk_fb_cursor_reset): Use gdk_window_at_pointer
3099         instead of gdk_window_get_pointer() for better readability.
3100
3101         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab,
3102         gdk_fb_pointer_ungrab): Use gdk_fb_window_send_crossing_events.
3103
3104         * gdk/linux-fb/gdkprivate-fb.h:
3105         removed gdk_fb_window_visibility_crossing, added
3106         gdk_fb_window_send_crossing_events and gdk_fb_find_common_ancestor.
3107
3108         gdk/linux-fb/gdkwindow-fb.c (gdk_fb_find_common_ancestor):
3109         New function that finds the least common ancestor of two windows.
3110         (gdk_window_show, gdk_window_hide):
3111         Use gdk_fb_window_send_crossing_events.
3112         (gdk_fb_window_move_resize): Send configure events to toplevel
3113         windows. Use gdk_fb_window_send_crossing_events.
3114
3115 2000-11-27  Havoc Pennington  <hp@redhat.com>
3116
3117         * gtk/gtkprivate.h (enum): Remove a trailing comma
3118
3119 2000-11-27  Federico Mena Quintero  <federico@helixcode.com>
3120
3121         * gtk/gtkspinbutton.c (gtk_spin_button_set_adjustment): Connect to
3122         the "changed" callback of the adjustment.  We need to redraw the
3123         spin button's arrows when the adjustment's range changes.
3124         (adjustment_changed_cb): Draw the arrows.
3125         (gtk_spin_button_value_changed): Draw the arrows.
3126
3127 2000-11-23  Alexander Larsson  <alexl@redhat.com>
3128
3129         * gdk/linux-fb/gdkselection-fb.c:
3130         Initial selection implementation.
3131
3132         * gtk/gtkselection.c:
3133         if GDK_WINDOWING_FB defined, include linux-fb/gdkfb.h and look up
3134         requestor in gtk_selection_request.
3135         
3136         * gdk/linux-fb/gdkfb.h, gdk/linux-fb/gdkglobals-fb.c:
3137         Added gdk_selection_property atom.
3138
3139         * gdk/linux-fb/gdkprivate-fb.h:
3140         Export _gdk_selection_window_destroyed.
3141         Removed mask_off_x/y from GdkCursorPrivateFB.
3142         Removed hbearing, added top, left to PangoFBGlyphInfo.
3143
3144         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
3145         Call _gdk_selection_window_destroyed
3146         (_gdk_windowing_window_init): Don't call gdk_cursor_new() before
3147         the root window has been created.
3148         (static_dx_hack, static_dy_hack, compare_draw_rects,
3149         gdk_fb_window_move_resize): Remove unnecessary sort of rectangles
3150         in region. They are already sorted. Instead just traverse them in
3151         reverse if draw_direction < 0.
3152         
3153         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
3154         Double-clicks must be sent after the normal button_press.
3155         (gdk_fb_cursor_unhide): Remove usage of mask_off_x/y. Clean up.
3156         
3157         * gdk/linux-fb/gdkgeometry-fb.c (gdk_window_scroll):
3158         Pass _gdk_fb_screen_gc instead of NULL.
3159
3160         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
3161         Initialize gdk_selection_property.
3162         (gdk_event_make): Remove unused code.
3163
3164         * gdk/linux-fb/gdkcursor-fb.c:
3165         Make the pixmap for the cursor the same size as the mask. Also remove
3166         the mask_off_x/y fields in GdkCursorPrivateFB and combine
3167         _gdk_cursor_new_from_pixmap() and gdk_cursor_new_from_pixmap()
3168         Now the whole cursor is visible.
3169
3170         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
3171         Fix bug where xdest+height instead of ydest+height was used
3172         to calculate if the source and dest overlapped. This fixes the
3173         redraw bug when the main window in testgtk was scrolled when
3174         partially covered by a tall window.
3175         Copy rectangles in region in order depending on draw_direction.
3176         Also moved the draw_direction flipping of start_y and end_y into
3177         the gc functions, as this might not be what all of them want.
3178         (gdk_fb_draw_lines): Support dashed lines.
3179         (gdk_fb_draw_glyphs): Clean up glyph placement. Also fix positioning
3180         so that the text is positioned correctly (was 1 pixel high).
3181
3182         gdk/linux-fb/gdkgc-fb.c:
3183         Initialize cap_style to GTK_CAP_BUTT. This fixes a problem where
3184         all lines were drawn a pixel to short. Also checked the default of
3185         the rest of the values, and they're the same as X now.
3186
3187         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_glyph_info):
3188         Clean up pixel positioning of the glyphs. Just use bgy->top and
3189         bgy->left. Also used PANGO_PIXEL where appropriate and added 0.5
3190         to all divisions to get correct rounding behaviour.
3191
3192         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_draw_drawable_generic,
3193         gdk_fb_draw_drawable_memmove, gdk_fb_draw_drawable_aa_24):
3194         Moved start_y/end_y flip into draw_drawable implementations.
3195         Flip also x rendering when draw_direction < 0.
3196         Remove unneccesary multiply with draw_direction.
3197
3198 Wed Nov 22 14:11:19 GMT 2000  Tony Gale <gale@gtk.org>
3199
3200         * docs/tutorial/gtk-tut.sgml:
3201           - get rid of gtk_toggle_button_toggled FUD
3202           - start DND section - needs work - based on:
3203                 http://wolfpack.twu.net/docs/gtkdnd/
3204
3205 2000-11-22  Alexander Larsson  <alexl@redhat.com>
3206
3207         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
3208         Correct calculation of font metrics. Now GtkEntrys have sane
3209         size.
3210
3211 2000-11-22  Alexander Larsson  <alexl@redhat.com>
3212
3213         * gdk/gdktypes.h:
3214         Add new type GdkSpan
3215         
3216         * docs/reference/gdk/gdk-sections.txt,
3217         docs/reference/gdk/tmpl/regions.sgml, gdk/gdkregion-generic.c,
3218         gdk/gdkregion.h:
3219         Implement and document gdk_region_spans_intersect_foreach.
3220
3221         * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkrender-fb.c:
3222         Add new file gdkrender-fb.c which contains all core
3223         rendering code.
3224         Add gdk_fb_fill_rectangle_generic (old rectangle code) and
3225         gdk_fb_fill_rectangle_simple_16, gdk_fb_fill_rectangle_simple_32
3226         (optimized rectangle fillers).
3227
3228         * gdk/linux-fb/gdkdrawable-fb2.c:
3229         Move all rendering code to gdkrender-fb.c.
3230         Change from using GdkRectangles and GdkSegments for spans to GdkSpan.
3231         Use the new span intersection functions in gdk_fb_fill_spans.
3232         gdk_fb_draw_rectangle() clips filled rectangles and calls
3233         gc->fill_rectangle with the result.
3234         gdk_fb_fill_spans() gets extra argument "sorted".
3235
3236         * gdk/linux-fb/gdkevents-fb.c:
3237         Remove unused includes and defines.
3238         New function gdk_fb_get_time() to get correct time for events.
3239
3240         * gdk/linux-fb/gdkinput-ps2.c:
3241         Use gdk method of generating multiple-clicks (gdk_event_button_generate)
3242         Make sure to set the time of all events.
3243
3244         * gdk/linux-fb/gdkmain-fb.c:
3245         Use gdk_fb_get_time ().
3246
3247         * gdk/linux-fb/gdkprivate-fb.h:
3248         New virtual GC calls: fill_span & fill_rectangle.
3249         Export gdk_fb_get_time().
3250         gdk_fb_fill_spans() gets extra argument "sorted".
3251
3252         * gdk/linux-fb/mi*.c:
3253         Use GdkSpan instead of GdkRectangle.
3254         Pass correct sorted to gdk_fb_fill_spans. (sorted value taken
3255         from XFree 4 source)
3256         
3257 2000-11-22    <jrb@redhat.com>
3258
3259         * gtk/gtktreeview.c (gtk_tree_view_calc_size): It's amazing what
3260         reversing the order in an if statement will do.  Doing so managed
3261         to make the treemodelsort half work.  Other half will follow after
3262         I get the insert function fully fixed.
3263
3264 2000-11-21  Elliot Lee  <sopwith@redhat.com>
3265         * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
3266         more than 2 bits. Besides, I need to implement an evil hack. :)
3267
3268 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
3269
3270         * docs/tutorial/gtk-tut.sgml: minor corrections
3271
3272 2000-11-20  Jonathan Blandford <jrb@redhat.com>
3273         * gtk/gtktreemodelsort.h: Add convertion functions to let you
3274           convert to and from relative path's and iters.
3275
3276         * gtk/treestoretest.c: move to having a sorted/unsorted view.  Start
3277           testing sorting functions a bit better.  Currently broken -- will
3278           fix in morning.
3279
3280 2000-11-20  Havoc Pennington  <hp@redhat.com>
3281
3282         * gtk/gtkwidget.c: Documented a bunch of functions in here
3283         (gtk_widget_realize): Warn if you try to realize
3284         a widget with no parent that isn't a toplevel
3285         (gtk_widget_intersect): return a gboolean
3286
3287 2000-11-20  Havoc Pennington  <hp@redhat.com>
3288
3289         * gtk/gtktextview.c, gtk/gtktextlayout.c, gtk/gtktextchild.c,
3290         gtk/testtext.c: Semi-finish widget embedding. Need guffaw
3291         scrolling to be implemented in GDK to finish. Also, right now
3292         we just size_allocate all children on every layout change,
3293         which is pretty lame. Test commented out of testtext.c, 
3294         until it works better.
3295
3296 2000-11-20  Alexander Larsson  <alla@lysator.liu.se>
3297
3298         * gdk/linux-fb/gdkdrawable-fb2.c:
3299         Removed unused arguments from gdk_fb_drawable_get_pixel().
3300
3301         * gdk/linux-fb/gdkinput-ps2.c (handle_input_ps2):
3302         Renamed fidur specific mouse packet data in MouseDevice to
3303         generic. Used it in ps2 mouse handling code to avoid blocking
3304         reads.
3305
3306 Sat Nov 18 18:00:17 2000  Jonathan Blandford  <jrb@redhat.com>
3307
3308         * demos/gtk-demo/main.c: Changed to have the list become
3309         non-italic when the demo window is destroyed through an external
3310         event (like a close button).  Doing so found three bugs in the
3311         widget.
3312
3313         * demos/gtk-demo/*.c (do_*): Changed to return the toplevel window.
3314
3315         * gtk/gtkliststore.c (gtk_list_store_set_cell): emit "change" when
3316         we actually set the cell.
3317
3318         * gtk/gtktreestore.c (gtk_tree_store_set_cell): ditto
3319
3320         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
3321         free a leaked path.  Thanks memprof.
3322
3323 Sat Nov 18 11:58:17 2000  Owen Taylor  <otaylor@redhat.com>
3324
3325         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Fix 
3326         off-by-one error when destroying allocated segments
3327         on failure. (Elliot)
3328
3329 Sat Nov 18 11:45:09 2000  Owen Taylor  <otaylor@redhat.com>
3330
3331         * gtk/gtkcalendar.c: Patch from ChiDeok Hwang to fix
3332         memleaks found by Evan Martin.
3333
3334 Fri Nov 17 20:14:20 2000  Owen Taylor  <otaylor@redhat.com>
3335
3336         * Released 1.3.2
3337         
3338         * NEWS: Updates for 1.3.2
3339
3340 2000-11-17  Tor Lillqvist  <tml@iki.fi>
3341
3342         * gdk/gdkevents.h: Add comment that GdkXEvent isn't only for XEvent,
3343         but in general for window system specific events.
3344
3345         * gtk/gtk.def
3346         * gtk/makefile.mingw.in
3347         * gtk/makefile.msc.in: Update.
3348         
3349         * gtk/gtktexttypes.h: Mark variables for export/import from DLL.
3350
3351 Thu Nov 16 16:11:39 2000  Owen Taylor  <otaylor@redhat.com>
3352
3353         * gtk/Makefile.am (EXTRA_DIST): Do not, in any circumstances,
3354         distribute gtk.immodules.
3355
3356         * gtk/Makefile.am (install-data-local): Don't install the
3357         gtk.immodules file created for the uninstalled modules;
3358         instead run gtk-query-immodules after install
3359
3360 Wed Nov 15 21:51:31 2000  Owen Taylor  <otaylor@redhat.com>
3361
3362         * modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
3363         -rpath to the right install location.
3364
3365         * modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
3366         -export-dynamic.
3367
3368         * gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
3369         properly.
3370
3371 2000-11-15  Havoc Pennington  <hp@pobox.com>
3372
3373         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): Apply
3374         patch from Mikael Hermansson to temporarily stop blinking while
3375         the user is using the keyboard to type or navigate. 
3376
3377         Also, when blinking, stay on for longer than we stay off. Also,
3378         return from start_cursor_blink if !cursor_visible, to save
3379         checking that flag all over the place before we call
3380         start_cursor_blink.
3381
3382 Thu Nov 16 01:25:51 2000  Robert Brady  <robert@suse.co.uk>
3383
3384         * gtk/gtkrc.*: Remove the locale-specific gtkrc's, as they
3385         only contain a "fontset" line, which is now ignored.
3386
3387         * gtk/gtkentry.c (gtk_entry_button_release): Make 
3388         double-click-to-select-word work.
3389         
3390 Wed Nov 15 20:16:54 2000  Owen Taylor  <otaylor@redhat.com>
3391
3392         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
3393         Don't move back one char when we are actually at the end of the 
3394         paragraph.
3395
3396 2000-11-15  Robert Brady  <robert@suse.co.uk>
3397
3398         * modules/input/iminuktitut.c (inuktitut_compose_seqs): 
3399         'o' < 'p'.
3400         
3401         * gtk/gtkmain.c: s/CODSET/CODESET/, include <libintl.h> for
3402         bind_textdomain_codeset.
3403
3404         (gtk_init_check): Make the warning about translating default:LTR
3405         sterner.
3406         
3407 Wed Nov 15 18:39:40 2000  Owen Taylor  <otaylor@redhat.com>
3408
3409         * **/Makefile.am : remove unecessary rules for win32-specific
3410         config-substituted targets. If you want these rules, use
3411         --enable-maintainer-mode (called automatically by autogen.sh).
3412         Stops a lot of unneccessary make-time warnings.
3413
3414         * gtk/gtktext{layout,display}.c: Factor in total width as
3415         well as screen when figuring alignment for word-wrap as well as
3416         no wrap; this is necessary to handle lines that cannot be wrapped
3417         at all.
3418
3419 2000-11-15  Havoc Pennington  <hp@redhat.com>
3420
3421         * gtk/testtext.c: Implement essential color cycling feature
3422
3423 2000-11-15  Havoc Pennington  <hp@redhat.com>
3424
3425         * gtk/gtktextview.c (changed_handler): Invalidate the side windows
3426         when we invalidate the main window.
3427
3428         * gtk/testtext.c (create_view): Get rid of text_changed_callback,
3429         GtkTextView will now invalidate the side windows for us when text
3430         changes.
3431
3432 Wed Nov 15 16:02:20 2000  Owen Taylor  <otaylor@redhat.com>
3433
3434         * gtk/gtktextview.c (changed_handler): Call scroll_calc_now()
3435         unconditionally, since we may need to update the horizontal
3436         scrollbars even if the height didn't change.
3437
3438         * gtk/gtktextlayout.c (add_preedit_attrs): Always get
3439         the extra attrs, since some of them affect size.
3440
3441         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Factor in
3442         x_offset correctly.
3443
3444 2000-11-15  Havoc Pennington  <hp@redhat.com>
3445
3446         * gtk/gtktextlayout.c (set_para_values): If indent is negative,
3447         don't move the first line out into the margin, instead move the
3448         whole paragraph in order to make space for the first line within 
3449         the margin
3450
3451 2000-11-15  Havoc Pennington  <hp@redhat.com>
3452
3453         * gtk/gtktextview.c (changed_handler): offset redraw rect by
3454         xoffset in addition to yoffset, so horizontal scrolling doesn't
3455         break redraws
3456
3457 2000-11-15  Havoc Pennington  <hp@redhat.com>
3458
3459         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove extra pixel
3460         from the cursor
3461         (render_layout_line): fix reversed test that caused weird
3462         underlines to get drawn
3463
3464 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
3465
3466         * gdk/linux-fb/gdkprivate-fb.h:
3467         Fix debug macros.
3468         
3469 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
3470
3471         * gdk/linux-fb/gdkprivate-fb.h:
3472         Added virtual functions set_pixel, get_color,
3473         fill_span and draw_drawable to the GC.
3474         Added global _gdk_fb_screen_gc to use instead of
3475         NULL when drawing to the screen.
3476         Added _gdk_fb_gc_calc_state() prototype.
3477
3478         * gdk/linux-fb/gdkgc-fb.c:
3479         Call _gdk_fb_gc_calc_state() on any gc state change.
3480
3481         * gdk/linux-fb/gdkglobals-fb.c:
3482         Add _gdk_fb_screen_gc
3483                 
3484         * gdk/linux-fb/gdkdrawable-fb2.c:
3485         _gdk_fb_gc_calc_state() calculates best functions
3486         for the GC state and depth.
3487         Moved bpp specialized code to separate functions.
3488         Added optimized 24 bpp AA draw_drawable.
3489
3490         * gdk/linux-fb/gdkevents-fb.c:
3491         Silence gcc warning.
3492
3493         * gdk/linux-fb/gdkimage-fb.c:
3494         Use _gdk_fb_screen_gc
3495
3496         * gdk/linux-fb/gdkwindow-fb.c:
3497         Init and use _gdk_fb_screen_gc
3498
3499         * gdk/linux-fb/mitypes.h:
3500         Remove unused types.
3501
3502 2000-11-14  Havoc Pennington  <hp@pobox.com>
3503
3504         * gtk/gtktextlayout.c (add_cursor): use PANGO_PIXELS() to convert
3505         to pixels
3506
3507 2000-11-14  Havoc Pennington  <hp@pobox.com>
3508
3509         * gtk/testtextbuffer.c (fill_buffer): change "offset" to "rise"
3510
3511         * gtk/gtktexttypes.h (GTK_TEXT_UNKNOWN_CHAR): Add macro for
3512         unknown char, no real reason we were using a variable. 
3513         Remove gtk_text_unknown_char variable. Fix all the text widget
3514         files accordingly.
3515
3516         * gtk/gtktexttypes.c: Change "unknown character" to 0xFFFC, 
3517         since the Unicode spec seems to prefer that character for our
3518         purposes.
3519
3520 Wed Nov 15 02:18:01 2000  Robert Brady  <robert@suse.co.uk>
3521
3522         * gtk/gtkrc.c (gtk_rc_get_im_module_file): The return 
3523         value of g_getenv() isn't freeable, so g_strdup it.
3524
3525         * modules/input/inuktitut.c: Inuktitut input method.
3526
3527         * modules/input/Makefile.am: Build this.
3528         
3529 2000-11-14  Elliot Lee  <sopwith@redhat.com>
3530
3531         * gtk/Makefile.am: Install gtk.immodules, needed for operation
3532         of gtk programs.
3533
3534 Tue Nov 14 20:13:06 2000  Owen Taylor  <otaylor@redhat.com>
3535
3536         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): Fix
3537         reversed > that was causing Home to go to end of previous line.
3538
3539         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): Ignore
3540         modified-keypresses (leave for bindings.)
3541
3542         * modules/input/Makefile.am: Remove useless -export-dynamic
3543         from module LDFLAGS.
3544
3545 2000-11-14  Havoc Pennington  <hp@redhat.com>
3546
3547         * gdk/gdkpango.c (gdk_draw_layout_line): Draw underlines one pixel
3548         higher.
3549
3550         * gtk/gtktextdisplay.c (render_layout_line): Take rise into
3551         account. Also, render rise, underline, background, etc. for
3552         pixbufs as well as text. Also, draw underlines one pixel higher.
3553
3554         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): Add a
3555         PangoAttribute for the rise, so it gets drawn properly. Also,
3556         add the GtkTextAppearance attribute for pixbuf/widget segments
3557         as well; we should go ahead and have rise, underline, background,
3558         stipple work for those
3559
3560         * gtk/gtktexttag.c: Rename "offset" property to "rise" to match
3561         Pango
3562
3563 2000-11-15  Tor Lillqvist  <tml@iki.fi>
3564
3565         * gtk/makefile.{mingw,msc}.in (gtk_OBJECTS): Add new objects.
3566
3567         * gtk/gtk.def: Update.
3568
3569         * gtk/gtkrc.c: Can't check for G_OS_WIN32 until glib.h has been
3570         included.
3571         (gtk_rc_get_im_module_file): Use run-time installation directory
3572         on Win32.
3573
3574         * gdk/win32/rc/gdk.rc: Remove.
3575         * gdk/win32/rc/gdk.rc.in: New file.
3576         * gdk/win32/rc/Makefile.am: New file
3577         * gdk/win32/Makefile.am: Corresponding changes.
3578
3579         * gtk/gtk.rc: Remove.
3580         * gtk/gtk-win32.rc.in: New file.
3581         * gtk/Makefile.am: Corresponding changes.
3582
3583         * configure.in: Corresponding changes.
3584
3585         * gtk/gtkcompat.h.win32: Remove, useless. A distribution already
3586         has a built gtkcompat.h. Developers using CVS code on Win32 can
3587         hand-edit it from gtkcompat.h.in.
3588
3589         * gtk/makefile.{mingw,msc}.in: Correspondingly don't try to make
3590         gtkcompat.h from gtkcompat.h.win32.
3591
3592 2000-11-14  Havoc Pennington  <hp@redhat.com>
3593
3594         * gtk/gtktextview.c (gtk_text_view_drag_motion): Fix drag-and-drop
3595         to default to GDK_ACTION_MOVE if the drag is within a single
3596         widget. Defaults to GDK_ACTION_COPY between widgets.
3597
3598 Mon Nov 13 14:43:48 2000  Owen Taylor  <otaylor@redhat.com>
3599
3600         * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir
3601
3602         * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk
3603
3604         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles
3605         srcdir != builddir
3606
3607         * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk
3608
3609         * configure.in (GTK_VERSION): Up to 1.3.2
3610
3611         * modules/input/Makefile.am (im_xim_la_SOURCES): Add 
3612         gtkimcontextxim.h
3613
3614         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add
3615         missing doc comment.
3616
3617 2000-11-14  Alexander Larsson  <alexl@redhat.com>
3618
3619         * modules/linux-fb/basic.c:
3620         Use the glib iconv wrappers.
3621
3622 2000-11-13  Havoc Pennington  <hp@pobox.com>
3623
3624         * demos/gtk-demo/textview.c: spiff up the demo a bit; reveals
3625         still more bugs.
3626
3627         * gtk/gtktextview.c (gtk_text_view_value_changed): don't try to
3628         scroll the GdkWindows before realization.
3629
3630 2000-11-13  Havoc Pennington  <hp@redhat.com>
3631
3632         * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug 
3633         where GC didn't always get updated properly
3634
3635         * demos/gtk-demo/textview.c (create_tags): Use subattributes
3636         of fonts instead of setting the entire font
3637
3638         * gtk/testtext.c (fill_example_buffer): Use "size" instead of
3639         setting entire font
3640
3641         * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings
3642
3643         * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into 
3644         a bunch of individually-settable font attributes. You can still 
3645         use the "font" and "font_desc" args, they just set all the font
3646         attributes at once.
3647
3648 2000-11-13 Elliot Lee <sopwith@redhat.com>
3649
3650         * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
3651
3652 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
3653
3654         * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
3655         * gtk/gtktreemodel.c (gtk_tree_path_free): ditto
3656
3657         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): make
3658         work better.
3659
3660 2000-11-13  Havoc Pennington  <hp@redhat.com>
3661
3662         * gtk/gtkimmodule.c (gtk_im_module_init): Free the filename of 
3663         the module file.
3664
3665         * gtk/gtktexttag.c (gtk_text_attributes_copy): fix memory leak of
3666         dest->language
3667
3668         * gtk/testtext.c: Test pixels above/below/inside paragraphs
3669         settings
3670
3671         * gtk/gtktextview.c: Implement object args and setters/getters for
3672         all the aspects of the GtkTextAttributes that are not set from
3673         GtkWidget attributes. This is spacing, justification, margins,
3674         etc.
3675
3676         (gtk_text_view_set_arg)
3677         (gtk_text_view_get_arg): implement get/set for editable, wrap mode
3678         args
3679         (gtk_text_view_class_init): Add args for justify, left_margin,
3680         right_margin, indent, and tabs
3681         
3682
3683         * gtk/gtktextlayout.c (set_para_values): fix to display indent
3684         attribute properly
3685
3686         * gtk/gtktexttag.c: Remove left_wrapped_line_margin attribute, 
3687         replace with indent attribute
3688
3689         * gtk/gtktextlayout.c (set_para_values): multiply indent by
3690         PANGO_SCALE
3691
3692         * gtk/gtktextdisplay.c (render_para): Use PangoLayoutIter,
3693         rearranging code to do that
3694         (gtk_text_layout_draw): Pass in the y for the whole LineDisplay,
3695         i.e. don't subtract the top_margin first, just to keep
3696         all margin-futzing in one place.
3697
3698         * gdk/gdkpango.c (gdk_draw_layout): Use PangoLayoutIter
3699
3700         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Remove
3701         special case of last line, Pango now handles this itself.
3702         (gtk_text_layout_get_iter_at_pixel): Fix incorrect clamp of the 
3703         Y coordinate
3704         (gtk_text_layout_move_iter_to_x): port to use PangoLayoutIter
3705         (find_display_line_above): wasn't moving the byte index as it
3706         iterated over lines, so always returned byte 0. Also, port to use
3707         PangoLayoutIter.
3708         (find_display_line_below): same problem as
3709         find_display_line_above. Also, port to use PangoLayoutIter.
3710
3711 2000-11-13  Alexander Larsson  <alexl@redhat.com>
3712
3713         * gdk/linux-fb/*.[ch]:
3714         Massive reindent to gtk+ standard. My hands hurt.
3715
3716         * gdk/linux-fb/gdkcolor-fb.c:
3717         Move GdkColorPrivateFB from inherited to windowing_data
3718
3719         * gdk/linux-fb/gdkcursor-fb.c:
3720         _gdk_cursor_new_from_pixmap made static
3721
3722         * gdk/linux-fb/gdkdnd-fb.c:
3723         GdkDragContextPrivate moved to windowing_data
3724
3725         * gdk/linux-fb/gdkdrawable-fb2.c:
3726         Removed endian.h, use glib endianness macros instead
3727         Some cleanups in the usage of GDK_DRAWABLE_FBDATA
3728         and GDK_DRAWABLE_IMPL_FBDATA
3729
3730         * gdk/linux-fb/gdkfont-fb.c:
3731         Add empty gdk_font_load(). Needed for linking of Gtk+.
3732
3733         * gdk/linux-fb/gdkimage-fb.c:
3734         Removed endian.h, use glib endianness macros instead
3735         Moved GdkImagePrivateFB to windowing_data
3736         gdk_image_new_bitmap didn't always allocate enough
3737         memory.
3738
3739         * gdk/linux-fb/gdkinput-ps2.c:
3740         Added semi-working support for MS serial mice.
3741
3742         * gdk/linux-fb/gdkprivate-fb.h:
3743         s/GdkWindowPrivate/GdkWindowObject/
3744         Removed GdkWindowPrivate typedef
3745         s/GDK_DRAWABLE_P/GDK_DRAWABLE_FBDATA/
3746         Removed GDK_DRAWABLE_P
3747         Move GdkColorPrivateFB from inherited to windowing_data
3748         Moved GdkImagePrivateFB to windowing_data
3749
3750         * gdk/linux-fb/gdkvisual-fb.c:
3751         Removed some unused debug code.
3752
3753         * gdk/linux-fb/gdkwindow-fb.c:
3754         Use stock cursors instead of including X headers.
3755         s/GdkWindowPrivate/GdkWindowObject/
3756
3757         * gdk/linux-fb/mitypes.h:
3758         Removed unused types.
3759
3760         * modules/linux-fb/basic.c:
3761         Use the pango fribidi wrappers.
3762
3763 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
3764
3765         * gdk/linux-fb/gdkcolor-fb.c, gdk/nanox/gdkmain-nanox.c,
3766         gdk/win32/gdkcolor-win32.c, gdk/win32/gdkwin32id.c,
3767         gdk/x11/gdkcolor-x11.c, gdk/x11/gdkvisual-x11.c, gdk/x11/gdkxid.c,
3768         gtk/gtkgc.c, gtk/gtkrc.c, gtk/gtktext.c: GCompareFunc ->
3769         GEqualFunc where applicable.
3770         
3771         * gdk/linux-fb/gdkpango-fb.c: pango_font_description_compare ->
3772         pango_font_description_equal as changed in pango.
3773         
3774         * gdk/nanox/gdkmain-nanox.c: gdk_xid_compare -> gdk_xid_equal.
3775
3776         * gdk/win32/gdkcolor-win32.c: gdk_colormap_cmp -> gdk_colormap_equal.
3777
3778         * gdk/win32/gdkwin32id.c: gdk_handle_compare -> gdk_handle_equal.
3779
3780         * gdk/x11/gdkcolor-x11.c: gdk_colormap_cmp -> gdk_colormap_equal.
3781
3782         * gdk/x11/gdkvisual-x11.c: gdk_visual_compare -> gdk_visual_equal.
3783
3784         * gdk/x11/gdkxid.c: gdk_xid_compare -> gdk_xid_equal.
3785
3786         * gtk/gtkgc.c: gtk_gc_key_compare -> gtk_gc_key_equal and
3787         gtk_gc_drawable_compare -> gtk_gc_drawable_equal.
3788
3789         * gtk/gtkrc.c: gtk_rc_style_compare -> gtk_rc_style_equal and
3790         gtk_rc_styles_compare -> gtk_rc_styles_equal.
3791
3792 2000-11-12  Havoc Pennington  <hp@pobox.com>
3793
3794         * demos/gtk-demo/Makefile.am (democodedir): change demo install
3795         dir to datadir/gtk+-2.0/demo
3796
3797         * demos/gtk-demo/textview.c: Text widget demo; reveals all 
3798         sorts of text widget and Pango font bugs. Urgh.
3799
3800         * demos/gtk-demo/Makefile.am (demos): Add textview.c
3801
3802         * demos/gtk-demo/main.c (create_tree): Add instructions at top of
3803         tree that you should double click to see the demo. Fix 
3804         types of variables to reflect changed return values from 
3805         GtkTreeStore and GtkTreeViewColumn constructors.
3806
3807         * gtk/gtktextbuffer.c (gtk_text_buffer_new): ref/sink the
3808         newly-created buffer to prepare for GObject semantics
3809
3810         * gtk/testtext.c: don't leak the buffer with GObject semantics
3811
3812         * gtk/testtextbuffer.c: ditto
3813         
3814 2000-11-12  Havoc Pennington  <hp@pobox.com>
3815
3816         Rename this testgtk to gtk-demo to avoid confusion, and 
3817         install it so people can use it as a supplement to 
3818         the documentation.
3819         
3820         * demos/gtk-demo: Moved from demos/testgtk
3821
3822         * demos/testgtk: Removed
3823
3824         * configure.in: make Makefile in gtk-demo
3825         
3826         * demos/gtk-demo/Makefile.am: Install sample source to 
3827         datadir/gtk-demo (maybe there's a better place?), and 
3828         rename the binary to gtk-demo
3829         
3830         * demos/gtk-demo/main.c (load_file): Load installed sample
3831         source if source isn't found in pwd.
3832
3833 2000-11-09  Havoc Pennington  <hp@pobox.com>
3834
3835         * gtk/gtkentry.c (gtk_entry_class_init): Add an "invisible_char" 
3836         argument to set the char displayed when visibility == FALSE
3837         (gtk_entry_create_layout): If !entry->visible, replace 
3838         all chars with the "invisible char"
3839
3840         * gtk/testgtk.c: Test the invisible_char deal
3841         
3842 Mon Nov 13 02:16:33 2000  Robert Brady  <robert@suse.co.uk>
3843
3844         * gtk/gtkstyle.c (gtk_style_init): Fall back to "fixed" if we
3845         can't get a native font in the right encoding.
3846
3847 Mon Nov 13 00:09:29 2000  Robert Brady  <robert@suse.co.uk>
3848
3849         * configure.in: Chinese .pos have been renamed to zh_CN and zh_TW
3850         respectively.
3851
3852 Sun Nov 12 19:11:42 2000  Owen Taylor  <otaylor@redhat.com>
3853
3854         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
3855         Fix warning when moving between paragraphs.
3856
3857         * gtk/gtkentry.[ch]: Change move => move_cursor, 
3858         delete => delete_from_cursor, insert => insert_at_cursor
3859
3860 Sun Nov 12 22:52:51 2000  Robert Brady  <robert@suse.co.uk>
3861
3862         * modules/input/imviqr.c: A vietnamese VIQR-based input method.
3863
3864         * modules/input/imthai-broken.c: A Thai input method for use if
3865         Thai keys are really generating Latin1 keysyms.
3866
3867         * modules/input/Makefile.am: Build these.
3868
3869 Sun Nov 12 22:15:35 2000  Robert Brady  <robert@suse.co.uk>
3870
3871         * gtk/gtkfileselection.c, gdk/win32/gdkfont-win32.c: 
3872         g_filename_{to,from}_utf8 now takes an extra parameter.
3873
3874         * gtk/gtkcalendar.c (gtk_calendar_init): Convert output of
3875         strftime into UTF-8.
3876
3877         (column_from_x, gtk_calendar_paint_day_names): Support RTL
3878         calendars.
3879
3880         (gtk_calendar_paint_day_names): Draw day names in the right 
3881         place.
3882         
3883 Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>
3884
3885         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
3886         problem with using result of g_get_charset() backwards -
3887         pointed out by Mikael Hermansson <mikeh@bahnhof.se>.
3888
3889         * gtk/gtkwindow.c (gtk_window_compute_hints): Support
3890         negative min_width/height and max_width/height to
3891         mean "requisition"; this allows setting a window
3892         to be user-resizable in only one direction easily.
3893
3894         * gtk/testgtk.c (create_main_window): Remove hard-coded
3895         usize - set a default size in the vertical direction.
3896
3897 Sun Nov 12 13:33:01 2000  Owen Taylor  <otaylor@redhat.com>
3898
3899         * gtk/gtkrange.c: Add some missing casts. Support 
3900         2 and 3 button clicks on the arrows to mean 
3901         "move by pages" and "jump to end". (Like gtkspinbutton)
3902
3903 2000-11-12 Hans Breuer <Hans@Breuer.Org>
3904
3905         * gdk/win32/makefile.msc : reflect build module changes
3906
3907         * gdk/win32/gdkcursor-win32.c : can't cast to impl type directly
3908         from GdkPixmap*, cast implementation member instead.
3909
3910         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_drawable) : The
3911         passed in drawable is of type GdkDrawableImplWin32, the GdkPixmap *src 
3912         maybe either GdkDrawable or GdkDrawableImpl. Corrected all casts, add
3913         more Gdi functions return value checking. 
3914         (gdk_win32_draw_image) : use IMAGE_PRIVATE_DATA to get on the
3915         GdkImagePrivateWin32 *.
3916
3917         * gdk/win32/gdkevents-win32.c : Disable the SetCapture call to make
3918         menus useable again. Add #pragma message to keep reminded on this issue.
3919         (gdk_event_translate) : don't generate GDK_EXPOSE events for InputOnly
3920         windows. This allows to enable backing store on Win32!
3921
3922         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image) : the passed
3923         in drawable is of impl type. Correct specific type checks appropriate.
3924  
3925         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data) : check 
3926         GDK_WINDOW_DESTROYED before allocating new resources.
3927
3928         * gdk/win32/gdkselection-win32.c : Handle GDK_WINDOW_DESTROYED case
3929
3930         * gdk/win32/gdkwindow-win32.c : more Gdi return value checking,
3931         (gdk_window_foreign_new) initialize parent handle.
3932         (gdk_window_destroy_notify) add GDK_IS_WINDOW check
3933
3934         * gdk/win32/gdkgeometry-win32.c (_gdk_window_move_resize_child) :
3935         Let the GDI invalidate the window on MoveWindow call to fix scrolling
3936         problems (e.g. main buttons in testgtk). 
3937
3938 Sat Nov 11 23:07:30 2000  Owen Taylor  <otaylor@redhat.com>
3939
3940         * gtk/gtkentry.c (gtk_entry_key_press): Call 
3941         gtk_widget_activate for GDK_Return.
3942
3943         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): Fix handling
3944         of preedit cursor position.
3945
3946 Sun Nov  5 04:24:53 2000  Owen Taylor  <otaylor@redhat.com>
3947
3948         * gtk/gtkcellrenderertextpixbuf.c: Make parent_class
3949         static.
3950
3951 Tue Sep 19 10:54:22 2000  Owen Taylor  <otaylor@redhat.com>
3952
3953         * modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
3954         out support for multiple locales; that simple doesn't
3955         work reliably with current Xlib
3956
3957         * gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
3958         gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c: 
3959         Add support for positioning the cursor within the preedit string.
3960
3961 Mon Sep 18 23:56:32 2000  Owen Taylor  <otaylor@redhat.com>
3962
3963         * modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
3964         at XIM input method module.
3965
3966         * gtk/gtktextview.c: Check for bindings after passing
3967         events to im context filter.
3968
3969 Mon Sep 18 11:50:51 2000  Owen Taylor  <otaylor@redhat.com>
3970
3971         * gtk/gtktextlayout.c (add_preedit_attrs): Handle
3972         empty attribute lists properly.
3973
3974 Sun Sep 17 10:08:16 2000  Owen Taylor  <otaylor@redhat.com>
3975
3976         * gtk/queryimmodules.c (main): Return non-zero exit
3977         status if errors were encountered querying any
3978         modules.
3979
3980         * modules/input/Makefile.am (moduledir): remove
3981         leftover bin program target.
3982
3983         * docs/make-todo: Fix typo in error message.
3984
3985 Sat Sep 16 14:04:30 2000  Owen Taylor  <otaylor@redhat.com>
3986
3987         * configure.in: Add modules/input/Makefile
3988
3989 Sat Sep 16 14:01:52 2000  Owen Taylor  <otaylor@redhat.com>
3990
3991         * gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
3992         don't include gtkthemes.h.
3993
3994         * gtk/testgtk.c gtk/testtext.c: Set environment variables
3995         to point
3996
3997         * gtk/Makefile.am: Add new .c and .h files, build 
3998         gtk-query-immodules and use it to create a gtk.immodules
3999         file for use of test programs.
4000
4001         * gtk/gtkpreview.c: remove extra blank line.
4002
4003 Sat Sep 16 13:21:04 2000  Owen Taylor  <otaylor@redhat.com>
4004
4005         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table): 
4006         Add the ability to add extra tables beyond the default
4007         one, and also the ability to have compose sequences 
4008         that are prefixes of other compose sequences. 
4009
4010         * gtk/gtkimcontextsimple.c: Export a preedit string which
4011         consists of possible candidates for keystrokes that have
4012         been entered but not yet committed.
4013
4014         * gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
4015         gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
4016
4017         * gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems): 
4018         Add a function to add input-method switching menu items
4019         to a menu.
4020
4021         * gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
4022         when switching input methods.
4023
4024         * gtk/gtkimcontextsimple.[ch]: Change the format of
4025         the compose table to allow compose tables of different
4026         lengths / sequence.
4027
4028 Sat Sep 16 13:05:48 2000  Owen Taylor  <otaylor@redhat.com>
4029
4030         * gtk/gtkimmodule.[ch]: Support routines for loading
4031         GtkIMContext implementations dynamically at runtime.
4032
4033         * modules/input/imcyrillic-translit.c: A sample input
4034         method (based on GtkIMContextSimple with an extra table),
4035         which demonstrates preedit strings and the module
4036         system for input modules
4037
4038         * gtk/queryimmodules.c: Program to query the available
4039         input modules and write the results into a file.
4040          
4041         * gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
4042         extra config options "im_module_file" (cache file for
4043         input method modules), and "im_module_path" - path
4044         to look for modules when generating cache file.
4045
4046         This doesn't scale.
4047
4048 Sat Sep 16 13:09:06 2000  Owen Taylor  <otaylor@redhat.com>
4049
4050         * gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the 
4051         generic code from gtkthemes into a new abstraction
4052         GtkModule which has the logic for implementing
4053         a loadable module which implements a number of 
4054         GObject types.
4055
4056 Sat Sep 16 13:07:13 2000  Owen Taylor  <otaylor@redhat.com>
4057
4058         * gtk/gtkeditable.[ch]: Convert GtkEditable from
4059         a class into an interface  
4060         
4061         * gtk/gtkoldeditable.[ch]: Move the old editable
4062         implementation into here, so legacy widgets can
4063         still rely on the implemenation. GtkOldEditable
4064         exports GtkEditable. Make selection handling
4065         code use new text conversion functions (and
4066         handle UTF-8 as a side-effect). Use GtkClipboard
4067         for CLIPBOARD.
4068
4069         * gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
4070         Adopt to match above changes.
4071
4072         * gtk/gtkentry.[ch]: Implement GtkEditable directly,
4073         avoid GtkOldEditable implementation. Restructure
4074         to reduce number of places that modify state directly.
4075         Move to GtkBindingSet. Display the preedit string.
4076         Queue recomputation of PangoLayout and scroll position
4077         to improve effiency of doing complex changes naively.
4078         Add a menu with cut/copy/paste and input method selection.
4079
4080 Thu Sep 14 22:11:05 2000  Owen Taylor  <otaylor@redhat.com>
4081
4082         * gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
4083         to set preedit string and attributes; display preedit string by
4084         inserting string and attributes at cursor when creating the
4085         GtkTextLineDisplay.
4086
4087         * gtk/gtktextlayout.c: Move all conversions between byte
4088         positions in PangoLayout and GtkTextIter into new functions
4089         line_display_iter_to_index/index_to_iter that properly
4090         handle the preedit string.
4091
4092         * gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
4093         it to return const char * (eventually will end up
4094         as GCONST char *, most likely.)
4095
4096         * gtk/gtktextview.[ch]: Handle the preedit string, call
4097         gtk_im_context_reset() as necessary, add a menu to switch
4098         input methods.
4099         
4100         * gtk/gtktextlayout.[ch]: Remove useless
4101         gtk_text_layout_get_log_attrs() function.
4102
4103 2000-11-11  Tor Lillqvist  <tml@iki.fi>
4104
4105         * gdk/gdk.def
4106         * gtk/gtk.def: Update.
4107
4108         * gdk/win32/*.c: Add last argument to g_type_register_static()
4109         calls.
4110
4111         * gdk/win32/gdkwindow-win32.c: Silence gcc -Wall.
4112
4113         * gdk/win32/gdkevents-win32.c: Handle MSH_MOUSEWHEEL messages
4114         generated by older wheel mouse drivers. Get the correct y
4115         coordinate from WM_MOUSEWHEEL messages.
4116
4117         * gdk/win32/gdkgc-win32.c (gdk_win32_cap_style_to_string,
4118         gdk_win32_fill_style_to_string, gdk_win32_function_to_string,
4119         gdk_win32_join_style_to_string, gdk_win32_line_style_to_string):
4120         Debugging functions.
4121
4122         * gdk/win32/gdkprivate-win32.h: Declare them.
4123
4124         * gdk/win32/gdkinput-win32.h: Add declaration for
4125         gdk_input_window_destroy().
4126
4127         * gtk/makefile.mingw.in: Pass -DGTK_VERSION. Add gtktreemodel.o.
4128
4129 Fri Nov 10 19:06:41 2000  Jonathan Blandford  <jrb@redhat.com>
4130
4131         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): New
4132         function to help handle keeping things in sync.
4133
4134 Fri Nov 10 12:10:34 2000  Jonathan Blandford  <jrb@redhat.com>
4135
4136         * gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
4137         BOXED marshallers.
4138
4139         * gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
4140         (gtk_list_store_class_init): use the new BOXED marshallers.
4141
4142         * gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
4143         new_with_values to new_with_types.
4144         (gtk_tree_store_get_column_type): add this.
4145         (gtk_tree_store_class_init): use the new BOXED marshallers.
4146
4147         * gtk/gtkmarshal.list: Added a number of BOXED marshallers to
4148         mirror some POINTER marshallers.
4149
4150 Thu Nov  9 11:23:22 2000  Jonathan Blandford  <jrb@redhat.com>
4151
4152         * gtk/gtktreemodel.h (struct _GtkTreeIter): added more fields to
4153         allow more interesting iterators.  Also, made the lifecycle of
4154         iterators more explicit.
4155
4156         * gtk/gtktreemodelsort.[ch]: New model for sorting.
4157
4158         * gtk/gtk-boxed.defs (GtkTreeIter, GtkTreePath): Added two boxed
4159         types.
4160
4161 2000-11-09  Alexander Larsson  <alexl@redhat.com>
4162
4163         * demos/testgtk/menus.c:
4164         Changes to make the new testgtk compile after
4165         gtk_menu_append was removed.
4166
4167         * gdk/linux-fb/gdkdrawable-fb2.c
4168         (gdk_fb_get_depth, gdk_fb_get_visual,
4169         gdk_drawable_impl_fb_class_init): Implement
4170         these drawable functions. Now GtkImages work again.
4171
4172         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Change prototype.
4173
4174         * gdk/linux-fb/gdkprivate-fb.h (_gdk_fb_get_image): Change prototype.
4175         
4176         * gdk/linux-fb/gdkmain-fb.c (fb_modes_parse_mode,
4177         gdk_fb_setup_mode_from_name, gdk_fb_set_mode, gdk_fb_display_new);
4178         Parse /etc/fb.modes, use the environment variables GDK_DISPLAY_MODE,
4179         GDK_DISPLAY_DEPTH, GDK_DISPLAY_WIDTH, GDK_DISPLAY_HEIGHT.
4180
4181 2000-11-08  Havoc Pennington  <hp@pobox.com>
4182
4183         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add visible and
4184         visible_set args, don't know where these had gone, I thought they
4185         used to be there
4186
4187         * gtk/testtext.c: Add a menu item to apply invisibility tag;
4188         now we can test the feature and see that it's totally broken.
4189
4190 2000-11-08  Havoc Pennington  <hp@pobox.com>
4191
4192         Make DND copy pixbufs and tags when source and target share a 
4193         tag table.
4194         
4195         * gtk/gtktextview.c (gtk_text_view_drag_data_get): provide the
4196         in-process GTK_TEXT_BUFFER_CONTENTS target
4197         (gtk_text_view_drag_data_received): Paste from
4198         GTK_TEXT_BUFFER_CONTENTS if we receive it.
4199
4200 2000-11-08  Alexander Larsson  <alexl@redhat.com>
4201
4202         * docs/Changes-2.0.txt: Add note about GtkMenuPositionFunc
4203         API changes.
4204
4205         * gtk/gtkmenu.c: Add support for scrolling menus.
4206         Remove gtk_menu_append/prepend/insert, these have been moved to
4207         gtkcompat.h as #defines.
4208
4209         * gtk/gtkcompat.h.in:
4210         Add compatibility #defines for gtk_menu_append/prepend/insert
4211
4212         * gtk/gtkmenu.h: Add data needed for scrolling menus.
4213         GtkMenuPositionFunc gets an extra argument push_in.
4214         gtk_menu_append/prepend/insert removed.
4215         
4216         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Change menu
4217         positioning behaviour to fit to scrolling menus.
4218
4219         * gtk/gtkmenuitem.c (gtk_menu_item_forall): Don't recurse
4220         into menuitem->submeny. That is wrong, and broke torn
4221         off submenus of torn off menus, since they were unrealized
4222         when the first menu was unrealized.
4223
4224         * gtk/gtkmenushell.[ch]: Virtualize gtk_menu_shell_insert() and
4225         gtk_menu_shell_select_item() since these need to be overridden in
4226         GtkMenu.
4227
4228         * gtk/gtkoptionmenu.c (gtk_opttion_menu_position): Change menu
4229         positioning behaviour to fit to scrolling menus.
4230         (gtk_option_menu_key_press, gtk_option_menu_button_press): Select
4231         the current item so that it is prelighted when the menu pops up.
4232         This is a workaround to the fact that the menu doesn't get the
4233         initial enter event (due to grabs).
4234
4235         * gtk/gtkfilesel.c, gtk/gtkinputdialog.c, gtk/testgtk.c:
4236         s/gtk_menu_append/gtk_menu_shell_append/
4237
4238         * gtk/gtknotebook.c:
4239         s/gtk_menu_insert/gtk_menu_shell_insert/
4240
4241         * gtk/testgtk.c (create_menu, create_menus):
4242         Create the first menu with 50 items so that menu scrolling
4243         can be tested.
4244         
4245         
4246         Patch from Jonathan Blandford  <jrb@redhat.com>
4247
4248         * gtk/gtkmenuitem.[ch] (gtk_menu_item_toggle_size_request): new
4249         system to handle size requests.  First, we ask what the size of
4250         the toggle is.  Then, when allocating the size, we allocate the
4251         toggle_size first.  This way we can have multiple menu-item
4252         classes w/o needing a seperate class for each.
4253
4254         * gtk/gtkmenu.c (gtk_menu_size_request): Actually use the new system.
4255         * gtk/gtkmenu.c (gtk_menu_size_allocate): Use the new system.
4256
4257         * gtk/gtkcheckmenuitem.c
4258         (gtk_check_menu_item_toggle_size_request): New function to handle
4259         the toggle size-request.
4260
4261 2000-11-07  Havoc Pennington  <hp@redhat.com>
4262
4263         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location):
4264         Half-ass somewhat fix this function, so that scrolling to the
4265         insertion point works. Pango hacking is in the future to really
4266         fix it.
4267
4268         * gtk/gtktextview.c (gtk_text_view_drag_data_get): Don't calculate
4269         length of data, no longer used.
4270
4271         * gtk/gtktextbuffer.c (gtk_text_buffer_finalize): move destroy
4272         method contents in here, get rid of destroy method
4273         (gtk_text_buffer_insert_range): Fix some g_return_if_fail checks
4274         that were backward. Remove debug spew.
4275         (cut_or_copy): Make the clipboard work with insert_range to
4276         preserve tags and pixbufs, not just the primary selection.
4277
4278 2000-11-07  Havoc Pennington  <hp@redhat.com>
4279
4280         * gtk/gtktextmark.c (gtk_text_mark_is_visible): rename 
4281         to gtk_text_mark_get_visible
4282
4283         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): fix
4284         bug that was generating an invalid iterator
4285
4286         * gtk/gtktextiter.c (gtk_text_iter_get_offset): move call to
4287         ensure_char_offsets() in front of code placing the iter in an
4288         invalid state.
4289
4290         * gtk/gtktextbuffer.c (gtk_text_buffer_paste_primary):
4291         make override_location arg const
4292         (paste): Replace the selection if we paste into the 
4293         current selection
4294
4295         * gtk/gtkselection.h: Remove "GtkSelectioData"
4296         (struct _GtkSelectionData): move the definition here.
4297
4298         * gtk/gtktextbuffer.c (gtk_text_buffer_update_primary_selection):
4299         Export the GTK_TEXT_BUFFER_CONTENTS target for in-process copies
4300
4301         * gtk/gtktextiter.c (gtk_text_iter_get_tags): New function
4302
4303         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_range): implement
4304         (gtk_text_buffer_insert_range_interactive): implement
4305         (gtk_text_buffer_get_tags): Remove, replaced by
4306         gtk_text_iter_get_tags()
4307
4308         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Add a search
4309         limit parameter, to avoid infinite linear scan.
4310         (gtk_text_iter_backward_search): Add search limit
4311         (gtk_text_iter_forward_find_char): Add search limit
4312         (gtk_text_iter_backward_find_char): Add search limit
4313
4314 2000-11-07  Alexander Larsson  <alla@lysator.liu.se>
4315
4316         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
4317         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkimage-fb.c,
4318         gdk/linux-fb/gdkpango-fb.c, gdk/linux-fb/gdkpixmap-fb.c,
4319         gdk/linux-fb/gdkwindow-fb.c:
4320         use g_object_new() instead of g_type_create_instance() which
4321         is a private function for fundamental type implementations.
4322
4323         * gdk/linux-fb/gdkinput-ps2.c:
4324         Use MEDIUMRAW instead of RAW keycodes. Remove keyboard state-table
4325         instead just store the current modifier state. Add a (somewhat broken)
4326         keyboard input parser for XLATE mode too, if we couldn't use MEDIUMRAW.
4327         Rename exported function gdk_input_ps2_get_mouseinfo to
4328         gdk_input_get_mouseinfo.
4329
4330         * gdk/linux-fb/gdkmain-fb.c, gdk/linux-fb/gdkprivate-fb.h,
4331         gdk/linux-fb/gdkwindow-fb.c:
4332         gdk_input_ps2_get_mouseinfo was renamed to gdk_input_get_mouseinfo.
4333         
4334
4335 2000-11-02  Havoc Pennington  <hp@redhat.com>
4336
4337         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
4338         use stock buttons. Should be 100% source compatible, appropriate
4339         filesel fields now point to dialog->vbox and dialog->action_area.
4340         On the bizarre side, dialog->action_area and filesel->action_area
4341         are not the same widget.
4342         (gtk_file_selection_init): Put some padding around the selection
4343         entry, so it isn't touching the GtkDialog separator.    
4344
4345         * gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog, 
4346         use stock buttons, etc. Should also be source compatible.
4347         Set the dialog default title in _init not _new().
4348         
4349         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
4350         Use stock buttons; don't put a button box inside the existing
4351         dialog button box. Don't bother with push/pop colormap anymore.
4352
4353         * gtk/gtkdialog.h (GtkResponseType): Add a bunch of more 
4354         specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
4355         for message dialog, and necessary for the font selection and color
4356         selection with help and apply buttons.
4357         
4358         * gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer 
4359         to the created button widget. Set GTK_CAN_DEFAULT on the button.
4360         (gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
4361         between buttons, put less padding around the action area.
4362         (gtk_dialog_run): Exit on unmap rather than on destroy. 
4363         This will also exit the loop if the widget is hidden.
4364         (gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
4365         instead of GTK_RESPONSE_NONE; since we're already adding a bunch
4366         of GTK_RESPONSE_* stuff, this seems cleaner, and lets you 
4367         special-case delete event.
4368
4369         * gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
4370         formatting
4371         
4372 Sun Nov  5 05:32:39 2000  Tim Janik  <timj@gtk.org>
4373
4374         * gtk/testgtk.c (uposition_stop_configure): provide a toggle
4375         button to temporarily disable position recording in the
4376         "saved position" test.
4377
4378 Sat Nov  4 05:37:17 2000  Tim Janik  <timj@gtk.org>
4379
4380         * gtk/gtkthemes.c: added compat code that temporarily implements
4381         GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
4382         going to be revamped by owen's upcoming GtkModule patches, but
4383         untill then people want gtk to build, right? ;)
4384
4385 2000-11-04  Havoc Pennington  <hp@pobox.com>
4386
4387         * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member
4388         list
4389
4390         * docs/Changes-2.0.txt: Add note about
4391         gtk_container_get_toplevels()
4392
4393         * gtk/gtktextview.h: formatting
4394         
4395         * gtk/gtktextview.c: don't start descriptions with "Returns",
4396         confuses gtk-doc
4397
4398 Sat Nov  4 10:12:27 2000  Owen Taylor  <otaylor@redhat.com>
4399
4400         * autogen.sh: When doing sanity checking on ACLOCAL_FLAGS,
4401         look for glib-2.0.m4 not glib.m4. (Ali Abdin)
4402
4403 2000-11-03  Havoc Pennington  <hp@redhat.com>
4404
4405         * gtk/gtktexttagtable.c: Docs
4406         (gtk_text_tag_table_size): return a signed int
4407
4408         * gtk/gtktexttag.c: s/tkxt/text/g; write documentation
4409         (gtk_text_tag_event): make the event_object a GObject
4410
4411         * gtk/gtktextview.c: Write API docs for all functions.
4412
4413         * gtk/gtktextview.h: add GTK_TEXT_WINDOW_PRIVATE as return value
4414         for gtk_text_view_get_window_type() called on one of the private
4415         windows.
4416
4417         * gtk/gtktextview.c: Instead of accessing text_view->buffer
4418         directly, call get_buffer() which demand-creates a default
4419         buffer. So gtk_text_view_new() can be used to create a view with a
4420         default buffer in it, if you just want an empty text box users can
4421         put data in. Useful for GUI builders also.
4422
4423 2000-11-03  Pablo Saratxaga <pablo@mandrakesoft.com>
4424
4425         * gtk/gtkrc.zh_TW.*: moved gtkrc.zh_TW.Big5 to gtkrc.zh_TW.big5;
4426         the charset encodign portion MUST be in lowercase.
4427         * gtk/gtkrc.az: added file for Azeri language
4428
4429 2000-11-03  Havoc Pennington  <hp@redhat.com>
4430
4431         Get widgets working on the btree/buffer side. Display of them 
4432         still doesn't work.
4433         
4434         * gtk/gtktextview.c: start implementing child widget stuff
4435
4436         * gtk/gtktextiter.c (gtk_text_iter_get_child_anchor): new function
4437
4438         * gtk/gtktextlayout.c: handle embedded widgets
4439
4440         * gtk/gtktextdisplay.c: handle embedded widgets
4441
4442         * gtk/gtktextchild.c: Implement all the child anchor goo
4443
4444         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor): New
4445         function
4446
4447         * gtk/gtktextbtree.c: Add child anchor table to the btree struct
4448         (insert_pixbuf_or_widget_segment): abstract out common portions of 
4449         creating a child anchor or a pixbuf segment.
4450         (gtk_text_btree_create_child_anchor): new function
4451         (gtk_text_btree_unregister_child_anchor): new function
4452
4453         * gtk/gtkmarshal.list: added VOID:OBJECT,INT,INT for the
4454         allocate_child signal on GtkTextLayout
4455
4456         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): fix bogus return
4457         values
4458         (gtk_text_iter_get_child_anchor): new function
4459
4460         * gtk/gtktextbuffer.c (gtk_text_buffer_real_changed): Add a
4461         default handler for the changed signal, which calls
4462         gtk_text_buffer_set_modified(), instead of just always emitting
4463         changed then calling set_modified() manually. I guess this is
4464         maybe more flexible. It seems logical.
4465
4466 Fri Nov  3 08:58:38 2000  Tim Janik  <timj@gtk.org>
4467
4468         * gtk/gtkobject.c: _g_signal_handlers_destroy() is prefixed with '_'
4469         now.
4470
4471         * gtk/gtksignal.c: use g_signal_connect_closure_by_id() now.
4472
4473 Thu Nov  2 14:10:51 2000  Owen Taylor  <otaylor@redhat.com>
4474
4475         * gdk/x11/gdkdnd-x11.c: Fix a bunch of functions that should have
4476         been marked static.
4477
4478 2000-11-02  Havoc Pennington  <hp@redhat.com>
4479
4480         * gtk/testgtk.c (create_labels): had a test backward
4481
4482         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Copy the client-side GC
4483         fields, so the dest GC ends up with the correct clip origin, 
4484         etc. Fixes a bug where colored labels didn't redraw 
4485         properly.
4486
4487 2000-11-02  Alexander Larsson  <alexl@redhat.com>
4488
4489         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
4490         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkpango-fb.c,
4491         gdk/linux-fb/gdkpixmap-fb.c, gdk/linux-fb/gdkwindow-fb.c:
4492         Add last argument to t_type_register_static call.
4493         
4494         * gdk/linux-fb/gdkdrawable-fb2.c:
4495         Add last argument to t_type_register_static call.
4496         export the get_image drawable virtual function.
4497
4498         * gdk/linux-fb/gdkimage-fb.c:
4499         Add last argument to t_type_register_static call.
4500         rename gtk_image_get to _gdk_fb_get_image and
4501         export it for use by gdkdrawable-fb2.
4502
4503         * gdk/linux-fb/gdkprivate-fb.h:
4504         export _gdk_fb_get_image.
4505
4506         * gdk/linux-fb/gdkselection-fb.c:
4507         Add new api call stubs.
4508
4509         * gtk/Makefile.am:
4510         Missing ( in linux-fb part.
4511
4512         * modules/linux-fb/Makefile.am:
4513         Must link with gdk_pixbuf or get unresolved symbol.
4514
4515 2000-11-01  Havoc Pennington  <hp@pobox.com>
4516
4517         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Use 
4518         GTK_TYPE_TEXT_ITER and BOXED marshallers
4519
4520         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): ditto
4521
4522         * gtk/gtktexttag.c (gtk_text_tag_class_init): ditto
4523         
4524         * gtk/gtk-boxed.defs: add GtkTextIter
4525
4526         * gtk/gtkmarshal.list: Add marshallers for text widget that 
4527         properly use OBJECT and BOXED
4528
4529 2000-11-01  Havoc Pennington  <hp@redhat.com>
4530
4531         * gtk/testgtk.c (create_labels): Test set_markup_with_accel()
4532
4533         * gtk/gtklabel.c (set_markup): Convert the unichar to a GDK keyval
4534         before returning it. 
4535         
4536 2000-11-01  Havoc Pennington  <hp@redhat.com>
4537
4538         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
4539         Clip the rectangle to be rendered to the drawable, since
4540         get_from_drawable() requires a region within the drawable
4541
4542 2000-11-01  Havoc Pennington  <hp@redhat.com>
4543
4544         * gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
4545         from coordinates.
4546
4547 Wed Oct 25 20:10:57 2000  Owen Taylor  <otaylor@redhat.com>
4548
4549         * gdk/gdkevents.c (gdk_event_copy): Only ref the window if
4550         it isn't NULL.
4551
4552 2000-11-01  Havoc Pennington  <hp@pobox.com>
4553
4554         * gtk/gtklabel.c (gtk_label_set_attributes): Set a PangoAttrList
4555         on a label
4556         (gtk_label_finalize): unref the attr list if any.
4557
4558         * gtk/testgtk.c (create_get_image): close test on second click
4559         (make_message_dialog): close dialog if it exists
4560
4561         * gdk/gdkpango.c (gdk_draw_layout): Handle rise attribute
4562
4563         * gdk-2.0.pc.in (Requires): Make it require gdk-pixbuf-2.0 not
4564         gdk-pixbuf
4565
4566         * gtk/gtklabel.c (gtk_label_set_markup): new function to set label
4567         from Pango markup format
4568         (gtk_label_set_markup_with_accel): ditto but with accelerator
4569         parsing
4570
4571         * gtk/gtkimage.c (gtk_image_expose): reformatting.
4572
4573         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable): Hack to
4574         reflect current state of GDK - use gdk_drawable_get_colormap, etc.
4575         Check GDK_IS_WINDOW() not !GDK_IS_PIXMAP() to decide whether to 
4576         call gdk_window_get_origin().
4577
4578         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
4579         implement GDK_PIXBUF_ALPHA_FULL
4580         
4581 Wed Nov  1 03:43:42 2000  Tim Janik  <timj@gtk.org>
4582
4583         * gtk/gtksignal.c (gtk_signal_compat_matched): make use of
4584         g_signal_handlers_block_matched, g_signal_handlers_unblock_matched and
4585         g_signal_handlers_disconnect_matched to block/unblock and disconnect
4586         multiple handlers respectively, instead of only treating the
4587         first handler found (bug reported by owen).
4588
4589 Mon Oct 30 19:23:50 2000  Jonathan Blandford  <jrb@redhat.com>
4590
4591         * gtk/gtktreeview.c (gtk_tree_view_expand_row): New function.
4592
4593         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): New function.
4594
4595         * gtk/gtktreeview.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c
4596         gtk/gtktreestore.h, gtk/gtktreeview.h, gtk/gtktreeviewcolumn.c,
4597         gtk/gtktreeviewcolumn.h: Fixed inline docs.
4598
4599         * docs/reference/gtk/tree_widget.sgml: Proto intro to the tree
4600         widget.  Needs writing someday.
4601
4602         * docs/reference/gtk/tmpl/gtktree*sgml: Added the tree widget to
4603         the docs.
4604
4605 2000-10-30  Havoc Pennington  <hp@redhat.com>
4606
4607         * gtk/gtktextview.h, gtk/gtktextview.c:
4608         Rename delete_at_cursor delete_from_cursor, and 
4609         move to move_cursor.
4610
4611 2000-10-30  Havoc Pennington  <hp@redhat.com>
4612
4613         * gtktextbtree.c, gtktextbtree.h, gtktextbuffer.c,
4614         gtktextbuffer.h, gtktextchild.c, gtktextchild.h,
4615         gtktextchildprivate.h, gtktextdisplay.c, gtktextdisplay.h,
4616         gtktextiter.c, gtktextiter.h, gtktextiterprivate.h,
4617         gtktextlayout.c, gtktextlayout.h, gtktextmark.c, gtktextmark.h,
4618         gtktextmarkprivate.h, gtktextsegment.c, gtktextsegment.h,
4619         gtktexttag.c, gtktexttag.h, gtktexttagprivate.h,
4620         gtktexttagtable.c, gtktexttagtable.h, gtktexttypes.c,
4621         gtktexttypes.h, gtktextview.c, gtktextview.h:
4622
4623         Massive reindentation and reformatting. Arg alignment and comments
4624         still need fixing in various places.
4625
4626 2000-10-30  Havoc Pennington  <hp@redhat.com>
4627
4628         * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals
4629         to be named insert_at_cursor and delete_at_cursor so C++ can
4630         handle them.
4631
4632 2000-10-28  Tor Lillqvist  <tml@iki.fi>
4633
4634         * gtk/gtkrc.c (gtk_rc_append_default_module_path): Make sure not
4635         to get a double directory separator in case the home directory
4636         ends with one. This would cause trouble especially on Windows,
4637         where the path will be confused with the syntax for an an UNC
4638         (network share) path \\server\share\path.
4639         (gtk_rc_add_initial_default_files): Ditto.
4640
4641 Sat Oct 28 02:33:09 2000  Robert Brady  <robert@suse.co.uk>
4642
4643         * gtk/gtkmarshal.list: add new marshallers for GtkTextView.
4644
4645         * gtk/gtktextview.c: Use correct marshallers.
4646
4647 Fri Oct 27 17:56:26 2000  Jonathan Blandford  <jrb@redhat.com>
4648
4649         * gtk/gtkliststore.c: Not sure how this ever worked.  Fixed it to
4650         use new iter stuff, and added all the appropriate signals et al.
4651
4652         * gtk/gtktreedatalist.h: s/gtk/_gtk to further reinforce that this
4653         code is internal to gtk only.
4654
4655 2000-10-28  Tor Lillqvist  <tml@iki.fi>
4656
4657         * gtk/gtk.def
4658         * gtk/makefile.{mingw,msc}.in: Adjust to Tim's changes. Use
4659         glib-genmarshal etc.
4660
4661 Fri Oct 27 20:15:00 2000  Tim Janik  <timj@gtk.org>
4662
4663         * gtk/Makefile.am: added dependancies for testtextbuffer which broke
4664         parallel builds.
4665
4666 Fri Oct 27 18:51:44 2000  Tim Janik  <timj@gtk.org>
4667
4668         * gtk/gtksignal.[hc]: adapt to GSignal signature changes.
4669
4670 2000-10-27  Robert Brady  <robert@suse.co.uk>
4671
4672         * configure.in (ALL_LINGUAS): Add en@IPA (English, phonetic), 
4673         en_GB (British), ia (Interlingua).
4674
4675 2000-10-26  Havoc Pennington  <hp@redhat.com>
4676
4677         * gtk/gtktextiter.c (my_strrstr): fix constness warning
4678
4679         Fixed output of:
4680         nm -g -l .libs/libgtk-x11-1.3.so | grep ' T ' | grep -v gtk_ | grep -v GTK_
4681         
4682         * gtk/gtktextsegment.c (char_segment_new): rename
4683         (_char_segment_new_from_two_strings): rename
4684         (_toggle_segment_new): rename
4685         
4686         * gtk/gtkclipboard.c (ensure_clipboard_widget): make this static
4687         (make_clipboard_widget): make it static
4688         (text_get_func): static
4689         (text_clear_func): static
4690
4691         * gtk/gtkcolorsel.c (adjustment_changed): make this function
4692         static
4693         (hex_changed): make it static
4694         (hsv_changed): make it static
4695         (opacity_entry_changed): make it static
4696
4697         * gtk/gtktextbtree.c (change_node_toggle_count): rename with _gtk
4698         (toggle_segment_check_func): rename with _gtk
4699
4700         * gtk/gtktextchild.c (_pixbuf_segment_new): rename with _gtk
4701         (_widget_segment_new): rename
4702         (_widget_segment_add): rename
4703         (_widget_segment_remove): rename
4704         (_widget_segment_ref): rename
4705         (_widget_segment_unref): rename
4706
4707         * gtk/gtktextmark.c (_mark_segment_new): Rename
4708         _gtk_mark_segment_new   
4709
4710 2000-10-26  Havoc Pennington  <hp@redhat.com>
4711
4712         * gtk/gtkmarshal.list: add new marshallers used by the text widget
4713         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
4714         types
4715
4716         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
4717         marshaller types
4718
4719         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
4720         gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
4721         license on these files.
4722
4723         * gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
4724         work.
4725
4726         * gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to 
4727         runtime random number different for each tree, instead of 
4728         a constant I made up.
4729
4730 Thu Oct 26 07:36:16 2000  Tim Janik  <timj@gtk.org>
4731
4732         * gtk/Makefile.am: buncha cleanups, kludged build sources
4733         dependencies with a Makefile: oldest-source-stamp dependancy
4734         for the moment. automake is really fighting us here, with
4735         intentionally not allowing user-defined rules or dependancies
4736         prior to it's -include $(DEP_FILES) statement. sucks rocks!
4737
4738         * gtk/Makefile.am: added gtktextlayout.h and gtktextdisplay.h
4739         to public headers. tehy have a comment stating that they are
4740         "semi-public" aren't included by gtk.h and if enums popup there,
4741         they can be /*< skip >*/-ed.
4742
4743         * gtk/gtktextlayout.h: 
4744         * gtk/gtktextdisplay.h: indentation fixes, comment fixes,
4745         added LGPL... <SIGH>
4746
4747 Wed Oct 25 20:40:25 2000  Jonathan Blandford  <jrb@redhat.com>
4748
4749         * gtk/gtktreemodel.h: Got rid of GtkTreeNode, and changed it to
4750         GtkTreeIter.  Added iterators everywhere.
4751
4752         * gtk/gtktreeviewcolumn.c: Changed to use the iterators.
4753
4754         * gtk/gtktreeviewselection.c: Changed to use the iterators.
4755
4756         * gtk/gtktreestore.c: Changed to use the iterators.
4757
4758         * gtk/gtkliststore.c: Commented out the code.  Will convert to
4759         iterators tomorrow.
4760
4761         * gtk/gtkmodelsimple.c: Commented out the code.  Will convert to
4762         iterators tomorrow.
4763
4764         * gtk/treestoretest.c: Changed to use iterators.
4765
4766         * demos/testgtk/main.c: Moved to use the new iterator system.
4767
4768 Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>
4769
4770         * gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
4771         localization misbehaviour.
4772
4773         * gtk/gtk-boxed.defs: nuked "boxed" type GtkCTreeNode, since it's
4774         a useless type without copy/free.
4775
4776         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_TYPE_POINTER instead
4777         of GTK_TYPE_CTREE_NODE.
4778
4779 Thu Oct 26 00:51:52 2000  Tim Janik  <timj@gtk.org>
4780
4781         * gtk/gtksignal.c:
4782         (gtk_signal_emitv): use g_value_set_static_{string|boxed} where
4783         applicable.
4784
4785         * gtk/gtk-boxed.defs (GtkSelectionData): specify
4786         gtk_selection_data_copy and gtk_selection_data_free
4787         do GtkSelectionData work as params in signals.
4788
4789 Wed Oct 25 20:47:41 2000  Tim Janik  <timj@gtk.org>
4790
4791         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
4792         implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
4793         couldn't they at least give it a non-standard name?
4794         
4795         * gtk/gtktextlayout.c: arg! yet another implementation of
4796         gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
4797
4798         * gtk/gtktextbuffer.c: gotcha! captured a vagabonding
4799         gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
4800         home. now i know this _is_ a conspiracy.
4801
4802         * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
4803         ::state-changed.
4804
4805         * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): 
4806         (gtk_accel_group_create_add): marshaller signature fixups.
4807
4808         * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
4809         pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
4810
4811         * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
4812         anymore.
4813
4814 Tue Oct 24 23:59:21 2000  Tim Janik  <timj@gtk.org>
4815
4816         * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
4817         due to the signal system changes, it wouldn't build currently. to
4818         be fixed soon.
4819
4820         * docs/Changes-2.0.txt: GtkSignal/GSignal updates.
4821
4822         * gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
4823         so it needs gtk_marshal_VOID__ENUM() instead of
4824         gtk_marshal_NONE__UINT().
4825
4826         * gdk/gdk*.c: adapted type registration functions.
4827
4828         * gtk/gtkbindings.c:
4829         * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
4830         gone.
4831
4832         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
4833
4834         * gtk/gtkobject.c:
4835         (gtk_object_destroy):
4836         (gtk_object_shutdown): fixed recursion guards. basically we have to
4837         catch the case where any of GObject.shutdown() or gtk_object_destroy()
4838         is called during ::destroy, and avoid recursion there.
4839
4840         * gtk/gtktypeutils.c:
4841         * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
4842         boxed_copy/boxed_free. this needs a more general solution based on a
4843         publically installed code-generator utility.
4844
4845         * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
4846         glib's gobject has support for that now.
4847         define GtkSignalMarshaller in terms of GSignalCMarshaller.
4848
4849 Mon Oct 23 09:36:42 2000  Tim Janik  <timj@gtk.org>
4850
4851         * gtk/gtksignal.[hc]:
4852         * gtk/gtkmarshal.[hc]:
4853         * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
4854         compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
4855         removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
4856         care of that.
4857
4858         * *.c: marshaller name fixups.
4859
4860         * gtk/gtkmarshal.list: added a comment briefing the format.
4861
4862 Sun Oct 22 23:14:39 2000  Tim Janik  <timj@gtk.org>
4863
4864         * gtk/gtksignal.[hc]: nuked old implementation. we mostly have
4865         compatibility macros here now. more specifically, most of
4866         the API is preserved (yes, _most_, nonwithstanding the
4867         following exceptions listed, the API is stil lHUGE ;)
4868         things that got removed completely:
4869         GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
4870         gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
4871         gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
4872         gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
4873         gtk_signal_remove_emission_hook().
4874         non-functional functions variants:
4875         gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
4876         the GtkCallbackMarshal argument to gtk_signal_connect_full() is
4877         not supported anymore.
4878         (gtk_signal_compat_matched): new internal function to aid
4879         implementation of the compatibility macros, it  provides
4880         functionality to block/unblock/disconnect handlers based
4881         on func/data.
4882
4883         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
4884
4885         * *.c: adaptions to new type registration API signatures.
4886
4887 Fri Oct 20 15:26:33 2000  Tim Janik  <timj@gtk.org>
4888
4889         * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
4890
4891 2000-10-25  Robert Brady  <robert@suse.co.uk>
4892
4893         * gdk/x11/gdkproperty-x11.c (gdk_property_get, gdk_property_change,
4894         gdk_property_delete): If window == NULL, assume the root window.
4895         (restoring the behaviour that was in 1.2).
4896         
4897         * gtk/testtext.c (save_buffer): Allow creation of new files when
4898         saving.
4899
4900         (fill_file_buffer): Don't die if a UTF-8 sequence is split across
4901         calls to read().
4902
4903 2000-10-25  Tor Lillqvist  <tml@iki.fi>
4904
4905         * gdk/gdkwindow.c: Include x11/gdkx.h only when building for X11.
4906
4907         * gdk/win32/gdkdrawable-win32.c
4908         * gdk/win32/gdkimage-win32.c
4909         * gdk/win32/gdkprivate-win32.h: Corresponding changes as in the
4910         X11 backend.
4911
4912         * gdk/win32/gdkcc-win32.c
4913         * gdk/win32/gdkcolor-win32.c
4914         * gdk/win32/gdkfont-win32.c
4915         * gdk/win32/gdkinput-win32.c
4916         * gdk/win32/gdkmain-win32.c
4917         * gdk/win32/gdkproperty-win32.c: Silence gcc -Wall.
4918
4919 2000-10-24  Havoc Pennington  <hp@redhat.com>
4920
4921         * gtk/gtktextview.c (gtk_text_view_scroll_to_mark_adjusted): make
4922         it a static function
4923
4924         * gtk/gtktextbtree.c (gtk_text_btree_tag): Gee, maybe we should
4925         redraw text when a tag is applied to it.
4926
4927         * gtk/gtktexttag.c (gtk_text_tag_affects_size)
4928         (gtk_text_tag_affects_nonsize_appearance): private functions to
4929         see if a tag requires various kinds of redraw/layout to be queued
4930         up.
4931
4932         * gtk/gtktexttag.h (struct _GtkTextTag): Remove relief crackrock
4933
4934         * gtk/testtext.c (fill_example_buffer): Put the cursor 
4935         at the start of the buffer, so search works by default
4936
4937         * gtk/gtktextiter.c (lines_match): init match_start always
4938
4939         * gtk/gtktextbuffer.c (gtk_text_buffer_get_iter_at_line_index): New
4940         function, get iter at a line + a byte index
4941
4942         * gtk/gtktextiter.c (gtk_text_iter_set_line_index): New function,
4943         to set byte position within a line
4944         (gtk_text_iter_check): remove leftover G_BREAKPOINT thing
4945
4946 2000-10-23  Havoc Pennington  <hp@redhat.com>
4947
4948         * gtk/testtext.c: Re-enable the "find" dialog
4949
4950         * gtk/testgtk.c: Add test for gdk_drawable_get_image
4951         
4952         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix bug where
4953         the arguments to gdk_draw_drawable were in the wrong order
4954         (gdk_window_paint_init_bg): This function was ignoring the
4955         init_region, instead of clipping to it, so the entire backing
4956         pixmap was cleared on every begin_paint()
4957         (gdk_window_begin_paint_region): Hmm, the same list-walking bug
4958         was in here again, the loop kept using the same GtkWindowPaint
4959         over and over.
4960         (gdk_window_begin_paint_region): Fix a bug where we had two
4961         x_offset instead of x_offset and y_offset
4962
4963         * gdk/gdkdraw.c (gdk_drawable_get_image): get composite drawable
4964         before we get the image.
4965         (gdk_draw_drawable): get the composite before we draw the drawable.
4966         (gdk_drawable_real_get_composite_drawable): default
4967         get_composite_drawable implementation that returns the drawable 
4968         itself
4969
4970         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Add
4971         get_composite_drawable virtual function
4972
4973         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix a cheesy
4974         list-walking bug
4975
4976         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable): Add a hack to
4977         make this work if the source drawable is a GdkDrawableImplX11
4978         instead of a public drawable type. This is really broken; the
4979         problem is that GdkDrawable needs a virtual method get_xid(), but
4980         of course that doesn't work in practice. Enter RTTI.
4981
4982         Also, improve mismatched depth message.
4983
4984         * gdk/gdkpixmap.c (gdk_pixmap_get_image): Implement get_image for
4985         GdkPixmap
4986
4987         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_class_init):
4988         install _gdk_x11_get_image as our implementation of get_image
4989         
4990         * gdk/x11/gdkimage-x11.c (gdk_image_get): Rename to
4991         _gdk_x11_get_image and export for use in gdkdrawable-x11.c
4992
4993         * gdk/gdkimage.c (gdk_image_get): Make this just a wrapper around
4994         gdk_drawable_get_image
4995
4996         * gdk/gdkdraw.c (gdk_drawable_get_image): call virtual get_image
4997
4998         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Virtualize
4999         get_image
5000
5001         * gtk/gtktreestore.c (gtk_tree_store_get_node): remove weird
5002         trailing semicolon after for loop
5003
5004 Mon Oct 23 12:07:57 2000  Owen Taylor  <otaylor@redhat.com>
5005
5006         * gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
5007         where font_desc for widget's context lagged widget's font_desc by
5008         one step.
5009
5010 2000-10-22  Tor Lillqvist  <tml@iki.fi>
5011
5012         * gdk/win32/gdkgc-win32.c
5013         * gdk/win32/gdkimage-win32.c: Remove gcc -Wall warnings.
5014
5015         * gtk/makefile.mingw.in
5016         * gtk/gtk.def: Updates.
5017
5018         * gtk/testgtk.c: sleep() is called _sleep in MS's C
5019         library.
5020
5021         * gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
5022
5023         * gtk/makefile.msc: Remove
5024
5025         * gtk/makefile.msc.in: New file, like makefile.mingw.in.
5026
5027         * gtk/Makefile.am: Add it.
5028
5029         * configure.in: Generate it.
5030
5031         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
5032         * gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
5033         something even if not implemented, to satisfy picky MSVC.
5034
5035         Patches by Hans Breuer:
5036         
5037         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_glyphs): Call
5038         SetBkMode() and SetTextAlign() before calling
5039         pango_win32_render().
5040
5041         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values):
5042         Set hcliprgn to NULL after destroying it.
5043         (gdk_gc_set_clip_rectangle): Delete hcliprgn and set to NULL.
5044
5045         * gdk/win32/gdkgeometry-win32.c
5046         (_gdk_windowing_window_queue_antiexpose): More effective
5047         implementation.
5048
5049         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use drawable's
5050         depth as default, not the visual's.
5051
5052         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Guard
5053         against empty title.
5054
5055         * gdk/win32/gdkprivate-win32.h: Define a helper macro,
5056         IMAGE_PRIVATE_DATA.
5057
5058         * gdk/win32/gdkimage-win32.c: Use it.
5059
5060 2000-10-22  Robert Brady  <robert@suse.co.uk>
5061
5062         * configure.in: Check for bind_textdomain_codeset
5063
5064         * gtk/gtkmain.c (gtk_init_check): If bind_textdomain_codeset 
5065         present, make use of it.
5066
5067         Add a translatable string "default:LTR" which, if translated
5068         to "default:RTL", will cause the default direction to be
5069         Right-to-Left.
5070
5071         * gtk/gtkrange.h, gtk/gtkrange.c: Take into account the widget 
5072         direction if marked as flippable.
5073
5074         * gtk/gtkhscale.c: Mark widget as flippable.
5075         
5076 2000-10-04  Havoc Pennington  <hp@redhat.com>
5077
5078         * gtk/testgtk.c (create_buttons): create some stock buttons
5079         with the default accel group
5080         (create_image): test some new GtkImage features
5081         (make_message_dialog): test GtkMessageDialog
5082         (create_modal_window): fix someone's bizzarro indentation
5083
5084         * gtk/gtkwindow.h, gtk/gtkwindow.c: Implement 
5085         GTK_WIN_POS_CENTER_ON_PARENT. 
5086         Add "destroy with parent" setting, which means the window goes
5087         away with its transient parent.
5088         (gtk_window_get_default_accel_group): get the default accel group
5089         for the window.
5090         (gtk_window_set_destroy_with_parent): set/unset destroy with
5091         parent flag
5092         (gtk_window_read_rcfiles): invalidate icon set caches
5093         after reloading rcfiles 
5094
5095         * gtk/gtkenums.h (GtkWindowPosition): add
5096         GTK_WIN_POS_CENTER_ON_PARENT, which centers a dialog 
5097         on its parent window when the dialog is mapped for the first time.
5098
5099         * gtk/gtkmessagedialog.h, gtk/gtkmessagedialog.c: Add 
5100         a simple message dialog class
5101         
5102         * gtk/gtkdialog.c (gtk_dialog_init): Connect delete event 
5103         handler to emit response signal, and maybe later it would
5104         honor a hide_on_delete flag - though that isn't there yet.
5105         Set border width on the vbox to 2, so we get some padding.      
5106         Use a button box for the action area.
5107         (gtk_dialog_key_press): synthesize a delete event if Esc
5108         is pressed and the GtkWidget key press handler didn't 
5109         handle the escape key.
5110         (gtk_dialog_new_with_buttons): new function creates a dialog
5111         with some default buttons in it.
5112         (gtk_dialog_add_action_widget): add an activatable widget
5113         as a button in the dialog - you can also add a non-activatable
5114         widget by accessing the action area directly.
5115         (gtk_dialog_add_button): add a simple button - stock ID or 
5116         label - to the action area
5117         (gtk_dialog_response): emit response signal
5118         (gtk_dialog_run): block waiting for the dialog, return 
5119         the response. Override normal delete_event behavior, so that 
5120         delete_event does nothing inside gtk_dialog_run().
5121
5122         * gtk/gtkdialog.h, gtk/gtkdialog.c: Add "response" signal
5123         emitted when an action widget is clicked or the dialog gets
5124         delete_event
5125
5126         * gtk/gtk.h: add gtkmessagedialog.h
5127
5128         * gtk/Makefile.am: add gtkmessagedialog.[hc]
5129
5130 2000-10-18  Havoc Pennington  <hp@redhat.com>
5131
5132         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): Fix a bug 
5133         where any number of empty lines would get skipped
5134
5135         * gtk/gtktextiter.h: Remove padding from GtkTextIter; live on the
5136         edge.
5137
5138         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): enhance the
5139         warning about invalid iterators (explain more thoroughly)
5140         (gtk_text_iter_in_region): rename gtk_text_iter_in_range
5141
5142         * gtk/gtktextview.c (FOCUS_EDGE_WIDTH): Make focus rectangle less
5143         big
5144
5145         * demos/*.c: Add error handling
5146
5147         * gtk/gtktextbuffer.c: don't modify const iterators
5148
5149         * gtk/gdk-pixbuf-loader.c: Add full error handling here
5150
5151         * gtk/gtkimage.c (gtk_image_set_from_file): ignore errors
5152         on file load
5153
5154         * gtk/gtkiconfactory.c: Update to reflect addition of error
5155         handling to gdk-pixbuf loaders
5156
5157 Wed Oct 18 11:14:05 2000  Owen Taylor  <otaylor@redhat.com>     
5158
5159         * configure.in demos/Makefile.am demos/testgtk/*: Start of work to
5160         move to new modularized testgtk.
5161
5162 2000-10-17  Jonathan Blandford  <jrb@redhat.com>
5163
5164         * gtk/gtktreeview.c: Draw the arrows correctly.
5165
5166         * gtk/gtktreemodel.c: Added user docs.
5167
5168         * gtk/gtk.h: remove gtktreedatalist.h.
5169
5170         * gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
5171         parent when generating my type.
5172
5173         * gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
5174         POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
5175
5176 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
5177
5178         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move
5179         GtkTreeModel from object to interface.
5180
5181 2000-10-16  Havoc Pennington  <hp@redhat.com>
5182
5183         * gtk/gtktreeviewcolumn.c: #include gtklabel.h, fixing 
5184         compilation
5185
5186 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
5187
5188         * gtk/gtktreeselection.c: Add API documentation to all public
5189         functions.
5190
5191         * gtk/gtktreeviewcolumn.c: Added API documentation to all public
5192         functions.
5193
5194 2000-10-15  Jonathan Blandford  <jrb@redhat.com>
5195
5196         * gtk/gtktreeview.c (gtk_tree_view_insert_column): New function
5197         proposed by Guy Harris <gharris@flashcom.net>.  Also, added API
5198         docs to all public functions.
5199
5200         * gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
5201         gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
5202         gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
5203         gtk/gtktreemodel.h, gtk/gtktreeselection.c,
5204         gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
5205         issue.
5206
5207 2000-10-14  Robert Brady  <robert@suse.co.uk>
5208
5209         * configure.in: Added "fa" (Persian) to ALL_LINGUAS.
5210
5211 2000-10-12  Jonathan Blandford  <jrb@redhat.com>
5212
5213         * gtk/gtktreedatalist.[ch] (gtk_tree_data_list_value_to_node): Added
5214         values other then G_TYPE_STRING.
5215         * gtk/gtktreeselection.c: Minor commenting updates.
5216         * gtk/gtktreeview.c: Format updates.
5217
5218 2000-10-09  Tor Lillqvist  <tml@iki.fi>
5219
5220         * README.win32: Update.
5221
5222         * gdk/win32/gdkgeometry-win32.c (gdk_window_clip_changed): Add two
5223         lines that had been deleted by mistake (?).
5224
5225         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Handle
5226         also the case fg==white and bg==black (but still not randomly
5227         coloured cursors). Thanks to Wolfgang Sourdeau.
5228
5229         * gdk/win32/*.c: Silence gcc -Wall.
5230
5231         * gtk/gtk.def: Add missing entry points.
5232
5233         Fixes by Hans Breuer:
5234
5235         * gdk/makefile.msc
5236         * gdk/win32/makefile.msc: Update.
5237
5238         * gdk/testgdk.c: If compiling with debugging (with _DEBUG defined,
5239         some MSVC thing, presumably), cause breakpoint on failures. Add
5240         GDK_NOR case. Call g_log_set_always_fatal.
5241
5242         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_insert): Handle
5243         should be pased by reference.
5244         
5245         * gdk/win32/gdkprivate-win32.h: Correct declaration accordingly.
5246         
5247         * gdk/win32/*.c: Correct calls to gdk_win32_handle_table_insert.
5248
5249         * gdk/win32/gdkevents-win32.c
5250         * gdk/win32/gdkwindow-win32.c: Handle WM_CREATE.
5251
5252         * gdk/win32/gdkgc-win32.c: Fix mixups of drawable and
5253         implementation object.
5254
5255         * gdk/win32/gdkimage-win32.c (gdk_image_get): Handle drawables,
5256         not just windows.
5257         
5258         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize):
5259         Use the wrapper object.
5260         
5261 2000-10-06  Havoc Pennington  <hp@redhat.com>
5262
5263         * Makefile.am (SRC_SUBDIRS): contrib subdir
5264
5265         * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library,
5266         so it can be used in Xlib version
5267
5268         * demos/testpixbuf.c (update_timeout): error checking from 1.0
5269         tree
5270
5271         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync
5272         change from 1.0 tree that returns first frame of animation
5273         if the loaded file is an animation.
5274
5275         * contrib: add new directory to hold stuff that comes with GTK+
5276         but isn't really part of GTK+ (for now, gdk-pixbuf-xlib)
5277         
5278         * configure.in: add contrib/*
5279
5280 2000-10-05  Havoc Pennington  <hp@redhat.com>
5281
5282         * demos/testpixbuf-save.c: add pixbuf save test
5283
5284         * demos/Makefile.am: add testpixbuf-save.c
5285
5286 2000-10-05  Jonathan Blandford  <jrb@redhat.com>
5287
5288         * gtk/gtktree.h (GTK_TREE_SELECTION): Replaced with
5289         GTK_TREE_SELECTION_OLD to prevent conflict with gtktreeselection.c
5290         * gtk/testgtk.c: s/GTK_TREE_SELECTION/GTK_TREE_SELECTION_OLD/
5291         * gtk/gtktreeselection.[ch]: Replaced
5292         "node_selected"/"node_unselected" signal with "selection_changed"
5293         signal.
5294
5295 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
5296
5297         * gtk/gtk{tree,cell}?*.[ch]: Checked in initial draft of the new
5298         tree widget.
5299
5300 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
5301
5302         * gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
5303         drawing.
5304
5305 Wed Oct  4 15:52:15 2000 Owen Taylor  <otaylor@redhat.com>
5306
5307         * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
5308         Move list pointer forwards before removing item from
5309         list. (Crash reported by Salmaso Raffaele)
5310
5311         * gdk/gdkwindow.h: Remove spurious trailing ,
5312
5313         * gdk/Makefile.am (LDFLAGS): You can't do interlibrary
5314         dependencies on uninstalled libraries, sorry folks.
5315
5316 2000-10-04  Havoc Pennington  <hp@redhat.com>
5317
5318         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
5319         gtk/gtkiconfactory.c: Fix copyrights    
5320
5321         * demos/testpixbuf.c: add inline pixbuf test
5322         
5323 Mon Sep 25 15:05:17 2000  Owen Taylor  <otaylor@redhat.com>
5324
5325         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c (gdk_window_iconify):
5326         Add gdk_window_iconify.
5327
5328         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c
5329         (gdk_window_set_geometry_hints): Add win_gravity
5330         to geometry structure.
5331
5332         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
5333         Implement _NET_WM_PING.
5334
5335         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check):
5336         Set _NET_WM_PID on the client leader.
5337
5338         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_name):
5339         Handle UTF-8 better.
5340
5341         * gdk/x11/gdkwindow-x11.c (gdk_window_set_title): Handle
5342         UTF-8 better, set _NET_WM_NAME as well. Only set
5343         icon name if it hasn't previously been explicitely 
5344         set.
5345
5346 2000-10-03  Havoc Pennington  <hp@redhat.com>
5347
5348         * gtk/testtextbuffer.c: clean up trailing whitespace,
5349         add extensive tests for tag toggle iteration.
5350         
5351         * gtk/gtktextiter.c (MAX_LINEAR_SCAN): decrease linear scan 
5352         distance
5353
5354         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
5355         optimize case where the tag root is on level 1
5356         (gtk_text_line_previous_could_contain_tag): attempt to implement
5357         (gtk_text_line_next_could_contain_tag): Abstract out node_compare
5358         functionality
5359
5360         * gtk/gtktextiter.c (gtk_text_iter_backward_to_tag_toggle):
5361         Implement this, though not very efficiently.
5362
5363         * gtk/gtktextiterprivate.h: reformat
5364
5365         * gtk/gtktextiter.c (gtk_text_iter_get_char): return 0 on the end
5366         iterator
5367
5368         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_interactive): Fix
5369         this to properly revalidate the iterators.
5370
5371         * gtk/gtktextview.c (gtk_text_view_delete): fix control-K to work
5372         properly at the end of the line (and therefore on empty lines)
5373
5374         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Gee,
5375         maybe we should return a value...
5376
5377 2000-10-03  Tor Lillqvist  <tml@iki.fi>
5378
5379         * config.h.win32: Guard definition of alloca(). glib.h now handles
5380         that.
5381
5382         * gdk/gdk.def
5383         * gtk/gtk.def: Add new entry points.
5384
5385         Changes just to make GTK+ build without errors on Win32. No hope
5386         of it working in its current state, though...:
5387         
5388         * gdk/win32/gdkselection-win32.c: Remove gcc -Wall warnings.  Add
5389         some functions from the X11 backend, just to make GTK+ build.
5390
5391         * gdk/makefile.mingw.in
5392         * gtk/makefile.mingw.in: Use correct gdk_pixbuf version
5393         number. Add new object files.
5394
5395         * gtk/gtkclipboard.c: Include gdkwin32.h on Win32. Use
5396         GetMessageTime to get timestamp (where on X11 uses
5397         gdk_x11_get_server_time()).
5398
5399 2000-10-02  Havoc Pennington  <hp@pobox.com>
5400
5401         * gtk/gtktextview.c: text_window_* weren't static and should have
5402         been.
5403         Start work on child widgets; not yet complete, syncing to 
5404         office computer.
5405
5406         * gtk/gtktextchild.h: change this to contain a public interface,
5407         starting work on child interfaces.
5408         * gtk/gtktextchildprivate.h: move private interfaces here
5409
5410         * gtk/Makefile.am: update to reflect gtktextchildprivate.h
5411
5412         * gtk/gtktextview.h, gtk/gtktextview.c, gtk/gtktextbuffer.h,
5413         gtk/gtktextbuffer.c, gtk/gtktextiter.h, gtk/gtk/textiter.c, 
5414         gtk/gtktextmark.c: copyright notices
5415
5416         * gtk/gtktextmarkprivate.h: reformat, and put _ in front of
5417         internal functions      
5418
5419         * gtk/gtktextchild.c (_pixbuf_segment_new): put _ in front of
5420         internal function
5421
5422         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
5423         Reformatting    
5424
5425 2000-09-30  Havoc Pennington  <hp@pobox.com>
5426
5427         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Handle
5428         NULL start/end pointers
5429
5430         * gtk/gtktextbuffer.c: Write some docs
5431         (gtk_text_buffer_get_selection_bounds): Allow start/end to be
5432         NULL, so you can just check whether there's a selection.        
5433
5434         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): No need to 
5435         cleanup_line or segments_changed ourselves, it gets done 
5436         in unlink_segment
5437
5438         * gtk/gtktextmark.h:
5439         s/gtk_text_mark_deleted/gtk_text_mark_get_deleted/
5440         
5441         * gtk/gtktextsegment.h: Clean up some indentation and naming mess
5442
5443         * gtk/gtktextmark.c: delete some more old Tk cruft
5444
5445         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_mark): add ref to
5446         mark before removing it, so we can emit MARK_DELETED with a valid
5447         pointer.
5448         (gtk_text_buffer_mark_set): hold ref across signal emission
5449
5450         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): improve
5451         whining about attempts to delete special marks
5452
5453         * gtk/gtktextbuffer.c (_gtk_text_buffer_spew): Prepend with
5454         underscore, since it's internal.
5455
5456         * gtk/gtktextbuffer.h: Remove find_string prototype, this is 
5457         now implemented in terms of iterators in gtktextiter.h
5458
5459         * gtk/gtktextbuffer.c (gtk_text_buffer_set_text): 
5460         New function, destructively sets contents of buffer. Also 
5461         a convenient way to clear the buffer by setting text to ""
5462
5463         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): reformat
5464         multiline string literal
5465
5466         * gtk/testtext.c (text_changed_callback): Redraw line numbers if
5467         text changes.
5468
5469         * gtk/gtktextiter.c (forward_char): Return FALSE if new location 
5470         is not dereferenceable
5471         (gtk_text_iter_forward_lines): fix return value
5472
5473 2000-09-29  Havoc Pennington  <hp@redhat.com>
5474
5475         * gtk/gtktexttag.c (gtk_text_tag_set_priority): fix indentation
5476
5477         * gtk/gtktextview.c: Implement drag thresholding; change functions 
5478         that set border window size to have nicer name
5479         (gtk_text_view_mark_set_handler):  Fix this to have the 
5480         right signature.
5481
5482         * gtk/testtextbuffer.c (fill_buffer): Update with pixbuf changes
5483
5484         * gtk/testtext.c: Update with API changes, put line numbers on 
5485         both sides.
5486         
5487         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): Replace get_pixmap
5488         with this
5489
5490         * gtk/gtktextchild.h, gtk/gtktextchild.c: replace all pixmap with
5491         pixbuf; delete a big block of #if 0 Tk code
5492
5493         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_pixbuf): Replace 
5494         insert_pixmap with insert_pixbuf
5495
5496 2000-09-29  Martin Baulig  <baulig@suse.de>
5497
5498         * gdk-pixbuf.pc.in: Renamed to gdb-pixbuf-2.0.pc.in to avoid
5499         confusion with the GdkPixbuf of the GNOME 1.x platform.
5500
5501 2000-09-29  Havoc Pennington  <hp@pobox.com>
5502
5503         * gtk/gtktextview.c: Implement the side windows.
5504
5505         * gtk/testtext.c: Implement simple line numbering in the 
5506         left side window; seems to make scrolling sloooow. Oops.
5507         Also, cursor blink is for some reason causing redraws
5508         of the line numbers. Should investigate...
5509
5510 2000-09-28  Havoc Pennington  <hp@redhat.com>
5511
5512         * gtk/gtktextview.c: Set up infrastructure to deal with lots of 
5513         scrolling child windows, and draw focus rectangle properly.
5514         
5515         (gtk_text_view_buffer_to_window_coords):
5516         Coordinate transformation to deal with all these freaking windows
5517         and offsets
5518         (gtk_text_view_window_to_buffer_coords): transform the other way
5519
5520         * gtk/testtext.c (create_buffer): Update to match Pango API change
5521
5522         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Go over the
5523         anonymous tags
5524         (foreach_unref): don't emit remove signal from finalize, just
5525         set tag's parent to NULL
5526
5527 2000-09-26  Havoc Pennington  <hp@redhat.com>
5528
5529         * gtk/gtkiconfactory.c (gtk_icon_set_clear): remove
5530         Fix some warnings       
5531
5532 2000-09-26  Havoc Pennington  <hp@redhat.com>
5533
5534         * gtk/Makefile.am (gtk_private_h_sources): Move more text widget
5535         headers into the private header list
5536
5537         * Makefile.am (pkgconfig_DATA): install pkg-config files
5538
5539         * configure.in: add pkg-config files
5540
5541         * gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
5542
5543         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
5544         outstanding icon caches on theme change.
5545
5546         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three 
5547         important types:
5548
5549         (GtkIconSource): Specification for creating a pixbuf 
5550         appropriate for a direction/state/size triplet from 
5551         a source pixbuf or filename
5552
5553         (GtkIconSet): List of GtkIconSource objects that are used to
5554         create the "same" icon (e.g. an OK button icon), and cache for
5555         rendered icons
5556
5557         (GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
5558         up the icon set for a given stock ID.  GTK maintains a stack of
5559         GtkIconFactory to search, and applications or libraries can add
5560         additional icon factories on top of the stack
5561         
5562         * gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse 
5563         the set of GtkIconSource specified for a given stock ID into 
5564         a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the 
5565         RcStyle, under the specified stock ID.
5566
5567         * gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
5568         render_icon used to derive a GdkPixbuf from a GtkIconSource.
5569         This allows people to theme how prelight, insensitive, etc. are
5570         done.
5571
5572         (gtk_style_lookup_icon_set): Look up a stock ID in the list of
5573         icon factories for a style, and return the resulting 
5574         icon set if any.
5575
5576         (gtk_style_render_icon): Render an icon using the render_icon 
5577         method in the GtkStyleClass.
5578
5579         * gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon): 
5580         Use the style for a given widget to look up a stock ID, get the
5581         icon set, and render an icon using the render_icon method 
5582         of the style
5583
5584         * gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
5585         (contains information about a stock item), the built-in stock item
5586         IDs, and functions to add/lookup stock items.
5587
5588         * gtk/stock-icons/*: Stock icons that come with GTK
5589
5590         * gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
5591         a button based on a GtkStockItem
5592         (gtk_button_new_accel): Takes a uline string and accel group, and
5593         installs the accelerator.
5594
5595         * gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
5596         image-display widget.
5597
5598 2000-09-25  Havoc Pennington  <hp@redhat.com>
5599
5600         * gtk/gtktexttypes.c: Remove Latin1 conversion stuff
5601
5602         * gtk/gtktextbtree.c (gtk_text_btree_node_remove_data): 
5603         Fix a bug when removing node data, we didn't properly 
5604         re-splice the linked list after removing the data.
5605
5606         * gtk/gtktextview.c (gtk_text_view_key_press_event): Pass through 
5607         GDK_Tab as literal tab, Ctrl-Tab to tab to focus widget
5608
5609         * gtk/gtktextbuffer.c (selection_received): fix g_convert usage
5610
5611         * gtk/gtktextlayout.c (set_para_values): Set tab array 
5612         for the layout from the GtkTextTag.
5613
5614         * gtk/gtktexttypes.h: delete tab and search cruft, 
5615         remove g_convert() in favor of GLib version
5616
5617         * gtk/gtktexttypes.c: remove tab implementation from here,
5618         move to Pango
5619
5620         * gtk/gtktexttag.h, gtk/gtktexttag.c: Implement 
5621         tab stuff using new PangoTabArray from Pango
5622
5623         * gtk/gtktexttag.c (gtk_text_attributes_fill_from_tags): Remove
5624         unused border_width stuff
5625
5626 Thu Sep 14 12:21:12 2000  Owen Taylor  <otaylor@redhat.com>
5627
5628         * gtk/gtktexttypes.[ch]: Remove g_convert (moved to
5629         glib) and now useless utf_to_latin1() latin1_to_utf()
5630
5631         * gtk/gtktextview.[ch]: Change ::move_insert and
5632         ::delete_text action signals to ::move and ::delete;
5633         create the signals with the right enumeration type,
5634         not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
5635         C-v bindings, change Home, End to move to beginning/end
5636         of line, Add C-Home C-End to move to beginning/end
5637         of buffer. Change ::cut_text to ::cut_clipboard, etc;
5638         combine ::scroll_text into ::move; use new GtkSelectionData
5639         functions to simplify DND text handling.
5640         
5641         * gtk/gtkenums.h gtk/gtktextview.h: Move movement,
5642         deletion enumerations here, rename enumeration values to 
5643         be consistently plural.
5644
5645         * gtk/gtktextbuffer.c: Use new clipboard interfaces
5646         for cut/copy/paste and primary selection.
5647
5648         * gtk/gtktextbuffer.[ch]: Remove excess time and
5649         'interactive' arguments from cut/copy/paste;
5650         rename cut to cut_clipboard, etc; remove
5651         gtk_text_buffer_get_clipboard_contents().
5652
5653         * gtk/gtktextlayout.[ch]: Add 
5654         gtk_text_layout_move_iter_to_line_end() to move the iter to 
5655         line ends.
5656
5657         * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
5658         Functions to set or get a UTF-8 string on the selection
5659         data.
5660
5661         * gtk/gtkclipboard.[ch]: New, simplified selection handling
5662         interfaces.
5663
5664         * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
5665         created widgets - one of these is useless if we don't.
5666
5667         * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
5668         a public function clear all targets registered for the
5669         widget.
5670
5671         * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
5672         Never call gtk_widget_realize() - that was just asking
5673         for bizarre side-effects.
5674
5675         * gtk/gtkselection.c (gtk_selection_owner_set): Call
5676         gdk_selection_owner_set even if the widget is the
5677         same so that we reliably update the timestamp on
5678         the server.
5679
5680         * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a 
5681         gdk_x11_get_server_time() function.
5682         
5683         * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
5684         gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
5685         Add some tricky filtering on serial numbers for
5686         selection clear events to fix up long-standard
5687         race condition FIXME's in gtkselection.c.
5688
5689         * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
5690         routines to convert from utf8 to compound text or
5691         STRING and from a text property to UTF-8.
5692
5693         * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add 
5694         a convenience function gdk_get_current_event_time().
5695
5696         * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
5697         and free selection_data->data properly
5698
5699 Sat Sep  9 10:23:53 2000  Owen Taylor  <otaylor@redhat.com>
5700
5701         * gtk/gtkthemes.c: Remove some unecessary includes.
5702
5703 2000-09-08  Jonathan Blandford  <jrb@redhat.com>
5704
5705         * gtk/gtktextdisplay.c
5706         * gtk/gtktextlayout.c
5707         * gtk/gtktexttag.c
5708         * gtk/gtktexttag.h
5709         * gtk/testtext.c: Change the overstrike property to strikethrough,
5710         to closer match pango.
5711
5712 Fri Sep  8 14:28:00 2000  Owen Taylor  <otaylor@redhat.com>
5713
5714         * gtk/gtktextview.c: Fix up visibility so that focus,
5715         cursor_visible and blink interact properly.  Reenable cursor blink
5716         which had been roughly disabled. Make blink and focus
5717         properly per-view.
5718
5719         * gtk/gtktextlayout.[ch] (gtk_text_layout_set_cursor_visible):
5720         Add a flag for whether to display insertion cursor and
5721         a function to set the flag.
5722
5723         * gtk/gtktextlayout.c (gtk_text_layout_get_line_yrange): Change
5724         get_line_y() to get_line_yrange(), to be a bit more generally
5725         useful.
5726
5727 Thu Sep 07 20:54:33 2000  George Lebl <jirka@5z.com>
5728
5729         * gtk/gtkmenu.c:  in gtk_menu_set_submenu_navigation_region
5730           do stop_navigating_submenu, to clear last timeout properly.
5731           Also in gtk_menu_motion_notify move ignore_enter above
5732           the conditional to make it always happen as suggested by Owen
5733
5734 2000-09-07  Tor Lillqvist  <tml@iki.fi>
5735
5736         * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o
5737
5738         * gdk/win32/gdkwin32.h: Add more definitions missing from the free
5739         w32api headers.
5740
5741         * gdk/win32/gdkprivate-win32.h: Add a couple of missing
5742         declarations.
5743
5744         * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings.
5745         (gdk_win32_get_colormap): A line had been deleted by mistake.
5746
5747         * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too.
5748         (gdk_event_translate): Handle more virtual keycodes to be able to
5749         generate GDK events for Control-comma, Control-period, etc.
5750
5751         * gtk/gtk.def: Add some missing entry points.
5752
5753 Thu Sep  7 11:47:02 2000  Owen Taylor  <otaylor@redhat.com>
5754
5755         * gtk/gtktextbuffer.c gtk/gtkimcontext.c gtk/gtkwidget.c:
5756         Doc comment fixing. (Mostly non-matching parameter names.)
5757
5758         * gtk/gtkcalendar.c gtk/gtklist.c gtk/gtknotebook.c: Modify
5759         comments a little to avoid looking like a doc comment.
5760
5761         * gtk/gtkspinbutton.h (GTK_INPUT_ERROR): Change INPUT_ERROR to
5762         GTK_INPUT_ERROR. (Should the mechanism for erros in spin button
5763         conversions be changed to GError?)
5764
5765         * gtk/gtkcolorsel.c (GTK_CUSTOM_PALETTE_WIDTH/HEIGHT): 
5766         Move private #defines into .c file.
5767
5768         * gtk/gtktexttag.c (gtk_text_tag_class_init): Alphabetize
5769         order of argument addition, remove duplicates.
5770
5771         * gtk/gtkaspectframe.h (struct _GtkAspectFrameClass):
5772         parent class is FrameClass, not BinClass.
5773
5774         * gtk/gtk.h: Add gtkinvisible, which was missing.
5775         (It's occasionalyl useful for client apps, if seldom.)
5776
5777         * gdk/gdktypes.h: Remove obsolete GDK_CORE_POINTER
5778         #define.
5779
5780 Wed Sep  6 09:53:15 2000  Owen Taylor  <otaylor@redhat.com>
5781
5782         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Use X-space
5783         coordinates when creating window, instead of GDK-space
5784         coordinates. (Avoid BadValue on too large windows.)
5785
5786 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
5787
5788         * configure.in (use_mmx_asm): Remove conftest* after use along the
5789         lines of AC_TRY_COMPILE.        
5790         
5791         * gtk/gtkrc.c (gtk_rc_parse_file): Use g_path_get_dirname instead
5792         of g_dirname, which is deprecated.
5793         (gtk_rc_parse_any): Removed calls to
5794         g_scanner_{freeze,thaw}_symbol_table, which are deprecated.
5795
5796         * gtk/gtkbindings.c (binding_entry_new, binding_entry_destroy):
5797         Removed calls to g_hash_table_{freeze,thaw}, as they are
5798         deprecated now.
5799
5800         * gtk/testtext.c (buffer_pretty_name): Use g_path_get_basename
5801         instead of g_basename.
5802         
5803 2000-09-04 Elliot Lee <sopwith@redhat.com>
5804         
5805         * gdk/gdkpixbuf.h: Put text after #endif inside a comment to avoid
5806         ANSI warning.
5807
5808 Sun Sep 03 00:47:08 2000  George Lebl <jirka@5z.com>
5809
5810         * gtk/gtkwidget.h:  Add some documenting comments about 
5811           GTK_CAN_DEFAULT, GTK_HAS_DEFAULT and GTK_RECEIVES_DEFAULT
5812           just as owen said on irc.
5813
5814         * gtk/gtkwindow.c (gtk_window_set_default):  Don't blindly
5815           set HAS_DEFAULT.  Only set it if there isn't another window
5816           holding it (a focus window which RECEIVES_DEFAULT) and only unset
5817           it if the widget is not the focused window with RECEIVES_DEFAULT.
5818           This fixes weird double default bugs in dialogs which has things
5819           call gtk_window_set_default at times.
5820
5821 Fri Sep  1 22:39:07 2000  Owen Taylor  <otaylor@redhat.com>
5822
5823         * gtk/gtkmenu.[ch] TODO.xml: Apply patch from
5824         Nils Barth and David Santiago to improve submenu
5825         navigation. The patch does this by creating a triangular
5826         region from the point where the pointer leaves the
5827         menu to the submenu.  While the pointer is in
5828         that region and a timeout has not expired, events 
5829         that would cause the active submenu to change are
5830         ignored.
5831
5832 Fri Sep  1 15:34:46 2000  Owen Taylor  <otaylor@redhat.com>
5833
5834         * gdk/x11/gdkwindow-x11.c (gdk_window_move): Fix bug where
5835         moving a toplevel window immediately after sizing it would
5836         result in it being sized back to the old size since 
5837         impl->width, impl->height aren't updated until we hear
5838         back from the server. There is still a (longstanding) bug
5839         here that gdk_window_get_size() will give the wrong size
5840         until we do hear back.
5841
5842 2000-08-31  Havoc Pennington  <hp@redhat.com>
5843
5844         * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, 
5845         gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, 
5846         gtk/gtktexttagprivate.h, gtk/gtktextview.c:
5847         Rename GtkTextStyleValues to GtkTextAttributes
5848
5849 2000-08-31  Havoc Pennington  <hp@pobox.com>
5850
5851         * gtk/gtktextbtree.c (GtkTextBTree): cache end line, 
5852         for rapid testing whether an iterator is the end iterator
5853         (gtk_text_btree_new): init end line cache
5854         (gtk_text_line_is_last): use fast cached line to 
5855         see if we're the last line.
5856         (get_last_line): use cached line here too, should 
5857         speed up some random unrelated code.
5858         
5859 2000-08-30  Havoc Pennington  <hp@pobox.com>
5860
5861         * gtk/gtkmarshal.list: Add marshallers for changed GtkTextBuffer
5862         signals.
5863
5864         * gtk/gtktextbuffer.h: Add "interactive" arg to insert_text and
5865         delete_text signals. This allows the signals to be used for
5866         implementing undo.
5867
5868         * gtk/gtktextbuffer.c: Change signal handler signatures; 
5869         provide "interactive" argument when emitting insert_text or
5870         delete_text signal.
5871         
5872 2000-08-30  Havoc Pennington  <hp@pobox.com>
5873
5874         * gtk/gtktextbuffer.c: Docs
5875
5876 Fri Aug 25 12:16:15 2000  Owen Taylor  <otaylor@redhat.com>
5877
5878         * gdk/x11/gdkimage-x11.c: remove GDK_IMAGE_SHARED_PIXMAP
5879         from switch statements, since Tor removed the enumeration
5880         value.
5881         
5882         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
5883         s/GDK_IS_WINDOW/GDK_IS_DRAWABLE/.
5884
5885 2000-08-29 Elliot Lee <sopwith@redhat.com>
5886         * */*.h: Use G_GNUC_CONST.
5887
5888 2000-08-27  Havoc Pennington  <hp@pobox.com>
5889
5890         * gtk/gtktextiter.c, gtk/gtktextiter.h: wrote lots of API docs,
5891         minor indentation fixes, inserted some FIXME about stuff I
5892         realized was broken while documenting it.
5893         (gtk_text_iter_get_pixmap): allow out params to be NULL, following
5894         GTK convention  
5895
5896 Tue Aug 22 12:33:24 2000  Owen Taylor  <otaylor@redhat.com>
5897
5898         * gtk/testgtk.c (create_styles): Fix double free of
5899         font desc.
5900
5901 Mon Aug 21 22:39:18 2000  Owen Taylor  <otaylor@redhat.com>
5902
5903         * gtk/gtkwidget.[ch]: Add gtk_widget_modify_{fg,bg,text,base,font}.
5904         
5905         * gtk/testgtk.c (create_styles): Add a test for modifying
5906         the style through gtk_widget_modify_*.
5907
5908         * gtk/gtkwidget.c (gtk_widget_get_modifier_style): Add
5909         a function to get the current modifier style.
5910
5911         * gtk/gtkwidget.c (gtk_widget_modify_style): Make a copy
5912         of the passed in GtkRcStyle instead of ref'ing it.
5913
5914         * gtk/gtkrc.[ch]: Add gtk_rc_style_copy().
5915
5916 2000-08-20  Tor Lillqvist  <tml@iki.fi>
5917
5918         * gdk/gdkimage.h
5919         * gdk/win32/gdkimage-win32.c: No need any longer on Win32 for the
5920         shared memory image+pixmap GdkImage type, or
5921         gdk_image_bitmap_new(). They were used in the gdk_imlib port, but
5922         I am dropping that.
5923
5924         * gtk/gtkmain.h: On Win32, use a #define to map gtk_init() to
5925         actually call gtk_init_abi_check(), passing also
5926         sizeof(GtkWindow). Ditto for gtk_init_check(). 
5927
5928         * gtk/gtk.def
5929         * gtk/gtkmain.c: (gtk_init_abi_check, gtk_init_check_abi_check):
5930         New functions, used to check that the GTK+-using code has been
5931         compiled using the correct compiler and switches. In particular,
5932         with gcc one has to use the -fnative-struct switch as GTK+ is
5933         compiled with that.
5934
5935 Fri Aug 18 17:27:46 2000  Owen Taylor  <otaylor@redhat.com>
5936
5937         * gtk/gtkclist.c (gtk_clist_merge): Don't leave dangling
5938         ->prev fields when merging lists. (Found simultaneously
5939         by Pawel Salek and Jakub Jelinek)
5940
5941 2000-08-12  Tor Lillqvist  <tml@iki.fi>
5942
5943         * gdk/gdk.def
5944         * gtk/gtk.def: Add missing entries.
5945
5946         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Use
5947         OUT_TT_ONLY_PRECIS, try to get a TrueType font.
5948
5949         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): New
5950         function. Dummy implementation at this point.
5951
5952         * gtk/makefile.mingw.in: Fix typo. Add testtext and testtextbuffer
5953         rules. Undefine GTK_COMPILATION when compiling the test programs.
5954         
5955         * gtk/gtkdebug.h: Mark gtk_debug_flags for export/import.
5956
5957 2000-08-11  Tor Lillqvist  <tml@iki.fi>
5958
5959         * gtk/gtkfilesel.c: Add more calls to g_filename_{to,from}_utf8()
5960         to convert back and forth from UTF-8 and the "system" (or "current
5961         locale") charset when necessary. Indentation/spacing cleanup.
5962
5963 2000-08-10  Havoc Pennington  <hp@redhat.com>
5964
5965         * Makefile.am (snapshot): Change the format of the snapshot
5966         version to match glib
5967
5968         * gdk/win32/Makefile.am (EXTRA_DIST): remove gdkinputprivate.h
5969         from EXTRA_DIST since it doesn't seem to exist
5970
5971 2000-08-10  Tor Lillqvist  <tml@iki.fi>
5972
5973         * gtk/gtkfilesel.c (open_new_dir): Use the "system codepage"
5974         version of the directory name (not the UTF-8 one) when building
5975         the path name to stat().
5976
5977 2000-08-03  Elliot Lee  <sopwith@redhat.com>
5978
5979         * gdk/gdkpango.c (gdk_draw_layout_line): Don't shape runs with a
5980         PANGO_ATTR_SHAPE set.
5981
5982 Thu Aug  3 09:17:06 2000  Owen Taylor  <otaylor@redhat.com>
5983
5984         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Applied patch from
5985         Peter Osterlund to simplify the code while keeping the
5986         functionality the same.
5987
5988 Wed Aug  2 14:57:38 2000  Owen Taylor  <otaylor@redhat.com>
5989
5990         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Move
5991         is_viewable() test further inside the function, since removing the 
5992         window from the redraw list without clearing ->update_area
5993         was also very broken.
5994
5995 2000-08-02  Tor Lillqvist  <tml@iki.fi>
5996
5997         * configure.in: Check for <unistd.h>.
5998
5999 2000-08-01  Martin Baulig  <baulig@suse.de>
6000
6001         * gtk/gtkmain.c (gtk_init_check): Use g_message() and not g_warning()
6002         to display the message that this is a development version of GTK+.
6003
6004 Mon Jul 31 18:37:36 2000  Owen Taylor  <otaylor@redhat.com>
6005
6006         * gtk/gtkentry.c (entry_adjust_scroll): Fix problem where computation
6007         was depending on widget->allocation instead of the width of text_area,
6008         which was incorrect for subclasses like GtkSpinButton.
6009
6010         * gdk/gdkpango.c (gdk_draw_layout): Fix a couple of typos
6011         with width == 1 tests that should be width == -1.
6012
6013 Mon Jul 31 16:45:48 2000  Owen Taylor  <otaylor@redhat.com>
6014
6015         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Replace broken, 
6016         (broken, Elliot, every single window blank on X) custom code with call
6017         to gdk_window_is_viewable() which a) prevents code duplicate and
6018         b) works. 
6019
6020 2000-07-31  Elliot Lee  <sopwith@redhat.com>
6021
6022         * gtk/gtkcolorsel.c: We really do need to include gdkfb.h in order
6023         to get the GDK_PARENT_ROOT() macro to work.
6024         * gtk/gtkmarshal.list: Add NONE:STRING,POINTER
6025         * gdk/gdkwindow.c: Don't send expose events, or invalidate pieces
6026         of, windows that aren't shown.
6027         * gdk/linux-fb: Redraw-when-menu-hidden solved, plus a bunch of
6028         pointer grab stuff.
6029
6030 Mon Jul 31 13:53:16 BST 2000  Tony Gale <gale@gtk.org>
6031
6032         * docs/gtkfaq.sgml docs/gtk-faq.sgml:
6033           s/gtk_main_iteration/g_main_iteration/
6034
6035           Did this already in change:
6036                 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
6037           don't know how it got reverted.
6038
6039 2000-07-31  Stanislav Brabec  <utx@penguin.cz>
6040
6041         * gdk/gdk.c: #ifdef G_ENABLE_DEBUG around gdk_arg_debug_cb and
6042         gdk_arg_no_debug_cb to fix compilation problem with --disable-debug.
6043
6044         * gdk/Makefile.am: Link gdk against actually compiled gdk_pixbuf-1.3,
6045         not gdk_pixbuf.
6046
6047 2000-07-30  Pablo Saratxaga <pablo@mandrakesoft.com>
6048
6049         * configure.in,po/{sp,sr}.po: Added Serbian files
6050
6051 2000-07-30  Tor Lillqvist  <tml@iki.fi>
6052
6053         * gdk/Makefile.am: Add makefile.mingw.in to EXTRA_DIST.
6054
6055         * gdk/win32/gdkevents-win32.c (gdk_events_init, gdk_events_queue):
6056         Remove the g_pipe_readable_msg stuff. Not needed with new GLib
6057         GIOChannel implementation.
6058
6059         * gdk/win32/gdkinput.c
6060         * gdk/win32/gdkpango-win32.c: Update license name here, too.
6061
6062         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_lookup): Fix
6063         definition to match prototype.
6064
6065         * gtk/makefile.mingw.in: Add libiconv CFLAGS and LIBS.
6066
6067 2000-07-27  Elliot Lee  <sopwith@redhat.com>
6068
6069         * gtk/gdk-pixbuf-loader.[ch]: Add gdk_pixbuf_loader_new_with_type
6070         function, to allow handling image formats that cannot be detected
6071         by looking at content alone.
6072
6073 Thu Jul 27 13:13:21 BST 2000  Tony Gale <gale@gtk.org>
6074
6075         * docs/tutorial/*.gif *.jpg *.eps
6076           Update these to the same look-n-feel.
6077           Why does including images in DocBook suck so badly?
6078
6079 Thu Jul 27 05:06:29 2000  Tim Janik  <timj@gtk.org>
6080
6081         * gtk/gtktable.c: applied patch from Phil Thompson
6082         <phil@river-bank.demon.co.uk> that enables space settings for
6083         the last row/columns as well.
6084
6085 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
6086
6087         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
6088         updates the license headers to the GNU Lesser General Public License,
6089         as well as updating the copyright year to 2000.
6090
6091 2000-07-26  Robert Brady  <rwb197@zepler.org>
6092
6093         * configure.in: Cause GETTEXT_PACKAGE to be consistent in config.h
6094           and po/Makefile, was installing and looking for them under gtk20
6095           and gtk2 respectively.
6096
6097 2000-07-25  Havoc Pennington  <hp@redhat.com>
6098
6099         * gtk/testtext.c: Comment out some stuff that depends on the rest
6100         of my patches.
6101
6102 2000-07-25  Havoc Pennington  <hp@redhat.com>
6103
6104         * gtk/gtkmarshal.list: Add NONE:POINTER,POINTER,INT for the text
6105         buffer
6106
6107 2000-07-25  Havoc Pennington  <hp@redhat.com>
6108
6109         * gtk/testtext.c, gtk/testtextbuffer.c: update to reflect text
6110         widget changes.
6111
6112         * gtk/gtktextview.h: To be consistent with usage of "line"
6113         throughout the API to mean "newline-terminated thingy", change
6114         MOVEMENT_LINE to be MOVEMENT_WRAPPED_LINE, and MOVEMENT_PARAGRAPH
6115         to MOVEMENT_LINE.
6116
6117         (GtkTextView): Add flags for default editability, and whether to
6118         show the cursor. Add functions to get/set that. Add 
6119
6120         (gtk_text_view_get_iter_location): new function
6121
6122         * gtk/gtktexttypes.h: Move GtkTextLine typedef from here to
6123         gtktextlayout.h
6124         (g_convert): Add g_convert temporarily, will go in glib in a bit
6125         
6126         * gtk/gtktexttagtable.h: include gtktexttag.h, and define
6127         GtkTextTagTableForeach instead of brokenly using GHFunc.
6128         Change gtk_text_tag_table_foreach() so it doesn't use GHFunc.
6129
6130         * gtk/gtktexttagprivate.h: Remove GtkTextStyleValues from here,
6131         moved to public header.
6132
6133         * gtk/gtktexttag.h: Rename the "elide" attribute of tags to
6134         "invisible", since "elide" was a bad name.
6135         (gtk_text_tag_get_priority): Added
6136
6137         (GtkTextStyleValues): put this in public header, along with
6138         functions to use it.
6139
6140         * gtk/gtktextmarkprivate.h: Include more headers, since we no
6141         longer include gtktextbtree.h.
6142
6143         * gtk/gtktextmark.h: Add gtk_text_mark_ref, gtk_text_mark_unref,
6144         gtk_text_mark_deleted
6145
6146         * gtk/gtktextlayout.h: Don't include the "really private" headers,
6147         only buffer/iter. Forward declare GtkTextLIne and GtkTextLineData
6148         to make this possible. Now we only need to install
6149         gtktextlayout.h, not gtktextbtree.h and gtktext*private.h.
6150         (However the Makefile.am isn't changed yet because of the
6151         logistics of merging gtk-hp-patches piecemeal)
6152
6153         * gtk/gtktextiterprivate.h: include btree header, so it compiles;
6154         rename gtk_text_iter_get_line to gtk_text_iter_get_text_line since
6155         gtk_text_iter_get_line is now used in the public API for a
6156         different purpose.
6157
6158         * gtk/gtktextiter.h: Clean up function names to be more
6159         consistent. Always call char offset "offset" and byte index
6160         "index". A "line" is always a line number. 
6161
6162         (gtk_text_iter_is_last): new function, more efficient than 
6163         the existing way to check
6164         (gtk_text_iter_is_first): new function, also more efficient
6165
6166         (gtk_text_iter_up_lines, gtk_text_iter_down_lines): Remove these
6167
6168         (gtk_text_iter_next_char, gtk_text_iter_prev_char): Renamed from 
6169         gtk_text_iter_forward_char, etc.
6170
6171         (gtk_text_iter_forward_to_tag_toggle): Renamed from
6172         forward_find_tag_toggle, since this isn't a linear search
6173
6174         (GtkTextCharPredicate): rename from GtkTextViewCharPredicate
6175
6176         (gtk_text_iter_forward_search, gtk_text_iter_backward_search): 
6177         New functions, search for a buffer substring.
6178
6179         * gtk/gtktextbuffer.h: Add fields to store whether a paste is
6180         interactive and default editable (since we need to store that info
6181         until we receive the selection data).
6182
6183         Remove all the _at_char and at_line etc. versions of functions;
6184         only have iterator versions.
6185
6186         Add _interactive() versions of functions, that consider the
6187         editability of text. (FIXME add interactive flag to the 
6188         insert/delete signals per Darin's suggestion)
6189
6190         (gtk_text_buffer_get_tag_table): new function, demand-creates the
6191         tag table if necessary
6192
6193         Remove declaration of gtk_text_buffer_get_iter_from_string
6194
6195         (_gtk_text_buffer_get_btree): private/internal function, added.
6196         
6197
6198         * gtk/gtktextbtree.h: Remove forward decl of GtkTextLineData.
6199         (gtk_text_line_is_last): new function
6200
6201 2000-07-25  Havoc Pennington  <hp@redhat.com>
6202
6203         * gtk/gtkprogressbar.h: Implement new sane, 5-function API for
6204         using GtkProgressBar. See Changes-2.0.txt for details.
6205
6206         * gtk/gtkprogressbar.c: Add object arguments "fraction" and
6207         "pulse_step" which are the equivalent of
6208         gtk_progress_bar_set_pulse_step and gtk_progress_bar_set_fraction.
6209         Implement new API.
6210         
6211         * gtk/gtkprogress.h (struct _GtkProgress): Add a field
6212         (use_text_format) to mark whether text set on the progress bar is
6213         a format string. Deprecate entire GtkProgress interface.
6214
6215         * gtk/gtkprogress.c (gtk_progress_init): init use_text_format to TRUE
6216         (gtk_progress_build_string): make this a no-op if use_text_format
6217         is FALSE
6218
6219         * docs/Changes-2.0.txt: Describe progress bar changes.
6220
6221 2000-07-25  Tor Lillqvist  <tml@iki.fi>
6222
6223         * Makefile.am: Include the build directory.
6224
6225         * configure.in: Generate build/Makefile, build/win32/Makefile,
6226         gdk/, gdk/win32/, and gtk/makefile.mingw.
6227
6228         * config.h.win32: Add USE_GMODULE and USE_MMX for gdk-pixbuf.
6229         Add GETTEXT_PACKAGE.
6230         
6231         * gdk/gdk.def
6232         * gtk/gtk.def: Updates.
6233
6234         * gdk/gdkfont.h
6235         * gdk/gdkpixmap.h: Remove temporary Win32-only functions, we don't
6236         need them any longer.
6237
6238         * gdk/gdkinput.h: Mark gdk_core_pointer for export/import.
6239
6240         * gdk/makefile.mingw.in: Define GDK_COMPILATION. Link with
6241         PANGOWIN32_LIBS and gdk_pixbuf.
6242
6243         * gdk/win32: Compiles, but no doubt doesn't work at all.
6244
6245         * gdk/win32/makefile.mingw.in: Define GDK_COMPILATION. 
6246
6247         * gdk/win32/gdkinput.c: New file, temporarily.
6248         
6249         * gdk/win32/gdkinput-win32.h: New file
6250
6251         * gdk/win32/gdkinputprivate.h: Remove.
6252
6253         * gdk/win32/gdkpango-win32.c: New file.
6254
6255         * gtk/makefile.mingw.in: New file
6256
6257         * gtk/makefile.cygwin: Removed
6258         
6259         * gtk/Makefile.am: Update accordingly.
6260
6261         * gtk/gtkrc.[ch] (gtk_win32_get_installation_directory): Renamed and
6262         made externally visible.
6263
6264         * gtk/gtkmain.c: Use it.
6265         
6266         * gtk/gtktextdisplay.c: No need to include pangox.h, pango.h
6267         is enough.
6268
6269         * gtk/gtktypeutils.c: Mark glib_debug_objects for import.
6270
6271 2000-07-24 Elliot Lee <sopwith@redhat.com>
6272         * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
6273         individual backends already.
6274         * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
6275         again. Yes, there really is a good reason for this, if you are using the gdkregion
6276         internals, and if you're not, why do you care?
6277         * gdk/gdkwindow.c: Fix inverted condition
6278         * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
6279         * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
6280         * gtk/gtkrange.c: Redraw trough when moving.
6281         * gtk/gtktypeutils.c: Fix warning by adding const cast.
6282         * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
6283
6284 2000-07-23  Tor Lillqvist  <tml@iki.fi>
6285
6286         * configure.in: Check for mkstemp and sigsetjmp. Output
6287         gdk-pixbuf/makefile.mingw and gdk-pixbuf/pixops/makefile.mingw.
6288
6289         More work on GDK for Win32. Still in an intermediate state.
6290
6291         * gdk/makefile.cygwin
6292         * gdk/win32/makefile.cygwin: Removed.
6293         
6294         * gdk/makefile.mingw.in
6295         * gdk/win32/makefile.mingw.in: New files.
6296
6297         * gdk/Makefile.am
6298         * gdk/win32/Makefile.am: Generate and distribute them.
6299
6300         * gdk/win32/gdkwindow-win32.h
6301         * gdk/win32/gdkdrawable-win32.h
6302         * gdk/win32/gdkpixmap-win32.h: New files.
6303
6304         * gdk/win32/gdkcolor-win32.c
6305         * gdk/win32/gdkcursor-win32.c
6306         * gdk/win32/gdkdrawable-win32.c
6307         * gdk/win32/gdkgc-win32.c
6308         * gdk/win32/gdkimage-win32.c
6309         * gdk/win32/gdkprivate-win32.h
6310         * gdk/win32/gdkwin32.h: Update data structures. Cosmetics:
6311         Rename fields and variables called xcursor, xid, etc (these names
6312         were leftovers from the X11 backend) to hcursor, hwnd, hbitmap etc.
6313
6314 Sat Jul 22 17:41:26 2000  Owen Taylor  <otaylor@redhat.com>
6315
6316         * gtk/gtkentry.[ch]: Fix some problems with vertical
6317         alignment.
6318
6319         * gtk/gtkentry.c (gtk_entry_find_position): Fix 
6320         char/byte confusion.
6321
6322 Sat Jul 22 11:16:05 2000  Owen Taylor  <otaylor@redhat.com>
6323
6324         * gtk/gtktextview.c (changed_handler): Fix bug where
6325         redraw wasn't being done properly when height of
6326         dirty region changed.
6327
6328         * demos/Makefile.am: Remove various references to
6329         -lgmodule
6330
6331 Fri Jul 21 15:28:13 2000  Owen Taylor  <otaylor@redhat.com>
6332
6333         * gtk/gtktextlayout.[ch], gtk/gtktextdisplay.c: Use new
6334         PangoAttrShape to reserve space for pixmaps, add 
6335         GSList *pixmaps to GtkTextLineDisplay, draw the pixmaps
6336         in the display functions.
6337         
6338         * gtk/testgtk.c (create_layout): Set some more exotic
6339         scrolled window options
6340
6341         * gtk/gtkscrolledwindow.[ch] (gtk_scrolled_window_set_shadow_type):
6342         Add function to set the shadow type of a window, to allow
6343         putting a shadow around widgets such as GtkLayout or GnomeCanvas
6344         which don't draw their own frame.
6345
6346 Fri Jul 21 16:34:42 BST 2000  Tony Gale <gale@gtk.org>
6347
6348         * docs/tutorial/package-db-tutorial.sh: New file for
6349           packaging DocBook format tutorial
6350
6351 Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>
6352
6353         * docs/tutorial/gtk-tut.sgml: Minor updates
6354
6355         * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
6356
6357 2000-07-19  Tor Lillqvist  <tml@iki.fi>
6358
6359         * gtk/gtksignal.c: Fix C++ comment.
6360
6361         * gtk/gtkimmulticontext.c
6362         * gtk/gtktextbtree.c: Remove gccisms: Don't use __FUNCTION__,
6363         don't return value from void functions.
6364
6365         * gtk/gtk.def: Add gtk_rc_style_unref.
6366
6367 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
6368
6369         * gdk-pixbuf/gdk-pixbuf.h, gtk/gtkhsv.h, gtk/gtktextbtree.h,
6370         gtk/gtktextbuffer.h, gtk/gtktextchild.h, gtk/gtktextdisplay.h,
6371         gtk/gtktextiter.h, gtk/gtktextiterprivate.h, gtk/gtktextlayout.h,
6372         gtk/gtktextmarkprivate.h, gtk/gtktextsegment.h, gtk/gtktexttag.h,
6373         gtk/gtktexttagtable.h, gtk/gtktexttypes.h, gtk/gtktextview.h,
6374         gtk/gtktypeutils.h: Include files outside of the extern "C"
6375         block. Makes some C++ compiler happy. Reported by Denis Vakatov
6376         <vakatov@peony.nlm.nih.gov>.
6377
6378 Wed Jul 19 14:07:57 BST 2000  Tony Gale <gale@gtk.org>
6379
6380         * docs/tutorial/gtk-tut.sgml: Yet more clean ups.
6381           Completes first pass. Hurrah!
6382
6383 Tue Jul 18 17:17:55 BST 2000  Tony Gale <gale@gtk.org>
6384
6385         * docs/tutorial/gtk-tut.sgml: More clean ups.
6386
6387 Mon Jul 17 18:52:38 2000  Owen Taylor  <otaylor@redhat.com>
6388
6389         * gtk/gtkentry.c (gtk_entry_draw_text): Restore code to
6390         paint the background of the text area which was accidentally
6391         removed at some point.
6392
6393         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch] gtk/gtkthemes.[ch]: 
6394           
6395          - Move most of the functionality from the theme vtable
6396            into GtkRcStyleClass and GtkStyleClass. The moved
6397            vtable functions were changed a bit in the move to
6398            work better in their new home.
6399
6400          - Get rid of the engine and engine_data fields from
6401            GtkRcStyle and GtkStyle; instead the theme
6402            engine derives theme-specific subclasses of GtkRcStyle
6403            and GtkStyle
6404
6405          - Add extra dlsym() found entry point to themes,
6406            theme_create_rc_style().
6407
6408         * gtk/gtkstyle.c: Copy xthickness, ythickness fields
6409         in gtk_style_real_copy.
6410
6411         * gtk/themes.[ch]: add a function gtk_theme_engine_register_type()
6412         to register a type associated with an engine. (The engine
6413         won't be unloaded as there is an instance of the type.)
6414
6415
6416 Mon Jul 17 18:19:06 BST 2000  Tony Gale <gale@gtk.org>
6417
6418         * docs/tutorial/gtk-tut.sgml: Clean ups.
6419
6420 Mon Jul 17 13:59:29 BST 2000  Tony Gale <gale@gtk.org>
6421
6422         * docs/tutorial/gtk-tut.sgml: Initial DocBook version. Lots
6423           of cleaning up to do.
6424
6425 2000-07-15  Tor Lillqvist  <tml@iki.fi>
6426
6427         * gdk/testgdk.c: New file, quick hack to test backends for
6428         pixel-by-pixel correctness of the most simple graphic operations.
6429
6430 Fri Jul 14 20:30:25 2000  Owen Taylor  <otaylor@redhat.com>
6431
6432         * Really release 1.3.1
6433         
6434         * gtk-config-2.0.in gtk-2.0.m4: Fix up to correspond to new
6435         include structure.
6436
6437 Fri Jul 14 18:40:39 2000  Owen Taylor  <otaylor@redhat.com>
6438
6439         * Released 1.3.1
6440
6441 Fri Jul 14 16:21:26 2000  Owen Taylor  <otaylor@redhat.com>
6442
6443         * gtk/gtktextlayout.c: use FALSE for size_only most
6444         of the time when calling gtk_text_layout_get_line_display()
6445         to avoid causing double reshapes when a redraw follows
6446         immediately after.
6447
6448 Tue Jul 11 11:13:40 2000  Owen Taylor  <otaylor@redhat.com>
6449
6450         * gtk/gtkrange.c (gtk_range_default_[hv]slider_update): Invalidate
6451         appropriate region and gdk_window_process_updates() so trough
6452         updating doesn't lag behind the window being scrolled.
6453
6454         * gdk/gdkgc.c: Make parent_class pointer static.
6455          
6456 Sun Jul  9 21:31:23 2000  Owen Taylor  <otaylor@redhat.com>
6457
6458         * gdk/gdk-pixbuf.c gtk/gdk-pixbuf-loader.c gtk/gtktextview.c:
6459         include <string.h>.
6460          
6461         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Fix
6462         cut-and-paste error in computing memory offset for 4 channels.
6463
6464 Fri Jul 14 14:05:02 2000  Owen Taylor  <otaylor@redhat.com>
6465
6466         * gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string): Remove
6467         gtk_rc_append_default_pixmap_path(), since it wasn't
6468         adding an interesting path and we don't have a meaningful
6469         default for this value.
6470
6471 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
6472
6473         * configure.in Makefile.am gtk-config.m4 gtk.m4: Move
6474         gtk-config to gtk-config-2.0 move gtk_.m4 to
6475         gtk-2.0.m4
6476
6477         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
6478         gdk/Makefile.am demos/Makefile.am: Change 
6479         library names to libgtk-1.3.la, etc, so that we
6480         can distinguish gtk-1.2 and gtk-2.0 on the linkline.
6481
6482         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
6483         gdk/Makefile.am gdk/x11/Makfile.am
6484         Move include files into /usr/include/gtk-2.0, 
6485         /usr/lib/gtk-2.0/include/
6486          
6487         * autogen.sh acconfig.h configure.in gtk/gtkmain.c
6488         gtk/gtkintl.h: Change package for gettext from 
6489         gtk+ to gtk20. Put hack in autogen.sh to modify
6490         po/Makefile.in.in after gettextize to make this
6491         possible.
6492
6493         * gtk+.spec: Some updates, not tested.
6494
6495         * gdk-pixbuf/Makefile.am: Move loaders into
6496         $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders.
6497
6498         * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations
6499         $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir
6500         to THEMENAME/gtk-2.0/. Move engine directory  to
6501         $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
6502         
6503 2000-07-12  Tor Lillqvist  <tml@iki.fi>
6504
6505         Win32 changes, still doesn't build though.
6506
6507         * gdk/makefile.cygwin
6508         * gdk/win32/makefile.cygwin
6509         * gtk/makefile.cygwin: Updates.
6510
6511         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Use the same
6512         default values for fg and bg pixel as X11 does (0 and 1), not
6513         black and white. Use PS_ENDCAP_FLAT and PS_JOIN_MITER by default.
6514         Use 0 for pen width by default (treated as 1 anyway later, but for
6515         apps that might check the value in the GdkGC).
6516         (gdk_win32_hdc_get, gdk_win32_hdc_release): New functions, public
6517         interface to gdk_gc_predraw and _postdraw.
6518
6519         * gdk/win32/gdkwin32.h
6520         * gdk/gdk.def: Add gdk_win32_hdc_{get,release}.
6521
6522         * gdk/win32/gdkcolor-win32.c (gdk_colormap_alloc1): Remove
6523         extraneous semicolon.
6524
6525         * gdk/win32/gdkdrawable-win32.c: Check also for pen_width == 0.
6526
6527         * gdk/win32/gdkimage-win32.c (gdk_image_new): Use the visual's depth,
6528         not the Win32 bitspixel value.
6529
6530         * gdk/win32/gdkcc-win32.c:
6531         * gdk/win32/gdkcolor-win32.c 
6532         * gdk/win32/gdkprivate-win32.h
6533         * gdk/win32/gdkwin32.h: Changes to make compilable, with new
6534         GDK object structure.
6535
6536 Tue Jul 11 20:59:35 2000  Tim Janik  <timj@gtk.org>
6537
6538         * docs/tutorial/gtk_tut_12.es.sgml (name): 
6539         * docs/tutorial/gtk_tut_it.sgml (name): 
6540         * docs/tutorial/gtk_tut_fr.sgml (name): 
6541         * docs/tutorial/gtk_tut.sgml (name): scratched notion of completely
6542         outdated email adress: s/timj@psynet.net/timj@gtk.org/.
6543
6544 Tue Jul 11 13:10:57 BST 2000  Tony Gale <gale@gtk.org>
6545
6546         * docs/faq/gtk-faq.sgml: Cleanup indenting and various
6547           small changes.
6548
6549 Tue Jul 11 08:04:58 2000  Tim Janik  <timj@gtk.org>
6550
6551         * gtk/gtktree.c (gtk_real_tree_select_child): eek, i've never seen
6552         a bug here, never been here and never fixed anything ;(
6553         (don't segfault if tree->root_tree is NULL, which happens prior
6554         to widget realization, but puke instead).
6555
6556 Tue Jul 11 06:38:42 2000  Tim Janik  <timj@gtk.org>
6557
6558         * gtk/gtkrc.h: add xthickness and ythickness to GtkRcStyle and
6559         add the necessary tokens.
6560
6561         * gtk/gtkrc.c (gtk_rc_style_init): properly initiality the rc style.
6562         (gtk_rc_style_to_style): copy thicknesses.
6563         (gtk_rc_init_style): apply thicknesses.
6564         (gtk_rc_parse_style): parse xthickness and ythickness.
6565
6566         * gdk/x11/gdkdnd-x11.c: silence compiler in switch() statements.
6567
6568         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): 
6569         (gdk_window_new): 
6570         (_gdk_windowing_window_init): 
6571         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new): 
6572         (gdk_pixmap_create_from_data): 
6573         (gdk_bitmap_create_from_data): 
6574         (gdk_pixmap_new): 
6575         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
6576         (gdk_image_new): 
6577         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): 
6578         * gdk/x11/gdkdnd-x11.c (gdk_drag_context_new): 
6579         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get):
6580         (gdk_colormap_get_system): 
6581         (gdk_colormap_new): 
6582         * gdk/gdkwindow.c (gdk_window_init): 
6583         * gtk/gtkstyle.c (gtk_style_new):
6584         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
6585         * gdk/gdkpixmap.c (gdk_pixmap_init): 
6586         * gtk/gtkrc.c (gtk_rc_style_new):
6587         use g_object_new() instead of g_type_create_instance() which
6588         is a private function for fundamental type implementations.
6589
6590 Thu Jul  6 16:12:14 2000  Owen Taylor  <otaylor@redhat.com>
6591
6592         * configure.in: Add check for db2html
6593
6594 Thu Jul  6 14:53:05 2000  Owen Taylor  <otaylor@redhat.com>
6595
6596         * gtk/gtktypeutils.c (gtk_type_init): Add a temporary 
6597         hack to set glib_debug_objects based on gtk_debug_flags.
6598
6599 Thu Jul  6 14:12:13 2000  Owen Taylor  <otaylor@redhat.com>
6600
6601         * INSTALL.in: Update the Prerequisites section.
6602
6603         * Makefile.am demos/Makefile.am docs/Makefile.am
6604         docs/tutorial/Makefile.am gdk/x11/Makefile.am
6605         gdk/linux-fb/Makefile.am: Dist fixes
6606
6607 Thu Jul  6 12:26:03 2000  Owen Taylor  <otaylor@redhat.com>
6608
6609         * NEWS: 10,000 foot view of 1.3.1 changes.
6610
6611 Thu Jul  6 11:54:03 2000  Owen Taylor  <otaylor@redhat.com>
6612
6613         * gdk/gdk.h gdk/gdktypes.h gdk/linux-fb/gdkmain-fb.c
6614         gdk/nanox/gdkmain-nanox.c gdk/win32/gdkevents-win32.c
6615         gdk/win32/gdkinput-win32.c gdk/win32/gdkwin32.h
6616         gdk/x11/gdkmain-x11.c: 
6617
6618         Patch from George Lebl to add a GdkGrabStatus enumeration to use
6619         as a return value of gdk_*_grab(). Previously, we just
6620         returned the X11 values directly.
6621
6622 Thu Jul  6 11:27:44 2000  Owen Taylor  <otaylor@redhat.com>
6623
6624         * gdk/x11/Makefile.am: Patch from George Lebl to 
6625         install all the headers in the right place.
6626
6627 Tue Jul  4 13:13:01 BST 2000  Tony Gale <gale@gtk.org>
6628
6629         * docs/faq/gtk-faq.sgml: Add remaining sections. Completes
6630           initial conversion to DocBook.
6631
6632 2000-07-04  Tor Lillqvist  <tml@iki.fi>
6633
6634         * README.win32: Improve a bit.
6635
6636         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle also
6637         WM_SYSCHAR, and other changes to get handling of Alt+nnn or
6638         Alt+0nnn on the numpad (used to enter characters by numeric code
6639         from current DOS or ANSI codepage) working correctly, as in other
6640         Windows apps.
6641
6642         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Use
6643         same argument validity tests as in X11 version.
6644         (_gdk_cursor_destroy): Use DestroyCursor, not DestroyIcon.
6645
6646         * gdk/win32/gdkwin32.h: Add also WM_MOUSEWHEEL and CopyCursor
6647         definitions in case missing from headers.
6648
6649         * gdk/win32/gdkwindow-win32.c (gdk_win32_window_destroy): Also
6650         destroy the window-specific cursor.
6651         (RegisterGdkClass): Use the global gdk_ProgInstance instead of
6652         calling GetModuleHandle(NULL).
6653         (gdk_window_set_cursor): Reworked to always copy the passed cursor
6654         with CopyCursor before setting it as the window-specific
6655         cursor. It is OK for the caller to destroy the GdkCursor (and thus
6656         also its Windows cursor) after calling this function. Destroy any
6657         previous window-specific cursor.
6658
6659 Mon Jul  3 17:54:49 2000  Owen Taylor  <otaylor@redhat.com>
6660
6661         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): 
6662         font charset is iso8859-1, not iso-8859-1.
6663
6664 Mon Jul  3 17:08:14 2000  Owen Taylor  <otaylor@redhat.com>
6665
6666         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale):
6667         Use g_get_charset() instead of g_get_codeset().
6668
6669         * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: 
6670         Comment out some strdup'ing functions to keep timj
6671         happy until we finish fighting this out.
6672
6673 Mon Jul  3 14:24:16 2000  Owen Taylor  <otaylor@redhat.com>
6674
6675         * gtk/gtkwidget.c (gtk_widget_draw): Ignore calls with
6676         <= width or height.
6677
6678         * gtk/gtktable.c (gtk_table_attach): Fix missed merge
6679         from 1.2 for parent/child states.
6680
6681         * gdk/gdkgc.c (gdk_gc_set_rgb_fg/bg_color): Fix a couple
6682         of typos.
6683
6684         * gdk/gdkevents.[ch]: Remove press/xtilt/ytilt fields of
6685         event structures, replace with a generic axes field. Replace 
6686         deviceid/sourec with GdkDevice *device.
6687
6688         * gdk/gdkevents.[ch] (gdk_event_get_axis): Add function
6689         to extract particular axis use value from event. (Also
6690         can be used for normal X/Y.)
6691
6692         * gdk/gdkinput.h gdk/x11/gdkinput*: Major revision;
6693         allow for arbitrary number of axes, namespace everything
6694         as gdk_device_*. Replace guint32 deviceid with GdkDevice *
6695         everywhere.
6696
6697         * gdk/x11/{gdkmain-x11.c,gdkevent-x11.c,gdkinput*}: 
6698         Get rid of the gdk_input_vtable setup if favor of simply
6699         defining the functions in gdkinput-none/gxi/xfree.c in
6700         a similar fashion to the way that the port structure is 
6701         done.
6702
6703         * gtk/gtkdnd.c: Fix fields of synthesized button press event
6704         for new event structures. 
6705
6706         * gtk/gtkinputdialog.c gtk/testinput.c: Revise to match
6707         new device interfaces.
6708
6709 Sun Jul  2 18:19:50 2000  Owen Taylor  <otaylor@redhat.com>
6710
6711         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_layout): Add a 'text' argument to
6712         set the initial text.
6713
6714         * gtk/gtkaccellabel.c gtk/gtkcalendar.c gtk/gtkclist.c
6715         gtk/gtkentry.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c
6716         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvruler.c
6717         gtk/gtkvscale.c: Adapt to new argument of create_pango_layout().
6718
6719         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
6720         pango_layout_set_font_description to simplify.
6721
6722 Sun Jul  2 17:43:41 2000  Owen Taylor  <otaylor@redhat.com>
6723
6724         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
6725         pango_layout_set_font_description to simplify.
6726
6727 Sun Jul  2 17:06:40 2000  Owen Taylor  <otaylor@redhat.com>
6728
6729         * gtk/gtkcalendar.c gtk/gtkclist.c gtk/gtkctree.c gtk/gtkhscale.c
6730         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvscale.c gtk/gtkaccellabel.c: Use
6731         pango_layout_get_pixel_extents() to remove a large number of '/ PANGO_SCALE'.
6732
6733         * gtk/gtk[hv]ruler.c gtk/gtklabel.c: replace some / PANGO_SCALE with
6734         PANGO_PIXELS() macro.
6735
6736 Sun Jul  2 15:24:41 2000  Owen Taylor  <otaylor@redhat.com>
6737
6738         * gtk/gtkwidget.[ch] (gtk_widget_get_pango_context): Add new function
6739         that returns a PangoContext owned by the widget and updated to
6740         match future changes in the widget. Also, make 
6741         gtk_widget_create_pango_layout() use this context. If we ever
6742         add a ::changed signal to PangoContext, this will make things
6743         much more convenient. 
6744
6745         * gtk/gtkentry.c gtk/gtklabel.c: Call pango_layout_context_changed()
6746         in the appropriate places instead of destroying the layouts and
6747         creating new ones.
6748
6749         * gtk/gtkfontsel.[ch] gtk/gtkclist.c: Use gtk_widget_get_pango_context()
6750         in a few strategic places.
6751
6752 Sun Jul  2 14:37:58 2000  Owen Taylor  <otaylor@redhat.com>
6753
6754         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Call 
6755         gtk_widget_size_request() on reparented child, if one. Otherwise,
6756         queue_resize() on the child never results in it getting size-requested
6757         at all.
6758
6759         * gtk/testgtk.c (build_option_menu): Remove silly radio-menu-items
6760         in option menus, so that (with luck) people won't copy it into
6761         their apps in the future.
6762
6763         * gtk/gtkoptionmenu.c: Connect ::size_request on the menu
6764         to gtk_option_menu_calc_size. This isn't perfect, but should fix
6765         a lot of problems with changing the size of the menu's menu
6766         items after adding it to the option menu.
6767
6768         * gtk/gtktexttag.c: Include gtkmain.h for gtk_get_default_language().
6769
6770         * gtk/gtkwidget.[ch]: Add a ::direction_changed that triggers when
6771         the text direction for a widget changes.
6772
6773         * gtk/gtk{entry.c,label.[ch],textview.[ch]} gtk/testgtk.c: Use
6774         ::direction_changed to get rid of various hacks.
6775
6776 Sun Jul  2 13:19:12 2000  Owen Taylor  <otaylor@redhat.com>
6777
6778         * docs/Changes-2.0.txt: Move Changes-1.4.txt to the appropriate
6779         name.
6780
6781 Sun Jul  2 13:06:26 2000  Owen Taylor  <otaylor@redhat.com>
6782
6783         * gdk/x11/gdkpixmap-x11.[ch] Changes-1.4.txt: Add a is_foreign
6784         flag to the structure. Do not call XFreePixmap on pixmaps created
6785         by gdk_pixmap_foreign_new().
6786
6787 Sun Jul  2 12:45:50 2000  Owen Taylor  <otaylor@redhat.com>
6788
6789         * gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
6790         value using GdkRGB functionality given GdkColormap and GdkColor.
6791         (name not final, waiting for inspiration.)
6792         
6793         * gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
6794         set the foreground/background of a GC using the GC's colormap
6795         and GdkRGB. (name not final, waiting for inspiration.)
6796
6797         * gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from 
6798         gdk_rgb_get_cmap(), put #define in gdkcompat.h.
6799
6800         * gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
6801         gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
6802         purely a function of the corresponding colormap. Make
6803         gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
6804
6805         * gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
6806         gdk_pixbuf_*create_from_xpm_* in terms of
6807         gdk_pixbuf_new_from_xpm_data(), move into platform independent
6808         code.
6809
6810         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
6811         advantage of the new draw_rgb_32_image_dithalign.
6812
6813         * gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
6814
6815         * gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
6816         on each created GC.
6817
6818         * gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
6819
6820         * gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
6821         which we initialize from the drawable when the GC is created,
6822         if the drawable has a colormap.
6823
6824         * gdk/x11/gdkgc-x11.c: include string.h for memset.
6825
6826         * gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
6827
6828         * gtk/gtklayout.[ch]: Remove unsed configure serial member.
6829
6830 Sat Jul  1 16:28:32 2000  Owen Taylor  <otaylor@redhat.com>
6831
6832         * gdk/x11/gdkevents-x11.c (gdk_event_translate): When
6833         actually returning expose events, make sure to set
6834         the count field properly.
6835
6836         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): Fix
6837         accidentally reintroced bug which always cleared
6838         the graphics_exposures value. 
6839
6840 Wed Jun 28 18:03:09 BST 2000  Tony Gale <gale@gtk.org>
6841
6842         * docs/faq/gtk-faq.sgml: Change DocBook layout slightly
6843
6844 Wed Jun 28 17:49:05 BST 2000  Tony Gale <gale@gtk.org>
6845
6846         * docs/faq/gtk-faq.sgml: Finish Section 6. Add Section 7.
6847
6848 Wed Jun 28 13:31:55 BST 2000  Tony Gale <gale@gtk.org>
6849
6850         * docs/faq/gtk-faq.sgml: Start of Section 6.
6851
6852 Mon Jun 26 19:37:04 2000  Owen Taylor  <otaylor@redhat.com>
6853
6854         * configure.in: Put 1.3.1 in warning message, not 1.3.0.
6855         
6856         (Fixes problem with drawing childless frames. Pointed out
6857         by and a first patch from Anders)
6858         
6859         * gtk/gtkframe.c (gtk_frame_compute_child_allocation): Always
6860         compute a child_allocation, even if we don't have a child.
6861
6862         * gtk/gtkaspectframe.c (gtk_aspect_frame_compute_child_allocation):
6863         Always chain to the parent's impl, even if we don't have a child.
6864
6865 Mon Jun 26 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
6866
6867         * gdk/gdkrgb.c: If possible, create only a single shm segment and
6868         use multiple parts of it instead of creating a bunch of separate
6869         segments, since the maximum number of segments per system is not
6870         large. (This might be worth backporting to GTK+-1.2.x if we make a
6871         new release )
6872
6873         * gdk/gdkrgb.c: Localize a bunch of variables into the GdkRgbInfo
6874         structure in preparation for per-colormap GdkRGB.
6875
6876         * gdk/x11/gdkimage-x11.c (gdk_image_new): Don't set gdk_use_xshm
6877         to False when we get EINVAL from shmget so that the caller of
6878         gdk_image_new can retry with a smaller segment size.
6879
6880 Mon Jun 26 13:01:16 BST 2000  Tony Gale <gale@gtk.org>
6881
6882         * docs/faq/gtk-faq.sgml: Add Sections 4 & 5.
6883
6884 Fri Jun 23 17:54:23 2000  Tim Janik  <timj@gtk.org>
6885
6886         * configure.in: make the current version number 1.3.1 (binary age 0,
6887         interface age 0).
6888         
6889         * gtkfeatures.h, gtkfeatures.h.in: dejavue, get rid of these *again*,
6890         gtkcompat.h is all we want.
6891
6892         * gtk/gtktypeutils.[hc]: define most of the primitive types in terms of
6893         GLib primitive types. fixed g_type_register_fundamental() argument
6894         ordering.
6895
6896         * gtk-config.in (lib_gtk): add -lgdk_pixbuf so third party code
6897         compiles.
6898
6899         * gdk-pixbuf-loader.[hc]: get rid of unistd.h include.
6900         object code cleanup, comment trigraph fixes, etc...
6901
6902 2000-06-23  Havoc Pennington  <hp@redhat.com>
6903
6904         * gtk/gtktextview.c (gtk_text_view_set_buffer): Use anonymous mark 
6905         instead of making up a bogus name for first_para_mark
6906
6907         * gtk/gtkstatusbar.h, gtk/gtkstatusbar.c: Allow 
6908         0 as a context ID
6909
6910 Thu Jun 22 17:43:51 BST 2000  Tony Gale <gale@gtk.org>
6911
6912         * docs/faq/gtk-faq.sgml: Change filename. Add Section 3.
6913
6914 2000-06-21  Havoc Pennington  <hp@pobox.com>
6915
6916         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Fix bug where
6917         we didn't check window->bg_pixmap != GDK_NO_BG.
6918
6919         * gtk/gdk-pixbuf-loader.c: Change to reflect GObject-ification of
6920         gdk-pixbuf
6921
6922 Thu Jun 22 14:02:19 BST 2000  Tony Gale <gale@gtk.org>
6923
6924         * docs/faq/gtk-faq.sgm: Move file to here.
6925           TODO: Update Makfile.am 
6926
6927 Thu Jun 22 13:41:09 BST 2000  Tony Gale <gale@gtk.org>
6928
6929         * docs/gtk-faq.sgm: Add Section 2
6930
6931 Thu Jun 22 08:43:45 BST 2000  Tony Gale <gale@gtk.org>
6932
6933         * docs/gtk-faq.sgm: New file. Start of DocBook
6934           version of the FAQ.
6935
6936 Wed Jun 21 23:04:17 2000  Owen Taylor  <otaylor@redhat.com>
6937
6938         * configure.in (GDK_PIXBUF_MAJOR): Define version
6939         numbers for GDK_PIXBUF_*, as they get substituted
6940         into a header file. Need to consider versioning
6941         for gdk-pixbuf more carefully later.
6942
6943 2000-06-21  Raja R Harinath  <harinath@cs.umn.edu>
6944
6945         Work with srcdir != builddir.   
6946         * demos/testanimation.c: Don't include "gdk-pixbuf.h".  Use
6947         <gtk/gdk-pixbuf-loader.h>, not "gtk-pixbuf/gdk-pixbuf-loader.h".
6948         * demos/testpixbuf.c: Likewise.
6949         * demos/testpixbuf-scale.c: Don't include "gdk-pixbuf.h".
6950         * demos/testpixbuf-drawable.c: Don't include "gdk-pixbuf.h".  Use
6951         <gdk/x11/gdkx.h>.
6952         * demos/pixbuf-demo.c: Use <gtk/gtk.h> not "gtk.h".  Don't include
6953         "gdk-pixbuf.h".
6954         * demos/Makefile.am (INCLUDES): Remove unneeded directories.
6955
6956 Wed Jun 21 19:45:02 2000  Owen Taylor  <otaylor@redhat.com>
6957
6958         * TODO.xml: Change 1.4 version numbers to 2.0.
6959
6960 Wed Jun 21 19:29:08 2000  Owen Taylor  <otaylor@redhat.com>
6961
6962         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf-drawable.c: Indentation
6963         fixups to GTK+ standard.
6964
6965 Wed Jun 21 16:38:13 2000  Owen Taylor  <otaylor@redhat.com>
6966
6967         * gdk-pixbuf/* docs/reference/gdk-pixbuf/*: Welcome aboard,
6968         gdk-pixbuf.
6969
6970         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
6971         fixups for GObject.
6972
6973         * gdk/Makefile.am gdk/gdkpixbuf-render.[ch] gdk/gdkpixbuf.[ch]: Bits of 
6974         gdk-pixbuf with GDK dependencies moved into GDK.
6975         
6976         * gtk/Makefile.am gtk/gdk-pixbuf-loader.[ch]: Temporarily
6977         move gdk-pixbuf-loader here until GObject has signals.
6978
6979         * demos/: New directory of demos. Move demos from
6980         gdk-pixbuf here.
6981
6982         * demos/pixbuf-init.c: Small bit of code to check for
6983         loaders in ../gdk-pixbuf/.libs/gdk-pixbuf, and if found,
6984         set GDK_PIXBUF_MODULEDIR appropriately.
6985
6986         * gdk/gdkcompat.h: Remove GDK_DRAWABLE_PIXMAP compat
6987         define which no longer makes sense.
6988
6989 2000-06-21  Havoc Pennington  <hp@redhat.com>
6990
6991         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Use
6992         gtk_get_default_language
6993
6994         * gtk/gtkmain.h, gtk/gtkmain.c (gtk_get_default_language): 
6995         new function to get the default language
6996
6997         * gtk/gtktexttagprivate.h, gtk/gtktexttag.c, gtktextview.c: 
6998         s/gtk_text_view_style_values/gtk_text_style_values/
6999
7000         * gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktexttagprivate.h:
7001         Add a "language" field to tags.
7002
7003         (gtk_text_tag_set_arg): Fix bug in setting
7004         "bg_full_height_set" tag.
7005
7006 2000-06-21  Havoc Pennington  <hp@redhat.com>
7007
7008         * gtk/gtktextiter.h: Use gunichar instead of gint when appropriate
7009         in the interfaces
7010
7011         * gtk/gtktexttypes.c: Remove UTF functions, use glib 
7012         stuff instead when possible.
7013
7014         * gtk/gtktexttypes.h: Delete some unused constants
7015
7016         * gtktextbtree.c, gtktextiter.c, gtktextsegment.c, gtktextview.c,
7017         testtextbuffer.c: use glib instead of custom unicode routines
7018
7019 Wed Jun 21 12:50:58 2000  Owen Taylor  <otaylor@redhat.com>
7020
7021         * docs/es/: Removed mistakenly added generated sgml
7022
7023         * docs/{gdk.texi,gtk.texi,gdk.sgml} macros.texi texinfo.tex:
7024         Remove outdated info files.
7025
7026         * docs/gtk_tut* docs/package_tutorial.sh docs/tutorial:
7027         Moved tutorial files into subdir
7028
7029         * docs/gtkfaq.sgml docs/faq/gtkfaq.sgml: Move FAQ into
7030         subdir.
7031
7032         * docs/man/gtk_button.pod: Remove. (contents will be
7033         integrated into gtk-reference button page.)
7034
7035         * configure.in docs/Makefile.am docs/tutorial/Makefile.am
7036         docs/faq/Makefile.am: Adjust for new organization
7037
7038 2000-06-21 Christopher Blizzard  <blizzard@redhat.com>
7039
7040         * gdk/x11/Makefile.am (install-data-local): use $(mkinstalldirs)
7041         not $(MKINSTALLDIRS)
7042
7043 Wed Jun 21 12:24:28 2000  Owen Taylor  <otaylor@redhat.com>
7044
7045         * gtk/testgtk.c (create_text): Finish the job Elliot started
7046         of removing font setting test for text widget. (Since text widget
7047         and GdkFont are not deprecated, and cause portability problems.)
7048
7049 Wed Jun 21 11:41:43 2000  Owen Taylor  <otaylor@redhat.com>
7050
7051         * gtk/gtkentry.c gtk/gtkimcontextsimple.c gtk/gtklabel.c
7052         gtk/gtktexttypes.c gtk/testtext.c modules/linux-fb/basic.c:
7053         Remove use of libunicode in favor of new GLib functions.
7054
7055         * gtk/gtkcolorsel.c: Remove conditional includes for FB, win32,
7056         nano-x, framebuffer. The X11 include is just a hack until we get
7057         the necessary functions in gdkcolor.h, so there is no reason to
7058         add other includes of platforms.
7059
7060         * gtk/gtkwindow.c (gtk_window_compute_default_size): Revert 
7061         window bigger than the screen change.
7062
7063         * gtk/testgtk.c: Revert some random changes from Elliot
7064         that had no particular point and were causing testgtkrc
7065         not to function correctly.
7066         
7067         * gdk/gdkregion-generic.h: Revert change from Elliot. Just
7068         because GdkSegment and GdkRegionBox have the same fields,
7069         it doesn't mean that 'typedef GdkSegment GdkRegionBox'
7070         results in clearer code.
7071
7072         * gdk/x11/gdkinput-x11.c (gdk_input_common_select_events,
7073         gdk_input_translate_coordinates): Fix missed GdkObjectification
7074
7075 2000-06-18  Elliot Lee  <sopwith@redhat.com>
7076
7077         * gdk/Makefile.am, gdk/*/Makefile.am: Fix conditionality to work the "right" way.
7078         * gtk/gtk{plug,socket}.h: Missed commits from previous.
7079
7080 2000-06-20  Havoc Pennington  <hp@redhat.com>
7081
7082         * modules/linux-fb/Makefile.am: Make this compile
7083         without framebuffer enabled
7084
7085         * gdk/linux-fb/Makefile.am: Add conditional to not build
7086         framebuffer unless specified in configure
7087
7088         * gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
7089         the size of the target instead of source if -1 was passed for
7090         width/height
7091
7092         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
7093         width/height confusion.
7094
7095 2000-06-19  Havoc Pennington  <hp@redhat.com>
7096
7097         * gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
7098         GDK_DRAWABLE_XID. In the future, we probably want to make it
7099         faster with G_DISABLE_CHECKS turned on.
7100
7101 2000-06-14  Havoc Pennington  <hp@redhat.com>
7102
7103         * gdk/Makefile.am: add gdkpixmap.c
7104
7105         * gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
7106         s/gdk_image_init/_gdk_windowing_image_init
7107
7108         * gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
7109         ref/unref
7110
7111         * gdk/gdkcolor.h: make GdkColormap a GObject subclass
7112
7113         * gdk/gdkcompat.h: remove GdkWindowType compat, since
7114         GdkWindowType is now non-deprecated; 
7115         change gdk_window_get_type() compat to be
7116         gdk_window_get_window_type().
7117
7118         * gdk/gdkdnd.h: make GdkDragContext a GObject.
7119
7120         * gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
7121         virtual GObject. Make all functions call into the vtable.
7122         Move gdk_image_put() guts in here. Remove GdkDrawableType
7123         and gdk_drawable_get_type(), these are now GdkWindow-specific.
7124         draw_image, get_depth, get_size, set_colormap, get_colormap,
7125         get_visual added to the vtable.
7126         
7127         * gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual 
7128         GObject. Virtualize everything. 
7129         (gdk_gc_new_with_values): remove check for destroyed window,
7130         because now GdkWindow::create_gc will check this.
7131         (gdk_gc_set_values): New function to set GC values, this 
7132         was already implemented but wasn't in the header
7133
7134         * gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
7135
7136         * gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
7137         _gdk_window_draw_image(), remove _gdk_windowing_window_class,
7138         remove _gdk_window_class; add _gdk_window_impl_get_type() and
7139         _gdk_pixmap_impl_get_type(). Rename gdk_window_init to
7140         _gdk_windowing_window_init, rename gdk_image_init to
7141         _gdk_windowing_image_init.
7142         
7143         * gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
7144         (gdk_draw_layout): Remove check for destroyed window, 
7145         because all the drawable methods already check it.
7146         
7147         * gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
7148         Add gdkpixmap.c which contains implementation of GdkDrawable
7149         virtual table (by chaining to a platform-specific implementation
7150         object).
7151         
7152         * gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP, 
7153         GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
7154         GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
7155         GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
7156         GdkColormapPrivate. 
7157
7158         * gdk/gdktypes.h: #include <glib-object.h>
7159
7160         * gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
7161         Move most functionality to platform-specific implementation
7162         object. GdkWindow itself now handles the backing store, then
7163         chains to the platform-specific implementation.
7164         (gdk_window_get_window_type): return GdkWindowType of the window.
7165         (gdk_window_peek_children): New routine, returns the children of 
7166         a GdkWindow
7167         (gdk_window_get_children): Was in X11-specific code and did 
7168         XQueryTree. Changed to simply return a copy of window->children; 
7169         so it can go in cross-platform code.
7170         
7171         * gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
7172
7173         * gdk/x11/gdkcolor-x11.c: implement X-specific parts of 
7174         GdkColormap; just changed to use the new private data instead
7175         of casting to GdkColormapPrivate.
7176
7177         * gdk/x11/gdkcursor-x11.c: added a couple typechecks to 
7178         gdk_cursor_new().
7179
7180         * gdk/x11/gdkdnd-x11.c: Change the way we access private fields 
7181         (private data member in the GObject). 
7182         (xdnd_manager_source_filter): Function had broken 
7183         error handling, fix it (use gdk_error_trap_push).
7184
7185         * gdk/x11/gdkdrawable-x11.c: This file now implements
7186         a base class for GdkWindowImplX11/GdkPixmapImplX11. This 
7187         base class is purely for the convenience of the X port,
7188         and not part of the interface to cross-platform GDK.
7189
7190         * gdk/x11/gdkevents-x11.c: Reflect various renamings.
7191         
7192         * gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
7193         specific to X, and returned by the create_gc virtual method
7194         of GdkDrawableImplX11. 
7195         (gdk_x11_gc_set_dashes): Change this to take an array of gint8
7196         rather than gchar, this was also changed in the GdkGC vtable.
7197         (gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
7198         mask is 0, return immediately, instead of checking every flag.
7199         This is faster, and keeps us from segfaulting if values is NULL
7200         and the mask contains some nonzero flags.
7201
7202         * gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
7203         GdkWindow.
7204
7205         * gdk/x11/gdkglobals-x11.c: change type of grab window, since 
7206         GdkWindowPrivate is gone.
7207
7208         * gdk/x11/gdkim-x11.c: rename things that got renamed.
7209
7210         * gdk/x11/gdkimage-x11.c: implement in terms of GObject, and 
7211         remove the image_put stuff that got transferred to GdkDrawable.
7212         
7213         * gdk/x11/gdkinput.c: renamings
7214
7215         * gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
7216
7217         * gdk/x11/gdkpixmap-x11.c: GObject conversion
7218
7219         * gdk/x11/gdkprivate-x11.h: indentation fixes
7220
7221         * gdk/x11/gdkproperty-x11.c: renamings
7222
7223         * gdk/x11/gdkselection-x11.c: renamings
7224
7225         * gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now 
7226         implements the platform-specific "impl" object.
7227         Moved gdk_window_get_children to gdk/gdkwindow.c
7228
7229         * gdk/x11/gdkx.h: Remove all the private structs and private datas
7230         that no longer exist. Add declaration of GdkGCX11 object here.
7231         Fix all the macros to still work. 
7232
7233         * gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
7234         GdkDragContext from the boxed types since they are now GObjects.
7235
7236         * gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
7237         moved xthickness/ythickness into the instance. GtkStyleClass
7238         functions are now in the standard vtable for GtkStyle, so you have
7239         to create a GObject subclass to write a theme engine.
7240         (gtk_style_copy): fixed a leaked PangoFontDescription
7241         (gtk_style_init): renamed gtk_style_realize, so gtk_style_init
7242         can be the standard GObject function.
7243         
7244         * Throughout GTK:
7245         s/style->klass->[xy]thickness/style->[xy]thickness
7246         s/pango_layout_unref/g_object_unref/
7247
7248         * gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
7249         
7250         * gtk/gtksocket.c: Use gdk_window_get_user_data() instead of 
7251         accessing GDK internals.
7252
7253         * gtk/gtkwidget.c: Use gdk_window_peek_children() instead of 
7254         accessing GDK internals.
7255
7256 2000-06-18  Elliot Lee  <sopwith@redhat.com>
7257
7258         * gtk/gtkwindow.c: Don't allow creation of a window bigger than the screen.
7259
7260         * gtk/gtkrange.c: Fix the mega-jumpy-with-lagged-events scrollbar
7261         problem by calculating event position relative to the trough
7262         rather than the slider.
7263         * gtk/gtkdnd.c, gtk/gtkcolorsel.c: Include FB headers if appropriate.
7264
7265         * gdk/gdkgc.h: Add GDK_NOR.
7266
7267         * configure.in, Makefile.am: Add modules top level dir
7268         * configure.in: Only use pangox library if building x11 target.
7269         * gdk/gdkdnd.h: Add GDK_DRAG_PROTO_LOCAL enum for future intra-app use.
7270
7271 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
7272
7273         * gtk/gtkcolorsel.c: Change private class member to be named
7274         private_data throughout the file.
7275
7276         * gtk/gtkcolorsel.h (struct _GtkColorSelection): Change private to
7277         private_data to avoid clashing with keyword.
7278
7279 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
7280
7281         * gdk/gdkdnd.h: Add comment to remove warning.
7282
7283 Sun Jun 18 15:35:35 2000  Pablo Saratxaga <pablo@mandrakesoft.com>
7284
7285         * gtk/gtkrc.cp1251,gtk/Makefile.am: the cp1251 is also used by
7286         Byelorussian language; changed the Makefile and file names 
7287         to reflect that.
7288
7289 Mon Jun 12 16:58:40 2000  Owen Taylor  <otaylor@redhat.com>
7290
7291         * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw
7292         rather than gdk_window_hide; this makes things work
7293         correctly if the window is programmatically hidden while
7294         iconified.
7295
7296 Sun Jun 11 12:46:19 2000  Owen Taylor  <otaylor@redhat.com>
7297
7298         * gtk/gtkdnd.c (gtk_drag_set_default_icon): Fix
7299         cut and paste typo where wrong pixmap was being
7300         unref'ed. (Pointed out by a friend of KUSANO Takayuki.)
7301
7302 Sun Jun 11 10:22:36 2000  Owen Taylor  <otaylor@redhat.com>
7303
7304         * gtk/gtkselection.c (gtk_selection_bytes_per_item):
7305         Add helper function to compute format / bytes 
7306         relationship. Use in a couple places to fix up
7307         errors which assume 8 * format.
7308
7309         * gtk/gtkselection.c (gtk_selection_request): Use 32
7310         rather than 8 * sizeof (GdkAtom), to work correctly
7311         on Alpha.
7312
7313 Thu Jun  8 21:54:51 2000 Christopher Blizzard  <blizzard@redhat.com>
7314
7315         * gtk/Makefile.am (DEPS): deps include libgtk-x11.la, not
7316         libgtk.la
7317         (LDADDS): include libgtk-x11.la and libgdk-x11.la, not the non-x11
7318         versions
7319
7320         * gtk/gtklabel.c (gtk_label_get_text): Make sure that the error
7321         checking macros return NULL since the function has a return value.
7322
7323 Wed Jun  7 15:44:42 2000  Owen Taylor  <otaylor@redhat.com>
7324
7325         * gtk/Makefile.am (LDFLAGS): Add missing backslash that was keeping
7326         GTK+ from building at all.
7327
7328         * gdk/Makefile.am (gdk_c_sources): Fix up some indentation issues.
7329
7330 Mon Jun  5 19:32:53 CEST 2000 Paolo Molaro <lupus@linuxcare.com>
7331
7332         * configure.in, gtk-config.in, gdk/Makefile.am, gdk/*/Makefile.am,
7333         gtk/Makefile.am: make it possible to configure gtk for different
7334         targets on the same platform. The library name is now 
7335         libgtk-$target-$version.so. gtk-config accepts a --target x11|nanox|linux-fb
7336         flag. Only the x11 target compiles right now.
7337         * gdk/gdkregion-generic.h, gdk/gdkregion-generic.c, gdk/gdkpoly-generic.h,
7338         gdk/gdkpolyreg-generic.c: move generic region code in the main GDK dir.
7339         * gdk/nanox/gdk*generic*: delete generic region code.
7340         * gdk/linux-fb/gdk*generic*: delete generic region code.
7341         * README.nanox: update information.
7342         
7343 Tue Jun  6 10:53:59 2000  Owen Taylor  <otaylor@redhat.com>
7344
7345         * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
7346         prepend not append. (Pointed out by Brett Hall.)
7347
7348 Tue Jun  6 01:59:57 2000  Owen Taylor  <otaylor@redhat.com>
7349
7350         * gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
7351
7352 Mon Jun  5 16:00:09 2000  Owen Taylor  <otaylor@redhat.com>
7353
7354         * gdk/gdk.c (gdk_init_check): Add call to g_type_init() - we'll
7355         need this later, and this makes sure that the atexit for
7356         glib gets called after that for GDK, so atexits are
7357         properly ordered for object leak checking.
7358
7359         * gdk/gdk.c (gdk_exit_func): Call gdk_windowing_exit().
7360
7361         * gdk/x11/gdkmain-x11.c (gdk_windowing_exit): Call 
7362         pango_x_shutdown_display()
7363
7364         * gtk/simple.c (main): Close window on destroy.
7365
7366 Mon Jun  5 11:50:02 2000  Owen Taylor  <otaylor@redhat.com>
7367
7368         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): We need
7369         to treat initial creation different from setting with 
7370         regards to the graphics-exposures parameter, so add a parameter
7371         indicating whether this is initial or not.
7372
7373 Mon Jun  5 13:29:31 2000  Owen Taylor  <otaylor@redhat.com>
7374
7375         * gdk/x11/gdkevents-x11.c: Hack gdk_event_get_graphics_expose()
7376         to sort of work by adding an extra return_exposes arg
7377         to gdk_event_translate() - it might be better to simply
7378         deprecate the function altogether and force people to rewrite
7379         without it. gdk_window_scroll() handles most of it, and where
7380         gdk_window_scroll() doesn't work, simply redrawing more does.
7381
7382         * gtk/gtkwidget.c (gtk_widget_set_default_direction): Fix up
7383         assertion.
7384
7385         * gtk-config.in: Include PANGO_CFLAGS/LIBS.
7386
7387         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Remove a 
7388         bunch of pretty much useless /* Print debugging info */ comments 
7389         which had drifted away from the code they were commenting.
7390
7391 2000-06-02  Havoc Pennington  <hp@pobox.com>
7392
7393         * gtk/testtextbuffer.c: Test program to make sure GtkTextBuffer
7394         is in working order.
7395         
7396         * gtk/testtext.c: Change to reflect anonymous mark API
7397
7398         * gtk/gtktextview.c: Convert from mark names to GtkTextMark*.
7399
7400         * gtk/gtktexttag.h (struct _GtkTextTag): remove the affects_size
7401         field, which was unused.
7402
7403         * gtk/gtktextmarkprivate.h (GTK_IS_TEXT_MARK): add this macro,
7404         saves some typing.
7405
7406         * gtk/gtktextbuffer.c: Switch from mark names to GtkTextMark*   
7407
7408         * gtk/gtktextbtree.c (gtk_text_btree_new): set the not_deleteable
7409         flag on the insertion point and selection bound
7410
7411         Throughout, use GtkTextMark instead of GtkTextLineSegment, and 
7412         make mark-manipulation functions take a GtkTextMark* instead of a
7413         mark name.
7414         
7415         * gtk/gtktextmarkprivate.h: Add a "not_deleteable" flag to 
7416         GtkTextMarkBody; will be used to detect attempts to delete
7417         the permanent marks (insert and selection bound)
7418
7419         * gtk/Makefile.am (noinst_PROGRAMS): add testtextbuffer 
7420
7421 Fri Jun  2 12:56:01 2000  Owen Taylor  <otaylor@redhat.com>
7422
7423         * gtk/gtkwidget.c (gtk_widget_init): Initialize DOUBLE_BUFFERED
7424         flag to on.
7425
7426         * gtk/gtkwidget.c (gtk_widget_draw) gtk/gtkmain.c (gtk_main_do_event): 
7427         Honor DOUBLE_BUFFRED_FLAG
7428
7429         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a
7430         function to set the DOUBLE_BUFFERED flag.
7431
7432         * gtk/gtkwidget.h: Add GTK_DOUBLE_BUFFERED flag to indicate whether
7433         or not exposes done on the widget should be double-buffered.
7434
7435         * gtk/gtkenums.h (GtkTextDirection): Reverse order of enumerations
7436         to be what would be expected. (Fixes problem with a
7437         g_return_if_fail() validating a TextDirection enumeration)
7438
7439 Thu Jun  1 23:05:13 2000  Owen Taylor  <otaylor@redhat.com>
7440
7441         * gtk/gtkwidget.c: Remove all references to 
7442         offscreen flag which was no longer used.
7443
7444         * gtk/gtkprivate.h (enum): Remove unused flags and compress.
7445
7446         * gtk/gtkframe.c (gtk_frame_set_label_widget): Check
7447         for non-null label_widget->parent.
7448
7449         * gtk/gtkentry.c: Get rid of code to deal with PangoAttribute 
7450         which no longer was used.
7451
7452         * gdk/gdkpango.c (gdk_pango_context_get_info): make static.
7453
7454         * gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
7455         for null arguments.
7456
7457         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
7458         check for destroyed windows.
7459
7460 Thu Jun  1 13:48:45 2000  Owen Taylor  <otaylor@redhat.com>
7461
7462         * gtk/gtkimmulticontext.c: Add a finalize method and unref
7463         the slave context there.
7464
7465         * gtk/gtkinvisible.[ch]: Make reference counting behavior
7466         identical to GtkWindow.
7467
7468 Thu Jun  1 01:54:11 2000  Owen Taylor  <otaylor@redhat.com>
7469
7470         * Makefile.am gdk/gdkpango.c: Copy the layout render function from
7471         pangox to here, so we can write them independent of rendering
7472         system, using GDK primitives.
7473
7474         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
7475         gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
7476         since we have a rendering-system independent implementation in
7477         terms of draw_glyphs().
7478         
7479         * gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
7480         function to render a single line.
7481
7482         * gdk/x11/gdkpango.c: Move the guts of this file mostly
7483         into ../gdkpango.c, which simplifies things, since we
7484         don't have to deal with raw X gc's.
7485
7486 Fri May 19 04:28:16 2000  Owen Taylor  <otaylor@redhat.com>
7487
7488         * gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
7489         get the logical attributes for a given GtkTextLine.
7490
7491 Tue May 30 16:05:39 2000  Owen Taylor  <otaylor@redhat.com>
7492
7493         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
7494         g_locale_get_codeset() to g_get_codeset() change.
7495
7496 Tue May 30 15:03:19 2000  Owen Taylor  <otaylor@redhat.com>
7497
7498         * gtk/testcalendar.c (calendar_font_selection_ok): Use font
7499         descriptions.
7500
7501         * gtk/gtkentry.c (gtk_entry_draw_text): Center text within
7502         the entry.
7503
7504         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
7505         redoing (vastly simplifying) for Pango. Still needs quite
7506         a bit of work. (Size selection is currently poor. List of 
7507         predefined sizes is not a good idea, since all of these
7508         sizes won't necessarily be distinct.)
7509
7510 Tue May 30 13:50:19 2000  Owen Taylor  <otaylor@redhat.com>
7511
7512         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
7513         CODESET results for LANG=C.
7514
7515 Mon May 29 15:49:10 2000  Owen Taylor  <otaylor@redhat.com>
7516
7517         * gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
7518         which takes a stringized pango font description;
7519         ignore the older 'font' and 'fontset' declarations.
7520
7521         * gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
7522         field with a GdkFont derived via gdk_font_from_description(),
7523         for compatibility. (Should we just remove it entirely?
7524         Probably too much compatibility breakage, but people
7525         should be migrating to the new Pango stuff as quickly
7526         as possible.)
7527
7528 Mon May 29 15:47:41 2000  Owen Taylor  <otaylor@redhat.com>
7529
7530         * gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
7531
7532 Mon May 29 15:44:46 2000  Owen Taylor  <otaylor@redhat.com>
7533
7534         * gtk/gtkcalender.c: Roughly pango-ized. Really needs 
7535         redoing; there are some bugs in size allocation right
7536         now, the semi-existant distinction between header / day
7537         fonts was removed, but, with Pango, could actually
7538         be made functional in a nice way.
7539         
7540         * gtk/testcalender: Move calender from examples into this
7541         directory as a test program. (We really need to restrcture
7542         testgtk into a whole directory full of tests for every
7543         widget or functionality group, separated into multiple .c
7544         files.)
7545
7546 Mon May 29 15:19:56 2000  Owen Taylor  <otaylor@redhat.com>
7547
7548         * gtk/testgtk.c (file_exists): Fix stupid typo that
7549         was keeping RC file from being loaded.
7550
7551         * gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
7552         RC file font code.
7553
7554 Mon May 29 14:31:27 2000  Owen Taylor  <otaylor@redhat.com>
7555
7556         * gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
7557         Add function to load a GdkFont from a PangoFontDescription.
7558
7559 2000-05-29  Tor Lillqvist  <tml@iki.fi>
7560
7561         * gdk/win32/gdkevents-win32.c (gdk_WindowProc): The local "event"
7562         variable should be of type GdkEventPrivate.
7563
7564 Fri May 26 17:16:40 2000  Owen Taylor  <otaylor@redhat.com>
7565
7566         * gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
7567         to have any widget for the label, use a GtkLabel widget
7568         to display the text. (Based partially on a patch from
7569         Anders Carlson.)
7570
7571         (Quite a bit of code reorganization - strip 90% of the
7572         guts out of gtkaspectframe and add a single virtual
7573         func to GtkFrameClass - compute_child_allocation.)
7574
7575 Fri May 26 12:00:02 2000  Owen Taylor  <otaylor@redhat.com>
7576
7577         * gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
7578         (Removed clist->row_center_offset field because caching
7579         it wasn't saving time or code, added private function
7580         _gtk_clist_create_cell_layout()).
7581
7582 Wed May 24 15:59:37 2000  Owen Taylor  <otaylor@redhat.com>
7583
7584         * gtk/gtkaccellabel.c: Pangoized.
7585
7586         * gtk/[hv]ruler.c: Pangoized
7587
7588 Mon May 22 19:23:59 2000  Owen Taylor  <otaylor@redhat.com>
7589
7590         * gtk/gtkfilesel.c (gtk_file_selection_init):
7591         Use gtk_clist_set_column_auto_resize() to remove need
7592         need for manual column width computations.
7593
7594 Mon May 22 18:50:26 2000  Owen Taylor  <otaylor@redhat.com>
7595
7596         * gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel, 
7597         ensuring Pango correctness, and considerably simplifying the
7598         code.
7599         
7600         * gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
7601
7602         * gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
7603         getting of numbers of lines.
7604
7605         * gtk/gtklabel.c (gtk_label_size_request): Set the requisition
7606         to the actual requested width of the lable, not to the wrap
7607         width we set.
7608
7609         * gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
7610
7611         * gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
7612           gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
7613
7614         * gtk/gtktextview.c: Fix structure inheritance.
7615
7616         * gtk/gtkprogressbar.c: Pangoize.
7617
7618 Mon May 22 15:47:30 2000  Owen Taylor  <otaylor@redhat.com>
7619
7620         * gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
7621         in a function.
7622
7623         * gtk/gtktextlayout.c (find_display_line_above): Fixed
7624         bug with computing line tops.
7625
7626         * gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
7627
7628 Thu May 18 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
7629
7630         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
7631         and y_offset coordinates to do what we need now. (The offset between
7632         buffer and layout coordinates has been reintroduced, but is a 
7633         bit different than before.)
7634
7635         * gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
7636         handle the adjustments ourselves, and scroll as necessary using
7637         the new gdk_window_scroll().
7638         
7639         The advantage of this is that when we are incrementally revalidating,
7640         we are essentially rearranging things around the visible portion
7641         of the screen. With the old setup, the visible portion of the
7642         screen was moved around in the layout, so scrolling and redrawing
7643         to track that caused jumping of the display. Since we now
7644         control the scrolling ourselves, we can suppress this and
7645         only redraw when things actually change.
7646
7647 Thu May 18 18:47:25 2000  Owen Taylor  <otaylor@redhat.com>
7648
7649         * gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
7650         the region not just redisplay it after-all, since we store the
7651         cursors in the LineDisplay. (Ugly interactions here between
7652         GtkLayout and GtkTextBTree here.)
7653         
7654         * gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
7655
7656 Thu May 18 18:43:21 2000  Owen Taylor  <otaylor@redhat.com>
7657
7658         * gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
7659         Added function to scroll contents of a window while keeping the
7660         window constant. Works by XCopyArea or guffaw-scrolling depending
7661         on the details of how the window is set up. (guffaw-scrolling
7662         still needs to be filled in.)
7663
7664 Wed May 17 22:36:53 2000  Owen Taylor  <otaylor@redhat.com>
7665
7666         * gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
7667         move the debugging that was tied to a global variable
7668         to that.
7669
7670         * gtk/gtkmarshal.list: Add NONE:INT,INT,INT
7671
7672         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
7673         validated flag, in line data instead of setting height/width to
7674         -1. This allows us to perform operations with partially invalid
7675         buffer (using the old size for invalid lines) and thus to do
7676         incremental vaidation. Keep height/width aggregates up to date
7677         when deleting text and rebalancing the tree.
7678
7679         * gtk/gtktextbtree.[ch]: Add functions validate a line
7680         (gtk_text_btree_validate_line), and to validate up
7681         to a number of pixels (gtk_text_btree_validate).
7682
7683         * gtk/gtktextlayout.[ch]: Add an ::invalidated signal
7684         that indicates that something is changed and a revalidation
7685         pass is needed. Change ::need_repaint to ::changed, and
7686         make it take old and new yranges instead of a rectangle.
7687
7688         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
7689         the line_data_destroy() function from 
7690         gtk_text_btree_add_view() to a virtual function in 
7691         GtkTextLayout
7692
7693         * gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
7694         since we are handling partial repaints in a different fashion
7695         now.
7696
7697         * gtk/gtktextbtree.[ch]: Only repaint the changed portion
7698         of the selection instead of queueing a repaint on the
7699         entire widget.
7700
7701         * gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
7702         get_selection_bounds() down to btree, make the function
7703         in buffer a wrapper around the btree function.
7704
7705         * gtk/gtktextlayout.[ch]: Add functions to check if the
7706         layout is valid and to recompute either a range of pixels
7707         aroudn a line or a certain total number of pixels.
7708
7709         * gtk/gtktextlayout.[ch]: Cache a single line display;
7710         now that we only redraw the needed portions, the hit rate
7711         for this cache is quite high.
7712         
7713         * gtk/gtktextview.[ch]: Keep track of the first paragraph
7714         on the screen so that when re-laying-out the buffer, we can
7715         keep the same place. This requires connecting to ::value_changed
7716         on the adjustments
7717
7718         * gtk/gtktextview.[ch]: Add idle functions to revalidate
7719         the buffer after we receive an ::invalidated signal.
7720         
7721 Wed May 17 22:10:47 2000  Owen Taylor  <otaylor@redhat.com>
7722
7723         * gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
7724         to max of allocation and layout size, not just to the
7725         layout size.
7726
7727         * gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size): 
7728         Invalidate window so it gets redrawn properly.
7729
7730         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
7731         to mean the entire window.
7732
7733         * gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
7734         into public header.
7735
7736 Mon May 15 14:51:31 2000  Owen Taylor  <otaylor@redhat.com>
7737
7738         * gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
7739         to get the name of a mark.
7740
7741         * gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
7742         to find the paragraph from a y position.
7743
7744 Thu May 11 12:57:20 2000  Owen Taylor  <otaylor@redhat.com>
7745
7746         * gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
7747         nodes have width/height >= 0, not > 0.
7748
7749 Tue May  9 21:29:06 2000  Owen Taylor  <otaylor@redhat.com>
7750
7751         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
7752         Add a size_only flag, so when we only need the size, we don't create
7753         useless appearance attributes.
7754
7755         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
7756         duplicate setting of font description.
7757
7758         * gtk/gtkscale.c: Use PANGO_SCALE instead of 1000 
7759
7760 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
7761
7762         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
7763         EXTRA_DIST. It does not work well when the file that
7764         everything depends on is not in the tarball.
7765
7766 Wed Apr 26 00:56:14 2000  Owen Taylor  <otaylor@redhat.com>
7767
7768         * gtk/testgtk.c: Some hacks and fixes so that it basically
7769         works when not sitting in the GTK+ build tree.
7770
7771 2000-05-03  Havoc Pennington  <hp@redhat.com>
7772
7773         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
7774         Properly determine the ordering of the tag root and the current
7775         line within the tree. Previous algorithm only worked if the tag
7776         root's immediate parent was the common root of both the current
7777         line and the tag root.
7778
7779 Wed Apr 26 00:43:00 2000  Owen Taylor  <otaylor@redhat.com>
7780
7781         * gtk/gtktextlayout.c (set_para_values): Fix some bugs in
7782         alignment.
7783
7784         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
7785         the widget text directional dynamically.
7786
7787         * gtk/gtktextview.[ch]: Added functions to get and set default
7788         wrap mode.
7789
7790 Tue Apr 25 23:47:38 2000  Owen Taylor  <otaylor@redhat.com>
7791
7792         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
7793         in cursor location computation.
7794
7795 Tue Apr 25 23:22:59 2000  Owen Taylor  <otaylor@redhat.com>
7796
7797         * gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
7798         vadjusment values properly when layout gets smaller.
7799
7800         * gtk/gtktextview.c (need_repaint_handler): Areas being
7801         passed in are far completely inaccurate, and sometimes
7802         too small, so, for now, just queue a redraw on the
7803         whole visible region.
7804
7805 2000-04-25  Havoc Pennington  <hp@redhat.com>
7806
7807         * gtk/gtktextbtree.c (summary_destroy): new function to 
7808         destroy tag summary nodes
7809         (gtk_text_line_next_could_contain_tag): this function was 
7810         totally broken if the line passed in wasn't below the tag
7811         root. Fix it.
7812         (gtk_text_btree_first_could_contain_tag): In the tag == NULL 
7813         "wildcard" case, we have to do a linear scan. Blah.
7814         (gtk_text_btree_last_could_contain_tag): In tag == NULL case,
7815         we have to do the linear scan
7816         (tag_removed_cb): When a tag is removed from the tag table, 
7817         remove the GtkTextTagInfo node from the btree.
7818         (gtk_text_btree_spew): Implement the spew function, for 
7819         our debugging pleasure.
7820
7821 Tue Apr 25 19:40:18 2000  Owen Taylor  <otaylor@redhat.com>
7822
7823         * gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
7824         a problem with referring to the wrong buffer.
7825
7826         * gtk/gtkentry.c: Fix focus-in/focus-out confusion.
7827
7828         * gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
7829         font description to gtk_style_new() - otherwise things
7830         don't work without a .gtkrc file.
7831
7832         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
7833         tags table if we create it ourself, too.
7834
7835         * gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
7836         it was conflicting with XKB modifiers.
7837
7838         * gtk/gtktextview.[ch]: Add simple support for 
7839         GtkIMContext.
7840
7841 Mon Apr 24 19:34:18 2000  Owen Taylor  <otaylor@redhat.com>
7842
7843         * gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
7844         with deletion from last commit.
7845
7846 Mon Apr 24 19:29:40 2000  Owen Taylor  <otaylor@redhat.com>
7847
7848         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
7849         in the context from the current locale.
7850         
7851         * gtk/gtkentry.c (gtk_entry_size_request): Use language from the
7852         context, not hardcoded value.
7853
7854         * gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
7855         not logical.
7856
7857 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
7858
7859         * gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
7860         attributes - that doesn't handle partial-glyph selection
7861         properly. Instead use new pango_layout_line_get_x_ranges()
7862         functionality to draw the selection.
7863
7864         * gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
7865         now properly handles out-of-range coordinates.
7866
7867         * gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
7868
7869         * gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
7870         public.
7871
7872         * gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
7873         for paragraphs opposite to the base direction of the widget.
7874
7875         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
7876
7877         * gtk/gtktextlayout.c: Don't split segments on marks, since that
7878         causes Arabic words to reshape as you cursor through.
7879
7880         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
7881         cursor position when moving vertically with the arrow keys and
7882         scrolling with page-up/page-down. (Arrow keys save only the X,
7883         scrolling saves both X and Y.)
7884
7885         This means you can line-up / line-down or page-up / page-down
7886         without losing your place, and also that moving vertically
7887         with the cursor keys keeps the same X position, not the same
7888         character count:
7889
7890         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
7891         arrow keys move by display lines, not paragraphs.
7892
7893 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
7894
7895         * gtk/gtklayout.c: Make sure that the bin window is at least
7896         as big as the allocation. (Should we also make sure that the
7897         bin window is big enough to completely cover widget->window?)
7898
7899         * gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
7900         function to get the onscreen rectangle.
7901
7902         * gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
7903         for offsets in window coordinates.
7904
7905 Sun Apr 16 16:13:27 2000  Owen Taylor  <otaylor@redhat.com>
7906
7907         * gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
7908         confusion.
7909
7910         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
7911         from the widget direction.
7912
7913         * gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg): 
7914         Add a "direction" attribute.
7915
7916         * gtk/gtktextview.c: global s/tkxt/text_view/.
7917
7918         * gtk/testtext.c: Added long block of text in Arabic, to test out
7919         the direction attributes. (Some problems with the shaping system
7920         for arabic become obvious - like the fact the cursor splits words
7921         into unjoined pieces.)
7922
7923 Fri Apr 14 12:54:34 2000  Owen Taylor  <otaylor@redhat.com>
7924
7925         * gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
7926
7927         * gtk/gtktextlayout.c: Fix up alignment.
7928
7929         * gtk/testtext.c: Add some tests for centering, wrapping.
7930
7931 Fri Apr 14 09:26:22 2000  Owen Taylor  <otaylor@redhat.com>
7932
7933         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
7934         Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
7935         If we wrote GTK+-specific layout-render function this could just replace
7936         the draw_layout() operation in the vtable.
7937
7938         * gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to 
7939         pango_layout_get_cursor_pos() and use that function.
7940
7941         * gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
7942         is a non-static symbol.
7943
7944         * gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
7945         with gtk_text_btree_find_line_by_y()
7946
7947         * gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
7948         renderer that handles GtkTextAppearance attributes.
7949
7950         * gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h: 
7951
7952           - Move the values in the style that don't affect geometry into a
7953             GtkTextAppearance structure.
7954           - Change underline to take a PangoUnderline and "font" a string
7955             representation of a font description
7956           - Add a "font_desc" attribute which takes a FontDescription structure.
7957
7958         * gtk/gtktextlayout.[ch]:
7959
7960           - Get rid of the display-line list per each line. Instead, we
7961             generate, on demand, a GtkTextLineDisplay structure which]
7962             contains a PangoLayout * and other necesary information
7963             (offsets, cursor locations) for displaying a paragraph.
7964           - Get rid of the code to wrap lines, create display chunks,
7965             etc. Instead, we just go through a paragraph and convert
7966             it into the necessary inputs to a PangoLayout.
7967           - Implement a new attribute type, GtkTextAttrAppearance. This
7968             holds a GtkTextAppearance, and is used to pass colors, 
7969             stipple, etc, through from the layout to the display without
7970             having to use lots and lots of individual attributes.
7971           - Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
7972             in terms of PangoLayout functions.
7973         
7974         * gtk/gtktextview.c: 
7975          
7976           - Handle passing the necessary PangoContext to the layout
7977           - Some fixups in painting to deal with the automatic backing store
7978             and offsetting of GTK+-1.4
7979           - Add a style_set handler so that the default style reacts
7980             properly to theme changes.
7981         
7982         * gtk/gtktext?*.[ch]: Random code-style fixes.
7983
7984         * gtk/testtext.c: Substitute in languages that Pango handles now for Thai
7985
7986 Mon Apr 10 10:33:45 2000  Owen Taylor  <otaylor@redhat.com>
7987
7988         * gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
7989         in original form preparatory to Pango-ization and gdkimcontext-ization.
7990
7991 Thu Apr  6 19:25:39 2000  Owen Taylor  <otaylor@redhat.com>
7992
7993         * gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
7994         so that we can derive from gtkimcontext in language bindings properly.
7995
7996 Thu Apr  6 16:02:52 2000  Owen Taylor  <otaylor@redhat.com>
7997
7998         * gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
7999         Add a compose table including (almost) all the compose combinations
8000         from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
8001         data in the XIM implementation.
8002
8003         * gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
8004         Moved functions to convert keyvalues from and to unicode here from
8005         the win32 port and made them public.
8006
8007 Wed Apr  5 16:37:29 2000  Owen Taylor  <otaylor@redhat.com>
8008
8009         * gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
8010
8011 Wed Apr  5 16:27:45 2000  Owen Taylor  <otaylor@redhat.com>
8012
8013         * gtk/gtkimcontext.[ch]: Base class for new input context system
8014
8015         * gtk/gtkimmulticontext.[ch]: Proxy input context that allows
8016         the real input context implementation to be loaded from modules
8017         and switched on the fly.
8018
8019         * gtk/gtkcontextsimple.[ch]: Simple implementation of an input
8020         context that just does direct keysymbol => unicode translation.
8021
8022         * gtk/gtkentry.[ch]: Start switching editing over to using
8023         GtkInputContext. (No handling of preedit yet.)
8024
8025 Wed Apr  5 15:48:41 2000  Owen Taylor  <otaylor@redhat.com>
8026
8027         * gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
8028         many substitutions. (klass should not be subsituted.)
8029
8030 Wed Apr  5 00:18:14 2000  Owen Taylor  <otaylor@redhat.com>
8031
8032         * configure.in: Add checks for Pango
8033
8034         * configure.in docs/Makefile.am: Add test for sgml2html
8035         and allow 'make dist' without building html, but print out
8036         warnings in that case. (For making snapshots)
8037
8038         * gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
8039         Add Pango libraries and C flags
8040
8041         * gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
8042         Add function (gdk_draw_layout) to draw a pango layout.
8043
8044         * gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
8045         for getting Pango contexts for GDK.
8046
8047         * gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
8048
8049         * gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
8050         editing.
8051
8052         * gtk/gtkentry.c: Hack in simple Hebrew input with direct
8053         keysym => unicode translations. More languages can be added
8054         here, but real input-method support is needed.
8055
8056         * docs/Changes-1.4.txt: Added note about entry behavior.
8057         
8058         * gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
8059         to set the reading direction for a widget and the global direction.
8060         Add test which allows toggling the global direction. Two private
8061         flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
8062
8063         * gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
8064           gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c 
8065
8066         * gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
8067
8068         * gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
8069         underlining now handled by Pango.
8070
8071         * gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
8072         to RCStyle and Style. (Having both this and the old font name and GdkFont 
8073         is temporary.)
8074
8075         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added 
8076         convenience functions for creating contexts and layouts for widgets.
8077
8078         * gtk/testgtk.c: Enhance label tests with multilingual labels.
8079
8080 2000-05-29  Jonathan Blandford  <jrb@redhat.com>
8081
8082         * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
8083         titles to be active, even if they aren't visible.
8084         (gtk_clist_column_titles_passive):  Ditto.
8085
8086 2000-05-21  Nils Barth  <nils_barth@post.harvard.edu>
8087
8088         * gtkmenu.c:
8089         * gtkmenu.h:
8090         * gtktypeutils.h: Spelling/grammar fixes in comments.
8091
8092 Tue May 23 12:25:07 CEST 2000 lupus <lupus@debian.org>
8093
8094         * gdk/nanox/*.h: add missing header files.
8095
8096 Fri May 19 11:52:59 2000  Tim Janik  <timj@gtk.org>
8097
8098         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set
8099         send_event to TRUE.
8100         (gtk_drawing_area_size): queue a resize.
8101
8102 Sun Mar 26 03:21:28 2000  Tim Janik  <timj@gtk.org>
8103
8104         * gtk/gtksignal.c (gtk_signal_handlers_destroy): when unref-ing
8105         the handlers, also invalidate them. bug nailed down by Karl Nelson
8106         <kenelson@ece.ucdavis.edu>.
8107
8108 Fri May 19 06:49:23 2000  Tim Janik  <timj@gtk.org>
8109
8110         * gtk/gtkfontsel.c (gtk_font_selection_get_font_name): handle
8111         "(nil)" foundries, patch from Grigorios Magklis.
8112
8113         * gtk/gtkfontsel.c (gtk_font_selection_load_font): don't crash
8114         on non-available fonts, based on a patch by Grigorios Magklis
8115         <maglis@cs.rochester.edu>.
8116
8117 2000-05-18  Elliot Lee  <sopwith@redhat.com>
8118
8119         * gdk/x11/gdkregion-generic.c: If a region does not have any
8120         rectangles, or if the specified rectangle is not in the region, then return GDK_OVERLAP_RECTANGLE_OUT
8121         instead of GDK_OVERLAP_RECTANGLE_IN.
8122
8123 2000-05-17  Jonathan Blandford  <jrb@redhat.com>
8124
8125         * gtk/gtklayout.c (gtk_layout_map): Remove references to
8126         OFFSCREEN, as it is no longer necessary.
8127
8128 Wed May 17 10:52:12 2000  Owen Taylor  <otaylor@redhat.com>
8129
8130         * gtk/gtkcolorsel.c: Patch from David Santiago
8131         <mrcooger@cyberverse.com> to change things so that the 
8132         indicator of the active palette entry is done independently,
8133         not via the focus, since it should always be visible.
8134
8135 2000-05-17  Tor Lillqvist  <tml@iki.fi>
8136
8137         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Plug same
8138         refcount leaks as in the X11 backend.
8139
8140         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Logging
8141         cosmetics.
8142
8143         * gdk/win32/gdkwindow-win32.c: Similar changes as in X11
8144         backend. Add _gdk_windowing_window_destroy().
8145
8146         * gtk/gtkcolorsel.c: Include correct backend-specific header.
8147         Don't use XColor unless on X11. (No GDK_VISUAL_STATIC_COLOR
8148         either, but these probably do exist on nanox?)
8149         
8150         * gtk/gtkhsv.c: Use G_PI (fresh from <glib.h>) instead of M_PI
8151         which isn't necessarily defined by <math.h>.
8152
8153         * gtk/gtkobject.c (gtk_object_init): Don't go up the class
8154         ancestry past GtkObject.
8155
8156         * gtk/gtktypeutils.h: Mark GTK_TYPE_IDENTIFIER for export/import
8157         from DLL on Win32.
8158
8159         * gtk/gtk.def: Update corresponding to recent changes.
8160
8161         * gtk/makefile.{cygwin,msc}: Updates.
8162
8163 Fri May 12 18:46:51 2000  Owen Taylor  <otaylor@redhat.com>
8164
8165         * docs/Changes-1.4.txt: A bit of editing.
8166
8167         * gdk/gdkwindow.c (_gdk_window_clear_update_area) 
8168         * gdk/x11/gdkwindow-x11.c (gdk_window_hide): Add a function
8169         to clear the update area for the window, and clear it
8170         when hiding a window.
8171
8172         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Ignore
8173         if window destroyed.
8174
8175         * gdk/gdkwindow.c (gdk_window_end_paint): Likewise.
8176
8177         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c gdk/gdkinternals.h: Move 
8178         gdk_window_destroy() to the generic code, since there was a lot of 
8179         window-system-independent logic it in. Add a function:
8180         
8181          _gdk_window_destroy() 
8182
8183         to the internal API to destroy a window without unreferencing it.
8184         Add a function:
8185
8186          _gdk_windowing_window_destroy()
8187
8188         That does the windowing-system-dependent part of destroying 
8189         the window.
8190
8191 Fri May 12 11:07:41 2000  Owen Taylor  <otaylor@redhat.com>
8192
8193         * gtk/testgtk.c: Fix various memory leaks of pixmaps.
8194
8195 Fri May 12 11:06:10 2000  Owen Taylor  <otaylor@redhat.com>
8196
8197         * gtk/gtkwidget.c docs/Changes-1.4.txt (gtk_widget_shape_combine_mask): 
8198         Make gtk_widget_shape_combine_mask() keep a reference count on
8199         the pixmap since it keeps it around.
8200
8201 Fri May 12 10:53:29 2000  Owen Taylor  <otaylor@redhat.com>
8202
8203         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix refcount
8204         leak.
8205
8206         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix refcount
8207         leak with event filters.
8208
8209 Thu May 11 14:29:44 2000  Owen Taylor  <otaylor@redhat.com>
8210
8211         * gtk/gtkdnd.c (gtk_drag_dest_set_internal): Remove the
8212         signal handlers with the right data arguments. (Fixes
8213         some warnings when a widget was repeatedly set as a drag
8214         destination.)
8215
8216         * gdk/x11/gdkdnd-x11.c (gdk_window_register_dnd): Set data on the
8217         window so we can avoid avoid setting the DND properties on the
8218         toplevel window repeatedly.
8219
8220 2000-05-13  Tor Lillqvist  <tml@iki.fi>
8221
8222         * gdk/win32/gdkwin32.h: Define more message types missing from
8223         mingw headers.
8224
8225         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
8226         call gdk_window_destroy_notify(). It was never called. This
8227         probably meant that the GdkWindow was never freed. Thanks Owen for
8228         noticing (!).
8229
8230         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
8231         window as destroyed before calling DestroyWindow(). DestroyWindow()
8232         causes a call to the window procedure (gdk_WindowProc), which
8233         calls gdk_event_translate(), which calls
8234         gdk_window_destroy_notify(), which gets confused unless the window
8235         is set as destroyed.
8236
8237         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
8238         this function to indicate it's win32 only. Put inside #ifdef
8239         G_ENABLE_DEBUG.
8240
8241         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
8242         debugging function. (gdk_event_translate:) Add a default branch
8243         that uses the above function to print debug messages with all
8244         Windows messages symbolically.
8245
8246         * gdk/win32/gdkprivate-win32.h: Declare it, and
8247         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
8248
8249 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
8250
8251         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
8252         public header file.
8253
8254 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
8255
8256         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
8257
8258         * gtk/gtktext.c: made the adjustments no-construct args, simply
8259         provide default adjustments.
8260         (gtk_text_destroy): release adjustments.
8261
8262         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
8263         adjustment argument non-construct.
8264
8265         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
8266         instead of in finalize.
8267         (gtk_progress_get_text_from_value): 
8268         (gtk_progress_get_current_text): 
8269         (gtk_progress_set_value): 
8270         (gtk_progress_get_percentage_from_value): 
8271         (gtk_progress_get_current_percentage): 
8272         (gtk_progress_set_percentage): 
8273         (gtk_progress_configure): ensure an adjustment is present.
8274
8275 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
8276
8277         * gtk/gtkcolorsel.[hc]:
8278         * gtk/gtkcolorseldialog.[hc]:
8279         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
8280         their parent implementation, use bit fields for boolean values, don't
8281         create unused widgets, usage of glib types, braces go on their own
8282         lines, function argument alignment, #include directives etc. etc. etc..
8283
8284         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
8285
8286 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
8287
8288         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
8289
8290         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
8291         of NULL.
8292
8293         * gtk/gtkcombo.c (gtk_combo_item_destroy): don't keep references
8294         to freed data.
8295         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
8296
8297         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
8298         to NULL when the toplevel is getting destroyed.
8299         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
8300         (gtk_menu_destroy): 
8301         (gtk_menu_init): store the information of whether we have to
8302         readd the initial child ref_count during destruction in a new
8303         GtkMenu field needs_destruction_ref_count.
8304
8305         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
8306         here, those reading: learn from my mistake! ;)
8307         in order for set_?adjustment to support a default adjustemnt if
8308         invoked with an adjustment pointer of NULL, the code read (pseudo):
8309         if (v->adjustment) unref (v->adjustment);
8310         if (!adjustment) adjustment = adjustment_new ();
8311         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
8312         now imagine the first unref to actually free the old adjustment and
8313         adjustment_new() creating a new adjustment from the very same memory
8314         portion. here, the latter comparision will unintendedly fail, and
8315         all hell breaks loose.
8316         (gtk_viewport_set_hadjustment):
8317         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
8318         after unreferencing it.
8319
8320         * gtk/gtkcontainer.[hc]: removed toplevel registration
8321         functions: gtk_container_register_toplevel(),
8322         gtk_container_unregister_toplevel() and
8323         gtk_container_get_toplevels() which had wrong semantics
8324         anyways: it didn't reference and copy the list.
8325
8326         * gtk/gtkwindow.c: we take over the container toplevel registration
8327         bussiness now. windows are registered across multiple destructions,
8328         untill they are finalized. the initial implicit reference count
8329         users are holding on windows is removed with the first destruction
8330         though.
8331         (gtk_window_init): ref & sink and set has_user_ref_count, got
8332         rid of gtk_container_register_toplevel() call. add window to
8333         toplevel_list.
8334         (gtk_window_destroy): unref the window if has_user_ref_count
8335         is still set, got rid of call to
8336         gtk_container_unregister_toplevel().
8337         (gtk_window_finalize): remove window from toplevel list.
8338         (gtk_window_list_toplevels): new function to return a newly
8339         created list with referenced toplevels.
8340         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
8341
8342         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
8343         adjustment a non-construct arg.
8344         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
8345         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
8346         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
8347
8348         * gtk/gtkrange.c: added some realized checks.
8349         (gtk_range_destroy): get rid of the h/v adjustments in the
8350         destroy handler instead of finalize. remove timer.
8351         (gtk_range_get_adjustment): demand create adjustment.
8352
8353         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
8354         we simply create them on demand now and get rid of them in
8355         the destroy handler.
8356         (gtk_viewport_destroy): get rid of the h/v adjustments in the
8357         destroy handler instead of finalize.
8358         (gtk_viewport_get_hadjustment): 
8359         (gtk_viewport_get_vadjustment): 
8360         (gtk_viewport_size_allocate): demand create h/v adjustment
8361         if required.
8362
8363         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
8364         gtk_widget_real_destroy () functionality.
8365         (gtk_widget_real_destroy): reinitialize with a new style, instead
8366         of setting widget->style to NULL.
8367
8368 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
8369
8370         * gtk/gtkcalendar.c:
8371         * gtk/gtkbutton.c: ported _get_type() implementation over to
8372         GType, either to preserve memchunks allocation facilities,
8373         or because Gtk+ 1.0 GtkTypeInfo was still being used.
8374
8375         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
8376         over. prepare for ::destroy to be emitted multiple times.
8377         removed reference tracer magic. chain into GObjectClass.shutdown()
8378         to emit ::destroy signal.
8379
8380         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
8381         fundamental.
8382
8383         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
8384         cludge.
8385
8386         * gtk/gtksocket.c:
8387         * gtk/gtkplug.c:
8388         * gtk/gtklayout.c:
8389         * gtk/gtklabel.c:
8390         * gtk/gtkargcollector.c:
8391         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
8392         not being a fundamental anymore, and to work with the new
8393         type system (nuked fundamental type varargs clutter).
8394
8395         * gtk/*.c: install finalize handlers in the GObjectClass
8396         part of the class structure.
8397         changed direct GTK_OBJECT()->klass accesses to
8398         GTK_*_GET_CLASS().
8399         changed direct object_class->type accesses to GTK_CLASS_TYPE().
8400
8401         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
8402         GType. made most of the GTK_*() type macros and Gtk* typedefs
8403         simple wrappers around macros and types provided by GType.
8404         most notably, a significant portion of the old API vanished:
8405         GTK_TYPE_MAKE(),
8406         GTK_TYPE_SEQNO(),
8407         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
8408         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
8409         GTK_TYPE_ARGS,
8410         GTK_TYPE_CALLBACK,
8411         GTK_TYPE_C_CALLBACK,
8412         GTK_TYPE_FOREIGN,
8413         GtkTypeQuery,
8414         gtk_type_query(),
8415         gtk_type_set_varargs_type(),
8416         gtk_type_get_varargs_type(),
8417         gtk_type_check_object_cast(),
8418         gtk_type_check_class_cast(),
8419         gtk_type_describe_tree(),
8420         gtk_type_describe_heritage(),
8421         gtk_type_free(),
8422         gtk_type_children_types(),
8423         gtk_type_set_chunk_alloc(),
8424         gtk_type_register_enum(),
8425         gtk_type_register_flags(),
8426         gtk_type_parent_class().
8427         replacements, where available are described in ../docs/Changes-1.4.txt.
8428         implemented compatibility functions for the remaining API.
8429
8430         * configure.in: depend on glib 1.3.1, use gobject module.
8431
8432 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
8433
8434         * TODO.xml: Various updates to current status.
8435
8436 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
8437
8438         * gtk.m4: Print out version when test succeeds.
8439
8440 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
8441
8442         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
8443         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
8444         
8445         (Original triangle color selector from Simon Budig
8446         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
8447         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
8448         Santiago <mrcooger@cyberverse.com>)
8449
8450         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
8451         out into a separate widget.
8452
8453         * gtk/testgtk.c: Add some checkbuttons for toggling palette
8454         and opacity controls.
8455
8456 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
8457
8458         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
8459         snuck in prematurely.
8460
8461 2000-05-07  Tor Lillqvist  <tml@iki.fi>
8462
8463         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
8464         had deleted a ! operator by mistake, which caused
8465         GDK_SELECTION_CLEAR events never to be generated, which caused
8466         only the first copy to the clipboard from an gtkeditable to
8467         actually cause a copy to the Windows clipboard.
8468
8469 2000-05-06  Tor Lillqvist  <tml@iki.fi>
8470
8471         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
8472         compilation, too. Current mingw gcc distributions include the
8473         necessary headers. Also the necessary IIDs are now in mingw
8474         headers/libraries, and own definitions unnecessary.
8475
8476         More hacking on OLE2 DND, still doesn't work though, and thus
8477         ifdeffed out.
8478
8479         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
8480         here, too.
8481
8482 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
8483
8484         * gdk/nanox/*: nano-X port work in progress.
8485         * gdk/simple.c: simple test for Gdk.
8486         * README.nanox: notes about the port: read this first!
8487         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
8488         with nano-X.
8489
8490 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
8491
8492         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
8493         gdk_window_clear() into common code, implement in terms of
8494         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
8495         not redirected to the backing rectangle.
8496
8497 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
8498
8499         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
8500         EXTRA_DIST. It does not work well when the file that
8501         everything depends on is not in the tarball.
8502
8503 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
8504
8505         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
8506         with recursion where process_updates() is called from
8507         an expose handler. (GtkTextView is highly broken in
8508         doing this, but it should work, so it is a nice test
8509         case.)
8510
8511 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
8512
8513         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
8514         handle the case where updates are queued during processing of
8515         updates.
8516
8517 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
8518
8519         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
8520         window is on gdk_display - use that instead of segfaulting.
8521
8522 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
8523
8524         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
8525         broken and require an empty arg, give it to them.
8526
8527 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
8528
8529         * gtk/gtklabel.h: indentation fixes.
8530
8531 2000-05-02  Tor Lillqvist  <tml@iki.fi>
8532
8533         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
8534         draw too narrow or too low arcs, they seem to fail, at least with
8535         some display drivers.
8536
8537         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
8538
8539         Large changes to the Win32 backend, partially made necessary by
8540         the changes to the backend-independent internal
8541         structures. Attempts to implement similar backing store stuff as
8542         on X11. The current (CVS) version of the Win32 backend is *not* as
8543         stable as it was before the no-flicker branch was merged. A
8544         zipfile with that version is available from
8545         http://www.gimp.org/win32/. That should be use by "production"
8546         code until this CVS version is usable. (But note, the Win32
8547         backend has never been claimed to be "production quality".)
8548
8549         * README.win32: Add the above comment about versions.
8550
8551         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
8552
8553         * gdk/gdk.def: Update.
8554
8555         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
8556         presumably be replaced by some more better mechanism as 1.4 gets
8557         closer to release shape.
8558
8559         * gdk/makefile.{cygwin,msc}: Update.
8560
8561         * gdk/win32/*.c: Correct inclusions of the backend-specific and
8562         internal headers. Change code according to changes in these. Use
8563         gdk_drawable_*, not gdk_window_* where necessary.
8564
8565         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
8566         our old DND.
8567
8568         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
8569         to interpret single characters as UTF-8. Thanks to Hans Breuer.
8570         Use correct function name in warning messages.
8571
8572         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
8573         GSourceFuncs gdk_event_prepare and gdk_event_check.
8574         (gdk_event_get_graphics_expose): Do implement, use
8575         PeekMessage. Thanks to Hans Breuer.
8576         (event_mask_string): Debugging function to print an GdkEventMask.
8577         (gdk_pointer_grab): Use it.
8578
8579         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
8580         (old) book I used claimed was Hangul actually is CJK Unified
8581         Ideographs Extension A. Also, Hangul Syllables were missing.
8582         Improve logging.
8583
8584         * gdk/win32/gdkgc-win32.c: Largish changes.
8585
8586         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
8587         g_win32_getlocale() from GLib, and not setlocale() to get current
8588         locale name.
8589
8590         * gdk/win32/gdkprivate-win32.h
8591         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
8592         gdkwin32.h, similarily as in the X11 backend.
8593
8594         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
8595         assignment was used instead of equals in if test. Thanks to Hans
8596         Breuer.
8597
8598         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
8599         the X11 version.
8600
8601         * gdk/win32/makefile.{cygwin,msc}
8602         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
8603         path to the Win32 headers that works also with the mingw compiler.
8604
8605         * gtk/gtkstyle.c: Include <string.h>.
8606
8607 2000-04-26  Havoc Pennington  <hp@redhat.com>
8608
8609         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
8610         replacing the broken gtk_label_get ()
8611
8612 2000-04-15  Havoc Pennington  <hp@pobox.com>
8613
8614         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
8615         this keeps scanner scripts from getting confused.
8616
8617         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
8618         data, rather than void
8619
8620 2000-04-15  Tor Lillqvist  <tml@iki.fi>
8621
8622         * gtk/gtkclist.c (gtk_clist_motion)
8623         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
8624         with is_hint FALSE, get x and y from the event. They used to be
8625         used uninitialised. The Win32 backend never sends motion events
8626         marked as hints. This for instance fixes the annoying file and
8627         font selector behaviour in the Win32 version.
8628
8629 2000-04-14  Tor Lillqvist  <tml@iki.fi>
8630
8631         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
8632         gtk_private_n_signals variables, they are used by some software,
8633         sigh.
8634
8635         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
8636         installation directory from the Registry, where the installer
8637         should have put it.
8638
8639 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
8640
8641         * gdk/x11/Makefile.am: Fix problem with installation directory for
8642         gdkx.h
8643
8644         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
8645         <mrcooger@cyberverse.com> so that when selecting menus with the
8646         mouse, the first item will not be selected, but when selecting
8647         with an accelerator, or navigating left-right on a menubar with
8648         the menus popped up, the first item will be selected.
8649
8650 2000-04-05  Dan Damian  <dand@dnttm.ro>
8651
8652         * configure.in: Added "ro" to ALL_LINGUAS.
8653
8654 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
8655
8656         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
8657         indentation.
8658
8659         * Makefile.am (EXTRA_DIST): Fix typo.
8660
8661         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
8662         to catch gdkconfig.h
8663
8664         * gtk/gtkitemfactory.c: Added FIXME.
8665
8666 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
8667
8668         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
8669         s/return_if_fail/return_val_if_fail/g and add a return value.
8670
8671 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
8672
8673         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
8674         merge slipup.
8675
8676         * gdk/gdkinput.h: Fix missing line from merge.
8677
8678 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
8679
8680         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
8681         instead of gdkprivate.h.
8682
8683 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
8684
8685         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
8686         parent class to correctly be GtkDialogClass.
8687
8688 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
8689
8690         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
8691         toplevel windows and their immediate children by their parents,
8692         since the size of toplevel windows is out of our immediate
8693         control and we don't get any real benefit from trying to track
8694         this size for clipping.
8695
8696         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
8697         for input_only windows.
8698
8699         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
8700         to fix some hacks and make sure that we don't try to set the
8701         background of input only windows.
8702
8703 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
8704
8705         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
8706         the _really_ internal stuff, and leave gdkprivate.h for the fake private
8707         stuff that we've traditionally exposed.
8708
8709         * gdk/**.c: Use gdkinternals.h where appropriate.
8710
8711         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
8712         not include gdkprivate-x11.h, move all stuff of conceivable public
8713         interest into gdkx.h; keep all really private stuff in
8714         uninstalled header gdkprivate-x11.h.
8715
8716         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
8717         image->image_put on windows through a new function _gdk_window_draw_image()
8718         to allow us to do backing store for images. (Sort of ugly)
8719
8720         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
8721         contexts locally so that we can offset them properly when drawing 
8722         onto backing pixmaps.
8723
8724         * gdk/gdkinput.h: Reindented
8725
8726         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
8727         pixmap or color for the window, so we can properly initialize
8728         our double-buffer pixmaps, and also so that we temporarily set
8729         a background of None while scrolling.
8730
8731         * gdk/gdkregion.h: Revise region boolean operators to have an
8732         interface that is actually convenient - switch from creating new
8733         regions on every op, to "methods" that modify existing regions
8734         (A = A OP B). 3 argument forms which allow dest == src, would also
8735         be possible, but the current interfaces seem to map nicely
8736         onto what needs to be done. (There is quite a lot of region
8737         code in GDK now.)
8738
8739         * gdk/gdkregion.h: Add constructor from rectangle and a copy
8740         operator.
8741
8742         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
8743         gdkpoly-generic.h: Copy region code from Xlib, switch it over
8744         to 32 bit coordinates, modify it to be mostly GTK+ style
8745         and to have interfaces that match gdkregion.h.
8746
8747         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
8748         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
8749         create a backing pixmap and redirect all drawing to
8750         that backing pixmap until a matching gdk_window_end_paint().
8751
8752         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
8753         Create a special drawable class for GtkWindow's that 
8754         redirects the drawing to the backing pixmap as necessary
8755         and then calls the real operations in _gdk_windowing_window_class.
8756
8757         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
8758         Store invalid region for each window. Generate expose events for invalid
8759         region in an idle. This replaces both the expose compression
8760         and the redrawing queuing in GTK+. It is both more efficient and
8761         simpler than either one individually and far more so then the
8762         combination.
8763
8764         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
8765         Emulate 32 bit coordinates for windows with 16 bit coordinates
8766         by offsetting drawing, guffaw scrolling techniques and
8767         mapping/unmapping child windows as necessary.
8768
8769         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
8770         where, when invalid regions are processed, the region is stored,
8771         and if expose events come in that are detectably duplicate
8772         the processed exposes (by comparison of event serial numbers),
8773         the stored region is subtracted out of those exposes.
8774
8775         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
8776         regions newly exposed when scrolling or resizing windows.
8777         This, combined with forcing processesing of queued invalidated
8778         regions, gives nice flicker-free scrolling.
8779
8780         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
8781         invalidated regions after every scroll.
8782
8783         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
8784         emulation in GDK. Its, for all practical purposes just a
8785         GtkViewport/GtkFixed hybrid now.
8786
8787         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
8788         (16-bit) structures as necessary instead of just casting.
8789
8790         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
8791         in terms of the structures from gdkregion-generic.c, using appropriate
8792         offsets from GDK to X11 coordinates. Cache clip mask and
8793         origin and ts origin locally and only flush to the server
8794         when drawing, to avoid constantly setting and resetting these
8795         values when offsetting GC's for scrolling and backing pixmaps.
8796
8797         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
8798
8799         * gtk/gtkcontainer.c: Call process_all_updates at end
8800         of resizing to reduce flicker. (Avoids having redraw
8801         lag arbitrarily behind resize under some circumstances)
8802
8803         * gtk/gtkentry.c: Remove old backing store code, and simply take
8804         advantage of the new backing store capabilities of GDK.
8805
8806         * gtk/gtkmain.c: Simple implementation of widget backing
8807         store - simply push a paint while handling each expose.
8808         (Should really be configurable widget for widget.)
8809         
8810         * gtk/gtkwidget.c: Remove all the old complicated redraw
8811         code, and simply invalidate the GDK windows from
8812         gdk_window_queue_clear(), etc. (Sigh, so much carefully
8813         debugged complexity ... gone to the winds.)
8814
8815         Remove all the code for suppressing expose events while
8816         resizes are pending; this isn't needed since the invalid
8817         areas won't be processed until after the resizes are
8818         processed, since they are in a lower priority idle.
8819
8820 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
8821
8822         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
8823         and height of dest rectangle for non-intersecting rectangles.
8824
8825 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
8826
8827         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
8828         for GdkRectangle.
8829
8830 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
8831
8832         * gdk/gdk{events,image,private,types,window}.h
8833          gdk/x11/gdkinputprivate.h: Change all coordinates
8834          from int16 to int. Also, Change width and height from
8835          unsigned to signed to avoid all the stupid C 
8836          signedness bugs.
8837
8838 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
8839
8840         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
8841         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
8842         Add some more detailed checking.
8843
8844         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
8845         New function to retrieve the depth of a drawable.
8846
8847         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
8848         field, reorder fields to save memory. 
8849
8850 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
8851
8852         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
8853         of the background image instead of scaling the background down to
8854         a line.
8855
8856         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
8857         which temporarily set slider to wrong size.
8858
8859         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
8860         queue_clear().
8861
8862 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
8863
8864 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
8865
8866         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
8867
8868 2000-03-17  Tor Lillqvist  <tml@iki.fi>
8869
8870         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
8871         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
8872
8873         * gdk/win32/gdkfont-win32.c
8874         * gdk/win32/gdkproperty-win32.c
8875         * gdk/win32/gdkselection-win32.c
8876         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
8877         now declared such.
8878
8879 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
8880
8881         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
8882
8883 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
8884
8885         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
8886         is called without trapping X errors.
8887
8888 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
8889
8890         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
8891         way into the fontset lists.
8892
8893 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
8894
8895         * gtk/gtkthemes.h: add extern "C" scope.
8896
8897 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
8898
8899         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
8900         to make appends to the list constant. (gtk-guy-990901-0.patch)
8901
8902 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
8903
8904         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
8905         for the typename hash table.
8906
8907 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
8908
8909         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
8910         to make sure we never divide by zero. 
8911         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
8912
8913 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
8914
8915         * gtk/gtkfontsel.c: Apply patch from
8916         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
8917         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
8918
8919         Also, some cleanups in atom handling.
8920
8921 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
8922
8923         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
8924         not GtkWidget.
8925
8926 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
8927
8928         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
8929         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
8930         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
8931         more guint wrap-around bugs before going to bed.
8932
8933 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
8934
8935         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
8936         guint wrap arounds in allocation.width.
8937
8938         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
8939         process untill we fit the allocation given.
8940
8941 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
8942
8943         * gtk/gtkwidget.c:
8944         (gtk_widget_unrealize): guard widget access with ref/unref
8945         around signal emission.
8946         (gtk_widget_hide): same here, but also check its destroyed
8947         state before queueing a resize.
8948
8949 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
8950
8951         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
8952         of gtk_default_insensitive_bg as insensitive base color.
8953
8954         * gtk/gtktext.c (gtk_text_style_set): set the background color according
8955         to the widget's state.
8956         (gtk_text_realize): same here.
8957         (gtk_text_state_changed): same here.
8958         (draw_bg_rect): compare background color against base[] from
8959         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
8960
8961 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
8962
8963         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
8964         grabs are active, unless a delete event is send to the toplevel
8965         of the currently grab holding widget.
8966
8967 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
8968
8969         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
8970         debugging g_print's.
8971
8972 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
8973
8974         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
8975         ever make the scrolled-window requisition ever depend on the 
8976         visibility state of the scrollbars for the AUTOMATIC policy. 
8977         This breaks the GTK+ requisition model, and causes loops.
8978
8979 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
8980
8981         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
8982         the default font to avoid problems with XFree86-4.0 where the
8983         default charset is iso10646-1, not iso8859-1.
8984
8985 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
8986
8987         * acinclude.m4
8988         * config.guess
8989         * config.sub
8990         * ltconfig
8991         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
8992
8993         * gtk/Makefile.am: minor cosmetic consistency tweak
8994
8995 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
8996
8997         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
8998         the activate_time to 0, so that we handle a quick
8999         press/release press/release properly and don't suppress
9000         the second release. (Red Hat bug #7545)
9001
9002 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
9003
9004         * gtk/gtkctree.c (row_delete):
9005         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
9006         bugs with destruction notifier, *always* update internal
9007         structures *before* calling user code.
9008
9009 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
9010
9011         A few more fixes for bug #5487, #2051, #2677.
9012         * gtk/gtkclist.c : 
9013         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
9014         not GDK_BUTTON_PRESS.
9015         (resync_selection): resync only if selection_mode is
9016         GTK_SELECTION_EXTENDED
9017         * gtk/gtkctree.c (resync_selection): same here
9018
9019 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
9020
9021         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
9022         gdk_drag_get_selection() and gtk_menu_detach().
9023
9024         [ From Jeroen Ruigrok/Asmodai ]
9025
9026 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
9027
9028         * gtk/gtknotebook.c (gtk_notebook_size_request): 
9029         page->tab_label can be NULL.
9030
9031 2000-01-25  Havoc Pennington  <hp@pobox.com>
9032         
9033         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
9034         arg is boolean
9035
9036         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
9037
9038         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
9039
9040         * gdk/gdkproperty.c (gdk_property_get): return boolean
9041
9042         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
9043
9044         * gdk/gdkim.c (gdk_im_ready): return boolean
9045
9046         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
9047
9048         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
9049         glib clash, should fix glib)
9050
9051         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
9052         (gdk_get_show_events): return gboolean, and canonicalize 
9053         to TRUE/FALSE
9054
9055         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
9056         colormap is private
9057         (gdk_colors_alloc): gboolean whether to be contiguous
9058         (gdk_color_equal): return gboolean since we are a predicate
9059         and not a qsort() (this looks semi-wrong due to glib breakage,
9060         IMO glib should be fixed)
9061         
9062         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
9063         (gdk_get_use_xshm): return gboolean
9064         (gdk_pointer_is_grabbed): return gboolean
9065
9066         * gdk/gdk.h: Change prototypes to match all the above changes,
9067         and re-run egtk-format-protos as required.
9068
9069 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
9070
9071         * gtk/gtkctree.c (resync_selection): 
9072         * gtk/gtkclist.c (resync_selection):
9073
9074         Return immediately if clist->drag_pos < 0. This is a workaround
9075         for the corrupt state that the clist gets into when a
9076         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
9077
9078         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
9079         
9080         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
9081         variable from recent commit.
9082
9083 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
9084
9085         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
9086
9087 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
9088
9089         * gtk/Makefile.am: prefix all autogenerated source that get build in
9090         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
9091         in builddir. since we subsequently cd into srcdir for autogeneration,
9092         the paths have to be stripped from the target file names, thusly we
9093         use $(@F) as target names now.
9094         put a comment about configure.in's --disable-rebuilds option,
9095         which can be used for non-writable source directories, for development
9096         setups though, srcdir has to be *writable*.
9097
9098 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
9099
9100         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
9101           Finish the job of allowing event to be NULL.
9102           (Fixes bug #4283, reported by Chris Blizzard)
9103
9104         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
9105           things so that the cursor appears on screen, properly
9106           take into account INNER_BORDER.
9107           (Fixes bug #4754, reported by Antonio Campos)
9108
9109 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
9110
9111         * gtk/gtknotebook.c (gtk_notebook_map): Don't
9112           show the tab_label unless it itself is visible.
9113
9114           gtk/gtknotebook.c (gtk_notebook_size_request):
9115           Do a better job of making sure that the visibility
9116           of the tab label corresponds to whether it should
9117           be mapped or not.
9118
9119 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
9120
9121         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
9122           Use the requisition, not the allocation, since the
9123           allocation has not necessarily been computed yet.
9124           (Pointed out by Eugene Osintsev)
9125
9126 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
9127
9128         * gtk/gtkstyle.c (gtk_style_new): Dont' set
9129           style/base[GTK_STATE_INSENSITIVE] both to
9130           gtk_default_insensitive_bg!
9131           (Bug #2187, reported by Jonathan Blandford)
9132
9133         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
9134           Add Alt_L, Alt_R to list of invalid accelerators.
9135           (Bug #3736, reported by Vlad Harchev)
9136
9137 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
9138
9139         * gtk/gtkfilesel.c (open_ref_dir): Fix several
9140         bugs which occured after an attempt to open 
9141         invalid home directory left cmpl_state->reference_dir == NULL.
9142
9143          - completion on files in home directory didn't work
9144          - completion on an empty string caused  segfault
9145
9146          (Bug #3678, reported by Steve Ratcliffe)
9147
9148         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
9149         cut and paste error that was causing scales to
9150         be incorrectly positioned.
9151         (Bug #2956,
9152          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
9153
9154 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
9155
9156         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
9157         when checking for dcgettext, if we've found we needed
9158         it for dgettext.
9159 +
9160 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
9161
9162         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
9163         queue_clear on NO_WINDOW widgets during a reparent,
9164         since at that point the window and widget heirarchies
9165         are out of sync. This stops crashing in some cases
9166         (the scrolled window reparent test, for instance), and
9167         _probably_ won't cause drawing errors.
9168
9169         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
9170         test do what it was supposed to do and be robust against
9171         window closings, etc. (Bug #2443)
9172
9173 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
9174
9175         * gtk/gtkentry.c: Fix return values on mouse events.
9176         (Bug #2686, Sky <seb_sky@yahoo.com>)
9177
9178         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
9179         (pointed out by George Lebl)
9180
9181         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
9182         (From Ettore Perazzoli  <ettore@helixcode.com>)
9183  
9184 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
9185
9186         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
9187         clicks between rows or outside calender area correctly.
9188         (Patch from Damon Chaplin)
9189
9190         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
9191         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
9192           Call destroy function when overwriting existing data. 
9193           (Pointed out by Damon Chaplin)
9194
9195 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
9196
9197         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
9198           which was causing problems on various systems with Xmu.
9199           This hasn't been needed for a very long time.
9200           (Fixes #1185 3167)
9201
9202 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
9203
9204         * gdk/gdki18n.h: Include <ctype.h> when defining
9205           gdk_isw* in terms of is* as a fallback.
9206           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
9207
9208 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
9209
9210         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
9211           realize the widget when it is size allocated!
9212           (old, old bug)
9213
9214         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
9215           Removed unused call to gdk_window_get_size() that
9216           showed up when the above was fixed.
9217
9218 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
9219
9220         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
9221           fix up widget->window when the widget is a
9222           NO_WINDOW container widget.
9223
9224 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
9225
9226         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
9227           to account for the fact that feof() does _not_ 
9228           return TRUE on errors, and thus avoid infinite loops
9229           when trying to use gdk_pixmap_create_from_xpm()
9230           on unreadable values.
9231
9232 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
9233
9234         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
9235
9236 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
9237
9238         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
9239           gdk_gc_set_dashes to take gint8 instead of gchar to
9240           make it clearer that it is _not_ a NULL terminated string.
9241
9242         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
9243           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
9244           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
9245           arguments.
9246
9247 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
9248
9249         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
9250         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
9251         background size relative to our allocation, guard against small
9252         allocations, we may have not yet been size allocated.
9253
9254 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
9255
9256         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
9257         not just version == 3. We implement all 3 + most of 4 - 
9258         (we don't support matching text/plain;charset=iso-8859-1
9259         to a dest that expects text/plain). We'll still advertise
9260         3 to be safe, but any client implementing version >= 3
9261         must interoperate with 3.
9262         
9263 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
9264
9265         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
9266         background and gc members, add a warning in gtk_tooltips_set_color()
9267         indicating that this function is deprecated.
9268
9269 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
9270
9271         * docs/gtkfaq.sgml: FAQ Update:
9272           - Minor cleanups (Emmanuel, me)
9273           - New questions:
9274                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
9275                 How can I retrieve the text from a GtkMenuItem? (timj)
9276                 How do I validate/limit/filter the input to a GtkEntry? (me)
9277                 Memory does not seem to be released when I free the list
9278                         nodes I've allocated (timj)
9279
9280 2000-03-07  Tor Lillqvist  <tml@iki.fi>
9281
9282         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
9283         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
9284         for which it is no use to call GetLastError onWin9x.
9285         (gdk_other_api_failed) New function, for general error
9286         reporting without calling GetLastError.
9287         (gdk_win32_api_failed) OTOH, this function always calls
9288         GetLastError. (gdk_win32_last_error_string) Remove this function,
9289         GLib has the equivalent now.
9290
9291         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
9292         call them with function name, file name and line number in the
9293         arguments.
9294
9295         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
9296         functions.
9297         
9298         * gtk/gtk.def: Add some missing entry points.
9299
9300         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
9301         gtk_paned_set_gutter_size, which don't exist any longer, as void.
9302         
9303         Fixes by Hans Breuer:
9304
9305         * gdk/makefile.msc: Update for debugging.
9306
9307         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
9308         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
9309         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
9310         in the dash_list.
9311
9312         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
9313         the x11 backend.
9314
9315         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
9316
9317         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
9318
9319 2000-03-04  Tor Lillqvist  <tml@iki.fi>
9320
9321         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
9322         just pixel value of background colour.
9323
9324         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
9325         containing code snippet previously duplicated in a couple of
9326         places.
9327         
9328         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
9329         gdk_colormap_color.
9330
9331         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
9332         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
9333         events for autorepeated Shift, Control and Alt keys. Use
9334         gdk_colormap_color.
9335
9336         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
9337         pointer is inside the window the cursor of which we are setting,
9338         call SetCursor immediately.
9339
9340         * gdk/win32/makefile.cygwin
9341         * gtk/makefile.cygwin: If we don't have the build number stamp
9342         file, use zero.
9343
9344         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
9345         gtk_paned_set_gutter_size as empty.
9346
9347         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
9348         
9349 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
9350
9351         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
9352           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
9353           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
9354           docs/gtk_tut.sgml docs/gtk.texi TODO:
9355
9356           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
9357
9358 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
9359
9360         * gtk/gtkcalendar.c: Implement num_marked_dates,
9361           and don't emit mutiple day_selected signals on
9362           month_prev.
9363
9364 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
9365
9366         * docs/make-todo (lineno): let title and logo be configurable so
9367         that GNOME can use this script too.
9368
9369         * TODO.xml: added logourl and a title
9370
9371 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
9372
9373         * TODO.xml: Added some UI items, and an explanatory
9374         comment at the top of the file.
9375
9376 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
9377
9378         * TODO.xml: some updates, added abunch of new entries.
9379         a note for those fiddeling with this file, when done
9380         with it, invoke:
9381         $ ./docs/make-todo TODO.xml >/dev/null
9382         and correct output errors before comitting changes.
9383
9384 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
9385
9386         * TODO.xml: Added XML-structured TODO file.
9387         * docs/make-todo: python script to turn TODO.xml into
9388           pretty XML output. 
9389
9390 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
9391
9392         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
9393         the function to let it draw the seven dots, instead of the old,
9394         much maligned, method.
9395         (draw_dot): New function to draw a dot.
9396
9397         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
9398         to draw the handle inside the border width as opposed to outside.
9399         Use paint function instead of gdk_draw_point.
9400
9401         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
9402         to draw the handle inside the border width as opposed to outside.
9403         Use paint function instead of gdk_draw_point.
9404
9405         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
9406         Change indenting to be more GTK like.
9407
9408 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
9409
9410         * docs/gtk_tut.sgml: New section on GtkCalendar
9411         * examples/calendar: Update example code
9412
9413 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
9414
9415         * docs/gtkfaq.sgml: FAQ Update
9416
9417 2000-02-19  Anders Carlsson  <andersca@gnu.org>
9418
9419         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
9420         to prevent the scroll event to be propagated upwards.
9421
9422 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
9423
9424         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
9425         OwnerGrabButtonMask from button entries for
9426         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
9427
9428         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
9429         to the event mask (which will result in button/press release
9430         being added to the event mask on Unix) so scrolling works
9431         for layouts in scroll windows.
9432
9433         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
9434
9435         Patch from Anders Carlsson  <andersca@gnu.org> to add
9436         a scroll event.
9437
9438         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
9439         scrolling to the "Test Scrolling" part of testgtk.
9440  
9441         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
9442  
9443         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
9444         it against GDK_SCROLL.
9445  
9446         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
9447         way of mouse wheel scrolling.
9448  
9449         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
9450  
9451         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
9452  
9453         * gtk/gtkmain.c: Removed previous mouse wheel hack.
9454  
9455         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
9456         gdk_event_mask_table.
9457  
9458         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
9459         GdkEventScroll handler.
9460  
9461         * gdk/gdkevents.h: Added GdkEventScroll structure.
9462  
9463 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
9464
9465         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
9466         and Anders Carlsson to change the Paned widgets so that they
9467         can be dragged from anywhere along the length. Also change
9468         the way that this is drawn to make this apparent.
9469
9470         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
9471         from George Lebl to check that option_menu->menu is present
9472         before getting history.
9473
9474 2000-02-14  Tor Lillqvist  <tml@iki.fi>
9475
9476         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
9477         before the assertion for non-NULL segment list.
9478
9479         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
9480         Seems that pattern brushes *must* be 8x8 pixels! At least on my
9481         machine, but it might be display driver dependent. Sigh, so make
9482         sure the stipple is that size. Does Windows suck or what?
9483
9484         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
9485         places.
9486
9487 2000-02-13  Havoc Pennington  <hp@pobox.com>
9488
9489         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
9490         refcount to 1
9491         (gdk_cursor_new): init refcount to 1
9492
9493         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
9494
9495 2000-02-13  Tor Lillqvist  <tml@iki.fi>
9496
9497         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
9498         so that we don't have to do unnecessary settings to the HDC.
9499
9500         * gdk/win32/gdkdrawable-win32.c
9501         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
9502         gdk_gc_predraw.
9503
9504         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
9505         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
9506         GDI paths, call WidenPath to get the outline of the stroken path,
9507         and then fill the outline (with the brush that was built from the
9508         stipple).
9509
9510         * gdk/win32/gdkgc-win32.c: Factor out common code from
9511         _gdk_win32_gc_new and gdk_win32_gc_set_values into
9512         gdk_win32_gc_values_to_win32values. Use correct colour for
9513         SetBkColor() (Until now the code actually used a random colour in
9514         the call to SetBkColor()... but that didn't show up as not many
9515         GDI APIs use the background colour. Pattern (opaque stippled)
9516         brushes do.)
9517
9518         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
9519         gdk_win32_api_failed): New functions for error logging.
9520
9521         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
9522         WIN32_API_FAILED to call them, passing function or file name and
9523         line number.
9524
9525         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
9526
9527         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
9528         GdkColor for foreground and background in GdkGCWin32Data.
9529
9530         * gdk/makefile.cygwin: Link in the resource object separately.
9531
9532         * gdk/win32/rc/gdk.rc
9533         * gtk/gtk.rc (New file)
9534         * gdk/win32/makefile.cygwin
9535         * gtk/makefile.cygwin: Update build number in DLLs automatically,
9536         as in GLib.
9537
9538 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
9539
9540         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
9541         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
9542         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
9543         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
9544         parameters given and cursor->ref_count. coding style fixups.
9545
9546         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
9547         not GtkWidget.
9548         
9549         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
9550         fix up widget macros and add _GET_CLASS() variant.
9551         
9552         * gtk/*.c: some GtkType fixups.
9553
9554 2000-02-09  Tor Lillqvist  <tml@iki.fi>
9555
9556         * gdk/win32/gdkproperty-win32.c
9557         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
9558         were reversed.
9559
9560 2000-02-04  Tor Lillqvist  <tml@iki.fi>
9561
9562         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
9563         g_filename_to_utf8 to convert the font names Windows gives us from
9564         whatever is the default codepage to UTF-8.
9565         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
9566         in the other direction.
9567
9568         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
9569         error in debugging output.
9570
9571 2000-02-02  Tor Lillqvist  <tml@iki.fi>
9572
9573         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
9574         and height parameters to gdk_window_clear_area(). Not minus one.
9575
9576 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
9577
9578         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
9579         checks if the widget passed to gtk_drag_get_data() was not the
9580         dest widget.
9581
9582 2000-02-01  Tor Lillqvist  <tml@iki.fi>
9583
9584         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
9585         g_filename_from_utf8 functions (which were added a moment ago to
9586         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
9587         size buffers.
9588
9589         gtk_file_selection_get_filename returns the filename in the C
9590         runtime encoding. It calls g_filename_from_utf8, but copies the
9591         returned string to a static buffer, which is returned. I think
9592         this is better than returning the result from g_filename_from_utf8
9593         directly, which would mean all apps that use it would have to free
9594         the return value. Or should this function care about this issue at
9595         all? Maybe a new function with clearly defined semantics.
9596
9597         * gtk/gtkfilesel.h: Add comment about
9598         gtk_file_selection_get_filename returning the filename in the C
9599         runtime's encoding.
9600
9601         * README.win32
9602         * gdk/gdk.def
9603         * gdk/makefile.{cygwin,msc}
9604         * gtk/gtk.def: Updates.
9605
9606         * gdk/gdkcursor-win32.c: Initialise refcount.
9607
9608 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
9609
9610         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
9611
9612 2000-01-30  Havoc Pennington  <hp@pobox.com>
9613
9614         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
9615         destroy
9616
9617         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
9618
9619         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
9620         implemented in platform-specific code
9621
9622         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
9623
9624         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
9625         underscore in front
9626
9627         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
9628         put an underscore in front
9629
9630         * gdk/gdkcursor.c: new file, implements
9631         gdk_cursor_ref/gdk_cursor_unref
9632
9633         * gdk/gdkcursor.h: Refcount GdkCursor
9634
9635         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
9636
9637 2000-01-29  Tor Lillqvist  <tml@iki.fi>
9638
9639         * gdk/gdkwindow.h
9640         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
9641
9642 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
9643
9644         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
9645         structures to properly inherit from GtkWidget not GtkBin.
9646
9647 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
9648
9649         * gtk+.spec.in: Added lib/gtk+/include/* to %files
9650         (bug #5178 - Peter Wainright)
9651         
9652         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
9653         so that it will be installed.
9654         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
9655
9656 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
9657
9658         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
9659         for the GtkStyleClass vtable const.
9660
9661         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
9662         take a const string argument like GtkTranslateFunc. This will
9663         require changes in use code.
9664
9665 2000-01-19  Tor Lillqvist  <tml@iki.fi>
9666
9667         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
9668         semantics (to mimic the X11 backend, which just calls XClearArea)
9669         is to check for zero width (and height), and in that case use the
9670         window's width minus x (height minus y). This fixes for instance
9671         some redraw problems with gtkclist, which were easily noticeable
9672         in the gtk file selection widget.
9673
9674         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
9675         windows.
9676
9677 2000-01-13  Tor Lillqvist  <tml@iki.fi>
9678
9679         * configure.in
9680         * gdk/Makefile.am
9681         * gdk/x11/Makefile.am
9682         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
9683         (bug #5177).
9684         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
9685         out later.
9686
9687 2000-01-09  Tor Lillqvist  <tml@iki.fi>
9688
9689         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
9690         WM_MOVE for iconified or invisible windows. This fixes various
9691         problems when minimising windows. Thanks to Bernd Herd.
9692
9693 2000-01-05  Tor Lillqvist  <tml@iki.fi>
9694
9695         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
9696         backend's draw_lines method, not draw_points.
9697
9698 2000-01-02  Tor Lillqvist  <tml@iki.fi>
9699
9700         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
9701         before Owen's reorganisation: Don't have queued_events and
9702         queued_tail statics in this file, but use gdk_queued_events and
9703         gdk_queued_tail. This makes exposure event compression work again.
9704
9705         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
9706         seem to be needed?
9707
9708 1999-12-30  Tor Lillqvist  <tml@iki.fi>
9709
9710         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
9711         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
9712         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
9713         doesn't do anything.
9714
9715         * gdk/gdk.def: Add gdk_xid_table_insert.
9716
9717         * gdk/win32/gdkprivate-win32.h
9718         * gdk/win32/gdkevents-win32.c
9719         * gdk/win32/gdkinput-win32.c
9720         
9721         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
9722         extension_events field in the GdkWindowWin32Data struct. Use only
9723         the extension_events field in GdkWindowPrivate. Previously one was
9724         set, and the other one tested, which broke tablet
9725         functionality. Thanks to Keishi Suenaga for pointing this out.
9726
9727 1999-12-18  Tor Lillqvist  <tml@iki.fi>
9728
9729         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
9730         When handling a single character (text length == 1), don't handle
9731         it as if it was UTF-8.
9732
9733 1999-12-11  Tor Lillqvist  <tml@iki.fi>
9734
9735         * Makefile.am: Distribute README.win32.
9736         
9737         * gdk/Makefile.am
9738         * gdk/win32/Makefile.am: Distribute Win32 files.
9739
9740         * gdk/makefile.msc: New file.
9741
9742         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
9743         after label).
9744
9745         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
9746         gdk_error_code as GDKVAR, as they are referred outside GDK.
9747
9748         * gdk/win32/makefile.msc: Update.
9749
9750         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
9751         tweaks. Check only if at least one of those Unicode subrange bits
9752         we care for is set. If no code page bits are set, guess (wildly)
9753         based on the charset.
9754
9755         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
9756
9757         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
9758         non-NULL.
9759
9760         * gtk/gtkdnd.c
9761         * gtk/gtklayout.c
9762         * gtk/gtkplug.c
9763         * gtk/gtkselection.c
9764         * gtk/gtksocket.c
9765         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
9766         appropriate. There must be a cleaner way to handle this?
9767
9768         * gtk/gtkrc.c: Must include windows.h on Win32.
9769
9770         * gtk/testgtk.c: No need to include gdkx.h.
9771
9772         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
9773
9774 1999-12-07  Tor Lillqvist  <tml@iki.fi>
9775
9776         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
9777         the rbearing is set to the same as the width, but this should be
9778         fixed.
9779
9780 1999-12-06  Tor Lillqvist  <tml@iki.fi>
9781
9782         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
9783         function. If Windows doesn't tell us what Unicode subranges a font
9784         covers, guesstimate based on the codepages it covers. This will
9785         hopefully help those Windows versions or fonts that don't give us
9786         any useful Unicode subrange information with GetTextCharsetInfo.
9787         Call this function in gdk_font_load_internal.
9788
9789         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
9790         minor changes.
9791
9792 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
9793
9794         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
9795         New function, long needed.
9796
9797 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
9798
9799         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
9800         only_if_exists argument of gdk_atom_intern to
9801         bool.
9802
9803 1999-11-25  Tor Lillqvist  <tml@iki.fi>
9804
9805         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
9806         Fix two copy&paste errors.
9807
9808         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
9809         win32 has changed.
9810
9811         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
9812         GdkWin32SingleFont struct.
9813
9814         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
9815         subranges of loaded fonts. Clear font signature first, in case
9816         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
9817         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
9818
9819         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
9820         Unoffset clip region.
9821
9822 1999-11-23  Tor Lillqvist  <tml@iki.fi>
9823
9824         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
9825         event->any.window before calling filter functions.
9826
9827 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
9828
9829         * gtk/gtkgamma.h: Adapt cast macros to standard.
9830
9831 [ Merges from 1.2 ]
9832
9833 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
9834
9835         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
9836         If translation does not include a '/', use entire
9837         translation instead of crashing.
9838
9839 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
9840
9841         * docs/gtk_tut.sgml:
9842         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
9843
9844 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
9845
9846         * gtk/gtkselection.c (gtk_target_list_remove): Use
9847         g_list_remove_link, not g_list_remove.
9848
9849         [ From Geert Bevin <gbevin@thunderstorms.org> ]
9850         
9851 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
9852
9853         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
9854         statement upon unselection (how the heck did that slip in?).
9855
9856 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
9857
9858         * gtk/gtktext.c (gtk_text_freeze): 
9859         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
9860         in frozen state (and aparently crashes). patch provided by Anders
9861         Melchiorsen <and@kampsax.dtu.dk>.
9862
9863 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
9864
9865         * fix insensitive default/focus widget activation,
9866         reported by Matt Goodall <mgg@isotek.co.uk>.
9867
9868         * gtk/gtkwindow.c (gtk_window_key_press_event): 
9869         (gtk_window_activate_default):
9870         (gtk_window_activate_focus):
9871         return handled=FALSE for actiavtion of insensitive default
9872         widgets. return handled=TRUE for activation of insensitive
9873         focus widgets. don't activate in either case.
9874
9875 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
9876
9877         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
9878         and $glib_cflags to match library order and in the
9879         theory that an old version of GLib is more likely to
9880         be in the include directory for X then vice-versa.
9881         (Bug #2776)
9882
9883 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
9884
9885         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
9886         to determine the locale for fontsets, not LC_MESSAGES;
9887         the user may want English messages with a handling
9888         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
9889         will still be broken) (Bug #2891)
9890
9891 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
9892
9893         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
9894
9895 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
9896
9897         * gtk/gtkrc.ko: Changed the Korean default fontset.
9898
9899 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
9900
9901         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
9902         where when scrolling to the left or top double exposes
9903         were done, causing major slowdowns.
9904
9905 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
9906
9907         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
9908         names to lowercase and alphanumeric, before looking
9909         them up.
9910
9911         * gtk/Makefile.am: Install codeset variant gtkrc files
9912         with normalized names.
9913
9914 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
9915
9916         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
9917         popup menus when the menu is already visible, but its parent
9918         is still hidden, (happens after tornoff window got hidden).
9919
9920 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
9921
9922         * gtk/Makefile.am (install-data-local): Fix
9923         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
9924         deleted, causing error messages on install.
9925
9926 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
9927
9928         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
9929         the handle as well, since we now sometimes ignore
9930         exposes on the handle while resizing.
9931
9932 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
9933
9934         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
9935         extra g_free introduced in one of the last one or two 
9936         commits.
9937
9938 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
9939
9940         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
9941         consistent, put each style that a gtkrc.* file creates
9942         in a unique namespace, remove old files before installing.
9943
9944 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
9945
9946         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
9947         gtk_rc_init is called multiple times. (Yes, people who
9948         do that have bugs in their code.)
9949
9950 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
9951
9952         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
9953         Remove it since it's generated by the Makefile anyway
9954
9955 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
9956
9957         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
9958         device->info.axes for core pointer.
9959
9960 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
9961
9962         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
9963         idle_id, to deal with obsolete, broken C libraries.
9964
9965 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
9966
9967         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
9968         allocation->x/y twice!
9969
9970         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
9971         consistent with gtk_vscale_pos_trough().
9972
9973 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
9974
9975         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
9976         be queueing a resize on a toplevel container between
9977         the time we show it and when we map it. So, we need
9978         to test GTK_WIDGET_VISIBLE() for toplevels, and only
9979         use GTK_WIDGET_DRAWABLE() for child windows.
9980
9981 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
9982
9983         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
9984         (fixes bug #2144)
9985
9986 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
9987
9988         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
9989         container DRAWABLE (instead of VISIBLE), so we don't queue
9990         resizes on non-toplevel containers.
9991
9992 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
9993
9994         * gtk/gtkselection.[ch]: Make the data argument
9995         const guchar *.
9996
9997 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
9998
9999         * gtk/gtkwindow.c: Try to behave sensibly if 
10000         the focus widget is the window itself. (Should
10001         we allow this at all?)
10002
10003 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
10004
10005         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
10006         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
10007         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
10008         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
10009         in prototypes and implementations consistent (Tomas Ogren).
10010
10011         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
10012         before the widget is unparented (reported by damon).
10013
10014         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
10015         since we provide unsigned data anyways.
10016
10017 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
10018
10019         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
10020         the call to gtk_tooltips_layout_text() until later.
10021
10022         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
10023         Call gtk_widget_ensure_style() before using the style.
10024
10025 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
10026
10027         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
10028         for old widgets that don't propagate draws to all
10029         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
10030
10031 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
10032
10033         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
10034         for a redraw but just the widget that requested the resize.
10035
10036 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
10037
10038         * gtk/gtkcontainer.c: added new widget level method
10039         gtk_container_set_reallocate_redraws() and a GtkContainer flag
10040         reallocate_redraws : 1 to reflect the setting, exported this through
10041         the argument system as a boolean ::reallocate_redraws.
10042
10043         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
10044         on the widget because the allocation changes, do so as well for
10045         widget->parent if the parent has reallocate_redraws set to TRUE.
10046         with that containers requesting reallocation redraws get automatically
10047         redrawn if their children changed allocation (this unfortunately
10048         affects also other children that didn't change allocation, but we
10049         cannot work around that before 1.3).
10050
10051 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
10052
10053         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
10054         _and_ height are >0 (not _or_).
10055
10056         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
10057         instead of gtk_container_queue_resize(), which is a core gtk internal
10058         function (must have been on crack when i queued that).
10059
10060         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
10061         we can check more reliably if we want to discard expose events.
10062         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
10063         flag.
10064         
10065         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
10066         we simply trust these events. for deciding whether to discard exposes,
10067         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
10068         
10069 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
10070
10071         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
10072         queues of areas that are completely off screen.
10073
10074         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
10075         logic for handleboxes.
10076
10077         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
10078         check on width/height.
10079
10080 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
10081
10082         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
10083         we are fine with using $@ the way we do (if we actually encounter
10084         brokeness with $@ in VPATH builds because of additional path prefixes,
10085         we need to use $(@F) actually).
10086
10087 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
10088
10089         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
10090         short lived bugs, that would allow language bindings to do surgeries
10091         to our guts.
10092
10093 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
10094
10095         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
10096         where comparison was being done against an uninitialized
10097         value causing intermittant results depending on
10098         compiler flags. Also make it clearer that we aren't
10099         ever initializing the child as 0x0 (though this will
10100         be caught in gtk_widget_size_allocate())
10101
10102 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
10103
10104         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
10105         gtk_window_unset_transient_for() call after we do checks
10106         involving the old transient parent.
10107         [ From Lance Capser <lmc@cyberhighway.net> ]
10108
10109 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
10110
10111         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
10112         an empty file.
10113
10114 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
10115
10116         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
10117         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
10118
10119 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
10120
10121         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
10122         `$@' is valid only in the build dir, not after we've done 
10123         `cd $srcdir'.  Also use `test -f' instead of less portable
10124         `test -e'.
10125
10126 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
10127
10128         * gtk/gtktext.c (correct_cache_insert): Rewrite
10129          for simplicity, and hopefully correctness.
10130          (Fixes bug #1322, which was a segfault when
10131           on some insertions with the properties around
10132           the insertion set up just wrong.)
10133
10134         * gtk/gtktext.c (gtk_text_adjustment): When we receive
10135          a "changed" signal, clamp the new value to the adjustment
10136          bounds to avoid segfaulting if someone tries to change
10137          the adjustment to a bogus value. (Bug #1795)
10138
10139 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
10140
10141         * gtk/gtkmain.c: Ignore unexpected destroy notifies
10142         for children, for toplevel windows handle them
10143         like delete_event.
10144
10145         * gtk/gtkplug.c: Add an unrealize handler so that
10146         we unref plug->socket_window when we are done
10147         with it.
10148
10149 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
10150
10151         * gtk/gtktext.c (clear_area): Fix stupid signedness
10152          problem that was causing background to sometimes
10153          be misaligned.
10154
10155 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
10156
10157         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
10158         
10159         * gtk/gtkmenu.c (gtk_menu_position): Make
10160          sure we never position menus with negative x, y,
10161          since gtk_widget_set_uposition() can't handle that.
10162
10163         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
10164          Modify the positioning code a bit so that we always
10165          put the top-left corner onscreen. (This is for
10166          UI reasons, gtk_menu_position() now takes care of
10167          gtk_widet_set_uposition() brokeness.)
10168
10169 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
10170
10171         * gtk/Makefile.am: fixed up things for -jx, x > 1.
10172
10173 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
10174
10175         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
10176           RC style that is passed in. The lack of the ref
10177           before was a bug. If people worked around this
10178           bug, this will introduce a slight memory leak
10179           in their code. The code should typically look like:
10180
10181             rc_style = gtk_rc_style_new ();
10182             [...]
10183             gtk_widget_modify_style (widget, rc_style);
10184             gtk_rc_style_unref (rc_style);
10185
10186         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
10187           the style if it was already set.
10188
10189         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
10190           style if it was set before.
10191
10192 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
10193
10194         * gtk/testgtk.c (main): Add a check to see if we
10195           are being run from the correct directory and
10196           to quit nicely if we are not.
10197
10198         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
10199           static.
10200
10201 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
10202
10203         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
10204
10205         * gtk/gtkwindow.c:
10206         queue resizes unconditionally (gtk_widget_queue_resize will figure
10207         what to do if the window is not realized).
10208         (gtk_window_move_resize): only recenter the window
10209         for GTK_WIN_POS_CENTER_ALWAYS.
10210         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
10211         the same way as GTK_WIN_POS_CENTER.
10212
10213 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
10214
10215         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
10216         with (!(info->last_flags & GDK_HINT_POS)) instead of
10217         (!info->last_flags & GDK_HINT_POS).
10218
10219         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
10220         new_height unconditionally, because we use these values even if
10221         !default_size_changed && !hints_changed.
10222         comented the (default_size_changed || hints_changed) case with
10223         respect to resize rejects from the window manager.
10224
10225         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
10226         in the zvt condition hack, since this includes the window hints, set
10227         the hints after the handling_resize case.
10228
10229         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
10230         window is initially shown with to the geometry.
10231
10232 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
10233
10234         * gtk/gtkwindow.c (gtk_window_move_resize):
10235         s/size_changed/default_size_changed/g so i know what's
10236         really going on (frying brain on smaller flame now).
10237
10238 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
10239
10240         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
10241         we have size_changed upon handling_resize. this is a gross
10242         workaround for the broken zvt widget and should be removed in
10243         1.3 again (search for FIXME).
10244         Owen provided an accurate comment for this:
10245
10246         /* We could be here for two reasons
10247          *  1) We coincidentally got a resize while handling
10248          *     another resize.
10249          *  2) Our computation of size_changed was completely
10250          *     screwed up, probably because one of our children
10251          *     is broken. It's probably a zvt widget.
10252          *
10253          * For 1), we could just go ahead and ask for the
10254          * new size right now, but doing that for 2)
10255          * might well be fighting the user (and can even
10256          * trigger a loop). Since we really don't want to
10257          * do that, we requeue a resize in hopes that
10258          * by the time it gets handled, the child has seen
10259          * the light and is willing to go along with the
10260          * new size. (this happens for the zvt widget, since
10261          * the size_allocate() above will have stored the
10262          * requisition corresponding to the new size in the
10263          * zvt widget)
10264          *
10265          * This doesn't buy us anything for 1), but it shouldn't
10266          * hurt us too badly, since it is what would have
10267          * happened if we had gotten the configure event before
10268          * the new size had been set.
10269          */
10270
10271 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
10272
10273         * gtk/gtkrc.c: deal properly with the fact that RC
10274           style lists may include rc styles more than once.
10275
10276         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
10277           unused static function.
10278
10279         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
10280           stack of directories of RC files currently being
10281           parsed and implicitely add them to pixmap path.
10282           
10283           This fixes a bug where the directory would get
10284           appended then overwritten by pixmap_path declarations.
10285
10286           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
10287
10288         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
10289           theme's exit function. (Patch from Peter Wainwright,
10290           bug #1454)
10291
10292         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
10293           Add a destroy() handler to take care of removing
10294           group for menu item. (Fixes bug #1197)
10295
10296         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
10297           in warning message.
10298
10299 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
10300
10301         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
10302         roundtrip to figure window's width and height, since we know that
10303         anyways from widget->allocation.
10304
10305 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
10306
10307         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
10308           the hints after we request the new size.
10309
10310 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
10311
10312         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
10313           GTK_WIDGET_REALIZED() assertion - we can compute the
10314           hints before we are realized.
10315
10316         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
10317           hint changing so that we have a value of hints_changed
10318           when we decide whether to constrain the window size.
10319
10320         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
10321
10322         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
10323         change back to G_MAXINT.
10324
10325 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
10326
10327         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
10328         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
10329         contain uncluttered values.
10330         (gtk_window_compute_hints): simply assert that window is realized
10331         and that geometry_info is valid, since we rely on this anyways.
10332         (gtk_window_constrain_size): major cleanups to the code.
10333         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
10334         for the base size, instead of the minimums. use 32767 as max width
10335         and height (like in gtkwindow.c) instead of G_MAXINT.
10336
10337 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
10338
10339         * cleaned up the GtkContainer.need_resize flag handling mess, we
10340         only need to force resize requests when we were prematurely
10341         realized, or our widget tree was modified when we were temporarily
10342         hidden. handling these cases directly upon showing the window (i.e.
10343         while the GdkWindow is still unmapped) avoids the need to wait for
10344         a configure event response and therefore makes the GUI more snappier
10345         and avoids blank windows during the roundtrip.
10346
10347         * gtk/gtkwidget.c:
10348         (gtk_widget_hide): 
10349         (gtk_widget_show): don't queue resizes on toplevels, they know how
10350         to deal with matters.
10351
10352         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
10353         flag directly for not visible resize containers and spare us unecessary
10354         signal emissions.
10355
10356         * gtk/gtkwindow.c:
10357         (gtk_window_realize): if we need to enforce premature size allocation,
10358         queue a container resize so we are correctly resized later on.
10359         (gtk_window_init):
10360         (gtk_window_size_request):
10361         don't freak around with the ->need_resize flag,
10362         gtk_container_queue_resize() will care about that.
10363         (gtk_window_show):
10364         handle initial resizing issues here, we can handle matters better in
10365         this place, especially since we know that our GdkWindow is still
10366         unmapped.
10367         (gtk_window_move_resize):
10368         don't care about ->need_resize at all.
10369         handle size changes properly that occoured while we waited for a
10370         configure event.
10371
10372 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
10373
10374         * gtk/gtkwidget.c (gtk_widget_set_uposition):
10375         * gtk/gtkwindow.[hc] (gtk_window_reposition):
10376         Move the hint setting code from gtk_widget_set_uposition
10377         to here; set the hints so that we respect any previously
10378         set geometry hints.
10379
10380         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
10381         change the window hints here or move the window here,
10382         let that happen in gtk_window_move_resize().
10383
10384 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
10385
10386         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
10387         to already queued resizes (and therefore redraws) on a widget, check
10388         its anchestry as well.
10389
10390         * gtk/gtkcontainer.c:
10391         (gtk_container_queue_resize): clear resize widgets for resize
10392         containers before aborting prematurely. this is especially important
10393         for toplevels which may need imemdiate processing or their resize
10394         handler to be queued.
10395         (gtk_container_dequeue_resize_handler): added new internal function for
10396         gtkwindow.c.
10397
10398         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
10399         configure event, take possible changes in window position into account
10400         as well.
10401         if we request a new window size, queue up a resize handler that will
10402         last until the configure event response arrives.
10403         combined the ->need_resize case (initial show) with the general size
10404         (hints) changed case and added even more comments.
10405         if !auto_shrink, only revert to the old allocation if the new size
10406         is smaller than the current allocation.
10407
10408 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
10409
10410         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
10411                            gtk_window_set_geometry_hints
10412                            gtk_window_set_default_size):
10413         When hints are set, queue a resize so that the hints will
10414         be eventually reset on the toplevel.
10415
10416         * gtk/gtkwindow.c (gtk_window_show): Use
10417         gtk_window_compute_default_size(). Clear the need_resize flag
10418         on the initail map so that we don't unnecessarily trigger the
10419         resize code.
10420
10421         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
10422         into separate functions. Compare the hints we are setting
10423         with what we set last time so that we can accurately
10424         tell when we need to reset the hints.
10425
10426         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
10427         function to figure out the size from requisition
10428         and default_size.
10429
10430         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
10431         from fvwm to constrain a size to the geometry hints.
10432
10433         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
10434         to compare two sets of geometry hints.
10435
10436         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
10437         from gtk_window_set_hints(), just compute the hints,
10438         don't set them.
10439
10440         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
10441         code from gtk_window_move_resize() to separate function,
10442         rationalize a bit.
10443
10444 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
10445
10446         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
10447         structure into a new private structure.
10448
10449         * gtkrc.c: Split GtkRcStyle into public/private.
10450         In the private part, add a list of pointers to the
10451         RcStyle lists this RcStyle participates in.
10452
10453         * gtkrc.c: When a RcStyle is free, remove all
10454         lists referencing it from the 
10455         realized_style_ht hash, and free those lists.
10456         
10457         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
10458         gtk_rc_init(), since that adds the default styles
10459         to the list of parsed RC files again.
10460
10461         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
10462         
10463 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
10464
10465         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
10466         checks that ensure that a widget's allocation is at least 1 in width
10467         and height. (GNOME note: this doesn't affect old panel code anymore,
10468         because GtkSocket will request width and height of at least 1 since
10469         Fri Jul 23).
10470
10471         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
10472         allocated yet (happens if the user realizes the window prematurely),
10473         size request and allocate it.
10474         (gtk_window_size_allocate): guard against guint underflows.
10475
10476 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
10477
10478         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
10479         in gtk_built_sources, so gtk.defs gets built prior to all other
10480         sources.
10481
10482 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
10483
10484         * gtk/Makefile.am:
10485         invoke indent on gtkmarshal.*. 
10486         rewrote source generation rules, use COPYING as oldest source tag for
10487         a piggyback rule to generate all sources from (don't touch it ;).
10488         major cleanups, strip spaces on build rules for GNU Make.
10489
10490         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
10491         source and target files from commandline arguments. don't invoke indent.
10492
10493 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
10494
10495         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
10496         notebook after switch to avoid drawing problems.
10497         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
10498         
10499         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
10500         show them instead. 
10501         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
10502
10503 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
10504
10505         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
10506         notebook after switch to avoid drawing problems.
10507         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
10508         
10509         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
10510         show them instead. 
10511         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
10512
10513 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
10514
10515         * gtk/gtkwindow.c:
10516         we use window->need_resize from configure_event now, to indicate that
10517         the gtkwindow should keep its allocation (e.g. because the user resized
10518         the window through window manager handles). resize_count is now reliably
10519         used to figure whether we got the allocation we requested from the
10520         window manager.
10521         configure events get queued as resizes now, the real stuff (size
10522         computation and allocation) now only goes on in gtk_window_move_resize().
10523         GtkWindow's requisition now contains its *real* requisition (like all
10524         other widgets), *not* taking usize into account.
10525         geometry_info->last_{width|height} is now updated from set_hints() only
10526         so it always contains the last hints we set for the window manager.
10527         made some event handlers return TRUE instead of FALSE.
10528         the overall code should be much more straight forward now, and the
10529         significant code portions are accompanied by comments now.
10530         (gtk_window_set_hints):
10531         removed requisition argument and made it
10532         fetch the requisition through gtk_widget_get_child_requisition.
10533         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
10534         does that now.
10535         (gtk_window_show):
10536         ensure that the widget is realized before calling 
10537         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
10538         ensure that we got properly size requested and allocated before
10539         realization.
10540         (gtk_window_configure_event):
10541         ignore plain window moves, or reallocate the widget tree through the
10542         resize queue otherwise.
10543         (gtk_window_move_resize):
10544         mostly rewrote this function to figure window manager hints more
10545         reliably, coalesce window moves and resizes to reduce configure events
10546         and do actuall size allocations.
10547
10548 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
10549
10550         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
10551         that have a resize pending, because a redraw is already queued for them.
10552
10553         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
10554         hack to clear resize_widgets.
10555
10556         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
10557         for resize containers prior to size allocation. (this is also a bit
10558         ugly, but avoids side effects for stopped emissions and is thus more
10559         reliable).
10560         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
10561
10562         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
10563         function from gtk_tooltips_expose, as we connect to ::expose_event
10564         *and* ::draw now.
10565
10566 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
10567
10568         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
10569         checks.
10570         (gtk_target_list_unref): Likewise.
10571
10572         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
10573
10574 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
10575
10576         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
10577         guard against division by zero. (Fixes bug #1339)
10578
10579 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
10580
10581         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
10582         Prevent the trivial leak of information of allowing
10583         word motion when the entry is not visible.
10584
10585 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
10586
10587         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
10588         modality to error dialog as well as confirmation dialogs.
10589         (Bug #1803, reported by Rosanna Wing Sze Yuen)
10590
10591 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
10592
10593         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
10594         tree->view_lines.
10595         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
10596
10597         * gtk/Makefile.am (install-data-local): Solaris apparently
10598         has various troubles with ln -f; use rm first instead.
10599         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
10600
10601 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
10602
10603         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
10604         use `cp' followed by `rm' (the `rm' was already there).
10605
10606 July 30, 1999 Elliot Lee <sopwith@redhat.com>
10607         
10608         * configure.in: Fix autoconf warnings about cross compilation by
10609         trying to provide sane defaults for AC_TRY_RUN.
10610         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
10611         put them into $(srcdir) when generated. Also add a dependency of
10612         gtksignal.h on gtkmarshal.h for -j builds. 
10613         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
10614
10615 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
10616
10617         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
10618         GDK_THREADS_{LEAVE,ENTER} pair.
10619         (From Paul Fisher <pnfisher@redhat.com>)
10620
10621 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
10622
10623         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
10624         width and height are always >0 (owen).
10625
10626 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
10627
10628         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
10629         change that assured that a widget's allocated with and height are
10630         always >1, since this breaks *buggy* panel code. unfortunately this
10631         back-breaks the gimp's color selector.
10632
10633         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
10634         allocation is always >0 in width and height, before sending the
10635         configure event; this is a *gross* hack to get the gimp back to work.
10636         
10637         * marked both cases with TODO-1.3
10638
10639 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
10640
10641         * gtk/gtktext.c: Don't display wrap indicators when
10642         text is not editable and word wrap is on.
10643
10644 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
10645
10646         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
10647         option menus here as they are not derived from menu shell, assure that
10648         the option menu has a menu we can add items to.
10649
10650 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
10651
10652         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
10653         width/height to (gint) before calculations and check against < 0 to
10654         avoid guint wraparounds.
10655
10656 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
10657
10658         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
10659         width and height is never zero. sanity check both dimensions against
10660         32767 and issue a warning if the allocation is greater than that.
10661
10662 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
10663
10664         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
10665         to g_main_pending() as well.
10666
10667 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
10668
10669         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
10670         call to g_main_iteration() - since that will regrab
10671         GTK+ lock to process events.
10672
10673 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
10674
10675         * gtk/gtkwindow.c
10676         - Regularize with the rest of GTK+ by making widget->requisition
10677           not reflect the set_usize()
10678         - Always recompute geometry hints, then check if they
10679           changed before sending them to the X server. The
10680           previous checks for changes would fail in a number
10681           of circumstances. 
10682
10683 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
10684
10685         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
10686
10687 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
10688
10689         * gtk/gtkdnd.c:
10690         - Code cleanups
10691         - Instantaneously update on modifier key presses
10692         - Allow cancellation of the drag with Escape.
10693
10694 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
10695
10696         * gtk/testgtk.c (create_handle_box): Set the policy
10697         to auto_shrink - otherwise the appearance is rather
10698         strange when flipping between horizontal and vertical.
10699
10700 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
10701
10702         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
10703         (gtk_window_set_default_size): don't change a value if it's < 0.
10704         queue a resize.
10705
10706 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
10707
10708         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
10709
10710 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
10711
10712         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
10713         add an extra "/" when concating "/" + filename.
10714         (From Matt Grossman <mattg@oz.net>)
10715
10716 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
10717
10718         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
10719         for fg_gc if we set it for drawing pixmap.
10720
10721 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
10722
10723         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
10724         
10725         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
10726         already set, call old engine's destroy function and
10727         unref the old engine.
10728
10729 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
10730
10731         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
10732
10733 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
10734
10735         * gtk/gtkaccelgroup.h: mark certain functions as internal.
10736
10737 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
10738
10739         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
10740         expand behaviour changed.
10741
10742         * gtk/gtklabel.c (gtk_label_set_pattern):
10743         (gtk_label_set_justify):
10744         (gtk_label_set_line_wrap):
10745         don't bother invoking queue_clear, the reallocation does
10746         that for us, always free_words so the upcoming resize will
10747         relayout the label's contents.
10748
10749 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
10750
10751         * applied argument implementation patches from Elena Devdariani
10752         <elena@cogent.ca>.
10753
10754         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
10755         ::space_style, ::relief
10756         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
10757         * gtk/gtkpreview.c: ::expand
10758         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
10759         * gtk/gtknotebook.c: ::homogeneous
10760         * gtk/gtklabel.c: ::wrap
10761         * gtk/gtklist.c: ::selection_mode
10762         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
10763         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
10764         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
10765         * gtk/gtkclist.c: ::sort_type
10766         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
10767         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
10768
10769 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
10770
10771         * gtk/gtkstyle.c: Removed ill-thought-out part of last
10772         comment.
10773
10774 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
10775
10776         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
10777         counting right when we have to attach a new style
10778         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
10779
10780         * gtk/gtkstyle.c: Documented the refcounting
10781         peculularities of gtk_style_attach.
10782
10783 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
10784
10785         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
10786         window types.
10787
10788         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
10789         of GTK_TOPLEVEL for creating the window.
10790
10791 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
10792
10793         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
10794         the last argument (reported by Per Winkvist).
10795         
10796 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
10797
10798         Fixes for invisible XOR lines (Frank Loemker
10799         <floemker@TechFak.Uni-Bielefeld.DE>)
10800         
10801         * gtk/gtkclist.c (gtk_clist_realize): Always use
10802         a non-zero pixel for GDK_XOR.
10803
10804         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
10805         Use GDK_INVERT instead of GDK_XOR.
10806
10807 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
10808
10809         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
10810         signals if h/voffsets differ from adjustment values.
10811         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
10812
10813 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
10814
10815         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
10816         ::selection-done emissions up to the topmost menu shell.
10817
10818 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
10819
10820         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
10821         the user data on the window before destroying it.
10822
10823         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
10824         unrealize handler to take care of destroying 
10825         notebook->panel properly. 
10826         (Bug #1198 - Morten Welinder <terra@diku.dk>)
10827
10828         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
10829         of g_new and g_realloc to stop memory leak. (Actually,
10830         we could just use g_realloc(), but I'm not 100% sure
10831         that is portable).
10832         (Bug #1196 - Morten Welinder <terra@diku.dk>)
10833
10834 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
10835
10836         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
10837
10838         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
10839         for fontsets.
10840
10841         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
10842         with bin/button confusion.
10843
10844 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
10845
10846         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
10847         and show how preselection of radio items is done.
10848
10849 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
10850
10851         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
10852         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
10853         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
10854         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
10855         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
10856         * gtk/gtktable.c (gtk_table_attach): 
10857         * gtk/gtklist.c (gtk_list_insert_items): 
10858         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
10859         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
10860         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
10861         * gtk/gtkbin.c (gtk_bin_add): 
10862         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
10863         * gtk/gtkfixed.c (gtk_fixed_put): 
10864         * gtk/gtklayout.c (gtk_layout_put):
10865         general fixups to container_add logic. always realize child if
10866         child->parent is realized, only map the child and queue a resize
10867         if child and child->parent are both visible.
10868
10869 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
10870
10871         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
10872         instead of gtk_container_foreach to walk and unrealize children, so
10873         composite children get also unrealized.
10874         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
10875         (gtk_widget_map): assert that the widget is visible (basic constrain).
10876         (gtk_widget_real_map): assert that the widget is realized (basic
10877         constrain).
10878
10879 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
10880
10881         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
10882
10883 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
10884
10885         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
10886         file for iso-8859-2 locales.
10887
10888         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
10889
10890 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
10891
10892         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
10893          (Pointed out by andy@rz.uni-karlsruhe.de and others).
10894          Remove some suspicious and useless lines. 
10895
10896 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
10897
10898         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
10899         width,height = 0, 0 to mean - here to edge of window,
10900         instead of -1, -1, since the former is all we support.
10901
10902 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
10903
10904         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
10905         when removing from quit_functions list.
10906
10907 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
10908
10909         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
10910
10911 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
10912
10913         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
10914          When redrawing characters on non-visible entry, use appropriate
10915          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
10916
10917 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
10918
10919         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
10920         from drag coordinates.
10921         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
10922         use drag_dest_cell.
10923
10924         * gtk/gtktree (drag_dest_cell)
10925         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
10926         (Bug #1129)
10927
10928 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
10929
10930         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
10931         translate_* fields.
10932         (gtk_item_factory_finalize): invoke translate_notify independant from
10933         translate_data.
10934         (gtk_item_factory_set_translate_func): likewise.
10935         (gtk_item_factory_destroy): only remove ifactory pointer from those
10936         widgets that belong to us (stupid me).
10937
10938 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
10939
10940         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
10941         rc_style list when lookup succeeeds.
10942
10943 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
10944
10945         * gtk/gtkctree.c (resync_selection): 
10946         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
10947         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
10948         bug.
10949
10950 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
10951
10952         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
10953         Add some missing GDK_THREADS_ENTER()/LEAVE around
10954         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
10955
10956 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
10957
10958         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
10959         rather than emit_by_name.
10960
10961         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
10962         on the widget across multiple signal emissions.
10963         (gtk_editable_delete_text): same here.
10964         (gtk_editable_class_init): set widget_class->activate_signal after
10965         editable_signals[ACTIVATE] has been created.
10966
10967 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
10968
10969         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
10970         position here prematurely -- we might not have the
10971         right ->min_position and ->max_position yet.
10972
10973 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
10974
10975         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
10976         Add error traps so if the other end of the connection
10977         dies, we survive.
10978
10979         * gtk/gtkselection.c (gtk_selection_notify): Clean
10980         up properly when selection property retrieval fails.
10981         
10982         * gtk/gtkselection.c (gtk_selection_request): Correctly
10983         reject SelectionRequest notifies where the handler
10984         returns no data.
10985
10986 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
10987
10988         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
10989         when we've previously highlighted.
10990
10991         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
10992         emit two "drag_leave" signals for Motif drops.
10993
10994         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
10995         back the correct status messages when dropping from
10996         Motif onto a proxy window that is rejecting the
10997         drop.
10998
10999 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
11000
11001         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
11002         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
11003         to compare two argument values. added gtk_arg_to_valueloc() to set a
11004         variable from an arg through its location (pointer).
11005
11006         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
11007         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
11008         as gfloat*, uchars are collected as guchar*, ints are collected as
11009         gint*, etc...
11010
11011 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
11012
11013         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
11014         Include <string.h> instead of <strings.h>.
11015
11016         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
11017         (actually, a lot more duplicate includes occur if
11018          you trace through the sequence of #include's)
11019         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
11020         
11021 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
11022
11023         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
11024         gtk-a-higuti-990322-[0-3]
11025
11026         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
11027         that was causing -DX_LOCALE not to work.
11028
11029         * gtk/gtkrc.c (gtk_rc_init):
11030         X_LOCALE will never have LC_MESSAGES defined
11031
11032 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
11033
11034         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
11035         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
11036
11037         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
11038         left/right as well (gtk-michael-980726-0.patch.gz).
11039
11040         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
11041         for pointer values, use gchar instead of char. fixed uline allocation
11042         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
11043         chunks instead of G_ALLOC_ONLY.
11044         (gtk_label_size_request): always alter requisition as passed and leave
11045         widget->requisition alone.
11046         (gtk_label_set_text): allow NULL strings.
11047         (gtk_label_new): likewise.
11048
11049 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
11050
11051         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
11052
11053 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
11054
11055         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
11056         *and* mapped (i.e. drawable).
11057         (gtk_bin_expose): only send exposes to drawable children.
11058
11059         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
11060         (gtk_box_expose): only send exposes to drawable children.
11061
11062         * gtk/gtkhscale.c (gtk_hscale_draw): 
11063         * gtk/gtkvscale.c (gtk_vscale_draw):
11064         hm, this is an ugly one. we first compute the size of our trough area
11065         here (window relative) and then check intersection with the draw_area
11066         which is parent relative because we're a NO_WINDOW widget, so we need
11067         to offset the trough area by allocation.x and allocation.y before the
11068         check. (this must not be done for the background area though, since
11069         that's already computed parent relative).
11070
11071 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
11072
11073         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
11074         unrealize title buttons.
11075
11076 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
11077
11078         * gtk/gtkclist.c (gtk_clist_column_title_passive)
11079         (gtk_clist_column_title_active): 
11080         only connect/disconnect to GtkWidgetClass::event to block mouse events.
11081
11082         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
11083         zero initialize event, removed superfluous gdk_window_get_pointer call
11084
11085         * gtk/gtklist.c (gtk_list_vertical_timeout)
11086         (gtk_list_horizontal_timeout): removed superfluous
11087         gdk_window_get_pointer call
11088
11089 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
11090
11091         * plugging problems reported by "Bruce Mitchener, Jr."
11092         <bruce@puremagic.com> due to a purify session.
11093
11094         * gtk/gtkstyle.c:
11095         (gtk_style_ref): 
11096         (gtk_style_unref): assert ref_count to be > 0.
11097
11098         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
11099         the requisition.
11100         (gtk_clist_set_shift): likewise.
11101
11102         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
11103         adjustments.
11104
11105         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
11106         event before sending it and set send_event to TRUE (which needs to
11107         be done for *all* synthesized events).
11108         (gtk_list_vertical_timeout): likewise.
11109
11110         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
11111         leaks.
11112
11113         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
11114         to TRUE when synthesizing events.
11115
11116 [ *** end of merges from 1.2 *** ]      
11117         
11118 1999-11-21  Tor Lillqvist  <tml@iki.fi>
11119
11120         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
11121         (or copied from gdkconfig.h.win32 on Win32, sigh).
11122
11123         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
11124
11125         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
11126
11127         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
11128
11129         * gdk/gdkconfig.h.win32: New file.
11130
11131         * gdk/win32/makefile.cygwin: Build just a static archive here.
11132
11133         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
11134         for the DLL from the static archive built above.
11135
11136         * gdk/gdk.def: Moved here from the win32 subdirectory.
11137
11138         * gdk/win32/*: Adapt for the changed private struct organisation.
11139
11140         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
11141
11142 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
11143
11144         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
11145         for wheel mice (buttons 4 and 5).
11146
11147 1999-11-18  Tor Lillqvist  <tml@iki.fi>
11148
11149         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
11150         drawables use just the pixel field in the foreground and
11151         background GdkColor of the GdkGC.
11152
11153         gdk_gc_set_{fore,back}ground() are called in the GIMP with
11154         GdkColors containing uninitialized (red,green,blue) fields, and
11155         just the pixel field filled in, and furthermore in the
11156         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
11157         It thus turns out that we really don't need to have the full
11158         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
11159         it later to have just the pixel values.
11160
11161 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
11162
11163         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
11164
11165 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
11166
11167         * docs/gtkfaq.sgml: threads example from Erik Mouw.
11168         New question on GtkLabel background colors.
11169
11170         * docs/gtk_tut.sgml:
11171           - Correct the example code callback
11172             function definitions.
11173           - Update the gtkdial example code, from Frans van Schaik.
11174           - Update setselection.c to current API.
11175
11176         * examples/Makefile examples/*/*.c: Update to code
11177         listed in tutorial.
11178
11179 1999-11-10  Tor Lillqvist  <tml@iki.fi>
11180
11181         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
11182         subrange table (from the "Developing International Software for
11183         WIndows 95 and Windows NT" book) was missing the Hangul syllable
11184         block... Get the loaded font's charset correctly.
11185
11186         (Note that this, and the other *-win32.c files, still really are
11187         the old ones, the win32 subdirectory is not ready for compilation
11188         yet after the reorg.)
11189
11190 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
11191
11192         * gtk/gtkclist.c: Fix off-by-one bug in parameter
11193         check.
11194
11195 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
11196
11197         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
11198         on results of XQueryDeviceState().
11199
11200 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
11201
11202         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
11203         we need to accesss only ->children. We need an accessor
11204         for the children.
11205
11206         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
11207         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
11208         to get rid of gdkx.h include.
11209         
11210         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
11211         and random references to 'None'.
11212
11213         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
11214         Get rid of unused #include <gdk/gdkx.h>
11215
11216         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
11217         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
11218         gdkconfig.h.
11219
11220 1999-11-08  Tor Lillqvist  <tml@iki.fi>
11221
11222         * gdk/win32/gdkdraw.c
11223         * gdk/win32/gdkfont.c
11224         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
11225         following yesterday's changes. (Unrelated to Owen's reorg.)
11226
11227 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
11228
11229         * gdk/x11/gdkinput-gxi.c: Add missing include,
11230           fix GdkWindowPrivate => GdkDrawablePrivate.
11231
11232         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
11233
11234         * gdk/x11/Makefile.am (xinput_sources): Add missing
11235         backslash to fix building with --with-xinput=none
11236
11237 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
11238
11239         Move all X specific code into the x11/ directory.
11240         Aside from shuffling things around, did the following:
11241
11242        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
11243          gdk_arg_context_* - a simple argument parsing system
11244          in the style of popt.
11245
11246        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
11247          gdk/x11/gdkprivate-x11.h:
11248          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
11249          add ->klass and ->klass_data fields. The klass_data
11250          field points to an auxilliary structure that is
11251          windowing system dependent.
11252
11253        * gdk/gdkfont.c: Make most of the measurement functions
11254          simply wrappers around gdk_text_extents().
11255
11256        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
11257          _gdk_font_strlen() function that hides the weird
11258          behavior in gtk+-1.[02] where a string is interpreted
11259          differently for 8-bit and 16-bit fonts.
11260
11261        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
11262          to store common code for synthesizing double/triple
11263          press events.
11264         
11265        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
11266          Make all the function that modify an existing GC
11267          simply wrappers around gdk_gc_set_values().
11268          
11269        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
11270          for throwing out later.
11271
11272        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
11273          GdkImagePrivate and GdkColormapPrivate to have a
11274          windowing system dependent part (GdkFontPrivateX etc.)
11275          that "derives" from the system-independent part.
11276
11277        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
11278          Got rid of the included-source-files for XInput in
11279          favor of automake conditionals. (Which didn't exist
11280          when XInput support was originally added.)
11281
11282        * gdk/gdkrgb.c: Remove the visual id from the debugging
11283          statements since that is X11 specific; print out
11284          type/depth info instead.
11285          
11286
11287 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
11288
11289         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
11290         loading duplicates of hashed fonts.
11291
11292         * gdk/gdk.c (gdk_keysym_convert_case): rename
11293         gdk_XConvertCase to gdk_keysym_convert_case, allow
11294         results to be NULL in the GTK+ style.
11295
11296         * gdk/gdkcompat.h: Started compatibility header
11297         for renames.
11298
11299 1999-11-07  Tor Lillqvist  <tml@iki.fi>
11300
11301         * gdk/win32/gdkprivate.h: New font private structures, related to
11302         fontsets.
11303
11304         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
11305         gdk_font_list_free(). On X11, will just be wrappers to
11306         XListFonts() and XFreeFontNames(). On Win32, the code previously
11307         in gtkfontsel.c is now here.
11308
11309         New function gdk_font_xlfd_create(). On X11 will get the FONT
11310         property of the font (for GDK_FONT_FONTs), or call
11311         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
11312         builds a XLFD style name from the font information in the LOGFONT
11313         struct(s).
11314
11315         New function gdk_font_xlfd_free(), which correspondingly frees the
11316         string returned by gdk_font_xlfd_create().
11317
11318         Implement fontsets on Win32. Add a function that iterates over a
11319         wide char string and calls a callback function for each substring
11320         of wide chars from the same Unicode subrange (and thus probably
11321         available in the same real font).
11322
11323         Improve the XLFD emulation a bit.
11324
11325         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
11326
11327         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
11328         Beta3, WM_IME_CHAR messages don't seem to contain the composed
11329         multi-byte char as with the Active IMM on Win9x. Oh well, handle
11330         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
11331         ImmGetCompositionStringW() to get the composed Unicode chars.
11332
11333         * gdk/win32/gdkgc.c
11334         * gdk/win32/gdkdraw.c: Changes needed because of the font private
11335         struct changes.
11336
11337         * gdk/win32/gdk.def: Add the new functions.
11338
11339 1999-11-04  Tor Lillqvist  <tml@iki.fi>
11340
11341         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
11342         get the Platform SDK to get <dimm.h>.
11343
11344         * gdk/win32/gdkevents.c: More event handling fixes and
11345         simplification. Never generate motion events with is_hint true. We
11346         used to do that on bogus grounds earlier. Windows sends
11347         WM_MOUSEMOVE messages on button events even if the mouse hasn't
11348         moved, ignore these.
11349
11350         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
11351
11352         * gdk/win32/gdkglobals.c
11353         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
11354         the TrackMouseEvent function, and use it.
11355
11356         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
11357         char before calling WideCharToMultiByte in order to get a string
11358         for the window title.
11359
11360         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
11361
11362         * gdk/win32/gdk.def: Remove obsolete functions.
11363
11364         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
11365         /nodefaultlib and /defaultlib switches.
11366
11367         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
11368
11369 1999-10-31  Tor Lillqvist  <tml@iki.fi>
11370
11371         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
11372         EuroSign).
11373
11374         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
11375         same type as GdkWChar, especially on Win32.
11376
11377         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
11378
11379         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
11380         before passing to Windows GDI for drawing etc. Convert to the
11381         system default codepage before passing to Windows as window
11382         titles.
11383
11384         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
11385         support changing input locale on the fly.
11386
11387         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
11388         on-the-fly changes. Convert incoming characters from the current
11389         codepage to Unicode (and then to a UTF-8 multi-byte string) based
11390         on the current input language. Use keysym<->Unicode mapping tables
11391         and functions borrowed from xterm sources.
11392
11393         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
11394         editions of Win9x, use the ActiveX-based Active IMM (Input Method
11395         Manager) if available. IMEs and the Active IMM are available under
11396         the disguise of Chinese, Korean and Japanese support for IE and
11397         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
11398         support is present in all editions (as long as you install it).
11399
11400         Call DispatchMessage from gdk_events_queue() (and thus
11401         gdk_WindowProc()), instead of duplicating the code in
11402         gdk_WindowProc().
11403
11404         Reworked the grab handling and propagation code, factored out
11405         duplicated code snippets into separate functions. Other cleanups,
11406         too.
11407
11408         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
11409         the <dimm.h> header describing the Active IMM.
11410
11411         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
11412         just do the same as for "single" fonts.
11413
11414         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
11415         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
11416         the new keysyms from gdkkeysyms.h.
11417
11418         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
11419         fontset, so that gtkentry uses wide characters.
11420
11421         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
11422         GTk+'s system directory "gtk+", not "gtk".
11423
11424 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
11425
11426         * docs/gtkfaq.sgml: FAQ update
11427
11428 1999-10-21  Tor Lillqvist  <tml@iki.fi>
11429
11430         * gdk/win32/gdkprivate.h: Add more font private data.
11431
11432         * gdk/win32/gdkfont.c
11433         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
11434         fonts and strings. Now works much better. You still have to
11435         have a correct font selected, though. No fontset emulation yet.
11436
11437 1999-10-19  Tor Lillqvist  <tml@iki.fi>
11438
11439         * gtk/maketypes.awk: Use G_OS_WIN32.
11440
11441         * gtk/gtk.def: Add some missing entry points. Also some non-public
11442         ones, but PyGTK porter claims to need them.
11443
11444         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
11445         built-in type generation.
11446
11447 1999-10-14  Tor Lillqvist  <tml@iki.fi>
11448
11449         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
11450         GDK_FONT_FONT fonts (which is all we have for now, we don't
11451         emulate fontsets). The X11 version uses plain XDrawString in that
11452         case, too. The string passed to gdk_draw_text_wc seems to be in
11453         fact (at least, when used by gtkentry and gtktext) either in a
11454         single-byte charset, or a DBCS. Not Unicode.
11455
11456         This fixes the problem in gtkfontsel, where even if you had
11457         selected a font with a non-Latin1 charset (windows-greek, for
11458         instance), the preview still used Latin-1 glyphs.
11459
11460         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
11461         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
11462         (gdk_font_load): Recognize the demibold etc weights, even if we
11463         don't have the corresponding constants in the headers.
11464         (gdk_font_hash_insert): Use same hash mechanism as in the X11
11465         version. Should save font resources a bit, when we don't have
11466         multiple HFONTs for the same font.
11467
11468         * gdk/win32/gdkprivate.h: Add the names field as in the X11
11469         version.
11470
11471 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
11472
11473         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
11474         X values
11475
11476 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
11477
11478         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
11479         layout support (as mentioned on
11480         http://www.jcinteractive.com/gnome-ui/software/widgets/)
11481
11482 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
11483
11484         * gtk/fnmatch.c
11485         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
11486
11487 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
11488
11489         * configure.in (ALL_LINGUAS): Added Galician (gl)
11490
11491 1999-10-05  Tor Lillqvist  <tml@iki.fi>
11492
11493         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
11494
11495         * gdk/win32/gdkcompat.c: New file, actually provide an
11496         implementation for the deprecated functions. (Just temporarily.)
11497
11498         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
11499
11500         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
11501
11502         * gdk/win32/gdk.def gtk/gtk.def: Updates.
11503
11504 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
11505
11506         * configure.in: Added "uk" to ALL_LINGUAS.
11507         
11508 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
11509
11510         * configure.in: correct checking for BeOS check
11511
11512         * gdk/gdktypes.h
11513         * gtk/fnmatch.c
11514         * gtk/gtkfilesel.c
11515         * gtk/gtkitemfactory.c
11516         * gtk/gtkmain.[ch]
11517         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
11518
11519 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
11520
11521         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
11522         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
11523         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
11524         by Bulgarian). 
11525
11526 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
11527
11528         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
11529         Fix a reference to window_private->destroyed.   
11530
11531         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
11532         (ugly) setting of an internal GdkWindow member to use
11533         a _slightly_ cleaner macro.
11534
11535         * gdk/gdkprivate.h: Split GdkWindowPrivate into
11536         GdkDrawablePrivate and GdkWindowPrivate.
11537         Add extra macros for accessing GDK_DRAWABLE_ components.
11538
11539         * *.[ch]: Massive adjustments for the above, use the
11540         new macros in a lot of places.
11541
11542 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
11543
11544         * gdk/gdktypes.h: Make GdkDrawable the base type,
11545         not GdkWindow.
11546
11547 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
11548
11549         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
11550
11551 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
11552
11553         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
11554
11555 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
11556
11557         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
11558         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
11559
11560         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
11561
11562         * docs/gtk-config.1: Now autogenerated.
11563         * docs/Changes-1.4.txt: started
11564         
11565 1999-10-03  Tor Lillqvist  <tml@iki.fi>
11566
11567         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
11568         to #ifdef also here.
11569
11570         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
11571         Owen did to the X11 backend.
11572
11573         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
11574         ScrollWindowEx when blitting inside a window, it can't be correct
11575         in the general case.
11576
11577         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
11578         WM_GETMINMAXINFO is easier.
11579
11580         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
11581         depth equal to the bitspixel value, not the visual's depth.
11582
11583         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
11584         to 24 even if the bitspixel value is 32.
11585
11586         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
11587         need to check for depth==32 when bpp==32, depth will always be 24.
11588
11589 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
11590
11591         * docs/Changes-1.4.txt: Started
11592         
11593         * gtk/Makefile.am (gdk_headers): Include all the new headers.
11594
11595         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
11596         
11597         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
11598         into C file.
11599         
11600         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
11601         header to gdkinputprivate.h.
11602
11603         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
11604         unused since before 1.2.
11605
11606 1999-09-30  Tor Lillqvist  <tml@iki.fi>
11607
11608         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
11609         expand possible hex escapes in the font family (put there by
11610         logfont_to_xlfd if the font name isn't a legal XLFD font family,
11611         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
11612         On Win32, add hex escapes here, too.
11613
11614 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
11615
11616         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
11617         to #ifdef GDK_WINDOWING_X11.
11618
11619 [ Merges from gtk-1-2 ]
11620
11621 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
11622
11623         * configure.in: fixed "GNU Make" check to pass with new make version
11624         3.77.95.
11625
11626 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
11627
11628         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
11629         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
11630         AM_PATH_GTK() macros don't get confused by the -pre1.
11631
11632 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
11633
11634         * configure.in (REBUILD): Change check for perl5
11635           to check explicitely for v >= 5.002. (5.001
11636           does not work with our scripts.)
11637
11638 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
11639
11640         * configure.in: evaluate $PERL for the perl version check. added
11641         --disable-rebuilds to give the user an option to completely disable
11642         any source autogeneration rules.
11643
11644 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
11645
11646         * configure.in: evaluate $ac_make when checking for GNU Make.
11647
11648 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
11649
11650         * docs/Makefile.am: added generation.txt.
11651
11652         * Makefile.am: require automake 1.4, build README from README.in and
11653         INSTALL from INSTALL.in in dist-hook.
11654         
11655         * README.in:
11656         * INSTALL.in: new files to autogenerate README and INSTALL from.
11657
11658         * configure.in: figure whether we have GNU Make
11659
11660         * docs/generation.txt: minor additions/corrections.
11661
11662 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
11663
11664         * docs/gtkfaq.sgml: FAQ Update
11665
11666 July 30, 1999 Elliot Lee <sopwith@redhat.com>
11667         
11668         * configure.in: Fix autoconf warnings about cross compilation by
11669         trying to provide sane defaults for AC_TRY_RUN.
11670
11671 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
11672
11673         * ltconfig
11674         * ltmain.sh: upgrade to libtool 1.3.3
11675
11676 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
11677
11678         * INSTALL: Indicate that the --with-glib= configure
11679         time flag is unsupported.
11680
11681 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
11682
11683         * docs/generation.txt: Added a file that gives
11684         documenation about the autogeneration process for
11685         various autogenerated files.
11686         
11687 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
11688
11689         * configure.in (LIBS): Look for libgmodule in the
11690         right location.
11691
11692 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
11693
11694         * docs/gtk_tut.sgml: Removed references to
11695         code examples in my directory on gtk.org as
11696         they should all be in the tutorial now.
11697
11698         * docs/gtk_tut.sgml: Added sources for dial-test
11699         and scribble-xinput programs that were previously
11700         missing.
11701
11702 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
11703
11704         * TODO: Added entry about menu keyboard navigation, removed
11705         some finished items.
11706
11707 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
11708
11709         * acinclude.m4: Standardize on func_dgettext
11710         not func_gettext, so that the checks for dgettext
11711         actually are paid attention to.
11712
11713 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
11714
11715         * configure.in (LIBS): Add $INTLLIBS into $LIBS
11716         directly, rather than repeating the checks for
11717         gettext.
11718
11719         * INSTALL: Added information about gettext and
11720         NLS support.
11721
11722         * acinclude.m4 (LIBM): Check for dgettext, not
11723         just gettext. This should hopefully fix things wrt
11724         systems with old versions of GNU gettext installed.
11725
11726 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
11727
11728         * configure.in (LIBS): Look for libgmodule in the
11729         right location.
11730
11731 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
11732
11733         * autogen.sh: add --enable-maintainer-mode
11734
11735         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
11736
11737 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
11738
11739         * docs/gtk-config.1.in:
11740           docs/Makefile.am:
11741           configure.in: gtk-config is now generated.
11742
11743         * docs/gtk-config.1: Removed, now generated.
11744
11745 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
11746
11747         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
11748         handle CreateNotify itself, still put out a debuging message for
11749         --gdk-debug=events. made the ReparentNotify debugging message more
11750         verbose.
11751         wrap xcoords translation for ConfigureEvents into an error trap,
11752         a destroy event may already be pending, and in that case, the
11753         actuall coordinate values are not at all critical.
11754
11755 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
11756
11757         * gdk/gdkcc.c: Stop leaking the color_hash all over
11758         the place. Simplify and improve the logic.
11759
11760 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
11761
11762         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
11763         for prototypes and function implementations consistent (reported
11764         by Tomas Ogren).
11765
11766 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
11767
11768         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
11769         send_event set in debugging output.
11770         (gdk_compress_exposures): default initialize the event so we don't
11771         operate on bogus values (namely send_event).
11772
11773 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
11774
11775         * gdk/gdkwindow.c: When we receive an unexpected
11776         destroy notify on one of our windows, don't just
11777         warn about it, also mark our windows as destroyed.
11778
11779 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
11780
11781         * gdk/gdkfont.c (gdk_font_hash_insert): Add
11782           name => font and name => fontset hashes. The 
11783           name => fontset hash is a _big_ win since we
11784           weren't previously caching fontsets at all and loading
11785           fontsets is expensive. The name => font hash
11786           is less of a win, but it does save us from doing
11787           repeated XQueryFont calls on the same font.
11788
11789         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
11790           list so we can remove font/fontset from hash.
11791
11792 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
11793
11794         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
11795           and slightly confusing test. [ XInternAtom (,,TRUE)
11796           will never return None ].
11797
11798 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
11799
11800         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
11801           gdk/gdkwindow.c (gdk_window_set_hints):
11802
11803         Don't omit setting the properties if flags == 0 -
11804         there may be an existing set of properties there
11805         already. (Very old bug. Would it be better to
11806         delete the property instead?)
11807
11808         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
11809           spelling error in comment.
11810
11811 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
11812
11813         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
11814           to avoid stomping over gdk_error_warnings.
11815
11816         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
11817           as (bits_per_pixel + 7) / 8. This gives the same
11818           result as before for multiples of 8, but actually
11819           a "reasonable" value for 1bit or 4bit displays.
11820
11821 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
11822
11823         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
11824         GNU Make.
11825
11826 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
11827
11828         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
11829         discarding configure events.
11830
11831 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
11832
11833         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
11834         refcount is greater than zero.
11835
11836         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
11837
11838         * gdk/gdkfont.c (gdk_font_unref): Likewise.
11839
11840         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
11841
11842         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
11843
11844 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
11845
11846         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
11847         that format 32 => sizeof(item) == 4. It really is
11848         sizeof(long).
11849
11850 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
11851
11852         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
11853         core dump at all on X IO errors, only core dump
11854         if --enable-debug for X errors.
11855
11856 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
11857
11858         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
11859         unknown window:" message. disabled ConfigureNotify discarding code,
11860         because it led to events being processed out of order.
11861
11862 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
11863
11864         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
11865
11866         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
11867         we export this function, supress error warnings and don't reset the
11868         error code in the first half of this function.
11869
11870         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
11871         code (instead of just -1) so gdk_error_trap_pop() reveals something
11872         actually informative about the error that happened.
11873
11874         * gdk/*.c:
11875         don't rely on gdk_error_code being -1 if an error occoured, but just
11876         gdk_error_code != 0.
11877
11878 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
11879
11880         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
11881         pointer *before* invoking the filter function, so we at least don't
11882         crash if a filter is removed that is currently executed. window filters
11883         *really* need to be made truely reentrant at some point.
11884
11885 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
11886
11887         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
11888         PropertyNotify debug messages.
11889
11890 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
11891         
11892         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
11893         
11894         * gdk/gdkim.c: Fix cut-and-paste errors for 
11895         x/y and PreeditAttributes/StatusAttributes.
11896
11897 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
11898
11899         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
11900         G_MAXINT to 2^16 to alleviate overflow problems in
11901         various window managers.
11902
11903 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
11904
11905         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
11906         for fontsets.
11907
11908 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
11909
11910         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
11911         Initialize size_hints.x and size_hints.y because kwm
11912         brokenly pays attention to them.
11913         (Bug #1181 -  Lars Heete <hel@admin.de>)
11914
11915 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
11916
11917         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
11918         return value of gdk_list_visuals(). 
11919         (Bug #1193 - Morten Welinder <terra@diku.dk>)
11920
11921 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
11922
11923         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
11924         XSetIMValues to (void *) when comparing to NULL, to workaround
11925         the problem of some compilers barfing since older X headers don't
11926         have the prototype for it.
11927
11928 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
11929
11930         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
11931         for pseudocolor where colormap->colors was double
11932         allocated.
11933
11934         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
11935         color value in the hash table with the pixel filled
11936         in so when we do later hash table lookups, the color
11937         value is correct.
11938         
11939 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
11940
11941         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
11942         making the call
11943
11944 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
11945
11946         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
11947         pointed out by Morten Welinder <terra@diku.dk>.
11948
11949 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
11950
11951         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
11952           default filter from the list
11953
11954 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
11955
11956         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
11957           default filter from the list
11958
11959 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
11960
11961         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
11962
11963         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
11964         g_strdup_printf instead of calcing the length separately
11965
11966 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
11967
11968         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
11969         that we don't do in many other places. (Fixing duplicate 
11970         #include of config.h)
11971
11972         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
11973         Otherwise, #ifndef XINPUT_NONE check in the latter
11974         doesn't work. (Bug #546)
11975
11976 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
11977
11978         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
11979         "None" case insensitive.
11980
11981 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
11982
11983         * gdk/gdkselection.c: 
11984         Add error traps so if the other end of the connection
11985         dies, we survive.
11986
11987 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
11988
11989         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
11990         dest_xid field into two fields - one for the window
11991         to send in messages, one to indicate the last looked
11992         up window for caching purposes. This is needed, so
11993         that Leave messages get the correct window.
11994
11995 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
11996
11997         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
11998         Fix warning created by people mucking around
11999         with the gsource API.
12000
12001         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
12002         Change mapping between GIOCondition and GdkInputCondition
12003         to match the way the Linux kernel does it. This should
12004         fix problems where closed pipes were no longer signalling
12005         GDK_INPUT_READ on systems with a native poll().
12006
12007 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
12008
12009         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
12010         explicitly for the string "None" - it is in the XPM
12011         spec and some servers treat unknown colors in odd ways
12012         (like asking the user!)
12013
12014 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
12015
12016         * gdk/gdkevents.c: made "->" into a "." of previous change so
12017         it compiles
12018
12019 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
12020
12021         * gdk/gdkevents.c (gdk_compress_exposures): Set the
12022         window field of the event structure before calling
12023         user filters.
12024
12025 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
12026
12027         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
12028         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
12029
12030 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
12031
12032         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
12033         intermediate text property - prevents major memory
12034         leak when gdk_use_mb.
12035         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
12036
12037 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
12038
12039         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
12040         gtk-a-higuti-990322-[0-3]
12041
12042         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
12043         sizeof(wchar_t) != sizeof (GdkWChar)
12044
12045         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
12046         that was causing -DX_LOCALE not to work.
12047
12048         * gtk/gtkrc.c (gtk_rc_init):
12049         X_LOCALE will never have LC_MESSAGES defined
12050
12051         * gdk/gdk.c (gdk_init_check):
12052         Remove --xim-preedit and --xim-status from argv properly.
12053
12054         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
12055         that the client window is present on the X server
12056         before we pass it to the input method.
12057
12058 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
12059
12060         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
12061         if --display is specified on the command line, than
12062         the drag window will not be created on that display.
12063         
12064 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
12065
12066         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
12067         lookups with only_if_exists == TRUE were inserting
12068         bogus values into the atom cache.
12069
12070 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
12071
12072         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
12073         then reset it to NULL.
12074
12075         * gdk/gdkcolor.c:
12076         (gdk_colors_free): 
12077         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
12078         key for g_hash_table_remove() in both functions, this prevents us
12079         from accessing possibly uninitialized portions of a GdkColor structure
12080         where we are only interested in its pixel value.
12081
12082 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
12083
12084         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
12085         font hash table, if we have a GdkFontPrivate entry for this font
12086         already, simply increment its reference count, provided by Olaf Dietsche
12087         <olaf.dietsche+list.gtk@netcologne.de>.
12088
12089 1999-09-21  Tor Lillqvist  <tml@iki.fi>
12090
12091         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
12092         just to be sure.
12093
12094         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
12095         unused variables, leftovers from the X11 version.
12096
12097         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
12098
12099         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
12100         downcase fields on X11.
12101
12102 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
12103         
12104         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
12105         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
12106
12107 1999-09-17  Tor Lillqvist  <tml@iki.fi>
12108
12109         * gdk/win32/gdk.def: Add gdk_threads_mutex.
12110
12111         * gtk/makefile.msc: Correct path to libintl.
12112
12113         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
12114         use of gint vs. int, and gint vs. gboolean in headers and
12115         definitions. Use GtkType for the *_get_type functions. Note that
12116         these changes preserve binary compatibility.
12117
12118         * gdk/gdk.c
12119         * gdk/win32/gdk.c
12120         * gdk/gdk.h: Fix inconsistencies: gint vs int.
12121
12122         * gtk/gtkmain.c
12123         * gtk/gtkclist.c
12124         * gtk/gtkmenufactory.c
12125         * gtk/gtknotebook.c
12126         * gtk/gtkwidget.c: Fix inconsistencies, also gint
12127         vs. gboolean.
12128
12129         * gtk/gtkcolorsel.[ch]
12130         * gtk/gtkcombo.[ch]
12131         * gtk/gtkdrawingarea.[ch]
12132         * gtk/gtkgamma.[ch]
12133         * gtk/gtkhandlebox.[ch]
12134         * gtk/gtkhpaned.[ch]
12135         * gtk/gtkhruler.[ch]
12136         * gtk/gtkplug.[ch]
12137         * gtk/gtkpreview.[ch]
12138         * gtk/gtkruler.[ch]
12139         * gtk/gtksocket.[ch]
12140         * gtk/gtkstatusbar.[ch]
12141         * gtk/gtktoolbar.[ch]
12142         * gtk/gtkvbbox.[ch]
12143         * gtk/gtkvpaned.[ch]
12144         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
12145         functions.
12146
12147         * gtk/gtkgamma.h: Fix bug, missing () in call of
12148         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
12149
12150 1999-09-14  Tor Lillqvist  <tml@iki.fi>
12151
12152         * gdk/gdkcolor.c (gdk_colormap_new)
12153         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
12154         colormap->colors was allocated twice.
12155
12156         * gdk/win32/gdk.c: Remove some unused stuff.
12157
12158         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
12159         colormap.
12160
12161         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
12162         * gtk/gtklabel.h (gtk_label_get_type)
12163         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
12164         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
12165         in a couple of places, not guint.
12166
12167 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
12168
12169         * configure.in,po/et.po: added Estonian language file
12170
12171 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
12172
12173         * configure.in,po/da.po: added Danish file
12174
12175 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
12176
12177         * docs/gtkfaq.sgml: Minor FAQ Update
12178
12179 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
12180
12181         * docs/gtkfaq.sgml: FAQ update
12182
12183 1999-08-27  Tor Lillqvist  <tml@iki.fi>
12184
12185         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
12186         way to get window contents continually refreshed while resizing. I
12187         didn't like the effects myself, so it's not on by default.
12188
12189         * gdk/win32/gdkprivate.h: New flag variable
12190         gdk_event_func_from_window_proc, FALSE by default.
12191
12192         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
12193         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
12194         are passed --gdk-event-func-from-window-proc.
12195
12196         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
12197         and we have am event_func, call it instead of enqueing the event.
12198
12199 1999-08-23  Tor Lillqvist  <tml@iki.fi>
12200
12201         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
12202         Kelley: Set expose_count in GdkEventExposes correctly.
12203
12204         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
12205         MULTIPLE_WINDOW_CLASSES).
12206
12207         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
12208         for bug in NT, apparently NT *does* draw the end pixel, too, in
12209         LineTo with a one-pixel pen, so we don't have to do it ourselves.
12210
12211 1999-08-21  Tor Lillqvist  <tml@iki.fi>
12212
12213         Improvements by Hans Breuer: 
12214
12215         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
12216
12217         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
12218         CS_?REDRAW flags as they cause lots of (late) redraws when "show
12219         window contents while dragging" is turned on. Allocate at least
12220         one unique class for every GdkWindowType. If support for single
12221         window-specific icons is ever needed (eg. Dialog specific), every
12222         such window should get its own class.
12223
12224 1999-08-19  Tor Lillqvist  <tml@iki.fi>
12225
12226         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
12227         error that caused crashes.
12228
12229 1999-08-17  Tor Lillqvist  <tml@iki.fi>
12230
12231         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
12232         window, use ScrollWindowEx, and call UpdateWindow. This prevents
12233         bugs when for instance part of the window was outside the
12234         display. Thanks to Philippe Colantoni for finding and fixing this.
12235
12236 1999-08-16  Tor Lillqvist  <tml@iki.fi>
12237
12238         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
12239         endpoint calculations which were totally wrong. (A little RTFMing
12240         helps a lot ;-)
12241
12242         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
12243         from a separate directory, not from gettext, because of licensing
12244         issues (we want to use the LGPL version).
12245
12246         * README.win32: Mention the intl from glibc vs from gettext issue.
12247
12248 1999-08-13  Tor Lillqvist  <tml@iki.fi>
12249
12250         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
12251         in the key event handling: Now AltGr chars work again. Also,
12252         now Alt-digits are passed up as well as Control-digits.
12253         Pass keypad plus and minus as normal plus and minus.
12254
12255 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
12256
12257         * docs/gtkfaq.sgml: FAQ Update
12258
12259 1999-07-25  Tor Lillqvist  <tml@iki.fi>
12260
12261         * README.win32
12262         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
12263         the Wintab SDK.
12264
12265         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
12266         OK, but getting closer. Guard against bogus tilt data from Wacom
12267         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
12268         enable easier building without Wintab.
12269
12270         * gdk/win32/gdkinput.h
12271         * gdk/win32/gdkevents.c 
12272         * gdk/win32/gdkwindow.c: Minor changes related related to above.
12273         
12274         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
12275         code. As we have just one visual on Win32, no sense to have it in a
12276         table, and no need for the hash table.
12277
12278         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
12279         better on white background.
12280
12281 1999-07-21  Tor Lillqvist  <tml@iki.fi>
12282
12283         * README.win32: Update gcc build instructions. Mention gettext is
12284         GPL.
12285
12286         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
12287         supported cursor size with GetSystemMetrics.
12288
12289         * gdk/win32/gdkfont.c
12290         * gtk/gtkfontsel.c: Guard against some font weight and charset
12291         symbols being undefined (in mingw32 headers).
12292
12293         * gdk/win32/makefile.cygwin
12294         * gtk/makefile.cygwin
12295         * gtk/gtkthemes.c: No longer need to have differently named
12296         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
12297
12298 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
12299
12300         * docs/gtkfaq.sgml: Long awaited FAQ update.
12301
12302 1999-07-15  Tor Lillqvist  <tml@iki.fi>
12303
12304         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
12305         it. Obscure bit manipulation needed.
12306
12307         * gdk/win32/gdkevents.c: Logging.
12308         
12309         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
12310         style (file name include compiler name) for theme engines.
12311
12312 1999-07-13  Tor Lillqvist  <tml@iki.fi>
12313
12314         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
12315
12316         * gdk/win32/gdkevents.c: Fix long-standing bug in key
12317         events. The key.string wasn't zero-terminated, still we strdup'ed
12318         it in gdk_event_copy(). Synthesize crossing events for button
12319         events before possible propagation.
12320
12321         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
12322
12323         * gdk/win32/makefile.cygwin
12324         * gtk/makefile.cygwin: Use new DLL naming style for the
12325         GCC-compiled ones.
12326
12327         * gdk/win32/makefile.msc
12328         * gtk/makefile.msc: Cosmetics mostly.
12329
12330         * gtk/gtk.def: Add missing entry points.
12331
12332         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
12333
12334 1999-07-09  Tor Lillqvist  <tml@iki.fi>
12335
12336         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
12337         or height is zero. Don't print a warning if Pie or Arc fails, they
12338         always fail (?) for very narrow ellipses.
12339
12340         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
12341         the part or the destination window corresponding to source area
12342         outside of the source drawable's boundary.
12343
12344         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
12345         anything if less than two points.
12346
12347         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
12348         return NULL. Gtk cut-and-paste inside a single program works
12349         better this way. (It always gets the clipboard contents from
12350         Windows, not from its own copy, which is cleared anyway. I can't
12351         say I fully understand what happens... Emulating the X selection
12352         and property stuff is a bit of a mess.)
12353
12354         * gdk/win32/gdkevents.c
12355         * gdk/win32/gdkproperty.c: A bit more verbose logging.
12356
12357         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
12358         that never got deleted). Revamp gdk_region_shrink.
12359
12360         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
12361         after use.
12362
12363         * gtk/gtk.def: Add some missing entry points.
12364
12365         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
12366         component.
12367
12368 1999-07-04  Tor Lillqvist  <tml@iki.fi>
12369
12370         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
12371         Control-digits specially.
12372
12373 1999-07-03  Tor Lillqvist  <tml@iki.fi>
12374
12375         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
12376
12377 1999-06-28  Tor Lillqvist  <tml@iki.fi>
12378
12379         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
12380         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
12381         finding this.)
12382
12383 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
12384
12385         * gtk+.spec.in: Corrected some typos in files section.
12386         
12387 1999-06-15  Tor Lillqvist  <tml@iki.fi>
12388
12389         * README.win32: Mention using GNU gettext.
12390         * config.h.win32: Enable NLS stuff.
12391         * gtk/makefile.msc: Use GNU gettext.
12392         * gdk/win32/gdkdnd.c: Minor header reorg.
12393         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
12394         cosmetics.
12395         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
12396         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
12397
12398 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
12399
12400         * acinclude.m4
12401         * config.guess
12402         * config.status
12403         * ltconfig
12404         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
12405
12406 1999-05-30  Tor Lillqvist  <tml@iki.fi>
12407
12408         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
12409         SafeAdjustWindowRectEx. Don't override all calls to
12410         AdjustWindowRectEx by it, but use it only in two places: When
12411         creating a new top-level window and when moving a top-level
12412         window.
12413
12414         Use screen coordinate rectangle, not client rectangle, in
12415         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
12416         when we try to place a window so that the decoration (mainly,
12417         title bar) isn't visible.
12418
12419         These changes fix the bug that showed up for instance as the
12420         GIMP's saved top-level windows moving right and down (by an amount
12421         equal to the window decoration) for each session. This bug showed
12422         up also in testgtk's "Saved Position".
12423
12424         gdk_window_resize also redone a bit.
12425
12426 1999-05-25  Tor Lillqvist  <tml@iki.fi>
12427
12428         * gtk/testgtkrc: Add (commented out) Windows-style theme
12429         include line.
12430
12431         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
12432
12433 1999-05-18  Tor Lillqvist  <tml@iki.fi>
12434
12435         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
12436         gdkx.h to a gdk subdirectory, so that applications can include
12437         these with <gdk/*.h> without trouble.
12438
12439         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
12440         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
12441         have their bitmap destroyed.
12442
12443         * gdk/win32/gdk.def: Add gdk_root_parent.
12444
12445 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
12446
12447         * configure.in
12448           gtk-config.in
12449           ltconfig
12450           ltmain.sh     
12451           gtk/Makefile.am: changes to compile nicely (with xlib) 
12452           on BeOS
12453
12454 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
12455
12456         * acinclude.m4
12457         * config.guess
12458         * config.sub
12459         * ltconfig
12460         * ltmain.sh: upgrade to libtool 1.3
12461
12462 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
12463
12464         * gtk/gtkclist.c:
12465         * gtk/gtkctree.c: merges from gtk-1-2
12466
12467 1999-04-25  Tor Lillqvist  <tml@iki.fi>
12468
12469         Support added for building using a GNU toolchain on Win32,
12470         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
12471
12472         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
12473         * config.h.win32: Changes for gcc.
12474         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
12475         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
12476         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
12477         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
12478         Protect shl stuff unavaiilable with mingw32 headers.
12479         * gdk/win32/gdkevents.c: Fix typo.
12480         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
12481         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
12482         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
12483         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
12484         the mingw32 headers.
12485         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
12486         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
12487         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
12488         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
12489         Test for NATIVE_WIN32, not _MSC_VER.
12490         * gtk/gtkmain.c: No use warning about developer version on Win32,
12491         there aren't any non-developer versions anyhow.
12492         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
12493         * gtk/makefile.msc: Use pthread from another directory. Minor other
12494         changes. 
12495
12496 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
12497
12498         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
12499           default filter from the list
12500
12501 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
12502
12503         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
12504          when gtk_widget_grab_default() is called for a widget that
12505          is not within a GtkWindow.
12506
12507 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
12508
12509         * docs/gtk_tut.sgml, examples/clist.c: use a
12510           scrolled window in the clist example. Minor
12511           tutorial fixes.
12512
12513 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
12514
12515         * docs/gtk_tut.sgml: Style check from David King
12516           <dking@youvegotmail.net>
12517
12518 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
12519
12520         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
12521         compile with unknown value of GDK_WINDOWING
12522
12523 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
12524
12525         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
12526         after the rule is fired.
12527         (install-exec-local): Install gdkconfig.h only if the contents are
12528         different from the currently installed gdkconfig.h.
12529
12530 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
12531
12532         * gdk/Makefile.am (configexecincludedir): Rename from 
12533         configincludedir so that gdkconfig.h will be installed 
12534         as part of `make install-exec'. 
12535
12536 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
12537
12538         * acinclude.m4
12539         * config.guess
12540         * config.sub
12541         * ltconfig
12542         * ltmain.sh: upgrade to libtool 1.2f
12543
12544         * autogen.sh: libtool is not required to autogen gtk+
12545
12546         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
12547         needed)
12548
12549 1999-03-18  Tor Lillqvist  <tml@iki.fi>
12550
12551         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
12552         declaring gdk variables exported/imported from the DLL. New image
12553         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
12554         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
12555         GDK_DRAG_PROTO_OLE2.
12556
12557         * gdk/gdk.h: Merge in Win32 version: Two new functions,
12558         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
12559         declared only for the Win32 version, but could be in the X11
12560         version as well. (Needed for a Xlib-less gdk_imlib.)
12561         gdk_color_hash should have only one parameter. Declare
12562         gdk_threads_mutex with GDKVAR.
12563         
12564         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
12565         just one parameter.
12566
12567         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
12568         per pixel, not bits.
12569
12570         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
12571         Fetch bpp (which means bits-per-pixel here) from another place on
12572         Win32. Accept also depth==32 (which we might get on Win32) with
12573         bpp==32.
12574
12575         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
12576         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
12577         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
12578         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
12579         in the backend-dependent directory, not in the common gdk
12580         directory.
12581
12582         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
12583         headers.
12584
12585 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
12586
12587         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
12588         want to use the Gtk+ devel version (which is true, and yes - even i am
12589         currently working with the 1.2.x branch). so everyone reading this, you
12590         probably want to issue
12591         cvs checkout -r glib-1-2 glib
12592         and
12593         cvs checkout -r gtk-1-2 gtk+
12594         as your next two comands.
12595
12596 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
12597
12598         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
12599         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
12600
12601         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
12602         file. strongly deprecated the GTK_HAVE_* macros, we provide
12603         GTK_CHECK_VERSION() for people that need to check for certain
12604         Gtk+ versions.
12605
12606         * gtk/gtkcompat.h: removed this from CVS.
12607         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
12608         idea right from the start, it just didn't seem like that back then.
12609
12610 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
12611
12612         * merges from gtk-1-2:
12613
12614 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
12615
12616         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
12617         item factory class has been created.
12618         (gtk_item_factory_parse_rc): likewise.
12619
12620         * gtk/gtkmenu.c:
12621         keep proper references for old_active_menu_item.
12622         (gtk_menu_reparent): unset the usize of the new parent,
12623         so the menu can sanely be size requested and we don't get nasty screen
12624         artefacts upon next reparentation.
12625         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
12626         enter notify. only synthesize enter notifies if the pointer really is
12627         inside the event window.
12628         (gtk_menu_popdown): use gtk_menu_shell_deselect().
12629         (gtk_menu_popup): move the background setting stuff into
12630         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
12631
12632         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
12633         gtk_menu_shell_select_item() to select the new item.
12634         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
12635         do the right thing for deselection as well.
12636
12637 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
12638
12639         * gtk/gtkwidget.[hc]:
12640         (gtk_widget_accelerators_locked): return whether a widget's accelerators
12641         are locked.
12642
12643         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
12644         existing accelerators if the widget's accelerators are locked.
12645
12646 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
12647
12648         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
12649
12650         * gtk/gtkmenu.c: truely forward key press and key release events to
12651         the menu widget from the toplevel or tearoff window. we can't simply
12652         connect to that, we need to stop further processing of the events as
12653         well.
12654
12655 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
12656
12657         * gtk/gtkmenu.c:
12658         (gtk_menu_key_press): pass event->keyval, event->state to
12659         gtk_accelerator_valid, instead of event->keyval twice.
12660         refuse to install single letter accelerators for menus that use
12661         single letter shortcuts.
12662
12663         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
12664         gtk_menu_ensure_uline_accel_group().
12665
12666         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
12667         which will always return an uline accel group, made
12668         gtk_menu_get_uline_accel_group() return NULL if the group isn't
12669         yet created.
12670
12671 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
12672
12673         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
12674
12675         * gtk/gtkclist.c (gtk_clist_column_title_passive):
12676         Leave button sensitive, trap  button_press, button_release,
12677         motion_notify, enter_notify and leave_notify events instead.
12678         (gtk_clist_column_title_active): disconnect event handler.
12679         (gtk_clist_drag_data_get): fixed memory leak. Reported by
12680         Guillaume Laurent <glaurent@worldnet.fr>
12681
12682 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
12683
12684         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
12685         width/height mixups.
12686
12687         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
12688         if needed.
12689
12690 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
12691
12692         * gtk/testgtk.c (create_item_factory): unref the item factory after
12693         window's destruction.
12694
12695         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
12696         count on the menu shell around the menu item's activation, since the
12697         signal emission may cause menu shell destruction.
12698
12699         * gtk/gtkitemfactory.c:
12700         the previous code leaked one accel group per menu. we use
12701         gtk_menu_get_uline_accel_group() now to fix that, and with that
12702         also create the underline accelerator group of the menus only if
12703         required (i.e. an underline accelerator has been specified).
12704         (gtk_item_factory_construct):
12705         (gtk_item_factory_create_item): removed code that would create an
12706         extra accel group for the menu (and leak references).
12707         (gtk_item_factory_create_item): adapted the underline accelerator
12708         installation code to properly feature gtk_menu_get_uline_accel_group().
12709
12710         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
12711         menu->accel_group, this may return NULL if the accelerator group
12712         hasn't been set yet.
12713         added gtk_menu_get_uline_accel_group() to retrive the underline
12714         accelerator group of the menu, this will be created on demand
12715         and proper care is taken about its reference count.
12716
12717         * gtk/gtkitemfactory.h:
12718         * gtk/gtkitemfactory.c:
12719         dumped the approach of keeping a widgets by action list on the
12720         factory since the factory<->widget destroy negotiation didn't work
12721         and would be hard to get going at all. instead we keep a list of
12722         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
12723         persistant throughout a program's life time).
12724         also, i removed the static const gchar *key_* variables, and made
12725         them inline strings (they weren't actually used anyways).
12726         (gtk_item_factory_add_item): update ifactory->items.
12727         (gtk_item_factory_destroy): destroy ifactory->items (and remove
12728         the item factory pointer from the remaining ifactory widgets).
12729         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
12730         list to find the widget.
12731         (gtk_item_factory_get_item): new function that works around
12732         gtk_item_factory_get_widget() limitations, this function will only
12733         return menu items, even for <Branch> entries.
12734
12735 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
12736
12737         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
12738         font hash table, if we have a GdkFontPrivate entry for this font
12739         already, simply increment its reference count, provided by Olaf Dietsche
12740         <olaf.dietsche+list.gtk@netcologne.de>.
12741
12742         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
12743         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
12744
12745 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
12746
12747         * gtk/gtkcontainer.c:
12748         (gtk_container_add_with_args):
12749         (gtk_container_addv):
12750         (gtk_container_add): before adding a child to a conatiner, make sure
12751         it is (default) constructed, this is neccessary because under certain
12752         circumstances the child will get relized and mapped immediatedly, in
12753         which case it has to be constructed already.
12754
12755 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
12756
12757         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
12758         values > 1 as TRUE also.
12759
12760 1999-03-16  Tor Lillqvist  <tml@iki.fi>
12761
12762         * README.win32: New file.
12763                 
12764         * configure.in: Check for lstat.
12765
12766         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
12767         completeness.
12768
12769         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
12770
12771         * gtk/gtk.def: Removed CRs.
12772
12773         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
12774         ..\gdk\win32).
12775
12776         * gdk/win32/makefile.msc: Correct upwards relative paths.
12777         
12778 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
12779
12780         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
12781           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
12782           it was connecting a void function to expose_event and the int
12783           returning function to the draw signal
12784
12785 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
12786
12787         * configure.in:
12788         Use correct path to libgmodule.la when ref'ing uninstalled copy
12789         of glib.  (Already in stable branch, Bug #417)
12790
12791 1999-03-15  Tor Lillqvist  <tml@iki.fi>
12792
12793         Win32 merge and general portability stuff:
12794                 
12795         * acconfig.h,configure.in: Check for <sys/time.h>.
12796
12797         * gdk/win32: New directory (actually, been there for a while).
12798         
12799         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
12800         NATIVE_WIN32, and use these. Always case fold on Win32. No
12801         backslashed escapes on native Win32.
12802
12803         * gtk/{gtk.def,makefile.msc}: New files.
12804
12805         * gtk/Makefile.am: Add above new files.
12806         
12807         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
12808         instead of <strings.h>.
12809
12810         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
12811         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
12812         <unistd.h> appropriately.
12813
12814         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
12815         Use ABS() (from <glib.h>) instead of abs().
12816         
12817         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
12818         of gtk (and thus glib) headers, so that WIN32 will be
12819         defined. With MS C, include <direct.h> for mkdir prototype.
12820
12821         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
12822         some casts, needed by MS C.
12823
12824         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
12825         implemented).
12826
12827         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
12828         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
12829         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
12830
12831         * gtk/gtkmain.h: Mark variables for export/import on Win32.
12832                 
12833         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
12834         the event is not a hint, or its window is not the slider. Needed
12835         on Win32, at least.
12836
12837         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
12838         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
12839         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
12840         a subdirectory of the Windows directory as gtk system
12841         configuration directory.
12842
12843         * gtk/gtkselection.c: No chunks on Win32.
12844
12845         * gtk/gtksocket.c: Not implemented on Win32.
12846
12847         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
12848
12849         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
12850
12851         * gtk/maketypes.awk: Declare variables with a macro that expands to
12852         necessary export/import magic in the case of Win32.
12853                 
12854         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
12855
12856 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
12857
12858         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
12859         since those were meant only for gdki18n.h.  
12860         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
12861         for widechar tests.
12862         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
12863
12864 1999-03-13  Tor Lillqvist  <tml@iki.fi>
12865
12866         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
12867         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
12868
12869         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
12870         installed) to CFLAGS.
12871
12872         * gdk/Makefile.am: Add rules for gdkconfig.h.
12873
12874         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
12875         APIs.
12876
12877         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
12878         gdkx.h anyway when compiling for X11.
12879         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
12880         general): Merge in Win32 version.
12881         
12882         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
12883         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
12884         expansion (if we don't have HAVE_PWD_H), allow for drive
12885         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
12886         included code from Craig Setera's port to Win32 (the one that uses
12887         X11, and the cygwin dll), even if it probably will be abandoned.
12888
12889         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
12890         the user entered one herself.  This way one can complete *.h and
12891         don't get matches on any .help files, for instance.
12892         
12893 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
12894
12895         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
12896         font hash table, if we have a GdkFontPrivate entry for this font
12897         already, simply increment its reference count, provided by Olaf Dietsche
12898         <olaf.dietsche+list.gtk@netcologne.de>.
12899
12900         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
12901         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
12902
12903 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
12904
12905         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
12906         the number of calls to gdk_draw_point() (and thus to X) by
12907         clipping the points by hand.
12908
12909         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
12910         the clip parameter.
12911         (gtk_handle_box_paint): Only paint the handle if the expose area
12912         intersects it.
12913
12914 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
12915
12916         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
12917
12918 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
12919
12920         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
12921         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
12922
12923 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
12924
12925         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
12926          textmode (O_TEXT) for OS/2 version.
12927
12928 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
12929
12930         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
12931         GtkSpinButton, "input" and "output", to make the output more flexible.
12932         The user has to provide a mapping between adjustment->value and the
12933         output string (and vice versa, if the spin button is editable). 
12934         See testgtk for examples.
12935
12936 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
12937
12938         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
12939         new one.
12940         
12941         * configure.in: set gtk+ version to 1.3.0.