]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
remove the packer example files as they don't exist in CVS.
[~andy/gtk] / ChangeLog.pre-2-6
1 2002-02-17  jacob berkman  <jacob@ximian.com>
2
3         * Makefile.am: remove the packer example files as they don't exist
4         in CVS.
5
6 2002-02-16  Manish Singh  <yosh@gimp.org>
7
8         * tests/testgtk.c: hm, check buttons look better for below.
9
10 2002-02-16  Manish Singh  <yosh@gimp.org>
11
12         * tests/testgtk.c: redid the filesel test. Added a way to set select
13         multiple as a toggle button, and made show/hide fileops toggle
14         buttons as well. get_selections() is called on OK and all the
15         filenames selected are printed.
16
17 2002-02-17  Tor Lillqvist  <tml@iki.fi>
18
19         * README.win32: Remove comment about the gtk-1-3-win32-production
20         branch having more functionality.
21
22         * gdk/win32/*.c: Massive changes. Too many to list here, but I'll
23         try a summary:
24
25         1) Unify GdkPixmap and GdkImage implementation: For each
26         GdkPixmap, allocate a GdkImage, and vice versa.
27         GdkPixmapImplWin32Data has a pointer to the GdkImage.
28         GdkImage::windowing_data is a pointer to the GdkPixmap.
29
30         This simplifies many pixmap and image related functions a lot, and
31         reduces duplicated code. For instance, there is only one
32         place in gdk/win32 where CreateDIBSection() is called, in the
33         function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
34         to a Windows region is almost trivial, with the bitmap bits being
35         readily accessible in the associated GdkImage.
36
37         All blitting between GdkPixmaps, GdkWindows and GdkImages goes
38         through handled the _gdk_win32_blit() function, which calls
39         different functions to handle the cases of blitting from pixmaps,
40         inside windows (scrolling), or from windows, which all require
41         somewhat different handling.
42
43         2) Support 256-color mode. This has long been very broken, now it
44         works more or less OK. Keep the logical palette for each colormap
45         as small as possible while allocating and freeing colors. Select
46         and realize the logical palette associated with a GdkColormap into
47         a DC before drawing or blitting.
48
49         When the display is in 256-color mode, make it possible for the
50         user to override the size of the palette(s) used with either the
51         GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
52         command line option. It is possible to reduce the palette size all
53         the way down to using just the 16 static colors (which causes the
54         system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
55         possibly be useful if one desperately wants to avoid color
56         flashing. (Note that in order for this to work properly, an as of
57         yet not commited fix to gdkrgb.c is needed.)
58
59         Handle the palette messages. On WM_PALETTECHANGED, call
60         UpdateColors() for the given window hierarchy. Do this only if a
61         window in some other top-level window hierarchy caused the palette
62         change (realized a palette). Do this max five times in a row (an
63         arbitrarily chosen limit), though, otherwise redraw by generating
64         expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
65         window hierarchy by generating GDK_EXPOSE events.
66
67         3) Code cleanup in general. For instance, remove the "emulated"
68         X11 structs ColormapStruct, Visual and XStandardColormap. Use the
69         new GDK_DEBUG_* flags for debugging output in the relevant source
70         files. Remove the unused colormap hash table in gdkcolor-win32.c
71
72         4) Plug some resource leaks.
73
74 2002-02-14  Tor Lillqvist  <tml@iki.fi>
75
76         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
77         g_filename_to_uri() to actually create legal URIs in the
78         text/uri-list data.
79
80 2002-02-16  Manish Singh  <yosh@gimp.org>
81
82         * gtk/gtkfilesel.[ch]: Added multiple selection API
83
84 2002-02-16  Manish Singh  <yosh@gimp.org>
85
86         * gdk/linux-fb/miarc.c: use fabs() on a double instead of abs()
87
88 2002-02-17  Matthias Clasen  <matthias@YAST_ASK>
89
90         More work on #71430.
91
92         * examples/*/Makefile (CFLAGS): add deprecation guards.
93         
94         * docs/tutorial/gtk-tut.sgml, examples/*/*.c: make most examples
95         deprecation-clean; the major offenders right now are the examples
96         that make heavy use of completely deprecated or broken widgets:
97         list, tree, text, pixmap, paned and progressbar. These will have
98         to be redone from scratch.
99
100 Sun Feb 17 00:13:06 2002  Kristian Rietveld  <kris@gtk.org>
101
102         This commit lands the 'dy patch'.
103
104         * gtk/gtktreeview.c (validate_rows_handler): update top_row or dy,
105         (gtk_tree_view_top_row_to_dy): new function,
106         (gtk_tree_view_row_changed): update top_row or dy,
107         (gtk_tree_view_rows_reordered): update top_row
108
109 2002-02-16  Matthias Clasen  <matthias@YAST_ASK>
110
111         * demos/Makefile.am (INCLUDES): add -DGDK_PIXBUF_DISABLE_DEPRECATED.
112
113 2002-02-16  Matthias Clasen  <matthias@YAST_ASK>
114
115         * examples/extract.awk: rearrange rules to not emit the example 
116         start and end markers.
117
118         * docs/tutorial/gtk-tut.sgml: turn the start and end markers into
119         SGML comments, so they don't clutter the formatted tutorial.
120
121 2002-02-16  Havoc Pennington  <hp@pobox.com>
122
123         * gtk/gtkwindow.c (gtk_window_parse_geometry): take
124         GDK_HINT_RESIZE_INC into account, and handle negative coordinates
125         correctly. (Can't email Owen - hope this is OK.)
126
127 Fri Feb 15 20:09:45 2002  Owen Taylor  <otaylor@redhat.com>
128
129         * gtk/gtkscrolledwindow.[ch] gtk/gtkmarshallers.list:
130         Add key bindings on GtkScrolledWindow for arrow keys,
131         PageUp/PageDown Home/End to scroll the window. 
132         Bind Control-[Shift]-Tab to focus out of the scrolled
133         window entirely. Allow the scrolled window to be
134         focused if no child can be focused. (#63480)
135
136         * gtk/gtkwidget.c (gtk_widget_hide): Remove the REALIZED()
137         check - if we have visible but not mapped widgets 
138         (inside a unshown notebook tab, for instance), we need
139         to track their size. (#65087, reported by Damon Chaplin.)
140
141         * gtk/gtkcolorsel.c (palette_change_color): Shut up
142         a warning.
143
144 2002-02-16  Tor Lillqvist  <tml@iki.fi>
145
146         * gdk/win32/rc/Makefile.am (gdk-win32res.lo): Depend on gtk.ico.
147
148         * gdk/win32/rc/gtk.ico: Use the real GTK logo. Thanks to Jernej
149         Simoncic for providing the nice multi-resolution .ico file.
150
151 2002-02-15 Alexey Malyshev <maa@sparc.spb.su>
152         
153         * gtk/tmpl/gtkimage.sgml
154         removed wrong sentence from gtk_image_new() docs
155
156 Fri Feb 15 19:38:00 2002  Kristian Rietveld  <kris@gtk.org>
157
158         * gtk/gtktreestore.c (gtk_tree_store_clear_traverse): new function
159         (gtk_tree_store_clear): traverse the tree, so we emit row_deleted
160         for every node. This way we don't have confused row refs crashing the
161         application. (#70631)
162
163 2002-02-14  Richard Hult  <rhult@codefactory.se>
164
165         * gtk/gtkpaned.c (gtk_paned_enter): Only queue a draw on the
166         handle, not the whole widget. #71530.
167         (gtk_paned_leave): Likewise.
168
169 2002-02-14  Jody Goldberg <jody@gnome.org>
170
171         * gtk/gtkrange.c (gtk_range_class_init) : add new signal
172           'adjust_bounds' to potentialy change the bounds before assigning the
173           new value and camping it to the existing bounds.
174         (gtk_range_internal_set_value) : used here. #68800.
175         * gtk/gtkmarshalers.list : add VOID:DOUBLE
176
177 Thu Feb 14 21:08:49 2002  Owen Taylor  <otaylor@redhat.com>
178
179         * gdk/gdkglobals.c: Remove GDKVAR from C file, see
180         if anyone complains. (#71317, Morten Welinder.)
181
182 2002-02-14  Matthias Clasen  <matthias@YAST_ASK>
183
184         The following changes are the beginning of the work on #71430.
185         
186         * examples/extract.sh, examples/extract.awk: Make extraction work.
187         
188         * examples/Makefile (SUBDIRS): Remove packer.
189
190         * examples/packer/pack.c, examples/packer/Makefile: Removed.
191
192         * docs/tutorial/gtk-tut.sgml: Fix the included examples far
193         enough to make them compile and (mostly) work, remove the packer
194         example.
195
196 Thu Feb 14 16:46:48 2002  Owen Taylor  <otaylor@redhat.com>
197
198         * gtk/gtkentry.c gtk/gtktextdisplay.c gtk/gtklabel.c
199         gtk/gtkstyle.[ch] gtk/gtkwidget.c: Patch from Bill
200         Haneman and Padraig O'Briain to add cursor_aspect_ratio
201         style property to GtkWidget to allow theming the aspect
202         ratio of the cursor.
203
204         * gtk/gtkentry.c gtk/gtktextview.c gtk/gtklabel.c
205         gtk/gtkwidget.c tests/testgtkrc: Move cursor-color style property
206         to GtkWidget.
207
208 Thu Feb 14 11:13:22 2002  Owen Taylor  <otaylor@redhat.com>
209
210         * gtk/gtkimmulticontext.c (gtk_im_multicontext_get_surrounding): 
211         Fix bug where we called get_surrounding on the context,.
212         not the slave.
213
214 Thu Feb 14 00:10:09 2002  Owen Taylor  <otaylor@redhat.com>
215
216         * gtk/gtktooltips.c (gtk_tooltips_event_handler): Only
217         pop the tooltip down on a select set of events, not
218         on any unknown event. (#71157, Jody Goldberg)
219
220         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
221         Fix some warnings.
222
223 Thu Feb 14 00:02:21 2002  Owen Taylor  <otaylor@redhat.com>
224
225         * gtk/gtkcalendar.c (gtk_calendar_size_request): A bunch of
226         small allocation/drawing fixes.
227
228         * gtk/gtkcalendar.c: Replace DAY_XPAD, DAY_YPAD with
229         GtkWidget::focus-padding
230
231 Wed Feb 13 23:01:20 2002  Owen Taylor  <otaylor@redhat.com>
232
233         * gtk/gtkcalendar.c: Patch from Bill Haneman to draw
234         to focus using gtk_paint_focus() with the focus width
235         GtkWidget::focus-width. (#63075)
236
237         * gtk/gtkcalendar.c (gtk_calendar_size_request): Initialize
238         label_char_ascent/descent to 0. (#56925, reported by
239         (Jean-Noel Guiheneuf)
240
241 2002-02-13  Havoc Pennington  <hp@redhat.com>
242
243         * gtk/gtktextview.c (gtk_text_view_flush_scroll): validate a
244         larger area, proportional to widget size, to fix
245         #71427 reported by Dennis Bjorklund
246
247 2002-02-13  Havoc Pennington  <hp@redhat.com>
248
249         * gtk/gtktextview.c (gtk_text_view_paint): just go ahead and flush 
250         all the first validate stuff if it hasn't been done, presumably
251         someone called process_updates at a weird time.
252
253         * tests/testtext.c (do_apply_colors): terminate on >= end, not >
254         end, avoids infinite loop when end is at the end of the buffer.
255
256         * gtk/gtktextbtree.c (_gtk_text_btree_delete): when creating a
257         line data, we were adding it to the wrong line ("line" instead of
258         "start_line")
259
260 2002-02-13  Joe Shaw  <joe@ximian.com>
261
262         * gtk/gtktreeitem.c (gtk_tree_item_expose): Don't chain up to the
263         container's expose event.  Instead call
264         gtk_tree_item_expose_child() on each child.  Avoids a failed
265         g_assert() in gtk_container_propagate_expose().
266         (gtk_tree_item_expose_child): Added.  Synthesize an expose event
267         for our children.  Basically gtk_container_propagate_expose()
268         minus the g_assert().  (#71396)
269
270 2002-02-13  Tor Lillqvist  <tml@iki.fi>
271
272         * gdk/gdkinternals.h: Add some more GdkDebugFlags, for more
273         fine-grained debugging output (mainly used in the Win32 backend).
274
275         * gdk/gdk.c: Corresponding additions to the gdk_debug_keys table.
276
277 Wed Feb 13 15:42:42 2002  Owen Taylor  <otaylor@redhat.com>
278
279         * gtk/gtktooltips.[ch] gtkwidget.c: Implement Control-F1
280         as toggle-tooltips-mode.
281
282         * gtk/gtktooltips.c: Remove parsing of tooltips style
283         string from here ... now in gtkrc.c.
284
285 Wed Feb 13 12:41:44 2002  Owen Taylor  <otaylor@redhat.com>
286
287         * gtk/gtkmain.c (gtk_init_check): g_warning() if setting
288         the local fails, like gdk_set_locale() did.
289
290         * gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list): 
291         Don't free local_list if local_count == 0. (#71241, reported
292         by Kevin Vandersloot.)
293
294         * gdk/x11/gdkselection-x11.c (gdk_text_property_to_text_list): 
295         Clean up list == NULL handling and failure.
296
297 Wed Feb 13 11:27:31 2002  Owen Taylor  <otaylor@redhat.com>
298
299         * tests/testtreeview.c (typesystem_recurse): Cast GType
300         to long and use %ld to fix warning. (#71318, Morten Welinder)
301
302 Wed Feb 13 13:26:39 2002  Tim Janik  <timj@gtk.org>
303
304         * gtk/gtkmenu.c: fix figuring accel path and changing behaviour.
305
306 Wed Feb 13 06:42:37 2002  Tim Janik  <timj@gtk.org>
307
308         * gtk/gtktable.c (gtk_table_size_allocate_pass1): partly revert
309         my recent expanding change to not expand the table if all children
310         have not epxand behaviour. this fixes palette views which often
311         use homogeneous non-expanding tables.
312
313 Tue Feb 12 14:27:41 2002  Kristian Rietveld  <kris@gtk.org>
314
315         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): emit
316         row_deleted before we start unreffing the nodes ourselves
317         (gtk_tree_model_sort_increment_stamp): always increment the stamp,
318         and not only if the stamp equals 0 (pointed out by Darin Adler)
319
320         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): we want
321         to continue the while loop and not the nested for loop.
322
323 Tue Feb 12 02:19:49 2002  Tim Janik  <timj@gtk.org>
324
325         * gtk/gtktable.c (gtk_table_size_allocate_pass1): always spread out
326         the extra space allocated for the homogeneous case, as we don't
327         properly deal with readjusting table allocation within it. (for  this
328         purpose, a GtkAlignment can be used as table parent).
329
330 2002-02-11  Darin Adler  <darin@bentspoon.com>
331
332         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_row_changed):
333         Consider reordering the row even when there's no sort column, if
334         there's a default sort function.
335         (gtk_tree_model_sort_rows_reordered): Use symbolic constants.
336         (gtk_tree_model_sort_level_find_insert): Add code to handle the
337         case where there is no sort column, but a default sort function.
338         (gtk_tree_model_sort_insert_value): Add code to handle the case
339         where there is no sort column an no default sort function.
340         (gtk_tree_model_sort_set_model): Use symbolic constant.
341         (gtk_tree_model_sort_reset_default_sort_func): Use symbolic constant.
342
343 2002-02-11  Sven Neumann  <sven@gimp.org>
344
345         * gtk/gtkfilesel.c: converted the "Delete File" dialog to
346         GtkMessageDialog. Marked missing strings for translation.
347
348 Mon Feb 11 22:03:15 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
349
350         * gtk/gtkpaned.[ch]: Opaque resizing + prelighting for paned widget.
351         * gtk/gtkvpaned.c, gtk/gtkhpaned.c: move reszing logic to gtkpaned.c
352
353 Mon Feb 11 21:42:17 2002  Kristian Rietveld  <kris@gtk.org>
354
355         Implements DnD scrolling and fixes #71139
356
357         * gtk/gtktreeview.c (gtk_tree_view_vertical_autoscroll): new function,
358         (scroll_row_timeout): new function,
359         (gtk_tree_view_drag_motion): create scroll_timeout, so
360         scroll_row_timeout gets called
361
362 Mon Feb 11 17:54:46 2002  Kristian Rietveld  <kris@gtk.org>
363
364         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set upper
365         member of hadjustment correct, so the hscrollbars of lists smaller
366         than 1 page (in width) are somewhat saner
367
368 2002-02-11  jacob berkman  <jacob@ximian.com>
369
370         * gdk/gdkwindow.h (gdk_get_default_root_window): fix signature to
371         match implementation
372
373 Mon Feb 11 16:48:34 2002  Kristian Rietveld  <kris@gtk.org>
374
375         * gtk/gtkliststore.c (gtk_list_store_set_valist): set value of
376         func to NULL during initialization (we don't use func in the
377         !SORTED case, so we just silent the compiler here) (#71029)
378
379 Mon Feb 11 16:40:44 2002  Kristian Rietveld  <kris@gtk.org>
380
381         * gtk/gtktreeview.c (gtk_tree_view_set_model): install presize
382         handler, so the validate_rows_handler will always be run (#70997)
383
384 Sun Feb 10 22:20:46 2002  Kristian Rietveld  <kris@gtk.org>
385
386         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): increase
387         value of new_location by one if cmp_a > 0 and we hit the end of
388         the list and pass NULL instead of a 'NULL-iter' with
389         _rows_reordered (#71060)
390
391 Sun Feb 10 12:32:44 2002  Owen Taylor  <otaylor@redhat.com>
392
393         * modules/input/Makefile.am modules/input/{imam-et.c, imti-er.c,
394         imti-et.c} po/POTFILES.in: Add three Ethiopic input methods from
395         Daniel Yacob.
396
397 2002-02-10  Anders Carlsson  <andersca@gnu.org>
398
399         * gtk/gtkcalendar.c (gtk_calendar_class_init): Set finalize handler;
400         (gtk_calendar_finalize): Rename gtk_calendar_destroy to 
401         gtk_calendar_finalize since ::destroy can be called multiple times, 
402         resulting in double-freeing memory.
403
404 2002-02-10  Hans Breuer  <hans@breuer.org>
405
406         * gdk/win32/gdkgeometry-win32.c : don't reduce the scroll
407         rect size by the scroll amount
408
409         * gdk/win32/gdkwindow-win32.c
410         * gdk/win32/gdkselection-win32.c : added some casts to
411         make it compile with msvc's strict type checking
412
413         * gtk/fnmatch.c : #include <ctype.h> again for tolower
414         prototype. The fnmatch() code assumes to be in the crt 
415         locale though it is feeded by utf8 strings from gtkfilesel.c
416
417         * gtk/gtkfilesel.c : let ->cmpl_text be a strdup managed by
418         _CompletionDir instead of referencing already freed memory
419
420         * gtk/gtktooltips.c (gtk_tooltips_init) : fix typo to
421         gtk_rc_parse_string (theDefaultTooltipColor) once as it
422         was intended
423
424         * tests/makefile.msc : added more tests
425
426         * tests/testgtk.c (create_list) : don't try to load gtkenums.h
427         from the current directory use ../gtk/gtkenums.h instead
428
429 2002-02-10  Kjartan Maraas  <kmaraas@gnome.org>
430
431         * gtk/gtksizegroup.c: Fix a double "The" typo in a string.
432         
433 2002-02-09  Matthias Clasen  <matthias@local>
434
435         * gtk/gtknotebook.c (gtk_notebook_set_focus_child): Avoid segfault
436         for selectable tab labels (even without a segfault, they make the
437         notebook almost unusable, though).  (#69985)
438
439 2002-02-08  Matthias Clasen  <matthias@local>
440
441         * gtk/gtkmenuitem.c (gtk_menu_item_set_accel_path): Silently do 
442         nothing if the parent is not a menu.  (#66492)
443
444 2002-02-06  Matthias Clasen  <matthiasc@poet.de>
445
446         * gtk/gtkitemfactory.c (gtk_item_factory_from_widget,
447         gtk_item_factory_path_from_widget): Try fetching the return value 
448         from menu_item->submenu as a fallback.  (#69020)
449         
450 Sat Feb  9 22:57:43 2002  Kristian Rietveld  <kris@gtk.org>
451
452         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): convert
453         the iter to a child iter again, after doing _iter_children. It's
454         possible that _iter_children added some rows and updated the stamp.
455
456 2002-02-09  Daniel Elstner  <daniel.elstner@gmx.net>
457
458         * gtk/gtktextchild.c: Use == rather than = in sanity
459         checks.  Ouch!
460
461 2002-02-09  Daniel Elstner  <daniel.elstner@gmx.net>
462
463         * gtk/gtktextchild.c (CHECK_IN_BUFFER_RETURN): Add missing
464         curled braces so that it doesn't always return.  Also indent
465         both CHECK_IN_BUFFER* macros properly, and make use of
466         G_STMT_START/G_STMT_END.
467
468 Sat Feb  9 13:27:14 2002  Owen Taylor  <otaylor@redhat.com>
469
470         * gtk/gtkbindings.h: Add prototype for
471         _gtk_binding_reset_parsed().
472
473 Sat Feb  9 13:19:20 2002  Owen Taylor  <otaylor@redhat.com>
474
475         * configure.in gtk/Makefile.am gtk/theme-bits/*: Add
476         tools and images used for creating the check/radio
477         button images in the default theme.
478
479 Sat Feb  9 13:58:41 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
480
481         * gtk/gtkpaned.[ch]: Keyboard navigation for GtkPaned
482         F6: cycle between panes.
483         F8: focus handle (#53584)
484         
485         * tests/testgtk.c: Add test cases for GtkPaned keyboard 
486         navigation.
487         
488 Sat Feb  9 00:16:31 2002  Owen Taylor  <otaylor@redhat.com>
489
490         * gdk/x11/gdkimage-x11.c (_gdk_x11_copy_to_image): 
491         XCopyArea with subwindow_mode = IncludeInferiors.
492         (#70999)
493
494         * demos/testpixbuf-save.c (configure_cb): Fix a minor
495         memory management problem.
496
497 Fri Feb  8 20:24:58 2002  Owen Taylor  <otaylor@redhat.com>
498         
499         * gtk/gtkbindings.c (binding_compose_params): Fix problem
500         with string-valued parameters (#70012, Johan Dahlin.)
501
502         * gtk/gtkentry.c (gtk_entry_delete_whitespace): Fix 
503         white space deletion.
504
505 Fri Feb  8 21:25:56 2002  Jonathan Blandford  <jrb@redhat.com>
506
507         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): fix
508         evil ref bug where the wrong row and a deleted row was unreffed.
509         Found by Darin Adler <darin@bentspoon.com>
510
511 Fri Feb  8 18:46:13 2002  Owen Taylor  <otaylor@redhat.com>
512
513         * gtk/gtkbindings.[ch] (_gtk_binding_reset_parsed): Add
514         a function to delete all bindings add by
515         gtk_binding_parse_binding() when rereading RC files.
516
517         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): Reset
518         binding set content as well as RC content.
519
520         * gtk/gtkbindings.c (binding_compose_params): Fix 
521         various GValue handling problems.
522
523         * gtk/gtkentry.c (gtk_entry_class_init): Remove bindings 
524         for C-b, C-f, M-b, M-f, C-a, C-e, C-w, C-y, M-space, C-u,
525         C-k, M-\, M-d, C-d.
526
527         * gtk/gtktextview.c (gtk_text_view_class_init): Remove
528         same bindings as GtkEntry, plus C-n, C-p, C-space
529
530         * gtk/gtkrc.key.default gtk/gtkrc.key.emacs gtk/Makefile.am:
531         Add Emacs and Default key themes.
532         
533 2002-02-08  Darin Adler  <darin@bentspoon.com>
534
535         * gtk/gtktreeview.c: (gtk_tree_view_map_expanded_rows_helper):
536         Remove a tiny bit more dead code.
537
538 2002-02-08  Darin Adler  <darin@bentspoon.com>
539
540         * gtk/gtktreeview.c: (gtk_tree_view_map_expanded_rows_helper):
541         Fix stale pointer bug.
542
543 Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
544
545         * gtk/gtkclist.c (title_focus_in): Return FALSE if
546         not showing the titles. (#70959, Thomas Leonard)
547
548 2002-02-08  Darin Adler  <darin@bentspoon.com>
549
550         * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
551         * gdk/x11/gdkim-x11.c: Remove gdki8n.h include.
552         * gdk/x11/gdkkeys-x11.c: Remove <ctype.h> include.
553         * gdk/x11/gdkmain-x11.c: Remove <ctype.h> include.
554         * gtk/fnmatch.c: Remove <ctype.h> include.
555         * gtk/gtkaccelgroup.c: Remove <ctype.h> include.
556         * gtk/gtkaccellabel.c: (gtk_accel_label_refetch): toupper ->
557         g_unichar_toupper, toupper -> g_unichar_totile
558         * gtk/gtkbindings.c: Remove <ctype.h> include.
559         * gtk/gtkfontsel.c: Remove <ctype.h> include.
560         * gtk/gtkiconfactory.c: Remove <ctype.h> include.
561         * gtk/gtkinputdialog.c: Remove <ctype.h> include.
562         * gtk/gtklabel.c: Remove <ctype.h> include.
563         * gtk/gtkmain.c: Remove <ctype.h> include.
564         * gtk/gtkmenu.c: Remove <ctype.h> include.
565         * gtk/gtkoldeditable.c: Remove <ctype.h> include.
566         * gtk/gtkrc.c: Remove <ctype.h> include.
567         * gtk/gtktextbtree.c: Remove <ctype.h> include.
568         * gtk/gtktextiter.c: Remove <ctype.h> include.
569         * gtk/gtktextsegment.c: Remove <ctype.h> include.
570
571 2002-02-08  Sven Neumann  <sven@gimp.org>
572
573         * gtk/gtkfilesel.c
574         * gtk/gtkgamma.c
575         * gtk/gtkinputdialog.c: use stock labels for dialog action buttons.
576
577 2002-02-08  Darin Adler  <darin@bentspoon.com>
578
579         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_ref_node),
580         (gtk_tree_model_sort_unref_node): Pass the ref_node and
581         unref_node calls through to the child model.
582
583 2002-02-08  Laszlo Peter  <laca@ireland.sun.com>
584
585         * gtk/gtktextchild.c: s/__FUNCTION__/G_GNUC_FUNCTION/
586         * gtk/gtktextview.c: ditto
587
588 2002-02-07  Havoc Pennington  <hp@pobox.com>
589
590         * gtk/gtkspinbutton.h (struct _GtkSpinButtonClass): add
591         change_value virtual function, to fix build
592
593         * gtk/gtkpixmap.c (gtk_pixmap_class_init): parent_class was 
594         from GtkWidget not GtkMisc. Not that it ever mattered.
595
596 Thu Feb  7 19:52:00 2002  Owen Taylor  <otaylor@redhat.com>
597
598         * gtk/gtknotebook.[ch]: Add ::move-focus-out signal
599         to handle Control[-Shift]-Tab and Control-arrow
600         bindings and implement bindings as per #53612.
601
602         * gtk/gtktextview.c (gtk_text_view_move_focus): Fix 
603         fetching the toplevel for plug-socket.
604
605         * gtk/gtknotebook.c (gtk_notebook_class_init): Remove
606         bindings for Return/Enter to select the page.
607
608         * gtk/gtknotebook.c (gtk_notebook_change_current_page):
609         Beep at ends.
610
611         * gtk/gtknotebook.c (focus_tabs_move): Don't wrap around
612         and beep at ends.
613
614         * gtk/gtknotebook.c (gtk_notebook_focus): When focusing into
615         the page with the arrow keys, focus the first widget,
616         not the directionally closest widget.
617
618 Thu Feb  7 19:00:10 2002  Owen Taylor  <otaylor@redhat.com>
619
620         * gtk/gtkspinbutton.c (gtk_spin_button_key_release): Convert
621         to using  binding set for doing key bindings. (#62622,
622         Requested by Skip Montaro)
623
624         * gtk/gtkwindow.c (gtk_window_class_init): Add control-arrow
625         bindings as overrides along with control-tab bindings.
626
627         * gtk/gtknotebook.c (gtk_notebook_class_init): Fix return
628         type for ::focus_tab signal.
629
630 Thu Feb  7 19:39:27 2002  Kristian Rietveld  <kris@gtk.org>
631
632         Fixes #70782 and some drag dest rectangle/line issues
633
634         * gtk/gtktreeview.c (gtk_tree_view_set_model): set
635         GTK_TREE_VIEW_IS_LIST flag (we can switch from a TreeStore to a
636         ListStore for example)
637         (gtk_tree_view_get_path_at_pos): revert previous change, we
638         shouldn't correct for the header, because we are taking bin_window
639         coordinates here
640         (gtk_tree_view_set_drag_dest_row): queue old drag_dest row and
641         upper/lower neighbors for draw, so the drag dest rectangle/line will
642         be cleared correctly
643         (gtk_tree_view_get_dest_row_at_pos): correct for treeview header
644         here, as drag_y is relative to the widget and _get_path_at_pos wants
645         coords relative to bin_window, draw black outline rectangle after
646         drawing the cells
647
648 Thu Feb  7 10:53:12 2002  Owen Taylor  <otaylor@redhat.com>
649
650         * gtk/gtkentry.c (gtk_entry_draw_text): Use layout text
651         (which may be affected by invisible char) to compute
652         selection bounds, not entry text. (#70733, Alex Larsson)
653
654 2002-02-07 Padraig O'Briain <padraig.obriain@sun.com>
655
656         * gtk/gtkwidget.[ch]:
657         Change show_help signal to return gboolean instead of void. This
658         allows the keypress which invokes the signal to be propagated to the
659         focus widgets ancestors if not handled by the focus widget.
660         
661         * gtk/gtktoolips.[ch]
662         Change _gtk_tooltips_show_tip () to return a gboolean indicating
663         whether widget has tooltip to display.
664         
665 2002-02-07 Padraig O'Briain <padraig.obriain@sun.com>
666
667         * gtk/gtkwidget.[ch]:
668         Change popup_menu signal to return gboolean instead of void. This
669         allows the keypress which invokes the signal to be propagated to the
670         focus widgets ancestors if not handled by the focus widget.
671
672         * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtktextview.c:
673         Change signature of popup_menu signal handler to return gboolean
674         instead of void and return TRUE in the signal handler
675
676 2002-02-07  Anders Carlsson  <andersca@gnu.org>
677
678         * gdk/x11/xsettings-common.c (xsettings_setting_free): Free 
679         the setting name.
680
681 Wed Feb  6 23:28:39 2002  Kristian Rietveld  <kris@gtk.org>
682
683         Fixes #70708
684
685         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): we're dealing
686         with widget coordinates here, so take the header height into
687         account while converting
688         (gtk_tree_view_widget_to_tree_coords): take header height into
689         account
690         (gtk_tree_view_tree_to_widget_coords): ditto
691         (gtk_tree_view_get_dest_row_at_pos): we were passing coords
692         relative to the tree with _get_path_at_pos, while that function
693         wants coords relative to the widget
694
695 2002-02-06  Havoc Pennington  <hp@redhat.com>
696
697         * gtk/gtktextview.c (gtk_text_view_scroll_hpages): remove unused variable
698         (gtk_text_view_get_window): add warning about how you
699         can't get the private window. #70683, and avoid default: in the
700         switch so we get "enum value unhandled" warnings
701
702 2002-02-06  Havoc Pennington  <hp@redhat.com>
703
704         * gtk/gtktextchild.c: Add warnings if you try to use a child
705         anchor that isn't inside a buffer. Really kind of lame; 
706         we should separate the anchor from the buffer. But not worth 
707         fixing for now. #70601
708
709 Wed Feb  6 18:25:24 2002  Kristian Rietveld  <kris@gtk.org>
710
711         * gtk/gtktreemodelsort.c: rip out all the debugging ifdefs, as
712         modelsort seems to be stable (and nobody complained :)
713
714 Tue Feb  5 19:13:42 2002  Owen Taylor  <otaylor@redhat.com>
715
716         * gdk/x11/gdkgeometry-x11.c (gdk_window_queue): Keep
717         the length of the anti-expose queue finite, by if
718         it gets too long, first doing a XSync() and checking
719         the event queue, and if that doesn't work, simply
720         discarding all anti-expose items in the queue.
721
722         * gdk/x11/gdkdnd-x11.c (gdk_window_cache_filter): Fix ordering
723         on ConfigureNotify (#56349, Thomas Leonard)
724
725 2002-02-05  Havoc Pennington  <hp@redhat.com>
726
727         * gtk/gtkimage.c (gtk_image_expose): offset area being gotten from
728         pixmap by the align/padding offsets, so we don't get warnings
729         in gdk_pixbuf_get_from_drawable (and so it works, of course)
730
731 2002-02-05  Matthias Clasen  <matthiasc@poet.de>
732
733         * gtk/gtkrc.c (gtk_rc_parse_file): Remove a (now) misleading comment.
734
735 2002-02-05  Federico Mena Quintero  <federico@ximian.com>
736
737         * gdk/gdkwindow.h: Do not #include <gdk/gdkwindow.h>.
738
739 Tue Feb  5 22:54:16 2002  Kristian Rietveld  <kris@gtk.org>
740
741         * gtk/gtkliststore.c (gtk_list_store_insert_after): let's set the
742         path, which we're going to pass with the emission of row_inserted, to
743         the iter we inserted and not its sibling.
744
745 2002-02-04 Padraig O'Briain <padraig.obriain@sun.com>
746
747         * gtk/gtkmenu.c (gtk_menu_popup):
748         Fix leak of GdkEvent (#70519)
749
750 Mon Feb  4 10:40:28 2002  Owen Taylor  <otaylor@redhat.com>
751
752         * gtk/gtkstyle.c (gtk_default_draw_resize_grip):
753         Fix from Matthias Clasen to clear background appropriately
754         for theme by calling gtk_style_apply_default_background().
755         (#70449)
756
757 Mon Feb  4 10:06:49 2002  Owen Taylor  <otaylor@redhat.com>
758
759         * gdk/x11/gdkevents-x11.c: gtk-double-click-time,
760         not gtk-double-click-timeout. (#70501)
761
762 2002-02-04  Havoc Pennington  <hp@pobox.com>
763
764         * gtk/gtksignal.c (gtk_signal_connect_while_alive): 
765         (gtk_signal_connect_object_while_alive): rename 
766         "signal" arg to "name" to avoid compiler warnings
767         about shadowing signal(). #70453
768
769 2002-02-03  Anders Carlsson  <expander-master@gtk.org>
770
771         * gtk/gtkstyle.c (gtk_default_draw_expander): Add 
772         flipping support to the expanders.
773
774 Sat Feb  2 21:54:01 2002  Owen Taylor  <otaylor@redhat.com>
775
776         RC file lookup improvements (#68234, suggestions
777         from Matthias Clasen.)
778
779         * gtk/gtkrc.c (gtk_rc_parse_file): Look for the 
780         locale suffix variants (gtkrc.en_US, gtkrc.en) for
781         all RC files we parse, not just the default RC
782         files.
783
784         * gtk/gtkrc.c (gtk_rc_parse_default_files): Remove
785         support for charset specific RC files.
786
787 Sat Feb  2 20:16:04 2002  Owen Taylor  <otaylor@redhat.com>
788
789         * gtk/gtkmenushell.c (_gtk_menu_shell_select_first): 
790         Non-exported _gtk_menu_select_first() function that
791         selects the first item of the menu in a standard
792         way. (Skipping tearoffs.)
793
794         * gtk/gtkmenushell.c gtk/gtkentry.c gtk/gtktextview.c
795         gtkmenuitem.c: Use _gtk_menu_shell_select_first().
796
797         * gtk/gtkmenuitem.c (gtk_real_menu_item_select): Remember
798         if we are starting the timeout from a keypress so
799         we can set menushell->ignore_enter properly.
800
801         * gtk/gtknotebook.c (focus_child_in): Return something
802         meaningful if there are no children.
803
804         * gtk/gtkmenu.c (gtk_menu_key_press): Fix precendence
805         problem.
806
807 Sat Feb  2 19:15:42 2002  Owen Taylor  <otaylor@redhat.com>
808
809         * gtk/gtkmenu.c (gtk_menu_popup): Fix some bugs in
810         the determination of xgrab_shell.
811
812 Sat Feb  2 17:43:00 2002  Owen Taylor  <otaylor@redhat.com>
813
814         * gtk/gtkentry.c (gtk_entry_grab_focus): Add a GtkSetting
815         (gtk-entry-select-on-focus) controlling whether the
816         contents of an entry are selected on focus in.
817
818         * gtk/gtkmenu.c (gtk_menu_key_press): Add a GtkSetting
819         (gtk-can-change-accels) controlling whether accelerators can be
820         changed on the fly or not. (#51902)
821
822         * gtk/gtkmenu.c (gtk_menu_key_press): Allow unmodified
823         accelerators, now that accelerator changing can be turned
824         off for those who won't expect it. (#61285)
825
826         * gtk/gtkaccelgroup.c (gtk_accelerator_valid): Allow 
827         Backspace/Delete/KP_Delete as valid accelerators.
828
829         * gtk/gtkmenu.c (gtk_menu_key_press): Allow setting of
830         Delete/Backspace as accelerators by making them toggle
831         the menu item between empty and the pressed key.
832         (#58605)
833
834         * tests/testgtkrc: Remove the objectionably short cursor blink
835         time setting.
836
837 Sat Feb  2 16:43:31 2002  Owen Taylor  <otaylor@redhat.com>
838
839         * gtk/gtkmenu.c (gtk_menu_popup): To get around the fact
840         that we may have a owner_events = FALSE grab in effect
841         when we pop up a window, make a temporary grab on a
842         different window, then grab on the real window. Fixes
843         a problem where if a context menu popped up under the 
844         cursor, the first item would be stuck unselected.
845         (#59812, reported by Arnaud Charlet.)
846
847 2002-02-02  Peter Williams  <peterw@ximian.com>
848
849         * gtk/Makefile.am (install-data-local): Install gtkrc.default
850         from $(srcdir) for when $(builddir) is different.
851
852 Sat Feb  2 19:00:39 2002  Kristian Rietveld  <kris@gtk.org>
853
854         * gtk/Makefile.am: remove TESTGTK_RCFILE define
855
856 Sat Feb  2 11:37:21 2002  Owen Taylor  <otaylor@redhat.com>
857
858         * gtk/gtkmenu.c (gtk_menu_popup): Remove the 
859         "select first item if popped up from keypress" hack --
860         was causing more problems than it was worth 
861         (#53191, #68483)
862
863         * gtk/gtktextview.c (popup_targets_received): 
864          gtk/gtkentry.c (popup_targets_received): If activated
865         from keyboard, select first item of popup menu.
866
867 Sat Feb  2 18:07:51 2002  Kristian Rietveld  <kris@gtk.org>
868
869         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set upper member
870         of vadjustment correct, so the vscrollbars of lists smaller than
871         1 page are somewhat saner (#66905)
872
873         * gtk/gtkliststore.c (gtk_list_store_remove_silently): do not
874         increment the stamp, liststore is a model with persisting iters
875
876 Fri Feb  1 23:54:00 2002  Owen Taylor  <otaylor@redhat.com>
877
878         * gtk/gtkrc.[ch] (gtk_rc_parse_engine): Support 
879         engine "" {} to mean override to the default 
880         engine. (#70205)
881
882 Fri Feb  1 23:25:33 2002  Owen Taylor  <otaylor@redhat.com>
883
884         * gtk/gtktooltips.c (gtk_tooltips_init): Parse the
885         RC string here when the first object is created
886         rather than in the class_init to not break doc 
887         building. (#70341, Havoc Pennington.)
888
889         * gtk/gtkrc.c (parse_include_file): Use the directories
890         for the currently parsed files as the starting point
891         to look for include files. (#59975)
892
893 Fri Feb  1 20:21:56 2002  Manish Singh  <yosh@gimp.org>
894
895         * gtk/gtkinputdialog.c: use gtk_label_new_with_mnemonic for labels
896         that actually have mnemonics
897
898 Fri Feb  1 19:57:59 2002  Owen Taylor  <otaylor@redhat.com>
899
900         * configure.in: Fix use of ! in shell.
901
902         * gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default: 
903         Move the setting of default tooltips colors to gtktooltips.c
904         from gtkrc.default. (Use default priority so themes will
905         override.) (#58542)
906
907 Fri Feb  1 17:48:51 2002  Owen Taylor  <otaylor@redhat.com>
908
909         * gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
910         priorities so that priorities take precendence over
911         the ordering by type. (#70205)
912
913         * test/testgtkrc tests/testgtk.c (create_rc_file): Add 
914         some labels to test priorities in testgtkrc.
915
916 Fri Feb  1 00:37:49 2002  Kristian Rietveld  <kris@gtk.org>
917
918         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): use
919         y coordinate relative to the tree and not the treeview window
920         (fixes the PgDn/PgUp brokenness)
921
922 Fri Feb  1 23:40:31 2002  Kristian Rietveld  <kris@gtk.org>
923
924         * gtk/gtktreeview.c (gtk_tree_view_button_press): adjust
925         cell_area and background_area for possible treeview scroll
926         (fixes #70283, #70065)
927
928 Fri Feb  1 22:20:13 2002  Kristian Rietveld  <kris@gtk.org>
929
930         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): use
931         height - page_size not height - allocation->height (fixes #66269)
932
933 Fri Feb  1 15:22:23 2002  Owen Taylor  <otaylor@redhat.com>
934
935         * gtk/gtkimage.c (gtk_image_class_init): Fix typo
936         in property description. (Christian Rose.)
937
938 Fri Feb  1 14:50:36 2002  Owen Taylor  <otaylor@redhat.com>
939
940         * gtk/gtkrc.c (gtk_rc_parse_string): Handle reparsing
941         any strings if the theme changes. (#69465)
942
943         * tests/testgtk.c: Add a test for gtk_rc_parse_string().
944
945 Fri Feb  1 20:50:29 2002  Kristian Rietveld  <kris@gtk.org>
946
947         * gtk/gtktreeview.c (gtk_tree_view_dy_to_top_row): set tree to
948         NULL if tree_view->priv->tree is NULL (#70152, patch by John Harper).
949
950 Fri Feb  1 12:51:20 2002  Owen Taylor  <otaylor@redhat.com>
951
952         * gtk/gtknotebook.c (focus_child_in): Catch the
953         cur_page == NULL (no children) case. (#70287,
954         Paolo Maggi.)
955
956 Fri Feb  1 12:12:12 2002  Owen Taylor  <otaylor@redhat.com>
957
958         * gtk/gtkfilesel.c (attempt_file_completion): 
959         s/directory/folder/ in all labels and messages.
960
961 Fri Feb  1 08:57:38 2002  Owen Taylor  <otaylor@redhat.com>
962
963         * gtk/gtkmain.c (gtk_exit_func): Remove this useless
964         atexit handler. (existance pointed out by Stefan Kost)
965
966         * gtk/gtkmain.c (gtk_init_check): Warning fixes.
967
968 Thu Jan 31 18:46:10 2002  Jonathan Blandford  <jrb@redhat.com>
969
970         * gtk/gtktreemodel.c (gtk_tree_row_reference_free): unref the
971         model after the last use, not before.
972
973 Thu Jan 31 14:50:16 2002  Owen Taylor  <otaylor@redhat.com>
974
975         * gtk/gtkrc.default gtk/Makefile.am: Install a Default
976         RC file that sets the tooltips color to yellow. (#58542)
977
978         * gtk/gtksettings.c (gtk_settings_class_init): make 
979         the default theme "Default", not NULL.
980
981 Thu Jan 31 11:33:52 2002  Owen Taylor  <otaylor@redhat.com>
982
983         * gdk/x11/gdkproperty-x11.c (insert_atom_pair): Fix 
984         another missing static.
985
986         * gtk/gtkimmodule.c (n_loaded_contexts): And another.
987
988         * gdk/x11/Makefile.am gdk/x11/gxid_lib.c: Don't
989         build gxid sources at all except in the vanishingly
990         rare case of --with-xinput=xfree.
991
992 2002-01-31  Mark McLoughlin  <mark@skynet.ie>
993
994         * gdk/gdkimage.c: (scratch_image_info_for_depth): make static.
995
996         * gdk/x11/gdkimage-x11.c: (get_full_image): ditto.
997
998         * gdk/x11/gxid_lib.[ch]: (_gxid_claim_device), (_gxid_release_device):
999         renamed from gxid_(claim|release)_device.
1000
1001         * gdk/x11/gdkinput-gxi.c: (_gdk_input_enable_window),
1002         (_gdk_input_disable_window): upd for gxid change.
1003
1004         * gtk/gtkimage.c: (animation_timeout): make static.
1005
1006         * gtk/gtkstyle.c: (draw_thin_shadow), (draw_spin_entry_shadow): make
1007         static.
1008
1009         * gtk/gtktextutil.c: (bidi_menu_entries): make static.
1010
1011 Thu Jan 31 10:21:05 2002  Owen Taylor  <otaylor@redhat.com>
1012
1013         * gtk/gtkplug.c (gtk_plug_focus): Handle the case where
1014         bin->child is NULL. (#70153, Padraig O'Briain)
1015
1016         * gtk/gtktextutil.c (_gtk_text_util_append_special_char_menuitems): 
1017         Actually call gettext() on the labels; previously they
1018         were marked with N_() but we never called gettext().
1019
1020 Wed Jan 30 20:15:49 2002  Jonathan Blandford  <jrb@redhat.com>
1021
1022         * gtk/gtktreestore.c (gtk_tree_store_set_valist): save last minute
1023         changes before committing.
1024
1025         * gtk/gtkliststore.c (gtk_list_store_set_valist): ditto
1026
1027 Wed Jan 30 18:46:14 2002  Jonathan Blandford  <jrb@redhat.com>
1028
1029         * gtk/gtkliststore.c (gtk_list_store_set_valist): only emit the
1030         signal if an interesting column changes.
1031
1032         * gtk/gtktreestore.c: ditto.
1033
1034         * gtk/gtktreeview.c (gtk_tree_view_set_cursor): change behavior so
1035         that it no longer grabs 
1036
1037 2002-01-30  Manish Singh  <yosh@gimp.org>
1038
1039         * gtk/gtkhandlebox.c (gtk_handle_box_destroy): remove unused
1040         variable.
1041
1042         * gtk/gtkwindow.c (gtk_window_get_icon): function returns a value,
1043         so return NULL with g_return_val_if_fail instead of g_return_if_fail.
1044
1045 2002-01-30  Matthias Clasen  <matthiasc@poet.de>
1046
1047         * gtk/*.c: Remove excess g_return_if_fail calls from static
1048         and virtual functions.  (#57615)
1049         
1050 2002-01-30  Anders Carlsson  <andersca@gnu.org>
1051
1052         * gtk/gtkstyle.c (gtk_default_render_icon): Allow a -1 icon size.
1053
1054 Wed Jan 30 20:29:01 2002  Tim Janik  <timj@gtk.org>
1055
1056         * gtk/gtkscale.c (gtk_scale_set_digits): fix revrted bug fix.
1057         (use a define for max digits).
1058
1059 Wed Jan 30 13:55:59 2002  Owen Taylor  <otaylor@redhat.com>
1060
1061         * gtk/gtkwindow.c (gtk_window_show): Try to make
1062         sure that we have some focused widget on map. (#50339)
1063
1064         * gtk/gtkdialog.c (gtk_dialog_map): Handling picking
1065         a focus widget here differently so that if a
1066         response button gets picked, it's the default one.
1067
1068         * tests/testgtk.c (make_message_dialog): Set the 
1069         default response for the dialogs.
1070
1071 Tue Jan 29 22:52:36 2002  Owen Taylor  <otaylor@redhat.com>
1072
1073         * Released 1.3.13
1074
1075         * configure.in: Micro version 13, interface, binary
1076         age 0. Require GLIB-1.3.13, Pango 0.24.
1077
1078         * docs/Makefile.am (EXTRA_DIST): Add widget_geometry.txt,
1079         sizing-test.txt, tree-column-sizing.txt
1080
1081         * docs/Makefile.am (EXTRA_DIST): Don't distribute
1082         Changes-1.2.txt, Changes-2.0.txt, README.linux-fb,
1083         since they are no longer canonical.
1084
1085         * gtk/gtk.def: Convert spaces to tabs in front of
1086         gtk_widget_set_accel_path in case it matters.
1087
1088         * NEWS: Updated for 1.3.13.
1089
1090 Tue Jan 29 22:31:07 2002  Owen Taylor  <otaylor@redhat.com>
1091
1092         * gtk/gtkwidget.[ch] gtkmenuitem.c gtkitemfactory.c: Export 
1093         gtk_widget_set_accel_path().
1094
1095         * gtk/gtk.def: Add gtk_widget_set_accel_path.
1096
1097 Tue Jan 29 21:50:28 2002  Owen Taylor  <otaylor@redhat.com>
1098
1099         * gtk/gtkaccelmap.[ch] gtk/gtkbindings.[ch] gtk/gtkwidget.[ch]:
1100         Consistently use GdkModifierType. (#66950, Mark Patton)
1101
1102         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock):
1103         For consistency with gtk_button_new_from_stock(), fall back
1104         to gtk_image_menu_item_new_with_mnemnonic(). (#65944,
1105         Havoc Pennington)
1106         
1107         * gtk/gtkitemfactory.[ch] (gtk_item_factory_path_from_widget): 
1108         Make G_CONST_RETURN. (#68527, Matt Wilson)
1109
1110 Tue Jan 29 20:56:13 2002  Owen Taylor  <otaylor@redhat.com>
1111
1112         * gtk/gtk[vh]scale.c (gtk_[vh]scale_new_with_range): Document
1113         that the end points are included in the range. (#69783,
1114         Jeffrey Baker)
1115
1116 Tue Jan 29 20:38:04 2002  Owen Taylor  <otaylor@redhat.com>
1117
1118         * gtk/gtkscale.[ch]: Revert the last changes to make the
1119         number of digits only effect drawing, instead, don't
1120         round unless we are in the 'draw_value' mode -- this
1121         is the behavior of GTK+-1.2, and keeps the behavior that
1122         if the user sees a displayed value, it is the correct value.
1123
1124 Tue Jan 29 19:51:05 2002  Owen Taylor  <otaylor@redhat.com>
1125
1126         * gtk/gtkenums.h: Deprecate GtkPreviewType,
1127         GtkSignalRunType, GtkSideType, GtkSubmenuPlacement, GtkSubmenuDirection
1128         (#68183, Matthias Clasen)
1129
1130         * gtk/gtkmenuitem.h: Remove _gtk_menu_item_set_placement() from
1131         the public header to avoid having to use GtkSubmenuPlacement.
1132
1133         * gtk/{gtkmenuitem.c,gtkmenubar.c,gtkmenushell.c}: #define
1134         GTK_MENU_INTERNALS to preserve access to GtkSubmenu*.
1135
1136         * gdk/gdki18n.h: Deprecate contents. (Darin Adler.)
1137
1138 Tue Jan 29 19:32:47 2002  Owen Taylor  <otaylor@redhat.com>
1139
1140         * gtk/gtktextview.c (gtk_text_view_get/set_property): 
1141         Fix wrong usage of g_value_set/get_object for PROP_TABS
1142         and memory leak in getter for PROP_TABS. (Jeff Franks)
1143
1144 Tue Jan 29 19:04:41 2002  Owen Taylor  <otaylor@redhat.com>
1145
1146         * gtk/gtkstyle.c (gtk_style_render_icon): Document that
1147         a size of (GtkIconSize)-1 means don't scale.
1148
1149         * gtk/gtkstyle.c (gtk_default_render_icon): Obey the
1150         -1 convention.
1151
1152         * gtk/gtkimage.c (gtk_image_expose): Pass in -1 to
1153         gtk_style_render_icon() to make sure that we catch it
1154         obviously if the style's render function tries to
1155         scale.
1156
1157 Tue Jan 29 18:50:59 2002  Owen Taylor  <otaylor@redhat.com>
1158
1159         * gtk/gtkimage.c (gtk_image_expose): Optimize exposes of
1160         partial insensitive images.
1161
1162 2002-01-24  Havoc Pennington  <hp@redhat.com>
1163
1164         * gtk/gtkimage.c (gtk_image_expose): create insensitive version of
1165         the image regardless of storage type, #63305
1166
1167         * demos/gtk-demo/images.c: add toggle button to demonstrate that
1168         GtkImage makes its contents insensitive
1169
1170 Tue Jan 29 17:40:02 2002  Owen Taylor  <otaylor@redhat.com>
1171
1172         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable):
1173         Call _gdk_draw_pixbuf(), thus enabling using this function
1174         for pixbufs with alpha. (#68801)
1175
1176         * gdk/gdkdraw.c (gdk_drawable_real_draw_pixbuf): Move
1177         implementation of gdk_pixbuf_render_to_drawable()
1178         to here.
1179
1180 Tue Jan 29 17:16:17 2002  Owen Taylor  <otaylor@redhat.com>
1181
1182         * gtk/gtklayout.c: Patch from Jacob Berkman to fix problem
1183         when the height/width of a layout was set before the
1184         adjustments were added. (#66294)
1185
1186         * gtk/gtktreeview.c: Warning cleanups.
1187
1188 Tue Jan 29 16:35:04 2002  Owen Taylor  <otaylor@redhat.com>
1189
1190         * gtk/gtkhandlebox.c (gtk_handle_box_motion): Small
1191         fix to size of torn off window (#60271, Detlef Reichl)
1192
1193         * gtk/Makefile.am: Don't install gtkhsv.h. (Pointed out
1194         by Ross Burton)
1195
1196 Tue Jan 29 18:50:46 2002  Kristian Rietveld  <kris@gtk.org>
1197
1198         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): free
1199         cursor_path after usage
1200         (gtk_tree_view_real_start_interactive_search): use new g_signal
1201         and g_object calls
1202         (gtk_tree_view_search_dialog_destroy): use g_object calls and free
1203         selected_iter if set
1204         (gtk_tree_view_search_position_func): rework so it will never ever
1205         appear offscreen (#68492)
1206         (gtk_tree_view_search_move): use new g_object calls
1207         (gtk_tree_view_search_init): free selected_iter if set, use new
1208         g_object calls
1209         (gtk_tree_view_leave_notify): don't destroy interactive search
1210         dialog
1211
1212 Tue Jan 29 23:07:03 2002  Kristian Rietveld  <kris@gtk.org>
1213
1214         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
1215         send focus in event
1216         (gtk_tree_view_search_dialog_destroy): send focus out event (#66466)
1217
1218 2002-01-29  Anders Carlsson  <andersca@gnu.org>
1219
1220         * gtk/gtkfontsel.c (gtk_font_selection_select_size): Show correct
1221         size in the size entry.
1222
1223 Tue Jan 29 16:11:55 2002  Owen Taylor  <otaylor@redhat.com>
1224
1225         * gtk/gtkfontsel.c (gtk_font_selection_show_available_sizes): Use
1226         gtk_tree_view_set_cursor() instead of gtk_tree_selection_select_iter().
1227
1228         * gtk/gtkfontsel.c (gtk_font_selection_init): Add mnemonic to
1229         preview field. (#52433, patch from Anders Carlsson)
1230         
1231         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Remove the 
1232         dialog separator. (#69558, Alex Larsson, patch from Anders Carlsson)
1233
1234 Tue Jan 29 15:24:59 2002  Owen Taylor  <otaylor@redhat.com>
1235
1236         * gtk/gtkfontsel.[ch]: Switch over to GtkTreeView from
1237         GtkCList. Remove the entries above the font/face lists 
1238         since they were a little confusing. (Not sure about this 
1239         change, so the code is still there the entries are
1240         just hidden.) (#68890)
1241
1242         * gtk/gtkfilesel.c: Switch over to GtkTreeView from
1243         GtkCList. Add mnemonics for fileops. Allow Control/Shift
1244         Tab to focus out.
1245
1246         * gtk/gtkfilesel.c: Make fileop dialogs transient-for
1247         the fileselector. (#69336, patch from Melvin Hadasht)
1248
1249         * gtk/gtkgamma.c (button_clicked_callback): Fix handling
1250         of gamma dialog a bit. (#69336, Matthias Clasen.)
1251
1252 Tue Jan 29 14:56:28 2002  Owen Taylor  <otaylor@redhat.com>
1253
1254         * gtk/gtksocket.c (toplevel_focus_out_handler): Return boolean
1255         (and FALSE from focus_in / focus_out handlers. (#69528,
1256         Padraig O'Briain)
1257
1258 Tue Jan 29 14:47:54 2002  Owen Taylor  <otaylor@redhat.com>
1259
1260         * gtk/gtkmain.c (gtk_init_check): Remove the scary startup
1261         warning. (#69480)
1262
1263 Tue Jan 29 14:24:49 2002  Owen Taylor  <otaylor@redhat.com>
1264
1265         * gtk/gtkwindow.c (gtk_window_class_init): Add <Control>Tab
1266         bindings for "move-focus" so that Control-Tab to escape from
1267         something that eats Tab just works if not otherwise overriden.
1268
1269         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range) 
1270         * gtk/gtkvscale.c (gtk_vscale_new_with_range)
1271         * gtk/gtkhscale.c (gtk_hscale_new_with_range): Use a page_size
1272         of zero for the adjustment, since at times we think that the range
1273         is lower to upper - page_size. A page size equally to the 
1274         step_increment is, in any case, not meaningful.
1275
1276 2002-01-29  Tor Lillqvist  <tml@iki.fi>
1277
1278         * README.win32: Add comment about gtk-1-3-win32-production branch
1279         currently being ahead in functionality and code cleanliness (in
1280         gdk/win32). Just in case somebody looks at the code in gdk/win32
1281         here and starts fixing it, when it is going to change soonish
1282         anyway.
1283
1284 2002-01-29  Sven Neumann  <sven@gimp.org>
1285
1286         * gtk/gtkrc.c: don't install an empty icon_set if none of the image
1287         files could be found in the pixmap_path (bug #69398).
1288         
1289 2002-01-29  Sven Neumann  <sven@gimp.org>
1290
1291         * gdk/x11/gdkimage-x11.c (_gdk_x11_copy_to_image): fixed a segfault
1292         that showed up when using the color picker.
1293
1294 Tue Jan 29 11:51:14 2002  Tim Janik  <timj@gtk.org>
1295
1296         * gtk/gtkscale.[hc]: fix default value for ::digits property,
1297         leave as 1 as per havoc's request.
1298         don't apply the draw_digits value to range->round_digits,
1299         so we don't perform gross quantization by default.
1300
1301 2002-01-25  Havoc Pennington  <hp@redhat.com>
1302
1303         * gtk/gtktextbtree.c (_gtk_text_btree_delete): fix assertion
1304         failure by creating the line data, but not validating it at this
1305         stage. Also, remove old code related to the "bogus newline" mess
1306         that removed all tags from the last char in the buffer if you
1307         tried to delete it.
1308         (_gtk_text_line_data_new): put this here and prepend underscore,
1309         remove from gtktextlayout.c
1310
1311 Mon Jan 28 19:57:39 2002  Owen Taylor  <otaylor@redhat.com>
1312
1313         * modules/input/imhangul.c modules/input/imhangul-defs.h
1314         po/POTFILES.in. Add port of Emacs korean-hangul input
1315         method from Yusuke Tabata (#67665)
1316
1317 Mon Jan 28 18:25:10 2002  Owen Taylor  <otaylor@redhat.com>
1318
1319         * gtk/gtkentry.c (gtk_entry_draw_frame): Paint shadow
1320         before focus to give theme engines a bit morea
1321         flexibility. (#69857)
1322
1323 Mon Jan 28 16:23:20 2002  Jonathan Blandford  <jrb@redhat.com>
1324
1325         * gtk/gtktreeview.c (gtk_tree_view_dy_to_top_row): no longer
1326         g_assert.
1327
1328 2002-01-28  Jon Trowbridge  <trow@gnu.org>
1329
1330         * gtk/gtktreeview.c (gtk_tree_view_set_model): When setting the
1331         GtkTreeView's model, set prelight_node, prelight_tree,
1332         button_pressed_node and button_pressed_tree to NULL. (#69603)
1333
1334 2002-01-28 Bill Haneman <bill.haneman@sun.com>
1335
1336         * gtk/gtkstyle.c:
1337         Make sure that the default expanders are drawn with
1338         an outline thickness appropriate to the size of the
1339         expanders (RINT expander_size/7).
1340         Added static gtk_style_draw_polygon_with_gc(), to
1341         reduce code duplication.
1342
1343         * gtk/gtktreeview.c: (gtk_tree_view_bin_expose):
1344         Use focus_line_thickness when drawing focus lines.
1345
1346         * gtk/gtktreeviewcolumn.c:(gtk_tree_view_column_cell_get_size):
1347         Adjust requested width to include focus line thickness.
1348         (gtk_tree_view_column_cell_render_or_focus):
1349         Calculate a focus line rectangle which gets larger as the focus
1350         line thickness increases, to avoid overwriting cell content.
1351         Render left-aligned content at x+focus_line_width.
1352         (gtk_tree_view_column_cell_draw_focus):
1353         Don't draw a focus line around an editable text cell, since the
1354         text caret already indicates keyboard focus.
1355         Pass a GtkStateType appropriate to the focussed cell's state
1356         to gtk_paint_focus.
1357
1358 Mon Jan 28 14:44:40 2002  Jonathan Blandford  <jrb@redhat.com>
1359
1360         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): Only
1361         activate/edit the row if shift is not pressed, #69248
1362
1363 2002-01-28  Anders Carlsson  <andersca@gnu.org>
1364
1365         * gtk/gtkcurve.c (gtk_curve_set_vector): Fix build.
1366
1367 2002-01-28  Matthias Clasen  <matthiasc@poet.de>
1368
1369         * gtk/{gtkalignment.c,gtkaspectframe.c,gtkbutton.c,
1370         gtkcellrenderer.c,gtkcellrendererpixbuf.c,gtkcombo.c,
1371         gtkcontainer.c,gtkcurve.c,gtkframe.c,gtklabel.c,
1372         gtkmessagedialog.c,gtknotebook.c,gtkspinbutton.c,gtktable.c,
1373         gtktext.c,gtktextview.c,gtktreeview.c,gtktreeviewcolumn.c,
1374         gtkviewport.c,gtkwidget.c}: General property notification 
1375         cleanup. (#69066)
1376
1377 2002-01-28  Anders Carlsson  <andersca@gnu.org>
1378
1379         * gtk/gtkaccelgroup.c (gtk_accel_groups_activate): & with the
1380         default mod mask so accels work when numlock is on.
1381
1382 Sun Jan 27 23:23:23 2002  Kristian Rietveld  <kris@gtk.org>
1383
1384         * gtk/gtkrbtree.[ch]: add _gtk_rbtree_mark_invalid (my previous
1385         commit already needed this ...)
1386
1387 Sun Jan 27 22:13:02 2002  Kristian Rietveld  <kris@gtk.org>
1388
1389         Fix for bug #69586
1390
1391         * gtk/gtktreeprivate.h: get rid of tab_offset, introduce
1392         expander_size
1393
1394         * gtk/gtktreeview.c: get rid of ->priv->tab_offset, introduce
1395         expander_size caching (from style), fix CELL_HEIGHT macro,
1396         use MAX ("RBNODE_HEIGHT", expander_size) (differs per case) for
1397         row height calculation, added style_set callback
1398
1399 2002-01-27  Anders Carlsson  <andersca@gnu.org>
1400
1401         * gtk/gtklabel.c (gtk_label_create_window): Set the cursor to
1402         GDK_XTERM.
1403
1404         * gtk/gtktextview.h (struct _GtkTextView): add mouse_cursor_obscured.
1405
1406         * gtk/gtkentry.h (struct _GtkEntry): Add mouse_cursor_obscured.
1407
1408         * gtk/gtktextview.c (set_invisible_cursor): New function.
1409         (gtk_text_view_obscure_mouse_cursor): Likewise.
1410         (gtk_text_view_key_press_event): Call obscure_cursor if text 
1411         has been inserted.
1412         (gtk_text_view_motion_event): Restore the mouse cursor.
1413
1414         * gtk/gtkentry.c (gtk_entry_realize): Add GDK_POINTER_MOTION_MASK.
1415         (set_invisible_cursor): New function.
1416         (gtk_entry_obscure_mouse_cursor): Likewise.
1417         (gtk_entry_key_press): call obscure_cursor if text has been inserted.
1418         (gtk_entry_motion_notify): Restore the mouse cursor.
1419
1420 2002-01-27  Sven Neumann  <sven@gimp.org>
1421
1422         * gtk/gtkstyle.c (sanitize_size): removed unused return value.
1423
1424 Sat Jan 26 19:27:23 2002  Owen Taylor  <otaylor@redhat.com>
1425
1426         * gtk/gtksocket.c (gtk_socket_grab_notify): Don't
1427         send MODALITY_ON/OFF if socket->same_app (More fixes for #69735)
1428
1429 Sat Jan 26 19:04:37 2002  Owen Taylor  <otaylor@redhat.com>
1430
1431         * gtk/gtkmain.c (check_is_grabbed): Return FALSE not true
1432         in the grab_widget == NULL case. (Bug reported by 
1433         Padraig O'Briain, #69735)
1434
1435         * gtk/gtkplug.c (handle_modality_on): Realize the modality
1436         window so gtk_widget_event() doesn't complain :-((((.
1437
1438 2002-01-25  Federico Mena Quintero  <federico@ximian.com>
1439
1440         Merge from gdk-pixbuf stable.
1441
1442         * gdk/gdkpixbuf-drawable.c (rgb565msb): Fixed the endianness
1443         conversion --- swap the individual 16 bit values instead of taking
1444         everying as a 32 bit value.
1445         (rgb565lsb): Likewise.
1446         (rgb555lsb): Likewise.
1447         (rgb555msb): Likewise.
1448
1449 2002-01-25  Alex Larsson  <alexl@redhat.com>
1450
1451         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_drawable_impl_fb_class_init):
1452         Implement copy_to_image instead of get_image
1453         
1454         * gdk/linux-fb/gdkimage-fb.c:
1455         Implement _gdk_image_new_for_depth, _gdk_windowing_get_bits_for_depth and
1456         _gdk_fb_copy_to_image.
1457         Based in part on patch from Mathieu Lacage <mathieu_lacage@realmagic.fr>
1458
1459         * gdk/linux-fb/gdkmain-fb.c:
1460         Make ENABLE_FB_MANAGER region larger.
1461
1462         * gdk/linux-fb/gdkprivate-fb.h:
1463         Change _gdk_fb_get_image to _gdk_fb_copy_to_image.
1464
1465 2002-01-25  Sven Neumann  <sven@gimp.org>
1466
1467         * gtk/gtkwindow.c (gtk_window_get_size): changed the comment so
1468         that gtk-doc doesn't get confused.
1469
1470 Fri Jan 25 14:03:36 2002  Tim Janik  <timj@gtk.org>
1471
1472         * gtk/gtkspinbutton.c (gtk_spin_button_draw_arrow): assert
1473         that the passed in arrow is always _UP or _DOWN, this catches
1474         false invocations which lead to drawing artefacts.
1475         (start_spinning): likewise, i.e. sanity check the passed in arrow.
1476         (gtk_spin_button_button_release): fix arrow redrawing.
1477         (gtk_spin_button_button_press): must set click_child for
1478         button3 even if we don't take spinning action right away.
1479
1480         * gtk/gtkspinbutton.h (struct _GtkSpinButton): document
1481         valid values for click_child.
1482
1483 Thu Jan 24 23:03:24 2002  Kristian Rietveld  <kris@gtk.org>
1484
1485         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): update docs,
1486         return current FALSE if x is smaller than the current visible area,
1487         not than the requested area, don't correct y coordinate,
1488         TREE_WINDOW_Y_TO_RBTREE_Y will do that. Fixes #67477.
1489
1490 Thu Jan 24 15:41:08 2002  Jonathan Blandford  <jrb@redhat.com>
1491
1492         * gtk/gtktreeview.c
1493          (gtk_tree_view_motion_draw_column_motion_arrow): fix column
1494          reordering fully.
1495          (gtk_tree_view_size_allocate): fix evil bug.
1496
1497 Thu Jan 24 11:53:19 2002  Owen Taylor  <otaylor@redhat.com>
1498
1499         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't clear
1500         the model until we clean up all the other objects
1501         that might refer to the object.
1502
1503 2002-01-24  Mark McLoughlin  <mark@skynet.ie>
1504
1505         * gtk/gtkaccessible.h: include gtk/gtkwidget.h
1506
1507 Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
1508
1509         * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
1510         Use insensitive state for insensitive arrows, not
1511         just an "etched state". (#67172, Adrian Custer)
1512
1513 2002-01-23  Manish Singh  <yosh@gimp.org>
1514
1515         * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
1516         been declared.
1517
1518 2002-01-23  Damon Chaplin  <damon@ximian.com>
1519
1520         * configure.in (gtk_doc_min_version): set minimum gtk-doc version to
1521         0.9, since we need to use the new --type-init-func argument for
1522         gtkdoc-scangobj.
1523
1524 2002-01-23  Matthias Clasen  <matthiasc@poet.de>
1525
1526         * gtk/gtkentry.c, gtk/gtkwidget.c: Remove excessive
1527         g_return_if_fail() calls. (#57615)
1528
1529         * gtk/gtkitemfactory.c (gtk_item_factory_delete_entries): Make
1530         it work for paths with underline accelerators. (#69247)
1531
1532 Wed Jan 23 15:12:16 2002  Owen Taylor  <otaylor@redhat.com>
1533
1534         * gtk/gtkspinbutton.c (gtk_spin_button_state_changed): 
1535         Stop spinning if widget becomes insensitive. (#56248)
1536
1537 Wed Jan 23 14:44:12 2002  Owen Taylor  <otaylor@redhat.com>
1538
1539         * gtk/gtkspinbutton.c (EPSILON): Decrease value since
1540         we now use doubles.
1541
1542 Tue Jan 22 16:58:37 2002  Jonathan Blandford  <jrb@redhat.com>
1543
1544         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): Fix sizing bug
1545         I introduced accidentally, #69358
1546
1547 2002-01-22 Padraig O'Briain <padraig.obriain@sun.com>
1548
1549         * gtk/gtktreestore.c (gtk_tree_store_iter_children):
1550         Update last change to prevent core dump
1551
1552 Mon Jan 21 01:21:54 2002  Kristian Rietveld  <kris@gtk.org>
1553
1554         * gtk/gtktreestore.c: add some more stamp checks (pointed out
1555         by Anders Carlsson)
1556
1557         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): don't
1558         assume _row_changed will insert sort (because _row_changed doesn't
1559         need to follow this signal), so apply insert sort here
1560         (gtk_tree_model_sort_level_find_insert): header doesn't need to be
1561         set here, so use a return instead of g_return_val_if_fail.
1562
1563 Mon Jan 21 18:28:17 2002  Jonathan Blandford  <jrb@redhat.com>
1564
1565         * gtk/gtktreeview.c (gtk_tree_view_adjustment_changed): Update
1566         top_row.  Remove extraneous print statements.
1567
1568 2002-01-21  Matthias Clasen  <matthiasc@poet.de>
1569
1570         * gtk/gtkitemfactory.c (gtk_item_factory_popup, 
1571         gtk_item_factory_popup_with_data): Document allowed values
1572         for ifactory.
1573
1574         * gtk/gtkitemfactory.c (gtk_item_factory_delete_entry): Make 
1575         it work for paths with underline accelerators.
1576
1577 Fri Jan 18 16:31:21 2002  Jonathan Blandford  <jrb@redhat.com>
1578
1579         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): only resize the
1580         window.
1581
1582 Mon Jan 21 11:56:31 2002  Owen Taylor  <otaylor@redhat.com>
1583
1584         * gtk/gtkentry.c (gtk_entry_real_activate): Trap the 
1585         case where there is no default widget and the entry
1586         is the focus widget, since this also causes infinite
1587         recursion. (#69158)
1588
1589 Mon Jan 21 11:46:39 2002  Owen Taylor  <otaylor@redhat.com>
1590
1591         * gdk/gdk.c (gdk_init_check): Set the fallback program class here,
1592         rather than lazilygdk_get_program_class(), since we don't want
1593         -name to override it. (#69123, Ryan Lovett)
1594
1595 Mon Jan 21 10:29:45 2002  Owen Taylor  <otaylor@redhat.com>
1596
1597         * gdk/gdk.c: Fix wrong types for command line arguments 
1598         (#69124, Ryan Lovett)
1599
1600         * gdk/gdk.c (gdk_arg_context_parse): Fix bug in parsing
1601         parsing '--arg VALUE'.
1602
1603         * gdk/gdk.c: Remove unused variable gdk_error_trap_free_list.
1604
1605 2002-01-21  Havoc Pennington  <hp@pobox.com>
1606
1607         * gdk/gdkwindow.c (gdk_window_add_filter): mention that window 
1608         arg can be NULL
1609
1610 Sat Jan 19 20:49:41 2002  Kristian Rietveld  <kris@gtk.org>
1611
1612         * demos/gtk-demo/editable_cells.c: fix a load of open line ends
1613         (cell_edited): modified patch from German Poo Caaman~o
1614         to fix up old_text declaration and free the memory
1615         (do_editable_cells): unref the model after creating the treeview
1616
1617         * demos/gtk-demo/list_store.c: fix a load of open line ends,
1618         (add_columns): set the sort column id, so we can sort
1619
1620         * demos/gtk-demo/tree_store.c: fix a load of open line ends,
1621         (do_tree_store): unref the model after creating the treeview
1622
1623 2002-01-19  Havoc Pennington  <hp@pobox.com>
1624
1625         * gtk/gtkwindow.c: link to new X11 section in a lot of places when
1626         mentioning the window manager.
1627
1628         * gtk/gtkwidget.c (gtk_widget_hide_on_delete): don't mention
1629         window manager since we're portable.
1630
1631 Sat Jan 19 08:47:41 2002  Jeff Garzik  <jgarzik@mandrakesoft.com>
1632
1633         * gdk/linux-fb/gdkproperty-fb.c (gdk_atom_name):
1634         Wrap case values in GPOINTER_TO_UINT().  Fixes build with gcc 3.x.
1635
1636         * gtk/gtkmain.c:  Include sys/types.h if G_OS_UNIX.
1637         Fixes build with gcc 3.x and -ansi.
1638
1639 Fri Jan 18 23:01:37 2002  Owen Taylor  <otaylor@redhat.com>
1640
1641         * gtk/gtkrc.c (gtk_rc_parse_style): Fix problems when
1642         an engine declaration occurs in a reopened style, and
1643         g_free() of objects when errors occur.
1644
1645 2002-01-18  Matthias Clasen  <matthiasc@poet.de>
1646
1647         * gtk/gtkitemfactory.c (gtk_item_factory_get_widget_by_action):
1648         Clarify documentation. (#69026)
1649
1650         * gtk/gtkprogressbar.c (gtk_progress_bar_size_request): Fix 
1651         missing initialization of adjustment. (#69025)
1652
1653 2002-01-17  Raja R Harinath  <harinath@cs.umn.edu>
1654
1655         Simplify Makefiles. 
1656         <URL: http://bugzilla.gnome.org/show_bug.cgi?id=68969>
1657         * gdk/Makefile.am: Remove use of automake conditionals to pick
1658         library to build.
1659         * gtk/Makefile.am: Likewise.
1660         
1661         * gdk/Makefile.am (LDFLAGS): Use $(libdir), not @prefix@/lib.
1662         * gtk/Makefile.am (LDFLAGS): Likewise.
1663
1664 Thu Jan 17 20:13:14 2002  Owen Taylor  <otaylor@redhat.com>
1665
1666         * gtk/gtknotebook.c (gtk_notebook_redraw_tabs): Fix
1667         missing allocation.x/y offsets. (#68962, Jacob
1668         Berkman)
1669
1670         * gtk/gtknotebook.c (gtk_notebook_size_allocate):
1671         Queue a redraw on the entire widget if we hide
1672         the last page or show the first. (Also #68962)
1673         
1674 2002-01-17  Havoc Pennington  <hp@redhat.com>
1675
1676         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): change
1677         GTK_MOVEMENT_PARAGRAPHS to go to start/end of paragraph before it
1678         starts to go up/down paragraphs. This makes Ctrl+Up/Ctrl+Down work
1679         as in the keynav spec, though it makes the interpretation of
1680         GTK_MOVEMENT_PARAGRAPHS different from the interpretation of some
1681         of the other GTK_MOVEMENT_ thingies, maybe, as if that enum makes
1682         any sense anyhow.
1683
1684 Thu Jan 17 16:34:55 2002  Jonathan Blandford  <jrb@redhat.com>
1685
1686         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): For
1687         some reason, I was activating a row while just selecting it.
1688         Reported by andersca.
1689         (gtk_tree_view_size_request): add a
1690         validate_rows_handler to give us a rough width of the widget.
1691
1692         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
1693         Queue a resize here just in case.  It's needed in over half the
1694         cases, and I don't want to do a diff to figure out exactly when
1695         it's needed.
1696
1697 2002-01-17  Matthias Clasen  <matthiasc@poet.de>
1698
1699         * gtk/gtkinputdialog.c,
1700         gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
1701         Mark children as composite. (#66360)
1702
1703         * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain
1704         composite children some more. (#66360)
1705
1706 2002-01-17  Havoc Pennington  <hp@redhat.com>
1707
1708         * gtk/gtktextlayout.c (_gtk_text_layout_get_line_xrange): new
1709         function (which I then decided not to use but I think it's needed
1710         to fix #68963
1711
1712         * gtk/gtktextview.c: add page_horizontally action signal and
1713         implement Ctrl+PgUp, Ctrl+PgDown based on patch from Padraig, 
1714         hackily modified to avoid adding GTK_MOVEMENT_ API. Part of 
1715         #53934
1716
1717         * gtk/gtkmarshalers.list: add NONE:INT,BOOL
1718
1719 Thu Jan 17 17:02:38 2002  Owen Taylor  <otaylor@redhat.com>
1720
1721         * gtk/gtkwidget.c (gtk_widget_real_unrealize): Call
1722         gtk_selection_remove_all() here, not in destroy/
1723         finalize. (#66636, Sergey Vlasov)
1724
1725         * gtk/gtkselection.c (gtk_selection_request): Fix
1726         reentrancy problem with multiple conversions.
1727
1728         * gtk/gtkselection.c (gtk_selection_remove_all): 
1729         Don't remove incrs, we don't need the widget for
1730         maintain the incr.
1731
1732         * gtk/gtkselection.c (struct _GtkIncrInfo): Remove
1733         the widget field from here, we don't need it.
1734
1735 Thu Jan 17 13:08:34 2002  Owen Taylor  <otaylor@redhat.com>
1736
1737         * gdk/x11/gdkmain-x11.c (gdk_error_trap_push): Move
1738         here, and save/restore the X error handler to allow
1739         people using GTK+ to set the X error handler to something
1740         custom without disturbing the operation of GDK.
1741
1742         * gdk/linux-fb/gdkmain-fb.c (gdk_error_trap_push) 
1743         * gdk/win32/gdkmain-win32.c (gdk_error_trap_pop): Add
1744         dummy implementations.
1745
1746         * gdk/x11/gdkmain-x11.c gdk/x11/gdkevents-x11.c 
1747         gdk/x11/gdkdnd-x11.c: Use gdk_error_trap_push()/pop()
1748         for all error trapping.
1749
1750         * gdk/x11/gdkdnd-x11.c: Remove '#if 0' code.
1751
1752         * gdk/x11/gdkdnd-x11.c (gdk_window_cache_new): Fix
1753         problem where we would add the results anyways,
1754         and then add it again if no error occurred, and problem
1755         where we could leave _gdk_error_warnings() unset.
1756
1757 Wed Jan 16 20:28:38 2002  Owen Taylor  <otaylor@redhat.com>
1758
1759         * gtk/gtkfilesel.c: Fix "deleting" filename by adding
1760         another boolean parameter to file_selection_populate() -
1761         whether to clear the entry. Also, never fill in the
1762         entry when the user clicks on something in the 
1763         directory list. (#6791, Reported by Jos Dehaes and many,
1764         many, many others.)
1765
1766 2002-01-16  Havoc Pennington  <hp@redhat.com>
1767
1768         * gtk/gtktextview.c (gtk_text_view_scroll_pages): update
1769         cursor_y_pos with clamped delta rather than theoretical delta
1770         (#68788). Also, if we can't page up/down further then jump 
1771         to top/bottom of the document.
1772
1773 Wed Jan 16 19:33:41 2002  Owen Taylor  <otaylor@redhat.com>
1774
1775         * gtk/gtkfilesel.c (gtk_file_selection_map): Refresh
1776         the dialog on map. (#52877, inspired by request from
1777         Murray Cumming)
1778
1779 Wed Jan 16 19:23:04 2002  Owen Taylor  <otaylor@redhat.com>
1780
1781         * gtk/gtkbindings.c (gtk_binding_entry_activate): 
1782         Support "optional" bindings. If a binding signal
1783         has a boolean return value, and returns FALSE it
1784         is as if it didn't exist all.
1785
1786         * gtk/gtkbindings.c (binding_compose_params): Switch
1787         over to GValue.
1788
1789         * gtk/gtknotebook.[ch]: Make the select_page() and
1790         change_current_page() signals only take effect when
1791         the focus is on the tab area so that key presses
1792         in children pass up to the toplevel correctly.
1793
1794 Wed Jan 16 12:16:37 2002  Owen Taylor  <otaylor@redhat.com>
1795
1796         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Fix 
1797         calculation error in the (shouldn't happen) case where
1798         option_menu->height < child_requisition.height. (Patch
1799         from Jacob Berkman, #66969)
1800
1801 2002-01-15  Matthias Clasen  <matthiasc@poet.de>
1802
1803         * gtk/gtkenums.h (GtkMatchType): Deprecate. (#68183)
1804
1805         * gtk/gtkscale.h (gtk_scale_value_width): Remove useless 
1806         compatibility macro. (#67730) 
1807
1808 Wed Jan 16 10:54:38 2002  Owen Taylor  <otaylor@redhat.com>
1809
1810         * configure.in: Fix typo in --help output.
1811         (Arnaud Charlet).
1812
1813 Wed Jan 16 10:18:42 2002  Owen Taylor  <otaylor@redhat.com>
1814
1815         * gtk/stock-icons/Makefile.am (EXTRA_DIST): Add 
1816         gtkstockpixbufs.h.
1817
1818         * configure.in: Make TIFF, JPEG, PNG loaders mandatory
1819         unless you configure with --without-libtiff, etc.
1820         (#54045, Brian Cameron)
1821
1822 2002-01-16  Padraig O'Briain <padraig.obriain@sun.com>
1823
1824         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current):
1825         Avoid unexpected warning message when navigating menu (#68517)
1826
1827 2002-01-15  Jody Goldberg <jody@gnome.org>
1828
1829         * gtk/gtklayout.c (gtk_layout_realize) : It is possible that a
1830         GtkLayout may have been scrolled _before_ it was realized.
1831
1832 Tue Jan 15 18:10:24 2002  Owen Taylor  <otaylor@redhat.com>
1833
1834         * gtk/gtkspinbutton.c (gtk_spin_button_grab_notify): Stop
1835         the timer on destroy, or when we are notified that we are
1836         shadowed by a modal dialog.
1837
1838         * gtk/gtkspinbutton.c: Remove explicit gtk_grab_add()/remove() -
1839         not needed any more.
1840
1841         * gtk/gtkmain.c (gtk_grab_notify): Fix problem where notifications
1842         weren't sent out for the default grab group.
1843
1844         * gtk/gtkmain.c (gtk_grab_notify): Fix notification of widgets that
1845         were getting events because they were part of the previous grab.
1846
1847 Tue Jan 15 12:23:33 2002  Owen Taylor  <otaylor@redhat.com>
1848
1849         * gtk/gtknotebook.c (gtk_notebook_mnemonic_activate_switch_page): 
1850         focus the activated tab, not the page. (#53612)
1851
1852         * gtk/gtknotebook.c (gtk_notebook_set_focus_child): Track
1853         the last focus descendant of the page.
1854
1855         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): If the focus
1856         was on the previous page, move it to the last focused widget /
1857         first element on the new page, if possible, or if not, to the 
1858         notebook itself. (#68224, reported by Jonathan Blandford)
1859
1860         * gtk/gtknotebook.c (focus_tabs_in): Don't focus tabs
1861         tabs aren't visible. (#65462, Damon Chaplin, fixed based 
1862         on patch from Anders Carlsson)
1863
1864 2002-01-15            Vitaly Tishkov       <tvv@sparc.spb.su>
1865
1866         * gtk/gtkstyle.c
1867         a misprint in documentation for gtk_style_render_icon () is fixed
1868
1869 Mon Jan 14 23:21:47 2002  Tim Janik  <timj@gtk.org>
1870
1871         * gtk/gtkmenuitem.c (gtk_menu_item_map): map event_window after
1872         mapping child, so we don't loose events.
1873
1874 2002-01-15  Sven Neumann  <sven@gimp.org>
1875
1876         * gtk/gtkaccellabel.h
1877         * gtk/gtkitemfactory.c: fixed documentation by syncing the parameter
1878         names used in headers and code.
1879
1880 2002-01-14  jacob berkman  <jacob@ximian.com>
1881
1882         * gtk/gtkrc.c (gtk_rc_get_im_module_path): close a comment block
1883
1884 Tue Jan 15 01:13:51 2002  Kristian Rietveld  <kris@gtk.org>
1885
1886         * gtk/gtktreemodelsort.c: fix a load of open line ends,
1887         (gtk_tree_model_sort_set_model): only free root level if it's
1888         !NULL
1889
1890 2002-01-14  Matthias Clasen  <matthiasc@poet.de>
1891
1892         * gtk/gtkoldeditable.c, gtk/gtkrc.c, 
1893         gtk/gtkstyle.c: Documentation additions.
1894
1895         * gtk/gtkmenu.c (gtk_menu_set_accel_path),
1896         gtk/gtkmenuitem.c (gtk_menu_item_set_accel_path), 
1897         gtk/gtkwidget.c (gtk_widget_add_accelerator): Typo and markup fixes.
1898
1899         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): Document.
1900
1901         * gtk/gtkaccelmap.c (gtk_accel_map_add_filter): Explain intended use.
1902
1903 Mon Jan 14 17:14:13 2002  Owen Taylor  <otaylor@redhat.com>
1904
1905         * gdk/x11/gdkselection-x11.c (sanitize_utf8): Don't
1906         mangle sequences of consecutive \n or \r.
1907
1908 Mon Jan 14 17:42:28 2002  Jonathan Blandford  <jrb@redhat.com>
1909
1910         * gtk/gtktreeview.c (gtk_tree_view_stop_editing): allow cancel to
1911         happen.
1912
1913         * gtk/gtktreeview.c (install_presize_handler): only install the
1914         handler if we're realized, #68056
1915
1916 Mon Jan 14 16:35:58 2002  Owen Taylor  <otaylor@redhat.com>
1917
1918         * gtk/gtkwindow.c (gtk_window_move_resize): Unset 
1919         initial_pos_set after the first configure request.
1920
1921 2002-01-13  Jody Goldberg <jody@gnome.org>
1922
1923         * gtk/gtktexttag.c (get_color_arg) : set_boxed will copy the color
1924           and will use a mem_chunk to do it.  Avoid an unnecessary copy, a
1925           leak, and confusion.
1926
1927 Sun Jan 13 23:23:22 2002  Owen Taylor  <otaylor@redhat.com>
1928
1929         * gtk/gtkwindow.c (gtk_window_compute_hints): Fix problem where
1930         widget->requisition was being used instead of
1931         gtk_widget_get_child_requisition (), causing geometry widgets
1932         with usizes to misbehave.
1933
1934 2002-01-14  Sven Neumann  <sven@gimp.org>
1935
1936         * gtk/gtkrc.c: g_getenv() returns a const string.
1937
1938 2002-01-14  Hasbullah Bin Pit  <sebol@ikhlas.com>
1939
1940         * configure.in: Added ms at ALL_LINGUAS.
1941         * po/ms.po: Added Malay Translation.
1942
1943 2002-01-14  Matthias Clasen  <matthiasc@poet.de>
1944
1945         * gtk/gtkitemfactory.c: Documentation.
1946
1947 2002-01-13  Sven Neumann  <sven@gimp.org>
1948
1949         * gdk/gdkwindow.c: documentation cleanups.
1950
1951 Sun Jan 13 01:15:45 2002  Kristian Rietveld  <kris@gtk.org>
1952
1953         * gtk/gtktreemodelsort.c: various cleanups,
1954         (get_child_iter_from_elt): removed,
1955         (gtk_tree_model_sort_elt_get_path): rewritten to be a lot cleaner
1956         and especially faster,
1957         (gtk_tree_model_convert_iter_to_child_iter): use
1958         gtk_tree_model_sort_elt_get_path
1959
1960 Sat Jan 12 16:57:31 2002  Kristian Rietveld  <kris@gtk.org>
1961
1962         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
1963         revert Owen's change (using a strdupped string as object data), so
1964         the interactive search works again
1965
1966 2002-01-11  Havoc Pennington  <hp@pobox.com>
1967
1968         * gtk/gtklabel.c: put in more links to Pango markup format docs
1969         (gtk_label_set_justify): mention gtk_misc_set_alignment
1970
1971 2002-01-12  Tor Lillqvist  <tml@iki.fi>
1972
1973         Fixes contributed by Archaeopteryx Software: This is a first small
1974         part of their changes. Will commit more later.
1975         
1976         * gdk/win32/*.c: Add some more checks for failed GDI calls. If a
1977         call fails, don't use bogus values.
1978
1979          gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): Plug
1980         memory leak: g_free() the AND and XOR bitmaps after use.
1981         (_gdk_cursor_destroy): If we are destroying the current Windows
1982         cursor, set the Windows cursor to none first.
1983
1984         * gdk/win32/gdkgc-win32.c (predraw_set_foreground): Delete the old
1985         brush that was in the DC, like the win32-production branch does.
1986
1987         * gdk/win32/gdkwindow-win32.c (gdk_window_impl_win32_finalize): If
1988         the window has a cursor which is the current Windows cursor,
1989         before destroying it set the current Windows cursor to none.
1990         (gdk_window_set_cursor): Also here, if destroying the current
1991         Windows cursor, set the current Windows cursor to none first.
1992         (gdk_window_get_pointer): Revamp logic.
1993         
1994 2002-01-10  jacob berkman  <jacob@ximian.com>
1995
1996         * gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
1997         through the list rather than infinitely loop
1998
1999 2002-01-08  Matthias Clasen  <matthiasc@poet.de>
2000
2001         * gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to
2002         reset_rc_styles_recurse(). (#68084)
2003
2004 2002-01-10            Vitaly Tishkov       <tvv@sparc.spb.su>
2005         * gtk/gtkimage.c
2006         * gtk/gtkimcontext.c
2007         * gtk/gtktreemodel.c
2008         * gtk/gtktreemodelsort.c
2009         * gtk/gtkwindow.c
2010         fix docs        
2011
2012 Wed Jan  9 20:56:42 2002  Jonathan Blandford  <jrb@redhat.com>
2013
2014         * gdk/x11/gdkkeys-x11.c (get_xkb): get the types as well as the
2015         symbols because we need them in MyEnhancedXkbTranslateKeyCode.
2016
2017 2002-01-10  Tor Lillqvist  <tml@iki.fi>
2018
2019         Apply the same fixes and improvements as to the
2020         gtk-1-3-win32-production branch: Bug fixes and cleanup of
2021         selection and DND functionality. Still doesn't work as well as the
2022         win32-production branch, though, but getting closer.
2023
2024         After this, need to add Archaeopteryx Software's OLE2 DND support.
2025
2026         * gdk/win32/gdkselection-win32.c (gdk_selection_owner_set,
2027         gdk_selection_send_notify, generate_selection_notify): Don't use
2028         SendMessage() to generate events for the same app, instead use
2029         gdk_event_put().
2030
2031         * gdk/win32/gdkprivate-win32.h
2032         * gdk/win32/gdkglobals-win32.c
2033         * gdk/win32/gdkmain-win32.c
2034         * gdk/win32/gdkevents-win32.c: Thus, remove declaration, definition,
2035         initialisation and handling of gdk_selection_notify_msg,
2036         gdk_selection_request_msg and gdk_selection_clear_msg. 
2037
2038         * gdk/win32/gdkselection-win32.c (gdk_text_property_to_text_list,
2039         gdk_free_text_list, gdk_string_to_compound_text,
2040         gdk_free_compound_text): Implement trivially, witrh a text_list
2041         always having a single element, and a compound text always
2042         consisting of just a single (UTF-8!) string. Let's see how well
2043         this works.
2044
2045         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
2046         non-ASCII paste from the clipboard: Try getting the same formats
2047         from the Windows clipboard that gdk_property_change() puts there:
2048         CF_UNICODETEXT, UTF8_STRING or CF_TEXT+CF_LOCALE.
2049
2050         * gdk/win32/gdkproperty-win32.c (gdk_property_change): When
2051         storing text on the clipboard, handle non-ASCII text
2052         correctly. The logic is as follows:
2053
2054         If we have only ASCII characters, use CF_TEXT.
2055
2056         Else, if we are on NT, use CF_UNICODETEXT.
2057
2058         Else (we are on Win9x), if all the characters are present in the
2059         code page of some installed locale, use CF_TEXT and also set
2060         CF_LOCALE to that locale.
2061
2062         Else (still on Win9x) store as RTF. We use a very simple RTF
2063         string, just the text, no fonts or other crap, with the non-ASCII
2064         characters as Unicode \uN keywords. Additionally, also store the
2065         UTF-8 string as such, under the format "UTF8_STRING", so that GDK
2066         can also paste from the Clipboard what it has copied there. (Thus
2067         no need to implement any RTF parser.)
2068         
2069         (find_common_locale): New function, implements the search for a
2070         locale for case 3 above.
2071
2072         * gdk/win32/gdkglobals-win32.c: New global variables
2073         compound_text, text_uri_list, utf8_string, cf_rtf and
2074         cf_utf8_string.
2075
2076         * gdk/win32/gdkim-win32.c (_gdk_ucs2_to_utf8): New function,
2077         converts from a wchar_t string to UTF-8.
2078         (_gdk_utf8_to_ucs2): Rename from _gdk_win32_nmbstowchar_ts.
2079         (_gdk_utf8_to_wcs): Rename from gdk_nmbstowchar_ts.
2080
2081         * gdk/win32/gdkevents-win32.c (build_keypress_event): Use
2082         _gdk_ucs2_to_utf8().
2083
2084         * gdk/win32/gdkselection-win32.c: Remove some unnecessary logging.
2085
2086         * gdk/win32/gdkdnd-win32.c: Plug memory leaks, the
2087         gdk_drag_context_ref() was called unnecessarily in a couple of
2088         places, meaning drag contexts were never freed. The same memory
2089         leaks seem to be present in gdk/linux-fb/gdkselection-fb.c, BTW.
2090
2091         (gdk_drop_reply): For WIN32_DROPFILES drops, free the temporarily
2092         stored file list.
2093
2094         * gdk/win32/gdkselection-win32.c: Clarify the use of the
2095         sel_prop_table. Now it is used only for storing the GDK_SELECTION
2096         "properties".
2097
2098         The file names dropped with WM_DROPFILES -style DND is stored
2099         temporarily (between the drop and the target picking them up) in a
2100         separate place.
2101
2102         Have a separate hash table to map selection atoms to owner
2103         windows. This used to be quite mixed up.
2104
2105         (_gdk_dropfiles_store): New function, to store the dropped file
2106         list for the drop target to possibly fetch, and clear it
2107         afterwards, from gdk_drop_reply().
2108
2109         (gdk_selection_owner_get): Much simplified now.
2110
2111 2002-01-09  jacob berkman  <jacob@ximian.com>
2112
2113         * gtk/gtklayout.c (gtk_layout_style_set): set the background of
2114         our bin window also (fixes #58957)
2115
2116 Wed Jan  9 19:10:07 2002  Jonathan Blandford  <jrb@redhat.com>
2117
2118         * gtk/gtktreeselection.c
2119         (_gtk_tree_selection_internal_select_node): Now we test we can
2120         unselect nodes before selecting new ones.
2121         (gtk_tree_selection_real_select_node): be careful comparing booleans.
2122
2123 Wed Jan  9 21:31:44 2002  Kristian Rietveld  <kris@gtk.org>
2124
2125         * gtk/gtkliststore.c (gtk_list_store_sort): pass NULL to
2126         gtk_tree_model_rows_reordered and not an iter with user_data
2127         set to NULL (which is an invalid liststore iter, so
2128         iter_n_children failed, etc)
2129
2130 2002-01-09  Sven Neumann  <sven@gimp.org>
2131
2132         * tests/prop-editor.c: declared internal functions static.
2133         
2134 Wed Jan  9 11:13:12 2002  Owen Taylor  <otaylor@redhat.com>
2135
2136         * gtk/gtkmenuitem.c (_gtk_menu_item_refresh_accel_path): 
2137         Fix problem with menus without accel groups, such as the
2138         menus for option menus.
2139
2140         * gtk/gtkpaned.c (gtk_paned_expose): Only conditionalize
2141         drawing of handle on whether both children are visible,
2142         not the drawing of the other child!. (#68325, Diego Gonzalez)
2143
2144 Wed Jan  9 10:20:16 2002  Owen Taylor  <otaylor@redhat.com>
2145
2146         * gdk/x11/gdkdrawable-x11.c gdk/x11/gdkgc-c11.c: Check for
2147         RENDER before trying to use it... XRenderFindFormat() prints
2148         warnings if called when extension isn't present.
2149
2150 Wed Jan  9 15:20:40 2002  Tim Janik  <timj@gtk.org>
2151
2152         * gtk/gtkmenuitem.c (gtk_menu_item_parent_set): update the accel
2153         path upon parent changes.
2154
2155 Wed Jan  9 13:20:14 2002  Tim Janik  <timj@gtk.org>
2156
2157         * gtk/gtkviewport.c (gtk_viewport_size_allocate): small but important
2158         fix to force vadjustments at size_alocate time from Xavier Ordoquy
2159         <mcarkan@users.sourceforge.net>.
2160
2161 Wed Jan  9 11:23:39 2002  Tim Janik  <timj@gtk.org>
2162
2163         * gtk/gtklayout.c (gtk_layout_get_property): 
2164         * gtk/gtkspinbutton.c (gtk_spin_button_get_property): 
2165         * gtk/gtktreeview.c (gtk_tree_view_get_property): 
2166         * gtk/gtkwidget.c (gtk_widget_get_property): 
2167         * gtk/gtkfontsel.c (gtk_font_selection_get_property): 
2168         * gtk/gtkrange.c (gtk_range_get_property):
2169         * gtk/gtkviewport.c (gtk_viewport_get_property):
2170         * gtk/gtkprogressbar.c (gtk_progress_bar_get_property): don't cast a
2171         possible NULL pointer.
2172
2173 2002-01-08  Mike Kestner  <mkestner@speakeasy.net>
2174
2175         * gtk/gtkcelleditable.h : Use G_TYPE_INSTANCE_GET_INTERFACE.
2176         * gtk/gtktreednd.h : ditto.
2177         * gtk/gtktreemodel.h : ditto.
2178         * gtk/gtktreesortable.h : ditto.
2179         * gtk/gtkwidget.h : Don't reference incomplete _GdkRectangle type.
2180
2181 2002-01-08  Matthias Clasen  <matthiasc@poet.de>
2182
2183         * gtk/gtkplug.c, gtk/gtksocket.c: Speak of window IDs rather 
2184         than XIDs in the docs.
2185
2186         * gtk/gtkclipboard.c (gtk_clipboard_clear): Fix docs.
2187
2188 Tue Jan  8 18:39:23 2002  Jonathan Blandford  <jrb@redhat.com>
2189
2190         * gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): wow!
2191         Am I a moron or what 0 < 1 is not equivalent to strcmp ("a", "b")
2192
2193 Tue Jan  8 18:04:01 2002  Owen Taylor  <otaylor@redhat.com>
2194
2195         * gtk/gtktoolbar.c (gtk_toolbar_set_icon_size):
2196         Handle TOGGLE/RADIOBUTTON as well. (#68201,
2197         Damon Chaplin.)
2198
2199         * gtk/gtktoolbar.c (get_first_child): Fix stupid 
2200         bug, just introduced.
2201
2202 Tue Jan  8 15:53:28 2002  Owen Taylor  <otaylor@redhat.com>
2203
2204         * gtk/gtkdnd.c (gtk_drag_find_widget): Fix coordinate
2205         translations, once and for all.
2206
2207         * gtk/gtktextbuffer.c (paste_from_buffer): Free
2208         the ClipboardRequest structure. (#66198, HideToshi
2209         Tajima)
2210
2211 2002-01-08  jacob berkman  <jacob@ximian.com>
2212
2213         * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on
2214         the child rather than the layout. see bug #68263
2215
2216 Tue Jan  8 14:51:19 2002  Owen Taylor  <otaylor@redhat.com>
2217
2218         * gtk/gtkpaned.c (gtk_paned_expose): Don't draw
2219         the handle if we aren't showing both children.
2220         (#68135, Diego Gonzalez)
2221
2222 Tue Jan  8 14:45:43 2002  Owen Taylor  <otaylor@redhat.com>
2223
2224         * gtk/gtkwidget.c (gtk_widget_add_events): Fix
2225         leak of result of gtk_container_get_children().
2226
2227 Tue Jan  8 14:42:19 2002  Owen Taylor  <otaylor@redhat.com>
2228
2229         * gtk/gtktoolbar.c: Fix leaks of results of
2230         gtk_container_get_children(). (#68199, Damon Chaplin)
2231
2232 Tue Jan  8 14:19:43 2002  Owen Taylor  <otaylor@redhat.com>
2233
2234         * gtk/gtkcheckbutton.c (gtk_check_button_size_allocate): 
2235         Fix problem where child->requisition was accessed
2236         directly instead of calling get_child_requisition()
2237         (#68199, Damon Chaplin)
2238
2239 2001-01-08  James Henstridge  <james@daa.com.au>
2240
2241         * gtk/gtkstyle.c: add trailing */ on doc comment.
2242
2243 Mon Jan  7 22:19:32 2002  Owen Taylor  <otaylor@redhat.com>
2244
2245         * gdk/x11/gdkdrawable-x11.c (draw_with_pixmaps): Fix a
2246         problem where were the offset into the image was passed
2247         into convert_to_format() wrong.
2248
2249         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_pixbuf): Call
2250         gdk_x11_drawable_update_picture_clip () before using
2251         the picture; allow update_picture_clip() to take a NULL gc
2252         to mean no clipping.
2253
2254 2002-01-07  Matthias Clasen  <matthiasc@poet.de>
2255
2256         * gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
2257
2258         * gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
2259
2260         * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
2261
2262         * gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
2263
2264         * gtk/gtkrc.c (gtk_rc_get_style_by_paths),
2265         gtk/gtkwidget.c (gtk_widget_get_toplevel, 
2266         gtk_widget_push_composite_child), gtk/gtkdialog.c 
2267         (gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
2268         from messing up the indentation of inline examples.     
2269
2270         * gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv() 
2271         instead of getenv().
2272
2273         * gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
2274         gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
2275         gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
2276
2277         * gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
2278         gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
2279         Document.
2280
2281 2002-01-07  Anders Carlsson  <andersca@gnu.org>
2282
2283         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Remove
2284         unused pixels and rowstride variables.
2285         (gtk_cell_renderer_pixbuf_get_size): Check for non-NULL width.
2286
2287 Mon Jan  7 08:48:23 2002  Tim Janik  <timj@gtk.org>
2288
2289         * gtk/gtkdnd.c (gtk_drag_find_widget): don't forget to offset
2290         the pointer by x/y_offset into the new window when we found
2291         the drag destination.
2292
2293         * gtk/gtkaccelmap.c (internal_change_entry): fix return code
2294         for simulation when the entry already contains the required
2295         accel key and mod.
2296
2297 2002-01-06  Matthias Clasen  <matthiasc@poet.de>
2298  
2299         * docs/debugging.txt: Replace GTK_NO_CHECK_CASTS by 
2300         G_DISABLE_CAST_CHECKS.
2301
2302         * gtk/gtkaccelgroup.c (gtk_accel_group_from_accel_closure,
2303         gtk_accel_group_query, gtk_accel_group_find,
2304         gtk_accel_groups_from_object): Document.
2305
2306         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_closure): Document.
2307
2308 2002-01-04  Hans Breuer  <hans@breuer.org>
2309
2310         * gdk/gdkdraw.c gdk/gdkpixbuf-drawable.c : 
2311         need to cast image->mem away from void* to avoid 
2312         'error C2036: 'void *' : unknown size'. Doing pointer 
2313         arithmetics on void pointers is a GCCism afaik.
2314
2315         * gdk/gdkpixbuf-render.c : #include "gdkinternals.h" for
2316         _gdk_draw_pixbuf ()
2317
2318         * gdk/makefile.msc gdk/win32/makefile.msc 
2319         gdk/gtk/makefile.msc.in : use -FI msvc_recommended_pragmas.h
2320
2321         * gdk/win32/gdkdrawable-win32.c : use _gkd_win32_copy_to_image
2322         and take care of image->visual possibly NULL.
2323
2324         * gdk/win32/gdkimage-win32.c : implement _gdk_image_new_for_depth(),
2325         _gdk_win32_copy_to_image() and _gdk_windowing_bits_for_depth().
2326         Again take care of image->visual possibly NULL.
2327
2328         * gdk/win32/gdkprivate-win32.h : declare _gdk_win32_copy_to_image()
2329
2330         * gdk/win32/gdkevents-win32.c : use gdk_drawable_get_colormap
2331         instead of private field access
2332
2333         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new) : adapt
2334         colormap setting to the gdk-X behaviour
2335
2336 2001-01-04  Matthias Clasen  <matthiasc@poet.de>
2337
2338         * gtk/gtkwidget.c: Documentation additions.
2339
2340 2001-01-04  Matthias Clasen  <matthiasc@poet.de>
2341
2342         * gtk/gtkobject.c (gtk_object_dispose): Fix a comment.
2343
2344         * gtk/gtkwidget.c (gtk_widget_set_sensitive): tiny docs change
2345
2346 2002-01-04  Havoc Pennington  <hp@pobox.com>
2347
2348         * gtk/gtkwidget.c (gtk_widget_set_sensitive): tiny docs change
2349         
2350 Fri Jan  4 13:05:15 2002  Owen Taylor  <otaylor@redhat.com>
2351
2352         * gtk/gtkdnd.c (gtk_drag_find_widget): At least
2353         don't infinite loop if the widget and window heirarchies
2354         don't correspond.
2355
2356         * gtk/gtkdnd.c (gtk_drag_find_widget): Handle changes
2357         in heirarchy in ::drag_motion, ::drag_drop callbacks
2358         by referencing child widget lists. (Patch from Tim)
2359
2360         * gtk/gtkdnd.c (gtk_drag_find_widget): Fix a problem
2361         with widgets where window.x != widget->allocation.x
2362
2363 Fri Jan  4 01:36:48 2002  Owen Taylor  <otaylor@redhat.com>
2364
2365         * gdk/x11/gdkdrawable-x11.c (convert_to_format): Optimize
2366         a little bit. (More for consistency than because it
2367         makes much of a difference.)
2368
2369 Thu Jan  3 22:18:15 2002  Owen Taylor  <otaylor@redhat.com>
2370
2371         * gdk/x11/gdkdrawable-x11.c gdk/x11/gdkprivate-x11.h
2372         (_gdk_x11_have_render): Private function to tell if we have RENDER
2373         extension.
2374
2375         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_get_fg_picture): Return
2376         None if we don't have RENDER extension.
2377
2378         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Don't
2379         use Xft unless we have render extension.
2380
2381         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
2382         Handle missing render extension.
2383
2384         * gdk/gdkdraw.c gdk/gdkdrawable.h gdk/gdkpixmap.c gdk/gdkwindow.c
2385         gdk/gdkinternals.h: Add a private copy_to_image() virtual function
2386         to the GdkDrawable vtable that extends get_image() to allow
2387         copying onto existing images.  Make the default implementation of
2388         get_image() use this so that backends don't have to implement
2389         both. Add private wrapper _gdk_drawable_copy_to_image().
2390
2391         * gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.c
2392         gdk/x11/gdkdrawable-x11.c (_gdk_x11_copy_to_image): Implement
2393         copy_to_image() semantics, speed up by using ShmPixmaps and
2394         XCopyArea when possible, XFlush() after ungrabbing the server,
2395         generally redo the logic once again.
2396
2397         * gdk/gdkinternals.h gdk/x11/gdkimage-x11.c
2398         _gdk_windowing_bits_per_depth(): Function to convert from depth to
2399         bits-per-pixel. (We assume only one bpp per depth - X requires
2400         this.)
2401
2402         * gdk/gdkinternals.h gdk/gdkrgb.c gdk/gdkimage.c: Move the GdkRGB
2403         scratch image code into a generic _gdk_image_get_scratch() chunk
2404         of code that we can use other places we need scratch images.
2405
2406         * gdk/gdkimage.c gdk/x11/gdkimage.c gdk/gdkinternals.h:
2407         Add _gdk_image_new_for_depth() as the backend 
2408         to _gdk_image_new() to allowing creating images with
2409         a depth and no visual.
2410
2411         * gdk/gdkpixbuf-drawable.c: Fix so that getting 
2412         parts of images not at 0,0 actually works.
2413
2414         * gdk/gdkdrawable.h gdk/gdkinternals.h gdk/gdkdraw.c
2415         gdk/gdkwindow.c gdk/gdkpixmap.c gdk/gdkpixbuf-render.c: 
2416          - Add a new GdkDrawableClass vfunc _draw_pixbuf, and 
2417           _gdk_draw_pixbuf() [ will be made public later ], to allow 
2418           backends to accelerate drawing pixbufs. 
2419          - Move the implementation of gdk_pixbuf_render_to_drawable_alpha()
2420            to be the default implementation. 
2421          - Update docs for gdk_pixbuf_render_to_drawable_alpha(). 
2422          - Optimize the default implementation by using 
2423            _gdk_image_copy_to_pixmap() and scratch shared images, and
2424            special casing the compositing.
2425
2426         * gdk/x11/gdkdrawable-x11.c: Accelerate _gdk_draw_pixbuf()
2427         with alpha using the RENDER extension.
2428
2429         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable):
2430         Optimize by _gdk_image_copy_to_pixmap() and scratch images.
2431
2432         * tests/testrgb.c: Add test for speed of alpha composition,
2433         reduce the number of iterations since alpha composition
2434         can be a bit slow.
2435
2436         * gdk/x11/gdkimage-x11.c gdk/gdkprivate-x11.h (_gdk_x11_image_get_shm_pixmap): 
2437         Private function to get a ShmPixmap for an image, if possible.
2438
2439 2002-01-04  Anders Carlsson  <andersca@gnu.org>
2440
2441         * tests/testtreesort.c: Add my cool list of integers.
2442
2443 Thu Dec 27 18:12:55 2001  Owen Taylor  <otaylor@redhat.com>
2444
2445         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Fix
2446         problem where retrieved atoms weren't properly returned.
2447
2448 2002-01-03  Anders Carlsson  <andersca@gnu.org>
2449
2450         * gtk/gtktextview.c (gtk_text_view_key_press_event): When
2451         tab is pressed and the text view isn't editable, 
2452         move the focus instead.
2453
2454         * gtk/gtkstyle.c (gtk_default_draw_focus): Free dash list if
2455         necessary.
2456
2457         * gtk/gtkhsv.c (gtk_hsv_get_focus_gc): Free dash list.
2458
2459         * gtk/gtkcolorsel.c (get_focus_gc): Free dash list.
2460
2461         * gtk/gtkdnd.c (set_icon_stock_pixbuf): Don't unref the mask
2462         if it's NULL.
2463
2464         * gtk/gtktreeview.c: Rename gtk_tree_view_queue_draw_node to
2465         _gtk_tree_view_queue_draw_node.
2466         (gtk_tree_view_row_has_child_toggled): Only redraw one node.
2467
2468         * gtk/gtktreesortable.c (gtk_tree_sortable_set_sort_func): 
2469         sort_column_id can be 0.
2470
2471         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
2472         Only redraw one the node being selected.
2473
2474         * gtk/gtktreeprivate.h: Add _gtk_tree_view_queue_draw_node.
2475         
2476 Wed Jan  2 23:09:06 2002  Tim Janik  <timj@gtk.org>
2477
2478         * gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
2479         realized but visible && !mapped resize containers (which is
2480         possible with unset CHILD_VISIBLE now).
2481
2482 2002-01-02  jacob berkman  <jacob@ximian.com>
2483
2484         * gtk/Makefile.am (LDFLAGS): automake still doesn't support
2485         libsomething_la_LDFLAGS, so fix the build again
2486
2487 2002-01-01  Havoc Pennington  <hp@pobox.com>
2488
2489         * gtk/gtktextview.c (gtk_text_view_expose_event): propagate
2490         exposes to no window children not in the buffer window.
2491         (gtk_text_view_class_init): add move_focus bindings for Ctrl-Tab
2492         - is this the right way to do it?
2493         (gtk_text_view_focus): add focus method, just chains up for now, 
2494         I'm not sure why the GtkContainer implementation doesn't work
2495
2496         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): fill
2497         in the text line for the child anchor segment
2498
2499         * tests/testtext.c (do_add_focus_children): add another test
2500         example (to put focusable buttons into the widget)
2501
2502 2002-01-01  Havoc Pennington  <hp@pobox.com>
2503
2504         * docs/README.linux-fb: note that this file is obsolete
2505
2506         * docs/Changes-2.0.txt, docs/Changes-1.2.txt: Add notes to these
2507         files that they should not be edited and look in the reference 
2508         manual instead. Probably these files should just be replaced by 
2509         the note, and their main contents deleted.
2510
2511         * gtk/gtktextview.c: docs
2512
2513         * gtk/gtktextmark.c: docs
2514
2515         * gtk/gtktextchild.c: docs
2516
2517         * gtk/gtktextbuffer.c: docs stuff
2518
2519         * gtk/gtkclipboard.c (gtk_clipboard_get): fool with docs to maybe
2520         give people more leads in sorting out PRIMARY vs. CLIPBOARD
2521
2522 2002-01-01  Tor Lillqvist  <tml@iki.fi>
2523
2524         * demos/Makefile.am (test-inline-pixbufs.h): Append EXEEXT to
2525         ../gdk-pixbuf/gdk-pixbuf-csource.
2526
2527 2001-12-31  Tor Lillqvist  <tml@iki.fi>
2528
2529         * gdk/win32/gdkgc-win32.c (predraw_set_foreground): Improved error
2530         handling.
2531         (gdk_win32_hdc_get,gdk_win32_hdc_release): Silence gcc -Wall.
2532
2533         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image): Silence gcc
2534         -Wall.  Use GDK_IS_PIXMAP_IMPL_WIN32 instead of GDK_IS_PIXMAP in
2535         one more place.
2536
2537         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Silence gcc
2538         -Wall.
2539
2540         * gtk/Makefile.am (libgtk_win32_1_3_la_LDFLAGS): Add -lwsock32.
2541
2542 2002-01-01  Havoc Pennington  <hp@pobox.com>
2543
2544         * gtk/gtktextview.c (gtk_text_view_get_default_attributes): doc 
2545         fix
2546         
2547 2002-01-01  Havoc Pennington  <hp@pobox.com>
2548
2549         * gtk/gtktextview.c (changed_handler): Replace call to
2550         gtk_widget_size_request() that expected to actually compute the
2551         request with a direct use of widget_class->size_request, so we get
2552         our size request right; fixes remaining part of #63065 reported by
2553         Matthias Clasen
2554
2555 2001-12-31  Havoc Pennington  <hp@pobox.com>
2556
2557         * tests/testtext.c (do_insert_and_scroll): remove backward_char
2558         since we no longer have bogus newline
2559         (dialog_response_callback): remove another backward_char horkage, 
2560         reported by Matthias Clasen #63065
2561
2562 2001-12-31  Havoc Pennington  <hp@pobox.com>
2563
2564         * gtk/gtktextbtree.c (gtk_text_btree_node_view_check_consistency):
2565         fix an incorrect assertion that the "valid" flag is always correct
2566         in a node and add explanatory comment. This keeps me from 
2567         reproducing #59101, but I'm remembering that 59101 was actually 
2568         about incorrect pixel totals, so I'm not sure 59101 is actually 
2569         fixed. May just have stopped happening due to some change in 
2570         how C-k works.
2571
2572 2001-12-31  Havoc Pennington  <hp@pobox.com>
2573
2574         * gtk/gtktextview.c (gtk_text_view_start_selection_drag): extend
2575         selection if shift is down, bug #50939
2576         (gtk_text_view_button_press_event): add double/triple click
2577         selection to the current selection if shift is down
2578
2579 2001-12-31  Havoc Pennington  <hp@pobox.com>
2580
2581         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index): fix 
2582         to use ensure_byte_offsets not ensure_char_offsets, patch 
2583         from Padraig O'Briain bug #67356
2584         
2585 2001-12-30  Havoc Pennington  <hp@pobox.com>
2586
2587         * gtk/gtkdialog.h (GtkDialogFlags): fix GtkDialogFlags to have 
2588         the right values, reported by Jeff Franks
2589
2590 2001-12-30  Matthias Clasen  <matthiasc@poet.de>
2591
2592         * gtk/gtkwindow.c, gtk/gtkimcontextsimple.c: Minor documentation tweaks.
2593
2594 2001-12-28  Matthias Clasen  <matthiasc@poet.de>
2595
2596         * gdk/x11/gdkproperty-x11.c, gdk/x11/gdkselection-x11.c: 
2597         Minor documentation tweaks.
2598
2599 2001-12-28  Tor Lillqvist  <tml@iki.fi>
2600
2601         * gdk/win32/gdkfont-win32.c: Use G_N_ELEMENTS().
2602         (unicode_classify): Don't return -1 on encountering an
2603         unclassified character, but play it safe and return U_BASIC_LATIN.
2604
2605 Thu Dec 27 16:05:30 2001  Owen Taylor  <otaylor@redhat.com>
2606
2607         * gtk/gtkarrow.c gtk/gtkimage.c gtkpixmap.c: Make interpretation
2608         of misc->xpad/ypad consistent with GtkLabel. Do 
2609         directional flipping when interpreting misc->xalign/yalign.
2610         Fix off-by-one error for negative x,y. (#67472, reported
2611         by Mathieu Lacage)
2612
2613 Thu Dec 27 15:45:41 2001  Owen Taylor  <otaylor@redhat.com>
2614
2615         * gtk/gtkwidget.c (gtk_widget_set_style_internal):
2616         Remove optimization that was causing problems because
2617         we called gtk_widget_size_request() before we called
2618         gtk_widget_queue_resize() so RESIZE_NEEDED was not
2619         set. Optimization shouldn't mattter now that we
2620         are smart about needlessly size requesting or allocating
2621         widgets. (#67598, reported by Jacob Berkman)
2622
2623 Thu Dec 27 15:38:20 2001  Owen Taylor  <otaylor@redhat.com>
2624
2625         * gtk/gtkmenu.c (gtk_menu_stop_navigating_submenu_cb):
2626         Call gdk_window_get_pointer() on menu->bin_window not
2627         menu->window, so we get the correct window for the
2628         menu item. (#65213, Guillermo S. Romero)
2629
2630 Thu Dec 27 15:13:44 2001  Owen Taylor  <otaylor@redhat.com>
2631
2632         * gtk/gtkmenu.c (gtk_menu_set_title): Allow unsetting
2633         the title by setting to NULL. Move docs inline. 
2634         Update the title if the tearoff window already
2635         exists. Code cleanup. (Fixes #65190, reported by
2636         Vitaly Tishkov.)
2637
2638 Thu Dec 27 14:04:22 2001  Owen Taylor  <otaylor@redhat.com>
2639
2640         * gtk/gtksocket.c (gtk_socket_key_press_event): 
2641         gtk/gtkplug.c (gtk_plug_key_press_event): Don't do
2642         special handling of key presses unless we are doing 
2643         iter-app embedding. (Fixes #67590, Anders Carlsson)
2644
2645 Thu Dec 27 16:37:04 2001  Kristian Rietveld  <kris@gtk.org>
2646
2647         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted),
2648         (gtk_tree_model_sort_sort_level),
2649         (gtk_tree_model_sort_insert_value): fix a few places where
2650         I was confused between modelsort iters and other iters. This was
2651         really going to happen someday ;)
2652
2653 Wed Dec 26 23:41:41 2001  Kristian Rietveld  <kris@gtk.org>
2654
2655         * gtk/gtktreeview.c (gtk_tree_view_rows_reordered): ensure
2656         we are unprelighted before reordering
2657
2658         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): we
2659         need to break out of the for loop, not return (this fixed
2660         the 'selection freeze' bug).
2661
2662         * gtk/gtktreemodelsort.c: more fixage and cleanups. It seems to
2663         be pretty stable now, though it still needs some more code
2664         cleanups.
2665
2666 Wed Dec 26 12:32:31 2001  Owen Taylor  <otaylor@redhat.com>
2667
2668         * docs/Changes-2.0.txt: Document the fact that
2669         gtk_paned_set_handle_size() has been removed.
2670
2671         * gtk/gtkpaned.h Remove gtk_paned_handle_size() compat macro, 
2672         since it pointed to gtk_paned_set_handle_size(), which
2673         was removed. (#66760, Matt Wilson)
2674
2675 Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
2676
2677         * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
2678         gtk_drag_hightlight_expose _after_, so it works with
2679         widgets that paint there entire background. (#66735)
2680
2681 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
2682
2683         * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
2684         allocation to widget->allocation. (Fixes #67290,
2685         Chris Phelps.)
2686
2687 Wed Dec 26 11:49:01 2001  Owen Taylor  <otaylor@redhat.com>
2688
2689         (#67542, reported by Anders Carlsson)
2690         
2691         * gtk/gtkstyle.c (gtk_style_real_init_from_rc): Merge
2692         rc_style->font_desc with defaul style instead of replacing
2693         it.
2694
2695         * gtk/gtkrc.c (gtk_rc_style_real_merge): Allow partial
2696         font descriptions in RC styles by calling
2697         pango_font_description_merge(). 
2698
2699 2001-12-24  James Henstridge  <james@daa.com.au>
2700
2701         * gtk/gtkdialog.h (doc comment): s/<!>/<!-- -->/ to make the doc
2702         valid with both SGML and XML.
2703
2704 Sat Dec 22 12:38:03 2001  Owen Taylor  <otaylor@redhat.com>
2705
2706         * configure.in: 1.3.12, interface, binary age 0.
2707
2708         * configure.in: Require new versions of Glib, Pango, ATK.
2709
2710         * NEWS: Updated.
2711
2712         * configure.in: Make explicit what libtool we are executing.
2713         (Tomas Ogren)
2714
2715         * gdk/gdkcolor.c gdk/gdkgc.c gdk/gdkwindow.c: Doc fixes.
2716
2717         * gtk/gtkwidget.c (gtk_widget_[class]path) gtkrc.h : Fix 
2718         parameter names for docs.
2719
2720 Sat Dec 22 22:35:29 2001  Owen Taylor  <otaylor@redhat.com>
2721
2722         * gtk/gtkwindow.c (gtk_window_realize) 
2723           gtk/gtkplug.c (gtk_plug_realize): Include GDK_KEY_RELEASE_MASK.
2724
2725         * gtk/gtkentry.c (gtk_entry_key_release)
2726           gtk/gtktextview.c (gtk_text_view_key_release_event): Pass
2727         key release events to the input method.
2728
2729         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
2730         Handle release of Control/Shift to end hex sequence.
2731
2732         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_filter_keypress): 
2733         Handle key releases as well as presses.
2734
2735 2001-12-21  Matthias Clasen  <matthiasc@poet.de>
2736
2737         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): Trivial doc adjustment.
2738
2739         * gtk/gtklabel.c (gtk_label_new_with_mnemonic),
2740         gtk/gtkbutton.c (gtk_button_new_with_mnemonic): More precise
2741         documentation about underscores and mnemonics. (#66380)
2742
2743         * gtk/gtktextiter.c (gtk_text_iter_backward_word_starts): Fix
2744         cyclic reference in docs.
2745
2746         * gtk/gtklabel.c (gtk_label_set_justify): Correct documentation
2747         of default value. (#65402)
2748
2749         * gtk/gtkmain.c (gtk_set_locale, gtk_disable_set_locale): 
2750         Markup fixes.
2751
2752 2001-12-20  Anders Carlsson  <andersca@gnu.org>
2753
2754         * gtk/gtktreeview.c (gtk_tree_view_realize): Don't call
2755         map here.
2756
2757 Tue Dec 18 16:15:55 2001  Owen Taylor  <otaylor@redhat.com>
2758
2759         * gdk/gdkgc.h: Explicitely deprecate gdk_gc_set_font()
2760         (reported by Jeff Franks.)
2761
2762 Tue Dec 18 16:07:28 2001  Owen Taylor  <otaylor@redhat.com>
2763
2764         * gdk/gdkkeys.h (struct _GdkKeymapClass): Fix 
2765         prototype for direction_changed. (Reported by
2766         Jeff Franks.)
2767
2768 2001-12-18  Padraig O'Briain <padraig.obriain@sun.com>
2769
2770         * gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
2771         Fix typo (list->data becomes list->next)
2772
2773 2001-12-06  Havoc Pennington  <hp@redhat.com>
2774
2775         Add Unicode control char menu, based on patch from Dov.
2776         Bug #63495
2777         
2778         * gtk/gtkentry.c (gtk_entry_commit_cb): share code via
2779         gtk_entry_enter_text
2780         (gtk_entry_enter_text): function to do "typing in text"
2781         (popup_targets_received): add the Unicode menu items
2782
2783         * gtk/gtktextview.c (popup_targets_received): add missing mnemonic
2784         on Input Methods item, and add the unicode menu items.
2785
2786         * gtk/gtktextutil.h, gtk/gtktextutil.c: private utilities to be
2787         used in GtkEntry and GtkTextView - may become public later.     
2788
2789 2001-12-16  Kjartan Maraas  <kmaraas@gnome.org>
2790
2791         * gtk/gtkprogressbar.c: Fix a typo.
2792         * gtk/gtkpaned.c: Fix a typo.
2793         
2794 2001-12-15  Darin Adler  <darin@bentspoon.com>
2795
2796         Fix some warnings.
2797
2798         * gdk/x11/gdkproperty-x11.c: (gdk_property_get): Fix wrong type in
2799         g_new -- bug if sizeof (GtkAtom) != sizeof (GtkAtom *).
2800         * gdk/x11/gdkwindow-x11.c: (create_moveresize_window): FALSE -> NULL
2801         * gtk/gtkaccellabel.c: (gtk_accel_label_refetch): Remove unused local.
2802         * gtk/gtklistitem.c: (gtk_list_item_expose): Remove unused local.
2803         * gtk/gtktextiter.c: (_gtk_text_iter_backward_indexable_segment):
2804         Restructure loop to get rid of uninitialized variable warning. Also
2805         gives a tiny efficiency gain.
2806
2807 2001-12-15  Murray Cumming  <murrayc@usa.net>
2808
2809         * Fixed first arg type of GtkScale's "format_value" signal's
2810         function pointer.
2811
2812 2001-12-14            Vitaly Tishkov       tvv@sparc.spb.su
2813         docs/reference/gtk/tmpl/gtkcelleditable.sgml
2814                 gtkcelleditable -> GtkCellEditable
2815         docs/reference/gtk/tmpl/gtktreesortable.sgml
2816                 gtktreesortable -> GtkTreeSortable
2817
2818 2001-12-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2819
2820         * demos/testpixbuf-drawable.c, demos/testpixbuf-save.c,
2821         demos/testpixbuf-scale.c, demos/testpixbuf.c: Call g_object_ref
2822         and g_object_unref instead of gdk_pixbuf_ref and gdk_pixbuf_unref
2823         resp.
2824
2825 Thu Dec 13 22:02:41 2001  Kristian Rietveld   <kris@gtk.org>
2826
2827         * gtk/gtktreeview.c (validate_visible_area): free path
2828         at the end
2829
2830 2001-12-13  Matthias Clasen  <matthiasc@poet.de>
2831
2832         * gtk/gtkdialog.c, gtk/gtkrc.c, gtk/gtkwidget.c: Markup fixes.
2833
2834 Thu Dec 13 20:37:27 2001  Kristian Rietveld  <kris@gtk.org>
2835
2836         * gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
2837         to find the clicked node in the tree when tree == NULL
2838
2839 2001-12-13  Anders Carlsson  <andersca@gnu.org>
2840
2841         * gtk/gtktreeview.c (gtk_tree_view_button_press): Compare 
2842         event->state with the default mod mask. 
2843
2844 2001-12-12  jacob berkman  <jacob@ximian.com>
2845
2846         * gtk/gtk*.h (GTK_IS_*_CLASS): s/obj/klass/ where appropriate
2847
2848 Wed Dec 12 17:22:45 2001  Owen Taylor  <otaylor@redhat.com>
2849
2850         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_slave):
2851         Reset the existing slave before removing it to give
2852         it a chance to commit and emit "preedit_changed" 
2853         in case there was still a preedit string.
2854
2855 2001-12-12  Matthias Clasen  <matthiasc@poet.de>
2856         
2857         * gtk/gtktextlayout.c: Typo fixes
2858         * gtk/gtkwindow.c (gtk_window_set_position): Typo fix. (#66746)
2859
2860         * gtk/gtkwidget.c (gtk_widget_send_expose, gtk_widget_get_toplevel, 
2861         gtk_widget_get_default_direction): Doc fixes. (#66727, #66737, #66744)
2862
2863         * gtk/gtkstyle.h (GTK_STYLE_NUM_STYLECOLORS): Remove. (#66467)
2864
2865 Wed Dec 12 16:43:10 2001  Jonathan Blandford  <jrb@redhat.com>
2866
2867         * gtk/gtktreeview.c (gtk_tree_view_unrealize): Remove
2868         validate_rows_timer in unrealize.  Reported by Matthew Wilson.
2869
2870 Wed Dec 12 16:18:26 2001  Owen Taylor  <otaylor@redhat.com>
2871
2872         * gtk/gtkmenu.c (gtk_menu_realize): Remove support for
2873         "prepainting" the menu before realizing other than
2874         via gtk_style_set_background() - this was broken when
2875         we added menu scroll support.
2876
2877         * gtk/gtkmenu.c (gtk_menu_paint): Pay attention to the
2878         window in the expose event -- fixes problem with border
2879         flashing during scrolling.
2880
2881 Wed Dec 12 15:11:49 2001  Owen Taylor  <otaylor@redhat.com>
2882
2883         * gtk/gtksettings.c (gtk_settings_get_property): Support
2884         using names/nicks for the gdk_settings values for enum valued
2885         types. (#57678, reported by Anders Carlsson)
2886
2887 Wed Dec 12 15:01:33 2001  Jonathan Blandford  <jrb@redhat.com>
2888
2889         * gtk/gtknotebook.c (gtk_notebook_set_tab_label): keep in sync
2890         with insert_page_menu.  Code duplication is bad.
2891
2892         * gtk/gtklabel.c (gtk_label_mnemonic_activate): Whoops -- got the
2893         wrong fix yesterday.
2894
2895 Wed Dec 12 14:27:30 2001  Owen Taylor  <otaylor@redhat.com>
2896
2897         * gtk/gtkmenubar.c (window_key_press_handler): Fix check for
2898         modifiers.
2899
2900 2001-12-12  James Henstridge  <james@daa.com.au>
2901
2902         * gtk/gtkmenu.c (gtk_menu_key_press): check GTK_MENU_ITEM
2903         (menu_item)->accel_path first when looking up the accel path.
2904
2905 Tue Dec 11 19:18:21 2001  Owen Taylor  <otaylor@redhat.com>
2906
2907         * tests/testgtk.c (layout_expose_handler): Only draw
2908         for events on the bin window.
2909
2910 Tue Dec 11 18:55:16 2001  Jonathan Blandford  <jrb@redhat.com>
2911
2912         * gtk/gtklabel.c (gtk_label_mnemonic_activate): Small fix to let
2913         mnemonics work with notebooks.
2914
2915 Tue Dec 11 15:25:06 2001  Jonathan Blandford  <jrb@redhat.com>
2916
2917         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): Change
2918         bin_window to be located at y=TREE_VIEW_HEADER_HEIGHT(tree_view).
2919         Makes some flicker while scrolling go away.
2920
2921 2001-12-11  Michael Natterer  <mitch@gimp.org>
2922
2923         * demos/testpixbuf-save.c: added new keyboard shortcut 'a' which
2924         adds alpha to the pixbuf; re-load the saved pixbuf and
2925         pixel-by-pixel compare it with the original one.
2926
2927 Tue Dec 11 15:39:08 2001  Soeren Sandmann  <sandmann@daimi.au.dk>
2928
2929         * ChangeLog: Fix wrong ChangeLog entry
2930         * gtk/gtkstyle.c (gtk_default_draw_shadow_gap): Fix drawing of top
2931         right corner
2932
2933 2001-12-10  jacob berkman  <jacob@ximian.com>
2934
2935         * gdk/x11/gdkinput-xfree.c (_gdk_input_grab_pointer): 
2936         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
2937         (gdk_keyboard_grab): do not grab things if the nograb debug flag
2938         is set
2939
2940         * gdk/gdkinternals.h: 
2941         * gdk/gdk.c: add nograbs debug flag to disable grabs of the
2942         keyboard / mouse
2943
2944 Mon Dec 10 19:42:29 2001  Jonathan Blandford  <jrb@redhat.com>
2945
2946         * gtk/gtktreeview.c (validate_rows_handler): stupid bug where I
2947         didn't reset the timer.
2948
2949 2001-12-10  Matthias Clasen  <matthiasc@poet.de>
2950
2951         * gtk/gtkcontainer.c (gtk_container_child_type): Close comment.
2952
2953 2001-12-09  Matthias Clasen  <matthiasc@poet.de>
2954
2955         * gtk/gtkviewport.c: Add docs.
2956
2957 Mon Dec 10 16:21:38 2001  Jonathan Blandford  <jrb@redhat.com>
2958
2959         * gtk/gtkrbtree.c (_fixup_parity): New function to fixup parity.
2960         RBTree corruption bug--
2961
2962 2001-12-10  Anders Carlsson  <andersca@gnu.org>
2963
2964         * gtk/gtktreeview.c (gtk_tree_view_remove_widget): Return
2965         if edited_column is NULL, also grab focus before removing
2966         the cell_editable.
2967
2968 Sun Dec 09 15:06:51 2001  George Lebl <jirka@5z.com>
2969
2970         * gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
2971           denominator in the horizontal case just like we do in the vertical
2972           case (why I didn't notice that there were two cases the first time
2973           around is beyond me:).  Also fix indentation in the vertical case.
2974
2975 2001-12-09  Anders Carlsson  <andersca@gnu.org>
2976
2977         * gdk/x11/gdkevents-x11.c: Update xsettings name.
2978
2979         * gtk/gtkdnd.c (gtk_drag_check_threshold): Use the
2980         gtk-dnd-drag-threshold GtkSetting.
2981
2982         * gtk/gtksettings.c (gtk_settings_class_init): Add 
2983         setting for dnd drag threshold.
2984
2985 2001-12-09  Matthias Clasen  <matthiasc@poet.de>
2986
2987         * gtk/gtkcontainer.c: Add docs.
2988
2989 2001-12-08  Matthias Clasen  <matthiasc@poet.de>
2990
2991         * gtk/gtkwidget.c: Doc markup fix. 
2992
2993         * gtk/gtktreeviewcolumn.c: Markup fixes. (#66447)
2994
2995         * gtk/gtktreestore.c: Typo fixes. (#66445)
2996
2997         * gtk/gtkaccelgroup.c: Misc doc markup. (#66425) 
2998
2999         * gtk/gtkclipboard.c (gtk_clipboard_get_owner): Fix reference
3000         to gtk_clipboard_set_with_owner(). (#66424)
3001  
3002 Sat Dec  8 16:12:10 2001  Christopher Blizzard  <blizzard@redhat.com>
3003
3004         * gdk/gdk.c (gdk_init_check): Fallback to setting the prgname to
3005         "<unknown>" if someone doesn't pass in a valid argc.  (Patch from
3006         Fabrice Bellet <fabrice@gnu.org>, #54127).
3007
3008 Sat Dec  8 10:04:54 2001  Jonathan Blandford  <jrb@redhat.com>
3009
3010         * gtk/gtkrbtree.c (_gtk_rbtree_debug_spew): Add debug spew to lots
3011         of places, so that people with crashy trees can just run their
3012         program with GTK_DEBUG=TREE.
3013
3014 Sat Dec  8 20:57:24 2001  Kristian Rietveld  <kristian@planet.nl>
3015
3016         * gtk/gtkliststore.c (gtk_list_store_remove): nuke the stamp++,
3017         per jrb's request
3018
3019 2001-12-08  Anders Carlsson  <andersca@gnu.org>
3020
3021         * tests/testgtk.c (layout_expose_handler): Don't return TRUE
3022         since then the default GtkLayout expose handler won't be called.
3023
3024 Fri Dec  7 23:42:50 2001  Jonathan Blandford  <jrb@redhat.com>
3025
3026         * gtk/gtktreeview.c (validate_rows_handler): remove
3027         g_return_if_fail.
3028
3029         * gtk/gtktreeview.c (validate_visible_area): Patch from Manish
3030         Singh <yosh@gimp.org> to fix bug when rendering Tree with an
3031         empty model.
3032
3033 Fri Dec  7 20:06:14 2001  Jonathan Blandford  <jrb@redhat.com>
3034
3035         * gtk/gtktreeview.c (validate_visible_area): get logic right,
3036         #66249
3037
3038         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): fix bug where
3039         removing a node ended up with a corrupt tree.  Really really nasty
3040         bug.
3041         (_gtk_rbtree_debug_spew): new debug helper function
3042         (_fixup_validation): new inline function to clean up code
3043         readability a lot. 
3044
3045 Fri Dec  7 19:34:51 2001  Owen Taylor  <otaylor@redhat.com>
3046
3047         * gtk/gtktoolbar.c (gtk_toolbar_insert_element):
3048         Close comment.
3049
3050 2001-12-07  Matthias Clasen  <matthiasc@poet.de>
3051
3052         * gtk/gtkstyle.h: Typo fixes.
3053
3054         * gtk/gtkstyle.c, gtk/gtktoolbar.c: Add docs.
3055
3056         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Fix docs.
3057
3058 Fri Dec  7 16:05:22 2001  Owen Taylor  <otaylor@redhat.com>
3059
3060         * modules/input/gtkimcontextxim.c: Display the XIM
3061         status callbacks with a popup window. (Patch from
3062         HideToshi Tajima, #50628, somewhat modified.)
3063
3064 Fri Dec  7 12:07:15 2001  Tim Janik  <timj@gtk.org>
3065
3066         * gtk/Makefile.am: each source generation rule needs to use its own
3067         temporary file, to avoid clashes for parallel builds. fixed rules
3068         for gtkmarshalers.h and gtkmarshalers.c to use their own temp files.
3069
3070 2001-12-07  Havoc Pennington  <hp@pobox.com>
3071
3072         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new): fix up my list of
3073         "cursors that are actually useful" in gdk_cursor_new() docs
3074
3075 Thu Dec  6 23:09:21 2001  Owen Taylor  <otaylor@redhat.com>
3076
3077         * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate): Fix errors
3078         in computing the size of the second child.
3079
3080 Thu Dec  6 16:50:17 2001  Owen Taylor  <otaylor@redhat.com>
3081
3082         * gtk/gtkrange.c: Make button 1 clicks on the trough
3083         do pages, button 3 steps. (Patch from Hans Breuer
3084         #63735)
3085
3086 2001-12-06  Matthias Clasen  <matthiasc@poet.de>
3087
3088         * gtk/gtklabel.c: Fix docs. (#66383)
3089
3090         * gtk/gtkbbox.c (gtk_button_box_set_child_secondary): Fix docs. 
3091         (#66278, #66280)
3092         
3093         * gdk/gdkwindow.h (gdk_window_get_deskrelative_origin),
3094         gdk/gdkimage.h (gdk_image_get): Deprecate. (#66208)
3095
3096         * gtk/gtkcolorsel.c (gtk_color_selection_set_update_policy):
3097         Don't emit a g_warning() about being deprecated. (#66208)       
3098
3099         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_widget): Add docs.
3100
3101         * gtk/gtkcontainer.c: Doc fixes.
3102         
3103         * gtk/gtkliststore.c (gtk_list_store_clear): Add docs; misc doc fixes.
3104
3105         * gtk/gtkstyle.c (gtk_style_attach): Add docs.
3106
3107 2001-12-05  Sven Neumann  <sven@gimp.org>
3108
3109         * gtk/gtkwidget.c (gtk_widget_reset_shapes): close comment.
3110
3111         * gtk/queryimmodules.c: g_dir_read_name() returns const.
3112
3113 Tue Dec  4 21:46:13 2001  HideToshi Tajima  <hidetoshi.tajima@sun.com>
3114
3115         * gtk/gtktreeprivate.h: restore the else case of #ifdef __GNUC__
3116         #66225
3117         
3118 2001-12-04  Manish Singh  <yosh@gimp.org>
3119
3120         * gtk/gtkmain.c
3121         * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
3122         a gpointer.
3123
3124         * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
3125         correction to docs.
3126
3127         * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
3128
3129 2001-12-04  Havoc Pennington  <hp@redhat.com>
3130
3131         * gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
3132         g_assert_not_reached() that was bogus, since we demand-create the
3133         tag info. reported by Chris Phelps
3134
3135         Jump through assorted hoops to fix bug from Chris Phelps where 
3136         removing tags from the table resulted in btree trying to 
3137         access tag->table
3138         
3139         * gtk/gtktextbuffer.c: set up mechanics of adding/removing 
3140         ourselves to the tag table
3141
3142         * gtk/gtktexttagtable.c (_gtk_text_tag_table_add_buffer) 
3143         (_gtk_text_tag_table_remove_buffer): private cruft to 
3144         let us notify buffer of disappearing tags
3145
3146         * gtk/gtktexttag.h: remove BTreeNode typedef from this public
3147         header, put it in tagprivate    
3148
3149         * gtk/gtktextbtree.c (_gtk_text_btree_new): don't connect to
3150         tag_removed; it's emitted too late.
3151         (_gtk_text_btree_notify_will_remove_tag): rename tag_remove_cb to
3152         this
3153
3154         Padding for ABI-compat expansion
3155         
3156         * gtk/gtktexttag.h (struct _GtkTextAttributes): pad this
3157         (struct _GtkTextAppearance): one pad in here too
3158
3159         * gtk/gtktextlayout.h (struct _GtkTextLayoutClass): padding here
3160
3161         * gtk/gtktextview.h (struct _GtkTextViewClass): more padding,
3162         since action signals etc. seem pretty likely
3163
3164         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): padding
3165
3166         * gtk/gtktexttag.h (struct _GtkTextTagClass): padding
3167
3168         * gtk/gtktexttagtable.h (struct _GtkTextTagTableClass): padding
3169
3170 2001-12-04  Matthias Clasen  <matthiasc@poet.de>
3171
3172         * gdk/gdkcolor.h (gdk_colormap_change): Deprecate. (#65851)
3173
3174         * gdk/gdktypes.h (GdkKeyInfo): Remove. (#66025)
3175
3176         * gtk/gtkwindow.c, gtk/gtkwidget.c: Add docs, markup fixes.
3177
3178 Tue Dec  4 18:51:44 2001  Jonathan Blandford  <jrb@redhat.com>
3179
3180         * gtk/gtktreeviewcolumn.h: remove gtk_tree_view_column_cell_event,
3181         #62084.
3182
3183 Tue Dec  4 18:38:35 2001  Jonathan Blandford  <jrb@redhat.com>
3184
3185         * demos/gtk-demo/main.c: (create_tree): Minor fix.
3186
3187         * docs/tree-column-sizing.txt: Update
3188
3189         * gtk/gtkrbtree.[ch]: Massive work to support validation.
3190
3191         * gtk/gtktreemodel.c: Doc fixes.
3192
3193         * gtk/gtktreeview.c: Incremental reflow added.
3194         * gtk/gtktreeviewcolumn.c: ditto
3195         * gtk/gtktreeviewcolumn.h: ditto
3196
3197 2001-12-04  Havoc Pennington  <hp@redhat.com>
3198         
3199         * gtk/gtktexttag.c (gtk_text_tag_set_property): add a warning for
3200         "invisible" property, #65999
3201
3202 2001-12-04  Matt Wilson  <msw@redhat.com>
3203
3204         * gtk/gtktreestore.c (gtk_tree_store_insert): fixed docs
3205
3206 Tue Dec  4 12:16:31 2001  Owen Taylor  <otaylor@redhat.com>
3207
3208         * gtk/gtksettings.c (gtk_settings_set_property_value):
3209         Simplify, make more efficient and fix memory leak
3210         when turning quark into a string. (#66103, HideToshi
3211         Tajima)
3212
3213         * gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
3214         init() and unref priv->tooltips in destroy rather
3215         than calling gtk_object_destroy() which has no
3216         effect on memory management. (#66104, HideToshi
3217         Tajima)
3218
3219         * gtk/gtkcolorsel.c (palette_set_color): Use g_object_set_data_full()
3220         so we free the when the object is freed. (Fixes memory
3221         leak, #66096, HideToshi Tajima)
3222
3223         * gdk/gdkevents.c (gdk_synthesize_window_state): Use 
3224         a full GdkEvent structure to avoid reads of uninitialized/
3225         invalid memory in gdk_event_put() (#65877, patch
3226         from Hidetoshi Tajima)
3227
3228 Tue Dec  4 11:06:54 2001  Owen Taylor  <otaylor@redhat.com>
3229
3230         * gtk/gtkmenuitem.c: Revert my last mistaken change - 
3231         toggle-size-request doesn't take a requisition.
3232
3233         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): Fix
3234         reference to marshaler that no longer exists.
3235
3236 Mon Dec  3 16:39:17 2001  Owen Taylor  <otaylor@redhat.com>
3237
3238         Patch from Bill Haneman (with many modifications) to make
3239         the focus color work on dark themes and to make the
3240         focus line width configurable. (#61079, #63074)
3241
3242         * gtk/gtkwidget.c: Add style properties, 
3243         ::focus-widget, ::focus-line-width, and ::focus-padding.
3244
3245         * gtk/gtkstyle.[ch]: Make gtk_paint_focus() take a 
3246         state argument as well so we can use fg[STATE] to
3247         draw instead of always drawing with black. 
3248         Cange paint_focus() to respect GtkWidget::focus-width
3249         and GtkWidget::focus-line-pattern. Fix continuity
3250         problem where the default 1-1 stipple had a blob
3251         in one corner and a gap in the other. Change the
3252         interpretation of x/y/width/height to be the bounding
3253         box of the focus rect instead of the rectangle
3254         passed to gdk_draw_rectangle.
3255
3256         * gtk/gtkcheckbutton.c gtk/gtklistitem.c gtk/gtknotebook.c 
3257         gtk/gtkoptionmenu.c gtk/gtkradiobutton.c gtk/gtkspinbutton.c 
3258         gtk/gtktextview.c gtk/gtktreeview.c: Handle ::focus-width 
3259         and ::focus-line-padding.
3260
3261         * gtk/gtkentry.c: Handle :;focus-width property; cleanup
3262         and remove duplicated code; fix drawing of focus rectangle
3263         when interior-focus = FALSE. (#63072, #63073)
3264
3265         * gtk/gtkrange.c gtk/gtktext.c gtk/gtktreeitem.c
3266         gtk/gtktreeviewcolumn.c: Basic fixups to make compile;
3267         Range and TreeViewColumn will need more extensive fixing.
3268
3269         * gtk/gtkcolorsel.c: Honor focus line attributes when
3270         drawing the focus on the color swatches. (#63071)
3271
3272         * gtk/gtkhsv.c: Honor focus line attributes when
3273         drawing the focus for the ring and triangle.
3274
3275         * docs/widget_geometry.txt: Start at documenting how 
3276         various widgets are drawn.
3277
3278         * gtk/gtkbutton.c (_gtk_button_paint): Export 
3279         _gtk_button_paint() librarywide, so we don't have 
3280         duplicate a bunch of code in gtktogglebutton.c.
3281
3282         * gtk/gtktogglebutton.c: Use _gtk_button_paint().
3283
3284 Mon Dec  3 21:04:13 2001  Jonathan Blandford  <jrb@redhat.com>
3285
3286         * gtk/gtkmarshalers.list: remove VOID:BOXED,POINTER and
3287         NONE:POINTER.
3288
3289 2001-12-03  Alex Larsson  <alexl@redhat.com>
3290
3291         * gtk/gtkaccellabel.c:
3292         * gtk/gtkarrow.c:
3293         * gtk/gtkcolorsel.c:
3294         * gtk/gtkcontainer.c:
3295         * gtk/gtklabel.c:
3296         * gtk/gtktextview.c:
3297         * gtk/gtktogglebutton.c:
3298         * gtk/gtktreeview.c:
3299         * gtk/gtkwindow.c:
3300         Return FALSE from expose handlers.
3301
3302 Mon Dec  3 21:15:59 2001  Kristian Rietveld  <kris@gtk.org>
3303
3304         * gtk/gtktreedatalist.c (_gtk_tree_data_list_value_to_node): if
3305         we use pointers, we should free the previous pointer first (if
3306         it exists), before we set a new pointer. (#64726)
3307
3308         * gtk/gtktreeprivate.h: get rid of cursor_drag
3309
3310         * gtk/gtktreeview.c (gtk_tree_view_unrealize): remove check     
3311         for cursor_drag
3312         (gtk_tree_view_bin_expose): don't directly return in the while
3313         loop
3314         (gtk_tree_view_class_init): indentend expanders by default
3315         (gtk_tree_view_header_focus): only give the button focus
3316         if it's clickable, visible and the column is reorderable
3317         (#65539)
3318
3319         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
3320         create and free cursor
3321
3322 Mon Dec  3 10:23:07 2001  Owen Taylor  <otaylor@redhat.com>
3323
3324         * gtk/gtkcalendar.c (gtk_calendar_size_request): Fix
3325         some bugs with size requisition. (From Bill Haneman)
3326
3327         * gtk/gtkcalendar.c: Draw headers and selection in 
3328         base/text[SELECTED] instead of fg/bg[SELECTED].
3329
3330         * gtk/gtkcalendar.c: Miscellaneous cleanups to drawing
3331         code and formatting.
3332
3333 2001-12-03  Havoc Pennington  <hp@pobox.com>
3334
3335         * gtk/gtktextview.c (set_window_height): 
3336         (set_window_width): Hmm, setter functions normally assign the new
3337         value to the object field. Reported by Chris Phelps.
3338
3339 2001-11-30  jacob berkman  <jacob@ximian.com>
3340
3341         * gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
3342         signal id to 0 after we disconnect from it
3343
3344 2001-11-30  Matthias Clasen  <matthiasc@poet.de>
3345
3346         * gdk/gdkdrawable.h (gdk_drawable_ref, gdk_drawable_unref),
3347         gdk/gdkcolor.h (gdk_colormap_ref, gdk_colormap_unref),
3348         gdk/gdkdnd.h (gdk_drag_context_ref, gdk_drag_context_unref),
3349         gdk/gdkgc.h (gdk_gc_ref, gdk_gc_unref):  Deprecate.
3350
3351         * gdk/gdkvisual.h: Use GDK_DISABLE_DEPRECATED, not 
3352         GTK_DISABLE_DEPRECATED.
3353
3354         * gdk/gdkcolor.c (gdk_colormap_ref, gdk_colormap_unref),
3355         gdk/gdkgc.c (gdk_gc_ref, gdk_gc_unref): Document.
3356
3357 Fri Nov 30 16:37:01 2001  Owen Taylor  <otaylor@redhat.com>
3358
3359         * gtk/gtkcombo.c (gtk_combo_popup_list): Sanitize
3360         move/resize code, removing various bad, non-functional
3361         hacks. (Fixes #65048, reported by Damon Chaplin.)
3362
3363 Fri Nov 30 16:12:21 2001  Owen Taylor  <otaylor@redhat.com>
3364
3365         * gdk/gdkpango.c: Patch from Hidetoshi Tajima to fix 
3366         bad match error when target drawable is not the 
3367         same depth as the root window. (#65841)
3368
3369         * HACKING: Update.
3370
3371 2001-11-29  Matthias Clasen  <matthiasc@poet.de>
3372
3373         * gdk/gdkwindow.c: Typo fix.
3374
3375 Thu Nov 29 21:35:56 2001  Kristian Rietveld  <kristian@planet.nl>
3376
3377         * gtk/gtkmenu.c (gtk_menu_motion_notify): add checks for
3378         empty menu items to behave like insensitive items (#59456)
3379
3380         * gtk/gtkmenuitem.c (gtk_real_menu_item_activate_item): select
3381         next item if the first item in the menu is a tear off item
3382         (#59456-2, suggestion by Matthias Clasen)
3383
3384         * gtk/gtkmenushell.c (gtk_menu_shell_button_press),
3385         (gtk_menu_shell_button_release), (gtk_menu_shell_entry_notify),
3386         (gtk_menu_shell_leave_notify), (gtk_real_menu_shell_move_current),
3387         (gtk_real_menu_shell_activate_current): add check, so empty
3388         menu items behave like insensitive items (#59456)
3389         
3390         * gtk/gtkmenuitem.[ch]: add _gtk_menu_item_is_selectable to make
3391         the checks more readable ...
3392         
3393         * gtk/gtkmenushell.c (gtk_menu_shell_button_press),
3394         (gtk_menu_shell_button_release): causes the menu to dropdown if the
3395         caption is clicked again (#64977)
3396
3397 2001-11-29  Havoc Pennington  <hp@redhat.com>
3398
3399         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
3400         assertion here that we were at the end iterator was not correct;
3401         change code to move us to the end iterator. bug #65731
3402
3403 Wed Nov 28 20:05:44 2001  Owen Taylor  <otaylor@redhat.com>
3404
3405         * gtk/gtkaccellabel.c (gtk_accel_label_refetch): Remove 
3406         improper use of g_locale_to_utf8() to convert from
3407         latin-1, and do it the easy way by building the string
3408         correctly in the first place.
3409
3410 Wed Nov 28 19:34:15 2001  Owen Taylor  <otaylor@redhat.com>
3411
3412         * gdk/x11/gdkproperty-x11.c (gdk_property_change, gdk_property_get): 
3413         Convert atoms to and from atoms for properties of type XA_ATOM.
3414         (#65555, patch from Hidetoshi Tajima)
3415
3416 Wed Nov 28 18:37:04 2001  Owen Taylor  <otaylor@redhat.com>
3417
3418         * gtk/gtksocket.[ch] (gtk_socket_add_id): Rename 'id' parameter 
3419         to avoid problems with Objective C.
3420
3421 2001-11-28  Matthias Clasen  <matthiasc@poet.de>
3422         
3423         * gtk/gtkaccelmap.c: Typo fixes. (#65607)
3424
3425         * gtk/gtkfixed.c (gtk_fixed_set_has_window, gtk_fixed_get_has_window):
3426         Fix docs. (#65505)
3427
3428         * gtk/gtkwindow.c (gtk_window_set_mnemnonic_modifier): Document.
3429
3430 Wed Nov 28 18:19:12 2001  Owen Taylor  <otaylor@redhat.com>
3431
3432         * gtk/gtkmenu.c (gtk_menu_set_tearoff_hints): Move
3433         accounting of menu->tearoff_scrollbar width to here
3434         and make sure we have the correct requisition.
3435
3436         * gtk/gtkmenu.c (gtk_menu_position): Fix fixme
3437         by using gtk_window_move().
3438
3439         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Force
3440         the requisition to be updated by calling
3441         gtk_widget_size_request() (#65440)
3442
3443         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_activate): 
3444         queue resize before calling gtk_menu_set_tearoff_state().
3445
3446 Wed Nov 28 22:20:44 2001  Kristian Rietveld  <kristian@planet.nl>
3447
3448         * demos/gtk-demo/editable_cells.c: fix typo
3449
3450         * demos/gtk-demo/list_store.c (add_columns): remove call to
3451         gtk_tree_view_column_set_clickable which didn't make sense
3452
3453 2001-11-28  Havoc Pennington  <hp@redhat.com>
3454
3455         * gtk/gtktextview.c (gtk_text_view_paint): put the warning
3456         explaining the validation error in front of the G_BREAKPOINT
3457
3458         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): call
3459         process updates with include_children = FALSE instead of TRUE, so
3460         we redraw the range only, not the whole darn window.  Making
3461         GtkRange a NO_WINDOW widget had weirdly caused the text widget
3462         Trace/breakpoint trap bug to become much easier to trigger.
3463
3464 Wed Nov 28 14:12:03 2001  Owen Taylor  <otaylor@redhat.com>
3465
3466         * gdk/Makefile.am (gdk_public_h_sources): Remove reference
3467         to gdkcursors.h.
3468
3469 2001-11-28  Matthias Clasen  <matthiasc@poet.de>
3470
3471         * gtk/gtkwindow.c (gtk_window_move): Add markup to docs.
3472
3473         * gdk/gdkcursor.h: Directly include the contents
3474         of gdkcursors.h in the GdkCursorType enum.
3475
3476         * gdk/gdkcursors.h: Deleted.
3477
3478         * gdk/gdkkeysyms.h: Remove XFree86-specific keysyms, add 
3479         header boilerplate.
3480
3481         * gdk/Makefile.am: Remove the X-derived-headers rule.
3482
3483 Tue Nov 27 20:17:55 2001  Owen Taylor  <otaylor@redhat.com>
3484
3485         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_activate):
3486         Notify on the ::active property _here_, not in
3487         gtk_check_menu_item_set_active.
3488
3489 Mon Nov 26 19:11:18 2001  Jonathan Blandford  <jrb@redhat.com>
3490
3491         * gtk/gtkcellrendererpixbuf.c
3492         (gtk_cell_renderer_pixbuf_class_init): add 2 properties
3493         (PIXBUF_EXPANDER_OPEN and PIXBUF_EXPANDER_CLOSED)
3494
3495 Sun Nov 25 21:19:02 2001  Owen Taylor  <otaylor@redhat.com>
3496
3497         * gdk/x11/gdkgeometry-x11.c: Add long, but horribly sketchy
3498         comment about what is going on in this file.
3499
3500         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
3501         x/y problem.
3502
3503 Sun Nov 25 18:59:19 2001  Owen Taylor  <otaylor@redhat.com>
3504
3505         * gtk/gtkoptionmenu.c (gtk_option_menu_calc_size): 
3506         Calculate size based on the _child_ of the menu item,
3507         not the menuitem. (#65005, Damon Chaplin)
3508
3509         * gtk/gtklistitem.c (gtk_list_item_new_with_label): Add
3510         some extra vertical padding to the label widget ... restores
3511         GTK+-1.2 spacing. (#65085, Damon Chaplin.)
3512
3513 2001-11-26  Tor Lillqvist  <tml@iki.fi>
3514
3515         * demos/pixbuf-demo.c
3516         * demos/gtk-demo/pixbufs.c: M_PI -> G_PI.
3517
3518         * demos/gtk-demo/main.c (read_line): No flockfile() or
3519         getc_unlocked() on Win32.
3520
3521 2001-11-25  Tor Lillqvist  <tml@iki.fi>
3522
3523         * configure.in
3524         * acconfig.h: As we now use GDir, no need to check for dirent.h.
3525
3526 Sun Nov 25 23:18:39 2001  Kristian Rietveld  <kristian@planet.nl>
3527
3528         * gtk/gtktexttag.c (gtk_text_tag_set_property): free font_desc
3529         when finished (#65266)
3530
3531 Sun Nov 25 23:16:29 2001  Kristian Rietveld  <kristian@planet.nl>
3532
3533         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): free
3534         data after we set the property. (#65264)
3535
3536 Sun Nov 25 23:14:06 2001  Kristian Rietveld  <kristian@planet.nl>
3537
3538         * gtk/gtkbutton.c: add destroy method so label_text gets freed
3539         if it has been allocated (#65268)
3540
3541 Sat Nov 24 13:39:51 2001  Manish Singh  <yosh@gimp.org>
3542
3543         * gdk/linux-fb/gdkdrawable-fb2.c
3544         * gdk/linux-fb/gdkpango-fb.c: update to latest Pango API
3545
3546         * gdk/linux-fb/gdkwindow-fb.c: implement gdk_window_show_unraised
3547
3548         * gdk/linux-fb/gdkfont-fb.c (gdk_font_load): plug memleak on
3549         set_family
3550         
3551         * gdk/linux-fb/gdkfbswitch.c: minor cleanups
3552
3553 Sat Nov 24 22:05:27 2001  Kristian Rietveld  <kristian@planet.nl>
3554
3555         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): don't
3556         deactivate menu when menu_item isn't sensitive (#61389)
3557
3558 Sat Nov 24 15:35:26 2001  Kristian Rietveld  <kristian@planet.nl>
3559
3560         * gtk/gtktreemodel.c (gtk_tree_model_foreach): free path before
3561         we return (in case of a failure here)
3562
3563 Fri Nov 23 19:22:50 2001  Owen Taylor  <otaylor@redhat.com>
3564
3565         * gtk/gtknotebook.c: Handle events in windows other
3566         than widget->event_window properly. (#65079, reported
3567         by Damon Chaplin)
3568
3569         * gdk/gdkevents.c (gdk_event_get_coords): Fix x/y bug.
3570
3571 Fri Nov 23 18:57:46 2001  Owen Taylor  <otaylor@redhat.com>
3572
3573         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): Align
3574         the image at the top. (#65020, request from Seth Nickell)
3575
3576 Fri Nov 23 18:49:53 2001  Owen Taylor  <otaylor@redhat.com>
3577
3578         * gtk/{gtkclist,gtkctree.c} (draw_row): Remove some strange
3579         arithmetic that was resulting in rows being drawn too low.
3580         (#65001, reported by Damon Chaplin)
3581
3582 Fri Nov 23 18:36:42 2001  Owen Taylor  <otaylor@redhat.com>
3583
3584         * gtk/gtkrange.c (gtk_range_button_press): Offset 
3585         invalidated range correctly.
3586
3587         * gtk/gtkclist.c (hadjustment_value_changed): Fix scrolling 
3588         of title window. (#65001, reported by Damon Chaplin)
3589
3590         * gtk/gtkcombo.c (gtk_combo_button_event_after): Replace
3591         horrible hack with use of ::event_after.
3592
3593 Thu Nov 22 15:01:03 2001  Owen Taylor  <otaylor@redhat.com>
3594
3595         * Version 1.3.11
3596
3597         * configure.in (ATK_REQUIRED_VERSION): Require
3598         GLib-1.3.11, Pango-0.22, ATK-0.7.
3599
3600         * tests/prop-editor.c (property_widget): Restore
3601         to working as well as it did before.
3602
3603         * gtk/gtklistitem.h: Mark deprecated since it is
3604         an integral part of GtkList.
3605
3606         * demos/gtk-demo/demo-common.h: New header file,
3607         for a common functions not important to the meat
3608         of the demos.
3609         
3610         * demos/gtk-demo/main.c (demo_ifind_file): Add a utility
3611         function to search for a file used by the demo.
3612
3613         * demos/*.c: Use demo_find_file.
3614
3615 2001-11-23  Matthias Clasen  <matthiasc@poet.de>
3616
3617         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag),
3618         gtk/gtkruler.c (gtk_ruler_get_metric): Actually commit typo 
3619         fixes already mentioned in ChangeLog entry on 2001-11-14.
3620
3621         * docs/reference/gtk/tmpl/drawing.sgml: Minor markup fixes.
3622
3623 2001-11-23  Hans Breuer  <hans@breuer.org>
3624
3625         * gdk/win32/gdkfont-win32.c (gdk_font_from_description) : 
3626         reflect Pango API change
3627
3628         * gtk/gtk.def : updated externals
3629
3630         * gtk/gtkfixed.c (gtk_fixed_get_has_window) : use 
3631         g_return_val_if_fail() to avoid 'function must return a value'
3632
3633         * gtk/gtkrc.c : added spaces to fix small coding style issues
3634         * gtk/gtkwidget.c : ... and linebreaks. Also a static for
3635         'static correctness'
3636
3637         * gtk/makefile.msc.in : temporary(?) disable gtk<plug|socket>
3638         because they only can be build on win32 after applying my patch
3639
3640 Wed Nov 21 22:55:37 2001  Tim Janik  <timj@gtk.org>
3641
3642         * gtk/gtkbutton.c (gtk_button_map): raise event window afte
3643         children, in order for the input pnly window to stay *above*
3644         children.
3645
3646 Wed Nov 21 22:44:27 2001  Tim Janik  <timj@gtk.org>
3647
3648         * tests/testtreeview.c: make hackery worse ;) by checking fundamental
3649         type walks againts G_TYPE_FUNDAMENTAL_MAX.
3650         
3651         * tests/prop-editor.c: disable type hackery.
3652
3653 Wed Nov 21 17:41:39 2001  Owen Taylor  <otaylor@redhat.com>
3654
3655         * gdk/gdkimage.c (gdk_image_get): Fix problem with
3656         lost parameter.
3657
3658 Wed Nov 21 17:01:25 2001  Owen Taylor  <otaylor@redhat.com>
3659
3660         * gtk/gtkcellrenderer.h gtk/gtktreemodel.h 
3661         gtk/gtktreeprivate.h gtk/gtktreesortable.h: Remove
3662         trailing commas in enum declarations.
3663
3664 Wed Nov 21 15:21:26 2001  Owen Taylor  <otaylor@redhat.com>
3665
3666         * configure.in (GTK_MICRO_VERSION): Version 1.3.11, 
3667         interface, binary age 0.
3668
3669         * NEWS: Updates
3670
3671         * gtk/gtktreemodel.c gtk/gtkrc.c gtk/gtkentry.c: SGML
3672         fixes in docs.
3673
3674         * gtk/gtkmain.h: Remove unused and misnamespaced
3675         get_gtk_win32_directory() prototype.
3676
3677         * gdk/gdkimage.c (gdk_image_get): Fix parameter names
3678         to match header.
3679
3680         * gdk/gdkwindow.h: Fix parameters to gdk_window_shape_combine_mask(),
3681         gdk_window_set_transient_for(), gdk_window_set_geometry_hints(),
3682         to match docs.
3683
3684         * gdk/gdkevents.c (gdk_event_get_coords)
3685           gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_active)
3686           gtk/gtkdnd.c (gtk_drag_set_icon_stock):
3687         Fix parameter names in docs.
3688         
3689         * docs/faq/Makefile.am (FAQ_FILES): Add missing files.
3690         (#64961, Akira Tagoh)
3691
3692 Wed Nov 21 11:41:29 2001  Owen Taylor  <otaylor@redhat.com>
3693
3694         * tests/testgtk.c (create_tooltips): Ref-sink the tooltips object.
3695
3696         * gtk/gtktoolbar.c (gtk_toolbar_init): Ref-sink the tooltips object.
3697
3698         * gtk/gtkfilesel.c (open_new_dir): Fix some constness warnings.
3699
3700         * gtk/gtkaccelgroup.c: Rename gtk_accel_groups_from_acceleratable()
3701         back to gtk_accel_groups_from_object(), change @acceleratable
3702         parameter to gtk_accel_groups_activate() accordingly.
3703
3704         * gtk/gtkaccelmap.c (gtk_accel_map_lookup_entry): Remove
3705         left-over comment about quark return.
3706
3707         * gtk/gtkaccelmap.h: Fix spelling of gtk_accel_map_foreach_unfiltered().
3708
3709         * gtk/gtk-boxed.defs (GtkIconSource): added as a boxed type.
3710         (Patch from Matt Wilson)
3711
3712         * gtk/gtkobject.c (gtk_object_finalize): Warn if a floating
3713         object is finalized.
3714
3715 Tue Nov 20 21:25:08 2001  Tim Janik  <timj@gtk.org>
3716
3717         * applied patch from owen to get rid of accel map notifiers.
3718         changed things to fix reentrancy and API as discussed on gtk-devel.
3719
3720         * gtk/gtkaccelgroup.[hc]:
3721         (gtk_accel_group_finalize): unregister this accel group from all
3722         accel map paths.
3723         (accel_closure_invalidate): handle invalidation of closures by
3724         disconnecting their accelerators.
3725         (quick_accel_add): move closure connection and changed notification
3726         into this function to reduce code duplication. don't emit change
3727         notification on closurers without accelerators.
3728         (quick_accel_remove): rewrite, do the exact opposite of quick_accel_add
3729         for a GtkAccelGroupEntry.
3730         (gtk_accel_group_connect): get rid of the accel_path_quark argument.
3731         (gtk_accel_group_connect_by_path): new function to add accelerators
3732         with an accel path.
3733         (gtk_accel_group_disconnect_closure): new function, disconnect a
3734         closure from of an accel group.
3735         (gtk_accel_group_disconnect): loop over all closure for a accel_ley,
3736         accel_mods pair and remove them.
3737         (_gtk_accel_group_reconnect): new function that basically does
3738         gtk_accel_group_disconnect_closure() and
3739         gtk_accel_group_connect_by_path() once an accel path changed.
3740         (gtk_accel_groups_disconnect_closure): remove this, there's
3741         gtk_accel_group_disconnect_closure().
3742         
3743         * gtk/gtkaccelmap.[hc]: keep list of accel groups per entry now,
3744         nuke notifiers.
3745         (_gtk_accel_path_is_valid): make this non-static for
3746         gtkwidget.c and gtkaccelgroup.c assertions.
3747         (gtk_accel_map_add_notifer): removed this function.
3748         (gtk_accel_map_remove_notifer): same.
3749         (_gtk_accel_map_add_group):
3750         (_gtk_accel_map_remove_group): (un-)register accel groups, with
3751         accel paths for correct propagation.
3752         (gtk_accel_map_add_entry): return void.
3753         (gtk_accel_map_lookup): return gboolean instead of GQuark.
3754         
3755         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): always
3756         set accel_path on widgets.
3757         
3758         * gtk/gtkwidget.[hc]:
3759         (accel_path_changed): got rid of this, changes are handled by
3760         accel maps internally now.
3761         (_gtk_widget_set_accel_path): get things to work without notifiers.
3762         (gtk_widget_list_accel_closures): list accel closures of a widget.
3763         
3764         * gtk/gtkwindow.[hc]: rename ::accels_changed, to ::keys_changed.
3765
3766 2001-11-20  Matthias Clasen  <matthiasc@poet.de>
3767
3768         * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix.
3769
3770 Tue Nov 20 23:01:01 2001  Kristian Rietveld  <kristian@planet.nl>
3771
3772         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path):
3773         replace gboolean free_last in the function parameters with
3774         gint depth. Changes to reflect new situation.
3775
3776         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path_helper):
3777         replace gboolean free_last, with gint depth, add gint current_depth.
3778         Changes to reflect new situation.
3779
3780         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): changes
3781         to reflect new situation
3782
3783         * gtk/gtktreemodel.c (gtk_tree_row_reference_free): ditto
3784
3785 Tue Nov 20 12:37:10 2001  Owen Taylor  <otaylor@redhat.com>
3786
3787         * gtk/gtknotebook.c (gtk_notebook_paint): Fix problem
3788         where notebook gap was double shifted by allocation.x/y
3789
3790         * gtk/gtknotebook.c (gtk_notebook_unmap): Chain up
3791         to unmap children.
3792
3793 Tue Nov 20 14:49:59 2001  Tim Janik  <timj@gtk.org>
3794
3795         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): fix
3796         allocation to be relative to paned->allocation, now
3797         that this is a NO_WINDOW widget.
3798         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): same here.
3799
3800         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): ::closure
3801         needs to be a boxed property.
3802
3803 Mon Nov 19 17:34:40 2001  Owen Taylor  <otaylor@redhat.com>
3804
3805         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator):
3806         Use the widget's state when drawing the indicator, as
3807         in GtkCheckButton. This gives us color changes for
3808         un-prelighted checkbuttons. (#63308, Matt Wilson)
3809
3810 Mon Nov 19 17:11:23 2001  Owen Taylor  <otaylor@redhat.com>
3811
3812         (Fixes related to #64428, Michael Meeks)
3813
3814         * gtk/gtkplug.c (gtk_plug_set_is_child): Unmap the
3815         widget, so it gets mapped again properly when we
3816         add to a parent.
3817
3818         * gtk/gtkplug.c (_gtk_plug_add_to_socket): Set
3819         plug->socket_window. 
3820
3821         * gtk/gtkplug.c (_gtk_plug_remove_from_socket): Set
3822         socket_window to NULL, not FALSE.
3823
3824         * gtk/gtkplug.c (_gtk_plug_add_to_socket): Set
3825         socket->same_app to TRUE. (#64612)
3826
3827 Mon Nov 19 15:50:41 2001  Owen Taylor  <otaylor@redhat.com>
3828
3829         * gtk/gtkfixed.[ch] docs/Changes-2.0.txt: Add 
3830         gtk_fixed_set/get_has_window() to remove criticism
3831         about GTK_WIDGET_SET_FLAGS() hacks.
3832
3833 2001-11-19  Michael Natterer  <mitch@gimp.org>
3834
3835         * gtk/gtknotebook.c: show notebook->event_window with
3836         gdk_window_show_unraised(), so it doesn't catch the events which
3837         should go to the tab widgets first.
3838
3839 Mon Nov 19 15:30:51 2001  Jonathan Blandford  <jrb@redhat.com>
3840
3841         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add a
3842         "resizable" property, to get rid of the
3843         GTK_TREE_VIEW_COLUMN_RESIZABLE sizing flag.
3844         (gtk_tree_view_column_set_resizable): New function to set resizable.
3845         (gtk_tree_view_column_set_resizable): getter.
3846
3847         * tests/testtreecolumns.c (add_clicked): modify for above change.
3848
3849         * Makefile.am (install-data-hook): remove old .pc files before
3850         installing the new one.  We used to symlink this, and it will
3851         break old installs.
3852
3853 2001-11-19  Havoc Pennington  <hp@pobox.com>
3854
3855         * tests/testtext.c (fill_example_buffer): put in a test for
3856         negative indentation values
3857
3858 Mon Nov 19 14:08:18 2001  Owen Taylor  <otaylor@redhat.com>
3859
3860         * gtk/gtklabel.c (gtk_label_init): Change default for
3861         justify to GTK_JUSTIFY_LEFT. Assuming that multiline
3862         labels are most often wrapped labels, this gives better
3863         compatibility with GTK+-1.2, where justification was
3864         ignored for wrapped labesl and is a more sensible
3865         default in any case. (#64489)
3866
3867         * gtk/gtklabel.c (gtk_label_class_init): Fix default
3868         for wrap property to FALSE.
3869
3870 2001-11-19  jacob berkman  <jacob@ximian.com>
3871
3872         * gtk/Makefile.am (gtk_extra_sources): add gtkmarshal.list
3873
3874 Mon Nov 19 13:56:45 2001  Owen Taylor  <otaylor@redhat.com>
3875
3876         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): Use 
3877         RevertToParent, not RevertToNone. (#64613, 
3878         Matthias Clasen)
3879
3880 Mon Nov 19 12:28:02 2001  Owen Taylor  <otaylor@redhat.com>
3881
3882         * gtk/gtkframe.c (gtk_frame_class_init): label_xalign
3883         and label_yalign need to be float properties to
3884         correspond to GTK+-1.2, to gtk_frame_set_label_align,
3885         and to the types of the xalign and yalign properties of GtkMisc.
3886         (#63484, Vitaly Tishkov)
3887
3888 Mon Nov 19 12:24:30 2001  Owen Taylor  <otaylor@redhat.com>
3889
3890         * gtk/gtksocket.h (struct _GtkSocketClass): Fix return
3891         of plug_added vfunc. (#64408, Jeff Franks)
3892
3893 Mon Nov 19 12:07:20 2001  Owen Taylor  <otaylor@redhat.com>
3894
3895         * configure.in (deps): Undef HAVE_STDLIB_H before
3896         checking for jpeg, because jconfig.h has this
3897         in it too (%#$@!). Fix from Matthias Clasen, #64500.
3898
3899 Mon Nov 19 11:30:03 2001  Owen Taylor  <otaylor@redhat.com>
3900
3901         * gdk/x11/gdkproperty-x11.c (get_atom_name): Fix a 
3902         memory leak when retrieving atom names. (Michael Meeks,
3903         #64508)
3904
3905 2001-11-18  Alex Larsson  <alexl@redhat.com>
3906
3907         * gdk/x11/gdkfont-x11.c (gdk_font_from_description):
3908         Update to new Pango API.
3909         
3910 Sun Nov 18 19:47:29 2001  Owen Taylor  <otaylor@redhat.com>
3911
3912         * gtk/gtkobject.h docs/Changes-2.0.txt: Rename the
3913         GTK_DESTROYED flag to GTK_IN_DESTRUCTION, remove the
3914         GTK_OBJECT_DESTROYED() check macro.
3915
3916         * gtk/gtkbindings.c (gtk_bindings_activate): Remove
3917         instances of GTK_OBJECT_DESTROYED() that weren't
3918         needed any more.
3919
3920         * gtk/gtkdialog.c: Exchange use of GTK_OBJECT_DESTROYED
3921         for a connection to ::destroy.
3922
3923 Sun Nov 18 18:18:11 2001  Owen Taylor  <otaylor@redhat.com>
3924
3925         * gtk/gtkfixed.c: Make a NO_WINDOW widget, as it should
3926         have been since the beginning, but as special hack,
3927         allow clearing the NO_WINDOW flag to get a window widget.
3928
3929 Sun Nov 18 22:01:36  Kristian Rietveld  <kristian@planet.nl>
3930
3931         * gtk/gtktreestore.c: return TRUE when value changed, so
3932         row_changed is being emitted
3933
3934 2001-11-18  Hans Breuer  <hans@breuer.org>
3935
3936         * gtk/gdkaccelmap.c : make it compile with msvc: !HAVE_UNISTD_H;
3937         no label without op, even if it's a no-op.
3938
3939         * gtk/gtk.def :
3940         * gtk/makefile.msc.in : reflect marshaler split, some clean-up  
3941
3942         * config.h.win32.in : remove definition of HAVE_DIRENT_H
3943         * gtk/gtkfilesel.c : due to GDir (new in glib) DIR isn't
3944         required anymore, replace it.
3945         * gtk/queryimmodules.c : DIR -> GDir replacement, also
3946         getcwd() -> g_get_current_dir()
3947
3948         * gdk/win32/gdkgeometry-win32.c : adapt to refactored gdkgeometry-x11.c
3949         Even 'noisy laugh' scolling appears to work, though I still can't
3950         claim to have fully understood what it is supposed to do ...
3951
3952 Sat Nov 17 21:07:46 2001  Owen Taylor  <otaylor@redhat.com>
3953
3954         * gtk/gtkenums.h: Include glib-object.h instead of
3955         gobject/gsignal.h
3956
3957         * gdk/{gdkinternals.h,gdkwindow.c,gdkwindow.[ch],
3958           x11,{fb,win32,x11/gdkwindow-*.c}: Add a dummy GdkScreen
3959         argument to the window_at_pointer() field of
3960         GdkPointerHooks. (Patch from Erwann Chenede)
3961
3962         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Up
3963         to 6 pointers.
3964
3965 2001-11-17  Matt Wilson  <msw@redhat.com>
3966
3967         * gtk/gtkenums.h: must include glib-object.h only
3968
3969 Sat Nov 17 19:26:20 2001  Owen Taylor  <otaylor@redhat.com>
3970
3971         * gtk/gtkwindow.c (gtk_window_key_press_event): Reprioritize
3972         key bindings in order of visibility - mnemonics, then 
3973         accelerators, then send key to the focus widget, then
3974         bindings on the GtkWindow.
3975
3976         * gtk/gtklayout.h docs/Changes-2.0.txt tests/testgtk.c: 
3977         Removed the xoffset, yoffset fields of GtkLayout which were
3978         identically zero for compat with 1.2, but were no longer 
3979         compatible with all uses of these fields in 1.2.
3980
3981         * gtk/gtkwindow.c (gtk_window_set_default): Remove 
3982         unused variable.
3983
3984 Sat Nov 17 19:08:13 2001  Owen Taylor  <otaylor@redhat.com>
3985
3986         * tests/testtreeview.c (gtk_tree_model_types_get_type): 
3987         We no longer need to create the signals here ... they
3988         come from the interface.
3989
3990         * gtk/maketypes.awk: Use GType, not GtkType in output.
3991
3992         * gtk/gtktypeutils.h: Mark virtually all of this
3993         file deprecated.
3994
3995         * gtk/gtkcontainer.h: Deprecate gtk_container_foreach_full;
3996         the only use of this function is the GtkArg using
3997         GtkCallbackMarshal, since destroy notification is
3998         silly here.
3999
4000 Sat Nov 17 18:26:45 2001  Owen Taylor  <otaylor@redhat.com>
4001
4002         * gtk/Makefile.am gtk/gtkmarshal.list gtk/gtkmarshalers.list
4003         gtk/*.c gtk/gtksignal.h: Make gtkmarshal.list/gtkmarshal.h
4004         only for compatibility with GTK+-1.2; and deprecate it; 
4005         put all marshalers we actually use into gtkmarshalers.list 
4006         and use the _gtk_marshal_ prefix for these marshalers.
4007
4008 2001-11-17  Murray Cumming  <murrayc@usa.net>
4009
4010         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
4011         The first parameters of the signals are now registered as
4012         GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
4013         
4014 2001-11-17  Tor Lillqvist  <tml@iki.fi>
4015
4016         * gtk-zip.sh.in: Build separate runtime and developer
4017         packages.
4018
4019         * gtk/gtk.def: Reflect recent accelerator-related changes.
4020
4021 Fri Nov 16 19:44:35 2001  Owen Taylor  <otaylor@redhat.com>
4022
4023         * gtk/gtkwindow.c (gtk_window_set_default): Move 
4024         notification of "has_default" to here, so it
4025         is safe to call gtk_window_set_default() instead
4026         of gtk_widget_grab_default().
4027
4028         * gtk/gtkwindow.c (gtk_window_set_focus): Make it call
4029         gtk_widget_grab_focus(), which then calls 
4030         _gtk_widget_internal_set_focus(). This makes 
4031         gtk_window_set_focus() a safe way of both setting
4032         and unsetting the focus widget.
4033
4034         * gtk/gtkwidget.c (gtk_widget_propagate_state): Use
4035         gtk_widget_get_toplevel(), instead of gtk_widget_ancestor
4036         to find the toplevel.
4037
4038         * gtk/gtkwindow.h: Move gtk_window_set_focus/default
4039         from the "internal functions" section.
4040
4041 2001-11-16  jacob berkman  <jacob@ximian.com>
4042
4043         * tests/testgtk.c (create_radio_buttons): add some no-indicator
4044         radio buttons
4045
4046         * gtk/gtkradiobutton.c (gtk_radio_button_init): since we are
4047         initially active, also initially be depressed
4048         (gtk_radio_button_clicked): also update our depressed state
4049
4050 Thu Nov 15 12:54:36 2001  Owen Taylor  <otaylor@redhat.com>
4051
4052         * gtk/gtkwindow.c (gtk_window_key_press_event): Propagate
4053         key press events not just to focus/window but also to
4054         intermediate widgets.
4055
4056         * gtk/gtknotebook.c: Handle Ctrl-PageUp/Ctrl-PageDown
4057         to switch pages. (Needs some work on handling focus
4058         when switching pages.)
4059
4060 Fri Nov 16 14:06:31 2001  Owen Taylor  <otaylor@redhat.com>
4061
4062         * gtk/gtknotebook.c: Fix child allocations to be relative to 
4063         widget position and some drawing bugs.
4064
4065         * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
4066         with reading uninitialized variable.
4067
4068 Fri Nov 16 00:16:40 2001  Owen Taylor  <otaylor@redhat.com>
4069
4070         * gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
4071         gtkradiomenuitem.c,gtktearoffmenuitem.c}: Make Menu items
4072         NO_WINDOW widgets.
4073
4074         * gtk/gtk{h,v,}paned.[ch]: Make NO_WINDOW widgets, some
4075         cleanup.
4076
4077         * gtk/gtkstyle.c (gtk_default_draw_handle): Don't assume
4078         we are drawing in a window when drawing the paned handle.
4079
4080 2001-11-16  Sven Neumann  <sven@gimp.org>
4081
4082         * demos/gtk-demo/appwindow.c
4083         * demos/gtk-demo/menus.c: reduce compiler warnings
4084
4085 Thu Nov 15 19:47:09 2001  Owen Taylor  <otaylor@redhat.com>
4086
4087         * demos/gtk-demo/main.c (button_press_event_cb): Remove 
4088         unused callback to make things compile with 
4089         gtk_tree_view_path_at_pos_change().
4090
4091 Thu Nov 15 18:44:33 2001  Jonathan Blandford  <jrb@redhat.com>
4092
4093         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): maybe fix #64160
4094
4095 2001-11-15  Matthias Clasen  <matthiasc@poet.de>
4096
4097         * gtk/gtkwindow.c (gtk_window_new): Move '.' out of quote. (#64407)
4098  
4099 Thu Nov 15 16:24:55 2001  Jonathan Blandford  <jrb@redhat.com>
4100
4101         * gtk/gtktreeview.c (gtk_tree_view_get_bin_window): New function
4102         to get a GdkWindow to compare event->window to.
4103
4104         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_left_right): emit
4105         the signal for lateral motion too, #64361
4106
4107         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): remove window
4108         arg as it is useless, #64137
4109
4110 Thu Nov 15 16:07:42 2001  Owen Taylor  <otaylor@redhat.com>
4111
4112         * gtk/gtknotebook.c: Some small drawing fixes for scroll arrows.
4113
4114 Thu Nov 15 14:19:34 2001  Owen Taylor  <otaylor@redhat.com>
4115  
4116         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Cal
4117         gdk_window_invalidate_maybe_recurse() for recursion.
4118         (Soeren Sandmann)
4119
4120         * gtk/gtkviewport.c: Make !redraw_on_allocate. (Soeren Sandmann)
4121  
4122         * gtk/gtkcontainer.c (gtk_container_expose): Call
4123         gtk_container_forall() not _foreach() to propagate,
4124         since we need to propagate exposes to internal children
4125         as well.
4126
4127         * gtk/gtkwidget.c (gtk_widget_set_events, gtk_widget_add_events): 
4128         Remove the restriction of only being able to call these
4129         on window widgets, since we have lots of NO_WINDOW widgets
4130         with windows now; for add events, recurse over the children
4131         of widget->window to find one owned by the widget.
4132
4133         * gtk/gtkbutton.[ch]: Make a NO_WINDOW widget, using an input-only
4134         window to catch events.
4135
4136         * gtk/gtktogglebutton.[ch]: Remove the code for switching
4137         between NO_WINDOW and WINDOW widgets based on the mode.
4138
4139         * gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c gtk/gtkclist.c
4140         gtk/gtktreeview.c: Adopt to NO_WINDOW change for GtkButton.
4141
4142         * gtk/gtkrange.[ch]: Make into a NO_WINDOW widget.
4143
4144         * gtk/gtkhscale.c, gtk/gtkvscale.c: Adopt to NO_WINDOW
4145         change for range.
4146
4147         * gtk/gtknotebook.[ch]: Make into a NO_WINDOW widget.
4148  
4149         * docs/Changes-2.0.txt: Add a note about the NO_WINDOW changes.
4150
4151 Thu Nov 15 11:59:35 2001  Owen Taylor  <otaylor@redhat.com>
4152
4153         * gtk/gtkmessagedialog.c: Patch from Murray Cumming to add
4154         "message_type" and "buttons" CONSTRUCT properties. (#64069)
4155
4156         * tests/testsocket.c: Expand tests to add a "local passive
4157         child" (Test case for #64428)
4158
4159 2001-11-14  jacob berkman  <jacob@ximian.com>
4160
4161         * gtk/gtkgamma.c (button_clicked_callback): create the label with
4162         a mnemonic
4163
4164 2001-11-15  Sven Neumann  <sven@gimp.org>
4165
4166         * tests/testgtk.c: make it compile without warnings.
4167
4168 2001-11-14  Alex Larsson  <alexl@redhat.com>
4169
4170         * gtk/gtklabel.c:
4171         Don't recalculate the layout on each gkt_label_ensure_layout () for
4172         wrapped labels.
4173
4174 Wed Nov 14 17:40:23 2001  Jonathan Blandford  <jrb@redhat.com>
4175
4176         * gtk/gtktreeview.c (gtk_tree_view_get_expander_column): Return
4177         the currently selected column when we get the column, #64380
4178
4179         * gtk/gtkentry.c (gtk_cell_editable_key_press_event): Handle Esc
4180         to cancel CellRendererText editting, #63613
4181
4182         * gtk/gtkcellrenderertext.c: ditto
4183
4184         * gtk/gtkcellrenderertext.h: formatting changes
4185
4186 2001-11-14  Matthias Clasen  <matthiasc@poet.de>
4187
4188         * gtk/gtkbutton.c (gtk_button_get_label): Rearrange docs (#64566)
4189
4190         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): Typo fix (#64474)
4191
4192         * gtk/gtkruler.c (gtk_ruler_get_metric): Typo fix (#64470)
4193
4194         * gtk/gtknotebook.c (gtk_notebook_prepend_page): Typo fix (#64467)
4195
4196         * gtk/gtklabel.c: Documentation fixes (#64452)
4197
4198 2001-11-14  Daniel Egger  <degger@fhm.edu>
4199
4200         * gdk-pixbuf/io-xpm.c: 
4201         (xpm_skip_whitespaces): Remove unused static function.
4202         (xpm_skip_string): Dito.        
4203         (xpm_extract_color): Declare const variable const to avoid warnings. 
4204
4205         * gtk/gtkfixed.c: (gtk_fixed_map): Remove unused static function.
4206         
4207         * gtk/gtkplug.c: #if 0'ed prototype for #if 0'ed code.
4208         
4209         * gtk/gtksocket.c: Change type of mask to g_message to %ld for 
4210         a long.
4211
4212 Wed Nov 14 15:14:48 2001  Owen Taylor  <otaylor@redhat.com>
4213
4214         * gtk/gtkcontainer.c (gtk_container_idle_sizer): Back
4215         out accidental commit of debugging timing code.
4216
4217 2001-11-14  Havoc Pennington  <hp@redhat.com>
4218
4219         * gtk/gtktextview.c (gtk_text_view_move_cursor): fix Control-E so
4220         it doesn't move to a new line each time you press it
4221
4222         * gtk/gtktextiter.c (gtk_text_iter_forward_to_line_end): fix
4223         return value, #62987
4224
4225 2001-11-14  Havoc Pennington  <hp@redhat.com>
4226
4227         * tests/testtextbuffer.c (main): bulk of the tests were commented
4228         out, oops.
4229
4230         * gtk/gtktextiter.c (find_paragraph_delimiter_for_line): make this 
4231         function work, should resolve #63426
4232         (gtk_text_iter_ends_line): return TRUE for the end iterator
4233
4234         * gtk/gtktextiter.h: put padding back in GtkTextIter, I thought of
4235         a couple things that might get cached in here.
4236
4237 Tue Nov 13 21:00:59 2001  Jonathan Blandford  <jrb@redhat.com>
4238
4239         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_class_init): new
4240         "model" construct property for language bindings.
4241
4242         * gtk/gtktreestore.c (gtk_tree_store_set_column_types): New
4243         function to let you set the column types of a GtkTreeStore for
4244         language bindings.
4245
4246         * gtk/gtkliststore.c (gtk_list_store_set_column_types): ditto.
4247
4248 2001-11-13  Havoc Pennington  <hp@redhat.com>
4249
4250         * gtk/gtktextview.c (gtk_text_view_add_child_in_window): docs
4251         including reference to bugzilla bug about how we should have 
4252         a better way of positioning children
4253
4254         * gtk/gtktextview.h (struct _GtkTextViewClass): add some padding
4255
4256         * gtk/gtktextview.c (gtk_text_view_size_allocate): assign zero
4257         size to side rects if they don't exist, #63438
4258
4259 2001-11-13  Havoc Pennington  <hp@redhat.com>
4260
4261         * gtk/gtktextview.c (gtk_text_view_key_press_event): fix to
4262         properly replace selection with Return or Tab
4263
4264         * gtk/gtktextdisplay.c (gtk_text_layout_draw): fix broken code
4265         that didn't locate the end of the line correctly, should fix #63800
4266
4267 2001-11-13  Havoc Pennington  <hp@redhat.com>
4268
4269         * gtk/gtktextview.c (gtk_text_view_size_request): add border width
4270         to requisition, request non-anchored children
4271         (gtk_text_view_size_allocate): handle border width, allocate
4272         non-anchored children
4273         (text_view_child_new_window): set the child as object data
4274         (gtk_text_view_move_child): allow children at negative
4275         coordinates, no reason why not
4276         (gtk_text_view_forall): make it copy the list of children before
4277         walking it, to avoid reentrancy issues  
4278         (gtk_text_view_move_child): short-circuit if position is unchanged
4279         (changed_handler): only queue_resize if requisition has changed
4280         (gtk_text_view_init): don't redraw_on_allocate, since we can do 
4281         a better job of invalidation ourselves
4282
4283         * tests/testtext.c: add tests for the fixed-position children
4284
4285 Tue Nov 13 19:51:43 2001  Tim Janik  <timj@gtk.org>
4286
4287         * gtk/gtkwindow.c (handle_accels_changed): protect idle handle
4288         with gdk threads macro.
4289
4290 Mon Nov 12 23:08:37 2001  Tim Janik  <timj@gtk.org>
4291
4292         * gtk/maketypes.awk: fix type utils generation on unix.
4293
4294         * gtk/gtkaccelmap.[hc]: new files, implementing a global accelerator
4295         registry.
4296
4297         * gtk/gtkaccelgroup.[hc]: major API/implementation revamp:
4298         removed GTK_ACCEL_SIGNAL_VISIBLE, gtk_accel_group_get_default,
4299         gtk_accel_group_get_entry, gtk_accel_group_(un)lock_entry,
4300         gtk_accel_group_add/remove, gtk_accel_group_handle_add/remove,
4301         gtk_accel_group_create_add/remove, gtk_accel_group_entries_from_object.
4302         introduced ::accel_changed signal for change notification, and
4303         gtk_accel_group_connect/disconnect to connect closures to accel groups.
4304         made gtk_accel_group_attach/detach and gtk_accel_group_activate private
4305         functions.
4306         deprecated gtk_accel_group_ref/unref.
4307
4308         * gtk/gtkaccellabel.[hc]: changes to make accellabels pay attention
4309         to accel group changed notification and basically operate on closures.
4310         removed gtk_accel_label_get_accel_object and
4311         gtk_accel_label_set_accel_object.
4312         introduced gtk_accel_label_set_accel_closure, and for convenience,
4313         gtk_accel_label_set_accel_widget.
4314
4315         * gtk/gtkitemfactory.[hc]: removed accelerator propagation code
4316         which mostly moved into gtkaccelmap.[hc].
4317         removed gtk_item_factory_parse_rc*, gtk_item_factory_dump_*
4318         and gtk_item_factory_print_func.
4319
4320         * gtk/gtkmain.c: call _gtk_accel_map_init().
4321
4322         * gtk/gtkmenuitem.[hc]: introduced gtk_menu_item_set_accel_path(),
4323         that associates an accelerator path with menu items, through which
4324         persistent accelerator settings on menu items are enabled.
4325
4326         * gtk/gtkmenu.[hc]: added gtk_menu_set_accel_path() so accelerator
4327         paths of menu item can be default constructed to allow installation
4328         of accelerators on menu items that don't come with an accelerator
4329         binding by default.
4330
4331         * gtk/gtksettings.c: fix STRING type rc settings by special casing
4332         them appropriately in the parser.
4333
4334         * gtk/gtksignal.[hc]: allow a class function offset of 0 for
4335         gtk_signal_newv().
4336
4337         * gtk/gtkwidget.[hc]: accelerator API revamp.
4338         removed ::accelerator_add/remove signals, gtk_widget_accelerator_signal,
4339         gtk_widget_accelerators_locked, gtk_widget_remove_accelerators and
4340         gtk_widget_(un)lock_accelerators.
4341         accelerators maintained through gtk_widget_add/remove_accelerator()
4342         are not runtime changable now, the correct sequence to setup a
4343         widget for runtime changable accelerators is now:
4344           gtk_accel_map_add_entry(accel_path, key, mods);
4345           _gtk_widget_set_accel_path(widget, accel_path, accel_group);
4346
4347         * gtk/gtkwindow.[hc]: accelerator changes, proxy and coalesce accel
4348         group changes (as well as mnemonic changes) through the new signal
4349         ::accels_changed.
4350
4351 Sat Nov 10 12:08:56 2001  Tim Janik  <timj@gtk.org>
4352
4353         * gtk/gtksettings.c (_gtk_settings_parse_convert): properly handle
4354         GString->string conversions.
4355
4356 Mon Nov 12 19:33:52 2001  Owen Taylor  <otaylor@redhat.com>
4357
4358         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
4359         if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
4360
4361 2001-11-12  Matthias Clasen  <matthiasc@poet.de>
4362
4363         * gtk/gtktreeview.c: Documentation fixes. (#64377)
4364         
4365         * gtk/gtktreestore.c: Documentation fixes. (#64376)
4366
4367 2001-11-11  Matthias Clasen  <matthiasc@poet.de>
4368
4369         * gtk/gtkiconfactory.c, gtk/gtktextbuffer.c, gtk/gtktreemodel.c,
4370         gtk/gtkwindow.c, gtk/gtknotebook.c, gtk/gtkradiobutton.c, 
4371         gtk/gtktextiter.c, gtk/gtkdialog.c: Mass fixing of trivial doc bugs.  
4372         (#63544, #57007, #64141, #63472, #57108, #60818, #61562)
4373
4374 2001-11-10  Hans Breuer  <hans@breuer.org>
4375
4376         * gdk/win32/gdkevents-win32.c (gdk_event_translate) : make sure 
4377         we know what we are talking about when asked for MINMAXINFO.
4378         Also some cleaning for !HAVE_DIMM_H etc.
4379
4380 2001-11-10  Matthias Clasen  <matthiasc@poet.de>
4381
4382         * gtk/gtktreeviewcolumn.c: Fix docs for 
4383         gtk_tree_view_column_set_sort_order. (#62647)
4384         
4385         * gtk/gtkcontainer.c: Fix docs for 
4386         gtk_container_set_border_width. (#64139)
4387
4388         * gtk/gtkcolorsel.c: Documentation fixes.
4389
4390 2001-11-10  Hans Breuer  <hans@breuer.org>
4391
4392         * gtk/gtkfontsel.c : use g_strcasecmp(), some poor platforms
4393         don't have strcasecmp()
4394
4395         * gtk/gtktextview.c : to fix crashing on e.g. TextView::find need 
4396         to remove the idle funcs in gtk_text_view_destroy (). To reduce 
4397         code duplication wrap it in its own function and use it in 
4398         gtk_text_view_unrealize () and gtk_text_view_destroy_layout ()
4399
4400         * gdk/win32/gdkdrawable-win32.c : implement the finalize
4401         method like the X11 version does, allow to set_colormap NULL
4402         * gdk/win32/gdkwindow-win32.c : adapt GdkWindowImplWin32::
4403         set_colormap, also some adaption to X11 version :
4404         (gdk_window_hide) call _gdk_window_clear_update_area
4405         (gdk_window_reparent) call _gdk_window_init_position
4406
4407         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints) : 
4408         call gdk_window_resize() after all hints are set, because the
4409         window resizing process (WM_GETMINMAXINFO) takes all of them into 
4410         account
4411
4412         * gdk/win32/gdkfont-win32.c : make gdk_font_equal return a gboolean
4413
4414         * gdk/win32/gdkvisual-win32.c : register GdkVisual with 
4415         sizeof (GdkVisualPrivate)
4416
4417         * gdk/gdk.def gtk/gtk.def : upated externals
4418
4419         * gdk/makefile.msc gdk/win32/makefile.msc gdk-pixbuf/makefile.msc
4420           gdk-pixbuf/pixops/makefile.msc gtk/makefile.msc.in tests/makefile.msc :
4421         from now on use make.msc from $(TOP)/glib/build/win32
4422
4423         * gtk/stock-icons/makefile.msc : add stock_missing_image
4424
4425 2001-11-08  Tor Lillqvist  <tml@iki.fi>
4426
4427         * README.win32: Add headers. Add section about ActiveIMM.
4428
4429         * configure.in: Add --with-ie55 flag to specify the location of
4430         the "IE55 libs and headers" package downloadable from Microsoft,
4431         which contains, among other things, the Active IMM header dimm.h
4432         and UUID library uuid.lib. Use test -f instead of AC_CHECK_FILE.
4433         Require GLib 1.3.10.
4434         
4435         * config.h.win32.in: New version, produced by merging two
4436         configure-generated ones (for gcc and MSVC). Hopefully #defines
4437         the same flags that the previous, hand-written one, did.
4438
4439         * gdk/Makefile.am
4440         * gdk/win32/Makefile.am: Handle the uuid library from the IE55 lib.
4441
4442         * gdk/win32/gdkevents-win32.c: Conditionalize ActiveIMM
4443         stuff. Remove unused GdkIOClosure.
4444
4445         * gdk/win32/surrogate-dimm.h: Remove, use real dimm.h instead (if
4446         available).
4447
4448         * gdk/win32/libie55uuid.la: New file, handwritten libtool wrapper
4449         for uuid.lib. (Does it really have to be this hard to use an
4450         existing library with libtool? Probably I am missing something.)
4451
4452 2001-11-08  Darin Adler  <darin@bentspoon.com>
4453
4454         * gtk/gtklabel.c: (gtk_label_ensure_layout): Fix an obvious
4455         typo where it says LEFT instead of CENTER.
4456
4457 2001-11-07  Darin Adler  <darin@bentspoon.com>
4458
4459         * gtk/gtkdialog.c: (gtk_dialog_set_response_sensitive),
4460         (gtk_dialog_set_default_response): Add g_return_if_fail.
4461
4462 Mon Nov  5 22:34:29 2001  Owen Taylor  <otaylor@redhat.com>
4463
4464         * gtk/gtktreednd.[ch] (struct _GtkTreeDragSourceIface): 
4465         Add row_draggable() vfunc, and wrapper function.
4466
4467         * gtk/gtktreednd.[ch] (struct _GtkTreeDragDestIface): Make
4468         row_drop_possible take a GtkSelectionData, rather than
4469         model/row pair.
4470
4471         * gtk/gtktreestore.c gtk/gtkliststore.c: Update for 
4472         new DND interfaces.
4473
4474         * gtk/gtktreeview.[ch]: Remove the row_draggable_func
4475         location_dropable_func from gtk_tree_view_set_rows_drag_source/dest.
4476         and rename them to enable_model_drag_source/dest.
4477
4478         * gtk/treeviewcolumn.c: Add DND of columns between rows.
4479         Still can't drop _to_ the left tree, but other places
4480         work.
4481
4482         * gtk/gtktreeview.c (unset_reorderable): Unset the
4483         reorderable property if unset/enable_model_drag_source/dest
4484         are called manually.
4485
4486         * gtk/gtktreestore.c (gtk_tree_store_row_drop_possible): 
4487         Correct for change in depth count handling.
4488
4489         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon):
4490         Pass in a expose area to gtk_tree_view_column_cell_render()
4491
4492 2001-11-06  Havoc Pennington  <hp@redhat.com>
4493
4494         * demos/gtk-demo/textview.c (easter_egg_callback): wacky easter egg
4495
4496 Tue Nov  6 10:13:16 2001  Owen Taylor  <otaylor@redhat.com>
4497
4498         * gdk/x11/gdkgc-x11.c: Fix misplaced HAVE_XFT.
4499
4500 2001-11-05  Havoc Pennington  <hp@redhat.com>
4501
4502         * gtk/gtktextview.c (gtk_text_view_paint): expose the child
4503         widgets in here
4504         (gtk_text_view_realize): set parent window of child widgets
4505         (gtk_text_view_size_request): use child req to decide whether
4506         to invalidate layout, not widget->requisition
4507
4508         * gtk/gtktextdisplay.c (render_layout_line): set
4509         shaped_width_pixels for NULL shape objects, so that we properly
4510         draw the "missing pixbuf/widget" thing
4511         (render_layout_line): don't draw the widget here
4512         (gtk_text_layout_draw): pass out a list of widgets that need exposing
4513
4514         * demos/gtk-demo/textview.c (insert_text): add demo of child
4515         widgets
4516
4517         * gtk/gtktextlayout.c (add_child_attrs): remove debug spew
4518
4519         * gtk/gtktextdisplay.c (render_layout_line): remove debug spew
4520
4521         * gtk/gtktextview.c (gtk_text_view_update_child_allocation): add
4522         scroll offsets
4523         (gtk_text_view_value_changed): poke new X and Y into child allocations
4524
4525 2001-11-06  Tor Lillqvist  <tml@iki.fi>
4526
4527         * gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
4528         -specific directory on Windows, too (#63759).
4529
4530 Mon Nov  5 12:46:44 2001  Owen Taylor  <otaylor@redhat.com>
4531
4532         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c
4533         gdk/x11/gdkpixmap-x11.c gdk/x11/gdkprivate-x11.h
4534         gdk/x11/gdkwindow-x11.c: Redo Xft support to go
4535         directly to Picture objects instead of using XftDraw.
4536         This fixes the problem where we weren't able to 
4537         properly destroy XftDraw objects before destroying
4538         the accompanying windows, and probably improves
4539         efficiency a bit too. (#50214)
4540
4541 Mon Nov  5 10:01:49 2001  Owen Taylor  <otaylor@redhat.com>
4542
4543         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): 
4544         Clamp max window width/height to 32767, not 32768 since
4545         we have to be able to deal with a dx/y of -32768 without
4546         getting a width of 65536 when guffaw scrolling.
4547
4548         * gdk/x11/gdkgeometry-x11.c: Implement gdk_window_scroll()
4549         for the guffaw scrolling case, fixing some problems with
4550         copy-area case as well. Fix BadValue bug with moving windows
4551         by large amounts.
4552
4553         * gdk/x11/gdkgeometry-x11.c (gdk_window_clip_changed): Update
4554         clip in window structue before calling gdk_window_invalidate_region
4555         since that trims new invalidations to the window's visible
4556         region.
4557
4558         * gdk/x11/gdkwindow-x11.c (gdk_window_set_static_gravities): 
4559         Really set the static window gravity on the children, not
4560         repeatedly on the window.
4561
4562         * gtk/testgtk.c: Add a torture test for big windows and 
4563         gdk_window_scroll().
4564
4565 Sun Nov  4 17:36:08 2001  Manish Singh  <yosh@gimp.org>
4566
4567         * acconfig.h configure.in: sigsetjmp is macroized in some places,
4568         so use AC_TRY_LINK instead of AC_CHECK_FUNCS for the check.
4569
4570 Sun Nov  4 19:16:23 2001  Owen Taylor  <otaylor@redhat.com>
4571
4572         * gdk/gdkcolor.c (gdk_color_parse): Implement gdk_color_parse()
4573         in terms of pango_color_parse().
4574
4575         * gdk/{linux-fb,win32,x11}/gdkcolor-*.c: Remove port-specific
4576         gdk_color_parse() implementations.
4577
4578 Sun Nov  4 18:39:43 2001  Owen Taylor  <otaylor@redhat.com>
4579
4580         * gtk/gtksizegroup.c (gtk_size_group_set_mode): 
4581         queue_resize_on_group with both the old and new mode, not
4582         just the new mode. (#60171, Nicolas Setton). Also, notify
4583         the "mode" property.
4584         
4585 Sun Nov  4 16:02:08 2001  Owen Taylor  <otaylor@redhat.com>
4586
4587         * gdk/gdkwindow.[ch]: Add a function gdk_window_invalidate_maybe_recurse() 
4588         for use in "shallow invalidation" of a widget. (Windows belonging
4589         to the widget, but not to the widget's children)
4590
4591         * gtk/gtkprivate.h gtk/gtkwidget.c gtk/gtksizegroup.c: Add private
4592         flags GTK_ALLOC_NEEDED, GTK_REQUEST_NEEDED.  These flags are set
4593         up on ancestors up to the resize container on queue_resize. Size
4594         requests only actually take place if GTK_REQUEST_NEEDED, size
4595         allocations only take place if GTK_ALLOC_NEEDED or the size
4596         changed.
4597
4598         * gtk/gtkcontainer.c gtk/gtkwidget.c: Remove
4599         container->resize_widgets and the RESIZE_NEEDED flag since the
4600         above flags are sufficient to figure out what needs to be
4601         resized/reallocated. Remove code manipulating
4602         container->resize_widget.
4603
4604         * gtk/gtkwidget.[ch]: Add gtk_widget_set_redraw_on_alloc(); this
4605         allows widgets to turn off being automatically invalidated is when
4606         they are resized.
4607
4608         * gtk/gtkwidget.[ch] (gtk_widget_size_allocate): Invalidation when
4609         a widget is resized or moved is "shallow" as described above -
4610         only the windows that need to be invalidated are invalidated.
4611
4612         * gtk/gtkbox.c gtk/gtktable.c gtk/gtkalignment.c docs/Changes-2.0.txt: 
4613         Make these widget's init functions call 
4614         gtk_widget_set_redraw_on_allocate(widget,FALSE).
4615
4616         * gtk/gtkwindow.c (gtk_window_configure_event): Call 
4617         _gtk_container_queue_resize(), since we don't want
4618         redrawing. (Probably could be done for other 
4619         calls to gtk_widget_queue_resize() in gtkwindow.c,
4620         but this is the most important one.)
4621
4622         * gtk/gtkwindow.c (gtk_window_move_resize): Don't call
4623         gtk_widget_queue_draw() - size_allocate() handles
4624         that as appropriate.
4625
4626         * gtk/gtkframe.c (gtk_frame_size_allocate): Invalidate instead
4627         of queue_clear() to avoid invalidating children.
4628
4629 2001-11-04  jacob berkman  <jacob@ximian.com>
4630
4631         * gtk/gtkmain.c (find_module): don't free the module name until
4632         after we load the module
4633
4634 Sat Nov  3 13:57:21 2001  Owen Taylor  <otaylor@redhat.com>
4635  
4636         * gtk/gtkctree.c: Convert GTK_TYPE_CTREE_NODE to pointer
4637         derivation instead of boxed derivation.
4638  
4639         * gtk/gtkmarshal.list: Remove some now unused marshallers.
4640  
4641 2001-11-04  Tor Lillqvist  <tml@iki.fi>
4642
4643         * gtk/gtkimmodule.c: Can't include gtkprivate.h (I added the
4644         include yesterday, without really thinking), as that defeats the
4645         working of correct_libdir_prefix() (it becomes a no-op.). Add
4646         comment mentioning that. Thanks to Hans Breuer for noticing.
4647         
4648 2001-11-03  Daniel Elstner  <daniel.elstner@gmx.net>
4649
4650         * gtk/gtkwindow.h (frame_event): Use GtkWindow* as first
4651         signal argument (was GtkWidget*).
4652
4653         * gtk/gtkwindow.c (gtk_window_frame_event),
4654           gtk/gtkwindow-decorate.c (gtk_decorated_window_frame_event):
4655         Fixed argument types as above, removed GTK_WINDOW casts and
4656         added some GTK_WIDGET casts instead.
4657
4658 2001-11-03  Hans Breuer  <hans@breuer.org>
4659
4660         * gtk/gtkfilesel.c (gtk_file_selection_finalize) : chain
4661         finalize to parent class to get removed from the toplevel_list.
4662         Should fix 'random' crashes of #63474.
4663
4664         * gtk/gtktreemodelsort.c : chain finalize() to parent class
4665
4666 2001-11-03  Tor Lillqvist  <tml@iki.fi>
4667
4668         * modules/input/Makefile.am: Use -no-undefined on Windows. Look
4669         for .dll or .so as appropriate as module suffix.
4670
4671         * gtk-zip.sh.in: Use correct import library names.
4672
4673         * gtk/gtk.def: Add a couple of missing entry points. (#63585)
4674
4675         * gtk/gtkimmodule.c (correct_libdir_prefix): New function, used on
4676         Windows to turn build-time paths from a gtk.immodules distributed
4677         as part of a binary package into runtime ones in the
4678         end-user-chosen installation directory.
4679         (gtk_im_module_init): Use it for module path and domain
4680         directory.
4681
4682 2001-11-02  Tor Lillqvist  <tml@iki.fi>
4683
4684         * gtk/gtkrc.c (gtk_rc_make_default_dir): Fix typo: extraneous
4685         comma.  Include gtkprivate.h for GTK_LIBDIR etc definitions on
4686         Windows.
4687
4688 2001-10-30  Tor Lillqvist  <tml@iki.fi>
4689
4690         * Makefile (install-data-hook): Use cp, not $(LN_S) on the .pc
4691         files. Configure on Win32 (running on Cygwin) thinks symlinks
4692         exist, but pkg-config is not necesarily a Cygwin program, and
4693         doesn't understand them.
4694
4695 Fri Nov  2 16:45:17 2001  Jonathan Blandford  <jrb@redhat.com>
4696
4697         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Clean up height code
4698         a bit.  I don't think it's completely correct yet, but it's
4699         getting there.
4700
4701 Fri Nov  2 16:14:15 2001  Owen Taylor  <otaylor@redhat.com>
4702
4703         * gtk/gtkviewport.c (gtk_viewport_size_request): Remove
4704         random + 5 for width and height. If people want padding,
4705         they should add padding. (Note the +5 isn't padding
4706         that will always appear - it just appears in the case
4707         where the widget is allocated it's requisition.)
4708         (#51018, Janet Davis)
4709
4710 Fri Nov  2 15:53:23 2001  Owen Taylor  <otaylor@redhat.com>
4711
4712         * gtk/gtkimcontext.h (struct _GtkIMContextClass): Pad
4713         the structure for future expansion.
4714
4715 Fri Nov  2 15:30:34 2001  Owen Taylor  <otaylor@redhat.com>
4716
4717         Patch from HideToshi Tajima (#51922)
4718         
4719         * gtk/gtkimmulticontext.c: Proxy set_use_preedit().
4720
4721         * gtk/modules/input/gtkimcontextxim.[ch]: Implement
4722         set_use_preedit().
4723         
4724         * gtk/modules/input/gtkimcontextxim.[ch]: If we have
4725         to destroy the input context because we change the
4726         client window or use_preedit, make sure we empty
4727         the preedit string.
4728
4729 Fri Nov  2 14:55:53 2001  Owen Taylor  <otaylor@redhat.com>
4730
4731         * gtk/{gtkcolorseldialog.c,gtkfilesel.c,gtkfontsel.c,
4732         gtkgamma.c,gtkmessagedialog.c}: Go to the GUP
4733         proposed ordering of buttons with [OK] in the lower
4734         right hand corner. Patch from Gregory Merchan,
4735         #56331.
4736
4737 Fri Nov  2 11:51:49 2001  Jonathan Blandford  <jrb@redhat.com>
4738
4739         * gtk/gtklabel.c (gtk_label_select_region_index): remove
4740         extraneous gtk_label_clear_layout (label)
4741
4742 2001-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
4743
4744         * tests/makefile.msc, gtk/makefile.msc.in: Removed
4745         -DGTK_DISABLE_COMPAT_H.
4746
4747         * docs/Changes-2.0.txt:
4748         s/GDK_DISABLE_COMPAT_H/GDK_DISABLE_DEPRECATED/
4749
4750         * gtk/gtkcompat.h.in, gdk/gdkcompat.h: Removed from CVS.
4751
4752 Fri Nov  2 10:21:03 2001  Owen Taylor  <otaylor@redhat.com>
4753
4754         * examples/**/Makefile.am: Convert to use pkg-config
4755         rather than gtk-config. (#53375, Skip Montanaro)
4756
4757 2001-11-02  Matt Wilson  <msw@redhat.com>
4758
4759         * gtk/gtkdialog.c (find_child_by_response_id): remove totally
4760         broken unused, non-compiling, static function.
4761
4762 Fri Nov  2 08:17:06 2001  Owen Taylor  <otaylor@redhat.com>
4763
4764         * gtk/gtkdialog.c (gtk_dialog_set_response_sensitive): 
4765         Iterate through children of the action area, not of
4766         the vbox. (#58278, Sergey Kuzminov)
4767
4768 2001-11-01  Havoc Pennington  <hp@pobox.com>
4769
4770         * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
4771         order to remove a workaround in Nautilus that forced
4772         GTK_ENABLE_BROKEN
4773
4774         * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
4775
4776 Thu Nov  1 20:09:31 2001  Owen Taylor  <otaylor@redhat.com>
4777
4778         * gtk/gtkrange.c: Patch from George Lebl to 
4779         fix division by zero for full scroll bars. (#62114)
4780
4781 Thu Nov  1 19:56:40 2001  Owen Taylor  <otaylor@redhat.com>
4782
4783         * gtk/gtkmain.c (gtk_main_do_event): ref/unref
4784         around gtk_widget_event() if we are going to
4785         set a flag afterwards. (#63464)
4786
4787 Thu Nov  1 19:44:48 2001  Owen Taylor  <otaylor@redhat.com>
4788
4789         * gtk/gtkiconfactory.c gtk/stock-icons/Makefile.am: 
4790         Actually add the missing/broken image icon as the
4791         image for the "missing image" stock icon.
4792
4793 Thu Nov  1 19:18:34 2001  Owen Taylor  <otaylor@redhat.com>
4794
4795         * demos/gtk-demo/stock_browser.c (do_stock_browser): 
4796         Set a reasonable default height for the window.
4797
4798         * demos/gtk-demo/stock_browser.c (id_to_macro): Fix
4799         bug where subsequent '-' weren't converted to '_'.
4800         (#59550, Matthias Clasen)
4801
4802         * demos/gtk-demo/appwindow.c (menu_items): Don't right 
4803         justify the Help menu - just include a comment on
4804         how to do it. (#63539,  Marius Andreiana)
4805
4806         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): Don't 
4807         list GTK_ICON_SIZE_INVALID.
4808
4809         * demos/gtk-demo/stock_browser.c: Show the biggest available
4810         size, not a fixed size. (Often reported, including #63539, 
4811         Marius Andreiana)
4812
4813 Thu Nov  1 19:11:35 2001  Jonathan Blandford  <jrb@redhat.com>
4814
4815         * gtk/gtkrbtree.c (gtk_rbtree_reorder_fixup): Fix reorder_fixup,
4816         #59583
4817
4818         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): fix
4819         warning.
4820
4821 Thu Nov  1 16:54:00 2001  Owen Taylor  <otaylor@redhat.com>
4822
4823         * gtk/gtktypeutils.h: Make GtkFunction return boolean, not gint.
4824         (Daniel Elstner).
4825
4826 Thu Nov  1 16:20:56 2001  Owen Taylor  <otaylor@redhat.com>
4827
4828         * gtk/gtkimcontext.[ch]: Add:
4829           - A ::retrieve_surrounding signal that asks the widget for
4830             context around the insertion point.
4831           - A ::delete_surrounding signal that asks the widget to 
4832             delete context aroudn the insertion point.
4833           - gtk_im_context_set_context() for widgets to set context
4834             around the insertion point in response to ::retrieve_context.
4835           - gtk_im_context_get_context() for context to get context
4836             around the insertion point
4837
4838         * gtkmarshal.list: Add BOOL:INT,INT
4839
4840         * gtk/gtkimmulticontext.c: Proxy the get_surrounding() /
4841         set_surrounding() methods, and the ::retrieve_surrounding /
4842         ::delete_surrounding signals.
4843
4844         * gtk/gtkentry.c gtk/gtktreeview.c: Hook up to the
4845         GtkIMContext::retrieve_surrounding / ::delete_surrounding
4846         signals.
4847
4848 Thu Nov  1 15:45:04 2001  Jonathan Blandford  <jrb@redhat.com>
4849
4850         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
4851         it's amazing how well things work sometimes, even when they're
4852         completely wrong.
4853
4854         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
4855         where you could try to collapse a node w/o it having children.
4856
4857         (gtk_tree_view_class_init): remove Shift L<->R as they already
4858         existed for expand/collapse.
4859
4860 Thu Nov  1 12:21:31 2001  Jonathan Blandford  <jrb@redhat.com>
4861
4862         * gtk/gtktreeview.c (gtk_tree_view_focus_to_cursor): Fix crash
4863         found by Matt Wilson.
4864
4865 Thu Nov  1 00:44:50 2001  Jonathan Blandford  <jrb@redhat.com>
4866
4867         * gtk/gtktreeview.c (gtk_tree_view_class_init): Support Shift,
4868         Control, and Shift|Control L<->R, #63475
4869
4870 Wed Oct 31 18:53:51 2001  Jonathan Blandford  <jrb@redhat.com>
4871
4872         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): fix
4873         infinite loop noticed by yosh.
4874
4875 2001-11-01  Michael Meeks  <michael@ximian.com>
4876
4877         * gtk/gtksocket.c (gtk_socket_unrealize): unset the
4878         GTK_REALIZED flag so we don't re-enter when we are
4879         destroyed from the plug side.
4880
4881 Wed Oct 31 18:23:47 2001  Owen Taylor  <otaylor@redhat.com>
4882
4883         * gtk/gtkoptionmenu.c (gtk_option_menu_detacher): 
4884         Add a "menu" property and notify on it. (#62798,
4885         Padraig O'Briain)
4886
4887         * gtk/gtkselection.[ch] gtk/{gtkentry.c, gtkfilesel.c,
4888         gtkoldeditable.c, gtktextbuffer.c, gtktextview.c}: 
4889         Fix set_text to take a gchar, not a guchar, and to have 
4890         a len argument.
4891
4892 Wed Oct 31 15:31:13 2001  Manish Singh  <yosh@gimp.org>
4893
4894         * gtk/gtkstock.c: fix typo to make it compile
4895
4896 Wed Oct 31 17:27:20 2001  Jonathan Blandford  <jrb@redhat.com>
4897
4898         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): if
4899         the widget is insensitive, draw the text insensitively, #63306
4900
4901 2001-10-31  Matthias Clasen  <matthiasc@poet.de>
4902
4903         * gtk/gtkstock.c: Add stock items for most stock icons. (#61757)
4904
4905 Wed Oct 31 16:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
4906
4907         * gtk/gtktreednd.c (gtk_tree_set_row_drag_data): rename
4908         gtk_selection_data_set_tree_row, #60218
4909         (gtk_tree_get_row_drag_data): rename
4910         gtk_selection_data_get_tree_row, #60218
4911
4912         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): Actually
4913         get this right, after the third try, #63122.
4914
4915 2001-10-31  jacob berkman  <jacob@ximian.com>
4916
4917         * gdk/gdkselection.h (GDK_TARGET_STRING): 
4918         (GDK_SELECTION_TYPE_STRING): these should be 31, not 3.  Hooray
4919         for Xatoms (and not using the XA_* macros)!
4920
4921 Wed Oct 31 15:38:14 2001  Owen Taylor  <otaylor@redhat.com>
4922
4923         * gtk/gtkwindow.[ch] (gtk_window_get_focus): Add a
4924         gtk_window_get_focus() getter to determine the currently
4925         focused widget within the window. (#63145, request
4926         from Damian Ivereigh)
4927
4928 Wed Oct 31 14:45:08 2001  Jonathan Blandford  <jrb@redhat.com>
4929
4930         * gtk/gtkenums.h (enum): Add GTK_SELECTION_NONE enum, #61695
4931
4932         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Handle new
4933         GTK_SELECTION_NONE enum.
4934         (_gtk_tree_selection_internal_select_node): ditto
4935
4936         * gtk/gtkcellrenderer.h (struct _GtkCellRendererClass): add
4937         constness.
4938
4939         * gtk/gtkcellrenderertoggle.c: more yummy constness.
4940
4941         * gtk/gtkclist.c (gtk_clist_set_selection_mode): g_return_if_fail
4942         if mode == GTK_SELECTION_NONE
4943
4944 Wed Oct 31 14:05:17 2001  Jonathan Blandford  <jrb@redhat.com>
4945
4946         * gtk/gtktreeview.c (gtk_tree_view_class_init): Added a
4947         "cursor_changed" signal, #62850.
4948
4949 2001-10-31  Matt Wilson  <msw@redhat.com>
4950
4951         * gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
4952         allocating the treedatalist, zero it to make sure the values are
4953         cleared from any garbage that was in this chunk.
4954
4955 2001-10-31  Murray Cumming  <murrayc@usa.net>
4956
4957         * gtk/cellrenderertext.h: "edited" default signal handler
4958         gchar* args are now const.
4959         gtk/cellrenderertoggle.h: "toggled" default signal handler
4960         gchar* arg is now const.
4961         Also changed other signal handlers for "edited" and "toggled" to
4962         have the same signature.
4963
4964 Tue Oct 30 19:17:57 2001  Jonathan Blandford  <jrb@redhat.com>
4965
4966         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): massize
4967         rewrite.  Static models now totally work.  I'm not 100% sure about
4968         row_inserted and row_changed, but I'll get those later.
4969
4970 2001-10-30  Sven Neumann  <sven@gimp.org>
4971
4972         * configure.in: use GLIB_AC_DIVERT_BEFORE_HELP() so we get proper
4973         output for configure --help.
4974
4975 2001-10-30  Havoc Pennington  <hp@pobox.com>
4976
4977         * gtk/gtktextview.c (changed_handler): Update the IM spot location
4978         here, if text was invalidated in the visible area, because the
4979         scroll offset doesn't normally change in that case, and the mark
4980         isn't set, just implicitly moved over as text is added/removed
4981         
4982 Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
4983
4984         * gtk/gtkseparatormenuitem.c: Code cleanup.
4985         (gtk_separator_menu_item_class_init): Fix bugs in this code.
4986
4987 2001-10-29  jacob berkman  <jacob@ximian.com>
4988
4989         * gdk/Makefile.am (LDFLAGS): 
4990         * gtk/Makefile.am (LDFLAGS): automake doesn't support conditionalized
4991         LDFLAGS, so put win32 flags in here
4992
4993 Mon Oct 29 15:41:58 2001  Jonathan Blandford  <jrb@redhat.com>
4994
4995         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): Darn.
4996         I can't believe this took this long to fix.
4997
4998 Mon Oct 29 13:54:49 2001  Jonathan Blandford  <jrb@redhat.com>
4999
5000         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): fix
5001         reordered signal.
5002
5003 Mon Oct 29 12:27:51 2001  Owen Taylor  <otaylor@redhat.com>
5004
5005         * gtk/gtkfilesel.c (gtk_file_selection_rename_file): Grab
5006         the focus to the fileop entry for create dir / rename
5007         file. (#62838)
5008
5009 Mon Oct 29 12:21:49 2001  Owen Taylor  <otaylor@redhat.com>
5010
5011         * configure.in: Don't use AC_CHECK_FILE to check for a 
5012         file since it always spits warnings about cross compilation,
5013         use -f instead. It's not like we cross compile properly
5014         anyways.
5015
5016         * configure.in (gtktargetlib): Move call to AC_PROG_CC
5017         to suppress autoconf warning.
5018
5019         * acconfig.h: Add some missing #undefs from recent
5020         Win32 additions.
5021
5022 Mon Oct 29 11:31:40 2001  Owen Taylor  <otaylor@redhat.com>
5023
5024         * m4macros/gtk-2.0.m4: Don't try to use pkg-config
5025         when we didn't find it. (#62944, Eric Lemings)
5026
5027         * m4macros/gtk-2.0.m4: Fix problem with spaces around =
5028         sign in assignment. (#63209, Arkadiusz Miskiewicz)
5029
5030 2001-10-29  Anders Carlsson  <andersca@gnu.org>
5031
5032         * gtk/gtktreeview.c (gtk_tree_view_size_request): Calculate
5033         the buttons size request before using it. Fixes #61696.
5034
5035 2001-10-29  Tor Lillqvist  <tml@iki.fi>
5036
5037         * README.win32: Updates.
5038
5039         * gtk-zip.sh.in: New file, used to build distribution package for
5040         Windows.
5041
5042         * gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
5043         applicable with GDKVAR.
5044
5045         * gdk/win32/libwntab32x.la: New file, hand-written wrapper for the
5046         Wintab library.
5047
5048         * gdk/win32/gdkwin32.h
5049         * gdk/win32/gdkprivate-win32.h: Reorganise to match corresponding
5050         X11 headers better, and to enable gdkwin32.h to be installed and
5051         included from applications, but not the *-win32.h headers.
5052
5053         * gdk/win32/*.c: Corresponding small changes, simplifications of
5054         #includes.
5055         
5056         * gdk/win32/gdkregion-win32.c: Remove.
5057
5058         * gdk/win32/gdkevents-win32.c (print_event): Add GDK_SETTING.
5059
5060         * gdk/win32/gdkfont-win32.c
5061         * gdk/win32/gdkgeometry-win32.c: Remove unused variables.
5062
5063         * gdk/win32/gdkproperty-win32.c (gdk_atom_intern): Don't insert
5064         GDK_NONE values into hash table.
5065
5066         * gtk/gtk.def: Update.
5067
5068         * gtk/gtkfilesel.c: Include <winsock.h> (if available) for
5069         gethostname().
5070
5071         * gtk/gtkmain.c 
5072         * gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
5073         entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
5074         GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
5075         g_win32_get_package_installation_subdirectory() with the actual
5076         DLL name saved above. Redefine above directory name macros to call
5077         these functions. Remove some ifdefs.
5078
5079         * gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
5080         variable for export on Win32) also to the _vars file.
5081
5082         Changes for autoconfiscated build on Win32, and addition of Win32
5083         backend to the related files:
5084         
5085         * configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
5086         when forming DLL name in some files. Set MS_LIB_AVAILABLE is
5087         lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
5088         PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
5089         win32 target, using pangowin32. Don't use the
5090         -export-symbols-regex option on Win32, we use .def files to list
5091         exported symbols. Check <winsock.h> (for gethostname() in
5092         gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
5093         prevent premature m4 expansion.
5094
5095         * acconfig.h: Add HAVE_WINTAB.
5096
5097         * gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
5098         macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
5099         MS_LIB_AVAILABLE, build MS import library. Install the import
5100         libraries. If HAVE_WINTAB, link with the Wintab library.
5101
5102         * gdk/win32/Makefile.am: Actually enable building the win32
5103         objects here, not just list all files in EXTRA_DIST. Link in the
5104         compiled resource file from rc/gdk-win32res.lo. If HAVE_WINTAB,
5105         copy the Wintab library into the .libs directory. 
5106
5107         * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Don't assume the
5108         name of the GDK DLL when fetching the icon. Use the HMODULE saved
5109         in gdk_dll_hinstance by DllMain.
5110
5111         * gdk/win32/rc/Makefile.am: Build gdk-win32res.lo using the
5112         build/win32/lt-compile-resource script.
5113
5114         * gdk/win32/rc/gdk.rc.in
5115         * gtk/gtk-win32.rc.in: Use the DLL name that libtool would use.
5116
5117         * gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
5118         macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
5119         file. Install import libraries.
5120
5121 2001-10-29  Anders Carlsson  <andersca@gnu.org>
5122
5123         * gtk/gtkiconfactory.c (get_default_icons): Fix build.
5124
5125 2001-10-28  Hans Breuer  <hans@breuer.org>
5126
5127         * gdk/gdk.c gdk/gdkevents.c
5128           gdk/win32/gdkcolor-win32.c gdk/win32/gdkdnd-win32.c
5129           gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
5130           gdk/win32/gdkfont-win32.c gdk/win32/gdkgc-win32.c
5131           gdk/win32/gdkim-win32.c gdk/win32/gdkmain-win32.c
5132           gdk/win32/gdkprivate-win32.h gdk/win32/gdkproperty-win32.c
5133           gdk/win32/gdkselection-win32.c gdk/win32/gdkwin32.h
5134           gdk/win32/gdkwindow-win32.c gdk/win32/gdkwindow-win32.h :
5135         static correct-ness, underscore prefixing of library internal 
5136         functions
5137         (applied the undisputed and the win32 part. Of the latter 
5138          I'm probably the one who will change it back again, if Owen
5139          decides that the Gdk*Impl types should not be private to Gdk)
5140
5141         * gdk/gdk.def : added the remaining exported functions
5142
5143 2001-10-28  Matthias Clasen  <matthiasc@poet.de>
5144
5145         * gtk/gtkcellrenderertoggle.c, gtk/gtkimcontextsimple.c,
5146         gtk/gtkimmulticontext.c, gtk/gtkimagemenuitem.c,
5147         gtk/gtkiconfactory.c, gtk/gtkwindow.c: Documentation updates.
5148
5149 2001-10-28  jacob berkman  <jacob@ximian.com>
5150
5151         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): do not call
5152         gtk_settings_get_default() here as that requires an X connection
5153         (which breaks doc building with no X connection) and is not
5154         multihead safe
5155         (gtk_color_selection_init): delay palette loading until realize
5156         time
5157         (gtk_color_selection_realize): load the palette, and initialize
5158         the global palette if it hasn't been already
5159
5160         * gtk/gtkpreview.c (gtk_preview_class_init): don't initialize the
5161         visual/cmap fields of klass->info since they are gone
5162         (gtk_preview_get_visual): just return gdk_rgb_get_visual ()
5163         (gtk_preview_get_cmap): just return gdk_rgb_get_colormap ()
5164         (gtk_preview_realize): don't set VISUAL and COLORMAP attributes
5165
5166         * gtk/gtkpreview.h (struct _GtkPreviewInfo): remove visual and
5167         cmap fields
5168         (gtk_preview_get_visual):
5169         (gtk_preview_get_cmap): mark as deprecated
5170
5171         * docs/Changes-2.0.txt: add a little note about the GtkPreviewInfo
5172         changes
5173
5174 Sun Oct 28 09:15:39 2001  Owen Taylor  <otaylor@redhat.com>
5175
5176         * gtk/gtkimcontext.h (struct _GtkIMContext): Fixed
5177         structure to have GObject not GtkObject as
5178         parent_instance. (Jeff Franks.)
5179
5180 2001-10-27  Matthias Clasen  <matthiasc@poet.de>
5181
5182         * gdk/x11/gdkinput.c: Typo fix.
5183
5184 2001-10-26  Havoc Pennington  <hp@pobox.com>
5185
5186         * gtk/gtktextview.c (gtk_text_view_mark_set_handler): Call
5187         update_im_spot_location here explicitly
5188         (gtk_text_view_reset_im_context): don't update the spot location
5189         here
5190
5191 2001-10-27  Anders Carlsson  <andersca@gnu.org>
5192
5193         * gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
5194         This fixes #62942.
5195
5196         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range): 
5197         Clarify that we're returning a spin button in the _new function.
5198         This fixes #54097.
5199         
5200 Fri Oct 26 20:55:57 2001  Owen Taylor  <otaylor@redhat.com>
5201
5202         * gtk/gtkbutton.c: Revert changes to GTK_RUN_LAST. 
5203         Unfortunately, people apparently erroneously connect
5204         to ::clicked for GtkToggleButton and expect
5205         they know what happened in the default signal handler
5206         instead of appropriately connecting to notification
5207         signal ::toggled. When the revolution comes, such
5208         people will be first against the wall.
5209
5210         We'll just have to go back to the old less-reliable
5211         set-it-back hacks for handling model-view check
5212         buttons and radio buttons. :-(. 
5213
5214 2001-10-27  Hans Breuer  <hans@breuer.org>
5215
5216         * gtk/gtkbbox.c gtk/gtkctree.c gtk/gtkhbbox.c
5217           gtk/gtkimmulticontext.c gtk/gtklabel.c gtk/gtkliststore.c
5218           gtk/gtkmenu.c gtk/gtkpaned.c gtk/gtkrc.c gtk/gtkscale.c
5219           gtk/gtkstyle.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
5220           gtk/gtktexttag.c gtk/gtktexttagtable.c gtk/gtktextview.c
5221           gtk/gtktreestore.c gtk/gtkvbbox.c : 
5222         to simplify parsing for exported functions:
5223         - made implementation signature static, when the local 
5224           prototype already was
5225         - put the functions return value on it's own line
5226         - added as space between the function name and the 
5227           opening bracket
5228
5229         * gtk/gtk.def : added the remaining exported functions
5230
5231 2001-10-27  Anders Carlsson  <andersca@gnu.org>
5232
5233         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width): 
5234         Add note about width having to be greater than 0. This fixes
5235         #55574. 
5236
5237         * gtk/gtktextiter.c (gtk_text_iter_backward_sentence_start): 
5238         Fix docs to say previous instead of next.
5239         (gtk_text_iter_backward_word_start): Likewise.
5240         This fixes bug #62980.
5241
5242         * gtk/gtkcontainer.c (gtk_container_set_border_width): Mention
5243         that the valid width is in range 0-65535 pixels. Fixes bug 
5244         #56754.
5245
5246         * gtk/gtksizegroup.c (gtk_size_group_set_mode): Remove
5247         a dot in the documentation. Fixes bug #62632.
5248
5249         * gdk/x11/gdkmain-x11.c: Replace int and guint with
5250         long and gulong in some places to make the code 64-bit
5251         clean.
5252         (_gdk_windowing_init_check): Replace gint with gulong.
5253         This patch was made by George Lebl and fixes bug #62113.
5254
5255         * tests/testgtk.c (create_range_controls): Don't set a 
5256         fixed height on the hscale widget. This fixes "bug" 
5257         #55840.
5258         (create_window_states): Set up destroy signals so that
5259         all windows will be destroyed when one is. This fixes 
5260         bug #58133.
5261
5262 2001-10-26  Anders Carlsson  <andersca@gnu.org>
5263
5264         * gtk/gtktreeview.c: 
5265         (gtk_tree_view_class_init): Create new "indent_expander"
5266         style property.
5267
5268         (gtk_tree_view_get_arrow_xrange): Add a tree argument
5269         to the function since the xrange can change depending
5270         on where in the tree we are. 
5271         
5272         (coords_are_over_arrow): Update function call to
5273         gtk_tree_view_get_arrow_xrange.
5274         (gtk_tree_view_draw_arrow): Likewise.
5275         
5276         (gtk_tree_view_real_expand_collapse_cursor_row):
5277         Call real_{expand|collapse}_row, so that we'll have an
5278         animation.
5279
5280 Fri Oct 26 20:13:36 2001  Kristian Rietveld  <kristian@planet.nl>
5281
5282         * tests/Makefile.am: fixed a small typo
5283
5284 Fri Oct 26 18:27:11 2001  Kristian Rietveld  <kristian@planet.nl>
5285
5286         * demos/gtk-demo/list_store.c (create_model): Anders
5287         Carlsson suggested to use G_N_ELEMENTS here
5288
5289 2001-10-26  Sven Neumann  <sven@gimp.org>
5290
5291         * gtk/gtkbutton.[ch]
5292         * gtk/gtkdnd.c: fixed inline comments
5293         
5294         * gtk/gtkgamma.c: gtk_entry_get_text() returns a const gchar.
5295
5296 2001-10-26  Hans Breuer  <hans@breuer.org>
5297
5298         * gdk-pixbuf/gdk_pixbuf.def : 
5299         * gdk/gdk.def : 
5300         * gtk/gtk.def : updated externals
5301
5302         * gdk/win32/gdkpixmap-win32.c : removed duplicate of
5303         gdk_window_lookup implementation. It already was in
5304         gdk/win32/gdkwindow-win32.c
5305
5306         * gdk/win32/gdkproperty-win32.c : made it compile again
5307         after GdkAtom API change
5308
5309         * gtk/gtk/makefile.msc.in : updated
5310
5311 Wed Oct 24 11:36:33 2001  Owen Taylor  <otaylor@redhat.com>
5312
5313         * configure.in (GTK_MICRO_VERSION): Version 1.3.10,
5314         require GLib 1.3.10.
5315
5316         * NEWS: updates.
5317
5318 Thu Oct 25 16:27:29 2001  Jonathan Blandford  <jrb@redhat.com>
5319
5320         * gtk/gtkrbtree.c (_gtk_rbnode_rotate_left): Add support for
5321         invalid nodes.
5322          (_gtk_rbnode_rotate_right): Ditto.
5323          (_gtk_rbtree_node_mark_invalid): New function.
5324          (_gtk_rbtree_node_mark_valid): New function.
5325
5326         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_class_init): We're a
5327         GObject, not a GtkObject.
5328         (gtk_tree_model_sort_row_has_child_toggled): Rewrote to be more
5329         correct.
5330         (gtk_tree_model_sort_row_deleted): ditto.
5331         (gtk_tree_model_sort_{un,}ref_node): Fix.
5332
5333         * gtk/gtktreeview.c: Protean incremental reflow support (commented
5334         out)
5335
5336         * gtk/gtktreeview.h (GtkTreeViewSearchEqualFunc): change char *key
5337         to const char *key.
5338
5339         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path_helper):
5340         Important 1 line fix to fix a lot of refcounting woes.
5341
5342 2001-10-25  Matt Wilson  <msw@redhat.com>
5343
5344         * gtk/gtktextview.c (gtk_text_view_destroy): call
5345         gtk_text_view_destroy_layout after gtk_text_view_set_buffer (which
5346         now invalidates) so that we remove our idle functions.
5347         (gtk_text_view_destroy_layout): remove the first_validate_idle as
5348         well.
5349
5350         * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
5351         the 'indent' property is G_MININT to G_MAXINT.  Don't use
5352         -G_MAXINT for the minimum of the 'rise' property, use G_MININT
5353         instead.
5354
5355 2001-10-24  Anders Carlsson  <andersca@gnu.org>
5356
5357         * gtk/gtktreeview.c: 
5358         (gtk_tree_view_real_expand_row): add an animate argument
5359         (gtk_tree_view_real_collapse_row): likewise
5360         
5361         (gtk_tree_view_button_press), (gtk_tree_view_button_release), 
5362         (gtk_tree_view_collapse_all), (gtk_tree_view_expand_row),
5363         (gtk_tree_view_collapse_row): update functions that call
5364         real_{expand|collapse}_row to set the animate argument 
5365         accordingly.
5366         
5367 2001-10-24  Alex Larsson  <alexl@redhat.com>
5368
5369         * gdk/linux-fb/gdkfont-fb.c:
5370         Update to new Pango APIs
5371
5372         * gdk/linux-fb/gdkproperty-fb.c:
5373         Update to new GdkAtom APIs
5374
5375         * gdk/linux-fb/gdkwindow-fb.c:
5376         Remove warnings
5377
5378 Mon Oct 22 20:07:21 2001  Jonathan Blandford  <jrb@redhat.com>
5379
5380         * gtk/gtktreestore.c (gtk_tree_store_prepend): Fix docs, #62808
5381
5382 Wed Oct 24 22:54:07 2001  Kristian Rietveld  <kristian@planet.nl>
5383
5384         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): treat
5385         s_path as a child path
5386
5387 Wed Oct 24 20:29:47 2001  Kristian Rietveld  <kristian@planet.nl>
5388
5389         * gtk/gtktreemodelsort.c: more changes in an attempt to get
5390         it right. It's not yet ready for general consumption.
5391
5392         * tests/treestoretest.c: add a button and entry for the new
5393         iter_change function
5394         (iter_change): new function, to test
5395         the row_changed signal implementation of the GtkTreeModelSort
5396
5397         * tests/testtreesort.c: cleanups, changes to test more features
5398         of the GtkTreeModelSort at once
5399
5400 2001-10-24  Havoc Pennington  <hp@redhat.com>
5401
5402         * gtk/gtktextbuffer.c (clipboard_clipboard_buffer_received):
5403         remove hack to strip off the bogus newline, since we killed the
5404         bogus newline; fixes #61779
5405
5406 2001-10-24  Havoc Pennington  <hp@redhat.com>
5407
5408         * gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
5409         create layout if we didn't have one
5410         (gtk_text_view_set_buffer): invalidate so we get the idle handlers
5411         as appropriate, avoids blanking the screen 
5412         (gtk_text_view_invalidate): new function to do invalidation,
5413         containing old guts of invalidated_handler
5414
5415 Wed Oct 24 10:29:47 2001  Owen Taylor  <otaylor@redhat.com>
5416
5417         * gtk/gtkalignment.c (gtk_alignment_class_init): Improve
5418         dreadful tooltips.
5419
5420 Tue Oct 23 17:31:42 2001  Owen Taylor  <otaylor@redhat.com>
5421
5422         * gdk/x11/gdkwindow-x11.c gdk/win32/gdkwindow-win32.c: Always 
5423         set window->parent (except or the root window itself); if 
5424         the window's parent is not a GdkWindow, or is a window of 
5425         type GDK_WINDOW_FOREIGN, set window->parent to the root parent.
5426
5427         * gdk/gdkwindow.c (gdk_window_get_toplevels): Don't include
5428         windows of type GDK_WINDOW_FOREIGN.
5429
5430 2001-10-24  Havoc Pennington  <hp@pobox.com>
5431
5432         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): if we move to
5433         the front of a segment, use the "slow" technique for moving
5434         backward, so we don't mess up the any_segment field in the iter. 
5435         Fixes #57707
5436
5437         * tests/testtextbuffer.c: add code to detect #57707, to avoid
5438         regression
5439
5440 2001-10-23  Havoc Pennington  <hp@redhat.com>
5441
5442         * gtk/gtktextview.c (popup_targets_received): only sensitize Cut
5443         if selection contains some editable text, #60975
5444         (gtk_text_view_scroll_to_iter): remove warning about scrolling
5445         prior to map; it should actually be OK to do so in many cases, 
5446         it would be nice to warn about scrolling when many lines have
5447         height 0, but I don't know what to do about that. Perhaps 
5448         move part of flush_scroll into this function? comment added 
5449         to consider this.
5450
5451 2001-10-23  Havoc Pennington  <hp@redhat.com>
5452
5453         * gtk/gtktextview.c (changed_handler): Correctly keep the same
5454         text on the top of the screen, considering that the changed region
5455         may have overlapped the first paragraph. Should fix msw's "text
5456         widget scrolled to wrong place on map" bug, and probably some
5457         other scrolling cases as well.
5458         (gtk_text_view_set_scroll_adjustments): start adjustments at 0.0, 
5459         instead of some random value
5460
5461         * gtk/gtktextview.c (gtk_text_view_class_init): actually override
5462         grab_focus, so #59708 is really fixed
5463
5464 2001-10-24  Anders Carlsson  <andersca@gnu.org>
5465
5466         * gtk/gtkentry.c: (append_action_signal): Use an image menu item here
5467         (popup_targets_received): Call append_action_signal with stock items
5468         
5469         * gtk/gtklabel.c: (append_action_signal): Use an image menu item here
5470         (gtk_label_do_popup): Call append_action_signal with stock items
5471         
5472         * gtk/gtktextview.c: (append_action_signal): Use an image menu item here
5473         (popup_targets_received): Call append_action_signal with stock items
5474
5475 2001-10-23  Havoc Pennington  <hp@redhat.com>
5476
5477         * gtk/gtktextview.c (changed_handler): queue a resize here; will
5478         temporarily slow down the widget a lot, until we figure out how to
5479         optimize to avoid full redraw everytime we queue a resize.
5480
5481 2001-10-23  Havoc Pennington  <hp@redhat.com>
5482
5483         * gtk/gtktextiter.c (test_log_attrs): handle case where offset ==
5484         0 and char_len == 0, bug #61729
5485
5486 2001-10-23  Havoc Pennington  <hp@redhat.com>
5487
5488         * gtk/gtktextiter.c (gtk_text_iter_forward_cursor_positions): fix
5489         return value, #61714 (Vitaly Tishkov)
5490         (gtk_text_iter_backward_sentence_starts): ditto
5491         (gtk_text_iter_backward_word_starts): ditto
5492         (gtk_text_iter_forward_word_ends): ditto
5493         (gtk_text_iter_forward_sentence_ends): ditto
5494         (gtk_text_iter_backward_cursor_positions): ditto
5495
5496 2001-10-23  Havoc Pennington  <hp@redhat.com>
5497
5498         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_pixel): Apply
5499         fix from Dov Grobgeld, #61858
5500
5501 2001-10-23  Havoc Pennington  <hp@redhat.com>
5502
5503         * gtk/gtktextview.c (gtk_text_view_update_im_spot_location): 
5504         Update IM spot location at appropriate times, #50626
5505         (Hidetoshi Tajima)
5506
5507 2001-10-23  Havoc Pennington  <hp@redhat.com>
5508
5509         * gtk/gtktextview.c (gtk_text_view_grab_focus): scroll to cursor
5510         on grab focus, unless it's caused by button click, #59708
5511
5512 Tue Oct 23 11:53:00 2001  Owen Taylor  <otaylor@redhat.com>
5513
5514         * gtk/Makefile.am (INCLUDES): Remove G_DISABLE_CONST_RETURNS.
5515
5516         * gtk/gtkfontsel.[ch]: Make gtk_font_selection_get_font()
5517         G_CONST_RETURN. (Murray Cumming)        
5518
5519         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_preview_text):
5520         Make G_CONST_RETURN.
5521
5522         * gtk/gtkfilesel.c (open_user_dir): Fix bug with freeing
5523         results of g_get_home_dir().
5524
5525         * gtk/gtkfilesel.c: Make filesel->fileop_file a duplicated 
5526         copy. Storing the return from gtk_entry_get_text() is evil.
5527
5528         * gtk/gtkcombo.c gtk/gtkcellrenderertext.c gtk/gtkbindings.c 
5529         gtk/gtkfilesel.c gtk/gtkfontsel.c gtk/gtkimmodule.c 
5530         gtk/gtkobject.c gtk/gtkoldeditable.c gtk/gtktreedatalist.c
5531         gtk/gtksignal.c: Add const.
5532
5533         * gdk/x11/gdkkeys-x11.c (get_direction): Add missing const.
5534
5535         * gtk/gtktreeview.c: Namespace object data keys to be safe, even 
5536         if we are setting them on private widgets.
5537
5538         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
5539         Duplicate entry->text before setting it as object data.
5540
5541 2001-10-22  Havoc Pennington  <hp@redhat.com>
5542
5543         * gtk/gtktextbuffer.c (gtk_text_buffer_place_cursor): don't back
5544         up a char from the end iterator, fixes #61859 ("can't put cursor
5545         at the end of the buffer")
5546
5547         * gtk/gtktextiter.c (gtk_text_iter_forward_to_line_end): fix this
5548         to work with delimiters other than newline.
5549
5550         * tests/testtextbuffer.c: add some tests for get_chars_in_line,
5551         get_bytes_in_line
5552
5553         * gtk/gtktextiter.c (gtk_text_iter_get_chars_in_line): fix for the
5554         last line, since the newline is no longer counted.
5555         (gtk_text_iter_get_bytes_in_line): ditto
5556
5557 2001-10-22  Havoc Pennington  <hp@redhat.com>
5558
5559         * gtk/gtktextbtree.c (_gtk_text_btree_insert): add assertion that 
5560         #58290 would trigger if it reappeared, I think
5561
5562 2001-10-22  Havoc Pennington  <hp@redhat.com>
5563
5564         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
5565         add temporary code to dump btree contents on assertion failure
5566         described in #62656
5567         
5568         * gtk/gtktextbtree.c (ensure_end_iter_segment): add some
5569         assertions that we're getting the right end iter segment
5570
5571         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
5572         verify that we aren't on the end iterator after moving 
5573         forward one segment - fixes return value in an obscure case. 
5574         Also, some trivial code cleanup/rearranging.
5575         
5576 2001-10-22  Havoc Pennington  <hp@redhat.com>
5577
5578         * gtk/gtktextlayout.h: add a #error unless you define
5579         GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API, so people don't use this accidentally
5580
5581         * gtk/gtktext*.c: #define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API as appropriate.
5582         
5583 2001-10-22  Havoc Pennington  <hp@redhat.com>
5584
5585         * gtk/gtktextview.c (gtk_text_view_get_border_window_size): fix 
5586         #62365
5587
5588 2001-10-22  Havoc Pennington  <hp@redhat.com>
5589
5590         * gtk/gtktextview.c (gtk_text_view_get_window_type): fix 
5591         #62436
5592
5593 2001-10-22  Havoc Pennington  <hp@redhat.com>
5594
5595         * gtk/gtktextview.c (gtk_text_view_set_border_window_size): Fix 
5596         #62366
5597
5598 Mon Oct 22 11:47:47 2001  Owen Taylor  <otaylor@redhat.com>
5599
5600         * gtk/gtklabel.c: Add cursor-position, selection-bound 
5601         properties. (#62148, reported by Padraig O'Briain)
5602
5603         * gtk/gtkentry.c (gtk_entry_class_init): Rename text_position
5604         to cursor_position. (1.3.x addition, text_position is an awful
5605         name.) Make cursor_position read-only to avoid sticky questions
5606         of interaction with selection_bound. (#62636, reported by
5607         Padraig O'Briain)
5608
5609 Mon Oct 22 16:25:12 2001  Owen Taylor  <otaylor@redhat.com>
5610
5611         Fixing popup menus to have "Paste" sensitized correctly. Original
5612         patches from Damian Ivereigh, much mangled.
5613
5614         * gtk/gtkselection.c: Add functions gtk_selection_data_get_targets(),
5615         gtk_selection_data_targets_include_text(). (#60854)
5616
5617         * gtk/gtkclipboard.c: Add a simple do-it-all non-async "check if
5618         the clipboard has text" function gtk_clipboard_wait_is_text_available.
5619         (#60854)
5620
5621         * gtk/gtkentry.c: Only enable the paste item if the clipboard
5622         contains text. (#60973)
5623
5624         * gtk/gtktextview.c: Only enable the paste item if the clipboard
5625         contains text. (#60975)
5626
5627 2001-10-22  Havoc Pennington  <hp@redhat.com>
5628
5629         * gtk/gtktextview.c (gtk_text_view_class_init): rip out
5630         "height_lines" and "width_columns" properties, it doesn't make
5631         sense to set the size request on a text view really. #62103
5632
5633 Mon Oct 22 15:17:05 2001  Jonathan Blandford  <jrb@redhat.com>
5634
5635         * gtk/gtktreestore.c (gtk_tree_store_iter_depth): Realized
5636         g_node_depth is broken, and that it's not worth being consistent
5637         with it.
5638
5639 2001-10-22  Havoc Pennington  <hp@redhat.com>
5640
5641         * gtk/gtktextiter.c (gtk_text_iter_set_line): Clarify behavior in
5642         docs, #61777
5643         (gtk_text_iter_forward_search) (gtk_text_iter_backward_search):
5644         change the two boolean args to a flags field, so we can extend 
5645         to add case insensitive, regexp searches later. #61852
5646
5647 Mon Oct 22 15:07:17 2001  Jonathan Blandford  <jrb@redhat.com>
5648
5649         * gtk/gtktreestore.c (gtk_tree_store_iter_depth): update docs to
5650         reflect reality, #62810
5651
5652 Mon Oct 22 14:08:26 2001  Jonathan Blandford  <jrb@redhat.com>
5653
5654         * demos/gtk-demo/appwindow.c: Remove handle_box from App demo.
5655
5656         * gtk/gtktreeview.c (size_allocate): Move to a different drawing
5657         system.  Instead of having a window the size of the tree, we have
5658         a window the size of widget->allocation, and simply draw with the
5659         offset.
5660         (coords_are_over_arrow): ditto.  Move to window coordinates.
5661         (do_prelight): ditto
5662         (do_unprelight): ditto
5663
5664         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
5665         Minor fix from Kristian Rietveld to fix unsorted case.
5666
5667 2001-10-22  jacob berkman  <jacob@ximian.com>
5668
5669         * gtk/gtkclist.c (cell_size_request): don't cast a PIXTEXT cell to
5670         a PIXMAP cell (fixes crash when using PIXTEXT cells)
5671
5672 Sat Oct 20 18:58:25 2001  Owen Taylor  <otaylor@redhat.com>
5673
5674         * gtk/gtkentry.h: Deprecate gtk_entry_set_editable.
5675         (#58768, Vitaly Tishkov)
5676         
5677         * gtk/gtkobject.h: Deprecate with abandon. 
5678         (#61942, Vitaly Tishkov, Matthias Clasen)
5679
5680         * gtk/gtksignal.h: Deprecate everything.
5681
5682         * gtk/gtkmain.h (GTK_PRIORITY_INTERNAL): Deprecate
5683         all GTK_PRIORITY_* defines other than GKT_PRIORITY_RESIZE>
5684         (#61942, Matthias Clasen)
5685
5686         * gtk/gtkstyle.h: Deprecate gtk_draw_*. (#61140,
5687         Havoc Pennington)
5688
5689         * gtk/gtkitemfactory.h: Deprecate compat functions
5690         for GtkMenuFactory code. (#62071)
5691
5692         * gdk/gdkdrawable.h: Deprecate gdk_draw_string,
5693         gdk_draw_text,gdk_draw_text_wc. (#62071)
5694
5695 Mon Oct 22 10:12:08 2001  Owen Taylor  <otaylor@redhat.com>
5696
5697         * gdk/gdk.c docs/Changes-2.0.txt (gdk_threads_init): Don't call
5698         g_thread_init(), we don't want to link to -lgthread if we don't
5699         have to.
5700
5701 Mon Oct 22 08:51:02 2001  Owen Taylor  <otaylor@redhat.com>
5702
5703         * gdk/gdk.[ch] (gdk_threads_init) docs/Changes-2.0.txt: 
5704         Add a function, gdk_threads_init() that must be explicitely 
5705         called to enable the GDK thread mutex.
5706
5707 2001-10-22  Jakub Steiner <jimmac@ximian.com>
5708
5709         * gtk/stock-icons/stock_stop.png: no body parts
5710         
5711 Sun Oct 21 23:27:00 2001  Owen Taylor  <otaylor@redhat.com>
5712
5713         * gtk/gtkwidget.c (gtk_widget_translate_coordinates): Fix
5714         problem with g_return_if_fail return value.
5715
5716         * gdk/x11/gdkproperty-x11.c docs/Changes-2.0.txt: Move over the 
5717         virtual atom code from the gdk-multihead branch, removing the per-display
5718         part. Virtualizing atoms needs to be done now to prevent compat
5719         breakage in direct Xlib accessing code in the future. (#62208)
5720  
5721         * gdk/x11/gdkx.h: gdk/gdk/x11/gdkproperty-x11.c: Export
5722         gdk_x11_xatom_to_atom, gdk_x11_atom_to_xatom().
5723  
5724         * gdk/gdktypes.h docs/Changes-2.0.txt: Make GdkAtom
5725         an opaque pointer type so the compiler catches attempts
5726         to mingle it with X atoms.
5727
5728         * gdk/x11/{gdkdnd-x11.c,gdkevents-x11.c,gdkglobals-x11.c,
5729           gdkkeys-x11.c, gdkmain-x11.c, gdkprivate-x11.c, 
5730           gdkproperty-x11.c, gdkselection-x11.c, gdkwindow-x11.c}
5731           gtk/{gtkclist.c,gtkctree.c,gtkdnd.c,gtkplug.c,gtksocket.c}
5732           tests/testdnd.c,tests/testselection.c: 
5733         Fix up for above atom changes.
5734
5735         * gdk/gdkselection.h (GDK_SELECTION_CLIPBOARD): Add, since we
5736         now have the ability to add custom predefines.
5737
5738         * gtk/{gtkentry.c,gtklabel.c,gtkoldeditable.c,gtktextview.c}:
5739         Use GDK_SELECTION_CLIPBOARD instead of GDK_NONE in calls
5740         to gtk_clipboard_get().
5741
5742         * gdk/win32/gdkproperty-win32.c: Add CLIPBOARD, fix up
5743         for GdkAtom => pointer change.
5744
5745         * gdk/linux-fb/gdkproperty-fb.c: Fix handling of predefined
5746         atoms, fix for GdkAtom => pointer change.
5747
5748 Mon Oct 22 00:26:46 2001  Kristian Rietveld  <kristian@planet.nl>
5749
5750         * gtk/gtkspinbutton.c: remove ARROW_SIZE constant, use
5751         new function spin_button_get_arrow_size() instead.
5752
5753         * gtk/gtkstyle.c (gtk_default_draw_arrow): actual size of
5754         arrow was hardcoded, it's now variable.
5755
5756         Fixes bug #50200
5757
5758 Sat Oct 20 18:16:04 2001  Manish Singh  <yosh@gimp.org>
5759
5760         * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
5761         PROP_EXPANDER_COLUMN can be NULL, so don't do a object cast check
5762         for those
5763
5764 Sat Oct 20 19:38:16 2001  Owen Taylor  <otaylor@redhat.com>
5765
5766         * demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
5767         in favor of g_signal_*, gtk_object_* in favor of 
5768         g_object_*.
5769
5770 Fri Oct 19 18:35:22 2001  Manish Singh  <yosh@gimp.org>
5771
5772         * gtk/{gtkentry.c,gtktextview.c}: since GtkIMContext derives directly
5773         from GObject now, we have to use the g_object_* functions, not
5774         gtk_object_*.
5775
5776 Fri Oct 19 22:46:54 2001  Kristian Rietveld  <kristian@planet.nl>
5777
5778         * gtk/gtktreemodelsort.[ch]: we probably have rows_reordered
5779         nailed down now (this code is not yet ready for general consumption)
5780
5781 Fri Oct 19 13:44:51 2001  Manish Singh  <yosh@gimp.org>
5782
5783         * gtk/gtktreeview.c (gtk_treeview_scroll_to_cell): correct docs
5784         for use_align
5785
5786 Fri Oct 19 15:34:06 2001  Owen Taylor  <otaylor@redhat.com>
5787
5788         * gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
5789
5790 Fri Oct 19 15:08:30 2001  Owen Taylor  <otaylor@redhat.com>
5791
5792         * gtk/{gtkimcontext.c,gtkimcontextsimple.c,gtkimmulticontext.c}
5793         modules/input/{gtkimcontextxim.c,imcyrillic-translit.c,iminuktitut.c,
5794         imipa.c,imthai-broken.c,imviqr.c}: Make GtkIMContext derive from
5795         GObject, not GtkObject. (#62621)
5796
5797 Fri Oct 19 12:49:12 2001  Owen Taylor  <otaylor@redhat.com>
5798
5799         * tests/testsocket.c: Remove now useless include of unistd.h,
5800         fix wrong argument gtk_socket_steal. (Hans Breuer, #58541)
5801         
5802 Fri Oct 19 12:24:32 2001  Owen Taylor  <otaylor@redhat.com>
5803
5804         * gdk/linux-fb/gdkfont-fb.c: Fix up for change to 
5805         Pango font API. #61933. (Untested, even for compilation.)
5806
5807 Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
5808
5809         * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
5810         export gtk_disable_setlocale(). (Caught by Sven Neumann)
5811
5812 2001-10-18  Havoc Pennington  <hp@redhat.com>
5813
5814         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
5815
5816 2001-10-18  Havoc Pennington  <hp@redhat.com>
5817
5818         * gtk/gtkbutton.c (gtk_button_class_init): Change button signals
5819         to GTK_RUN_LAST, #50239
5820
5821 2001-10-18  HideToshi Tajima  <hidetoshi.tajima@sun.com>
5822
5823         * gtk/gtkimmodule.c (match_locale):
5824         Support "*" for all locales with least priority
5825         when to select default im module, #58201
5826
5827 2001-10-18  Matthias Clasen  <matthiasc@poet.de>
5828
5829         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): 
5830         Fix docs. (#61976)
5831  
5832         * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
5833
5834         * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
5835
5836         * gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
5837         gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
5838         gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
5839         gdk/win32/gdkpixmap-win32.c, gdk/linux-fb/gdkfb.h,
5840         gdk/linux-fb/gdkwindow-fb.c, gdk/linux-fb/gdkpixmap-fb.c:
5841         Add gdk_window_lookup, gdk_window_foreign_new, gdk_pixmap_lookup
5842         and gkd_pixmap_foreign_new to the gdk frontend api. (#62063)
5843
5844         * gtk/gtkselection.c: Remove gdk backend dependencies. (#62063)
5845
5846         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): 
5847         Don't restrict the width of the spinbutton entry field 
5848         to 10 digits. (#58681)
5849
5850 Thu Oct 18 14:58:14 2001  Jonathan Blandford  <jrb@redhat.com>
5851
5852         * tests/testtreeflow.c: new test program for the tree.
5853
5854 Thu Oct 18 14:22:10 2001  Jonathan Blandford  <jrb@redhat.com>
5855
5856         * gtk/gtktreestore.c (gtk_tree_store_remove): fix small bug
5857         reported by (Oleg Maiboroda), #62600
5858
5859 2001-10-18  Michael Meeks  <michael@ximian.com>
5860
5861         * gtk/gtkentry.c (gtk_entry_set_property),
5862         (gtk_entry_get_property): impl 'text'
5863         (gtk_entry_class_init): add the 'text' prop.
5864         (gtk_entry_insert_text): notify 'text' changed.
5865         (gtk_entry_delete_text): ditto.
5866
5867 2001-10-17  Matthias Clasen  <matthiasc@poet.de>
5868
5869         * gtk/gtkdnd.c, gtk/gtkclipboard.c, gdk/x11/gdkmain-x11.c:
5870         Documentation updates.
5871
5872 Wed Oct 17 15:17:20 2001  Owen Taylor  <otaylor@redhat.com>
5873
5874         * gtk/gtkentry.c (gtk_entry_real_insert_text): Fix mistake
5875         in truncating length of text to MAX_SIZE. (Found by 
5876         Padraig O'Briain, #62055)
5877
5878 Tue Oct 16 17:04:44 2001  Owen Taylor  <otaylor@redhat.com>
5879
5880         * gtk/gtkwidget.c: Rename ACTIVATE_MNEMONIC enum to
5881         MNEMONIC_ACTIVATE; signal was changed a long time
5882         ago.
5883
5884         * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale): 
5885         Fix wrong return statement. (Reported by HideToshi
5886         Tajima and others.)
5887
5888         * gtk/gtklabel.h (struct _GtkLabelClass): Remove
5889         left over select_all vfunc.
5890
5891 Tue Oct 16 15:50:03 2001  Owen Taylor  <otaylor@redhat.com>
5892
5893         * gtk/gtkwidget.c (gtk_widget_translate_coordinates): Add
5894         a utility function to translate coordinates relative to
5895         one widget's allocation to coordinates relative to another
5896         widget's allocation.
5897
5898         * gtk/gtkradiobutton.c: Add a special ->focus() implementation
5899         that:
5900          - only accepts external focus if there is no active
5901            member of the group or the button is active.
5902          - makes arrow keys move the active button as well
5903            as the focus
5904          - make tab tab out directly.
5905         This makes a radio button group act as a single focus location.
5906         (#53577).
5907         
5908         * gtk/gtkcontainer.c (gtk_container_focus): Remove prefiltering -
5909         it was only a small optimization that didn't matter and made
5910         things more complicated.
5911
5912         * gtk/gtkcontainer.c (gtk_container_focus_tab): Get rid of custom
5913         sorter for FOCUS_TAB as we did for the other focus directions,
5914         sort by center of widgets, not upper-left corner. (Shouldn't
5915         matter in general.)
5916
5917         * gtk/gtkcontainer.c: Restructure code to remove duplicate code
5918         from the different types of focusing: encapsulate sorting the
5919         widgets for the focus direction into one routine
5920         (gtk_container_focus_sort()) and then share the work of moving the
5921         focus between the different focus directions.
5922
5923         * gtk/gtkcontainer.c: Fix bug where arrow navigation might not
5924         work correctly with focus chains containing non-immediate
5925         children. Sorting was being done using allocation coordinates for
5926         each widget in the focus chain, and if there were intermediate
5927         window-widgets, these allocations would not be in the same
5928         coordinate system.
5929
5930 Tue Oct 16 15:12:26 2001  Jonathan Blandford  <jrb@redhat.com>
5931
5932         * gtk/gtkoptionmenu.c (gtk_option_menu_mnemonic_activate): add a
5933         mnemonic_activate function to option menu.
5934
5935 2001-10-15  Murray Cumming <murrayc@usa.net>
5936
5937         * gtk/gtkinputdialog.c, gtk/gtktoolbar.c,  gtk/gtkwidget.c:
5938           Corrected the type names used in some calls to g_signal_new().
5939         
5940 Sat Oct 13 07:09:30 2001  Tim Janik  <timj@gtk.org>
5941
5942         * gtk/gtkbindings.c (gtk_binding_set_add_path): to compare pattern
5943         specs, use g_pattern_spec_equal() instead of direct field accesses.
5944         upon compressing two equal paths of the same type, the resulting
5945         priority has to be the maximum.
5946         * gtk/gtkenums.h (enum): take GTK_PATH_PRIO_MASK out of the
5947         GtkPathPriorityType enum and make it a macro.
5948
5949 2001-10-12  Matthias Clasen  <matthiasc@poet.de>
5950
5951         * gtk/gtkwidget.c: Fix some doc comments.
5952
5953 Fri Oct 12 11:39:20 2001  Joshua N Pritikin  <vishnu@pobox.com>
5954
5955         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): Fix to work
5956         on empty models.
5957
5958 2001-10-11  Matthias Clasen  <matthiasc@poet.de>
5959
5960         * gtk/gtkcolorsel.c, gtk/gtkwidget.c, gtk/gtktreeview.c:
5961         Remove stale gdk backend includes.
5962  
5963 2001-10-10  Michael Meeks  <michael@ximian.com>
5964
5965         * gtk/gtkcombo.c (gtk_combo_class_init): add enable_empty
5966         and value_in_list properties.
5967         (gtk_combo_set_value_in_list): notify change.
5968         (gtk_combo_set_property, gtk_combo_get_property): impl. prop.
5969
5970 2001-10-11  James Henstridge  <james@daa.com.au>
5971
5972         * configure.in: add AS=CC and ASFLAGS=CFLAGS substitutions so
5973         that gtk+ can be built with automake 1.5 while not breaking
5974         things for automake 1.4.
5975
5976 Wed Oct 10 12:48:38 2001  Owen Taylor  <otaylor@redhat.com>
5977
5978         * gtk/gtkmain.c (gtk_init_check): Call setlocale (LC_ALL, "").
5979         (#60606)
5980
5981         * gtk/gtkmain.c (gtk_disable_setlocale): Add function
5982         to disable calling setlocale (LC_ALL, "").
5983
5984         * gtk/gtkmain.c (gtk_set_locale): Indicate in the 
5985         docs that this function is not typically useful.
5986
5987         * gdk/x11/{gdkim-x11.c,gdkmain-x11.c,gdkprivate-x11.h}: 
5988         Automatically initialize GDK for the current locale
5989         on gdk_init(). Don't reset locale to C when
5990         XSupportsLocale() fails.
5991
5992         * gdk/linux-fb/gdkim-fb.c (gdk_set_locale): Remove
5993         useless checks for UTF-8 locale breakage that mattered
5994         only for X.
5995
5996         * examples/calendar/calendar.c
5997         tests/{testgtk.c,testtext.c,testcalendar.c}: Remove calls to 
5998         gtk_set_locale().
5999
6000         * gtk/gtkiconfactory.c gtk/gtkitemfactory.c:
6001         gdk_pixbuf_new_from_stream => gdk_pixbuf_new_from_inline.
6002
6003 Wed Oct 10 21:13:46 2001  Kristian Rietveld  <kristian@planet.nl>
6004
6005         * gtk/gtktreemodel.[ch]: added gtk_tree_model_get_iter_from_string().
6006
6007         Fixes bug #61904
6008
6009 Wed Oct 10 01:19:04 2001  Jonathan Blandford  <jrb@redhat.com>
6010
6011         * gtk/gtktreeselection.c (gtk_tree_selection_iter_is_selected):
6012         new function, #61923
6013         (gtk_tree_selection_path_is_selected): Ditto
6014
6015 Tue Oct  9 17:40:24 2001  Jonathan Blandford  <jrb@redhat.com>
6016
6017         * gtk/gtktreestore.c (gtk_tree_store_finalize): We're a gobject,
6018         not a GtkObject.  Thanks andersca.
6019
6020         * gtk/gtkliststore.c (gtk_list_store_finalize): ditto
6021
6022 Tue Oct  9 14:50:51 2001  Jonathan Blandford  <jrb@redhat.com>
6023
6024         * gtk/gtktreeviewcolumn.c
6025         (gtk_tree_view_model_sort_column_changed): fix broken code.
6026
6027 2001-10-08  Matthias Clasen  <matthiasc@poet.de>
6028
6029         * gtk/gtkselection.c: s/succesfully/successfully/g
6030
6031 2001-10-08  Havoc Pennington  <hp@pobox.com>
6032
6033         * demos/gtk-demo/stock_browser.c: remove unused enum
6034
6035         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
6036         pass the current selection state of the node in to the user
6037         selection func
6038
6039 2001-10-06  Matthias Clasen  <matthiasc@poet.de>
6040
6041         * gdk/x11/gdkx.h (GDK_CURSOR_XCURSOR): Replace reference to 
6042         non-existent function gdk_x11_cursor_get_xid 
6043         by gdk_x11_cursor_get_xcursor.
6044
6045 Fri Oct  5 20:50:00 2001  Jonathan Blandford  <jrb@redhat.com>
6046
6047         * gtk/gtktreestore.c (gtk_tree_store_iter_has_child): improve
6048         warning.
6049
6050         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): ref and
6051         unref nodes, #okay61676
6052
6053         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_sort): we listen
6054         to the property; no need to clear the other columns.  Also, we go
6055         to 'unsorted' if the model supports it.
6056
6057 2001-10-05  Sven Neumann  <sven@gimp.org>
6058
6059         * demos/testpixbuf-save.c
6060         * demos/testpixbuf-scale.c: simple tests for the new PNG tEXt chunk 
6061         feature.
6062
6063 Fri Oct  5 19:06:07 2001  Kristian Rietveld  <kristian@planet.nl>
6064
6065         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): should
6066         destroy the search dialog
6067
6068         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
6069         added check to prevent creation of a search dialog if there's
6070         already one around
6071
6072         * gtk/gtktreeview.c: Define GTK_TREE_VIEW_SEARCH_DIALOG_KEY, and use
6073         it instead of "search-dialog" (when getting/setting the search dialog
6074         widget).
6075
6076 2001-10-05  Jakub Steiner <jimmac@ximian.com>
6077
6078         * gtk/stock-icons/stock_broken_image.png: broken images icon
6079
6080 2001-10-04  Havoc Pennington  <hp@pobox.com>
6081
6082         Fix #56586
6083         
6084         * gtk/gtksettings.c (gtk_settings_class_init): move the F10
6085         accelerator setting here...
6086
6087         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): ...from over here,
6088         because we try to use it when a menu bar hasn't necessarily been 
6089         initialized.
6090
6091 2001-10-03  Havoc Pennington  <hp@redhat.com>
6092
6093         * tests/testtextbuffer.c (logical_motion_tests): fix test case, 
6094         it previously verified incorrect behavior
6095
6096         Fixes for #61565
6097         
6098         * gtk/gtktextiter.c (gtk_text_iter_set_line): don't return lines
6099         off the end
6100         (_gtk_text_btree_get_iter_at_line_char): don't return lines off
6101         the end
6102         (_gtk_text_btree_get_iter_at_line_byte): don't return lines off
6103         the end
6104         (gtk_text_iter_forward_lines): if on the last line, move to end of
6105         it
6106
6107         * gtk/gtktextbtree.c (_gtk_text_btree_last_could_contain_tag):
6108         don't return a line off the end
6109
6110 Wed Oct  3 23:47:25  Kristian Rietveld  <kristian@planet.nl>
6111
6112         * gtk/gtkeditable.[ch]: move insert_text and delete_text virtual
6113         functions to do_insert_text and do_delete_text, add signals
6114         insert_text, delete_text and changed
6115
6116         * gtk/gtkentry.[ch]: remove signals insert_text, delete_text
6117         and changed. Updates to match new situation.
6118
6119         * gtk/gtkspinbutton.c: updates to match new situation
6120
6121         * gtk/gtkoldeditable.h: remove signals changed, insert_text
6122         and delete_text
6123
6124         * gtk/gtkoldeditable.c: updates to match new situation
6125
6126         * gtk/gtktext.c: updates to match new situation
6127
6128         Fixes bug #59803
6129
6130 2001-10-03  Havoc Pennington  <hp@redhat.com>
6131
6132         * gtk/gtktextiter.c (test_log_attrs): allow testing the end 
6133         position
6134
6135         * gtk/gtktextbuffer.c (compute_log_attrs): update for pango
6136         changes
6137
6138         * tests/testtextbuffer.c (logical_motion_tests): updates
6139
6140 2001-10-03  jacob berkman  <jacob@ximian.com>
6141
6142         * gtk/gtkwidget.c (gtk_widget_style_get_property): 
6143         * gtk/gtkstyle.c (_gtk_style_peek_property_value): 
6144         * gtk/gtksettings.c (apply_queued_setting): 
6145         * gtk/gtkmain.c (gtk_init_check): 
6146         * gtk/gtkcontainer.c (gtk_container_child_get_property):
6147         s/retrive/retrieve/
6148
6149 Wed Oct  3 20:29:29 2001  Kristian Rietveld  <kristian@planet.nl>
6150
6151         * gtk/gtktreemodelsort.[ch]: preparation for surgery
6152         * tests/testtreesort.c: ditto
6153
6154 2001-10-02  Havoc Pennington  <hp@redhat.com>
6155
6156         Throughout: assorted docs
6157         
6158         * gdk/gdkwindow.h: deprecate gdk_window_set_hints(), it's broken,
6159         gdk_window_set_geometry_hints() should be used instead.
6160
6161         * gdk/gdkimage.h: deprecate gdk_image_ref, gdk_image_unref, and
6162         document them
6163
6164         * gdk/x11/gdkx.h: remove gdk_get_client_window() since it doesn't
6165         seem to exist in any .c files
6166
6167         * gdk/x11/gdkcolor-x11.c (gdk_colormap_query_color): docs, 
6168         g_return_if_fail (pixel < colormap->size).
6169
6170 Wed Oct  3 10:42:54 2001  Owen Taylor  <otaylor@redhat.com>
6171
6172         * gtk/gtkdnd.c (gtk_drag_dest_find_target): Allow
6173         NULL for @target_list to mean, use
6174         gtk_drag_dest_get_target_list (widget).
6175
6176         * gtk/gtkdnd.c (gtk_drag_finish): Fix problem where
6177         drop could hang when calling gtk_drag_finish with 
6178         success == FALSE and del == TRUE.
6179
6180         * gtk/gtkdnd.c (gtk_drag_dest_drop): Fix problem where
6181         drops without a matching target found would propagate
6182         to the parent widget rather than being rejected.
6183
6184         * gtk/gtktextview.c (gtk_text_view_drag_data_received): 
6185         Use text_view->dnd_mark instead of mark name to be
6186         consistent with the rest of the code.
6187
6188         * gtk/gtktextview.c (gtk_text_view_drag_motion): Make
6189         pendantically correct for a drop-only-in-some-places
6190         widget. (Check whether you can insert in drag_drop,
6191         not just in drag_motion ... matters in theory, and
6192         for Motif drag and drop in practice.)
6193
6194         * gtk/gtkentry.c (gtk_entry_drag_drop): Patch from 
6195         Damian Ivereigh to not allow drops on non-editable
6196         entries. (#61124)
6197
6198         * gtk/gtkentry.c (gtk_entry_motion_notify): Don't allow
6199         text to be moved from a non-editable entry.
6200         
6201 2001-10-03  James Henstridge  <james@daa.com.au>
6202
6203         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
6204         s/width/fixed_width/ in order to get things to compile.
6205
6206 Wed Oct  3 00:37:09 2001  Jonathan Blandford  <jrb@redhat.com>
6207
6208         * gtk/gtkcelleditable.c: docs
6209
6210         * gtk/gtktreemodel.h: more docs.
6211
6212 2001-10-02  Havoc Pennington  <hp@redhat.com>
6213
6214         * gdk/x11/gdkwindow-x11.c: docs
6215
6216         * tests/testtextbuffer.c (logical_motion_tests): add sentence
6217         boundary tests
6218
6219 Tue Oct  2 20:18:32 2001  Kristian Rietveld  <kristian@planet.nl>
6220
6221         * demos/gtk-demo/Makefile.am: add editable_cells.c,
6222         list_store.c and tree_store.c
6223
6224         * demos/gtk-demo/appwindow.c: remove tearoff item from
6225         File menu, put menubar and toolbar in handle boxes.
6226
6227         * demos/gtk-demo/genincude.pl: various changes to support trees
6228
6229         * demos/gtk-demo/main.c: various changes to support trees
6230
6231         * demos/gtk-demo/stock_browser.c: changed name of demo
6232         to Stock Item and Icon Browser, so geninclude.pl doesn't see
6233         it as child
6234
6235         * demos/gtk-demo/editable_cells.c: new file/demo
6236         * demos/gtk-demo/list_store.c: new file/demo
6237         * demos/gtk-demo/tree_store.c: new file/demo
6238
6239 Mon Oct  1 16:05:44 2001  Owen Taylor  <otaylor@redhat.com>
6240
6241         * gtk/gtkrc.c gtk/gtksettings.c: 
6242         g_string_printfa => g_string_append_printf.
6243
6244 Mon Oct  1 16:08:23 2001  Jonathan Blandford  <jrb@redhat.com>
6245
6246         * gtk/gtkliststore.c (gtk_list_store_class_init): add a finalize
6247         and destroy handler.
6248
6249         * gtk/gtktreestore.c (gtk_list_store_class_init): ditto, #59963
6250
6251         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Add
6252         'start_editing' flag to select_cursor_row.  Bug spotted by Manish
6253         Singh <yosh@gimp.org>.
6254
6255 2001-10-01  Matthias Clasen  <matthiasc@poet.de>
6256
6257         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_scanner): replace
6258         g_scanner_add/remove_symbol by g_scanner_scope_add/remove_symbol.
6259
6260         * gtk/gtkrc.c (gtk_rc_parse_any): here as well.
6261
6262 Mon Oct  1 14:07:02 2001  Jonathan Blandford  <jrb@redhat.com>
6263
6264         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): change
6265         scroll_to_cell delayed code to happen in size_allocate.
6266
6267         * gtk/gtkstyle.c (gtk_default_draw_expander): change
6268         prelight/normal arrow drawing.
6269
6270         * gtk/gtktreedatalist.c: Change compare func to use g_utf8_collate
6271
6272         * gtk/gtktreestore.c: refactor.
6273
6274 Sun Sep 30 22:15:52 2001  Manish Singh  <yosh@gimp.org>
6275
6276         * gtk/gtkcheckbutton.c (gtk_check_button_size_allocate): Applied
6277         patch from Soeren Sandmann <sandmann@daimi.au.dk>. Vertically
6278         centers the child in relation to the to indicator height.
6279
6280 Sun Sep 30 15:11:59 2001  Jonathan Blandford  <jrb@redhat.com>
6281
6282         * gtk/gtktreestore.c (gtk_tree_store_remove): Make ITERS_PERSIST
6283         correct
6284
6285 Sun Sep 30  07:01:42 2001 CEST <mikeh@bahnhof.se>
6286
6287         * gtk/gtkcellrenderertext.c: I reverted back to old "weight"
6288         property code using g_param_spec_int and changed from
6289         g_value_get_enum to g_value_get_int instead. Probably a better way
6290         to fix the problem :-)
6291
6292 Sun Sep 30  05:31:32 2001 CEST Mikael Hermansson <tyan@linux.se>
6293
6294     * gtk/gtkcellrenderertext.c changed "weight" property type from 
6295       g_param_spec_int to g_param_spec_enum.
6296
6297 Sat Sep 29 12:25:26 2001  Manish Singh  <yosh@gimp.org>
6298
6299         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): typo
6300         fix: s/Wether/Whether/ in reorderable property description
6301
6302 Thu Sep 27 16:46:36 2001  Jonathan Blandford  <jrb@redhat.com>
6303
6304         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): only
6305         start editing when you select with a keyboard.
6306
6307         (gtk_tree_view_button_press_event): much more graceful now.
6308
6309         * gtk/gtkstyle.c: Draw togglebutton better.
6310
6311 2001-09-26  Havoc Pennington  <hp@redhat.com>
6312
6313         * demos/gtk-demo/dialog.c (interactive_dialog_clicked): add demo
6314         of passing non-stock label in to gtk_dialog_new_with_buttons
6315
6316         * gtk/gtktextview.c (cursor_blinks): disable cursor blink when
6317         debugging updates
6318
6319         * gtk/gtktextiter.h: comment about how GtkTextIter struct contents
6320         are private
6321
6322         * gtk/gtkbutton.c (gtk_button_new_from_stock): if stock ID doesn't
6323         exist, fall back to mnemonic label, not plain label, bug #61184
6324         
6325 Wed Sep 26 19:48:01 2001  Jonathan Blandford  <jrb@redhat.com>
6326
6327         * gtk/gtktreestore.c (gtk_tree_store_set_valist): Stop being
6328         stupid and emitting the signal every time.
6329
6330         * gtk/gtkliststore.c (gtk_list_store_set_valist): ditto
6331
6332 Wed Sep 26 16:35:59 2001  Owen Taylor  <otaylor@redhat.com>
6333
6334        Patch from Mark McLoughlin <mark@skynet.ie> (#61233)
6335
6336        * contrib/gdk-pixbuf-xlib/Makefile.am: install
6337        gdk-pixbuf-xlib-2.0.pc.
6338
6339 Wed Sep 26 16:15:25 2001  Owen Taylor  <otaylor@redhat.com>
6340
6341         * gtk/gtknotebook.c (gtk_notebook_set_tab_label): Fix
6342         problem where menmonic wasn't removed properly when
6343         setting a label when there already is a label.
6344         Also, handle setting the tab label back to the same
6345         value. (#61160, #61161)
6346
6347         * gtk/gtkentry.c (paste_received): Patch from 
6348         Damian Ivereigh to replace selection if there is 
6349         one. (#61121)
6350
6351 2001-09-25  Darin Adler  <darin@bentspoon.com>
6352
6353         * tests/.cvsignore: Ignore new test program.
6354
6355 2001-09-25  Havoc Pennington  <hp@redhat.com>
6356
6357         * gtk/gtktextview.c: fix for #50317
6358         
6359 2001-09-25  Havoc Pennington  <hp@redhat.com>
6360
6361         * gtk/gtktextview.c (gtk_text_view_key_press_event): use 
6362         gtk_text_iter_can_insert
6363         
6364         * gtk/gtktextbuffer.c: use gtk_text_iter_can_insert
6365
6366         * gtk/gtktextiter.c (find_line_log_attrs): fixes, #57611, #57613
6367          (gtk_text_iter_can_insert): new function to fix #60282, should
6368         also fix msw's "can paste into empty buffer" bug.
6369
6370         * gtk/gtktexttag.c (gtk_text_tag_event): change type check for 
6371         "event object,"  #59091
6372
6373         * gtk/gtktextbtree.c: indentation fixes
6374
6375         * gtk/gtktextiter.c (find_by_log_attrs): fixes
6376
6377 Tue Sep 25 12:41:17 2001  Owen Taylor  <otaylor@redhat.com>
6378
6379         * configure.in: Version 1.3.9, interface age 0, binary age 0.
6380
6381         * configure.in: Require GLib-1.39, Pango 0.20, Atk 0.5.
6382
6383         * NEWS: Updates.
6384
6385 Mon Sep 24 11:59:09 2001  Owen Taylor  <otaylor@redhat.com>
6386
6387         * gtk/gtkstyle.[ch] (_gtk_draw_insertion_cursor): Shared
6388         function for drawing cursors between gtkentry/gtklabel/gtktextview.
6389         Should this be public? It has a bit of an odd interface, but
6390         custom editing widgets probably should be using it.
6391         Function will draw with wider width for taller cursors, and
6392         draws a little indicator arrow to indicate directoin for split 
6393         cursors.
6394
6395         * gtk/gtktextview.c: Add a "cursor_color" property.
6396
6397         * gtk/gtktextdisplay.[ch]: Add a cursor_gc parameter to
6398         gtk_text_layout_draw().
6399
6400         * gtk/gtkentry.c gtk/gtklabel.c gtk/gtktextdisplay.c: Use
6401         _gtk_draw_insertion_cursor().
6402
6403 Tue Sep 25 11:22:23 2001  Owen Taylor  <otaylor@redhat.com>
6404
6405         * gtk/gtkcellrenderertext.c gtk/gtktexttag.c: Restore
6406         the behavior where you could turn family_set (etc) back on
6407         and get back the values you had before.
6408
6409         * demos/gtk-demo/stock_browser.c (id_to_macro): Use
6410         g_string_ascii_up() rather than looping through the
6411         string ourself.
6412
6413 Tue Sep 25 15:32:44 2001  Jonathan Blandford  <jrb@redhat.com>
6414
6415         * gtk/gtktreeviewcolumn.c
6416         (gtk_tree_view_column_set_cell_renderer): Removed
6417         (gtk_tree_view_column_set_alignment): xalign = CLAMP (xalign, 0.0, 1.0);  Fixes 61012.
6418
6419         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Fixed #61012
6420         Patch from Detlef Reichl
6421
6422 2001-09-25  Havoc Pennington  <hp@redhat.com>
6423
6424         * tests/testtextbuffer.c (line_separator_tests): Add tests for
6425         line separators, addresses bug #57428
6426
6427 Tue Sep 25 12:34:42 2001  Jonathan Blandford  <jrb@redhat.com>
6428
6429         * gtk/gtkentry.c: Make a GtkCellEditable
6430         (get_widget_window_size): Change to let it honor size_allocate
6431         when a CellEditable.
6432
6433         * gtk/gtktreeview.c: M-x clean-line-ends.  Lots of focus and
6434         editable changes.
6435         (gtk_tree_view_set_cursor): Now you can set the cursor
6436         horizontally, as well as start editing.
6437
6438         * gtk/gtkstyle.c (gtk_default_draw_check): changing toggle drawing
6439         code to look more like the other check buttons.
6440
6441         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_size):
6442         Change the way we calculate cell size.
6443
6444         * gtk/gtkmarshal.list (VOID:STRING,STRING): new marshaller.
6445
6446         * demos/gtk-demo/sizegroup.c: Add mnemonics.
6447
6448         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): Fix docs.
6449         Fix logic.
6450
6451         * gtk/gtkcellrenderertext.c: Change to be editable.
6452
6453         * gtk/gtkcellrenderertoggle.c: Change to be activatable.
6454
6455         * test/testtreesort.c: Fix misspelling
6456
6457         * test/testreecolumns.c: Add mnemonics.
6458
6459         * test/testreeedit.c: New test program.
6460
6461 2001-09-25  Havoc Pennington  <hp@pobox.com>
6462
6463         * gtk/gtkwindow.c: Put notes in gtk_window_set_has_frame(),
6464         etc. docs about how these are not going to do what you want for 
6465         the X/win32 ports. Futile attempt to avoid a FAQ...
6466
6467 2001-09-24  James Henstridge  <james@daa.com.au>
6468
6469         * gtk/gtkmarshal.list (VOID): add marshal function types.
6470
6471         * gtk/gtkctree.c (gtk_ctree_class_init): make arguments have type
6472         GTK_TYPE_CTREE_NODE|G_SIGNAL_TYPE_STATIC_SCOPE rather than
6473         GTK_TYPE_POINTER.
6474         (gtk_ctree_node_get_type): implement boxed type for GtkCTreeNodes
6475         with no-op copy/free functions.
6476
6477         * gtk/gtkctree.h (gtk_ctree_node_get_type): add prototype for
6478         GtkCTreeNode get_type function.
6479
6480 2001-09-24  Havoc Pennington  <hp@redhat.com>
6481
6482         * gtk/gtktextiter.c, gtk/gtktextbuffer.c, gtk/gtktextbtree.c,
6483         gtktextlayout.c:
6484         Get rid of the newline-that-could-not-be-deleted; buffers may 
6485         now be zero-length. Much easier to fix than expected, once 
6486         I figured out the right way to do it. However, there are 
6487         various subtle bugs introduced by this that will have to get 
6488         sorted out. Please use bugzilla.
6489
6490 Mon Sep 24 15:09:08 2001  Owen Taylor  <otaylor@redhat.com>
6491
6492         * gtk/gtkwindow.c (gtk_window_move_resize): Don't wait for a
6493         response back from the window manager if our size hasn't changed 
6494         since we won't get a response back from the window manager;
6495         there was code in there to do this, but it was in the wrong
6496         place so if the hints change and the size didn't we'd expect
6497         a response.
6498
6499         Also, optimize the position-only-changed case by running
6500         the resize queue immediately, and clean up some comments
6501         for the changes.
6502
6503 Mon Sep 24 12:48:25 2001  Owen Taylor  <otaylor@redhat.com>
6504
6505         * gtk/gtknotebook.h: Add a compat macro that got lost.
6506
6507         * gtk/gtktreestore.c: Doc fixes.
6508
6509         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix reference
6510         leak for windows that receive events after being destroyed.
6511         (#60863, Joshua N. Pritikin)
6512
6513         * gtk/gtktable.c (gtk_table_remove): Use gtk_widget_queue_resize
6514         rather than gtk_container_queue_resize().
6515
6516         * gtk/{gtkcontainer.c,gtkwidget.c,gtkwindow.c}: _gtk prefix
6517         gtk_container_queue_resize, gtk_container_queue_resize_widgets,
6518         gtk_container_child_composite_name. (#60217.)
6519
6520 2001-09-22  Hans Breuer  <hans@breuer.org>
6521
6522         * gtk/gtkmenu.h : fix compat macros for gtk_menu_<prepend|insert>
6523
6524 Sat Sep 22 16:50:34 2001  Kristian Rietveld  <kristian@planet.nl>
6525
6526         * gtk/gtktexttag.c (gtk_text_tag_set_property): (case PROP_WEIGHT):
6527         weight value should be an int
6528
6529 Sat Sep 22 15:17:41 2001  Kristian Rietveld  <kristian@planet.nl>
6530
6531         * gtk/gtkmenu.c (gtk_menu_select_item): move most code
6532         to gtk_menu_scroll_item_visible(). Only call
6533         gtk_menu_scroll_item_visible() if the menu widget has been
6534         realized. Fixes bug #55310.
6535
6536 2001-09-21  Havoc Pennington  <hp@redhat.com>
6537
6538         * gtk/gtktextview.c (gtk_text_view_key_press_event): don't pass
6539         key press to IM context if cursor isn't in an editable location;
6540         bug #58425, patch from Hidetoshi Tajima
6541
6542 2001-09-21  Havoc Pennington  <hp@redhat.com>
6543
6544         Bug #60862
6545         
6546         * gtk/gtktextbtree.c (gtk_text_btree_node_destroy): 
6547         (_gtk_text_btree_unref): fix up mark memory management
6548
6549         * gtk/gtktextmark.c (mark_segment_delete_func): ditto
6550
6551 2001-09-20  Havoc Pennington  <hp@redhat.com>
6552
6553         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): don't
6554         try to handle alignment here, because it's done by PangoLayout
6555         after we set the layout width. Fix from Dov.
6556
6557 2001-09-21  Hans Breuer  <hans@breuer.org>
6558
6559         * gdk/gdk.def :
6560         * gtk/gtk.def : updated externals
6561
6562         * gtk/gtkmain.h : define get_gtk_win32_directoty () 
6563         * gtk/gtkmain.c (find_module) : don't use module_name after freeing it.
6564         Also handle that Win32 pathes cann't be hard-coded      
6565
6566         * gtk/gtkrc.c : use get_gtk_win32_directoty () to cleanup the various
6567         module, themes etc directory calculations
6568
6569         * gdk/win32/gdkgeometry-win32.c : some more hacking to get coordinates
6570         >16 bit right. The size limit within Win9x appears _not_ to be 32767
6571         but slightly smaller ...
6572
6573         * gdk/win32/gdkwindow-win32.c : use impl->position_info to avoid 
6574         >16 bit clipping. Added dummy body for gdk_window_set_icon_list ()
6575
6576         * gdk/win32/gdkdrawable-win32.c : implement gdk_win32_drawable_get_handle ()
6577
6578         * gdk/win32/gdkevents-win32.c : some tweaking to get better expose
6579         handling. I'm not sure if it is better now, but at least not worse
6580
6581         * gdk/win32/makefile.msc : define INSIDE_GDK_WIN32, some cleanup
6582
6583         * gdk/win32/gdkwin32.h : reflect recent API restrictions
6584
6585 2001-09-21  Matt Wilson  <msw@redhat.com>
6586
6587         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy): set
6588         radio_menu_item->group to NULL after removing it from the list, as
6589         it is no longer in the group. (#60869)
6590
6591         * gtk/gtkradiobutton.c (gtk_radio_button_destroy): likewise
6592
6593 2001-09-20  Havoc Pennington  <hp@pobox.com>
6594
6595         * configure.in (PANGO_REQUIRED_VERSION)
6596         (ATK_REQUIRED_VERSION): add variables and checks for specific 
6597         versions of dependencies. Previously we didn't verify the 
6598         Pango or ATk versions.
6599
6600 2001-09-09  Havoc Pennington  <hp@pobox.com>
6601
6602         * gtk/gtktextiter.c: fool with indentation
6603         (gtk_text_iter_in_range): add g_return_if_fail
6604
6605 Thu Sep 20 17:45:54 2001  Joshua N Pritikin  <vishnu@pobox.com>
6606
6607         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): Fix
6608         ref count on new tag to be 1.  Update doc.  (#60836)
6609
6610 Thu Sep 20 16:20:47 2001  Owen Taylor  <otaylor@redhat.com>
6611
6612         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Remove unnecessary
6613         call to gdk_image_new_bitmap(). (#59094, reported by
6614         by Sven Neumann)
6615
6616 Thu Sep 20 15:31:35 2001  Owen Taylor  <otaylor@redhat.com>
6617
6618         * gtk/gtkcalendar.c (gtk_calendar_init): Use the current
6619         day, as well as the current month and year.
6620         (#59047, reported by Vitaly Tishkov)
6621
6622 Thu Sep 20 15:10:30 2001  Owen Taylor  <otaylor@redhat.com>
6623
6624         * gtk/gtkdialog.c (gtk_dialog_init): Automatically set
6625         set dialogs to GTK_WIN_POS_CENTER_ON_PARENT. (#60554)
6626         
6627 Thu Sep 20 18:00:56 2001  Kristian Rietveld  <kristian@planet.nl>
6628
6629         * tests/testgtk.c (struct OptionMenuItem): get rid of it,
6630
6631         (build_option_menu): add func argument, connect ::changed
6632         signal to option menu instead of connecting the ::activate
6633         signal to the menu items,
6634
6635         (toplevel): get rid of RADIOMENUTOGGLED macro,
6636
6637         (list_toggle_sel_mode), (clist_toggle_sel_mode),
6638         (ctree_toggle_line_style), (ctree_toggle_expander_style),
6639         (ctree_toggle_justify), (ctree_toggle_sel_mode),
6640         (progressbar_toggle_orientation), (progressbar_toggle_bar_style):
6641         use gtk_option_menu_get_history() instead of RADIOMENUTOGGLED,
6642
6643         (notebook_type_changed): merged standard_notebook(),
6644         notabs_notebook(), scrollable_notebook() and borderless_notebook()
6645         into notebook_type_changed()
6646
6647         (create_list), (create_ctree), (create_notebook),
6648         (create_progress_bar): changed OptionMenuItem arrays into
6649         gchar * arrays. Removed "Extended" item where used.
6650
6651         Fixes bug #59885
6652
6653 2001-09-20  Sven Neumann  <sven@gimp.org>
6654
6655         * configure.in
6656         * gdk/Makefile.am
6657         * gtk/Makefile.am
6658         * gtk/gtkselection.c
6659         * gtk/gtktreeview.c
6660         * gtk/gtkwindow.c: removed remaining traces of nanox GDK backend.
6661
6662 Thu Sep 20 11:19:42 2001  Owen Taylor  <otaylor@redhat.com>
6663
6664         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): Add
6665         a missing pango_layout_iter_free ().
6666
6667 Thu Sep 20 11:03:51 2001  Owen Taylor  <otaylor@redhat.com>
6668
6669         * gtk/gtkobject.c gtk/gtklist.c gtk/gtkplug.c gtk/gtksocket.c
6670         gtk/gtktreemodelsort.c gtk/gtktreeview.c: Small warning cleanups.
6671
6672         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_get_group): Change
6673         the function definition so we don't accidentally rely on
6674         the compat #define from gtk_radio_menu_item_group.
6675         (#60782, Jeff Franks)
6676
6677 Thu Sep 20 16:51:02 2001  Kristian Rietveld  <kristian@planet.nl>
6678
6679         * gtk/gtkwindow.c (gtk_window_get_frame_dimensions): returned
6680         incorrect values for top, right and bottom due to cut-and-paste
6681         bug. Pointed out by Vitaly Tishkov, fixes bug #59008
6682
6683 Wed Sep 19 17:59:27 2001  Owen Taylor  <otaylor@redhat.com>
6684
6685         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set
6686         _NET_WM_PID and WM_CLIENT_MACHINE properties on each
6687         window, not just on the client leader. (#58463)
6688
6689 Wed Sep 19 17:28:47 2001  Owen Taylor  <otaylor@redhat.com>
6690
6691         * gtk/gtkwidget.c (gtk_widget_new): Add missing cast.
6692
6693         * gtk/gtkmenuitem.[ch] gtk/gtkmenushell.c: Underscore prefix
6694         non-public _gtk_menu_item_set_placement.
6695
6696         * gtk/gtktooltips.h: Deprecate gtk_tooltips_set_delay().
6697
6698 Wed Sep 19 16:16:38 2001  Owen Taylor  <otaylor@redhat.com>
6699
6700         * gdk/win32/gdkcolor-win32.c gdk/x11/gdkcolor-x11.c 
6701           gdk/linux-fb/gdkcolor-fb.c:
6702         Fix propagated (flags && GDK_COLOR_WRITEABLE) typo.
6703         (#59723)
6704
6705 Wed Sep 19 16:12:16 2001  Owen Taylor  <otaylor@redhat.com>
6706
6707         * gdk/gdkpixbuf-render.c: Allow -1 for width/height
6708         to mean "width/height of pixbuf" (Patch from Matthias Clasen,
6709         #59723)
6710
6711 Wed Sep 19 16:01:27 2001  Owen Taylor  <otaylor@redhat.com>
6712
6713         Patch from Frank Belew #59037 for Solaris compilation.
6714
6715         * gtk/maketypes.awk: Change syntax slightly for a call
6716         to sub(), apparently making awk on Solaris happier.
6717
6718         * gtk/gtktreeview.c: Remove C++ comments.
6719
6720 Wed Sep 19 15:46:29 2001  Owen Taylor  <otaylor@redhat.com>
6721
6722         * gtk/gtkwindow.c: Add xgettext:no-c-format comment to
6723         to handle '99% of the time. (#60473, reported by Christian Rose)
6724
6725         * gtk/gtkwidget.h: Remove prototype for gtk_widget_get_usize()
6726         which no longer exists. (#60379, reported by Vitaly Tishkov)
6727
6728 Wed Sep 19 11:06:24 2001  Tim Janik  <timj@gtk.org>
6729
6730         * Released 1.3.8.
6731
6732         * gdk/Makefile.am: kill EXTRA_DIST clearing.
6733         
6734 Wed Sep 19 02:50:40 2001  Tim Janik  <timj@gtk.org>
6735
6736         * demos/Makefile.am ($(testpixbuf_OBJECTS)): don't use BUILT_SOURCES
6737         as its broken in automake 1.4, add explicit object rule to
6738         generate this.
6739         
6740         * gdk-pixbuf/Makefile.am: fix maintainer and normal cleanfiles.
6741         get rid of uneccessary stamps, group stuff more logically, and build
6742         sources due to object rules. fix srcdir!=builddir.
6743
6744 Tue Sep 18 20:47:16 2001  Owen Taylor  <otaylor@redhat.com>
6745
6746         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Fix 
6747         incorrect parameter to compute_double_length
6748         (#58680, patch from Matthias Clasen)
6749
6750         Fixes for compilation with Forte cc. (#59734, Derek Rafter)
6751
6752         * gtk/gtkwindow.h gtk/gtksizegroup.h: Remove extra ;.
6753
6754         * gdk/gdktypes.h (GdkModifierType): Write 1u << 31
6755         for GDK_RELEASE_MASK to avoid warnings with Forte.
6756
6757         * gtk/gtktexttag.c gtk/gtkcellrendertext.c: Add some missing
6758         break; statements.
6759
6760 2001-09-18  Alex Larsson  <alexl@redhat.com>
6761
6762         * gtk/gtkcheckbutton.c:
6763         * gtk/gtkradiobutton.c:
6764         Don't draw with GTK_STATE_ACTIVE.
6765
6766         * gtk/gtkclist.c:
6767         * gtk/gtkctree.c:
6768         Draw lines between rows with base_gc[GTK_STATE_NORMAL].
6769
6770         * gtk/gtktextdisplay.c:
6771         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
6772         unfocused with base_gc [GTK_STATE_ACTIVE].
6773         
6774         * gtk/gtkentry.c:
6775         Add select all menu-item.
6776         Default cursor color is red.
6777         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
6778         unfocused with base_gc [GTK_STATE_ACTIVE].
6779
6780         * gtk/gtklabel.[ch]:
6781         Add keynav + menu to selectable lables.
6782         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
6783         unfocused with base_gc [GTK_STATE_ACTIVE].
6784
6785         * gtk/gtkfilesel.c:
6786         Add drag and drop support.
6787
6788         * gtk/gtkstyle.c:
6789         (This was checked in earlier)
6790         New default values for text/base SELECTED and ACTIVE
6791         
6792 Tue Sep 18 23:51:49 2001  Tim Janik  <timj@gtk.org>
6793
6794         * configure.in: up version to 1.3.8, interface age 0,
6795         binary age 0, depend on glib 1.3.8.
6796
6797         * NEWS: 1.3.8 updates.
6798
6799 Tue Sep 18 18:46:54 2001  Jonathan Blandford  <jrb@redhat.com>
6800
6801         * gtk/gtktreeview.c (gtk_tree_view_start_editing): centralize all
6802         the editing code
6803
6804         * gtk/gtkcelleditable.c: Got rid of stop_editing, as there was no
6805         reason to call it beyond emiting the two signals.
6806
6807         * gtk/gtkentry.c (gtk_entry_class_init): add "has_frame" property
6808         to GtkEntry.
6809
6810 Wed Sep 12 11:21:14 2001  Owen Taylor  <otaylor@redhat.com>
6811
6812         * gtk/gtkcellrenderertext.[ch] gtk/gtktexttag.[ch]
6813           gtk/gtktextview.c tests/testgtk.c: Fix up for changes to 
6814         PangoFontDescription.
6815
6816         * gtk/gtkentry.c gtk/gtkclist.c gtk/gtkcellrenderertext.c
6817         gtk/gtkspinbutton.c: Fix up for change to PangoMetrics
6818         structure.
6819   
6820         * gtk/gtkfontsel.c: Fix up for new Pango font listing API.
6821
6822         * gtk/gtkstyle.[ch]: Add gtk_style_get_font/set_font to replace
6823         direct access to style->font. Deprecate gtk_style_ref/unref.
6824   
6825         * gtk/gtkclist.c gtk/gtkctree.c gtk/gtkstyle.c gtk/gtkwidget.c:
6826         Remove gtk_style_ref/unref with g_object_ref/unref.
6827   
6828         * gtk/gtkcalendar.c: Remove leftover macros accessing
6829         style->font.
6830   
6831         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Remove unused
6832         variable.
6833   
6834         * gtk/gtktext.c gtk/gtklabel.c: Use gtk_style_get_font() instead of 
6835         style->font.
6836
6837 Tue Sep 18 13:51:35 2001  Jonathan Blandford  <jrb@redhat.com>
6838
6839         * gtk/gtkcellrenderer.h (enum): Get rid of broken "can_edit" and
6840         "can_activate" properties in favor of
6841         GTK_CELL_RENDERER_MODE_INERT, GTK_CELL_RENDERER_MODE_ACTIVATABLE,
6842         and GTK_CELL_RENDERER_MODE_EDITABLE
6843
6844 Tue Sep 18 12:12:43 2001  Jonathan Blandford  <jrb@redhat.com>
6845
6846         * gtk/gtktreeview.c (gtk_tree_view_put): Add put for use with
6847         editable widgets.  This function is private, and should only be
6848         used by GtkTreeView.
6849
6850 2001-09-18  Matt Wilson  <msw@redhat.com>
6851
6852         * docs/Makefile.am (EXTRA_DIST): don't use += before =
6853
6854         * docs/faq/Makefile.am (EXTRA_DIST): likewise
6855
6856         * docs/tutorial/Makefile.am (EXTRA_DIST): likewise
6857         
6858         * gdk/Makefile.am (MAINTAINERCLEANFILES): likewise
6859         (EXTRA_HEADERS): likewise
6860
6861         * gtk/Makefile.am (MAINTAINERCLEANFILES): likewise
6862         (EXTRA_HEADERS): likewise
6863         (EXTRA_DIST): likewise
6864         (CLEANFILES): likewise
6865
6866         * gtk/stock-icons/Makefile.am (CLEANFILES): likewise
6867
6868         * tests/Makefile.am (EXTRA_DIST): likewise
6869         
6870         * Makefile.am (install-data-local): changed to use
6871         install-data-hook, which runs after install-pkgconfigDATA, so that
6872         the pkgconfigdir will have been created and populated first.
6873
6874 Mon Sep 17 17:39:52 2001  Jonathan Blandford  <jrb@redhat.com>
6875
6876         * gtk/gtkcelleditable.[ch]: Add editable interface.  This should
6877         be the last big GtkTreeView API change.
6878
6879         * gtk/gtkcellrenderer.[ch]: Get rid of the "event" vfunc, and
6880         replace with "activate" and "start_editing".  Also, added a
6881         "can_activate" and "can_edit" property.
6882
6883         * gtk/gtktreeviewcolumn.c: modify to use above.
6884
6885 2001-09-16  Alexander Larsson  <alla@lysator.liu.se>
6886
6887         * gtk/gtkoptionmenu.c:  Handle scroll wheel events.
6888
6889 Fri Sep 14 22:31:25 2001  Matthias Clasen  <matthiasc@poet.de>
6890
6891         * demos/gtk-demo/main.c (setup_default_icon): Use a shaped
6892         icon instead of one with ugly white background.
6893
6894 Fri Sep 14 22:26:01 2001  Matthias Clasen  <matthiasc@poet.de>
6895
6896         * demos/gtk-demo/stock_browser.c (id_to_macro): make
6897         the uppercasing work. (#59550)
6898
6899 2001-09-14  Jakub Steiner <jimmac@ximian.com>
6900
6901         * gtk/stock-icons/dialog_error.png:
6902         * gtk/stock-icons/dialog_question.png: more road signs
6903
6904 2001-09-13  Jakub Steiner <jimmac@ximian.com>
6905
6906         * gtk/stock-icons/dialog_question.png:
6907         * gtk/stock-icons/dialog_warning.png: anders and jonathan seem to
6908           like a road sign.
6909
6910 Wed Sep 12 19:01:05 2001  Jonathan Blandford  <jrb@redhat.com>
6911
6912         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Rename interface
6913         signals to make them more clear.  Also, change ::range_changed to
6914         ::row_changed.
6915         * gtk/gtktreemodel.c: Adjust to interface change
6916         * gtk/gtktreemodel.h: ditto
6917         * gtk/gtktreemodelsort.c: ditto
6918         * gtk/gtktreestore.c: ditto
6919         * gtk/gtkliststore.c: ditto
6920         * gtk/gtktreeview.c: ditto
6921         * tests/testtreecolumns.c: ditto
6922         * gtk/gtkmarshal.list: Actually remove a marshaller!
6923
6924 2001-09-12  Padraig O'Briain <padraig.obriain@sun.com>
6925
6926         * gtk/gtktextview.c
6927         Add support for Ctrl+Up/Down arrow to move cursor to beginning
6928         of previous/next paragraph. If within a paragraph cursor moves to
6929         beginning of that paragraph.
6930
6931 2001-09-12  Jakub Steiner <jimmac@ximian.com>
6932
6933         * gtk/stock-icons/dialog_question.png: replacing the shaky
6934           question mark with a sans-serif one.
6935         * gtk/stock-icons/stock_top.png, stock_bottom.png,
6936      stock_first.png, stock_last.png: using the new style arrows
6937         * gtk/stock-icons/stock_font.png: simple one to replace the ugly
6938      colors.
6939         * gtk/stock-icons/stock_refresh.png: anti-aliased and changed
6940      color.
6941         * gtk/stock-icons/stock_zoom*: anti-aliased
6942         * gtk/stock-icons/dialog_error.png, dialog_warning.png: confused
6943      '-' with a '_', removed the wrong files
6944
6945 Sat Sep  8 16:19:02 2001  Owen Taylor  <otaylor@redhat.com>
6946  
6947         * gtk/gtkmain.c: Implement a search path for GTK+ modules.
6948  
6949         * configure.in gtk/gtkrc.c gtk/Makefile.am: Look for modules
6950         in gtk-2.0/<type>/major.minor.(micro-binary_age) rather
6951         than in gtk-2.0/major.minor.micro/<type>/. This
6952         works better for a search path for modules.
6953  
6954         * gtk+-2.0.pc.in gtk+-2.0-uninstalled.pc.in: Add
6955         gtk_binary_version variable holding major.minor.(micro-binary_age).
6956  
6957         * modules/input/Makefile.am (moduledir): Fix installation
6958         directory to match change in lookup location.
6959  
6960         * gtk/gtkmain.c (gtk_init_check): Remove OS/2 code for dll 
6961         suffixes. Needs to be handled in g_module_build_path().
6962
6963         * gtk/gtkrc.c gtk/queryimmodules.c: Use g_build_filename() where
6964         appropriate.
6965  
6966 Tue Sep 11 13:59:12 2001  Owen Taylor  <otaylor@redhat.com>
6967
6968         * gtk/gtkrc.c (insert_rc_property): Fixed reversed comparison
6969         causing RC properties not to work.
6970
6971 2001-09-11  Jakub Steiner <jimmac@ximian.com>
6972
6973         * gtk/stock-icons/dialog-error.png: less drastic
6974         * gtk/stock-icons/dialog-warning.png: no body parts. (I hope
6975           "STOP" is international enough.
6976         * gtk/stock-icons/stock_dnd*.png: get rid of the cursor
6977         * gtk/stock-icons/stock_menu_properties.png: 16x16 version
6978
6979 Mon Sep 10 21:26:24 2001  Joshua N Pritikin  <vishnu@pobox.com>
6980
6981         * gtk/gtktextview.c (gtk_text_view_set_buffer): Make
6982         (add|remove)_selection_clipboard symmetric. (bug #59836)
6983
6984         * gtk/gtktreeview.c (gtk_tree_view_unref_and_check_selection_tree): 
6985         Avoid SEGV for empty tree. (bug #60243)
6986
6987 Mon Sep 10 20:47:22 2001  Tim Janik  <timj@gtk.org>
6988
6989         * tests/testgtk.c (create_idle_test): slight fix for
6990         g_object_set() not usable for nesting anymore.
6991
6992         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
6993         * gtk/gtkframe.c (gtk_frame_class_init): deprecate ::shadow
6994         properties, supply ::shadow_type properties instead as most
6995         other widgets do.
6996
6997 2001-09-10  Alex Larsson  <alexl@redhat.com>
6998
6999         * demos/gtk-demo/stock_browser.c:
7000         * gdk/gdkcolor.c:
7001         * gdk/gdkfont.c:
7002         * gdk/gdkcursor.c:
7003         * gdk/gdkevents.c:
7004         * gdk/gdkrectangle.c:
7005         * gtk/gtktypeutils.c:
7006         Update to use the new g_boxed_type_register_static API.
7007
7008 2001-09-10  Padraig O'Briain <padraig.obriain@sun.com>
7009
7010         * gtk/gtktreestore.c:
7011         Fix looping in gtk_tree_store_init() waiting for zero random int.
7012
7013 Mon Sep 10 16:55:49 2001  Tim Janik  <timj@gtk.org>
7014
7015         * gtk/gtkalignment.c (gtk_alignment_init): fix xscale and yscale
7016         behaviour which havoc broke. they have to default to 1.0 for
7017         expand behaviour.
7018
7019         * gtk/gtkwindow.c (gtk_window_get_property): don't cast NULL objects.
7020
7021 2001-09-10  Padraig O'Briain <padraig.obriain@sun.com>
7022
7023         * gtk/gtkstyle.c (_gtk_style_peek_property_value)
7024         Amend previous change to avoid runtime error in g_param_spec_ref()
7025
7026 Mon Sep 10 06:58:56 2001  Owen Taylor  <otaylor@redhat.com>
7027
7028         * gtk/gtkrc.c (insert_rc_property): Fix blank line
7029         in the wrong place.
7030
7031 Mon Sep 10 06:50:39 2001  Owen Taylor  <otaylor@redhat.com>
7032
7033         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Don't
7034         do a lookup immediately after creating style->property_cache,
7035         since bsearch crashes on zero length for Solaris.
7036         (Found by Padraig O'Briain.)
7037
7038 2001-09-09  Alexander Larsson  <alla@lysator.liu.se> 
7039
7040         * gtk/gtkwidget.c (_gtk_widget_peek_colormap):
7041         Really return NULL if not set.
7042         (gtk_widget_init): Remove unused varaible.
7043         
7044 2001-09-09  Alexander Larsson  <alla@lysator.liu.se> 
7045
7046         * configure.in:
7047         Remove gdk/nanox/Makefile from AC_OUTPUT(), since it is no longer
7048         in cvs.
7049
7050 2001-09-08  Havoc Pennington  <hp@pobox.com>
7051
7052         * gtk/gtkaccelgroup.c: add docs to functions that I can imagine 
7053         people might want to use
7054
7055 2001-09-08  Havoc Pennington  <hp@pobox.com>
7056
7057         * gtk/gtkalignment.c (gtk_alignment_class_init): default
7058         xscale/yscale to 0.0, not 0.5, 0.5 isn't useful
7059
7060         * tests/testtextbuffer.c: fix usage of gtk_text_iter_spew
7061
7062         * gtk/gtktextiter.c: fix docs
7063         (gtk_text_iter_spew): get rid of this
7064
7065         * gtk/gtklayout.c: docs
7066
7067         * gtk/gtkbutton.c (gtk_button_construct_child): add an alignment
7068         to center image and label together, instead of having image on
7069         left and label centered, patch/suggestion from Jacob
7070
7071         * gtk/gtkdialog.c: docs
7072
7073 Sat Sep  8 14:19:49 2001  Jonathan Blandford  <jrb@redhat.com>
7074
7075         * gtk/gtkliststore.c: Write documentation
7076         * gtk/gtktreestore.c: Write documentation
7077
7078 Sat Sep  8 13:53:09 2001  Owen Taylor  <otaylor@redhat.com>
7079
7080         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch]: Replace uses of GBSearchArray
7081         with GArray and bsearch(), to remove dependency on a still
7082         evolving interface that we want to keep private to glib/gobject. 
7083
7084 2001-09-08  Havoc Pennington  <hp@pobox.com>
7085
7086         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_add_attribute):
7087         docs fixes
7088
7089         * gtk/gtktable.c (gtk_table_get_col_spacing): docs fixes
7090
7091         * gtk/gtkspinbutton.c (gtk_spin_button_get_increments): docs fixes
7092
7093         * gtk/gtksocket.c (gtk_socket_steal): docs fixes
7094
7095         * gtk/gtkscrolledwindow.h: docs fixes
7096
7097         * gtk/gtkimage.c (gtk_image_new): docs fixes
7098
7099 Sat Sep  8 01:49:22 2001  Owen Taylor  <otaylor@redhat.com>
7100
7101         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check): Prevent a 
7102         false alarm  constness warning with a cast.
7103
7104         * gdk/x11/gdkx.h: Undefine GDK_ROOT_PARENT before redefining it
7105         for the inside-gdk case.
7106
7107 Sat Sep  8 01:44:18 2001  Jonathan Blandford  <jrb@redhat.com>
7108
7109         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_set_dirty):
7110         remove g_print.
7111
7112         * gtk/gtktreeview.c (gtk_tree_view_set_model): unref model when we
7113         change models, #59899
7114
7115 2001-09-07  Havoc Pennington  <hp@pobox.com>
7116
7117         * gtk/gtkmain.c: move some docs inline
7118
7119 2001-09-07  Havoc Pennington  <hp@pobox.com>
7120
7121         * gtk/gtk.h: tsk tsk, jrb broke the build
7122
7123 Fri Sep  7 20:45:29 2001  Jonathan Blandford  <jrb@redhat.com>
7124
7125         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_{start,end}):
7126         Removed 'fill' attribute.  It was silly b/c that was a property of
7127         the cell renderer, anyway.
7128         (gtk_tree_view_column_render): Actually render the packed
7129         renderers.
7130         * doc/tree-column-sizing.txt: initial devel documentation.
7131         * gtk/gtktreeview.c (gtk_tree_view_expand_all): Fix bug.
7132         * gtk/gtkcellrenderertextpixbuf.[ch]: removed.
7133
7134         * tests/testtreefocus.c: fix up to reflect above changes.
7135         * tests/testtreeview.c: ditto
7136         * demos/gtk-demo/stock_browser.c: ditto
7137
7138 2001-09-07  Alex Larsson  <alexl@redhat.com>
7139
7140         * gdk/linux-fb/gdkcolor-fb.c:
7141         Removed unused function.
7142         
7143         * gdk/linux-fb/gdkdrawable-fb2.c
7144         * gdk/linux-fb/gdkfont-fb.c:
7145         Use PangoLanguage functions.
7146
7147         * gdk/linux-fb/gdkinput.c:
7148         * gdk/linux-fb/gdkselection-fb.c:
7149         Fix const warnings.
7150         
7151         * gdk/linux-fb/gdkwindow-fb.c:
7152         Fix warning. Implement gdk_window_set_icon_list() and
7153         gdk_window_get_frame_extents(). (No icon support yet though.)
7154
7155         * gtk/gtkwindow.c (gtk_window_get_position):
7156         If window->frame is set get the extents of it instead.
7157         
7158 Fri Sep  7 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
7159
7160         * gtk/gtkwidget.c (gtk_widget_get_default_colormap): 
7161         Make the default default colormap the GdkRGB colormap,
7162         not the system colormap.
7163
7164         * gtk/gtkinvisible.c (gtk_invisible_init) 
7165           gtk/gtkwindow.c (gtk_window_init): Set the current
7166         colormap, as returned by _gtk_widget_peek_colormap()
7167         on the widget.
7168
7169         * gtk/gtkwidget.[ch]: Export _gtk_widget_peek_colormap
7170         to GTK+. Make it return %NULL instead of the default
7171         colormap if no colormap has explicitely been pushed.
7172
7173         * gtk/gtkwidget.c (gtk_widget_get_colormap): Check for
7174         colormaps on ancestral widgets before defaulting the
7175         the system default colormap.
7176
7177         * docs/Changes-2.0.txt: explain colormap changes.
7178
7179 2001-09-07  Havoc Pennington  <hp@redhat.com>
7180
7181         * gtk/gtktextiter.c: add some lame code to handle G_MININT, fixes 
7182         #57424
7183
7184 Fri Sep  7 18:17:47 2001  Owen Taylor  <otaylor@redhat.com>
7185
7186         * gdk/gdk.h gdk/x11/gdkmain-x11.c: Deprecate gdk_set/get_use_xshm, 
7187         make gdk_set_use_xshm a noop. Remove --no-xshm command line
7188         option. If we aren't autodetecting properly, we need
7189         to fix the problem, or at least make it an environment
7190         variable setting, to avoid problems with propagating
7191         to embedded children, plugins, etc.
7192
7193         * gdk/gdkcolor.h: Deprecate gdk_colormap_get_system_size().
7194
7195         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h
7196         (gdk_pixbuf_render_pixmap_and_mask_for_colormap):
7197         New function to render a pixmap and mask for a particular colormap.
7198
7199         * gtk/gtkwindow.c (get_pixmap_and_mask): Change to use
7200         gdk_pixbuf_render_pixmap_and_mask_for_colormap () instead
7201         of internal implementation of the same.
7202
7203 2001-09-07  Havoc Pennington  <hp@redhat.com>
7204
7205         * gtk/gtktextlayout.c (gtk_text_layout_get_lines): remove some
7206         debug code that seems to have caused a breakpoint in valid cases
7207         
7208         * gtk/gtktextbtree.c (_gtk_text_btree_add_view): set the prev
7209         pointer on the first view when adding the second view, fixes
7210         crash when closing gtk-demo text test with active selection
7211
7212         * gtk/gtktextbuffer.c
7213         (gtk_text_buffer_remove_selection_clipboard): don't leave dead
7214         clipboards in the list of clipboards - probably fixes #59836
7215
7216 Fri Sep  7 11:51:44 2001  Owen Taylor  <otaylor@redhat.com>
7217
7218       Make gdkx.h the only installed header from gdk/x11.
7219       All structures in gdk/x11 are opaque.
7220
7221         * gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
7222         Don't install gdk{drawable,pixmap,window}-x11.h.
7223
7224         * gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c: 
7225         Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11, 
7226         GdkVisualClass into C files.
7227
7228         * gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
7229
7230         * gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
7231         gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
7232         Add public functions to replace previously exported direct
7233         structure access.
7234         gdk_x11_colormap_get_{xdisplay,xcolormap} 
7235         gdk_x11_cursor_get_{xdisplay,xcursor},
7236         gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual, 
7237         gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
7238         gdk_x11_gc_get_{xdisplay,ximage}
7239         
7240         * gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
7241         GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
7242
7243       Fix a number of variables and functions that were exported
7244       "accidentally" from GDK.
7245
7246         * gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
7247         gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit, 
7248         gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
7249         gdk_event_notify, gdk_queued_events, gdk_queued_tail,
7250         gdk_event_new, gdk_events_queue, gdk_events_unqueue,
7251         gdk_event_queue_find_first, gdk_event_queue_remove_link,
7252         gdk_event_queue_append, gdk_event_button_generate,
7253         gdk_debug_flags, gdk_default_filters, gdk_parent_root.
7254
7255         * gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c, 
7256            gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
7257         gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks, 
7258         gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
7259         gdk_use_xshm, gdk_input_ignore_core.
7260
7261         * gdk/x11/xsettings-common.h (xsettings_list_insert): Add
7262         #defines to namespace functions into the private _gdk_ 
7263         namespace.
7264
7265         * gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
7266         to replace gdk_parent_root exported variable. Adjust and
7267         deprecate GDK_ROOT_PARENT().
7268
7269         * demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
7270         GDK_ROOT_PARENT usage, remove includes of port-specific
7271         headers.
7272
7273         * gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for 
7274         _gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core, 
7275         gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
7276
7277         * gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
7278         docs/Changes-2.0.txt: Remove gdk_wm_protocols, 
7279         gdk_wm_delete_window functions, gdk_wm_take_focus, 
7280         use gdk_atom_intern() instead.
7281
7282         * gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
7283           gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h} 
7284           gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
7285           gtk/gtkselection.c 
7286         Unexport gdk_selection_property, just use 
7287         gdk_atom_intern ("GDK_SELECTION").
7288
7289         * gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}: 
7290         Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type, 
7291         GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate, 
7292         GdkVisualprivate, gdk_x11_gc_flush.
7293
7294       Make a number of public exports of variables into functions
7295       to increase encapsulation.
7296
7297         * gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h 
7298         gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer, 
7299         move to gdkinternals.h. Add gdk_device_get_core_pointer ().     
7300
7301         * gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
7302         docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code, 
7303         gdk_error_warnings.
7304
7305         * gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
7306           docs/Changes-2.0.txt: 
7307         s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
7308         s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
7309         Add gdk_x11_get_default_xdisplay().
7310
7311         * gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c 
7312         win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c 
7313         gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class, 
7314         Don't export gdk_progclass, move --class command line
7315         option and handling to common portion of GDK.
7316
7317       Miscellaneous fixes:
7318
7319         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
7320         g_return_val_if_fail that should have been g_return_if_fail.
7321
7322         * gdk/gdkinternals.h gdk/gdkprivate.h: Move
7323         gdk_synthesize_window_state() to the semi-public gdkprivate.h.
7324
7325         * gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
7326         X11 dependency.
7327
7328         * gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO: 
7329         Remove unused gdk_key_repeat_disable/restore.
7330
7331         * linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c 
7332         x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
7333         Remove unused gdk_null_window_warnings variable.
7334
7335         * gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
7336         it can be retrieved from the repository; it is too far
7337         from functional to be worth having people check out;
7338         it would be easier to start from scratch, I suspect.
7339
7340         * gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
7341
7342         * gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c 
7343         gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c: 
7344         Fix some accidentally global variables and unused global variables.
7345
7346         * gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c 
7347         gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c: 
7348         Fix some accidentally global variables and unused global variables.
7349
7350       Add some space for future expansion to multihead.
7351
7352         * gdk/gdkdrawable.h: Add four reserved function pointers
7353         for future expansion of GdkDrawableClass.
7354
7355         * gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
7356         where we can put a GdkScreen * later.
7357
7358 2001-09-07  Havoc Pennington  <hp@redhat.com>
7359
7360         * gtk/gtktextview.c (gtk_text_view_flush_scroll): update
7361         adjustments after validating destination yrange; fixes #53918
7362         (This may cause other issues, but I hope it won't)
7363         
7364 2001-09-05  Havoc Pennington  <hp@redhat.com>
7365
7366         * gtk/gtktextbtree.c (_gtk_text_btree_delete): when merging end
7367         line into start line, update the character counts in parent nodes; 
7368         caused a bug when end and start line had different parent nodes.
7369
7370 2001-08-30  Havoc Pennington  <hp@redhat.com>
7371         
7372         * gtk/gtktexttag.c (_gtk_text_attributes_fill_from_tags): add
7373         assertion that tag is in a table
7374
7375 Fri Sep  7 12:48:56 2001  Matthias Clasen  <matthiasc@poet.de>
7376
7377         * gdk/x11/gdkkeys-x11.c (get_direction): Don't call
7378         g_strcasecmp on NULL strings. (#59058)
7379
7380 2001-09-06  Alex Larsson  <alexl@redhat.com>
7381
7382         * gtk/gtkbin.c:
7383         * gtk/gtkfontsel.c:
7384         * gtk/gtkspinbutton.c:
7385         * gtk/gtktipsquery.c:
7386         Use GtkType/GType instead of uint.
7387
7388 Tue Sep  4 18:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
7389
7390         * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
7391         sort column.
7392
7393         * gtk/gtktreestore.c (gtk_list_store_init): ditto
7394
7395         * gtk/gtktreesortable.c: add docs.
7396
7397 Tue Sep  4 09:37:19 2001  Owen Taylor  <otaylor@redhat.com>
7398
7399         * Version 1.3.7
7400
7401         * configure.in docs/Makefile.am docs/gtk-config.1.in: Remove 
7402         docs for gtk-config
7403
7404         * modules/input/Makefile.am (install-data-local): Don't
7405         run gtk-query-immodules if DESTDIR is set.
7406
7407         * NEWS: Various additions.
7408
7409 Tue Sep  4 03:12:25 2001  Tim Janik  <timj@gtk.org>
7410
7411         * NEWS: updates for 1.3.7 release.
7412
7413 Mon Sep  3 18:03:56 2001  Jonathan Blandford  <jrb@redhat.com>
7414
7415         * gtk/gtktreestore.c (gtk_tree_store_set_default_sort_func):
7416         handle default sort feature
7417
7418         * gtk/gtktreesortable.c (gtk_tree_sortable_set_default_sort_func):
7419         new function to handle default sort.
7420         (gtk_tree_sortable_has_default_sort_func): check if default sort
7421         is set.
7422
7423         * gtk/gtkliststore.c (gtk_list_store_set_default_sort_func): 
7424         handle default sort feature
7425
7426 Sun Sep  2 20:32:36 2001  Jonathan Blandford  <jrb@redhat.com>
7427
7428         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
7429         vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
7430         #59731
7431
7432 Sun Sep  2 17:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
7433
7434         * gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
7435         vishnu@pobox.com (Joshua N Pritikin) to emit signal at the correct
7436         time, #59727
7437
7438         * gtk/gtkbutton.c (gtk_button_update_state): Get depressed
7439         correctly.
7440
7441 Sun Sep  2 21:41:21 2001  Owen Taylor  <otaylor@redhat.com>
7442
7443         * gdk/x11/gdkkeys-x11.c (update_keymaps): Set current serial
7444         so that we don't eternally update the keymap after we
7445         get a change notification.
7446
7447         * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Fix
7448         incorrect cast.
7449
7450 Sun Sep  2 23:27:16 2001  Kristian Rietveld  <kristian@planet.nl>
7451
7452         * gtk/gtktreemodelsort.[ch]: much changes in an attempt to make
7453         it working. It mostly works now, although there're still a few issues
7454         to be worked out.
7455
7456         * tests/testtreesort.c (main): changes to have a better test
7457         application for the GtkTreeModelSort.
7458
7459 Sun Sep  2 23:19:07 2001  Kristian Rietveld  <kristian@planet.nl>
7460
7461         * gtk/gtktreeview.c (gtk_tree_view_search_iter): code cleaup,
7462         fix for bug #59222.
7463
7464         * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): add
7465         gpointer search_data argument to function definition and
7466         prototype, to match GtkTreeViewSearchEqualFunc typedef.
7467
7468 Sat Sep  1 21:57:27 2001  Kristian Rietveld  <kristian@planet.nl>
7469
7470         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): add warnings
7471         per jrb's request.
7472
7473 Fri Aug 31 20:01:23 2001  Jonathan Blandford  <jrb@redhat.com>
7474
7475         * gtk/gtktreeview.c (gtk_tree_view_search_iter): pass in user data.
7476
7477         * gtk/gtktreeview.c (gtk_tree_view_destroy): destroy search_data.
7478
7479 Wed Aug 29 20:40:58 2001  Owen Taylor  <otaylor@redhat.com>
7480
7481         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_add/remove_selection_clipboard): 
7482         Instead of always mirroring the selection to a single PRIMARY
7483         selection, allow it to be mirrored to any number of clipboards.
7484
7485         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_paste_primary): Remove, 
7486         just use gtk_text_buffer_paste_clipboard with the appropriate clipboard.
7487
7488         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_cut/copy/paste_clipboard): Add a
7489         GtkClipboard argument, and for paste_clipboard, the
7490         @override_location argument from @paste_primary.
7491
7492         * gtk/gtktextview.c: Adapt to above change.
7493         
7494 2001-08-30  Havoc Pennington  <hp@redhat.com>
7495
7496         * gtk/gtktextview.c (invalidated_handler): put validate idle at
7497         resize - 2 just for flexibility
7498
7499 2001-08-30  Havoc Pennington  <hp@redhat.com>
7500
7501         * gtk/gtktextdisplay.c (render_layout_line): handle NULL shaped
7502         object from the empty-child-anchor case by drawing a little box.
7503         
7504         * gtk/gtktextlayout.c (add_child_attrs): Still set shape attribute
7505         if the child anchor has no anchored widgets - fixes #59328.
7506
7507         Also, remove bizarre deletion of preedit string that seems to have
7508         gotten in here somehow.
7509
7510 2001-08-30  Havoc Pennington  <hp@redhat.com>
7511
7512         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): apply fix
7513         to #58420 from Hidetoshi Tajima and Matthias Clasen
7514
7515 Wed Aug 29 17:28:04 2001  Jonathan Blandford  <jrb@redhat.com>
7516
7517         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
7518         change color when the GtkTreeView loses focus.
7519
7520         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
7521         ditto.
7522         
7523         * gtk/gtkstyle.c (gtk_default_draw_flat_box): ditto
7524
7525 2001-08-28  Havoc Pennington  <hp@pobox.com>
7526
7527         * gtk/gtkwindow.c (gtk_window_set_icon_list): fix g_object_notify
7528
7529 2001-08-28  Havoc Pennington  <hp@pobox.com>
7530
7531         * demos/gtk-demo/main.c (setup_default_icon): add default icon
7532
7533         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic):
7534         warning fix
7535         (gtk_radio_button_new_with_label): warning fix
7536
7537         * gtk/gtkdnd.c: used some random GtkImage private structs, 
7538         update to reflect GtkImage changes
7539
7540         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): don't check
7541         whether the hint is supported, just always set the icon. A task
7542         list might want to use it even if the WM doesn't, and the WM may
7543         change over time. Also, XDeleteProperty() if list == NULL.
7544
7545         * gtk/gtkwindow.c (gtk_window_set_icon_list)
7546         (gtk_window_get_icon_list)
7547         (gtk_window_set_icon)
7548         (gtk_window_get_icon)
7549         (gtk_window_set_default_icon_list)
7550         (gtk_window_get_default_icon_list):
7551         new functions
7552
7553         * gtk/gtk-boxed.defs (GtkIconSet): add GtkIconSet
7554
7555         * gtk/gtkimage.c: Implement property support, bug #59408
7556
7557         * gtk/gtkcontainer.c (gtk_container_add): make the warning message
7558         on reparent-without-removing-first a bit more helpful.
7559         Let's just destroy this FAQ.
7560
7561 Tue Aug 28 21:37:11 2001  Matthias Clasen  <matthiasc@poet.de>
7562
7563         * demos/gtk-demo/appwindow.c (do_appwindow): Use g_signal_connect_object
7564         instead of gtk_signal_connect, to avoid warnings at destruction time. (#58161)
7565
7566 Tue Aug 28 21:00:44 2001  Matthias Clasen  <matthiasc@poet.de>
7567
7568         * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
7569         of use_text_format to the end of the function. (#56447)
7570
7571 Tue Aug 28 20:06:07 2001  Matthias Clasen  <matthiasc@poet.de>
7572
7573         * demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
7574         only in response to an area_prepared signal.
7575
7576 2001-08-28  Alex Larsson  <alexl@redhat.com>
7577
7578         * gtk/gtkwidget.c (gtk_widget_class_init):
7579         Make unrealize GTK_RUN_LAST.
7580
7581 Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
7582
7583         * gtk/gtkradiobutton.c: fix silly cut'n'paste error,
7584         with_label and with_mnemonic should create radio buttons, not
7585         check buttons
7586
7587 Mon Aug 27 15:28:56 2001  Jonathan Blandford  <jrb@redhat.com>
7588
7589         * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
7590         * tests/treestoretest.c (make_window): ditto
7591         * demos/gtk-demo/main.c (create_tree): ditto
7592         * demos/gtk-demo/stock_browser.c (do_stock_browser): ditto.
7593
7594 Mon Aug 27 15:18:14 2001  Jonathan Blandford  <jrb@redhat.com>
7595
7596         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Use the
7597         GTK selection types rather than GtkTreeSelectionMode.
7598
7599         * docs/Changes-2.0: Add comment about selection change.
7600
7601 Mon Aug 27 14:21:30 2001  Jonathan Blandford  <jrb@redhat.com>
7602
7603         * gtk/gtkenums.h (GtkSelectionMode): deprecate
7604         GTK_SELECTION_EXTENDED.
7605
7606         * gtk/gtkclist.c: Remove old GTK_SELECTION_MULTIPLE behavior.
7607         Make GTK_SELECTION_EXTENDED be GTK_SELECTION_MULTIPLE.
7608
7609         * gtk/gtkctree.c: ditto
7610
7611         * gtk/gtklist.c: ditto
7612
7613         * gtk/gtktree.c: ditto
7614
7615 Mon Aug 27 14:18:12 2001  Owen Taylor  <otaylor@redhat.com>
7616
7617         * gtk/gtkmenubar.h (gtk_menu_bar_prepend): Fix a cuple
7618         of typos in compat macros. (#59624, Skip Montaro)
7619
7620 Sun Aug 26 20:00:00 2001  Owen Taylor  <otaylor@redhat.com>
7621
7622         * configure.in acinclude.m4: Use autoconf 2.13/2.50 compat
7623         macro.
7624
7625          (patch from ERDI Gergo  <cactus@cactus.rulez.org>, #58920)
7626  
7627         * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Change
7628         interface to be a standard setter from gtk_menu_item_right_justify.
7629         (gtk_menu_item_get_right_justified): a getter to go with the setter
7630
7631         * gtk/gtkmenuitem.h: Add a deprecated compat macro for
7632         gtk_menu_item_right_justify.
7633
7634         * demos/gtk-demo/menus.c tests/testgtk.c: Switch to 
7635         gtk_menu_item_set_right_justified.
7636  
7637 2001-08-27  Jens Finke <jens@gnome.org>
7638
7639         * gtk+.spec.in: Updated to match gpp requirements, reworked the
7640         files section to make it work with 1.3.x releases.
7641
7642 2001-08-26  Alexander Larsson  <alla@lysator.liu.se>
7643
7644         * gtk/gtkbutton.[ch]:
7645         Add properties for labels, mnemonics and stock items.
7646         Added C accessor functions for the properties.
7647         Removed deprecated button->child.
7648
7649         * gtk/gtkradiobutton.c:
7650         * gtk/gtktogglebutton.c:
7651         Update to use the functions in GtkButton.
7652
7653         * gtk/gtkcheckbutton.c:
7654         Update to use the functions in GtkButton.
7655         Changed size allocation of child. Now only gets as much
7656         space as it requests.
7657
7658         * gtk/gtkclist.c:
7659         Don't use GtkButton->child
7660
7661         * gtk/gtklabel.c:
7662         Fixed typo in docs
7663         
7664 2001-08-26  Alexander Larsson  <alla@lysator.liu.se>
7665
7666         * tests/testgtk.c:
7667         * tests/Makefile.am:
7668         Ressurect the properties test.
7669         I don't care if it is inferior, I just want to test my property code.
7670
7671 2001-08-25  Chema Celorio  <chema@celorio.com>
7672
7673         * gtk/gtktable.c (gtk_table_set_child_property): pass ->nrows to
7674         gtk_table_resize as the first argument for CHILD_PROP_RIGHT_ATTACH
7675         and CHILD_PROP_LEFT_ATTACH v.s. using ->ncols
7676
7677 2001-08-24  Havoc Pennington  <hp@pobox.com>
7678
7679         * gtk/gtkcompat.h: remove gtk_menu_* compat defines; 
7680         these are already in gtkmenu.h, and the copies
7681         here were broken.
7682
7683         Also, change GTK_DISABLE_COMPAT_H to GTK_DISABLE_DEPRECATED
7684
7685         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_image):
7686         special-case bitmaps to allow no colormap
7687         (bitmap1): implement no-colormap bitmap-getting
7688         (bitmap1a): implement no-colormap bitmap-getting to pixbuf with
7689         alpha
7690         (rgb8): indentation
7691         (rgb1a, rgb1): change the way we read the data out of the image, 
7692         old way didn't seem to work quite right.
7693
7694         I'm pretty sure a lot of the rgbconvert code is still broken.
7695         
7696         * gtk/gtkwindow.c (gtk_window_move_resize): move hints comparison
7697         above position constraint (I really intended to do this before,
7698         don't know what's up with that)
7699         (gtk_XParseGeometry): shut up gcc
7700
7701         * gdk/gdkpixbuf-drawable.c (rgb1a): fix bug where "x1" was used
7702         and "0" should have been. remove the attempted 4-bytes-at-once
7703         optimization, it was totally broken.
7704
7705 Sat Aug 25 19:02:39 2001  Owen Taylor  <otaylor@redhat.com>
7706
7707         * gtk/gtkbutton.[ch] gtk/gtktogglebutton.c: Add optional movement
7708         on push to buttons (based on patch from Soeren Sandmann, #54720)
7709
7710           - Add child_displacement_x/y style properties to control how far the
7711             child moves when the button is depressed.
7712
7713           - Add non-exported function _gtk_button_set_depressed to clean
7714             up the handling of the in/out shadow and separate it frmo
7715             widget->state.
7716
7717           - Lots of code cleanup and simplification of state handling
7718             for GtkButton/GtkToggleButton.
7719  
7720         * tests/testgtkrc: Set the x/y displacement to 1 to provide a test
7721         of button movement. testgtk + testgtkrc == test ugly GTK+, as always.   
7722
7723 Fri Aug 24 23:09:05 2001  Owen Taylor  <otaylor@redhat.com>
7724
7725         * gtk/gtkimage.[ch] docs/Changes-2.0.txt: Break compatibility 
7726         and make gtk_image_new() take no arguments. The compiler will
7727         catch it, and it is vastly more useful than having
7728         gtk_image_new() be a deprecated alias for gtk_image_new_from_image().  
7729
7730         * gtk/gtkmenu.c (gtk_menu_set_property): Apply patch
7731         to add tearoff-title property (#51319, Lee Mallabone)
7732
7733 Fri Aug 24 22:12:32 2001  Owen Taylor  <otaylor@redhat.com>
7734
7735         * gtk/gtkmenuitem.[ch]: Remove unused and useless function
7736         gtk_menu_item_configure(). (#58925)
7737
7738 Fri Aug 24 16:03:45 2001  Jonathan Blandford  <jrb@redhat.com>
7739
7740         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): Add
7741         "use_align" to give people the option to just make a cell visible.
7742
7743         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): fix bug where
7744         we were scrolling past the end of the tree.
7745
7746         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_start):
7747         rename gtk_tree_view_column_pack_start_cell_renderer to
7748         gtk_tree_view_column_pack_start.  Same for pack_end, and clear.
7749
7750 Fri Aug 24 12:02:08 2001  Owen Taylor  <otaylor@redhat.com>
7751
7752         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Remove
7753         a stray g_object_ref() left over from gtk_object_ref/sink.
7754         (Pointed out by Josh Pritikin.)
7755
7756 Thu Aug 23 19:33:54 2001  Owen Taylor  <otaylor@redhat.com>
7757
7758         * gtk/gtkcontainer.[ch]: Rename gtk_container_children()
7759         to gtk_container_get_children. Added deprecated compatibility
7760         macro. (Suggested by Vitaly Tishkov, #59051)
7761
7762         * gtk/gtktoolbar.c gtkdialog.c: Fix gtk_container_children()
7763         calls.
7764
7765 Thu Aug 23 19:10:01 2001  Owen Taylor  <otaylor@redhat.com>
7766
7767         * gtk/gtkmenubar.h (gtk_menu_bar_insert): Deprecate 
7768         gtk_menu_bar_append/prepend/insert, forgot to do this
7769         when we deprecated gtk_menu_append/prepend/insert.
7770
7771         * gtk/gtkmenu.h (gtk_menu_insert): Add casts to deprecated
7772         compat macros.
7773
7774         * gtk/gtkmenu.c: Fix problem with static gtk_menu_insert() being
7775         renamed by compat macro.
7776
7777         * gtk/gtkfontsel.h: Deprecated gtk_font_selection_get_font(),
7778         gtk_font_selection_dialog_get_font(). (Suggested by
7779         Vitaly Tishkov, #59383)
7780
7781 Thu Aug 23 18:23:31 2001  Owen Taylor  <otaylor@redhat.com>
7782
7783         * gtk/gtktexttag.c (gtk_text_tag_table_get_size): 
7784         Rename from gtk_text_tag_table_size(). (#59366)
7785
7786 Thu Aug 23 20:01:41 2001  Kristian Rietveld  <kristian@planet.nl>
7787
7788         * gtk/gtktreemodelsort.[ch], gtk/gtktreesortable.[ch],
7789         gtk/gtktreestore.[ch], gtk/gtktreeviewcolumn.[ch],
7790         gtk/gtkliststore.[ch]: use GtkSortType instead of GtkTreeSortOrder.
7791         (#59173).
7792
7793 Thu Aug 23 16:26:47 2001  Tim Janik  <timj@gtk.org>
7794
7795         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): 
7796         * gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
7797         handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
7798
7799 Wed Aug 22 19:15:39 2001  Owen Taylor  <otaylor@redhat.com>
7800
7801         [ Patch from Sebastian Wilhelmi, 52790 ]
7802
7803         * gtk/gtkversion.h.in gtk/gtk.h: New file replacing gtkcompat.h
7804
7805         * gdk/gdkcompat.h gdk/gdk*.h gtk/gtkcompat.h.in gtk/gtk*.h: 
7806         Move compatibility macros from g[dt]kcompat.h to within 
7807         #ifndef G[DT]K_DISABLE_DEPRECATED in each file.
7808
7809         * gdk/gdk-pixbuf-csource.c: Fix up include of gtkcompat.h.
7810
7811         * demos/Makefile.am demos/gtk-demo/Makefile.am 
7812           docs/reference/gdk-pixbuf/Makefile.am modules/input/Makefile.am
7813           tests/Makefile.am: Remove references to -G[DT]K_DISABLE_DEPRECATED.
7814
7815         * demos/{pixbuf-demo.c,testpixbuf-drawable.c,testpixbuf-save.c,
7816                  testpixbuf.c}: Fix usages of deprecated functions.
7817
7818 Wed Aug 22 19:03:27 2001  Jonathan Blandford  <jrb@redhat.com>
7819
7820         * gtk/gtktreeview.c (gtk_tree_view_set_model): clean up selection
7821         when changing models.
7822
7823 Wed Aug 22 18:25:46 2001  Jonathan Blandford  <jrb@redhat.com>
7824
7825         * gtk/gtktreeview.c: Fix selection.  I think it's all dandy now.
7826         We check the current event for modifiers rather than try to trap
7827         all presses.
7828
7829 2001-08-22  Anders Carlsson  <andersca@gnu.org>
7830
7831         * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo.
7832         It's LIST_STORE, not LISTSTORE.
7833
7834 Tue Aug 21 12:43:29 2001  Owen Taylor  <otaylor@redhat.com>
7835
7836         * gtk/gtk.h: Remove commented out gtkpacker reference.
7837
7838 2001-08-21  Matthias Clasen  <matthiasc@waldgeist.poet.de>
7839
7840         * configure.in (all_loaders): Add tga loader, 
7841         patch by Nicola Girardi. (#56067)
7842
7843 Tue Aug 21 02:57:13 2001  Jonathan Blandford  <jrb@redhat.com>
7844
7845         * gtk/gtktreeview.c (gtk_tree_view_button_press): Fix up selection
7846         a little.  More needs to be done tomorrow.
7847
7848 Tue Aug 21 00:45:55 2001  Jonathan Blandford  <jrb@redhat.com>
7849
7850         * gtk/gtktreeview.c (gtk_tree_view_destroy): Grr... Get it right.
7851
7852 Mon Aug 20 23:48:18 2001  Jonathan Blandford  <jrb@redhat.com>
7853
7854         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Fix bug
7855         reported by Kristian Rietveld <kristian@planet.nl> to handle row
7856         == NULL.
7857         (gtk_tree_view_destroy): Fix bug reported by Kristian Rietveld
7858         <kristian@planet.nl> to change destroy order.
7859
7860 Mon Aug 20 11:39:44 2001  Jonathan Blandford  <jrb@redhat.com>
7861
7862         * gtk/gtktreeselection.c (gtk_tree_selection_class_init): Use
7863         correct marshaller.
7864
7865 Sun Aug 19 03:22:59 2001  Jonathan Blandford  <jrb@redhat.com>
7866
7867         * gtk/gtkliststore.c: Fix up warnings, #58928.
7868
7869         * gtk/gtktreeselection.h: Change signal prototype, #58647
7870
7871         * gtk/gtktreeview.c (_gdk_tree_view_find_node): Make more robust,
7872         #59221.
7873
7874         * gtk/gtkstyle.c: Actually prelight arrow, #50981
7875         
7876 2001-08-18  Hans Breuer  <hans@breuer.org>
7877
7878         * gdk/gdk.def : updated externals
7879
7880         * gdk/win32/gdkselection-win32.c : returning TRUE with gdk_selection_set
7881         is required to get (at least) visible in entry fields. Some selections
7882         are really handled now - even on win32 - but copying via middle
7883         mouse button into a different app needs to wait ... 
7884
7885         * gdk/win32/gdkdnd-win32.c : implemented inter-app drag&drop
7886         mostly by stealling code from gdkdnd-fb.c. Thanks to who ever wrote it!
7887
7888         * gdk/win32/gdkevents-win32.c : some tweaking to get better expose
7889         handling. I'm not sure if it is better now, but at least not worse
7890
7891         * gdk/win32/gdkgeometry-win32.c : replaced every call to MoveWindow
7892         with SetWindowPos () which allows more fine-tuning backing-store wise
7893
7894         * gdk/win32/gdkwindow-win32.c : allow unraised gdk_window_show ().
7895         Also changed move/resize to be more like the X version.
7896
7897         * gtk/gtk.def : updated externals
7898
7899 2001-08-19  Sven Neumann  <sven@gimp.org>
7900
7901         * gtk/gtktooltips.c
7902         * tests/testtreesort.c
7903         * tests/treestoretest.c: inserted some casts to get rid of compiler
7904         warnings.
7905
7906 Sun Aug 19 01:44:44 2001  Jonathan Blandford  <jrb@redhat.com>
7907
7908         * gtk/gtktreeviewcolumn.c
7909         (gtk_tree_view_column_pack_{start,end}_cell_renderer): sink cell.
7910
7911         * gtk/gtktreeview.c (gtk_tree_view_insert_column): sink column.
7912         (_gtk_tree_view_find_node): If *node is NULL,
7913         *tree should be NULL too.
7914
7915         * demos/gtk-demo/stock_browser.c (do_stock_browser): don't unref
7916         column/renderers.
7917         * tests/testtreecolumns.c: ditto
7918         * tests/testtreefocus.c: ditto
7919         * tests/testtreesort.c: ditto
7920         * tests/testtreeview.c: ditto
7921         * tests/treestoretest.c: ditto
7922
7923 Sat Aug 18 04:34:31 2001  Jonathan Blandford  <jrb@redhat.com>
7924
7925         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 2 new
7926         signals; is_expander/is_expanded.
7927
7928         * gtk/gtlcellrendererpixbuf.c: Allow other expanded and closed
7929         pixbufs.
7930
7931         * gtk/gtktreeview.c: set above properties.
7932
7933 Sat Aug 18 23:01:33 2001  Owen Taylor  <otaylor@redhat.com>
7934
7935         * gtk/gtkwidget.h: Really remove set_default_style().
7936
7937         * docs/Changes-2.0.txt: added a note about
7938         gtk_widget_push/pop/set_default_style.
7939
7940 2001-08-18  Havoc Pennington  <hp@pobox.com>
7941
7942         * gtk/gtkwindow.c (gtk_window_move_resize): constrain position on
7943         hints_changed in addition to the other cases.
7944         (gtk_window_move_resize): include last position from configure
7945         notify in debug spew
7946
7947 2001-08-18  James Henstridge  <james@daa.com.au>
7948
7949         * gtk/gtkaccelgroup.c (gtk_accel_group_object_destroy): use the
7950         second argument to the weak ref notify, cleaning up some uglyness.
7951         (gtk_accel_group_attach): remove and add the weak notifier when
7952         changing the accel groups slist.
7953         (gtk_accel_group_detach): same here.
7954
7955 2001-08-17  Darin Adler  <darin@bentspoon.com>
7956
7957         * gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
7958         missing parameters to utf8 functions to make it compile.
7959
7960 Fri Aug 17 19:30:14 2001  Jonathan Blandford  <jrb@redhat.com>
7961
7962         * gtk/gtktreeprivate.h:
7963         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
7964         (gtk_tree_view_init), (gtk_tree_view_set_property),
7965         (gtk_tree_view_get_property), (gtk_tree_view_destroy),
7966         (gtk_tree_view_key_press), (gtk_tree_view_leave_notify),
7967         (gtk_tree_view_focus_out), (gtk_tree_view_set_model),
7968         (gtk_tree_view_set_destroy_count_func),
7969         (gtk_tree_view_set_enable_search),
7970         (gtk_tree_view_get_enable_search),
7971         (gtk_tree_view_get_search_column),
7972         (gtk_tree_view_set_search_column),
7973         (gtk_tree_view_get_search_equal_func),
7974         (gtk_tree_view_set_search_equal_func),
7975         (gtk_tree_view_search_dialog_destroy),
7976         (gtk_tree_view_search_position_func),
7977         (gtk_tree_view_interactive_search),
7978         (gtk_tree_view_search_delete_event),
7979         (gtk_tree_view_search_button_press_event),
7980         (gtk_tree_view_search_key_press_event),
7981         (gtk_tree_view_search_move), (gtk_tree_view_search_equal_func),
7982         (gtk_tree_view_search_iter), (gtk_tree_view_search_init):
7983         * gtk/gtktreeview.h:
7984         Add heavily modified patch from Kristian Rietveld to handle
7985         interactive searching.
7986
7987 Fri Aug 17 17:30:34 2001  Tim Janik  <timj@gtk.org>
7988
7989         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): const correct
7990         string parameter.
7991
7992         * gtk/gtkoptionmenu.c (gtk_option_menu_set_menu): connect to
7993         GtkMenuShell::selection_done, now that we have it, instead of 
7994         ::deactivate so we're not tearing the menu apart and notify
7995         the user prematurely.
7996
7997 Thu Aug 16 05:22:01 2001  Tim Janik  <timj@gtk.org>
7998
7999         * gtk/gtkwindow.c (gtk_window_move_resize): if we actually move our
8000         window, clear window->need_default_position to avoid infinite loops.
8001         some comment fixups and GTK_RESIZE_IMMEDIATE fixups.
8002
8003 Wed Aug 15 12:36:55 2001  Tim Janik  <timj@gtk.org>
8004
8005         * gtk/gtktreeview.c (gtk_tree_view_set_model): move all model setup
8006         code into this place. get rid of GTK_TREE_VIEW_MODEL_SETUP usage.
8007         (gtk_tree_view_set_property): don't cast possible NULL objects.
8008         (gtk_tree_view_destroy): reset the model to NULL.
8009
8010         * gtk/gtktreeselection.c (gtk_tree_selection_finalize): chain
8011         parent_class handler.
8012
8013 2001-08-17  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8014
8015         * gtk/demos/gtk-demo/*: Remove all uses of deprecated functions.
8016
8017 2001-08-17  Anders Carlsson  <andersca@gnu.org>
8018
8019         * gtk/gtkstyle.c (create_expander_affine): Divide with floating
8020         point numbers so that the result will be floating point.
8021
8022 2001-08-16  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8023
8024         * tests/testgtk.c (create_handle_box): 
8025         (create_toolbar): Replace gtk_window_set_policy calls by
8026         gtk_window_set_resizable.
8027
8028 2001-08-16  Jakub Steiner <jimmac@ximian.com>
8029
8030         * gtk/stock-icons/dialog_info.png: new style bulb
8031         * gtk/stock-icons/dialog_error.png: maybe a little drastic ;)
8032         * gtk/stock-icons/dialog_warning.png: need a hand?
8033         * gtk/stock-icons/stock_add.png, stock_remove.png: I hope 
8034           the aa border gets chopped off ok
8035         * gtk/stock-icons/stock_colorselector.png: using the new hand
8036         * gtk/stock-icons/stock_dnd_multiple.png: I'm not totally sure what 
8037           this one is for, but the old icon was butt ugly.
8038         * gtk/stock-icons/stock*_insert_image.png: not sure if it belongs here
8039         * gtk/stock-icons/stock*_insert_object.png: "
8040         * gtk/stock-icons/stock_index.png: using new hand icon
8041         * gtk/stock-icons/stock*_new.png: the document template being used 
8042           elsewhere too
8043         * gtk/stock-icons/stock*_print*.png: new print and print preview 
8044           icons (panel/menu)  
8045         * gtk/stock-icons/stock*_save*.png, stock*_revert.png: new save/revert 
8046           icons based on Tuomas' floppy image.
8047         * gtk/stock-icons/stock*_search*.png: search and s'n'r icons for panel/menu
8048         * gtk/stock-icons/stock*_stop.png: replacing the old 'x' button
8049         * gtk/stock-icons/stock*_trash.png: based on Tuomas' trash icon
8050         * gtk/stock-icons/stock*_undelete.png: "
8051         * gtk/stock-icons/stock_preferences.png: I have a version with a 
8052           document base if the sliders are no good.
8053         * gtk/stock-icons/stock_properties.png: properties 
8054         
8055
8056         * gtk/stock-icons/stock*_copy.png, stock*_cut.png, stock*_paste.png: Tuomas' 
8057           (tigert@ximian.com) clipboard icons
8058         * gtk/stock-icons/stock_{up,down,left,right}_arrow.png: tigert's new arrows
8059         * gtk/stock-icons/stock*_{undo,redo}.png: tigert's undo/redo icons.
8060         * gtk/stock-icons/stock_open.png: shaded open icon by Tuomas. we should make it a
8061           little bigger IMHO
8062
8063 2001-08-16  Sven Neumann  <sven@gimp.org>
8064
8065         * gtk/gtkbox.c (gtk_box_class_init): removed unused widget_class.
8066
8067 2001-08-15  Padraig O'Briain  <padraig.obriain@sun.com>
8068
8069         * gtk/gtkcellrenderertext.c:
8070         Avoid warning when specifying NULL for "attributes" property
8071
8072 2001-08-15  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8073
8074         * docs/debugging.txt: Add a warning about --enable-debug=no,
8075         some editorial changes.
8076
8077 2001-08-13  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8078
8079         * gtk/docs/debugging.txt, gdk/gdk.c, gdk/gdkinternals.h, 
8080         gdk/x11/gdkmain-x11.c, gtk/gtkdebug.h, gtk/gtkmain.c: Update 
8081         debugging info, remove unused debug flags. (#58330)
8082
8083 Mon Aug 13 13:17:32 2001  Jonathan Blandford  <jrb@redhat.com>
8084
8085         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): 
8086         (gtk_tree_selection_select_all): Remove strict checking for rows.
8087
8088 2001-08-13  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8089         
8090         * gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips): 
8091         Don't remove the tooltip window when the tip text changes. (#15891)
8092
8093 Sun Aug 12 12:02:09 2001  Owen Taylor  <otaylor@redhat.com>
8094
8095         * gtk/Makefile.am ($(srcdir)/gtkmarshal.c): Remove extra
8096         $(srcdir).
8097
8098 Sun Aug 12 10:39:12 2001  Owen Taylor  <otaylor@redhat.com>
8099
8100         * Makefile.am (EXTRA_DIST): Fix problem with trying to
8101         dist files from intl/, which is no longer there.
8102
8103 2001-08-11  Hans Breuer  <hans@breuer.org>
8104
8105         * gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
8106           gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c, 
8107           gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c, 
8108           gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c, 
8109           gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
8110           gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
8111
8112         * gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
8113           gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
8114         GDK_TYPE_EVENT signals
8115
8116         * gtk/gtkalignment.c : removed 'direct allocation bug',
8117         which Tim discovered while reading the patch
8118
8119 Sat Aug 11 14:32:14 2001  Owen Taylor  <otaylor@redhat.com>
8120
8121         * gtk/gtkwidget.h (gtk_widget_set_default_visual): Add some
8122         compat macros for push/pop/set_visual that were supposed
8123         to be added a long time ago, but got dropped. 
8124
8125 Fri Aug 10 16:55:53 2001  Tim Janik  <timj@gtk.org>
8126
8127         * gtk/gtkwindow.c (gtk_window_set_policy): coalesce multiple
8128         property notifies.
8129
8130 2001-08-07  Havoc Pennington  <hp@pobox.com>
8131
8132         * gtk/gtkfilesel.c (open_ref_dir): fix a typo.
8133
8134         * gtk/gtkplug.c (gtk_plug_init): remove setting of auto_shrink;
8135         some fixage is needed here, but nothing simple. Owen understands
8136         it. ;-)
8137
8138         * gtk/gtkwindow.h, gtk/gtkwindow.c: Rework code and API for window
8139         sizing and positioning.  Also, fix bug in compute_geometry_hints
8140         (width/height confusion for setting min size). 
8141         (gtk_window_move): new function
8142         (gtk_window_resize): new function
8143         (gtk_window_get_size): new function
8144         (gtk_window_get_position): new function
8145         (gtk_window_parse_geometry): new function
8146         
8147         * gtk/gtkwidget.c (gtk_widget_set_size_request): new function
8148         (gtk_widget_get_size_request): new function
8149         (gtk_widget_get_usize): delete, that was a short-lived function
8150         ;-)
8151         (gtk_widget_set_usize): deprecate
8152         (gtk_widget_set_uposition): deprecate, make it a trivial 
8153         gtk_window_move() wrapper
8154         (gtk_widget_class_init): remove x/y/width/height properties,
8155         add width_request height_request
8156         
8157         * demos/*: update to avoid deprecated functions
8158         
8159         * gtk/gtklayout.c: add x/y child properties
8160
8161         * gtk/gtkfixed.c: add x/y child properties, and get rid of 
8162         uses of "gint16"
8163
8164         * tests/testgtk.c (create_window_sizing): lots of tweaks to window
8165         sizing test
8166
8167         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ensure that
8168         configure events on toplevel windows are always in root window
8169         coordinates, following ICCCM spec that all synthetic events 
8170         are in root window coords already, while real events are 
8171         in parent window coords. Previously the code assumed that 
8172         coords of 0,0 were parent window coords, which was 
8173         really broken.
8174   
8175         * gtk/gtkcontainer.c (gtk_container_get_focus_chain): fix
8176         warning
8177  
8178         * gdk/gdkwindow.h (GdkWindowHints): add GDK_HINT_USER_POS 
8179         and GDK_HINT_USER_SIZE so we can set USSize and USPosition 
8180         hints in gtk_window_parse_geometry()
8181  
8182         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): support
8183         new USER_POS USER_SIZE hints    
8184
8185 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8186
8187         * tests/prop-editor.c (properties_from_type): Use 
8188         g_object_class_list_properties to get the param specs 
8189         for a given type. (#58609)
8190
8191 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8192
8193         * gtk/gtkstyle.c (gtk_style_real_unrealize): Don't forget to
8194         free the text_aa parts. (#57549)
8195
8196 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8197
8198         * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
8199         not the foreground color. (#57621)
8200
8201 2001-08-09  Alexander Larsson <alexl@redhat.com>
8202
8203         * gdk/win32/gdkfont-win32.c:
8204         Update to the new pango win32 api.
8205
8206 2001-08-08  HideToshi Tajima  <tajima@eng.sun.com>
8207
8208         * gtk/gtkclipboard.c (request_text_received_func): ask apps for
8209         COMPOUND_TEXT instead of TEXT
8210         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): correctly
8211         interpret the return value of g_string_to_compound_text()
8212         (#55152)
8213
8214 2001-08-08  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8215
8216         * gtk/gtktreestore.c (gtk_tree_store_iter_n_children): Don't
8217         fail if iter is NULL. (#58347)
8218
8219 2001-08-07  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8220
8221         * gtk/gtktextdisplay.c (render_para, gtk_text_layout_draw): Fix
8222         some off-by-one issues, fixing selection of line-ends. (#50323)
8223
8224 2001-08-07  Matthias Clasen  <matthiasc@waldgeist.poet.de>
8225
8226         * gtk/gtkhsv.c (gtk_hsv_map, gtk_hsv_unmap): Reinstate these
8227         functions in order to make mouse operation work again in the
8228         color wheel. (#58604)
8229
8230 2001-08-07  James Henstridge  <james@daa.com.au>
8231
8232         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_object): refetch
8233         the accelerator when the accel object is changed.  Fixes bug
8234         #58628.
8235
8236 2001-08-06  HideToshi Tajima  <tajima@eng.sun.com>
8237
8238         * modules/input/gtkimcontextxim.c (mb_to_utf8), xim_text_to_utf8):
8239         Skip g_convert when to_codeset and from_codeset are both 'UTF-8'
8240         (gnome bugzilla #58202)
8241
8242 2001-08-06  Havoc Pennington  <hp@pobox.com>
8243  
8244         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): The whole 
8245         GDK_IS_WINDOW() branch of this was a bit screwed up, because 
8246         it was expecting a GdkWindow, not a GdkWindowImplX11.
8247  
8248         Also, we were getting the window rect in screen coords 
8249         and the screen rect in window coords then intersecting 
8250         them; instead, get window rect in window coords.
8251  
8252         Finally, there were codepaths that resulted in a stuck server grab
8253         (when the window was fully onscreen, or on gdk_image_new()
8254         failure); make the server ungrab thing a bit more
8255         robust/consistent.
8256
8257 2001-08-06  Sven Neumann  <sven@gimp.org>
8258
8259         * gdk/gdkpango.c (gdk_pango_context_destroy): 
8260         check if info->colormap != NULL before unref'ing it. It might have
8261         been set to NULL using gdk_pango_context_set_colormap().
8262
8263 Sun Aug  5 11:24:27 2001  Owen Taylor  <otaylor@redhat.com>
8264
8265         * gtk/gtkcolorsel.c (gtk_color_selection_set_current_alpha): 
8266         Fix conversion from float to int so that we don't get
8267         skew in the int => float => int roundtrip. 
8268         (#58120, reported by Vitaly Tishkov). Also fix problem
8269         where if no alpha was set, the returned alpha
8270         from (say) set_current_alpha() was returned as 1, not 65535.
8271
8272 Sun Aug  5 09:48:08 2001  Owen Taylor  <otaylor@redhat.com>
8273
8274         * gtk/gtklist.c (gtk_list_clear_items): Fix
8275         problem with selecting a new focus child.
8276
8277         * gtk/gtklist.c (gtk_list_clear_items): Clear 
8278         list->undo/list_focus_child after unparenting
8279         child, since unparenting the child can result
8280         in list->last_focus_child being set. (#58024)
8281
8282         * Makefile.am (SUBDIRS): Add target specific pc
8283         files to DISTCLEANFILES.
8284
8285         * gtk/Makefile.am: add @GTK_DEBUG_FLAGS@
8286         (58327, Matthias Clasen)
8287
8288 Sat Aug  4 19:28:21 2001  Owen Taylor  <otaylor@redhat.com>
8289
8290         * tests/testgtk.c: Patch from Hans (with various modifications),
8291         to add the ability to use testgtk as a rough-and-ready
8292         benchmark. Try, 'testgtk --bench all:5' (if you want decent
8293         numbers, run without a window manager)
8294
8295 2001-08-04 Alexander Larsson <alexl@redhat.com>
8296
8297         * gdk/win32/gdkinput.c:
8298         Add #ifdef HAVE_WINTAB around wintab.h include.
8299
8300         * gtk/gtk.def:
8301         Removed marshals that have been moved to glib.
8302         Commented out plug and socket. They didn't compile for me 
8303         on win32.
8304
8305 2001-08-04  Hans Breuer  <hans@breuer.org>
8306
8307         * gtk/stocks-icons/makefile.msc : new file
8308         * gtk/makefile.msc.in : use it
8309
8310         * gtk/gtkstyle.c : not all platforms do provide M_PI and
8311         friends, but luckily there is G_PI
8312
8313         * gtk/gtk.def : updated
8314
8315         * gdk/win32/gdkwindow.c (gdk_window_new) : don't make all TEMP 
8316         windows WS_POPUP, but only those without a parent. This fixes the 
8317         mis-alignment between the selectable (temp, input only) window and 
8318         the window text of GtkLabel.
8319
8320         (gdk_window_show) : respect private->state when actually showing
8321         the window.
8322
8323         (gdk_window_set_transient_for) : Implementation from Wolfgang 
8324         Sourdeau <wolfgang@contre.com> ported to 2.0 and added some 
8325         error handling. Should fix #50586.
8326
8327         * gdk/win32/gdkevents-win32.c : beautify log output
8328
8329 2001-08-04  Michael Natterer  <mitch@gimp.org>
8330
8331         * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
8332         Need to show the image after adding it to the GtkImageMenuItem.
8333         This used to work without in testgtk because of the
8334         gtk_widget_show_all() at the end of the function.
8335         (Closes #54978).
8336
8337 Tue Jul 31 22:59:33 2001  Tim Janik  <timj@gtk.org>
8338
8339         * gtk/gtknotebook.c (gtk_notebook_get_child_property): 
8340         (gtk_notebook_set_child_property): fix finding of child's page,
8341         since we have to validly deal with labels and menus here as well.
8342         (gtk_notebook_get_child_property): fix warning.
8343         (gtk_notebook_class_init): property tab_pack is of type
8344         GTK_TYPE_PACK_TYPE (enum) not boolean.
8345         (gtk_notebook_find_child): don't always warn, we might be looking
8346         for a label or menu child.
8347         (gtk_notebook_map): fix mapping of panel.
8348
8349         * gtk/gtkwidget.c (gtk_widget_set_child_visible): always constrain
8350         widget's mapped state, regardless of the value being set equals
8351         old settings, since things like REALIZED(parent) or MAPPED(parent)
8352         may have changed since the old value was set. make it an error to
8353         invoke this function on a toplevel widget.
8354
8355 2001-07-31  Darin Adler  <darin@bentspoon.com>
8356
8357         * gdk/gdkprivate.h:
8358         * gdk/x11/gdkx.h:
8359         Put all mentions of GdkFont inside #ifndef GDK_DISABLE_DEPRECATED.
8360
8361         * demos/gtk-demo/menus.c: (do_menus): Cast to G_OBJECT, not
8362         GTK_OBJECT.
8363
8364 Tue Jul 31 15:34:57 2001  Jonathan Blandford  <jrb@redhat.com>
8365
8366         * gtk/gtktreeview.c (gtk_tree_view_remove_column): Whoops.  Stupid
8367         scoping error pointed out by matthiasc@poet.de.
8368
8369 2001-07-31  Sven Neumann  <sven@gimp.org>
8370
8371         * demos/gtk-demo/appwindow.c
8372         * demos/gtk-demo/item_factory.c
8373         * tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
8374
8375 Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
8376
8377         * gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
8378         argument order for g_signal_has_handler_pending.
8379
8380 Sun Jul 29 17:14:01 2001  Tim Janik  <timj@gtk.org>
8381
8382         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): use g_file_test()
8383         instead of long deprecated g_scanner_stat_mode().
8384
8385 2001-07-29  Hans Breuer  <hans@breuer.org>
8386
8387         * gdk/makefile.msc : build in the backend dir after
8388         auto-generating files
8389
8390         * gdk/win32/gdkfont-win32.c (gdk_font_load) : reimplement
8391         with code from win32-production-branch.
8392
8393         *  gdk/win32/gdkwindow-win32.c : set the private->destroyed flag
8394         before calling DestroyWindow, which indirectly calls 
8395         gdk_window_destroy_notify ()
8396
8397         (performance patch merged from win32-production-branch)
8398         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_segments): 
8399         Use PatBlt() instead of LineTo() when possible (solid single-pixel pen, 
8400         R2_COPYPEN rop). It is claimed to be much faster.
8401
8402 Fri Jul 27 11:31:15 2001  Jonathan Blandford  <jrb@redhat.com>
8403
8404         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
8405         add an "attributes" property to the text renderer for ATK.
8406
8407 2001-07-26  Alex Larsson  <alexl@redhat.com>
8408
8409         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
8410         Initialize image->bits_per_pixel from the drawable, not from
8411         the root window.
8412
8413         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_get_depth):
8414         Fix cast. argument is an IMPL already.
8415
8416 2001-07-15  James Henstridge  <james@daa.com.au>
8417
8418         * gtk/gtkwindow.c (gtk_window_add_accel_group): cast to GObject.
8419         (gtk_window_remove_accel_group): same here.
8420         (gtk_window_key_press_event): same here.
8421
8422         * gtk/gtkwidget.c (gtk_widget_add_accelerator): cast to GObject.
8423         (gtk_widget_remove_accelerator): same here.
8424         (gtk_widget_remove_accelerators): same here.
8425
8426         * gtk/gtkplug.c (gtk_plug_accel_entries_changed): same here.
8427
8428         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): cast to GObject
8429         instead of GtkObject.
8430
8431         * gtk/gtkmenu.c (gtk_menu_key_press): update since GtkAccelGroup
8432         now takes GObjects.
8433
8434         * gtk/gtkitemfactory.c (gtk_item_factory_propagate_accelerator):
8435         pass a GObject to gtk_accel_group_entries_from_object.
8436         (gtk_item_factory_create_item): s/accel_widget/accel_object/
8437
8438         * gtk/gtk-boxed.defs: remove GtkAccelGroup boxed def.
8439
8440         * gtk/gtkaccellabel.c: convert to handle GObject accel objects.
8441
8442         * gtk/gtkaccellabel.h: fix header to reflect that arbitrary
8443         GObjects can have accelerators set now.  Add compatibility
8444         defines.
8445
8446         * gtk/gtkmarshal.list: add missing marshallers.
8447
8448         * gtk/gtkaccelgroup.[ch]: convert to a GObject, and allow setting
8449         accelerators on plain GObjects.  gtk_accel_group_object_destroy
8450         has been converted into a weak reference, and
8451         gtk_accel_group_delete_entries is now a destroy notify for that
8452         piece of data.
8453
8454 2001-07-23  Ron Steinke  <rsteinke@w-link.net>
8455
8456         * gdk/gdkdraw.c: Added a check on the colormap depth to
8457         gdk_drawable_set_colormap()
8458         * gdk/x11/gdkimage-x11.c: combination of Matthias Clasen's
8459         patch to fix colorsel and my patch to fix gdk_drawable_get_image()
8460         for pixmaps without visuals (more specifically, bitmaps)
8461         * gdk/x11/gdkpixmap-x11.c: Fixed gdk_pixmap_new() so it
8462         doesn't set a colormap with the wrong depth
8463
8464
8465 2001-07-22  Anders Carlsson  <andersca@gnome.org>
8466
8467         * gtk/gtktreeview.c (gtk_tree_view_class_init): Replace the
8468         expander_height and expander_width properties with a single
8469         property, expander_size.
8470         (gtk_tree_view_init): Set the tab_offset to expander_size
8471         plus some padding.
8472         (gtk_tree_view_unrealize): Remove the expand/collapse
8473         timeout if it exists.
8474         (coords_are_over_arrow): Fix a small bug.
8475         (gtk_tree_view_motion_draw_column_motion_arrow): Use
8476         expander_size.
8477         (gtk_tree_view_draw_focus): Use "treeview" instead of
8478         "add-mode" as detail when drawing the focus.
8479         (gtk_tree_view_bin_expose): Use "treeview-drop-indicator"
8480         instead of "add-mode" as detail when drawing the focus.
8481         (gtk_tree_view_deleted): If we have a node currently being
8482         expanded or collapsed, remove the timeout and set the node 
8483         to NULL.
8484         (gtk_tree_view_queue_draw_arrow): New function that just
8485         redraws the arrow of a node.
8486         (gtk_tree_view_draw_arrow): Use expander_size instead of
8487         expander_width/expander_height, also pass a different
8488         expander_style to gtk_paint_expander depending on the 
8489         state of the node being drawn.
8490         (expand_collapse_timeout): New function for expanding 
8491         or collapsing a node depending on the previous state.
8492         (gtk_tree_view_real_expand_row): Add timeout and set 
8493         correct state for node being expanded.
8494         (gtk_tree_view_real_collapse_row): Add timeout and set
8495         correct state for node being collapsed.
8496
8497         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): Add
8498         information about the node currently being expanded or
8499         collapsed, and also a timeout id.
8500
8501         * gtk/gtkstyle.h (struct _GtkStyleClass): Replace is_open
8502         with expander_style for draw_expander.
8503
8504         * gtk/gtkstyle.c (gtk_draw_expander): Replace is_open with
8505         expander_style.
8506         (create_expander_affine): New function for creating an 
8507         expander affine.
8508         (apply_affine_on_point): New function for applying an 
8509         affine to a point.
8510         (gtk_default_draw_expander): Modified to take expander_style
8511         instead of is_open, and to draw the rectangle rotated differently
8512         depending on the expander style.
8513         (gtk_paint_expander): Replace is_open with expander_style.
8514
8515         * gtk/gtkrbtree.h: Add expander states to GtkRBNodeColor.
8516
8517         * gtk/gtkenums.h: Add expander style enum.
8518
8519 2001-07-21  Jonas Borgström  <jonas@codefactory.se>
8520
8521         * gtk/gtktreemodel.c (gtk_tree_model_foreach): Check the return
8522         value from gtk_tree_model_get_iter, the model might be empty.
8523
8524 2001-07-20  Hans Breuer  <hans@breuer.org>
8525
8526         * gdk/win32/gdkinput-win32.c : gdk_device_get_history moved to
8527         gdk/gdkinput.c like the other backends
8528
8529         * gdk/win32/gdkinput-win32.h :
8530         * gdk/win32/gdkinput.c :
8531         * gdk/win32/gdkvisual-win32.c :
8532         * gdk/win32/gdkwin32.h : mechanical adaption to GdkDevice and
8533         GdkVisual GObjectification. UNTESTED for pen-devices because
8534         I simply have none.
8535
8536         * gdk/gdk.def :
8537         * gtk/gtk.def : updated externals
8538
8539         * gtk/gtkiconfactory.c :
8540         * gtk/gtkoldeditable.c : GError *error needs to be initialized (= NULL) 
8541         before passing &error to functions to avoid strange crashes
8542         
8543         * gtk/gtkcontainer.c (gtk_container_real_set_focus_child) : is static
8544
8545         * gtk/gtkwidget.c (gtk_widget_get_child_visible): use g_return_val_if_fail
8546
8547         * gtk/makefile.msc.in : updated
8548
8549 Thu Jul 19 15:35:32 2001  Owen Taylor  <otaylor@redhat.com>
8550
8551         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_vadjustment):
8552         Add property support. (#51858)
8553
8554 Thu Jul 19 14:56:33 2001  Owen Taylor  <otaylor@redhat.com>
8555
8556         * gtk/gtkaccellabel.c (gtk_accel_label_class_init) 
8557         * gtk/gtkinputdialog.c (gtk_input_dialog_set_key):
8558         Use Shift/Ctrl instead of Shft/Ctl. (#53807)
8559
8560 Thu Jul 19 11:41:00 2001  Owen Taylor  <otaylor@redhat.com>
8561
8562         * gtk/gtkcolorsel.c: Add propery support (roughly
8563         based on patch from Lee Mallabone, #51014)
8564
8565         * gtk/gtkcolorsel.h: Mark gtk_color_selection_set_update_policy as
8566         deprecated, since we already g_warning() on it.
8567
8568 Thu Jul 19 14:24:34 2001  Owen Taylor  <otaylor@redhat.com>
8569
8570         * gtk/gtkentry.c (gtk_entry_set_positions): Fix
8571         typo that sometimes caused selection not to work properly.
8572
8573         * gtk/gtkentry.c (gtk_entry_grab_focus): Select text in
8574         entry when tabbing in. (#57743)
8575         
8576         * gtk/gtkentry.c (gtk_entry_motion_notify): If the
8577         user drags up above or down below the entry, move
8578         to the end or the beginning of the entry. (Suggestion
8579         from Jay Cox, #50940)
8580
8581         * gtk/gtkentry.c (gtk_entry_move_cursor): If we have
8582         a current selection, then when moving by chars or
8583         words, move to the end of the selection rather than
8584         from entry->current_pos. (Suggestion from Jay Cox,
8585         #50942)
8586         
8587 Thu Jul 19 12:14:28 2001  Owen Taylor  <otaylor@redhat.com>
8588
8589         * gtk/gtkwindow.c (gtk_window_set_decorated): Actualy
8590         set window->decorated. (Patch from Hidetoshi Tajima,
8591         #55846)
8592
8593 Sat Jul  7 02:50:14 2001  Owen Taylor  <otaylor@redhat.com>
8594
8595         * gtk/gtkwidget.c (gtk_widget_set_parent): Enforce
8596         the widget/child realization/mapping invariants.
8597
8598         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add functions 
8599         gtk_widget_[get/set]_child_visible() to control
8600         whether visible children of a mapped window are
8601         mapped.
8602
8603         * docs/widget_system.txt: Updated for changes in
8604         container contract, and addition of GTK_CHILD_VISIBLE.
8605
8606         * gtk/gtkcontainer.c: Add generic map()/unmap()
8607         functions that work for almost all containers.
8608
8609         * gtk/gtknotebook.c gtk/gtkpacker.c: Use 
8610         gtk_widget_set_child_visible() where necessary.
8611
8612         * gtk/*.c: Remove excess map(), unmap(), and 
8613         realization/mapping invariant enforcing code
8614         from many containers.
8615
8616 Wed Jul 18 19:51:45 2001  Owen Taylor  <otaylor@redhat.com>
8617
8618         * gtk/gtktextview.c (gtk_text_view_set_attributes_from_style): 
8619         Get the foreground color from 'text', nor 'fg'. (#57568)
8620
8621 Wed Jul 18 19:28:46 2001  Owen Taylor  <otaylor@redhat.com>
8622
8623         * gtk/*.c: Patch from Matthias Clasen to remove remove
8624         all instances of g_return_if_fail (foo != NULL); that are
8625         immediately before a g_return_if_fail (GTK_IS_FOO (foo));
8626         since the second check catches the NULL anyways.
8627
8628 Wed Jul 18 18:23:05 2001  Owen Taylor  <otaylor@redhat.com>
8629
8630         * gtk/gtkbutton.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtktextview.c
8631         gtktreeview.c: Fix idles and timeouts to be properly surrounded by 
8632         GDK_THREADS_ENTER()/LEAVE() pairs.
8633
8634         * gtk/gtkdialog.c gtk/gtkclipboard.c: Surround calls
8635         to g_main_loop_run() with GDK_THREADS_LEAVE()/ENTER()
8636         pairs. (Problem found by M. Meeks)
8637
8638 2001-07-18  Darin Adler  <darin@bentspoon.com>
8639
8640         * gtk/gtkiconfactory.c: (gtk_icon_size_register): Reorder code so
8641         that we don't get a g_warning message every time we register a new
8642         icon size.
8643
8644         * gdk/x11/gdkcolor-x11.c: (gdk_colormap_alloc1): Fix warning by
8645         using pixel variable of the correct type.
8646         
8647 Fri Jul 13 15:33:32 2001  Owen Taylor  <otaylor@redhat.com>
8648
8649         * gdk/gdkwindow.[ch]: Add a function gdk_window_get_internal_paint_info(),
8650         so that using X functions on a GdkWindow is possible, if
8651         a little hairy.
8652
8653         * gdk/gdkgc.c (gdk_gc_offset): Add a function to offset the clip
8654         and ts_origin of a GC, so that external parties can offset/restore
8655         a GC, when using gdk_window_get_internal_paint_info().
8656
8657 2001-07-17  Darin Adler  <darin@bentspoon.com>
8658
8659         * .cvsignore: Ignore the sgml directory made by gtkdoc.
8660         * demos/pixbuf-demo.c: (main): Use gtk_window_set_resizable
8661         instead of the deprecated gtk_window_set_policy.
8662         * demos/testpixbuf-scale.c: Add missing <stdlib.h> include.
8663         * gdk/gdkkeys.c: (gdk_keymap_class_init): Remove empty finalize
8664         function to get rid of warning and some code too.
8665         * gdk/x11/gdkfont-x11.c: (gdk_font_charset_for_locale): Add
8666         missing const.
8667         * gdk/x11/gdkmain-x11.c: (_gdk_windowing_init_check): Remove
8668         unused local.
8669         * gdk/x11/gdkpango-x11.c: (gdk_pango_context_get): Add missing
8670         const.
8671         * gdk/x11/gdkselection-x11.c: (gdk_text_property_to_utf8_list),
8672         (gdk_utf8_to_compound_text): Add missing const.
8673         * gtk/gtkimage.c: (gtk_image_expose): Remove unused local.
8674         * gtk/gtkmenubar.c: (gtk_menu_bar_hierarchy_changed): Add missing
8675         cast and get rid of an unnecessary one.
8676         * gtk/gtksettings.c: (gtk_settings_notify): Remove unused local.
8677         * gtk/gtkstatusbar.c: (gtk_statusbar_size_allocate): Remove unused
8678         local.
8679         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_build_level):
8680         Remove unused local.
8681         * modules/input/gtkimcontextxim.c: (gtk_im_context_xim_new): Add
8682         missing const.
8683         * tests/testsocket.c: (add_child): Add cast so the printf format
8684         doesn't make us implicitly depend on what integer type
8685         gtk_socket_get_id returns.
8686         * tests/testtextbuffer.c: Add missing const.
8687         * tests/testtreefocus.c: (main): Remove unused local.
8688         * tests/treestoretest.c: (iter_remove): Remove unused local.
8689         (uppercase_value): Remove unused function.
8690         (make_window): Add statement to quiet the compiler's uninitialized
8691         variable warning.
8692
8693 Sat Jul 14 12:47:35 2001  Tim Janik  <timj@gtk.org>
8694
8695         * gtk/gtkrange.c:
8696         (second_timeout): 
8697         (initial_timeout): 
8698         (update_timeout): add GDK_THREADS_ENTER/GDK_THREADS_LEAVE.
8699         (gtk_range_calc_layout): compute the new layout based on an
8700         adjustment->value being passed in as argument.
8701         (gtk_range_button_press): for button2 slider warps, first recalc
8702         the layout, then adjust the value. also, use update_slider_position()
8703         for adjusting the value, so we keep pixel quantisation at which we
8704         usually operate (upon motion or button releases). the reason for this
8705         is that, we can't change the adjustment upon button2 presses to a non
8706         quantised value and upon button2 release re-quantise the value since
8707         that'd alter the value even if we didn't get any motion events (causing
8708         unexpected scroll area warps upon release and/or slider pixel-jitter).
8709         (gtk_range_motion_notify): update the slider position from queried
8710         coordinates, not event coordinates.
8711
8712 Fri Jul 13 09:47:52 2001  Tim Janik  <timj@gtk.org>
8713
8714         * gtk/gtkstyle.c (gtk_default_draw_focus): fix line style resetting,
8715         the default gc values are: width=0, CapBut, JoinMiter.
8716
8717 2001-07-13  Anders Carlsson  <andersca@codefactory.se>
8718
8719         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Take
8720         into account the xpad and ypad when calculating the width and the
8721         height of the pixbuf cel.
8722
8723 Thu Jul 12 18:29:40 2001  Owen Taylor  <otaylor@redhat.com>
8724
8725         * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group): 
8726         Rename to gtk_radio_menu_item_get_group(), add deprecated
8727         alias. (#57044)
8728
8729         * gtk/gtkfilesel.c: Indentation fix.
8730
8731 Thu Jul 12 17:33:00 2001  Owen Taylor  <otaylor@redhat.com>
8732
8733         * gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias 
8734         Hasselmann to fix warnings in compat macros. 
8735         (#56773)
8736
8737         * gtk/gtkmenubar.c (gtk_menu_bar_hierarchy_changed): Fix 
8738         stupid wrong cast added in last patch.
8739
8740 Thu Jul 12 16:51:34 2001  Owen Taylor  <otaylor@redhat.com>
8741
8742         * gtk/gtkwidget.c: Replace a couple of inappropriate calls to 
8743         GTK_WIDGET_HAS_FOCUS() with gtk_widget_is_focus(). (#57067)
8744
8745 Thu Jul 12 14:06:19 2001  Owen Taylor  <otaylor@redhat.com>
8746
8747         * gtk/gtkmenubar.c (gtk_menu_bar_hierarchy_changed): Add
8748         missing cast.
8749
8750         * gtk/gtkcontainer.c (gtk_container_get_focus_chain): Fix
8751         NULL/FALSE return value confusion.
8752
8753         * gtk/gtkrange.c (coord_to_value): Fix division-by-zero
8754         problem when scrollbar completely fills range. (Patch
8755         from  Matthias Clasen, #57047)
8756
8757 Thu Jul 12 13:53:28 2001  Owen Taylor  <otaylor@redhat.com>
8758
8759         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Properly
8760         clean up when handling events for move-resize emulation.
8761         (Problem traced down by Matthias Clasen, #57271)
8762
8763 Thu Jul 12 13:43:27 2001  Owen Taylor  <otaylor@redhat.com>
8764
8765         * gtk/gtkclist.c gtk/gtkcolorsel.c gtk/gtkcombo.c
8766           gtk/gtkctree.c gtk/gtkcurve.c gtk/gtkentry.c
8767           gtk/gtkfontsel.c gtk/gtkhandlebox.c 
8768           gtk/gtkimcontextsimple.c gtk/gtkmain.c gtk/gtkmenu.c
8769           gtk/gtkmenuitem.c gtk/gtkoptionmenu.c gtk/gtkpixmap.c
8770           gtk/gtkselection.c gtk/gtktextdisplay.c gtk/gtktextview.c
8771           gtk/gtktooltips.c gtk/gtkwidget.c gtk/gtkwindow.c:
8772         Formatting fixes from multihead brnach. [ mostly foo(bar) => foo (bar) ]
8773
8774 2001-07-09  Peter Williams  <peterw@ximian.com>
8775
8776         * gtk/Makefile.am ($(srcdir)/stamp-gtk.defs): Add a cd $(srcdir)
8777         for when srcdir != builddir
8778
8779 Mon Jul  9 12:50:51 2001  Jonathan Blandford  <jrb@redhat.com>
8780
8781         * gtk/gtktreemodel.c: remove gtk_tree_model_get_first in favor of
8782         gtk_tree_model_get_iter_root.
8783
8784         * gtk/gtkliststore.c: Add a bunch of g_return statements.
8785         (gtk_list_store_iter_n_children): Fix up.
8786
8787         * gtk/gtktreestore.c: Add a bunch of g_return statements.
8788
8789 Fri Jul  6 15:38:33 2001  Owen Taylor  <otaylor@redhat.com>
8790
8791         * gtk/gtkwidget.c (gtk_widget_class_init):
8792         G_SIGNAL_TYPE_STATIC_SCOPE GtkSelectionData to
8793         restore some workingness.
8794
8795         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Fix 
8796         handle of window type for input-only windows.
8797
8798 Thu Jul  5 21:53:46 2001  Owen Taylor  <otaylor@redhat.com>
8799
8800         * gtk/gtkbbox.[ch] gtk/gtkbox.[ch] gtk/gtk[hv]bbox.c:
8801         Patch from Gregory Merchan to add 
8802         gtk_button_box_set_secondary(), which separates
8803         the child into a separate group from the normal
8804         buttons. (#56331)
8805
8806         * gtk/gtkdialog.c: Make help buttons secondary by
8807         default.
8808
8809         * gtk/gtkbbox.c: Added a child property "secondary".
8810
8811         * gtk/testgtk.c: Turn on the help button for the 
8812         color selector to check that it properly appears
8813         as secondary.
8814
8815 Mon Jul  2 01:09:37 2001  Owen Taylor  <otaylor@redhat.com>
8816  
8817         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkwindow-x11.c
8818         gdk/linux-fb/gdkwindow-fb.c gdk/x11/gdkwindow-x11.c gdk/gdk:
8819         Add gdk_set_pointer_hooks() to allow pointer-querying to
8820         be hooked by an event record/playback system like GERD.
8821         (#56914)
8822         
8823 Thu Jul  5 08:57:07 2001  Owen Taylor  <otaylor@redhat.com>
8824
8825         * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Pass
8826         in the right value of initial_emission to
8827         gtk_widget_set_style_internal (#57091)
8828
8829 Wed Jul  4 23:17:04 2001  Owen Taylor  <otaylor@redhat.com>
8830
8831         * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
8832         Make compile.
8833
8834         * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
8835         with calling gtk_widget_set_style_internal() with
8836         the old style, not the new style. (#56989)
8837
8838 Wed Jul  4 22:35:40 2001  Owen Taylor  <otaylor@redhat.com>
8839
8840         * gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
8841           gtk/gtkwidget.c:
8842         Check GTK_WIDGET_TOPLEVEL(gtk_widget_get_toplevel (widget)),
8843         not GTK_WIDGET_GET_ANCESTOR ... see 
8844         http://mail.gnome.org/archives/gtk-devel-list/2001-July/msg00072.html.
8845         Indicate the best practice in the docs for gtk_widget_get_toplevel().
8846
8847         * gtk/gtkwidget.[ch]: Expose a private _gtk_widget_hierarchy_changed(),
8848         so GtkPlug can give the correct signals when transforming
8849         from a child to a toplevel.
8850         
8851         * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed): Handle
8852         reparentation correctly.
8853
8854         * gtk/gtkwidget.c (gtk_widget_propagate_hierarchy_changed):
8855         Propagate the previous_toplevel argument down properly.
8856
8857         * gtk/gtklabel.c (gtk_label_finalize): Fix unrefing
8858         of wrong atr list.
8859
8860         * gtk/gtkplug.[ch]: Add an "embedded" signal.
8861
8862         * gtk/gtksocket.[ch]: Add "child_added", "child_removed"
8863         signals.
8864
8865         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: Add 
8866         functions gtk_plug_get_id(), gtk_socket_get_id(),
8867         to avoid the user having to worry about realization,
8868         and gdkx.h.
8869
8870         * tests/testsocket.c: Extend to try out the new signals
8871         and gtk_plug/socket_get_id().
8872
8873         * gtk/gtklabel.c (gtk_label_set_pattern_internal): Fix
8874         setting of underline attributes.
8875
8876         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore
8877         DestroyNotify events from SubstructureNotifyMask
8878
8879         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent):
8880         Switch GDK_WINDOW_TYPE (window) as needed.
8881
8882         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Clean up,
8883         allow creation of toplevel windows as children of
8884         foreign windows.
8885
8886         * gtk/gtkplug.c: Remove hacks involving changing private
8887         fields of GdkWindow.
8888
8889         * gtk/gtkplug.[ch] gtk/gtksocket.c: Work to make 
8890         exactly the same signals and notification
8891         be emitted for local embedding as for inter-process
8892         embedding.
8893
8894 2001-07-04  James Henstridge  <james@daa.com.au>
8895
8896         * gtk/gtkliststore.h: add missing gtk_list_store_newv prototype.
8897
8898 Mon Jul  2 16:53:25 2001  Owen Taylor  <otaylor@redhat.com>
8899
8900         * gtk/xembed.h gtk/gtkplug.c gtk/gtksocket.c: For
8901         XEMBED embedding add a _XEMBED_INFO property to the
8902         client with version number and a "mapped" flags.
8903         Use the mapped flag instead of the racy MapRequestEvent
8904
8905         * gtk/gtksocket.c: Clean up the gtk_socket_steal()
8906         code to reliably set things (when the child is a passive
8907         embedder participating in the XEMBED protocol) intead
8908         of just being a hack for embedding non-participating
8909         programs. Fix various bugs and race conditions.
8910         
8911         * gtk/gtksocket.[ch] gtk/gtkplug.[ch]: Make local embedding
8912         work by simply making the GtkSocket the gtk parent
8913         of the GtkPlug. Set a flag in this case and make
8914         the GtkPlug work like a normal container by overriding
8915         methods such as check_resize and "chaining past" GtkWindow
8916         to GtkBin.
8917
8918         * gtk/gtkentry.c (gtk_entry_real_activate)
8919           gtk/gtkmain.c (gtk_propagate_event): 
8920         Eliminate use of gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW).
8921         
8922         * gtk/gtkwidget.c (gtk_widget_get_toplevel,
8923         gtk_widget_get_ancestor):
8924         Explain why gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW)
8925         might not give the expected result and recommend
8926         an alternative.
8927
8928         * tests/testsocket.c tests/testsocket_child.c
8929         tests/testsocket_common.c tests/Makefile.am: Extended
8930         to test different type of adding plugs to sockets
8931         (local,active,passive), and to test mapping/unmapping
8932         the plug.
8933
8934         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Don't
8935         mark the window as destroyed until after we
8936         called _gdk_windowing_window_destroy().
8937         (_gdk_windowing_window_destroy() may use GDK functions
8938         on the window.)
8939
8940         * gdk/x11/gdkinput.c: Remove the check for finalization - 
8941         devices can be finalized under some circumnstances.
8942  
8943         * gdk/x11/gdkinput-x11.c (gdk_input_device_new): Fix 
8944         small problem with GDK_TYPE_DEVICE.
8945  
8946 2001-07-02  Havoc Pennington  <hp@pobox.com>
8947
8948         * gdk/x11/gdkwindow-x11.c (gdk_wmspec_change_state): fix to 
8949         use constants not atoms.
8950
8951 2001-07-02  James Henstridge  <james@daa.com.au>
8952
8953         * gtk/gtktextview.c (gtk_text_view_class_init): same here for
8954         PANGO_TYPE_TAB_ARRAY.
8955
8956         * gtk/gtktexttag.c (gtk_text_tag_class_init): same here, but also
8957         for PANGO_TYPE_TAB_ARRAY.
8958
8959         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
8960         s/GTK_TYPE_PANGO_FONT_DESCRIPTION/PANGO_TYPE_FONT_DESCRIPTION/
8961
8962         * gtk/gtk-boxed.defs: move all the boxed definitions to the top of
8963         the file.  Remove Pango types from defs -- they are now defined in
8964         libpango.
8965
8966 Mon Jul  2 06:35:10 2001  Tim Janik  <timj@gtk.org>
8967
8968         * gdk/gdkkeys.c (gdk_keymap_class_init): s/signal_newc/signal_new/
8969
8970         * gtk/gtkobject.c (gtk_object_destroy): invoke
8971         g_object_run_dispose().
8972
8973         * gtk/gtkwindow.c: 
8974         * gtk/gtkwidget.c: 
8975         * gtk/gtkobject.c:
8976         * gtk/gtklist.c: s/shutdown/dispose/ for the GObject
8977         method.
8978
8979 Sat Jun 30 20:44:48 2001  Owen Taylor  <otaylor@redhat.com>
8980
8981         * gtk/gtktypeutils.c (gtk_type_class): Remove
8982         change check for GTK_TYPE_OBJECT derivation to
8983         G_TYPE_OBJECTS - it's Tim-approved to use this 
8984         for arbitary objects.
8985
8986         * gtk/gtkwindow.c gtk/gtkcontainer.[ch]: underscore
8987         prefix gtk_container_dequeue_resize_handler().
8988
8989         * gtk/gtkwidget.[ch]: Add a previous_toplevel argument
8990         to the hierarachy_changed signal, since you otherwise
8991         have to always keep that around.
8992
8993         * gtk/gtkmenubar.c gtk/gtklabel.c gtk/gtksocket.c: Adapt
8994         for extra argument to hierarchy_changed.
8995
8996 Tue Jun 26 19:39:03 2001  Owen Taylor  <otaylor@redhat.com>
8997
8998         * gtk/gtkwidget.c (gtk_widget_set_style): Allow %NULL
8999         for style to mean "revert to default style"
9000
9001         * gtk/gtkwidget.[ch] (gtk_widget_set_rc_style,
9002           gtk_widget_restore_default_style): Make this functions
9003         deprecated aliases for gtk_widget_set_style (widget, NULL).
9004
9005         * gtk/gtkwidget.[ch]: Remove:
9006            gtk_widget_set_default_style ()
9007            gtk_widget_push_style ()
9008            gtk_widget_pop_style ()
9009         These functions interact are overriden by RC files, and
9010         thus virtually useless, and complicated.
9011
9012 Fri Jun 22 18:49:48 2001  Owen Taylor  <otaylor@redhat.com>
9013
9014         * gtk/gtkrc.c: Add a GtkRcContext structure to hold 
9015         most of the previous global variables in gtkrc.c. This is
9016         in preparation for multi-head, since each screen can
9017         have different GtkSettings and RC information.
9018
9019         * gtk/gtkrc.[ch]: 
9020
9021         * gtk/gtkrc.h (struct _GtkRcStyleClass): Add a
9022         GtkSettings parameter to GtkRcStyle::parse.
9023
9024         * gdk/x11/gdkevents-x11.c gtk/gtksettings.c gtk/gtkrc.c: 
9025         Add two new settings gtk-theme-name, gtk-key-theme-name,
9026         for RC files that are loaded by name after reading
9027         the default RC files.
9028         
9029         * gtk/gtkrc.c: Allow priorities for styles, as wll as
9030         bindings.
9031
9032         * gtk/gtkenums.h gtk/gtkrc.c: Add GTK_PATH_PRIO_THEME,
9033         and use it by default for RC files loaded via 
9034         gtk-theme-name, gtk-key-theme-name.
9035
9036         * gtk/gtkiconfactory.c (gtk_icon_source_set_filename)
9037         gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string) 
9038         tests/testgtkrc: Require pathnames to be absolute.
9039
9040         * gtk/gtkrc.c gtk/gtkiconfactory.c: Look up the full filename for
9041         the source when parsing, since the operation of looking up a
9042         pixmap from an RC file depends on the parsing context.
9043
9044         * gtk/gtkrc.c (gtk_rc_context_reparse_all): Automatically
9045         reset RC styles on all widgets when files are reparsed.
9046
9047         * tests/testgtk.c (create_rc_file) 
9048           gtk/gtkwindow.c (gtk_window_read_rcfiles): 
9049         Simplify, now that gtk_rc_reparse_all() resets styles on
9050         all widgets itself.
9051
9052         * gtk/gtkmain.c (gtk_get_default_language): Fix broken
9053         return value.
9054
9055         * gtk/gtksettings.[ch] (gtk_settings_install_property[_ch]): Remove
9056         GtkSettings argument.
9057
9058         * gtk/gtksettings.[ch] (gtk_settings_get_default): Rename from
9059         gtk_settings_get_global().
9060
9061         * gtk/gtkwidget.[ch]: Add a function gtk_widget_Get_settings()
9062         to get the appropriate GtkSettings for a widget. (For now,
9063         just gets the default GtkSetttings.) 
9064
9065         * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtkmenubar.c
9066           gtk/gtktextview.c gtk/gtktoolbar.c: Fixes for GtkSettings
9067         changes.
9068
9069         * gtk/gtkrc.[ch]: Add gtk_rc_get_style_by_paths() to allow
9070         getting a style for a path without actually having a widget.
9071         (Allows using a style for a subpart of a widget, for
9072         example.)
9073
9074         * gtk/gtkrc.[ch]: Add gtk_rc_reparse_all_for_setting() to allow forcing
9075         the RC files to be reloaded for just one GtkSettings
9076         (not sure how useful this really is.)
9077
9078         * gtk/gtkrc.h: Deprecate
9079         gtk_rc_add_widget_name/widget_class/class_style
9080
9081 2001-06-30  Alex Larsson  <alexl@redhat.com>
9082
9083         * gdk/linux-fb/gdkinput-none.c:
9084         * gdk/linux-fb/gdkinput.c:
9085         * gdk/linux-fb/gdkinputprivate.h:
9086         Convert GdkDevice to a GObject.
9087
9088         * linux-fb/gdkprivate-fb.h:
9089         * linux-fb/gdkvisual-fb.c:
9090         Convert GdkVisual to a GObject.
9091
9092 2001-06-29  Alex Larsson  <alexl@redhat.com>
9093
9094         * gdk/gdkvisual.h:
9095         * gdk/gdkcolor.c:
9096         * gdk/x11/gdkx.h:
9097         * gdk/x11/gdkvisual-x11.c:
9098         Convert GdkVisual to a GObject.
9099
9100         * gdk/gdkinput.h:
9101         * gdk/gdkevents.c:
9102         * gdk/x11/gdkinputprivate.h:
9103         * gdk/x11/gdkinput-gxi.c:
9104         * gdk/x11/gdkinput-none.c:
9105         * gdk/x11/gdkinput-x11.c:
9106         * gdk/x11/gdkinput-xfree.c:
9107         * gdk/x11/gdkinput.c:
9108         Convert GdkDevice to a GObject.
9109
9110 Fri Jun 29 22:13:28 2001  Jonathan Blandford  <jrb@redhat.com>
9111
9112         * gtk/gtktreestore.c (gtk_tree_store_new): changed new_with_types
9113         to just plain new, fixing the number of columns, and column types
9114         at creation time.
9115
9116         * gtk/gtkliststore.c (gtk_list_store_new): ditto.
9117
9118         * gtk/gtkcellrenderertext.c
9119         (gtk_cell_renderer_text_set_fixed_height_from_font): FIX the
9120         height to a specific font.
9121
9122         * gtk/gtktreeview.c (gtk_tree_view_is_expander_column): fix brokenness.
9123
9124         * tests/*c: change to work with new store models.
9125
9126 2001-06-29  Havoc Pennington  <hp@redhat.com>
9127
9128        * Throughout: fixes to compile with G_DISABLE_COMPAT
9129         (s/g_signal_connectc/g_signal_connect/,
9130         s/g_signal_newc/g_signal_new/,
9131         s/g_signal_disconnect_by_func/g_signal_handlers_disconnect_by_func/)
9132
9133 Fri Jun 29 03:14:16 2001  Jonathan Blandford  <jrb@redhat.com>
9134
9135         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
9136         add path argument to selection callbacks.
9137
9138 Fri Jun 29 00:13:34 2001  Jonathan Blandford  <jrb@redhat.com>
9139
9140         * gtk/gtktreemodel.c (gtk_tree_model_foreach): New function to
9141         walk through a model in a depth first manner, with the option to
9142         break out.
9143
9144 Fri Jun  8 18:52:10 2001  Jonathan Blandford  <jrb@redhat.com>
9145
9146         * gtk/gtktreeview.[hc]: Patch Thomas Broyer from
9147         <tbroyer@ltgt.net>. Expander arrows are now attached to a specific
9148         column and follow it when draged, rather than a location in the
9149         view. "expander_column" property and drawing functions changed
9150         accordingly.  Fixes bug #55942.
9151
9152         (gtk_tree_view_{set,get}_expander_column): Now works with a
9153         GtkTreeViewColumn* instead of int.
9154
9155 Thu Jun 28 22:53:18 2001  Owen Taylor  <otaylor@redhat.com>
9156
9157         *  gdk/gdk.c gtk/gtktypeutils.c: Fix args to g_type_init(). 
9158
9159 2001-06-28  Havoc Pennington  <hp@pobox.com>
9160
9161         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
9162         image data to the screen, using a server grab to avoid race
9163         conditions.
9164
9165         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove 
9166         check for NULL return from gtk_image_new_from_stock(), it never
9167         returns NULL.
9168         (gtk_item_factory_create_item): fix bug where we parsed the stock
9169         ID as an inline pixbuf
9170
9171         * gtk/gtktext.c (gtk_text_key_press): numeric keypad support
9172
9173         * gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
9174         support (should be using binding set here)
9175
9176         * gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
9177         support (should be using binding set here)
9178
9179         * gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad 
9180         support
9181
9182         * gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
9183
9184         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
9185
9186         * gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
9187
9188         * gtk/gtkimcontextsimple.c
9189         (gtk_im_context_simple_filter_keypress): keypad
9190
9191         * gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad 
9192
9193         * gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
9194
9195         * gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
9196
9197         * gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
9198         should be binding-setted)
9199
9200         * gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
9201
9202         * gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
9203
9204         * gtk/gtkcalendar.c: numeric keypad fixes
9205
9206         * gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
9207         support
9208
9209         * gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
9210         screwup
9211
9212         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha): 
9213         clip the render area to the drawable's clip region in advance,
9214         so we don't get data from the server that we don't need.
9215
9216         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
9217         check return value of gdk_pixbuf_get_from_drawable(), fall back 
9218         to bilevel alpha if we can't get the pixbuf to composite against.
9219
9220         * gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
9221
9222         * gdk/gdkimage.c (gdk_image_get_colormap): add
9223         gdk_image_set_colormap, gdk_image_get_colormap
9224
9225         * gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
9226         take a region of the image, instead of converting the entire
9227         image.
9228
9229         * gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
9230         keybinding signal. Add default bindings for it. Add default
9231         handler for show_help that shows the tooltip for the widget.
9232
9233         * gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
9234         "close" keybinding signal, remove key press handler.
9235
9236         * gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
9237         it's not our usual practice to leave a deprecated function around
9238         with a runtime warning, plus we don't want it to appear in docs,
9239         plus if we make them yellow no one will want to change them
9240         anyhow.
9241
9242 Thu Jun 28 23:53:31 2001  Tim Janik  <timj@gtk.org>
9243
9244         * gtk/gtkwidget.c (gtk_widget_hide): !GTK_OBJECT_DESTROYED() ->
9245         GTK_WIDGET_REALIZE() for resize queueing.
9246
9247         * gtk/gtkmain.c (gtk_main_do_event): !GTK_OBJECT_DESTROYED() ->
9248         GTK_WIDGET_REALIZE() for post event delivery destruction upon
9249         GDK_DESTROY.
9250         
9251         * gtk/gtkwidget.c: added GtkWidget::event-after notification signal, to
9252         sompensate for former (pre-2.0) connect_after() facility.
9253         (gtk_widget_send_expose): 
9254         (gtk_widget_event): assert the widget is realized, since event delivery
9255         to non-realized widgets is essentially a bug. event handlers should
9256         be able to unconditionally rely on widget->window (unless they
9257         emit events on their own which can trigger widget destruction).
9258         (gtk_widget_event_internal): removed old outdated GTK_OBJECT_DESTROYED()
9259         logic. event delivery happens as follows:
9260         a) emission of GtkWidget::event (RUN_LAST handler). returns was_handled.
9261         b) if !was_handled in (a) and the widget is still realized, emit event-
9262            specific signal (RUN_LAST handler). returns was_handled.
9263         c) emission of GtkWidget::event-after for notification if the widget is
9264            still realized (regardless of was_handled from previous stages, no
9265            class handler). no return value.
9266         d) was_handled gets passed on to caller, to determine further
9267            propagation. if the widget got unrealized meanwhile, was_handled
9268            is returned as TRUE.
9269
9270         * gdk/gdkevents.[hc]: added gdk_event_get_root_coords() and
9271         gdk_event_get_coords().
9272
9273 Thu Jun 28 17:18:41 2001  Tim Janik  <timj@gtk.org>
9274
9275         * configure.in (GTK_MICRO_VERSION): up version to 1.3.7, interface
9276         age 0, binary age 0. depend on glib 1.3.7.
9277
9278         * gtk/gtkcontainer.c: remove g_signal_handlers_disconnect_by_func() hack.
9279
9280         * gtk/gtkmenubar.c: same here.
9281         
9282         * gtk/gtkcontainer.c (gtk_container_focus_tab): fix param-spec retrival.
9283
9284         * gtk/gtkcolorsel.c (gtk_color_selection_init): fix connect_data() usage.
9285
9286         * gtk/gtkentry.c (gtk_entry_focus_in): same here.
9287         
9288         * gtk/gtkmenubar.c (add_to_window): likewise.
9289         
9290         * gtk/gtktextbtree.c: and here...
9291         
9292         * gtk/gtktextview.c (gtk_text_view_ensure_layout): same thing.
9293         
9294         * gtk/gtktoolbar.c (gtk_toolbar_init): once more.
9295         
9296         * gtk/gtktreemodel.c (connect_ref_callbacks): and another time.
9297         
9298         * gtk/gtktreeviewcolumn.c:
9299         (_gtk_tree_view_column_set_tree_view): yet again.
9300
9301         * demos/gtk-demo/images.c (progressive_timeout): demonstrate
9302         signal connections without g_signal_connect_data().
9303         
9304         * demos/gtk-demo/stock_browser.c (do_stock_browser): second
9305         demo of the matter.
9306         
9307         * demos/testpixbuf.c (main): running out of equality phrases for the
9308         ChangeLog, but had to adapt connections here as well.
9309         
9310         * demos/testanimation.c (progressive_timeout): and for the fun of it,
9311         tackled this the same way.
9312         
9313         * tests/testtext.c (create_view): ok, it's becoming a pain at this
9314         point, but had enough enery for one more fix.
9315
9316         * tests/testtreecolumns.c (main): stand up man, do your work!
9317
9318         * tests/testtreeview.c (set_columns_type): ok, this is the last file i
9319         fix, either that's been all of it or CVS gtk is broken yet again.
9320         
9321 2001-06-29  James Henstridge  <james@daa.com.au>
9322
9323         The following changes correspond to bug #56812
9324
9325         * gdk/gdkinput.h, gdk/gdkevents.c (GDK_TYPE_DEVICE): register type
9326         code for GdkDevice.
9327
9328         * gdk/gdkcursor.[ch] (GDK_TYPE_CURSOR): register type code for
9329         GdkCursor.
9330
9331 2001-06-19  Havoc Pennington  <hp@pobox.com>
9332
9333         * gdk/x11/gdkwindow-x11.c (gdk_window_show_unraised): new function
9334         for mapping a window without fooling with stacking order, but
9335         updating the "withdrawn" flag
9336
9337         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Do event
9338         filtering as soon as possible, moving move resize and wmspec_check
9339         handling after the event filter.  Make default filter apply to all
9340         events, not just those with no GdkWindow wrapped around the X
9341         window. Fix a FIXME about how the window could be a pixmap using 
9342         RTTI; this of course assumes GDK_IS_WINDOW() is optimized. 
9343
9344         Also, be robust against events not on a known GdkWindow.
9345
9346         * gdk/x11/gdkmain-x11.c (gdk_x11_grab_server,
9347         gdk_x11_ungrab_server): export reference-counted server grabs, so
9348         other people can grab server over a GDK function that also does
9349         so.
9350
9351 Wed Jun 27 19:40:31 2001  Jonathan Blandford  <jrb@redhat.com>
9352
9353         * gtk/gtktreeviewcolumn.c
9354         (gtk_tree_view_column_pack_start_cell_renderer): New function to
9355         reflect that you can (hypothetically) pack cell renderers into a
9356         column.
9357         (gtk_tree_view_column_pack_end_cell_renderer): ditto.
9358         (gtk_tree_view_column_cell_is_visible): Move more functionality to
9359         the column.
9360         (gtk_tree_view_column_cell_can_focus): Move more functionality to
9361         the column.
9362
9363         * gtk/gtktreeview.c: Move to use new column-packing code.
9364         (gtk_tree_view_real_expand_row): remove totally braindead code.
9365         (gtk_tree_view_real_collapse_row): ditto.
9366
9367 2001-06-27  Kjartan Maraas  <kmaraas@gnome.org>
9368
9369         * gtk/gtktreeviewcolumn.c: Fix a typo.
9370         
9371 2001-06-26  Joel Becker  <jlbec@evilplan.org>
9372
9373         * gdk-pixbuf/gdk-pixbuf-csource.c: remove '#include "x"' line
9374           at the end of the file
9375
9376 2001-06-26  Havoc Pennington  <hp@redhat.com>
9377
9378         * gtk/gtkwindow.c (gtk_window_set_policy): forgot a notification
9379
9380 2001-06-26  Havoc Pennington  <hp@redhat.com>
9381
9382         * gtk/gtkwindow.c (gtk_window_class_init): add "resizable"
9383         property
9384
9385 Tue Jun 26 12:59:28 2001  Jonathan Blandford  <jrb@redhat.com>
9386
9387         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): fix
9388         stupid missing statement
9389
9390         * gtk/gtktreeview.c (gtk_tree_view_set_destroy_count_func): New
9391         private function for ATK.  It notifies you of how many _visible_
9392         children are deleted when a node is deleted.  Should be used by
9393         atk only.
9394
9395 Tue Jun 26 11:06:34 2001  Owen Taylor  <otaylor@redhat.com>
9396
9397         * gtk/gtkclist.c gtk/gtkentry.c gtk/gtkspinbutton.c:
9398         Use new pango_context_get_metrics() to fix problems
9399         with font lists in descriptions. (#56184, reported by
9400         Jonas Borgström)
9401
9402 Tue Jun 26 10:04:30 2001  Tim Janik  <timj@gtk.org>
9403
9404         * gtk/gtkiconfactory.c:
9405         * gtk/gtkitemfactory.c: use gdk_pixbuf_new_from_stream(). fixed up
9406         item factory so inlined pixbufs actually work.
9407
9408 2001-06-25  Havoc Pennington  <hp@redhat.com>
9409
9410         * gtk/gtktreeviewcolumn.h, gtk/gtktreeviewcolumn.c:
9411         s/RESIZEABLE/RESIZABLE/
9412
9413         * gtk/gtkwindow.c, gtk/gtkwindow.h: s/resizeable/resizable/
9414
9415 2001-06-25  Alexander Larsson  <alexl@redhat.com>
9416
9417         * configure.in:
9418         Added --enable-fbmanager. This is some experimental code
9419         that lets several GtkFB apps coordinate their access to the
9420         framebuffer.
9421         
9422         * acconfig.h:
9423         Added ENABLE_FB_MANAGER.
9424
9425         * gdk/linux-fb/Makefile.am:
9426         Added gdkfbmanager and gdkfbswitch.
9427
9428         * gdk/linux-fb/gdkkeyboard-fb.c:
9429         * gdk/linux-fb/gdkmouse-fb.c:
9430         * gdk/linux-fb/gdkprivate-fb.h:
9431         Split device init and open so that
9432         they can be opened and closed while switched
9433         away.
9434
9435         * gdk/linux-fb/gdkmain-fb.c:
9436         Add the basic manager communication.
9437
9438         * gdk/linux-fb/gdkrender-fb.c:
9439         Don't update to the shadow fb if we're
9440         blocked by the fb manager.
9441
9442 Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
9443
9444         * docs/Changes-2.0.txt: Add note about child property
9445         changes.
9446
9447 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
9448
9449         * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
9450         drag-and-drop GTK_ICON_SIZE_DND (Default to 32x32)
9451
9452         * gtk/gtkdnd.c (gtk_drag_dest_set_target_list): Fix problem
9453         with un'reffing wrong list reported by Jeff Franks.
9454
9455         * gtk/gtkdnd.[ch] (_gtk_drag_{source,}dest_handle_event): _prefix.
9456
9457         * gtk/gtkdnd.c (gtk_drag_set_icon_default): Use GTK_STOCK_DND
9458         for the default icon. Remove inline XPM.
9459
9460         * gtk/gtkstock.h gtk/gtkiconfactory.c:
9461         Add GTK_STOCK_DND GTK_STOCK_DND_MULTIPLE (Currently, stock_new
9462         is used for GTK_STOCK_DND, but it is a bit too small.)
9463
9464         * gtk/stock-icons/stock_dnd_multiple.png
9465         gtk/stock-icons/Makefile.am: New stock icon moved from gnome-libs.
9466
9467         * gtk/gtkdnd.c (gtk_drag_source_event_cb): Only return
9468         TRUE when starting a drag. In other cases, we are
9469         just observing. (#52995)
9470
9471         * gtk/gtkdnd.[ch] (gtk_drag_set_icon_{stock,pixbuf}): Add 
9472         function to set the icon for a drag from a GdkPixbuf
9473         or stock ID.
9474
9475         * gtk/gtkdnd.[ch] (gtk_drag_source_set_icon_{stock,pixbuf}): 
9476         Likewise, for drag sources.
9477
9478         * gtk/gtkdnd.h: Deprecate gtk_drag_set_default_icon.
9479         (Now should be done using the stock system.)
9480
9481 Sun Jun 24 12:06:47 2001  Owen Taylor  <otaylor@redhat.com>
9482
9483         * gtk/gtktextview.[ch] (gtk_text_view_set_text_window_size): 
9484         Removed - didn't work and not particularly useful anyways
9485         if it did. 
9486
9487 Sun Jun 24 11:29:35 2001  Owen Taylor  <otaylor@redhat.com>
9488
9489         * gdk/x11/gdkimage-x11.c (gdk_image_new): Fix stupid error
9490         introduced last night that was making things decidedly not work.
9491
9492         * gtk/*.[ch]: Patch from Kristian Rietveld adding 80 getters
9493         so that we have getter/setter pairing everywhere it makes
9494         sense. (#55767)
9495
9496         * gtk/gtkradiobutton.[ch] gtk/gtktoolbar.c tests/testgtk.:
9497         Rename gtk_radio_button_group to gtk_radio_button_get_group, add a
9498         deprecated compat macro. (#55516)
9499
9500         * gtk/gtklabel.[ch]: Add functions
9501         gtk_label_set/get_use_underline(), gtk_label_set/get_use_markup(),
9502         gtk_label_set_label(), which mirror the property API for GtkLabel.
9503         Make gtk_label_get_attributes() only reflect the attributes
9504         set by gtk_label_set_attributes.
9505
9506         * gtk/gtknotebook.c (gtk_notebook_set_current_page) gtk/gtkcompat.h: Rename
9507         from gtk_notebook_set_page().
9508
9509 Sat Jun 23 18:02:46 2001  Owen Taylor  <otaylor@redhat.com>
9510
9511         * configure.in: Fix tests for XShm.h.
9512
9513         * gdk/x11/gdkimage-x11.c: Cleanup error handling in
9514         gdk_image_new() by use of goto, properly use g_object_unref().
9515
9516 Sat Jun 23 22:03:20 2001  Tim Janik  <timj@gtk.org>
9517
9518         * gdk/x11/gdkimage-x11.c (gdk_image_init): disabled g_free (image)
9519         calls, as GdkImage is an object. these should be g_obejct_unref()
9520         instead but that won't work because of the g_error() statement
9521         in gdk_x11_image_destroy(). so for now, i did s/g_free/LEAK_IMAGE/
9522         to spot these places.
9523
9524 Sat Jun 23 10:27:53 2001  Owen Taylor  <otaylor@redhat.com>
9525
9526         * modules/input/gtkimcontextxim.c: Fixup some problems with 
9527         text length handling in error cases.
9528
9529         * gtk/gtkwidget.c (gtk_widget_size_allocate): Reorder
9530         a bit to make test actually warn on attempt to allocation
9531         a negative size. (#56101, Matthias Clasen)
9532
9533 Fri Jun 22 14:06:08 2001  Jonathan Blandford  <jrb@redhat.com>
9534
9535         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
9536         noticed by Brian Cameron.
9537         (gtk_tree_view_real_expand_row): Fix bug noticed by Brian
9538         Cameron.
9539
9540 2001-06-22  Hans Breuer  <hans@breuer.org>
9541
9542         * gdk/gdk.def : updated externals
9543
9544         * gdk/win32/gdkdrawable-win32.c : corrected some casts
9545         in GDK_NOTEs
9546
9547         * gdk/win32/gdkevents-win32.c : use _gdk_windowing_window_get_offsets
9548         to translate coordinates to the internal > 16 bit system
9549         Try to handle WM_WINDOWPOSCHANGED to get better performance for
9550         when moving/resizing
9551
9552         * gdk/win32/gdkkeys-win32.c : implement gdk_keymap_get_default ()
9553         and gdk_keymap_get_direction (). The latter is untested for
9554         the RTL case
9555
9556         * gtk/gtk.def : updated externals
9557
9558         * gtk/gtkmain.c : gtk_get_default_language () should reurn the result
9559         from pango_language_from_string (), not an already freed pointer
9560
9561         * gtk/stock-icons/stock_menu_sort_ascending.png : PNGs need to be 
9562         binary (-kb) to be useable on windoze
9563  
9564 2001-06-21  Alexander Larsson  <alexl@redhat.com>
9565
9566         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description): 
9567         Update to new PangoLanguage changes.
9568         
9569         * gtk/gtkwindow-decorate.c:
9570         * gtk/gtkwindow.[ch]:
9571         Added setting argument to gtk_window_set_has_frame ()
9572         
9573 Thu Jun 21 13:42:01 2001  Owen Taylor  <otaylor@redhat.com>
9574
9575         * gdk/x11/gdkkeys-x11.c (gdk_keymap_get_direction): Handle
9576         the case without XKB properly.
9577
9578         * gtk/gtkrc.c (gtk_rc_set_default_files): Remove
9579         unused gtk_rc_auto_parse variable.
9580
9581         * gtk/gtkrc.[ch] gtk/gtkstyle.c docs/Changes-2.0.txt:
9582         Remove gtk_rc_set_image_loader(), gtk_rc_load_image(), no
9583         longer needed with GdkPixbuf.
9584
9585         * gtk/gtkrc.c (_gtk_rc_init): Make private.
9586
9587 Fri Jun 15 16:26:12 2001  Owen Taylor  <otaylor@redhat.com>
9588
9589         * gtk/gtkentry.h: Mark deprecated functions with
9590         GTK_DISABLE_DEPRECATED.
9591
9592 Mon Jun 11 18:15:16 2001  Owen Taylor  <otaylor@redhat.com>
9593
9594         * gdk/gdk.h: Add missing gdk_rectangle_get_type() prototype.
9595
9596         * gtk/gtk[hv]scale.c: Include math.h, stdlib.h
9597
9598         * gdk/gdkpango.h gtk/gtkclist.c gtk/gtkentry.c gtk/gtkmain.[ch]
9599           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtktextbuffer.c
9600           gtk/gtktextdisplay.c gtk/gtktextiter.[ch]
9601           gtk/gtktextlayout.c gtk/gtktexttag.[ch] gtk/gtkwidget.c: Adapt
9602           to recent changes in Pango.
9603
9604         * tests/testgtk.c: Set language tags with gtk_label_set_markup()
9605           to test whether the basic engine honors them.
9606
9607 Thu Jun 21 02:13:40 2001  Tim Janik  <timj@gtk.org>
9608
9609         * gtk/gtkcontainer.[hc]: added gtk_container_child_set_property() and
9610         gtk_container_child_get_property().
9611
9612 Wed Jun 20 19:19:15 2001  Jonathan Blandford  <jrb@redhat.com>
9613
9614         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): clean up
9615         (gtk_tree_view_move_cursor_page_up_down): implement.
9616
9617 Wed Jun 20 05:32:05 2001  Tim Janik  <timj@gtk.org>
9618
9619         * gtk/gtkspinbutton.c: make maximum digits compile time configurable
9620         via MAX_DIGITS and up to 20. 5 was just ridiculously small.
9621         don't use automatic fixed size buffer for printf-ing floats, doubles
9622         can expand to really _huge_ strings, use g_strdup_printf() instead.
9623
9624 Wed Jun 20 04:28:24 2001  Tim Janik  <timj@gtk.org>
9625
9626         * gtk/gtkrange.c (gtk_range_class_init): hum, "adjustment" was a
9627         construct property in 1.2 and still needs to be.
9628
9629         * gtk/gtkwidget.c: "composite_child" is not a settable property.
9630
9631 Tue Jun 19 19:13:19 2001  Jonathan Blandford  <jrb@redhat.com>
9632
9633         * gtk/gtkliststore.c (gtk_list_store_clear): 
9634         * gtk/gtktreestore.c (gtk_tree_store_clear): New functions to
9635         clear a model.
9636
9637 Mon Jun 18 02:00:49 2001  Tim Janik  <timj@gtk.org>
9638
9639         * gtk/gtkwidget.c (gtk_widget_get_property): fix PROP_EVENTS.
9640
9641         * gtk/Makefile.am:
9642         * gtk/gtk.h: disabled GtkPacker compilation.
9643
9644         * gtk/gtkarg.[hc], gtk/gtkargcollector.c: got rid of these.
9645
9646         * gtk/gtknotebook.c:
9647         * gtk/gtktable.c:
9648         * gtk/gtkbox.c: ported this over to child properties.
9649
9650         * gtk/gtksettings.c: fetch class properties via
9651         g_object_class_list_properties().
9652
9653         * gtk/gtkcontainer.[hc]: implemented child properties, got rid of the
9654         child arg interface. use gobjectnotifyqueue.c for child property
9655         notification.
9656
9657         * gtk/gtkwidget.[hc]: provide necessary means for container child
9658         properties, i.e. ::child_notify signal,
9659         gtk_widget_freeze_child_notify(),
9660         gtk_widget_child_notify(),
9661         gtk_widget_thaw_child_notify().
9662
9663         * tests/testgtk.c: removed inferior property handling code, for
9664         property editing, a generic module should be used, and GLE
9665         coincidentally fullfills that purpose.
9666
9667         * docs/reference/Makefile.am: disabled gtk docs building, gtk-doc
9668         needs to be adapted to g_object_class_list_properties() before this
9669         builds again.
9670
9671 Mon Jun 18 20:06:10 2001  Jonathan Blandford  <jrb@redhat.com>
9672
9673         * gtk/gtktreeview.c (gtk_tree_view_row_expanded): New function to
9674         test if a node is expanded.
9675
9676 Mon Jun 18 19:41:38 2001  Jonathan Blandford  <jrb@redhat.com>
9677
9678         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
9679         where collapsing a selected row would result in the cursor/anchor
9680         getting screwed up.
9681
9682 Fri Jun 15 18:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
9683
9684         * gtk/gtktreesortable.c (gtk_tree_sortable_set_sort_func): Rename
9685         gtk_tree_sortable_sort_column_id_set_func.  It's much shorter now.
9686         * gtk/gtktreeview.c (gtk_tree_view_sort_iter_changed): WOOO!!!
9687         Now I can really reorder/sort all Store widgets.  treesorttest
9688         seems to just work now.
9689         * gtk/gtklistview.c (gtk_list_store_iter_changed): Whoops.
9690         testtreesort worked through a big coincidence all this time.
9691         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Nasty bug fix in nasty
9692         code.
9693         * tests/testtreecolumns.c: Big 'ol warning at the top letting
9694         people know that this code should never ever ever be copied.
9695
9696 2001-06-15  Jonas Borgström  <jonas@codefactory.se>
9697
9698         * gtk/gtkwindow.h: Fixed a small typo, it should be
9699         GTK_WINDOW_GROUP_GET_CLASS and not GTK_WINDOW_GET_CLASS
9700         on line 134.
9701
9702 2001-06-14  Havoc Pennington  <hp@redhat.com>
9703
9704         Docs fixups, and:
9705         
9706         * gtk/gtkcompat.h: remove GTK_DISABLE_COMPAT_H, replace with
9707         GTK_DISABLE_DEPRECATED
9708
9709 Thu Jun 14 19:21:27 2001  Jonathan Blandford  <jrb@redhat.com>
9710
9711         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Whoops.  Forgot
9712         this a couple months ago.  Now GtkTreeStore sort of sorts.  I'll
9713         finish it off tonight, though it basically works now when it's a
9714         list.  Also, I have a sinking feeling neither GtkTreeStore or
9715         GtkListStore actually resort when adding a new item.  I'll look
9716         into it.
9717
9718 2001-06-14  Havoc Pennington  <hp@redhat.com>
9719
9720         * demos/gtk-demo/main.c (load_file): fix bug identified by
9721         warnings I just added to gtktextbuffer
9722
9723 2001-06-14  Havoc Pennington  <hp@redhat.com>
9724
9725         * gtk/gtkwindow.c (window_group_cleanup_grabs): fix other typo
9726
9727         * gtk/gtkwidget.c (gtk_widget_propagate_state): fix typo
9728
9729         * gtk/gtktextbtree.c: don't leak node data all over the place.
9730
9731         * demos/gtk-demo/main.c (main): create fontify tags for the right
9732         buffer
9733
9734         * gtk/gtktextbuffer.c, gtk/gtktexttagtable.c: enhance docs
9735         to mention tags in the same table can't have the same name,
9736         suggested by Skip Montanaro
9737
9738 2001-06-11  Havoc Pennington  <hp@redhat.com>
9739
9740         * gtk/gtktexttagtable.c (gtk_text_tag_table_add): improve warning 
9741         for trying to add two tags with same name to the tag table
9742
9743         * demos/gtk-demo/main.c (main): fix colors ;-)
9744
9745 `Fri Jun  8 17:56:52 2001  Owen Taylor  <otaylor@redhat.com>
9746
9747         * gtk/gtkwindow.[ch] gtk/gtkmain.c: Add a GtkWindowGroup struct
9748         that allows grouping together multiple windows so that grabs
9749         within that set of windows only affect those windows.
9750
9751         * gtk/gtkmain.c gtk/gtkwidget.[ch]: Add a "grab_notify"
9752         signal for notification when a widget becomes shadowed
9753         by a grab or is no longer shadowed by a grab.
9754
9755         * gtk/gtkwidget.c (gtk_widget_propagate_state)
9756           gtk/gtkmain.c: (gtk_widget_grab_add): Don't allow
9757         insenstive widgets to maintain a grab.
9758
9759 2001-06-14  Alexander Larsson  <alexl@redhat.com>
9760
9761         * docs/README.linux-fb:
9762         Add some example config files that can be used with the URW fonts.
9763         
9764         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init): 
9765         Set up the color ramps for DirectColor mode.
9766
9767 2001-06-11  Havoc Pennington  <hp@redhat.com>
9768
9769         * Release 1.3.6
9770          
9771 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
9772
9773         * gdk/linux-fb/gdkwindow-fb.c:
9774         Unify shaped window code and make it repaint the area that used
9775         to be part of the shape, but isn't anymore.
9776
9777 2001-06-11  Havoc Pennington  <hp@redhat.com>
9778
9779         * NEWS: Updates
9780
9781         * configure.in (GTK_MINOR_VERSION): bump version to 1.3.6
9782
9783         * gtk/Makefile.am: glib_genmarshal already contains top_builddir
9784         
9785 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
9786
9787         * gdk/linux-fb/gdkdnd-fb.c (gdk_drag_status):
9788         Don't pass on GDK_ACTION_DEFAULT. The Xdnd code
9789         passes zero instead, so do we.
9790         
9791 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
9792
9793         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
9794         Deep copy dash_list too.
9795         (_gdk_fb_gc_new): Set default cap_style before
9796         setting values.
9797
9798 2001-06-12  Alexander Larsson  <alla@lysator.liu.se>
9799
9800         * gdk/linux-fb/gdkkeyboard-fb.c (gdk_keymap_get_default,
9801         gdk_keymap_get_direction): New functions.
9802
9803 Tue Jun 12 12:41:27 2001  Jonathan Blandford  <jrb@redhat.com>
9804
9805         * gtk/gtktreemodel.h (GTK_TREE_MODEL_LIST_ONLY): further justify
9806         gtk_tree_model_get_flags by adding a second flag for atk.
9807
9808         * gtk/gtktreemodel.c: make cursor behavior interact better with
9809         mouse presses.
9810
9811 Mon Jun 11 12:43:08 2001  Jonathan Blandford  <jrb@redhat.com>
9812
9813         * gtk/gtktreeview.c (gtk_tree_view_class_init): changed
9814         expand_row/collapse_row to be 2 signals each -- test_expand_row
9815         and row_expanded as well as test_collapse_row and row_collapsed.
9816
9817 2001-06-10  Anders Carlsson  <andersca@codefactory.se>
9818
9819         * demos/gtk-demo/stock_browser.c (do_stock_browser): Update
9820         signal name to be changed instead of selection_changed.
9821
9822 2001-06-08  Havoc Pennington  <hp@redhat.com>
9823
9824         * gtk/gtkentry.c (gtk_entry_class_init): add read-only
9825         "scroll_offset" property for notification when the layout offsets
9826         may have changed
9827         (gtk_entry_adjust_scroll): add notify for scroll_offset
9828         (gtk_entry_layout_index_to_text_index): function to compensate for
9829         preedit string when doing coordinate stuff on the entry's layout
9830         (gtk_entry_text_index_to_layout_index): inverse function
9831         (gtk_entry_get_layout_offsets): hook to get current position of
9832         the layout      
9833         (gtk_entry_get_layout): hook to get the layout itself.
9834
9835         * gtk/gtklabel.c (gtk_label_get_layout): new function
9836
9837 Fri Jun  8 19:49:29 2001  Jonathan Blandford  <jrb@redhat.com>
9838
9839         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): New
9840         keybinding.
9841         (gtk_tree_view_focus): Fix merge conflict.
9842
9843 Fri Jun  8 18:41:30 2001  Jonathan Blandford  <jrb@redhat.com>
9844
9845         * gtk/gtktreeview.c (gtk_tree_view_set_cursor): new function to
9846         clean up cursor handling.
9847
9848 2001-06-08  Havoc Pennington  <hp@redhat.com>
9849
9850         * gtk/gtktextbuffer.c (gtk_text_buffer_get_start_iter): added this
9851         function
9852
9853         * gtk/gtktextview.c (gtk_text_view_get_default_attributes): added
9854         this function
9855
9856 2001-06-08  Alex Larsson  <alexl@redhat.com>
9857
9858         * gtk/gtkcompat.h.in:
9859         Added compat macros for all old GTK_TYPE_GDK_xxx types.
9860         Fixes bug #52892
9861
9862 2001-06-08  Havoc Pennington  <hp@redhat.com>
9863         
9864         * gtk/gtkhsv.h (struct _GtkHSVClass): had GtkContainerClass as
9865         parent still
9866
9867 2001-06-08  Havoc Pennington  <hp@redhat.com>
9868
9869         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): geez,
9870         don't call g_list funcs on GSList
9871
9872         * gtk/gtkwidget.c (gtk_widget_child_focus): replaces
9873         gtk_container_focus(), since some widgets have focusable locations
9874         which are not other widgets. These widgets should not have to be 
9875         containers just to manage the focus. For example, GtkHSV is
9876         currently a container for no good reason. Also, this cleans
9877         up the "if (is_container && is_sensitive && is_drawable)
9878         container_focus ()" mess in widget implementations.
9879
9880         * gtk/gtkcontainer.c (gtk_container_focus): deprecate this
9881         function, and have it just call gtk_widget_child_focus().
9882
9883         * gtk/gtkhsv.c: derive from widget not container
9884         
9885         Throughout: fix to reflect GtkContainer::focus change
9886         
9887 Fri Jun  8 12:38:49 2001  Jonathan Blandford  <jrb@redhat.com>
9888
9889         * gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of
9890         range.  Fix bug #55921
9891
9892         * gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug
9893         (#55920).
9894
9895 Fri Jun  8 12:03:07 2001  Owen Taylor  <otaylor@redhat.com>
9896
9897         * gdk/gdkkeys.[ch]: Add a direction-changed signal,
9898         and gdk_keymap_get_current_direction().
9899
9900         * gdk/x11/gdkevents-x11.c gdk/x11/gdkkeys-x11.c
9901           gdk/x11/gdkmain-x11.c gdk/x11/gdkprivate-x11.h: Track
9902         the current locked group, use it to set the keymap
9903         direction.
9904
9905         * gtk/gtksettings.c: Add a new gtk-split-cursor setting
9906         to determine whether we draw a split cursor or use
9907         a jumping cursor based on the current direction.
9908
9909         * gtk/gtkentry.c gtk/gtktextview.c gtk/gtktextlayout.[ch]:
9910         Obey the split cursor setting. 
9911
9912 Fri Jun  8 11:57:50 2001  Owen Taylor  <otaylor@redhat.com>
9913
9914         * gtk/gtkimmulticontext.c (activate_cb): Only activate
9915         when toggling on, not when toggling off... (#55906)
9916
9917 Wed Jun  6 10:37:07 2001  Owen Taylor  <otaylor@redhat.com>
9918
9919         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): 
9920         s/gdk_window_begin_paint/gdk_window_begin_paint_region/
9921         in docs. (#55812, Vitaly Tishkov)
9922
9923 2001-06-08  Anders Carlsson  <andersca@codefactory.se>
9924
9925         * demos/gtk-demo/main.c (create_tree): Changed signal name from
9926         selection_changed to changed in signal connection to GtkTreeSelection,
9927         also used g_signal_connectc since GtkTreeSelection is now a GObject.
9928
9929 Thu Jun  7 18:25:42 2001  Jonathan Blandford  <jrb@redhat.com>
9930
9931         * gtk/gtktreeselection.c: Now it's a GObject instead of a
9932         GtkObject.  The GtkTreeSelection::selection_changed signal is now
9933         the GtkTreeSelection::changed signal.
9934
9935         * gtk/gtktreeview.c: Modified to deal with new GtkTreeSelection
9936         object.
9937
9938         * tests/gtktree*.c: Modified to deal with new GtkTreeSelection
9939         object.
9940
9941 2001-06-07  Havoc Pennington  <hp@redhat.com>
9942
9943         * gtk/Makefile.am: fix glib-mkenums and glib-genmarshal again
9944
9945 2001-06-07  Havoc Pennington  <hp@redhat.com>
9946         
9947         * gtk/Makefile.am: fixups for glib-mkenums and glib-genmarshal
9948         (not tested yet because with absolute path to srcdir I can't build
9949         atk, but it was broken anyway so this may help) 
9950
9951 2001-06-07  Havoc Pennington  <hp@redhat.com>
9952
9953         * configure.in: output m4macros/Makefile
9954         
9955 Wed Jun  6 21:59:16 2001  Jonathan Blandford  <jrb@redhat.com>
9956
9957         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): hook up arrow
9958         buttons.  Fixes #55460 reported by matthiasc@poet.de.
9959
9960 Wed Jun  6 21:18:54 2001  Jonathan Blandford  <jrb@redhat.com>
9961
9962         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): centralize
9963         expansion/collapsing so it only happens in one place.
9964         (gtk_tree_view_real_expand_row): ditto.
9965
9966 2001-06-07  Havoc Pennington  <hp@redhat.com>
9967
9968         * tests/Makefile.am: add missing -I flag
9969
9970         * gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc.
9971
9972         * configure.in: use pkg-config to see if GModule is
9973         supported; fix to properly turn on included loaders 
9974         when GModule isn't supported; don't use AC_CHECK_LIB 
9975         when libs are not installed yet
9976
9977         * autogen.sh: add support for AUTOGEN_SUBDIR_MODE
9978
9979         * Makefile.am (SUBDIRS): add m4macros subdir
9980
9981         * gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in
9982         dependencies also.
9983
9984 Wed Jun  6 19:31:11 2001  Jonathan Blandford  <jrb@redhat.com>
9985
9986         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix silly bug
9987         reported by "Padraig O'Briain" <Padraig.Obriain@Sun.COM>.
9988
9989 Wed Jun  6 20:01:38 2001  Jonathan Blandford  <jrb@redhat.com>
9990
9991         * gtk/gtktreeview.c
9992         (gtk_tree_view_real_expand_collapse_cursor_row): Handle key
9993         bindings to expand and collapse rows.
9994         (gtk_tree_view_real_select_cursor_parent): New key binding.
9995         (gtk_tree_view_real_toggle_cursor_row): New key binding.
9996
9997         * gtk/gtkmarshal.list: new
9998         marshaller. (VOID__BOOLEAN_BOOLEAN_BOOLEAN)
9999
10000 2001-06-06  Havoc Pennington  <hp@redhat.com>
10001
10002         * gtk/gtkrange.c (gtk_range_class_init): add "inverted" property
10003
10004         * gtk/gtkscale.c (gtk_scale_class_init): Change Page Up and Page
10005         Down to move visually rather than logically, since it confuses 
10006         people. Add -/+ and Ctrl--/+ bindings for logical movement.
10007
10008 2001-06-06  Alex Larsson  <alexl@redhat.com>
10009
10010         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
10011         Fix up error messages.
10012
10013 Wed Jun  6 10:34:42 2001  Owen Taylor  <otaylor@redhat.com>
10014
10015         * gtk/gtktooltips.h: Include gtkwidget.h 
10016         (#55798, Karl Nelson)
10017
10018         * gdk/x11/gdkwindow-x11.c (utf8_is_latin1): 0xff is
10019         a valid latin-1 character. (Marc Lehmann, #35467)
10020
10021         * gdk/x11/gdkwindow-x11.c: Fix minor typo in comment. 
10022         (Marc Lehmann, #35467)
10023         
10024 2001-06-05  Alex Larsson  <alexl@redhat.com>
10025
10026         * demos/gtk-demo/appwindow.c (do_appwindow):
10027         Don't swap the order of the args to gtk_widget_destroyed.
10028
10029         * tests/testgtk.c (destroy_properties):
10030         Don't crash when the properties window is destroyed.
10031
10032         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock):
10033         Use with_mnemonics to handle the case of stock items with
10034         underscores in them.
10035
10036 2001-06-05  Havoc Pennington  <hp@redhat.com>
10037
10038         * gtk/gtktextiter.c (gtk_text_iter_order): rename from 
10039         gtk_text_iter_reorder
10040
10041 2001-06-05  Havoc Pennington  <hp@redhat.com>
10042
10043         * gtk/gtktoolbar.c (gtk_toolbar_remove_space): new function
10044
10045 2001-06-05  Havoc Pennington  <hp@redhat.com>
10046
10047         * gtk/gtkspinbutton.c (gtk_spin_button_set_range): clamp the value 
10048         to the range that was set
10049
10050         * gtk/gtkrange.c: add value_changed signal, primarily 
10051         intended for use with GtkScale
10052         (gtk_range_set_increments): new function
10053         (gtk_range_set_range): new function with weird name
10054         (gtk_range_set_value): new function
10055         (gtk_range_get_value): new function
10056
10057         * gtk/gtkspinbutton.c (gtk_spin_button_get_value): rename 
10058         from gtk_spin_button_get_value_as_float(). Compat #define
10059         added for get_value_as_float.
10060
10061         * gtk/gtkhscale.c (gtk_hscale_new_with_range): new function
10062
10063         * gtk/gtkvscale.c (gtk_vscale_new_with_range): new function
10064
10065 Tue Jun  5 14:57:18 2001  Jonathan Blandford  <jrb@redhat.com>
10066
10067         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_size): Fix bug #55573
10068
10069 Mon Jun  4 12:41:25 2001  Owen Taylor  <otaylor@redhat.com>
10070
10071         * gtk/gtkwidget.h: Deprecate gtk_widget_set().
10072
10073         * tests/testgtk.c (create_tooltips): Remove usage of
10074         gtk_widget_set().
10075
10076 2001-06-05  Havoc Pennington  <hp@redhat.com>
10077
10078         * gtk/gtkcolorsel.c: Use new mnemonic convenience functions
10079
10080         Applying patch from Jeff Franks, with function docs added.
10081         
10082         * gtk/gtkcheckbutton.c (gtk_check_button_new_with_mnemonic):
10083         remove call to set_mnemonic_widget, change docs a bit.  
10084
10085         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_with_mnemonic):
10086         new function
10087
10088         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_new_with_mnemonic):
10089         new function
10090
10091         * gtk/gtkmenuitem.c (gtk_menu_item_new_with_mnemonic): new function
10092
10093         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic): new
10094         function
10095         (gtk_radio_button_new_with_mnemonic_from_widget): new function
10096
10097         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_new_with_mnemonic):
10098         new function
10099
10100         * gtk/gtktogglebutton.c (gtk_toggle_button_new_with_mnemonic): new
10101         function        
10102
10103         * gtk/gtklabel.c (gtk_label_new_with_mnemonic): Improve docs on 
10104         auto-selection of mnemonic widget.
10105
10106 Mon Jun  4 15:05:24 2001  Jonathan Blandford  <jrb@redhat.com>
10107
10108         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_max_width):
10109         Fix segfault found by Vitaly Tishkov <tvv@sparc.spb.su>.
10110         (gtk_tree_view_column_set_min_width): ditto.
10111
10112 Tue Jun  5 11:04:06 2001  Owen Taylor  <otaylor@redhat.com>
10113
10114         * gdk/gdkpixmap.h (GDK_PIXMAP_GET_CLASS): 
10115         s/GdkPixmapClass/GdkPixmapObjectClass/. (#51890, Jeff Franks)
10116
10117 Mon Jun  4 12:50:11 2001  Owen Taylor  <otaylor@redhat.com>
10118
10119         * gtk/gtkctree.c (gtk_ctree_insert_gnode): Add a missing
10120         gtk_clist_thaw().
10121
10122 2001-06-04  Havoc Pennington  <hp@pobox.com>
10123
10124         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore 
10125 r       eleases for buttons 6, 7
10126
10127 2001-06-04  Havoc Pennington  <hp@redhat.com>
10128
10129         * gtk/gtkseparatormenuitem.h: Fix a search-and-replace screwup
10130         (s/CHECK/SEPARATOR/ gone awry). Patch from Jeff Franks, bug
10131         #55562
10132
10133 2001-06-04  Havoc Pennington  <hp@redhat.com>
10134
10135         * gtk/gtktextview.c (gtk_text_view_size_request): handle case
10136         where text_view->layout == NULL by assuming its size is 0, 
10137         i.e. same as if we haven't done any reflow. Reported by 
10138         Hidetoshi Tajima #55448 
10139
10140 2001-06-04  Havoc Pennington  <hp@redhat.com>
10141
10142         * gdk/x11/gdkevents-x11.c (gdk_event_translate): support button 6
10143         and 7 for scroll left/right, from Thomas Broyer
10144
10145 2001-05-10  Havoc Pennington  <hp@redhat.com>
10146
10147         * gtk/gtksettings.c (gtk_settings_get_property): Handle case where
10148         we need to parse the xsetting as if it were an RC file string.
10149
10150         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): load initial
10151         value of palette from settings, not from static variable
10152
10153         * gdk/x11/gdkevents-x11.c: add color palette, toolbar mode to
10154         xsettings translation table
10155
10156         * gtk/gtktoolbar.c (gtk_toolbar_new): Remove arguments, because 
10157         hardcoding the toolbar style conflicts with new customizable 
10158         toolbar style philosophy
10159         (gtk_toolbar_class_init): add settings for default toolbar style;
10160         these are used unless the app specifically forces a toolbar style
10161
10162         * gtk/gtksettings.c (settings_install_property_parser): only
10163         return at the start if we warn and parser == NULL
10164
10165         * gtk/gtkcolorsel.c (gtk_color_selection_finalize): disconnect the
10166         palette changed handler so we don't notify dead color selections
10167
10168         * gtk/gtkstyle.c (gtk_default_draw_shadow): handle
10169         xthickness/ythickness of 0 or 1 properly 
10170         (gtk_default_draw_resize_grip): clear the background behind the
10171         resize grips, and align to bottom right if we square the 
10172         area to be drawn.
10173
10174         * gtk/gtkstatusbar.c (gtk_statusbar_init): set horizontal usize on 
10175         statusbar label to 1, so it doesn't make toplevels resize oddly
10176         (gtk_statusbar_size_request): add grip size to request
10177         (gtk_statusbar_size_allocate): hack so the hbox still works with 
10178         the grip size in the request
10179
10180         * gtk/gtktoolbar.c (gtk_toolbar_show_all): override to fix 
10181         bug where showing all on a toplevel makes the toolbar 
10182         button text appear despite the toolbar mode
10183
10184         * gtk/gtkmenubar.c: add internal padding style property
10185
10186         * gtk/gtktoolbar.c: Add internal padding style property; add
10187         shadow type style property
10188
10189         * gtk/gtkmenubar.c (gtk_menu_bar_paint): paint box with widget
10190         state; and put Container::border_width outside the frame
10191
10192         * gtk/gtktextview.c: don't draw focus rectangle if we're in
10193         interior focus mode, we just use blinking cursor
10194
10195 2001-06-04  Havoc Pennington  <hp@redhat.com>
10196
10197         * configure.in: Make gdk-pixbuf have same version number as GTK
10198
10199 2001-06-04  Havoc Pennington  <hp@redhat.com>
10200
10201         * gtk/gtkspinbutton.c: Get rid of stupid g_return_if_fail on 
10202         digits greater than 6. If there actually are limits (which there
10203         likely aren't), should clamp to them not warn.
10204         (gtk_spin_button_new_with_range): don't take log of 0
10205         (gtk_spin_button_size_request): use digits to compute size
10206         request, rather than step increment.
10207
10208         * tests/testgtk.c (create_spins): test larger values of digits
10209         
10210         * gtk/gtkfontsel.c (gtk_font_selection_init): scroll to selected
10211         font on map not expose, so we don't get weirdness during scrolling
10212
10213 2001-06-04  Havoc Pennington  <hp@redhat.com>
10214
10215         * gtk/gtkclist.c (vadjustment_value_changed): Apply fix from
10216         Sam Solon, bug #54577, update value even if not drawable.
10217
10218 2001-06-04  Havoc Pennington  <hp@redhat.com>
10219
10220         * gtk/gtkrange.c (gtk_range_scroll_event): change SCROLL_RIGHT to
10221         SCROLL_LEFT, reported by Thomas Broyer.
10222
10223 2001-06-04  Havoc Pennington  <hp@redhat.com>
10224
10225         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): 
10226         Process updates immediately, to prevent funny lag effect
10227         when scrolling, at some mild potential efficiency cost.
10228
10229 2001-06-04  Havoc Pennington  <hp@redhat.com>
10230
10231         * gtk/gtkrange.c (gtk_range_button_press): on middle click, center
10232         slider on the click.
10233
10234 2001-06-03  Havoc Pennington  <hp@pobox.com>
10235
10236         * gtk/gtkstyle.c (gtk_default_draw_slider): make this special-case
10237         hscale/vscale details, so we can use it for scrollbar as well.
10238
10239         * tests/testgtk.c (reformat_value): honor digits from GtkScale
10240
10241         * gtk/gtkenums.h (GtkTroughType): Remove this enum
10242         (GtkScrollType): add START and END from GtkTroughType
10243
10244         * gtk/gtkstyle.c (gtk_default_draw_slider): was not properly using
10245         its x/y arguments
10246
10247         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkscrollbar.h,
10248         gtk/gtkscrollbar.c, gtk/gtkscale.h, gtk/gtkscale.c,
10249         gtk/gtkhscrollbar.h, gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.h,
10250         gtk/gtkvscrollbar.c, gtk/gtkhscale.h, gtk/gtkhscale.c,
10251         gtk/gtkvscale.h, gtk/gtkvscale.c: Rewrite GtkRange and subclasses.
10252
10253         Notable changes in the process:
10254          
10255         - stepper_size style property is the height for vertical 
10256           ranges, width for horizontal; the other dimension matches
10257           the trough size
10258         - add ability to do NeXT-style steppers (and several other styles
10259           that don't make any sense)
10260         - added min_slider_length, fixed_slider_length properties to
10261           GtkScrollbar
10262         - cleaned some private (or at least useless) functions out of
10263           gtkscale.h    
10264         - moved bindings to GtkScale from subclasses, even arrow keys,
10265           since blind users don't know scale orientation.
10266         - change move_slider action signal to use new GtkScrollType,
10267           remove GtkTroughType argument
10268         - digits rounds the values a range will input to the given 
10269           number of decimals, but will not try to force adjustment 
10270           values set by other controllers. That is, we no longer
10271           modify adjustment->value inside a value_changed handler.
10272         - added getters for GtkScale setters
10273         - middle-click begins a slider drag
10274         
10275 Fri Jun  1 18:54:47 2001  Jonathan Blandford  <jrb@redhat.com>
10276
10277         * gtk/gtktreeview.c: (gtk_tree_view_focus): Initial stab at
10278         getting the focus code to work.
10279         (gtk_tree_view_class_init): Add a bunch of keybindings.
10280
10281         * gtk/gtktreeviewcolumn.c
10282         (gtk_tree_view_column_set_cell_data_func):
10283         s/GtkCellDataFunc/GtkTreeCellDataFunc.
10284         (_gtk_tree_view_column_set_tree_view): Use "notify::model" instead
10285         of "properties_changed" to help justify the death of the latter
10286         signal. (-:
10287
10288         * tests/testtreefocus.c (main): Let some columns be focussable to
10289         test focus better.
10290
10291 2001-06-01  Havoc Pennington  <hp@redhat.com>
10292
10293         * gtk/gtkentry.c (gtk_entry_commit_cb): implement overwrite mode
10294         
10295         * gtk/gtktextview.c (gtk_text_view_commit_handler): don't
10296         overwrite in overwrite mode if we already deleted the selection
10297         and replaced it with new text.  
10298
10299         * gtk/gtklabel.c (gtk_label_select_region_index): if you set the
10300         selection to an empty range, clear the clipboard if we owned it.
10301         (gtk_label_set_selectable): give up selection if we become
10302         unselectable.
10303         (gtk_label_state_changed): override state changed to unselect text
10304         when insensitive
10305         (get_text_callback): add paranoia check that indexes aren't
10306         outside of label->text
10307         (gtk_label_select_region): make -1 for start_offset mean "end of
10308         label," for consistency with GtkEditable
10309
10310         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): honor
10311         GTK_DIALOG_NO_SEPARATOR flag
10312
10313 Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
10314
10315         * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
10316         notifications on non-existant "enable_arrow_keys".
10317         (#53753, Skip Montanaro)
10318
10319 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
10320
10321         * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
10322         GDK_TYPE_RECTANGLE.
10323
10324         * gtk/gtkwidget.c (gtk_widget_class_init): Fix type
10325         of allocation argument be GDK_TYPE_RECTANGLE.
10326
10327 Thu May 31 12:43:57 2001  Owen Taylor  <otaylor@redhat.com>
10328
10329         * gtk/gtkoptionmenu.c: Account for the fact that the border
10330         width is _outside_ the window. (Fixes #54585, bug found
10331         by Bastien Nocera.)
10332
10333 Wed May 30 15:56:30 2001  Owen Taylor  <otaylor@redhat.com>
10334
10335         * gtk/gtksettings.c (gtk_settings_get_property): Validate
10336         value from GDK settings against parameter spec.
10337
10338         * gdk/x11/gdkevents-x11.c (gdk_setting_get): Add assignments
10339         to temporary values and use g_value_transform(), since
10340         thinking that GValue was going to be easy or efficient
10341         to use was, of course, a mistake.
10342
10343         * gtk/gtksettings.c: Add cursor blink setting.
10344         
10345         * gdk/x11/gdkevents-x11.c: Add cursor blink X settings.
10346
10347         * gtk/gtkentry.c: Add cursor blinking.
10348
10349         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): Use
10350         cursor blink global settings.
10351
10352         * gtk/gtkentry.c (gtk_entry_button_press): Add notification
10353         for :text_position in places where it is missing.
10354
10355 Tue May 29 18:17:11 2001  Owen Taylor  <otaylor@redhat.com>
10356
10357         * autogen.sh (have_libtool): Fix GNU sedism (#55430)
10358
10359 Tue May 29 17:40:29 2001  Owen Taylor  <otaylor@redhat.com>
10360
10361         * configure.in (GTK_DEP_CFLAGS): Use $PKG_CONFIG,
10362         not pkg-config. (#51032)
10363
10364         * gdk/gdkproperty.h: Remove inappropriate G_GNUC_CONST
10365         (fixes #51952, James Henstridge)
10366         
10367 2001-05-27  Alexander Larsson  <alla@lysator.liu.se>
10368
10369         * gtk/gtkstock.h (GTK_STOCK_GO_UP):
10370         Rename to the more correct gtk-go-up.
10371
10372         * gtk/stock-icons/stock_menu_sort_ascending.png:
10373         Added new file.
10374         
10375         * gtk/stock-icons/stock_menu_sort_descending.png:
10376         Changed to show descending instead of ascending.
10377
10378         * gtk/gtkiconfactory.c:
10379         Added menu size icon to sort ascending.
10380
10381         * gtk/stock-icons/Makefile.am:
10382         Added stock_menu_sort_ascending.png.
10383         
10384         * gtk/gtkseparatormenuitem.c:
10385         Use correct typenames.
10386
10387 Sun May 20 20:07:35 2001  Tim Janik  <timj@gtk.org>
10388
10389         * gtk/gtksignal.[hc] (gtk_signal_connect_full): make hanlder id a
10390         gulong as in GSignal.
10391
10392 Fri May 25 19:04:17 2001  Jonathan Blandford  <jrb@redhat.com>
10393
10394         * gtk/gtktreeview.c (gtk_tree_view_calc_size): Remove almost all
10395         instances of GtkCellRenderer in code (all but dnd icon code).
10396         Virtualized in GtkTreeViewColumn.  Now I need to move focus in
10397         there, and I can do multiple Cells per column.
10398
10399         * gtk/gtktreeviewcolumn.c: Proxy all cell calls correctly
10400
10401         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): fix bug
10402         when model was unreffed prior to removing the row reference.
10403
10404 2001-05-25  Havoc Pennington  <hp@redhat.com>
10405
10406         * gtk/gtkiconfactory.c: fix so that default icons are created if 
10407         you call gtk_stock_list_ids()
10408
10409         * demos/gtk-demo/stock_browser.c (create_model): sort stock items
10410         in list
10411
10412 2001-05-25  Havoc Pennington  <hp@redhat.com>
10413
10414         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): get sizes an icon
10415         set can render without falling back to missing image icon
10416
10417         * gtk/gtktextview.c (gtk_text_view_size_request): request full
10418         size of text, instead of random values
10419
10420         * gtk/gtktreeview.c (gtk_tree_view_size_request): request full
10421         size of tree view, instead of random values
10422
10423         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): render fallback
10424         image in an appropriate size
10425
10426         * gtk/gtkstock.h: Rename the stock items including _BUTTON_,
10427         etc. not to include that. i.e. s/GTK_STOCK_BUTTON_OK/GTK_STOCK_OK/
10428
10429         Throughout: fix GTK_STOCK_BUTTON_ instances
10430         
10431         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
10432         gtk/gtkiconfactory.c, gtk/stock-icons/Makefile.am:
10433         Add a bunch of new stock items/icons
10434
10435         * gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
10436         new function, convenience for inserting columns with a data func
10437
10438         * gtk/gtkiconfactory.c: keep a list of all existing icon factories
10439         (_gtk_icon_factory_list_ids): use list of all factories to
10440         generate a list of all known IDs
10441
10442         * gtk/gtkstock.c (gtk_stock_list_ids): replace
10443         gtk_stock_list_items() with a function that returns all IDs known
10444         including those for GtkIconFactory.
10445
10446 2001-05-25  Hans Breuer  <hans@breuer.org>
10447
10448         * gdk/win32/gdkgc-win32.c : made fil mode GDK_STIPPLED actually
10449         work -> check boxes and radio buttons are drawn now, even on win9x.
10450         Improved line settings a bit, still no clue how to get really dotted
10451         lines on win9x, on NT it's PS_ALTERNATE.
10452
10453         * gdk/win32/gdkwindow-win32.c : use SafeAdjustWindowRect for 
10454         GDK_HINT_MIN_SIZE as well
10455
10456         * gdk/win32/makefile.am : added gdkkeys-win32.c to EXTRA_DIST
10457
10458         * gtk/gtk.def : updated
10459
10460         * gtk/gtktreeprivate.h : change column_drop_func to be a function
10461         pointer not a function pointer pointer
10462
10463         * tests/testdnd.c : include <stdlib.h> for putenv prototype
10464
10465         * tests/testsocket.c : made it compile on win32 again
10466
10467         * tests/makefile.msc : one more test-app uses prop-editor.obj
10468
10469 2001-05-22  Havoc Pennington  <hp@pobox.com>
10470
10471         * gtk/gtkbin.c (gtk_bin_get_child): New function
10472
10473 Wed May 23 20:07:53 2001  Owen Taylor  <otaylor@redhat.com>
10474
10475         * gtk/gtkimcontextsimple.c: Add Mode_Switch to list of keys
10476         to ignore when doing compose processing.
10477
10478 2001-05-22  Joe Shaw  <joe@ximian.com>
10479
10480         * gtk/gtktextiter.c (_gtk_text_btree_get_iter_at_last_toggle): 
10481         Simplify as suggested by Havoc. Just get the last iter and work
10482         backward to the tag instead of getting a line and working back from
10483         there. Fixes passing in an invalid offset to
10484         iter_init_from_byte_offset().
10485
10486 Tue May 22 16:25:27 2001  Jonathan Blandford  <jrb@redhat.com>
10487
10488         * gtk/gtktreeview*.h: 
10489         * gtk/gtkcell*.h:
10490         * gtk/gtk*store.h:
10491         Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS
10492         macros to all objects.
10493
10494 Tue May 22 15:13:52 2001  Jonathan Blandford  <jrb@redhat.com>
10495
10496         * gtk/gtkcellrenderertext.c
10497         (gtk_cell_renderer_text_set_fixed_size): Evil function to deal
10498         with very large (TM) amounts of text.  May be moved to
10499         GtkCellRenderer in the future, though I'm not sure it wants to be
10500         this accessible.
10501
10502         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
10503         More sanity brought to this class.  I like it.
10504
10505         * tests/testtreecolumns.c (ViewColumnModel): Amazingly scary test
10506         case.  Kids, don't try this at home.
10507
10508         * gtk/gtktreemodel.c (gtk_tree_model_get_iter_root): new
10509         convenience function.
10510
10511         * gtk/gtkwindow.c (gtk_window_set_geometry_hints): Fix typo in docs.
10512
10513 2001-05-21  Alexander Larsson  <alexl@redhat.com>
10514
10515         * gtk/gtkfontsel.c:
10516         Added properties. Based on patch by Lee Mallabone.
10517
10518         * gtk/gtkruler.c:
10519         * gtk/gtkhruler.c:
10520         * gtk/gtkvruler.c:
10521         * gtk/gtktext.c:
10522         * gtk/gtktextview.c:
10523         Converted GtkArg to GParam. Based on patches by John Margaglione.
10524
10525         * tests/Makefile.am:
10526         * tests/testtext.c:
10527         Add a property editor to testtext.
10528         
10529 Mon May 21 11:29:21 2001  Owen Taylor  <otaylor@redhat.com>
10530
10531         * gtk/gtk{h,v,}paned.c: Only show the separator if 
10532
10533         * configure.in: Fixed reversed conditional causing all image
10534         libraries to be linked in.
10535
10536 2001-05-21  Joe Shaw  <joe@ximian.com>
10537
10538         * gtk/gtklayout.c (gtk_text_layout_get_lines): Remove the assertion
10539         that top_y needs to be >= 0.
10540
10541 2001-05-11  Havoc Pennington  <hp@pobox.com>
10542         
10543         * gdk/x11/gdkmain-x11.c: Improve error messages for X errors and
10544         losing connection to the X server.
10545
10546 Sun May 20 13:59:20 2001  Owen Taylor  <otaylor@redhat.com>
10547
10548         * configure.in: Start checks for X from pangox/pangoxft
10549         CFLAGS to avoid duplicate libraries.
10550
10551         * gdk/Makefile.am (LDFLAGS): Remove extra -lm.
10552
10553         * configure.in (GDK_PIXBUF_PACKAGES): Fix GDK_PIXBUF_PACKAGES
10554         to include gobject.
10555         
10556 2001-05-18  Alexander Larsson  <alexl@redhat.com>
10557
10558         * gtk/gtkspinbutton.c:
10559         Convert GtkArgs to GParams. Based on patch by John Margaglione.
10560         Also do size request reasonable for MAXDOUBLE. Previously it printed
10561         the limits to a buffer and overran it. Instead do it using log10() and
10562         limit the width to 10 digits.
10563         
10564         * gtk/gtkwidget.c (gtk_widget_get_property):
10565         Correctly handle setting the parent property to NULL.
10566
10567 Fri May 18 15:26:26 2001  Owen Taylor  <otaylor@redhat.com>
10568
10569         * gtk/gtktextview.c (gtk_text_view_style_set): Reset 
10570         style attributes even if the widget isn't realized.
10571
10572         * demos/gtk-demo/main.c: Use a slightly smaller font.
10573
10574 Fri May 18 14:25:20 2001  Owen Taylor  <otaylor@redhat.com>
10575
10576         * gtk/gtkcontainer.c: Remove reallocate-redraws property.
10577         This is something that only a widget writer would ever want
10578         to change.
10579
10580         * gtk/gtksignal.c: Handle G_SIGNAL_TYPE_STATIC_SCOPE for
10581         gtk_signal_emit_by_name().
10582
10583         * gtk/gtkviewport.c: Fix some warnings.
10584
10585         * gtk/gtkwidget.c gtk/gtksizegroup.c: Add "size group" facility
10586         allowing the requisitions of multiple widgets to be grouped
10587         together.
10588
10589         * tests/testgtk.c: Add GtkSizeGroup test
10590
10591         * demos/gtk-demo/sizegroup.c: Add GtkSizeGroup demo.
10592
10593         * demos/gtk-demo/main.c demos/gtk-demo/pixbufs.c: Fix some
10594         warnings.
10595
10596         * configure.in: Switch to using AM_GLIB_GNU_GETTEXT.
10597
10598 2001-04-28  Martin Baulig  <baulig@suse.de>
10599
10600         * gtk/gtkimagemenuitem.[ch]: Renamed gtk_image_menu_item_add_icon()
10601         to gtk_image_menu_item_set_icon() and made it work if there's already
10602         an image.
10603         (gtk_image_menu_item_new): This function doesn't take any arguments anymore.
10604         (gtk_image_menu_item_new_with_label): New function.
10605
10606 Thu May 17 16:20:04 2001  Jonathan Blandford  <jrb@redhat.com>
10607
10608         * demos/gtk-demo/main.c (fontify): It's the worlds ugliest
10609         highlighting code!!!!  The result is okay so long as you don't try
10610         to stress it.  It also highlights a bug in the TextView so it's in
10611         an unproportional font right now until it's fixed.
10612
10613         *demos/gtk-demo/*.c: Clean up code a bit to make it
10614         ugly-parser(TM) friendly. (-:
10615
10616 2001-05-17  Joe Shaw  <joe@ximian.com>
10617
10618         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove the assertions
10619         that x_offset and y_offset must be >= 0. Clip the cursor being drawn
10620         if it is only partially onscreen.
10621
10622 Thu May 17 17:10:13 2001  Owen Taylor  <otaylor@redhat.com>
10623
10624         * gtk/gtkentry.c: Make logical motion and deletion by graphemes, 
10625         not by characters.
10626
10627         * gtk/gtkentry.c: Handle "trailing" returns from Pango when they
10628         are not zero or one; that is, when graphemes of multiple characters
10629         are involved.
10630
10631         * gtk/gtktextlayout.c (line_display_index_to_iter): Remove unnecessary
10632         FIXME.
10633
10634 2001-05-17  Alexander Larsson  <alla@lysator.liu.se>
10635         
10636         * gtk/gtkbbox.c:
10637         Add properties, based on patch by Lee Mallabone.
10638
10639         * gtk/gtknotebook.c:
10640         * gtk/gtktoolbar.c:
10641         Convert from GtkArg to GParam, based on patch by John Margaglione.
10642         
10643         * gtk/gtkhscale.c:
10644         * gtk/gtkvscale.c:
10645         * gtk/gtkhscrollbar.c:
10646         * gtk/gtkvscrollbar.c:
10647         * gtk/gtkrange.c:
10648         Move adjustment property to GtkRange.
10649
10650         * gtk/gtklabel.c:
10651         Setup mnemonics on property changes
10652
10653         * gtk/gtkwidget.c (gtk_widget_get_property):
10654         GdkExtensionMode is an enum, not a flag. Set it with
10655         g_value_set_enum ().
10656
10657         * tests/prop-editor.c:
10658         Better propery editor.
10659
10660         * tests/testgtk.c:
10661         Add new property test. Pass zero to the property editor to
10662         get properties from all derived types.
10663         
10664 Sun May 13 12:01:12 2001  Owen Taylor  <otaylor@redhat.com>
10665
10666         * autogen.sh (have_automake): Require libtool-1.4,
10667         automake-1.4p1.
10668
10669         * acinclude.m4: Remove libtool macros.
10670
10671         * gdk-pixbuf/Makefile.am: Add dependencies to loade
10672         modules.
10673
10674         * gdk/Makefile.am: Add dependency on libgdk_pixbuf.la
10675         for libgdk.
10676
10677         * gtk/Makefile.am: Add dependency on libgdk_pixbuf.la
10678         libgdk.la for libgtk.
10679
10680         * modules/input/Makefile.am: Make modules have full
10681         dependencies.
10682
10683 Wed May 16 14:06:01 2001  Jonathan Blandford  <jrb@redhat.com>
10684
10685         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): fix bug
10686         #54699 where paths weren't being checked for correctness.
10687
10688 Tue May 15 20:13:24 2001  Jonathan Blandford  <jrb@redhat.com>
10689
10690         * gtk/gtktreeviewcolumn.c: You can now set all sorts of properties
10691         in any order you wan, whether or not the column is added to the
10692         tree, or the tree is realized.  Yay!
10693
10694         * gtk/gtktreeviewcolumn.c
10695         (gtk_tree_view_column_setup_sort_column_id_callback): handle
10696         sorting columns a lot saner
10697
10698         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_reorderable):
10699         new function to actually set wether or not a column is
10700         reorderable.
10701
10702         * gtk/gtktreeview.c (gtk_tree_view_unrealize): Only destroy things
10703         if we have 'em.
10704
10705         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_set_tree_view):
10706         Fix nasty bug where we were showing the button just before
10707         realizing it.  As a result, the parent window was
10708         tree_view->window instead of tree_view->priv->header_window.
10709
10710         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable): new property
10711         to let you easily reorder a list or tree.
10712
10713 2001-05-15  Alexander Larsson  <alla@lysator.liu.se>
10714
10715         * gtk/gtkpacker.c: Apply patch from John Margaglione that converts
10716         from args to properties.
10717
10718 Tue May 15 10:11:59 2001  Owen Taylor  <otaylor@redhat.com>
10719
10720         * gtk/gtkpreview.c: Apply patch from John Margaglione converting
10721         from args to properties. (#51957)
10722
10723         * gtk/gtkscale.c (gtk_scale_class_init): Move install property
10724         calls to after ->set_property call.
10725
10726 Mon May 14 14:56:21 2001  Owen Taylor  <otaylor@redhat.com>
10727
10728         * tests/prop-editor.c: Block against redundant changes.
10729
10730         * gtk/gtkpaned.c gtk/gtk[hv]paned.c: Add position, position_set
10731         properties.
10732
10733 Sun May 13 18:40:04 2001  Owen Taylor  <otaylor@redhat.com>
10734
10735         * gdk/gdkpixmap.h: Remove creative formatting.
10736
10737 Thu May 10 19:22:28 2001  Owen Taylor  <otaylor@redhat.com>
10738
10739         * gtk/gtktogglebutton.c:  Patch from John Margaglione converting to
10740         property API. (#51669)
10741
10742         * gtk/gtkscale.c: Patch from John Margaglione converting to
10743         property API. (#51891)
10744
10745         * gtk/gtkaccellabel.c: Applied patch from Lee Mallabone, converting
10746         to property API. (#50985)
10747
10748 Fri May 11 20:13:44 2001  Tim Janik  <timj@gtk.org>
10749
10750         * gtk/gtkmain.c (gtk_main_do_event): remember widget's double
10751         buffering state across expose event, so we still call end_paint().
10752
10753 2001-05-11  Alexander Larsson  <alexl@redhat.com>
10754
10755         * gtk/gtkhsv.c (paint_triangle):
10756         Expose the ring in the triangle at the correct place when
10757         exposing just a part of the triangle.
10758
10759         * gtk/gtkwindow-decorate.c (gtk_decorated_window_focus_change):
10760         Return FALSE, or window focusing will not work.
10761
10762 2001-05-11  Havoc Pennington  <hp@pobox.com>
10763
10764         * gtk/gtkimage.c (gtk_image_new_from_stock): docs, fixes bug
10765         #54144
10766
10767         * gtk/gtkcolorsel.c (gtk_color_selection_new): docs, fixes
10768         bug #54330
10769
10770 Fri May 11 02:53:57 2001  Tim Janik  <timj@gtk.org>
10771
10772         * gtk/gtktogglebutton.c (gtk_toggle_button_expose): don't
10773         propagate exposes to NULL child.
10774
10775         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed): guard
10776         against not having one of the scrollbars.
10777
10778         * gtk/gtklabel.c (gtk_label_setup_mnemonic): clean up after us,
10779         we don't keep a mnemonic window if we have no mnemonic installed.
10780
10781 Fri May 11 01:05:00 2001  Tim Janik  <timj@gtk.org>
10782
10783         * gtk/gtktypeutils.h: grum, gtk_type_class() is not GNUC_CONST
10784         it has the _important_ side effect of initializing a class.
10785
10786 2001-05-10  Alexander Larsson  <alexl@redhat.com>
10787
10788         * gdk/linux-fb/gdkprivate-fb.h:
10789         Make sure you can compile out the implementation/wrapper assert
10790         macros.
10791
10792         * gdk/linux-fb/gdkdrawable-fb2.c:
10793         Check implementation/wrappers, initialize type for pixmap dummys.
10794
10795         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
10796         Hide the cursor if reading from the screen.
10797
10798         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
10799         Fix sign bug in tiling code.
10800
10801         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
10802         Handle background pixmaps.
10803
10804 Wed May  9 15:27:22 2001  Jonathan Blandford  <jrb@redhat.com>
10805
10806         * gtk/gtktreeview.c (gtk_tree_view_set_column_drag_function): New
10807         function to let user control where columns are dragged.
10808
10809         * gtk/gtktreeview.c (gtk_tree_view_key_press): Cancel drags if
10810         Escape is pressed.
10811
10812 Wed May  9 09:08:44 2001  Jonathan Blandford  <jrb@redhat.com>
10813
10814         * gtk/gtktreeview.c (gtk_tree_view_class_init): New
10815         "columns_changed" signal.
10816         (gtk_tree_view_motion_draw_column_motion_arrow): Change column
10817         motion code to draw arrows to the side if indicator is outside the
10818         widget.
10819         (gtk_tree_view_map_expanded_rows): Implement.
10820
10821 2001-05-07  Alexander Larsson  <alexl@redhat.com>
10822
10823         * demos/testpixbuf-save.c: 
10824         * demos/testpixbuf-drawable.c:
10825         Include gdkfb.h on linux-fb.
10826
10827 2001-05-07  Alexander Larsson  <alexl@redhat.com>
10828
10829         * gdk/linux-fb/gdkdnd-fb.c (get_toplevel_window_at):
10830         New function for getting toplevel window at position.
10831         (gdk_drag_find_window): Use get_toplevel_window () instead
10832         of gdk_window_get_pointer(). (gdk_drag_status): Use
10833         correct context for getting window.
10834
10835         * gdk/linux-fb/gdkproperty-fb.c (gdk_atom_name):
10836         g_strdup the atom name.
10837
10838         * gdk/linux-fb/gdkwindow-fb.c:
10839         Costmetic fix.
10840
10841         * gtk/gtkdnd.c (gtk_drag_source_handle_event):
10842         Add code for changing cursor on linux-fb backend (same as
10843         win32).
10844
10845 2001-05-07  Federico Mena Quintero  <federico@ximian.com>
10846
10847         * gtk/gtkwindow.c (gtk_window_focus): Test for bin->child being
10848         present before doing anything with it.  Patch from HÃ¥vard KvÃ¥len
10849         <havardk@netcom.no>.  Fixes Ximian bugzilla #2492 (OK, the bug
10850         report was not for the development branch of GTK+, but it applies
10851         anyways).
10852
10853 2001-05-04  Havoc Pennington  <hp@redhat.com>
10854
10855         * configure.in: fix some shell typos
10856
10857         * gtk/gtkcolorsel.c (gtk_color_selection_destroy): warning fix
10858
10859         * gtk/gtkimage.c: handle animations
10860
10861         * gtk/gtkcheckbutton.c (gtk_check_button_size_request): request
10862         border_width * 2, not just border_width
10863
10864         * gtk/gtkscale.c: add "format_value" signal to allow people
10865         to override the way values are drawn.
10866         (gtk_scale_get_value_size): fix width/height mistake,
10867         and compute size from actual displayed text, not 
10868         from made-up text.
10869
10870         * gtk/gtktexttag.c (gtk_text_tag_class_init): fix return type in 
10871         signal registration
10872
10873         * tests/testtext.c: Add "Remove all tags" menu item for testing
10874
10875         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): implement
10876
10877         * demos/gtk-demo/main.c (main): add hack so we can find modules
10878         without installing gtk
10879
10880         * demos/gtk-demo/textview.c (insert_text): demo font scaling
10881
10882         * gtk/gtkcellrenderertext.c: Add "scale" property (font scaling
10883         factor)
10884         (gtk_cell_renderer_text_set_property): remove some bogus
10885         g_object_notify
10886
10887         * gtk/gtktexttag.c: add "scale" property which is a font scaling
10888         factor
10889
10890         * gtk/gtktextlayout.c (add_text_attrs): add font scale attribute 
10891         to layout
10892
10893         * gtk/gtktextiter.c (gtk_text_iter_is_start): rename from
10894         gtk_text_iter_is_first
10895
10896 2001-01-06  Hans Breuer  <hans@breuer.org>
10897
10898         * gdk/gdk.def : updated exports
10899
10900         * gdk/win32/makefile.msc : -DGDK_ENABLE_BROKEN otherwise
10901         gdk won't compile anymore
10902  
10903         * gdk/win32/gdkevents-win32.c : initialize ret_val when
10904         processing GDK_FILTER functions, initialize event.key->hardware_keycode.
10905         Improved gdk_flush () to not only do pending drawing operations
10906         but also process all currently pending events. This should make
10907         the behaviour more similar to the X11 version.  
10908
10909         * gdk/win32/gdkgc-win32.c (predraw_set_background) : a background
10910         option needs to be set even if there is no GDK_GC_BACKGROUND.
10911         (gdk_win32_hdc_get) : use predraw_set_background () independent
10912         of value_mask. This allows to draw dashed lines leaving the original
10913         background intact.
10914
10915         * gdk/win32/gdkimage-win32.c (gdk_image_new_bitamp) : free data
10916         after processing, because we can't reuse it as the X11 version does.
10917
10918         * gtk/gtk.def : updated exports
10919
10920         * gtk/makefile.msc.in : added ATK, removed all test apps. (I
10921         would like to get rid of this file again, and use straight
10922         makefile.msc again, as the other Gtk+ subdirs do)
10923
10924         * test/makefile.msc (new file) : build the test apps here
10925
10926 2001-05-05  ERDI Gergo  <cactus@cactus.rulez.org>
10927
10928         * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
10929         strike-through setting
10930         (gdk_draw_layout_line_with_colors): Render strike-through
10931
10932 Sat May  5 10:06:24 2001  Owen Taylor  <otaylor@redhat.com>
10933
10934         * Release 1.3.5
10935
10936         * configure.in (GTK_MICRO_VERSION): Up to 1.3.5
10937
10938         * NEWS: Updated
10939
10940         * demos/gtk-demo/Makefile.am (EXTRA_DIST): Fix minor
10941         Makefile breakage.
10942
10943 Sat May  5 09:18:30 2001  Owen Taylor  <otaylor@redhat.com>
10944
10945         * demos/gtk-demo/images.c (progressive_timeout): Fix
10946         typo in filename.
10947
10948         * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment
10949         out FIXME warning; just too annoying.
10950
10951 2001-05-04  Alex Larsson  <alla@lysator.liu.se>
10952
10953         * gdk/linux-fb/gdkcolor-fb.c:
10954         Better error messages.
10955
10956         * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_new):
10957         Initialize abs_x and abs_y.
10958         
10959         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
10960         Correct handling of stipple offset.
10961
10962         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init):
10963         Treat directcolor framebuffers as truecolor.
10964         
10965 Thu May  3 14:13:49 2001  Owen Taylor  <otaylor@redhat.com>
10966
10967         * INSTALL.in HACKING gtk/gtkaccessible.[ch] gtk/gtk.c: Add
10968         dependency on Atk for accessibility support.
10969
10970         * configure.in **/Makefile.am: Major reworking of substituted
10971         variables for CFLAGS/LIBS to make a lot more sane and 
10972         keep the the compile/link lines a bit shorter.
10973
10974         * gdk/x11/gdkkeys-x11.c: Fix #endif with trailing stuff.
10975
10976 Thu May  3 08:10:54 2001  Owen Taylor  <otaylor@redhat.com>
10977
10978         * gtk/gtktexttag.c (gtk_text_tag_class_init): Fix return
10979         value to be G_TYPE_BOOLEAN, not G_TYPE_INT, also,
10980         use _gtk_boolean_handled_accumulator.
10981
10982 Thu May  3 07:00:09 2001  Owen Taylor  <otaylor@redhat.com>
10983
10984         * gtk/gtktextview.c: Patch from Juan Pablo Mendoza Mendoza
10985         to fix things so clicking inside selection leaves cursor
10986         at point where clicked. (#50324)
10987
10988         * gtk/gtksettings.c (gtk_settings_class_init): Restore
10989         sane value for default double click time.
10990
10991         * tests/testtext.c (test_init): Really path to input modules.
10992
10993 2001-05-03  Sven Neumann  <sven@convergence.de>
10994
10995         * demos/testpixbuf-save.c: include target-specific headers as
10996         done in testpixbuf-drawable.c
10997
10998 Wed May  2 20:36:38 2001  Owen Taylor  <otaylor@redhat.com>
10999
11000         * gtk/gtkentry.c (gtk_entry_real_insert_text): Reduce
11001         new_text_length appropriately when we run into the 
11002         size limit for the entry. (#53445, reported by Jeff Franks)
11003
11004         * tests/testgtk.c (create_entry): Remove most of the
11005         property toggle buttons. Replace with a "Props" button
11006         that brings up a property editor.
11007
11008         * tests/prop-editor.[ch] test/testtreeview.c tests/Makefile.am:
11009         Split the property editor code out for reuse, improve.
11010
11011 Wed May  2 17:26:22 2001  Owen Taylor  <otaylor@redhat.com>
11012
11013         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.c: Always
11014         trap errors around calls to XSetInputFocus since we have
11015         no way of knowing reliably whether we are viewable or
11016         not. (#53947)
11017
11018 Tue May  1 09:21:23 2001  Jonathan Blandford  <jrb@redhat.com>
11019
11020         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
11021         fix bug in dropping columns.  Moving columns now basically works
11022         modula some fine tuning.
11023
11024 Tue May  1 19:09:21 2001  Jonathan Blandford  <jrb@redhat.com>
11025
11026         * gtk/gtktreeview.c (gtk_tree_view_horizontal_autoscroll): Add
11027         autoscroll support.  It mostly works, but could use some fine
11028         tuning.
11029         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
11030         Actually move the column.
11031
11032 Mon Apr 30 20:29:27 2001  Owen Taylor  <otaylor@redhat.com>
11033
11034         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c 
11035           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtkwidget.c:
11036           New default theme! A slighly improved version of the 2.0 Raleigh
11037           theme, with Windows-esque focus/drawing default. 
11038           (GtkWidget::interior_focus defaults to TRUE.)
11039
11040         * gtk/gtkstyle.[ch]: Add a text_aa color halfway between text and base.
11041
11042 2001-04-30  Havoc Pennington  <hp@pobox.com>
11043
11044         * tests/testtext.c (line_numbers_expose): fix to work with
11045         gtk_paint_layout change
11046
11047 Mon Apr 30 19:18:07 2001  Owen Taylor  <otaylor@redhat.com>
11048
11049         * gtk/gtkstyle.[ch] gtk/gtkaccellabel.c gtk/gtkcellrenderertext.c
11050           gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c gtk/gtkprogressbar.c
11051           gtk/gtkvruler.c gtk/gtkvscale.c: Add an extra parameter
11052           use_text to gtk_paint_label() to deal with style->bg[] vs style->text[].
11053
11054         * gtk/gtkbbox.c gtk/gtkdialog.c: Tweak padding some to deal
11055           with GtkWidget::interior_focus = TRUE better.
11056
11057         * gtk/gtkbutton.c: Switch ::default_spacing to ::default_border,
11058         ::default_outside_border for more flexibility.
11059
11060         * gtk/gtkwidget.c (gtk_widget_style_get_valist): Remove 
11061         G_VALUE_NO_COPY_CONTENTS, to correspond with the recent
11062         change that had to be made with g_object_get.
11063
11064 Sun Apr 29 20:13:40 2001  Jonathan Blandford  <jrb@redhat.com>
11065
11066         * gtk/gtktreeview.c (gtk_tree_view_get_columns): new function.
11067         (gtk_tree_view_move_column_after): Clean up interface. 
11068
11069 Sun Apr 29 03:02:02 2001  Tim Janik  <timj@gtk.org>
11070
11071         * gtk/gtkpacker.h:
11072         * gtk/gtkenums.h: moved GtkAnchorType and GtkSideType from gtkpacker.h
11073          to gtkenum.h.
11074
11075         * gtk/gtkmain.c (gtk_main_do_event): silence compiler (GDK_SETTING not
11076         handled in switch).
11077
11078         * gtk/Makefile.am:
11079         (gtk.defs): generate enum portions with  glib-mkenums.
11080         (gtktypebuiltins_evals.c): generate this with glib-mkenums.
11081         got rid of makeenums.pl and makeenums.awk in distributed tarballs.
11082         
11083         * gtk/gtkaccelgroup.c (gtk_accel_group_add): refined havocs warning
11084         addition.
11085
11086         * docs/Changes-2.0.txt: keep a note on signal handlers now
11087         not getting emitted during the emission they were connected within.
11088
11089 2001-04-28  Havoc Pennington  <hp@pobox.com>
11090
11091         * gtk/gtkcolorsel.c (palette_new): fix bug in tooltip
11092
11093 2001-04-24  Havoc Pennington  <hp@redhat.com>
11094
11095         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_previous_line): 
11096         (gtk_text_layout_move_iter_to_next_line): fix these two for
11097         invisible text, lots of other stuff still hosed.
11098
11099         * gtk/gtkcolorsel.c (gtk_color_selection_set_change_palette_hook):
11100         new function, replaces the get/set palette stuff. This function 
11101         is intended for use by libgnomeui which should set the hook to a
11102         thing which sets the palette in GConf, and we need the
11103         GConf-to-xsettings proxy which will result in the change being
11104         propagated back to the GTK app.
11105
11106         * gtk/gtkaccelgroup.c (gtk_accel_group_add): add note to warning 
11107         about unusable signals that it may be because the signal has 
11108         parameters.
11109
11110         * gtk/gtkwidget.c (gtk_widget_modify_style): always copy the
11111         style, otherwise gtkrc.c won't know to create a new GtkStyle for
11112         it.
11113         (gtk_widget_modify_color_component): call
11114         gtk_widget_modify_style() so the rc style will get copied.
11115         (gtk_widget_modify_font): ditto
11116
11117         * gtk/gtkrc.c: make a couple variables static
11118
11119         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): hide
11120         help button by default, since it does nothing
11121
11122         * gtk/gtkcolorsel.c: add tooltips, work on key navigation, fool
11123         around with UI
11124
11125         * gtk/gtkentry.c (gtk_entry_realize): request enter/leave notify
11126         so we can have tooltips
11127
11128         * gtk/gtkhsv.c (gtk_hsv_realize): request enter/leave notify so we
11129         can have tooltips
11130
11131         * gdk/gdkimage.h: mark gdk_image_new_bitmap with
11132         GDK_ENABLE_BROKEN, because its memory behavior is completely
11133         hosed.
11134
11135         * gtk/gtknotebook.c: remove key press handler, replace with
11136         binding set, add numeric keypad support
11137
11138         * gtk/gtktextview.c (gtk_text_view_class_init): accept KP_Delete
11139
11140         * gtk/gtktext.c (gtk_text_key_press): add a bunch of KP keysyms
11141
11142         * gtk/gtkentry.c (gtk_entry_class_init): accept GDK_KP_Delete in
11143         addition to plain Delete
11144
11145         * gtk/gtktextview.c (gtk_text_view_key_press_event): accept
11146         GDK_KP_Enter in addition to GDK_Return
11147
11148         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): connect to
11149         activate on entry instead of key press
11150         (gtk_font_selection_on_clist_key_press): get
11151         rid of this signal handler, not needed with new font sel.
11152
11153         * gtk/gtkfilesel.c (gtk_file_selection_key_press): remove a
11154         no-longer-needed emit_stop_by_name(), just return TRUE
11155
11156         * gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.c: remove keybindings
11157         cruft, this widget is no longer focusable.
11158
11159         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkvscale.c,
11160         gtk/gtkhscale.c: Get rid of trough_keys virtual function, add
11161         move_slider action signal, add binding set for vscale/hscale, in
11162         the process support numeric keypad
11163
11164         * gtk/gtkentry.c (gtk_entry_class_init): Add keypad bindings; 
11165         make GDK_Return and GDK_KP_Enter activate the entry via 
11166         binding set, instead of hardcoded.
11167
11168 Fri Apr 27 20:27:21 2001  Jonathan Blandford  <jrb@redhat.com>
11169
11170         * gtk/gtktreeview.[hc]: Massive reorder/cleanup of a lot of the
11171         code.  Some documentation added.
11172
11173 2001-04-27  Havoc Pennington  <hp@redhat.com>
11174
11175         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
11176
11177         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
11178
11179         * gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
11180         line/para separators
11181         (gtk_entry_create_layout): set single paragraph mode on the layout
11182
11183         * gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
11184         spacing between the image and label; instead, inside a button box 
11185         the button will get extra space that will go there, but if people 
11186         configure button box for 0 chubbiness, then there's no spacing.
11187
11188         * gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
11189         and min/max size style properties, so people can tune their
11190         chubbiness.
11191
11192         * tests/testgtk.c (make_toolbar): remove calls to removed toolbar
11193         functions
11194
11195         * gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
11196         space_style, and button_relief into style properties, remove
11197         functions for setting them
11198         
11199         * gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop 
11200         it back down
11201
11202         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
11203         types from gtk_widget_style_get
11204
11205         * gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
11206         with a style property.
11207
11208         * gdk/x11/gdkevents-x11.c: namespace the settings
11209
11210         * gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
11211
11212         * gtk/gtksettings.c (gtk_settings_class_init): remove code with
11213         side effects from inside g_assert(), so that G_DISABLE_ASSERT can
11214         be used. Also, translate doc strings for settings. Also, namespace
11215         the double-click-time property. Also, remove bell properties crap.
11216
11217 2001-04-27  Sven Neumann  <sven@gimp.org>
11218
11219         * Makefile.am: before creating links, check if pkg-config files
11220         exist for the default target. Otherwise link to the pkg-config files
11221         that got installed with this build.
11222
11223 Thu Apr 26 19:11:46 2001  Jonathan Blandford  <jrb@redhat.com>
11224
11225         * gtk/gtktreeview.c (gtk_tree_view_motion): clean up column
11226         dragging code.  Revealed some (potential) GdkWindow bugs.
11227
11228         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): add
11229         _gdk_window_init_position to the end of reparent to fix the case
11230         of reparenting when new_x != old_x and new_y != old_y.
11231
11232 Thu Apr 26 10:54:50 2001  Owen Taylor  <otaylor@redhat.com>
11233
11234         * gtk/gtkentry.c (strstr_len): Fix optimization that
11235         was correct for the use here, but completely incorrect
11236         in general.
11237
11238 Thu Apr 26 10:40:41 2001  Owen Taylor  <otaylor@redhat.com>
11239
11240         * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
11241         until patch adding gtk_window_set_size() is recommitted. 
11242
11243         * **Makefile.am configure.in gdk/x11/gdkim-11.c
11244           gtk/gtkmain.c gtk/gtkimmulticontext.c gtk/gtkmain.c
11245           gtk/gtkrc.c: Remove all traces of -DX_LOCALE support.
11246           (#10784)
11247
11248 Wed Apr 25 12:16:36 2001  Owen Taylor  <otaylor@redhat.com>
11249
11250         * gdk/X11/gdkevents-x11.c (gdk_event_translate): Test for 
11251         window == NULL in a number of cases.
11252
11253         * tests/testdnd.c: Set module path for gdk-pixbuf.
11254
11255 Thu Apr 19 16:11:07 2001  Owen Taylor  <otaylor@redhat.com>
11256
11257         * gtk/Makefile.am xembed.h: File containing #defines
11258         for XEMBED protocol.
11259
11260         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: 
11261
11262         - Change protocol from old plug/socket specific protocol
11263           to XEMBED draft
11264         - Various fixes to work with GTK+-2.0
11265
11266         Still quite a bit of work to do here to handle initiation
11267         from the socket side (as specified by XEMBED), to handle
11268         the more advanced features of XEMBED, and to figure out
11269         a good way to handle same-app embedding with less overhead
11270         than using full XEMBED.
11271
11272 Wed Apr 18 16:04:28 2001  Owen Taylor  <otaylor@redhat.com>
11273
11274         * gtk/gtkwindow.[ch] (gtk_window_real_set_focus): Keep
11275         track of whether the toplevel has the focus; only send
11276         focus-in events to the focus widget when the window
11277         actually has the focus.
11278
11279 2001-04-25  Havoc Pennington  <hp@pobox.com>
11280
11281         * gtk/gtkwindow.h: set_decorations_hint and set_functions_hint
11282         were still in the header
11283
11284 2001-04-24  Alexander Larsson  <alexl@redhat.com>
11285
11286         * gtk/gtkclist.[ch]:
11287         * gtk/gtkctree.c:
11288         When there is a row highlighted for D'n'D it must alse
11289         be painted hightlighted on exposes. Otherwise exposes from
11290         the icon being dragged will mess up the hightlight.
11291
11292         * gtk/gtkfontsel.c:
11293         Don't recenter selected font when exposing the font family
11294         clist. This means you can now actually scroll the font family
11295         list.
11296
11297         * gtk/gtknotebook.c:
11298         Fix focus movement on scrolling tabs that are placed on the left
11299         and right.
11300
11301 2001-04-21  Havoc Pennington  <hp@pobox.com>
11302
11303         * gtk/gtktextdisplay.c (gtk_text_layout_draw): handle 0-height
11304         empty/invisible lines.
11305
11306         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset)
11307         (gtk_text_iter_set_visible_line_index): new functions to set
11308         indexes excluding invisible text
11309
11310         * gtk/gtktextlayout.c (line_display_iter_to_index): get visible 
11311         index
11312
11313         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index)
11314         (gtk_text_iter_get_visible_line_offset): new functions to 
11315         get indexes excluding invisible text
11316
11317         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): strip out a
11318         bunch of extra padding that served no purpose
11319
11320         * gtk/gtkdialog.c: Make all the spacings configurable via style
11321         properties, for chubbiness configuration in themes
11322
11323         * tests/testtext.c: fix path to the immodules.
11324         
11325 Mon Apr 23 18:57:03 2001  Jonathan Blandford  <jrb@redhat.com>
11326
11327         * gtk/gtksocket.c (gtk_socket_filter_func): add missing '}' that
11328         got munched by #endif.
11329
11330         * gtk/Makefile.am (gtk_plug_c_sources): add missing '\'
11331
11332         * gtk/gtktreeview.c: Refactored code to clean up a number of
11333         events.
11334
11335         * gtk/gtktreemodel.c (gtk_tree_path_compare): Switched return
11336         values to make consistent with other functions.  Spotted by Jeff
11337         Franks <jcf@tpg.com.au>.
11338
11339         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Fixes to signal
11340         declaration spotted by Jeff Franks <jcf@tpg.com.au>.
11341
11342 2001-04-23  Sven Neumann  <sven@gimp.org>
11343
11344         * gtk/Makefile.am
11345         * gtk/gtkplug.c
11346         * gtk/gtksocket.c: on request of Owen, reverted my last change 
11347         and exclude gtkplug.c/gtksocket.c from the build for non-X11 targets
11348
11349 2001-04-23  Sven Neumann  <sven@gimp.org>
11350
11351         * gtk/gtkplug.c: put into #ifdef GDK_WINDOWING_X11 to make GTK+
11352         compile for non-X11 targets again
11353
11354 2001-04-20  Alexander Larsson  <alexl@redhat.com>
11355
11356         * gtk/gtkcolorsel.[ch]:
11357         API Change. Take GdkColor arguments instead of gdouble *.
11358         Leave the old gtk_color_selection_set_color for compatibility,
11359         but marked deprecated.
11360         Do correct rounding when converting RGB <-> HSV.
11361         
11362         * gtk/gtkcolorseldialog.c:
11363         * tests/testgtk.c:
11364         Use new GtkColorSelection API.
11365
11366         * gtk/gtkhsv.c:
11367         Fix problem selecting colors in triangle when Hue is 330.
11368         Fix some black dots around the HSB triangle.
11369         
11370         * gtk/gtkfilesel.c:
11371         return FALSE from the focus_in_event handler to fix focus problems.
11372
11373 2001-04-18  Havoc Pennington  <hp@redhat.com>
11374
11375         * gtk/gtkwindow.c (gtk_window_class_init): add signals and binding
11376         set, so keybindings are configurable    
11377         (gtk_window_activate_default): Change to activate the focus widget
11378         instead if there's a focus widget, to be consistent with the
11379         behavior that previously existed in key_press_event
11380
11381 2001-04-18  Havoc Pennington  <hp@redhat.com>
11382
11383         * gdk/gdkkeyuni.c: Handle numeric keypad keysyms; bug #50201
11384
11385 2001-04-18  Havoc Pennington  <hp@redhat.com>
11386
11387         Close bug #50615:
11388         
11389         * gtk/gtkstyle.c (gtk_default_draw_layout): Use text_gc to draw
11390         the layout
11391
11392         * gtk/gtktext.c: Use base/text instead of bg/fg throughout
11393
11394         * gtk/gtkentry.c: Use base/text instead of bg/fg throughout
11395
11396         * gtk/gtktextdisplay.c: Use base/text instead of bg/fg throughout
11397         
11398         * gtk/gtkstyle.c (gtk_style_init): make GTK_STATE_SELECTED default
11399         to blue for base, in addition to bg
11400         
11401 2001-04-18  Havoc Pennington  <hp@redhat.com>
11402
11403         * tests/testgtk.c (create_image): allow shrinking the image window
11404         to test that we clip to allocation.
11405
11406         * gtk/gtkimage.c (gtk_image_expose): clip to allocation,
11407         #9845
11408
11409         * gtk/gtkenums.h: move GtkWrapMode in here, #50472
11410
11411 Wed Apr 18 14:23:14 2001  Owen Taylor  <otaylor@redhat.com>
11412
11413         * gdk/x11/gdkimage-x11.c (gdk_image_new): Try changing
11414         mode on shm segments to 0600. We'll see who complains.
11415
11416         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Call
11417         _gdk_windowing_window_destroy() AFTER recursing through
11418         children.
11419
11420         * tests/Makefile.am (noinst_PROGRAMS): Build testsocket,
11421         testsocket_child on X.
11422
11423         * tests/testsocket[_child].c: Fix uses of
11424         gtk_window_get_default_accel_group().
11425
11426         [ Merge patch from Ramiro Estrugo  <ramiro@eazel.com> from gtk-1-2 ]
11427
11428         * gdk/gdkimage.c: (gdk_image_get):
11429         Deal with the possibility that XGetImage() might return NULL.
11430         Allocate the GdkImagePrivate structure only after XGetImage()
11431         succeeds in order not to dereference a NULL ximage pointer.  This
11432         prevents a core dump when XGetImage() fails - which is unlikely,
11433         but can happen due to race conditions accessing the geometries of
11434         drawables.  An x error will still be triggered, but the gdk image
11435         wrapper at least wont seg fault.
11436         
11437 2001-04-18  Havoc Pennington  <hp@redhat.com>
11438
11439         * gtk/gtkimage.c: fix to properly queue resizes when the image is
11440         set
11441
11442         * gtk/gtktextview.c (gtk_text_view_do_popup): desensitize Paste
11443         if the insertion point isn't editable
11444
11445         * demos/gtk-demo/images.c: Added a GtkImage demo
11446
11447         * demos/gtk-demo/drawingarea.c: drawing area demo
11448         
11449         * demos/gtk-demo/menus.c (create_menu): cleanups
11450
11451 Wed Apr 18 12:15:52 2001  Owen Taylor  <otaylor@redhat.com>
11452
11453         * gdk/x11/gdkwindow-x11.c gdk/x11/gdkwindow-x11.h 
11454           gdk/x11/gdkevents-x11.c: Introduce an extra child
11455         of toplevel windows that serves to hold the focus to
11456         avoid events being delivered to embedded windows.
11457
11458         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Introduce
11459         some extra variables to clean up code and reduce the
11460         number of casts.
11461
11462         * gdk/x11/gdkwindow-x11.h (struct _GdkXPositionInfo): Use
11463         guint for 1 bit bit fields, not gboolean.
11464
11465 Wed Apr 18 10:04:23 2001  Owen Taylor  <otaylor@redhat.com>
11466
11467         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Return FALSE,
11468         not TRUE. (Fixes #52925)
11469
11470 Tue Apr 17 18:05:34 2001  Owen Taylor  <otaylor@redhat.com>
11471
11472         * Released 1.3.4
11473
11474         * NEWS: Updated
11475
11476         * gtk/gtktextview.c (gtk_text_view_class_init): Fix to not
11477         use GTK_TYPE_ENUM.
11478
11479 Tue Apr 17 13:47:12 2001  Owen Taylor  <otaylor@redhat.com>
11480
11481         * configure.in: Don't put -lgthread in GLIB_LIBS, GLIB_DEPLIBS
11482
11483         * gtk/gtktypeutils.h gtk/gtksignals.h: Restore proper parameter
11484         names to compatibility #defines so docs work.
11485
11486         * gtk/gtkenums.h: Remove GtkMenuFactoryType
11487
11488         * gtk/gtkwindow.c gtk/gtkdnd.c: Docs cleanups.
11489
11490         * configure.in: Don't include -lgthread in GLIB_LIBS, GLIB_DEPLIBS
11491
11492         * tests/testgtkrc: No magenta cursors, please.
11493
11494         * README.in INSTALL.in HACKING README.cvs-commits: Updated.
11495
11496         * gtk/gtkenums.h (enum): Remove left over GtkMenuFactoryType.
11497         
11498 Mon Apr 16 14:38:41 2001  Owen Taylor  <otaylor@redhat.com>
11499
11500         * gtk/gtklist.c gtk/gtklistitem.c: Remove explicit pointer
11501         grabs, since they are no longer necessary.
11502
11503         * gtk/gtkcombo.c (gtk_combo_popup_button_press): Fix #52926
11504         by signal_connect() and call gtk_button_pressed() rather
11505         than signal_connect_after().
11506
11507         * tests/testgtk.c: Restore radio menu items to combos 
11508         since they'll look OK with Raleigh, and it is easier
11509         than finishing the process of removing them that was
11510         started earlier.
11511
11512 2001-04-16  Hans Breuer  <hans@breuer.org>
11513
11514         * gdk/gdk.def :
11515         * gtk/gtk.def : added all exports required to link PyGtk 0.7.1
11516
11517         * gdk/gdkfont.h : #define GDK_TYPE gdk_font_get_type ()
11518         we are interested in the functions return value not the function address
11519         * gdk/gdkvisual.h : same for GDK_TYPE_VISUAL
11520
11521         * gtk/makefile.msc.in : reflect movement of GDK_TYPEs from gtk to gdk
11522
11523 2001-04-14  Hans Breuer  <hans@breuer.org>
11524
11525         * gdk/gdk.def :
11526         * gdk/makefile.msc : updated
11527
11528         * gdk/win32/gdkdrawable.win32 (gdk_win32_draw_rectangle) : if modus is 
11529         "fill with tile" do so with new helper function gdk_win32_draw_tiles 
11530         (the testgtk::text backgound pixmap is drawn again)
11531         Changed SetTextAlign before pango_win32_render to TA_BASELINE to reflect 
11532         Win32 Pango change
11533         * gdk/win32/gdkprivate-win32.h : prototype for gdk_win32_draw_tiles
11534
11535         * gdk/win32/gdkproperty-win32.c : first implementation of gdk_setting_get
11536         Not sure if the returned settings have the right unit, because I couldn't
11537         find any docs for the X version ...
11538
11539         * gtk/gtk.def :
11540         * gtk/makefile.msc.in : updated
11541
11542 Thu Apr 12 17:41:17 2001  Owen Taylor  <otaylor@redhat.com>
11543
11544         * gtk-2.0.m4: Fix up to refer to GTK+, not to GLib; fix some
11545         wording problems. (Compared to version from Johannes Stezenbach to
11546         check correctness.)
11547
11548 Thu Apr 12 21:04:26 2001  Tim Janik  <timj@gtk.org>
11549
11550         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): get
11551         this to compile.
11552
11553 2001-04-12  Anders Carlsson  <andersca@codefactory.se>
11554
11555         * gtk/gtkcellrenderertextpixbuf.c (gtk_cell_renderer_text_pixbuf_class_init): It's pixbuf_pos,
11556         not pixbufpos.
11557
11558         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Fix small typo.
11559
11560         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property): xpad and ypad
11561         are unsigned insts, therefore use g_value_set_uint.
11562         (gtk_cell_renderer_set_property): Likewise, use g_value_get_uint.
11563
11564 Sun Apr  8 05:36:06 2001  Jonathan Blandford  <jrb@redhat.com>
11565
11566         * gtk/gtktextview.c (gtk_text_view_class_init): fix a fixme.
11567
11568         * gtk/gtkcellrendertoggle.c: change GTK_TYPE_POINTER to
11569         GTK_TYPE_STRING.
11570
11571         * gtk/gtktreeview.c: New functions to allow initial column
11572         dragging work.
11573
11574         * gtk/gtktreeviewcolumn.c: Initial column dragging support.
11575
11576         * tests/testtreefocus.c: give dave some love.
11577
11578         * tests/testtreesort.c: Modify test to check really long samples.
11579
11580 2001-04-11  Alexander Larsson  <alexl@redhat.com>
11581
11582         * gtk-2.0.m4: Pass pkg-config options
11583         before the other args so it works even if
11584         POSIXLY_CORRECT is set.
11585
11586 Mon Apr  9 19:02:07 2001  Tim Janik  <timj@gtk.org>
11587
11588         * configure.in (GTK_MICRO_VERSION): increment version to 1.3.4 (binary
11589         0, interface 0).
11590
11591 2001-04-04  Denis Oliver Kropp  <dok@convergence.de>
11592
11593         * gtk/gtkcalendar.c (gtk_calendar_button_press):
11594         check for action_func != NULL
11595
11596 2001-04-04  Sven Neumann  <sven@gimp.org>
11597
11598         * tests/testgtk.c (test_init): corrected path to gtk.immodules
11599
11600 Wed Apr  4 09:18:18 2001  Tim Janik  <timj@gtk.org>
11601
11602         * Released Gtk+-1.3.3.
11603
11604 Wed Apr  4 07:42:23 2001  Tim Janik  <timj@gtk.org>
11605
11606         * gdk/Makefile.am (EXTRA_DIST): add makeenums.pl to EXTRA_DIST.
11607
11608 Wed Apr  4 04:13:18 2001  Tim Janik  <timj@gtk.org>
11609
11610         * gtk/stock-icons/Makefile.am: stay in builddir and read/write
11611         files to/from source dir. (if we don't stay in builddir, we
11612         can't reach make-inline-pixbuf.
11613
11614         * gdk/Makefile.am (gdkenumtypes.c): add $(srcdir) to mekeenums.pl
11615         deps.
11616
11617         * configure.in (GTK_MICRO_VERSION): up and away (1.3.3 bin/interface
11618         ages 0).
11619
11620 Tue Apr  3 15:04:45 2001  Jonathan Blandford  <jrb@redhat.com>
11621
11622         * gtk/gtktreemodelsort.h:  removed set_sort_column, as it was
11623         moved to the GtkTreeSortable interface.
11624
11625         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
11626         Make more efficient (fixes #50262).
11627
11628 Tue Apr  3 13:55:37 2001  Owen Taylor  <otaylor@redhat.com>
11629
11630         * NEWS: Updated.
11631
11632         * configure.in: Remove support for uninstalled glib.
11633
11634         * gtk/gtkdnd.c (gtk_drag_highlight_expose): Return FALSE as
11635         so as not to stop emission.
11636
11637         * gtk-config-2.0.in: Exit with an error message that gtk-config-2.0
11638         is no longer supported.
11639
11640         * Makefile.am gtk/Makefile.am tests/*: Moved all tests
11641         into tests, change build order to build modules before
11642         gtk/.
11643
11644         * modules/input/Makefile.am: Move gtk-query-immodules-2.0 invocation
11645         to here.
11646
11647 Tue Apr  3 13:52:57 2001  Tim Janik  <timj@gtk.org>
11648
11649         * gtk/gtkitemfactory.[hc]: changed gtk_item_factory_dump_items()
11650         and gtk_item_factory_dump_rc() GtkPatternSpec argument to
11651         GPatternSpec. this is actually unlikely to cause breakage in
11652         third-party apps since except for gle, pretty much ever caller
11653         passes NULL here.
11654
11655         * gtk/gtkbindings.[hc]: removed gtk_pattern_*() API.
11656
11657         * *.c: use g_pattern_*() API.
11658
11659         * docs/Changes-2.0.txt: GtkPatternSpec->GPatternSpec updates.
11660
11661         * gtk/gtkstyle.c (gtk_default_draw_resize_grip): assert unhandled
11662         directions aren't passed in.
11663
11664         * gtk/gtksettings.[hc] (_gtk_settings_parse_convert): export conversion
11665         functionality to be usable from gtkstyle.c as well, give precedence
11666         for conversion to user-supplied parsers.
11667         s/_gtk_rc_property_parser_for_type/_gtk_rc_property_parser_from_type/;
11668
11669         * gtk/gtkstyle.c (_gtk_style_peek_property_value): use
11670         _gtk_settings_parse_convert() for rcporperty value conversion.
11671
11672 2001-04-03  Alexander Larsson  <alexl@redhat.com>
11673
11674         * gdk/linux-fb/gdkevents-fb.c:
11675         Add empty gdk_setting_get().
11676
11677 Tue Apr  3 05:09:07 2001  Tim Janik  <timj@gtk.org>
11678
11679         * gtk/gtkmain.c (_gtk_boolean_handled_accumulator): use more elaborate
11680         variable names.
11681         
11682         * gtk/makeenums.pl: touch this so enum files get remade.
11683
11684 Mon Apr  2 19:36:57 2001  Jonathan Blandford  <jrb@redhat.com>
11685
11686         * gtk/gtktreestore.c (gtk_tree_store_init):  Bug fix to make trees
11687         work again when not sorted.
11688
11689         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add "collapse_row"
11690         and "expand_row" signal, closing bug 52578.
11691
11692         * gtk/gtktreeview.c (gtk_tree_view_expand_row): Add signal
11693         support.
11694
11695         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): Add signal
11696         support.
11697
11698 Mon Apr  2 18:18:07 2001  Owen Taylor  <otaylor@redhat.com>
11699
11700         * gdk/gdkevents.h: Add GdkEventSetting event for notification
11701         of changes to system settings, gdk_setting_get() to retrieve
11702         a single system setting.
11703
11704         * gdk/x11/gdkevents-x11.c: Bridge gdk_setting_get() and GdkEventSetting
11705         to the draft XSETTINGS mechanism.
11706
11707         * gdk/x11/xsettings-{common,client}.[ch]: Sample-implementation of
11708         XSETTINGS.
11709
11710         * gtk/gtkmain.c gtk/gtksettings.[ch]: Propagate notification
11711         of GDK settings changes to the GtkSettings object.
11712
11713         * gdk/gdkevents.[ch] gdk/gtk/gtksettings.c: Hook up the
11714         double-click-timeout property to GDK.
11715
11716         * gdk/gdkcolor.[ch] gdk/gdkvisual.h gdk/gdkevent.[ch] gdk/gdkfont.[ch]:
11717         Define GDK boxed types here.
11718
11719         * gdk/Makefile.am gdk/makeenums.pl: Generate source files
11720         gdk/gdkenumtypes.[ch] for enum definitions.
11721
11722         * gtk/gtkcompat.h: Add defines for GTK_TYPE_GDK_*
11723         * gtk/gtk-boxed.defs: Comment out GDK types
11724         * gtk/gtktypeutils.h: Remove GDK types
11725         * gtk/Makefile.am: No longer scan GDK headers for enumerataions
11726
11727 Mon Apr  2 16:41:08 2001  Owen Taylor  <otaylor@redhat.com>
11728
11729         * Applied patch from Ron Steinke to add signal accumulators
11730         so that signals with the convention 'TRUE return means
11731         handled' stop emission on a TRUE return.
11732
11733         * gtk/gtkmain.[ch]: Add private accumulator 
11734         _gtk_boolean_handled_accumulator, used throughout GTK+.
11735         
11736         * gtk/gtkspinbutton.c: Add accumulator for ::output.
11737
11738         * gtk/gtktipsquery.c: Add accumulator for ::widget_selected
11739         
11740         * gtk/gtkwidget.c: Add accumulators for event signals,
11741         ::drag_motion, ::drag_drop. Use _gtk_boolean_handled_accumator
11742         for ::mnemonic-activate.
11743
11744         * gtk/gtkwindow.c: Add accumulator for ::frame_event
11745
11746 Mon Apr  2 16:24:21 2001  Owen Taylor  <otaylor@redhat.com>
11747
11748         * gtk/gtkwidget.c: Add missing include.
11749
11750 Mon Apr  2 16:56:15 2001  Jonathan Blandford  <jrb@redhat.com>
11751
11752         * gtk/gtkmarshal.list (VOID:BOXED,BOXED,BOXED,BOXED): new
11753         marshaller.
11754
11755         * gtk/gtktreemodel.c (gtk_tree_model_range_changed): change
11756         "changed" signal to "range_changed".
11757
11758         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix small bug where
11759         removing a tree from one model would remove all trees from that
11760         model.
11761         * gtk/gtktreeview.c (gtk_tree_view_range_changed): use range
11762         changed signal instead.
11763
11764 Mon Apr  2 16:13:58 2001  Owen Taylor  <otaylor@redhat.com>
11765
11766         * gtk/gtkinvisible.c (gtk_invisible_style_set): Avoid
11767         chaining up to parent impl, since we have a INPUT_ONLY
11768         window.
11769
11770         * gtk/gtkentry.[ch]: Add a cursor_color property to set the
11771         foreground color for the cursor.
11772
11773 Mon Apr  2 15:06:13 2001  Owen Taylor  <otaylor@redhat.com>
11774
11775         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Reference 
11776         param spec when caching property values, since we unref it
11777         later when we free the style.
11778
11779         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Dont' free
11780         values since they are retrieved with G_VALUE_NO_COPY_CONTENTS.
11781
11782 Mon Apr  2 10:47:57 2001  Owen Taylor  <otaylor@redhat.com>
11783
11784         * gtk/gtkwidget.c (gtk_widget_class_init): Fix 
11785         G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
11786         stupidity.
11787
11788 Mon Apr  2 00:51:11 2001  Owen Taylor  <otaylor@redhat.com>
11789
11790         [ First pass at adding style properties. Still needs some definite
11791         fine-tuning. ]
11792
11793         * gtk/gtkbutton.c: Add ::default_spacing style property.
11794          
11795         * gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
11796         ::indicator_spacing style properties.
11797
11798         * gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
11799         style properties.
11800
11801         * gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
11802         rather than a normal property.
11803
11804         * gtk/gtkwidget.c: Add an ::interior_focus style property to
11805         draw focus inside buttons, in the Windows/Java Metal/etc. style.
11806
11807         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
11808         Honor ::interior_focus.
11809         
11810         * gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is 
11811         TRUE.
11812
11813         * gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
11814         Add ::slider_width, ::trough_border, ::stepper_size,
11815         ::stepper_spacing style properties.
11816
11817         * gtk/gtkscale.[ch] Add ::slider-length style property.
11818
11819 2001-04-02 Alexander Larsson   <alexl@redhat.com>
11820
11821         * gdk/linux-fb/gdkwindow-fb.c:
11822         Add gdk_window_begin_resize_drag and gdk_window_begin_move_drag. Remove some
11823         warnings that were spewed on startup.
11824
11825         * gtk/gtkwindow-decorate.c:
11826         gtk_window_reposition -> _gtk_window_reposition
11827
11828 Sun Apr  1 21:37:22 2001  Owen Taylor  <otaylor@redhat.com>
11829
11830         * gtk/gtkwidget.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
11831         Add boxed type for GtkRequistion. Use it for ::size-request.
11832
11833         * gtk/gtkstyle.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
11834         Add a new GtkBorder structure useful for geometry properties
11835         for widgets. Add corresponding GTK_TYPE_BORDER.
11836         
11837         * gtk/gtkwidget.c (gtk_widget_class_install_style_property):
11838         Support automatic parser selection like
11839         gtk_settings_install_property_parser().
11840
11841         * gtk/gtksettings.c (_gtk_rc_property_select_parser): Export
11842         functionality for use by gtk_widget_class_install_style_property.
11843         Support GTK_TYPE_BORDER, GTK_TYPE_REQUISITION.
11844
11845 Sun Apr  1 20:48:59 2001  Owen Taylor  <otaylor@redhat.com>
11846
11847         * gtk/gtkentry.c (gtk_entry_class_init): Make invisible-char
11848         g_param_spec_unichar(). 
11849
11850 Sun Apr  1 23:41:37 2001  Tim Janik  <timj@gtk.org>
11851
11852         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): raise window for non
11853         _NET window managers.
11854
11855         * gtk/gtkmenufactory.[hc]: cvs removed those files now.
11856
11857 Sun Apr  1 08:00:13 2001  Tim Janik  <timj@gtk.org>
11858
11859         * gtk/gtkwidget.[hc]: got rid of gtk_widget_popup(), a function that
11860         bad needs to be nuked, not just deprecated.
11861
11862         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): don't use 
11863         gtk_widget_popup().
11864
11865         * gtk/*.[hc]: s/activate_mnemonic/mnemonic_activate/g;
11866         
11867         * gtk/gtkmenufactory.[hc]: removed this long-standingly deprecated
11868         widget.
11869         
11870         * docs/Changes-2.0.txt: updates.
11871         
11872 Sun Apr  1 01:02:54 2001  Jonathan Blandford  <jrb@redhat.com>
11873
11874         * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed):
11875         for (i = 0; i < 100; i ++)
11876           g_print ("I will confirm it compile before committing\n");
11877
11878 Sun Apr  1 00:52:06 2001  Jonathan Blandford  <jrb@redhat.com>
11879
11880         * gtk/gtktreestore.c: Initial work on implementing the
11881         GtkTreeSortable interface.  Basicaly a big cut'n'paste job.
11882
11883 Sun Apr  1 03:28:14 2001  Tim Janik  <timj@gtk.org>
11884
11885         * gtk/gtkwidget.c: fixed a bunch of notifications, added
11886         reference counts around emissions where the widget is used afterwards.
11887         added freeze/thaws around multiple properties being notified.
11888         (_gtk_widget_get_aux_info): cleanups.
11889         
11890         * gtk/gtksettings.c (gtk_settings_install_property): provide
11891         default parsing functions for gdkcolor, enums and flags.
11892
11893         * gtk/gtkwindow.[hc]: partially reverted patch from havoc,
11894         applied by owen.
11895         backed out gtk_window_get_location(), gtk_window_set_location(),
11896         gtk_window_get_size() and gtk_window_set_size(), these
11897         have to be sorted out wrg x/y/width/height/default_with/default_height
11898         properties.
11899         kept a flag in GtkWindowGeometryInfo to handle user
11900         resetting default sizes.
11901         cleaned up ZVT comments.
11902         bunch of assorted bug fixes, notification fixes.
11903         (_gtk_window_reposition): make this a really internal function.
11904         
11905         * gtk/testgtk.c: fixups.
11906         
11907 2001-03-31  Hans Breuer  <hans@breuer.org>
11908
11909         * config.h.win32.in : disable USE_MMX for msvc build cause
11910         the assembler doesn't fit and is out of my scope. Disable
11911         USE_GMODULE for msvc build as wel. The right way to share
11912         binaries on win32 would be to use libtiff.dll etc. To reduce
11913         installation hassles IMO it's better to include all fileformats
11914         builtin to gdk-pixbuf
11915
11916         * gdk-pixbuf/makefile.msc : new file
11917
11918         * gdk/gdk.def : updated
11919
11920         * gdk/win32/gdkevents-win32.c : don't erase the background if
11921         .no_bg is set. It improves the scrolling (e.g. of testgtk main
11922         buttons
11923         * gdk/win32/gdkgeometry-win32.c : added comment about the above
11924
11925         * gdk/win32/gdkwindow-win32.c : added three new functions like
11926         the X version. Only one is implemented, because the other two
11927         "gdk_window_begin_(resize|move)_drag" got no docs and appear to
11928         be default behaviour on win32 anyway ...
11929
11930         * gtk/gtk.def : updated
11931
11932         * gtk/makefile.msc.in : update for new files, use glib-genmarshal
11933         from where it was built and add an additional rule to automagically
11934         build gtkmarshal.[hc]
11935
11936         * gtk/gtkfilesel.c (open_new_dir) : don't increase n_entries
11937         before array access for the current entry isn't finished
11938
11939         * gtk/gtktreeitem.c (gtk_tree_item_subtree_button_click) :
11940         use g_return_val_if_fail
11941
11942         * gtk/testgtk.c (window_controls) : don't use the *wrong* size
11943         for the static array, but let the compiler calculate it. It
11944         makes me wonder if gcc isn't capable to catch bugs like this ...
11945
11946 2001-03-31  James Henstridge  <james@daa.com.au>
11947
11948         * gtk/gtkwidget.c (gtk_widget_size_adjust): fix use of magic
11949         constant "-1" in the aux info structure.
11950
11951 2001-03-30  Alexander Larsson  <alexl@redhat.com>
11952
11953         * gtk/gtkbutton.c (gtk_button_get_property):
11954         * gtk/gtklabel.c:
11955         Remove leaks.
11956         
11957         * gtk/gtkcontainer.c:
11958         * gtk/gtkhscale.c:
11959         * gtk/gtkhscrollbar.c:
11960         * gtk/gtklayout.c:
11961         * gtk/gtkmisc.c:
11962         * gtk/gtkprogress.c:
11963         * gtk/gtkprogressbar.c:
11964         * gtk/gtkrange.c:
11965         * gtk/gtktable.c:
11966         * gtk/gtkviewport.c:
11967         * gtk/gtkvscale.c:
11968         * gtk/gtkvscrollbar.c:
11969         * gtk/gtkwidget.c:
11970         Property patches, based on patches from John Margaglione and Lee Mallabone.
11971
11972 Thu Mar 29 21:20:38 2001  Mike Kestner  <mkestner@ameritech.net>
11973
11974         * gtk/gtkspinbutton.c : added value_changed signal which proxies for the
11975         adjustment. Cleaned redundant preconditions (spin != NULL). Added
11976         inline API function docs.
11977         (gtk_spin_button_new_with_range): New convenience constructor.
11978         (gtk_spin_button_set_increments): New adjustment helper.
11979         (gtk_spin_button_set_range): New adjustment helper.
11980
11981         * gtk/testgtk.c : added test of the new convenince constructor and
11982         value_changed signals.
11983
11984 Thu Mar 29 20:20:38 2001  Jonathan Blandford  <jrb@redhat.com>
11985
11986         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): Now we
11987         listen to the reorder signal.
11988
11989 Wed Mar 28 20:30:26 2001  Owen Taylor  <otaylor@redhat.com>
11990
11991         * gtk/gtkwidget.[ch] (_gtk_widget_get_aux_info): Add private function
11992         to get the aux info structure fo the widget.
11993
11994         * gtk/gtklabel.c gtk/gtkscrolledwindow.c gtk/gtkwindow.c: Use
11995         above function.
11996
11997         [ Patch from  Havoc Pennington  <hp@redhat.com> ]
11998
11999         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): function
12000         to get the size of the window manager frame, basically the same
12001         code that gdk_window_get_root_origin() had
12002         (gdk_window_get_root_origin): use gdk_window_get_frame_extents()
12003
12004         * gtk/gtkwindow.c (gtk_window_set_default_size): use
12005         gdk_window_resize() if the window is realized and resizeable
12006
12007         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): fix
12008         typo so that setting gravity works
12009
12010         * gtk/gtkwindow.c (gtk_window_move_resize): don't ever use
12011         allocation if auto_shrink is on, even if the default size
12012         has not changed.
12013
12014         * gtk/gtkwidget.c (gtk_widget_render_icon): remove bogus
12015         g_return_if_fail
12016
12017 Thu Mar 29 16:29:12 2001  Jonathan Blandford  <jrb@redhat.com>
12018
12019         * gtk/gtkliststore.c (gtk_list_store_iter_changed): Massive
12020         reordering/sorting work.  Now pretty much works.
12021
12022         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Lots of work to make
12023         reorder mostly work.  Still need to get the parity correct.
12024
12025         * gtk/gtktreeviewcolumn.c: Listen for "model" property changed
12026         signal, so I can listen for the sort_column_changed signal so I
12027         can change my "sort_indicator" property.  Cool.
12028
12029 Wed Mar 28 00:03:10 2001  Owen Taylor  <otaylor@redhat.com>
12030
12031         [ Patch from Havoc Pennington, hp@redhat.com ]
12032
12033         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c:
12034         Add functions gdk_window_begin_resize_drag/begin_move_drag
12035         to start resizing or moving a toplevel window. This
12036         is done either using the _NET_WM_MOVERESIZE protocol,
12037         or, if that isn't present, by emulation.
12038
12039         * gtk/gtkwindow.[ch]: Add functions gtk_begin_move/resize_drag
12040         to export the above to GTK+-land.
12041
12042         * gtk/gtkstyle.[ch]: Add ->draw_resize_grip() paint func.
12043         
12044         * gtk/gtkwindow.c gdk/gdkwindow.[ch] (gdk_window_constrain_size):
12045         Move this function into gdkwindow, since we need it
12046         when implementing fallback resizing.
12047
12048         * gdk/x11/gdkwindow-x11.c: gdk_window_set_geometry_hints.
12049         Fix typo when setting gravity.
12050
12051         * gtk/gtkstatusbar.[ch] (gtk_statusbar_set_has_resize_grip):
12052         Add an optional (but on by default) resize grip for resizing 
12053         the parent window.
12054
12055 01-03-29  Alexander Larsson  <alexl@redhat.com>
12056
12057         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
12058         Don't return TRUE from the event handler, that blocks all
12059         event signals on the tooltip widget. Now you can press buttons
12060         in toolbars again.
12061
12062 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
12063
12064         * gtk/testtext.c (create_buffer): Add missing NULL on
12065         valist.
12066
12067         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Fix
12068         c-n-p problem with INCONSISTENT property.
12069
12070         [ Patch from Havoc Pennington  <hp@redhat.com> ]
12071
12072         * gtk/gtkentry.h (struct _GtkEntryClass): add same populate_popup
12073         hook.
12074
12075         * gtk/gtktextview.h (struct _GtkTextViewClass): add populate_popup
12076         signal as a hook for extending the default popup menu
12077
12078         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
12079         use radio menu items for the input method menuitems
12080
12081         * gtk/gtkimcontextsimple.c (check_hex): do better validation of 
12082         inserted unicode from Ctrl-Shift-hex input method
12083
12084         * gtk/gtktextbtree.c (_gtk_text_btree_insert): remove utf8
12085         validatation here, already done at GtkTextBuffer level.
12086
12087         * gtk/gtkwidget.c (gtk_widget_class_init): add binding set, add
12088         popup_menu run action signal and Shift+F10 and Menu keybindings.
12089
12090         * gtk/gtkentry.c: implement a default handler for popup_menu
12091
12092         * gtk/gtktextview.c: implement a default handler for popup_menu
12093
12094         * gtk/gtkmenu.c (gtk_menu_popup): select first item if popup is
12095         from a key event
12096         
12097         * gtk/gtklabel.c: remove "trailer" cruft
12098
12099 Wed Mar 28 17:27:12 2001  Jonathan Blandford  <jrb@redhat.com>
12100
12101         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): new function to
12102         handle reordering of trees.  Seems to mostly work w/ the exception
12103         of the parity flag.
12104
12105         * gtk/gtktreeview.c (gtk_tree_view_reordered): handle "reordered"
12106         signal.
12107
12108 Wed Mar 28 21:12:37 2001  Tim Janik  <timj@gtk.org>
12109
12110         * gtk/gtkwidget.h: c++ fixes.
12111
12112 Sun Mar 25 15:51:28 2001  Owen Taylor  <otaylor@redhat.com>
12113
12114         * gtk/gtksettings.c (gtk_settings_init): Fix use of uninitialized
12115         memory.
12116
12117 Tue Mar 27 22:36:07 2001  Owen Taylor  <otaylor@redhat.com>
12118
12119         * gtk/gtkwidget.h gtk/gtkrange.h: Apply patch from 
12120         Nils Barth fixing event return values. (#51041)
12121
12122         * gtk/gtkwidget.c: Fix some return values for default
12123         functions.
12124
12125         * gtk/gtk[vh]scrollbar.c gtk/gtk[vh]range.c: Fix
12126         return values for trough_keys functions.
12127
12128         * gtk/gtkwidget.h (struct _GtkWidgetClass): Fix return
12129         value for add_accelerator (shoudl have been a void
12130         return.)
12131
12132         * gtk/gtkcellrenderer.[ch]: gtkcellrenderertoggle.h:
12133         Fix return type of EVENT.
12134
12135         * gtk/gtkmarshal.list gtk/gtktexttag.c: Make EVENT
12136         signal return a boolean.
12137
12138 Tue Mar 27 22:07:44 2001  Jonathan Blandford  <jrb@redhat.com>
12139
12140         * gtk/gtkliststore.c (gtk_list_store_sort): Fix arguments to
12141         reordered signal.
12142
12143         * tests/testtreesort.c (main): fix spelling.
12144
12145 Tue Mar 27 20:55:29 2001  Jonathan Blandford  <jrb@redhat.com>
12146
12147         * gtk/gtkliststore.c: More work on implementing sortable
12148         interface.
12149
12150 Mon Mar 26 15:48:45 2001  Owen Taylor  <otaylor@redhat.com>
12151
12152         * gtk/gtkwindow.c (gtk_window_list_toplevels): Don't
12153         reference the widgets in the resulting list. (#11821)
12154         This makes this consistent with gtk_container_children.
12155
12156         * gtk/gtkwindow.c gtk/gtkwidget.c: Fix up the two
12157         uses of gtk_window_list_toplevels.
12158
12159 Mon Mar 26 15:26:17 2001  Owen Taylor  <otaylor@redhat.com>
12160
12161         * gtk/gtkimcontext.c (gtk_im_context_set_use_preedit): Add
12162         a virtual function to set whether the IM context should use 
12163         the preedit string. (#51922)
12164         
12165 Mon Mar 26 14:42:59 2001  Owen Taylor  <otaylor@redhat.com>
12166
12167         * gdk/gdkpango.h: Remove stale FIXME comment.
12168
12169 2001-03-26  Alexander Larsson  <alla@lysator.liu.se>
12170
12171         * gtk/gtkfilesel.c (gtk_file_selection_get_filename):
12172         Fixed bug that returned NULL if a filename was selected.
12173
12174 2001-03-24  Havoc Pennington  <hp@pobox.com>
12175
12176         * gtk/gtkthemes.c (gtk_theme_engine_load): improve error message
12177         to contain the word "theme"
12178
12179 2001-03-24  Havoc Pennington  <hp@pobox.com>
12180
12181         * gtk/gtkhsv.c (gtk_hsv_move): make motion around the ring much
12182         slower but finer-grained
12183         (gtk_hsv_focus): get initial focus on the ring or triangle 
12184         according to tab direction
12185
12186         * gtk/testgtk.c (main): get rid of weird sleep(1) on exit
12187
12188 2001-03-23  Havoc Pennington  <hp@pobox.com>
12189
12190         * gtk/gtkhsv.c: make this somewhat key-navigable
12191
12192         * gtk/gtkfontsel.c: mnemonics
12193
12194         * gtk/gtkgamma.c: mnemonics
12195
12196         * gtk/gtkcolorsel.c: add mnemonics to labels
12197
12198 2001-03-22  Havoc Pennington  <hp@pobox.com>
12199
12200         Applied big patch from Seth Lytle to fix event handler return
12201         values, slightly modified.
12202
12203         * gtk/gtkcalendar.c (gtk_calendar_button_press): return TRUE if
12204         handled.
12205         (gtk_calendar_key_press): return TRUE for GDK_space triggers
12206         select_day
12207
12208         * gtk/gtkclist.c (gtk_clist_button_press): return TRUE if handled
12209         (gtk_clist_button_release): return TRUE if handled
12210
12211         * gtk/gtkcolorsel.c (mouse_release):
12212         (palette_activate): 
12213         (palette_press): 
12214         (palette_new): 
12215         (mouse_press): 
12216         (get_screen_color): 
12217         fixed return type (void to gboolean), return TRUE,
12218         added GTK_SIGNAL_FUNC cast
12219
12220         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fixed return type
12221         (void to gboolean), and return TRUE
12222         (gtk_combo_button_release): changed return value to TRUE after
12223         gtk_grab_add on combo->popwin
12224
12225         * gtk/gtkctree.c (gtk_ctree_button_press): return TRUE if triggers a
12226         collapse or expand
12227
12228         * gtk/gtkcurve.c (gtk_curve_graph_events): return TRUE for
12229         button/motion
12230
12231         * gtk/gtkdnd.c (gtk_drag_source_event_cb): return TRUE for button
12232         press/release and motion that trigger act
12233
12234         * gtk/gtkentry.c (gtk_entry_button_release): return TRUE
12235
12236         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): return TRUE
12237         for GDK_Return
12238         
12239         * gtk/gtklist.c (gtk_list_button_press): return TRUE mostly
12240         (gtk_list_button_release): return TRUE if selection
12241
12242         * gtk/gtklistitem.c (gtk_list_item_button_press): return TRUE on
12243         press
12244
12245         * gtk/gtkmenushell.c (gtk_menu_shell_button_press):
12246         (gtk_menu_shell_button_release): chain parent_menu_shell retval
12247
12248         * gtk/gtknotebook.c (gtk_notebook_button_press): return FALSE if
12249         nothing triggered
12250         (gtk_notebook_button_release): return TRUE if we do anything
12251
12252         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): 
12253         (gtk_spin_button_button_release): return TRUE or chained retval
12254
12255         * gtk/gtktext.c (gtk_text_button_press): 
12256         (gtk_text_button_release): return TRUE
12257         (gtk_text_key_press): remove redundant retval code
12258         
12259         * gtk/gtktreeitem.c (gtk_tree_item_button_press): return TRUE if button
12260         and sensitive
12261         (gtk_tree_item_subtree_button_click): changed type to gint, and return
12262         TRUE if sensitive
12263
12264         * gtk/gtktooltips.c (gtk_tooltips_event_handler): deactivate implies 
12265         return TRUE
12266
12267 2001-03-23  Havoc Pennington  <hp@redhat.com>
12268
12269         * gtk/testgtk.c: fix warnings
12270
12271         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): fix return value
12272
12273         * gtk/gtktextview.c: fix warnings
12274
12275         * gtk/gtktext.c (find_cursor_at_line): fix warning
12276
12277         * gtk/gtkselection.c (gtk_selection_notify): fix warning 
12278
12279         * gtk/gtkitemfactory.c (gtk_item_factory_menu_pos): fix signature
12280         of this function
12281
12282         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
12283         fix warning
12284
12285         * gtk/gtkhandlebox.c (gtk_handle_box_style_set): fix warning
12286
12287         * gtk/gtkfontsel.c: fix warning
12288
12289         * gtk/gtkcolorsel.c: fix warnings
12290
12291 2001-03-23  Havoc Pennington  <hp@redhat.com>
12292
12293         * gtk/gtkhandlebox.c: Apply property patch from Lee Mallabone
12294
12295         * gtk/gtkbox.c: Apply property patch from Lee Mallabone
12296
12297         * gtk/gtkcheckmenuitem.c: Apply property patch from Lee Mallabone,
12298         and deprecated gtk_check_menu_item_set_show_toggle().
12299         
12300         * gtk/gtkbutton.c: Apply property patch from Lee Mallabone
12301
12302         * gtk/gtkfilesel.c: Apply property patch from Lee Mallabone
12303
12304         * gtk/gtkframe.c: Apply property patch from Lee Mallabone
12305
12306 2001-03-23  Havoc Pennington  <hp@redhat.com>
12307
12308         * gtk/gtktoolbar.c, gtk/gtkimcontext.c, gtk/gtklabel.c: fix up
12309         some docs
12310
12311 Fri Mar 23 16:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
12312
12313         * gtk/gtktreeviewcolumn.h (GtkCellDataFunc): Forgot to namespace
12314         this.
12315
12316         * gtk/gtktreestore.c (gtk_tree_store_set_value): change from
12317         set_cell to set_value
12318
12319         * gtk/gtkliststore.c (gtk_list_store_set_value): change from
12320         set_cell to set_value
12321
12322 Thu Mar 22 19:27:34 2001  Jonathan Blandford  <jrb@redhat.com>
12323
12324         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
12325         fix braino.
12326         * gtk/gtktreesortable.[ch]: New interface to add cleanup sortable
12327         support.
12328
12329         * gtk/gtktreeview.c: Addition of initial sortable support.
12330
12331         * gtk/gtktreestore.c: Addition of initial sortable support.
12332
12333         * gtk/gtkliststore.c: Addition of initial sortable support.
12334
12335         * gtk/gtkmarshal.list: yet another marshaller.
12336
12337         * gtk/gtktreedatallist.[ch]: shared code between the store models
12338         for handling sorting headers.
12339
12340 2001-03-22  Havoc Pennington  <hp@redhat.com>
12341
12342         * gtk/gtkcontainer.c (gtk_container_set_focus_chain): 
12343         (gtk_container_unset_focus_chain): Add ability to override the 
12344         focus chain for a container explicitly
12345
12346 Thu Mar 22 13:01:44 2001  Tim Janik  <timj@gtk.org>
12347
12348         * gtk/gtklabel.[hc]: some cleanups, fixed mnemonic_widget handling,
12349         added PROP_MNEMONIC_WIDGET.
12350
12351         * gtk/gtkwindow.c (gtk_window_activate_mnemonic): 
12352         (gtk_window_remove_mnemonic): 
12353         (gtk_window_add_mnemonic): fixed assertions.
12354         (gtk_window_activate_mnemonic): constrain modifier checks to those
12355         permitted by gtk_accelerator_get_default_mod_mask().
12356         got rid of gtk_window_get_default_accel_group().
12357
12358         * gtk/gtkwidget.c (gtk_widget_real_activate_mnemonic): handle non
12359         activatable widgets either by focussing or a warning.
12360         added a signal accumulator to ::activate_mnemonic which stops the
12361         emission once a handler returned TRUE.
12362
12363 2001-03-22  Havoc Pennington  <hp@pobox.com>
12364
12365         * gtk/gtktoolbar.c (gtk_toolbar_insert_stock): handle mnemonics in
12366         the stock item label
12367
12368         * gtk/gtklabel.c: s/@gtk_func/gtk_func()/ in docs
12369
12370         * gtk/gtkstock.c (builtin_items): add mnemonics where missing
12371
12372         * demos/gtk-demo/*.c: Add mnemonics all over the place
12373
12374         * gtk/gtklabel.h: mark parse_uline deprecated
12375
12376 2001-03-21  Alexander Larsson  <alexl@redhat.com>
12377
12378         * gtk/gtkitemfactory.[ch]:
12379         Add support for stock and normal imagemenuitems.
12380         
12381         * gtk/testgtk.c:
12382         Add some tests for mnemonics, stock toolbars, stock
12383         and image menuitems in itemfactory and gdk_window_scroll.
12384
12385 2001-03-21  Alexander Larsson  <alexl@redhat.com>
12386
12387         * gtk/gtkbutton.[ch]:
12388         * gtk/gtkdialog.c:
12389         Renamed gtk_button_new_stock() to gtk_button_new_from_stock() and
12390         removed accel_group argument. Renamed gtk_button_new_accel() to
12391         gtk_button_new_with_mnemonic() and removed accel_group argument.
12392
12393         * gtk/gtkcheckbutton.[ch]:
12394         New function gtk_check_button_new_with_mnemonic().
12395
12396         * gtk/gtkentry.c:
12397         Override activate_mnemonic and just grab focus.
12398
12399         * gtk/gtkitemfactory.c:
12400         Don't add menu uline accel group, instead use mnemonics support.
12401
12402         * gtk/gtklabel.[ch]:
12403         New support for mnemonics.
12404
12405         * gtk/gtkmarshal.list:
12406         Needed BOOLEAN:BOOLEAN for activate_mnemonic.
12407
12408         * gtk/gtkmenu.[c]:
12409         * gtkmenushell.c:
12410         Use mnemonics instead of accel groups for uline
12411         support in menu items.
12412         Removed gtk_menu_get_uline_accel_group() and
12413         gtk_menu_ensure_uline_accel_group().
12414
12415         * gtk/gtkmenuitem.c:
12416         Override activate_mnemonic to handle switching between
12417         menu items if there are collisions.
12418         
12419         * gtk/gtknotebook.c:
12420         Connect to activate_mnemonic on the tab_label, so that
12421         activating it switches to that notebook page.
12422
12423         * gtk/gtkwidget.[ch]:
12424         Add activate_mnemonic signal. New function
12425         gtk_widget_activate_mnemonic() to emit it.
12426         Default implementation does activate/grab_focus.
12427
12428         * gtk/gtkwindow.[ch]:
12429         Add support for mnemonics in windows.
12430         New functions:
12431         gtk_window_add_mnemonic, gtk_window_remove_mnemonic,
12432         gtk_window_activate_mnemonic, gtk_window_set_mnemonic_modifier
12433
12434         * gtk/testgtk.c:
12435         Update to function name changes.
12436         
12437 2001-03-21  Alexander Larsson  <alexl@redhat.com>
12438
12439         * gtk/gtkimagemenuitem.[c]:
12440         Add gtk_image_menu_item_new_from_stock()
12441
12442 Tue Mar 20 15:00:43 2001  Jonathan Blandford  <jrb@redhat.com>
12443
12444         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
12445         Fix buglet in meeting.
12446
12447 2001-03-19  Havoc Pennington  <hp@redhat.com>
12448
12449         * gtk/gtkiconfactory.c: Make GtkIconSource an opaque datatype, and
12450         add a bunch of accessor functions. This is because we have
12451         reasonable expectations of extending what fields it contains in
12452         the future.
12453
12454         * gtk/gtkstyle.c (gtk_default_render_icon): adapt to icon source
12455         changes
12456
12457         * gtk/gtkrc.c (gtk_rc_parse_icon_source): fix to use new
12458         GtkIconSource   
12459
12460 Mon Mar 19 15:53:36 2001  Owen Taylor  <otaylor@redhat.com>
12461
12462         * gtk/gtkitemfactory.c gtk/testgtk.c: Handle quoting of / with \; properly
12463         handle __ in paths, quote " and \n in gtk_item_factory_dump_items().
12464
12465         * gtk/gtkadjustment.[ch] gtk/gtkclist.c gtk/gtkhruler.c gtk/gtklayout.c 
12466           gtk/gtklist.c gtk/gtkprogress.[ch] gtk/gtkprogressbar.[ch] gtk/gtkrange.[ch]
12467           gtk/gtkruler.[ch] gtk/gtkscale.c gtk/gtkscrolledwindow.c gtk/gtkspinbutton.[ch]
12468           gtk/gtktext.c gtk/gtktextview.c gtk/gtkvruler.c gtk/testgtk.c:
12469         Change float to double everywhere with the exception of 0<->1.0 alignment
12470         and GtkCurve.
12471
12472 2001-03-19  Tor Lillqvist  <tml@iki.fi>
12473
12474         * gdk/win32/gdkdrawable-win32.c
12475         * gdk/win32/gdkimage-win32.c: Use correct casts in debugging
12476         output.
12477
12478         * demos/testpixbuf-drawable.c: If GDK_WINDOWING_WIN32, include
12479         gdkwin32.h.
12480
12481 2001-03-18  Tor Lillqvist  <tml@iki.fi>
12482
12483         * gdk/win32/gdkevents-win32.c (print_window_state): New function.
12484         print_event_state, print_event): Use preprocessor macro to make
12485         code more compact. Print also GDK_WINDOW_STATE events.
12486         (synthesize_crossing_events): Remove the old #ifdeffed-out code.
12487         
12488         * gtk/gtk.def
12489         * gtk/makefile.mingw.in: Update.
12490
12491         * gtk/gtkmain.h: Check for G_PLATFORM_WIN32, not only G_OS_WIN32,
12492         to catch also Cygwin.
12493
12494 Sun Mar 18 01:15:30 2001  Tim Janik  <timj@gtk.org>
12495
12496         * gtk/gtkspinbutton.[hc]: added rc-style argument
12497         GtkSpinButton::shadow_type.
12498         removed spin_button->shadow_type, gtk_spin_button_set_shadow_type()
12499         and ARG_SHADOW_TYPE as it doesn' make much sense to try to override
12500         rc-style settings.
12501
12502         * gtk/gtkfixed.c: removed gtk_fixed_paint() (was unused).
12503
12504         * gtk/gtkwidget.c: quark cleanups.
12505
12506         * gtk/gtkrc.[hc]: added gtk_rc_scanner_new() to create an rc-file
12507         scanner with appropriate configuration, renamed GtkRcStyleClass.clone
12508         to create_rc_style() (we don't do cloning in standard OO sense).
12509         added per rc style properties.
12510         
12511         * gtk/gtkstyle.[hc]: added code to retrive pspec conformant rc-style
12512         property values and for caching those. some cleanups.
12513         
12514         * gtk/Makefile.am: -DG_DISABLE_CONST_RETURNS.
12515         
12516         * gtk/gtksettings.[hc]: new file for global rc-file properties
12517         (at least currently, should get extended to support X properties
12518         and other communication mechanisms).
12519         
12520         * gtk/gtkwidget.[hc]: added style property support:
12521         (gtk_widget_class_install_style_property_parser): install style
12522         property pspec with parser function for rc-file values other
12523         than LONG, DOUBLE or STRING.
12524         (gtk_widget_class_install_style_property): same as above without
12525         parser (parsers are going to be needed quite infrequently).
12526         (gtk_widget_style_get_property): retrive style property value.
12527         (gtk_widget_style_get_valist): same as above with varargs support,
12528         has NOCOPY semantics.
12529         (gtk_widget_style_get): wrapper around gtk_widget_style_get_valist().
12530
12531 Fri Mar 16 18:24:53 2001  Jonathan Blandford  <jrb@redhat.com>
12532
12533         * demos/gtk-demo/main.c (row_activated_cb): modified to use
12534         "row_activated" signal.
12535
12536         * gtk/gtktreeview.c (gtk_tree_view_row_activated): oh, the
12537         stupidity.  Lets actually pass in the row with this signal...
12538
12539 Fri Mar 16 18:01:17 2001  Jonathan Blandford  <jrb@redhat.com>
12540
12541         * gtk/gtktreeviewcolumn.[ch]: s/GTK_TREE_COLUMN/GTK_TREE_VIEW_COLUMN
12542
12543         * gtk/gtktreeview.c (gtk_tree_view_row_activated): New signal.
12544
12545         * gtk/gtktreeview.c (gtk_tree_view_destroy): moved pretty much
12546         everything into the ::destroy function, and freed a lot more.
12547
12548 2001-03-16  Havoc Pennington  <hp@redhat.com>
12549
12550         * gtk/gtkwidget.h (struct _GtkWidgetAuxInfo): change to use gint
12551         instead of gint16, to avoid overflow issues, since sizes > 16-bit
12552         are now allowed.
12553
12554 2001-03-16  Havoc Pennington  <hp@redhat.com>
12555
12556         * Applied patch from Nils Barth (bug # 51041) to 
12557         replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
12558         in various places.
12559
12560 2001-03-15  Havoc Pennington  <hp@redhat.com>
12561         
12562         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): add varargs 
12563         for properties to set on the tag.
12564
12565         * gtk/testtext.c: fixups to reflect create_tag change
12566         
12567         * gtk/gtktexttag.c (gtk_text_tag_set_property):
12568         background/foreground stipple are objects, not boxed.
12569
12570         * demos/gtk-demo/textview.c: intellihancing
12571
12572 Fri Mar 16 11:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
12573
12574         * gtk/gtktreeview.c (gtk_tree_view_set_model): Fixed some
12575         braindeadness spotted by Jamie Strachan <frostfreek@yahoo.com>.
12576
12577 2001-03-16  Alexander Larsson  <alexl@redhat.com>
12578
12579         * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
12580         Fix sign error with queued region translations.
12581
12582 2001-03-15  HideToshi Tajima  <tajima@happy>
12583
12584         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
12585         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_location):
12586         * gtk/gtkentry.c (update_im_cursor_location): 
12587         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_location):
12588         * gtk/gtkimcontext.h (struct _GtkIMContextClass): rename
12589         set_cursor_pos to set_cursor_location in GtkInputContext class
12590
12591 Thu Mar 15 18:22:44 2001  Jonathan Blandford  <jrb@redhat.com>
12592
12593         * gtk/gtkcellrenderer.h: Changed prototype to allow for getting
12594         the location of the cell relative to its area.
12595         * gtk/gtkcell*: modified for above change
12596         * gtk/gtktreeview.c: modified for above change.
12597
12598 Wed Mar 14 13:58:32 2001  Jonathan Blandford  <jrb@redhat.com>
12599
12600         * gtk/gtktreeview.c (gtk_tree_view_set_model): Ref the model.
12601          (gtk_tree_view_finalize): actually unref the model.  Thanks to
12602         Jamie Strachan <frostfreek@yahoo.com> for noticing this error.
12603
12604 2001-03-14  Havoc Pennington  <hp@redhat.com>
12605
12606         * gtk/gtkdata.h, gtk/gtkdata.c: Delete.
12607         
12608         * gtk/gtk.h: remove gtkdata.h
12609
12610         * gtk/Makefile.am: remove gtkdata
12611         
12612         * gtk/gtktext.c (gtk_text_set_adjustments): connect to "destroy"
12613         not "disconnect" on the adjustments.
12614         
12615         * gtk/gtktooltips.h, gtk/gtktooltips.c: derive from GtkObject not
12616         GtkData
12617
12618         * gtk/gtkadjustment.h, gtk/gtkadjustment.c: derive from GtkObject
12619         not GtkData
12620
12621         * configure.in: handle case where X render exists, but Pango lacks
12622         Xft support.
12623
12624 2001-03-15 Alexander Larsson  <alexl@redhat.com>
12625
12626         * gtk/gtktoolbar.[ch]:
12627         New functions gtk_toolbar_set_icon_size and gtk_toolbar_insert_stock
12628         to add stock items to toolbars.
12629
12630         * gtk/Makefile.am:
12631         Remove ../gdk/gdkim.h from gdk_headers.
12632
12633 2001-03-15  Sven Neumann  <sven@gimp.org>
12634
12635         * gdk/gdkim.h: removed
12636         
12637         * gdk/gdkprivate.h
12638         * gdk/x11/gdkim-x11.c: do not include gdkim.h 
12639
12640 2001-03-14  HideToshi Tajima  <tajima@happy.sunsoft.eng.sun.com>
12641
12642         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_pos):
12643         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_pos):
12644         * gtk/gtkimcontext.h (struct _GtkIMContextClass): add
12645         set_cursor_pos() virtual method
12646
12647         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_class_init):
12648         (gtk_im_context_xim_set_cursor_pos): add implementation for
12649         set_cursor_pos() method
12650
12651         * gtk/gtkentry.c (recompute_idle_func): set current cursor
12652         position to input methods
12653
12654 Mon Mar 12 21:02:08 2001  Jonathan Blandford  <jrb@redhat.com>
12655
12656         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Fix up focus
12657         code a lot.
12658
12659         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): use
12660         g_mem_chunk.
12661         (_gtk_tree_data_list_alloc): use g_mem_chunk.
12662         (_gtk_tree_data_list_node_to_value): Fix to switch on
12663         G_TYPE_FUNDAMENTAL.
12664         (_gtk_tree_data_list_value_to_node): Fix to switch on
12665         G_TYPE_FUNDAMENTAL.
12666         (_gtk_tree_data_list_node_copy): Fix to switch on
12667         G_TYPE_FUNDAMENTAL.
12668
12669 2001-03-12  Havoc Pennington  <hp@redhat.com>
12670
12671         * gtk/gtkwindow.c (gtk_window_class_init): Patch from John Margaglione 
12672         to convert to new property API. Also, change default_width and
12673         default_height get_property to return 0 as the flag value for
12674         "unset"; -1 is not a valid value for these fields.
12675
12676 2001-03-12  Havoc Pennington  <hp@redhat.com>
12677
12678         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: Switch to using an
12679         enum with registration for icon sizes, instead of strings.
12680
12681         * gtkimage.h, gtkimage.c, gtkstyle.h, gtkstyle.c, gtkwidget.h, 
12682         gtkwidget.c: Fix to reflect GtkIconSize
12683         
12684 2001-03-12  Alexander Larsson  <alexl@redhat.com>
12685
12686         Make GtkFB compile and link.
12687         
12688         * gdk/linux-fb/gdkdrawable-fb2.c:
12689         window->mapped to GDK_WINDOW_IS_MAPPED(). 
12690         
12691         * gdk/linux-fb/gdkwindow-fb.c:
12692         window->mapped to GDK_WINDOW_IS_MAPPED(). 
12693         Added gdk_window_shape_combine_region.
12694         Added assorted placeholders for unimplemented new GdkWindow API calls.
12695
12696 2001-03-12  Alexander Larsson  <alexl@redhat.com>
12697
12698         * gtk/gtkfilesel.c:
12699         Add more test when converting filenames from/to utf-8.
12700         Don't allow entering text in the filename entry which isn't allowed in
12701         a filename. Just beep instead.
12702
12703 2001-03-12  Alexander Larsson  <alexl@redhat.com>
12704
12705         * gtk/gtkclist.c:
12706         Scroll using gdk_window_scroll(). Don't wait for exposes.
12707         Move the column headers in an order that makes them flash less.
12708
12709 2001-03-10  Hans Breuer  <hans@breuer.org>
12710
12711         * gdk/gdk.def : updated
12712
12713         * gdk/win32/gdkgc-win32.c : pixmaps are visible again, due
12714         to offseting the clip_mask at the right place
12715
12716         * gdk/win32/gdkwindow-win32.c : don't create background brushes
12717         for all the gdkClasses, especially not for the input_only case.
12718         Otherwise flickering wont be avoidable, because we don't get
12719         WM_ERASEBKGND message for these windows.
12720
12721         * gdk/win32/gdkevents-win32.c : initialize event->expose.region
12722         and fixed massive redraw problems apparently triggered by Alexanders 
12723         recent change. Not fully understood the GDK_EXPOSE / WM_PAINT handling
12724         but it seems to work quite well :-)
12725
12726         * gdk/win32/gdkprivate-win32.h : added _gdk_window_process_expose
12727         prototype
12728
12729 Sat Mar 10 12:15:31 2001  Jonathan Blandford  <jrb@redhat.com>
12730
12731         * gtk/gtktreestore.c (gtk_tree_store_set_cell): Fix a stupid typo.
12732         (gtk_list_store_set_cell): Fix a stupid typo.
12733
12734 Fri Mar  9 20:36:21 2001  Jonathan Blandford  <jrb@redhat.com>
12735
12736         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): Make
12737         select_all not work if you're in SINGLE mode (it doesn't make that
12738         much sense, anyway.)
12739
12740         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
12741         handle types more sanely.
12742         (_gtk_tree_data_list_value_to_node): handle types more sanely.
12743         (_gtk_tree_data_list_node_copy): handle types more sanely.
12744
12745         * gtk/gtkliststore.c (gtk_list_store_set_cell): fix to work with
12746         GValue better. Converts the type as well.
12747
12748         * gtk/gtktreestore.c (gtk_tree_store_set_cell): fix to work with
12749         GValue better. Converts the type as well.
12750
12751 Wed Mar  7 20:47:41 2001  Owen Taylor  <otaylor@redhat.com>
12752
12753         * gtk/gtktext.c gtk/gtkoldeditable.[ch] gdk/gdk.[ch]
12754         gdk/Makefile.am gdk/x11/Makefile.am gdk/x11/gdkevents-x11.c 
12755         gdk/x11/gdkglobals-x11.c gdk/x11/gdkprivate-x11.c
12756         gdk/x11/gdkx.h gdk/x11/gdkim-x11.c: Remove old XIM code.
12757
12758         * gdk/win32/gdkim-win32.c gdk/linux-fb/gdkim-fb.c: Remove
12759         gdk_im/gdk_ic.
12760
12761 2001-03-09  Hans Breuer  <hans@breuer.org>
12762
12763         * gdk/gdk.def : updated
12764
12765         * gdk/win32/gdkevents-win32.c : don't ask input_only windows
12766         for their palette
12767
12768         * gdk/win32/gdkgeometry-win32.c : reflect GdkWindowObject::mapped
12769         removing
12770
12771         * gdk/win32/gdkwindow-win32.c : reflect GdkWindowObject::mapped
12772         removing and implemented Havoc's GdkWindow state functions; 
12773         stick/unstick only as no-op, cause I don't know how to emulate 
12774         on win32 ...
12775
12776         * gtk/gtk.def : updated
12777
12778         * gtk/gtkbox.c (gtk_box_get_spacing) : use g_return_val_if_fail ()
12779
12780         * gtk/gtktypeutils.c : #include <string.h>
12781
12782         * gtk/gtkwindow.h : declare gtk_window_set_decorated ()
12783
12784 Fri Mar  9 09:31:55 2001  Tim Janik  <timj@gtk.org>
12785
12786         * gtk/gtkwidget.c (gtk_widget_class_init): fixed signals with
12787         GDK_TYPE_DRAG_CONTEXT, it needs to be marshaled as an object,
12788         not a boxed.
12789
12790 2001-03-09  Alexander Larsson  <alexl@redhat.com>
12791
12792         * docs/Changes-2.0.txt:
12793         Document expose event->region change and that gtk_widget_event
12794         doesn't allow passing expose events.
12795
12796         * gdk/gdkevents.h:
12797         Add region to expose event.
12798         
12799         * gdk/gdkevents.c:
12800         Handle event->region in gdk_event_copy() and gdk_event_free().
12801
12802         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
12803         Generate expose_event->region when creating expose events.
12804
12805         * gdk/x11/gdkevents-x11.c:
12806         Generate expose events with regions when translating X events.
12807
12808         * gtk/gtkcontainer.[ch]:
12809         Default expose handler that propagates expose events to NO_WINDOW
12810         children. New function gtk_container_propagate_expose()
12811
12812         * gtk/gtkwidget.[ch]:
12813         Moved gtk_widget_event implementation to gtk_widget_event_internal.
12814         gtk_widget_event calls gtk_widget_event_internal but doesn't allow
12815         expose events. New function gtk_widget_send_expose() to send expose
12816         events. New function gtk_widget_region_intersect() to calculate
12817         window/region intersections.
12818         
12819         * gtk/gtkmain.c (gtk_main_do_event):
12820         Use gdk_window_begin_paint_region() instead of gdk_window_begin_paint_rect().
12821         Use gtk_widget_send_expose() to send expose events.
12822         
12823         * gtk/gtkbin.c:
12824         * gtk/gtkbox.c:
12825         * gtk/gtkfixed.c:
12826         * gtk/gtkimagemenuitem.c:
12827         * gtk/gtklist.c:
12828         * gtk/gtkpacker.c:
12829         * gtk/gtktable.c:
12830         * gtk/gtktree.c:
12831         Remove expose handler, using the default container implementation
12832         instead.
12833         
12834         * gtk/gtkbutton.c:
12835         * gtk/gtkcheckbutton.c:
12836         * gtk/gtkeventbox.c:
12837         * gtk/gtkfixed.c:
12838         * gtk/gtkhandlebox.c:
12839         * gtk/gtklayout.c:
12840         * gtk/gtklistitem.c:
12841         * gtk/gtkmenu.c:
12842         * gtk/gtkmenubar.c:
12843         * gtk/gtkmenuitem.c:
12844         * gtk/gtknotebook.c:
12845         * gtk/gtkoptionmenu.c:
12846         * gtk/gtkpaned.c:
12847         * gtk/gtkscrolledwindow.c:
12848         * gtk/gtktogglebutton.c:
12849         * gtk/gtktoolbar.c:
12850         * gtk/gtktreeitem.c:
12851         * gtk/gtkviewport.c:
12852         Chain expose handler to parent class handler. Use
12853         gtk_container_propagate_expose() to propagate exposes.
12854
12855         * gtk/gtkclist.c (check_exposures):
12856         * gtk/gtktext.c (process_exposes):
12857         Use gtk_widget_send_expose instead of gtk_widget_event.
12858
12859 Thu Mar  8 19:40:28 2001  Jonathan Blandford  <jrb@redhat.com>
12860
12861         * gtk/gtktreeview.c (gtk_tree_view_destroy): Add destroy function.
12862
12863 Thu Mar  8 19:18:27 2001  Jonathan Blandford  <jrb@redhat.com>
12864
12865         * gtk/gtktreeview.c (gtk_tree_view_unref_tree_helper): Actually
12866         unref the nodes.   Fixes bug #50058.
12867
12868         * gtk/gtktreemodel.c (gtk_tree_model_ref_node): change
12869         "::ref_iter" to "::ref_node".
12870         (gtk_tree_model_unref_node): change "::unref_iter" to
12871         "::unref_node". Fixes bug #50064.
12872
12873 Thu Mar  8 17:40:09 2001  Jonathan Blandford  <jrb@redhat.com>
12874
12875         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): add
12876         support for invisible cells.
12877          (gtk_tree_view_bin_expose): ditto
12878
12879 Thu Mar  8 16:36:00 2001  Jonathan Blandford  <jrb@redhat.com>
12880
12881         * gtk/gtktreemodel.c (gtk_tree_model_get_type): add prerequesite
12882         on gobjects.
12883
12884         * tests/testtreefocus.c (main): New test file.
12885
12886         * tests/testtreeview.c: update to latest glib changes.
12887
12888         * tests/testtreecolumns.c: update to latest glib changes.
12889
12890 Thu Mar  8 18:13:20 2001  Tim Janik  <timj@gtk.org>
12891
12892         * gtk/testgtk.c: re-enabled event watcher emission hooks.
12893
12894 Thu Mar  8 16:51:21 2001  Tim Janik  <timj@gtk.org>
12895
12896         * *.c: added accumulator data argument to g_signal_newc()
12897         functions.
12898
12899         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): 
12900         * gtk/gtktreeview.c (gtk_tree_view_setup_model): 
12901         * gtk/treestoretest.c (make_window):
12902         s/g_signal_connect/g_signal_connectc/.
12903
12904         * gtk/gtktextbuffer.c: completed signal arg fixups,
12905         they also needed G_SIGNAL_TYPE_STATIC_SCOPE flag.
12906
12907 Thu Mar  8 00:02:30 2001  Owen Taylor  <otaylor@redhat.com>
12908
12909         * gtk/gtkwidget.[ch] (gtk_widget_get_name): Make
12910         G_CONST_RETURN.
12911
12912         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add a 
12913         ::hierarchy-changed signal when a widget changes
12914         from anchored to unanchored or vice versa.
12915         (anchored means 
12916          gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW) != NULL.)
12917         Use a private flag to keep track of this efficiently.
12918
12919 2001-03-07  Havoc Pennington  <hp@redhat.com>
12920
12921         * gtk/testgtk.c (create_spins): uglify so that size request gets
12922         tested.
12923
12924         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Base size
12925         request on values for upper/lower, completes #6152
12926
12927 Wed Mar  7 20:07:22 2001  Owen Taylor  <otaylor@redhat.com>
12928
12929         * Makefile.am: Remove gtk-config-2.0 again.
12930         (Grrrr, pkg-config. And stops make loops.)
12931
12932 Thu Mar  8 00:18:29 2001  Tim Janik  <timj@gtk.org>
12933
12934         * gtk/gtksignal.[hc]: removed old emission hook API.
12935         
12936         * docs/Changes-2.0.txt: fixed sections.
12937         
12938         * gtk/gtktextbuffer.c: signal arg fixups.
12939
12940 2001-03-07  Havoc Pennington  <hp@redhat.com>
12941
12942         * gtk/gtktextview.c (invalidated_handler): use PRIORITY_VALIDATE
12943
12944         * gtk/gtktextview.h (GTK_TEXT_VIEW_PRIORITY_VALIDATE): add this
12945         here, bug #50368; changed to be GDK_PRIORITY_REDRAW + 5, instead
12946         of GDK_PRIORITY_REDRAW + 1, so you can insert stuff in between the
12947         validation and the redraw which is higher priority than the
12948         validation.
12949
12950 2001-03-07  Havoc Pennington  <hp@redhat.com>
12951
12952         * gtk/gtkentry.c (gtk_entry_get_property): remove trailer
12953         (gtk_entry_set_property): remove trailer
12954
12955         * gtk/gtkentry.c (gtk_entry_set_width_chars): 
12956         (gtk_entry_get_width_chars): new functions, to set size request to 
12957         a given number of characters
12958
12959         * gtk/testgtk.c (create_dialog): beef up the dialog test slightly
12960
12961         * gtk/gtkdialog.c (gtk_dialog_set_has_separator): new function
12962         (gtk_dialog_get_has_separator): new function
12963         (run_delete_handler): fix to not emit "response" signal
12964         because we already did in the delete event handler installed
12965         at dialog creation time.
12966         
12967         * gtk/gtkdialog.h: add a has_separator property,
12968         add GTK_DIALOG_NO_SEPARATOR flag
12969
12970 2001-03-07  Havoc Pennington  <hp@redhat.com>
12971
12972         * gtk/gtkwindow.c (gtk_window_set_decorated): new function, turns
12973         off decorations for a window.
12974
12975         * demos/gtk-demo/button_box.c (create_bbox): adapt to button box
12976         changes
12977
12978         * gtk/gtklabel.c (gtk_label_get_layout_offsets): new function 
12979         to get location of PangoLayout inside the label, closes #51198
12980
12981         * gtk/testgtk.c (create_bbox): fix up button box usage
12982
12983         * gtk/testcalendar.c (create_calendar): fix up button box usage
12984
12985         * gtk/gtkfilesel.c (gtk_file_selection_init): fixup buttonbox usage
12986
12987         * gtk/gtkdialog.c (gtk_dialog_init): fixup buttonbox usage
12988
12989         * gtk/gtkhbbox.h: deprecations
12990
12991         * gtk/gtkvbbox.h: deprecations
12992
12993         * gtk/gtkbox.c (gtk_box_get_spacing): new function, used to
12994         emulate deprecated gtk_button_box_get_spacing
12995
12996         * gtk/gtkbbox.h: deprecate some useless functions, remove entirely 
12997         the "set global default" functions
12998         (struct _GtkButtonBox): remove "spacing" field, use the one from 
12999         GtkBox base class
13000
13001         * gtk/gtkbbox.c (_gtk_button_box_child_requisition): rename with uscore
13002
13003         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): If we fail to
13004         render the icon, return the missing image icon.
13005
13006         * gtk/gtkimage.c (gtk_image_set_from_file): fall back to missing
13007         image icon if the load fails.   
13008
13009         * gtk/gtkstock.h (GTK_STOCK_MISSING_IMAGE): Add stock icon for use
13010         when no image is found; should be the Netscape "missing image"
13011         icon eventually but for now is a random image
13012
13013         * gtk/gtkwindow.c (gtk_window_set_role): new function, sets the 
13014         role for the session manager
13015
13016         * gtk/testgtk.c (dnd_drop): remove use of GTK_WINDOW_DIALOG
13017
13018         * gtk/gtkcompat.h (GTK_WINDOW_DIALOG): compat #define
13019         GTK_WINDOW_DIALOG GTK_WINDOW_TOPLEVEL
13020
13021         * gtk/gtkenums.h (enum GtkWindowType): remove GTK_WINDOW_DIALOG
13022
13023 Wed Mar  7 13:24:57 2001  Tim Janik  <timj@gtk.org>
13024
13025         * gtk/*.c: marshaller fixes.
13026         
13027         * gtk/gtkmarshal.list: extreme cleanup.
13028
13029         * gtk/gtktreeview.c (gtk_tree_view_class_init): disable interface
13030         param spec for now.
13031
13032         * gtk/gtktexttag.c (gtk_text_tag_set_property): use g_value_get_boxed()
13033         where appliable.
13034
13035         * gtk/gtktypeutils.[hc]: updates to GLib API changes.
13036         special cased autogenerated boxed types from gtktypebuiltins_ids.c
13037         which are not reference counted:
13038         GtkSelectionData, GdkEvent, GdkColor, GtkTextIter, PangoTabArray,
13039         PangoFontDescription, GtkTreeIter and GtkTreePath.
13040
13041 Thu Mar  1 03:58:56 2001  Tim Janik  <timj@gtk.org>
13042
13043         * gtk/gtktreeselection.h: 
13044         * gtk/gtktreemodel.c:
13045         * gtk/gtktreedatalist.[hc]: fixed includes. no gobject/*
13046         file should be included directly, and gobject/gmarshal.h
13047         as well as gtk/gtkmarshal.h even can't be included directly.
13048
13049         * Makefile.am: grr, install gtk-config-2.0.
13050
13051         * gtk/testgtk.c:
13052         * gtk/simple.c:
13053         * gtk/gtkmenu.c:
13054         * gtk/gtkitemfactory.c: use g_object_connect() instead of
13055         passing "*signal*::*" args to gtk_widget_set().
13056         
13057         * gtk/gtktypeutils.[hc]: got rid of GTK_TYPE_SIGNAL.
13058         
13059         * gtk/*.c: removed trailer arg from property setters and getters.
13060         macro fixups.
13061
13062 2001-03-07  Alexander Larsson  <alexl@redhat.com>
13063
13064         * gtk/gtklabel.c (set_markup): Removed warning
13065
13066 Tue Mar  6 19:59:12 2001  Jonathan Blandford  <jrb@redhat.com>
13067
13068         * gtk/gtkcellrenderer.h (struct _GtkCellRenderer): Add visible
13069         field to allow you to hide cell renderers.
13070
13071         * gtk/gtkcellrenderer.c: Add support for invisible cells.
13072
13073         * gtk/gtktreeview.c: Add support for invisible cells.
13074
13075 Tue Mar  6 17:25:07 2001  Jonathan Blandford  <jrb@redhat.com>
13076
13077         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_clicked):
13078         Add "clicked" signal back to columns.
13079
13080         * ChangeLog: remove conflict markers.
13081
13082 Tue Mar  6 10:45:45 2001  Owen Taylor  <otaylor@redhat.com>
13083
13084         * gtk/gtkbutton.c: Add animation of activation by, on 
13085         activate, pressing the button, and adding a timeout that 
13086         releases the button after 250ms or on key release and
13087         emits ::clicked. (#51501)
13088
13089         * gtk/gtkdialog.c: Bit of a hack - for buttons in the
13090         action area, we connect to ::clicked instead of ::activate
13091         so the dialog stays up through the animation.
13092
13093 Mon Mar  5 16:38:15 2001  Owen Taylor  <otaylor@redhat.com>
13094
13095         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): Only
13096         check the ignore_enter flag for the menu shell that
13097         the item is actually a child of, not for attached
13098         submenus. (#51536)
13099
13100 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
13101
13102         * gtk/gtkmain.c (gtk_propagate_event): Only do special
13103         special key-press grab handling for widgets within
13104         GtkWindows. Otherwise, fall through to normal case.
13105
13106         This prevents key events being sent twice to GtkInvisible
13107         widgets, which can cause all sorts of mischief.
13108
13109 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
13110
13111         * gtk/gtkmain.c (gtk_propagate_event): When a grab
13112         widget is in effect, give the grab widget a first
13113         crack at KEY_PRESS/RELEASE events. (#424)
13114
13115 2001-03-06  James Henstridge  <james@daa.com.au>
13116
13117         * gtk/gtkwidget.c (gtk_widget_class_init): set the class closure
13118         offset for the window_state_event to point at window_state_event
13119         rather than no_expose_event.
13120
13121 Mon Mar  5 19:10:15 2001  Jonathan Blandford  <jrb@redhat.com>
13122
13123         * gtk/gtkimmodule.h: fix busted /* comment */
13124
13125 Mon Mar  5 15:07:05 2001  Jonathan Blandford  <jrb@redhat.com>
13126
13127         * gtk/gtktreeview.c: Apply patch from John Margaglione to add
13128         object properties.
13129
13130 Mon Mar  5 14:55:19 2001  Jonathan Blandford  <jrb@redhat.com>
13131
13132         * gtk/gtkcellrenderertoggle.c: Apply patch from Lee Mallabone to
13133         add object properties.
13134
13135         * gtk/gtkcellrenderertextpixbuf.c: Apply patch from Lee Mallabone
13136         to add object properties.
13137
13138         * gtk/gtkcellrenderertext.c: Apply patch from Lee Mallabone to add
13139         object properties.
13140
13141         * gtk/gtkcellrendererpixbuf.c: Apply patch from Lee Mallabone to
13142         add object properties.
13143
13144         * gtk/gtkcellrenderer.c: Apply patch from Lee Mallabone to add
13145         object properties.
13146
13147 Mon Mar  5 14:38:54 2001  Jonathan Blandford  <jrb@redhat.com>
13148
13149         * gtk/gtktreemodel.c: renamed "child_toggled" to
13150         "has_child_toggled".
13151
13152         * gtk/gtktreeview.c: Handle removing columns better.  Updated to
13153         handle new signal name.
13154
13155         * gtk/gtktreestore.c: Updated to handle new signal name.
13156         * gtk/gtklisttore.c: Updated to handle new signal name.
13157         * gtk/gtktreemodelsort.c: Updated to handle new signal name.
13158
13159 2001-03-05  Alexander Larsson  <alexl@redhat.com>
13160
13161         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state):
13162         Set GDK_WINDOW_TYPE_HINT_MENU on tearoff window.
13163
13164 2001-03-05  Michael Natterer  <mitch@gimp.org>
13165
13166         * gtk/gtklabel.c: Made the "parent_class" pointer static. The
13167         pixbuf-engine coincidentially also failed to make one of it's
13168         parent_class pointers static, causing overwriting of GtkLabel's
13169         parent_class pointer in pixbuf_style_class_init().
13170         (Will commit the fix to the pixbuf-engine too).
13171
13172 2001-03-05  Alexander Larsson  <alexl@redhat.com>
13173
13174         * gdk/gdkwindow.h:
13175         Added GdkWindowTypeHint type. Added modal_hint field to GdkWindindow.
13176         New functions gdk_window_set_type_hint, gdk_window_set_modal_hint and
13177         gdk_window_set_icon_list for net wmspec functionality.
13178
13179         * gdk/x11/gdkwindow-x11.c:
13180         Set _NEW_WM_STATE_MODAL from window->modal_hint in set_inital_hints.
13181         Implement gdk_window_set_type_hint, gdk_window_set_modal_hint and
13182         gdk_window_set_icon_list.
13183         Added gdk_wmspec_change_state helper function and used it in the code.
13184         Set _NET_WM_ICON_NAME in gdk_window_set_title and gdk_window_set_icon_name.
13185
13186         * gtk/gtkdialog.c (gtk_dialog_init):
13187         Set GDK_WINDOW_TYPE_HINT_DIALOG.
13188
13189         * gtk/gtkhandlebox.c (gtk_handle_box_realize):
13190         Set GDK_WINDOW_TYPE_HINT_TOOLBAR.
13191
13192         * gtk/gtkwindow.c:
13193         new function gtk_window_set_type_hint.
13194         On realize, set type hint and modal hint.
13195
13196         * gtk/gtkwindow.h:
13197         Added type_hint field and gtk_window_set_type_hint.
13198
13199 2001-03-05  Alexander Larsson  <alexl@redhat.com>
13200
13201         * gtk/gtklabel.[ch]:
13202         Convert from GtkArg to GParam (originally based on patch from Lee Mallabone).
13203         New function gtk_label_get_accel_keyval () to get the underline accelerator
13204         of the label. Setting the label pattern overrides other attributes.
13205
13206 Mon Mar  5 14:51:10 MET 2001  Sven Neumann  <sven@gimp.org>
13207
13208         * gtk/gtkrc.c: fixed compiler warnings by inserting some consts.
13209         Added missing initializers to gtk_rc_style_init().
13210
13211 Sun Mar 04  07:30:03 2001 CET Mikael Hermansson <mikeh@bahnhof.se>
13212
13213         * gtk/gtktextview.c: fixed bug #51097 about setting 
13214         gtk_text_view_set_border_window_size() if the widget is 
13215         already realized.
13216
13217 Sat Mar  3 16:59:16 2001  Owen Taylor  <otaylor@redhat.com>
13218
13219         * gdk/gdkpango.h gdk/x11/gdkwindow-x11.c: Doc fixes
13220
13221         * gdk/win32/gdkinput.c (gdk_device_get_axis): Remove doc
13222         comment. Won't do to have duplicated doc comments between
13223         the platform subdirs.
13224
13225 Sat Mar  3 16:26:33 2001  Owen Taylor  <otaylor@redhat.com>
13226
13227         * gdk/x11/gdkmain-x11.c gdk/x11/gdkkeys-x11.c 
13228           gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.c:
13229
13230         Detectable auto-repeat - make a repeating key generate
13231         press/press/press/release instead of press/release pairs.
13232
13233         If we have Xkb and XkbSetDectableAutoRepeat supports
13234         that, we do it that way. Otherwise, when we get
13235         a release event, we check ahead with XPending to see
13236         if the next key is a KeyPress with the same keycode
13237         and timestamp. (Not 100% reliable, but pretty close.)
13238           
13239 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
13240         
13241         * gtk/gtkmain.c (gtk_propagate_event): Only do special
13242         special key-press grab handling for widgets within
13243         GtkWindows. Otherwise, fall through to normal case.
13244  
13245         This prevents key events being sent twice to GtkInvisible
13246         widgets, which can cause all sorts of mischief.
13247  
13248 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
13249  
13250         * gtk/gtkmain.c (gtk_propagate_event): When a grab
13251         widget is in effect, give the grab widget a first
13252         crack at KEY_PRESS/RELEASE events. (#424)
13253  
13254 Sat Mar  3 15:39:49 2001  Owen Taylor  <otaylor@redhat.com>
13255
13256         * gtk/gtkentry.c (gtk_entry_button_press): Add shift-clicking
13257         to extend the selection. (Roughly based on patch
13258         from Jay Cox, #50939)
13259
13260         * gtk/gtkentry.c (gtk_entry_button_press): Fix triple-clicking
13261         to properly handle previous GDK_BUTTON_PRESS. 
13262         (Patch from Jay Cox, #50938)
13263
13264         * gtk/gtkentry.c (gtk_entry_real_delete_text): Move the
13265         '\0' back along with the deleted text. (#51148)
13266
13267 Mon Jan 22 14:31:29 2001  Owen Taylor  <otaylor@redhat.com>
13268
13269         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Unshift
13270         the group when extracting it from the X keyboard event.
13271
13272         * modules/input/Makefile.am modules/input/imipa.c: 
13273         Simple module for entering IPA. (Do we need a 
13274         gtk-stupid-input-tricks CVS module?)
13275
13276 Sat Mar  3 13:32:47 2001  Owen Taylor  <otaylor@redhat.com>
13277
13278         * gtk/gtkimmodule.c (gtk_im_module_init): Remove spurious
13279         const.
13280
13281         * gdk-pixbuf-2.0.pc.in gtk+-2.0.pc.in: Fix include path.
13282
13283         * gtk/gtkdialog.c (gtk_dialog_set_default_response): If there
13284         is no focus widget for the dialog currently, grab the focus as well
13285         as the default.
13286
13287         * gtk/gtkdialog.c (gtk_dialog_set_default_response): Get
13288         the action area's children to iterate through, not the
13289         dialog's children.
13290
13291 Sat Mar  3 13:21:27 2001  Owen Taylor  <otaylor@redhat.com>
13292
13293         * tests/Makefile.am tests/testsocket.c tests/testsocket_child.c:
13294         Add plug-socket tests. (Won't work worth a darn until I commit
13295         the rest of the plug-socket changes, but no reason these
13296         can't go into CVS now.)
13297
13298 2001-03-02  Havoc Pennington  <hp@redhat.com>
13299
13300         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_flush): use
13301         _gdk_region_get_xrectangles()
13302
13303         * gdk/x11/gdkmain-x11.c (_gdk_region_get_xrectangles): new function
13304
13305         * gtk/testgtk.c (create_shapes): add test for shape_combine_region
13306
13307         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_region): new
13308         function, contributed by Ron Steinke    
13309
13310         * gdk/x11/gdkevents-x11.c (gdk_wmspec_supported): rename
13311         gdk_net_wm_supports
13312
13313         * gdk/gdkregion-generic.c (gdk_region_get_rectangles): 
13314         New function, contributed by Ron Steinke
13315
13316         * gtk/gtkentry.c (gtk_entry_get_layout_offsets): New function, 
13317         used to line up the text in the entry when using the entry for
13318         editable sheet cell hacks
13319
13320         * gtk/testgtk.c (create_entry): test the activate_default setting
13321         on GtkEntry
13322
13323         * gtk/gtkentry.c (gtk_entry_set_activates_default): New function to 
13324         cause the entry to activate the default button for a dialog when 
13325         activated
13326         (gtk_entry_get_activates_default): new function
13327
13328 Wed Feb 28 19:10:43 2001  Owen Taylor  <otaylor@redhat.com>
13329
13330         * gtk/gtkclist.c (real_remove_row): Patch from ChiDeok
13331         Hwang to move call to sync_selection() up a few lines
13332         to before the row list is modified, to fix crash when
13333         removing rows in the undo_selection list.
13334
13335         (Test case provided by Daniel Elstner:
13336
13337         http://mail.gnome.org/archives/gtk-list/2001-February/msg00359.html)
13338
13339 Fri Feb 23 15:06:48 2001  Owen Taylor  <otaylor@redhat.com>
13340
13341         * gtk/gtktree.c (gtk_tree_class_init): Do the setting
13342         of tree->root_tree in parent_set rather than _map(), 
13343         fixing #50892 in a bit better manner.
13344
13345 Thu Feb 22 17:07:58 2001  Owen Taylor  <otaylor@redhat.com>
13346
13347         * gtk/gtkmenu.c (gtk_menu_popup): Don't flip cursor. (#50934)
13348
13349 Tue Feb  2 11:22:33 2001  Jody Goldberg <jgoldberg@home.com>
13350
13351         * gtk/gtkstyle.c : Remove duplicate fwd decl for
13352         gtk_default_draw_shadow.
13353
13354 ue Feb 20 11:40:58 2001  Owen Taylor  <otaylor@redhat.com>
13355
13356         * gdk/gdkimage.c (gdk_image_new): Remove excess 
13357         warning, make warnings more verbose, treat a error
13358         in shmat as permanent, and don't try again.
13359         (#51163, Ed Randall.)
13360
13361 Mon Feb 19 20:15:28 2001  Owen Taylor  <otaylor@redhat.com>
13362
13363         * gtk/gtkrange.c (gtk_range_timer_1st_time): Add an initial
13364         delay for the first click before starting to scroll.
13365         (based on #51026, gtk-enf-990512-0.patch, Eric Fisher)
13366
13367         * gtk/gtktext.c: GtkText should have I-beam cursor. 
13368         (based on gtk-enf-990513-1.patch, Eric Fisher.)
13369
13370 Mon Feb 19 16:42:19 2001  Owen Taylor  <otaylor@redhat.com>
13371
13372         * gtk/gtklayout.c (gtk_layout_allocate_child): Tiny
13373         cleanup to remove some references to unused
13374         ->xoffset, ->yoffset.
13375
13376 Mon Feb 19 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>
13377
13378         * gdk/gdkrgb.c (gdk_rgb_convert_555_br): Fix incorrect
13379         mask. (#51039, fix from Martin Maierhofer)
13380
13381 Fri Feb 16 20:09:42 2001  Owen Taylor  <otaylor@redhat.com>
13382
13383         * gtk/gtkctree.c (gtk_ctree_class_init): Add bindings
13384         for unshifted + and shifted = for non-us keyboards.
13385         Make <Control>+ and <Control>- work as well as 
13386         <Control>KP_Plus, <Control>KP_Minus for recursive
13387         open/close.  (#2682, René Seindal)
13388
13389 Fri Feb 16 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
13390
13391         * gtk/gtkmenushell.c (gtk_real_menu_shell_cancel): Unset
13392         the active menu item before deactivating the menu,
13393         so gtk_menu_popdown doesn't change the history. (#50964)
13394         
13395 Fri Feb 16 15:55:22 2001  Owen Taylor  <otaylor@redhat.com>
13396
13397         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): 
13398         draw lines with text_gc rather than black_gc.
13399         (Patch from Vlad Harchev <hvv hippo ru>, #50926)
13400
13401 Thu Mar  1 19:50:56 2001  Jonathan Blandford  <jrb@redhat.com>
13402
13403         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
13404         Move handling of buttons fully in gtktreeviewcolumn.  This code is
13405         less interrelated then it was, but it still requires the
13406         GtkTreeView to map it.
13407
13408         * test/testtreecolumn.c: Now I can add a column to one view,
13409         remove it, add it to the another view, remove it, then re-add it
13410         to the first.  Nifty.
13411
13412 Thu Mar  1 13:14:27 GMT 2001  Tony Gale <gale@gtk.org>
13413
13414         * docs/tutorial/gtk-tut.sgml: Minor corrections
13415
13416 Wed Feb 28 16:36:46 2001  Jonathan Blandford  <jrb@redhat.com>
13417
13418         * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize
13419         GtkRowReference.
13420
13421 2001-02-28  Havoc Pennington  <hp@redhat.com>
13422
13423         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove draw_focus and
13424         draw_default
13425         (gtk_widget_draw_focus): remove this function; we could instead
13426         make it just gtk_widget_draw(), but in most cases I think the
13427         result would be broken user code, so think it's better to have
13428         that code not compile and get fixed
13429         (gtk_widget_draw_default): ditto
13430
13431         * gtk/gtkwidget.c: Add default handlers for focus_in_event and
13432         focus_out_event that set/unset GTK_HAS_FOCUS and call queue_draw
13433         
13434         * gtk/gtkwindow.c (gtk_window_set_default): just queue a draw when
13435         widgets lose/get the default, instead of calling draw_default
13436         
13437         * docs/Changes-2.0.txt: note about all this
13438
13439         Then fixed every widget in GTK, I won't list all the filenames.
13440
13441 Tue Feb 27 19:32:53 2001  Jonathan Blandford  <jrb@redhat.com>
13442
13443         * gtk/gtktreemodel.c (deleted_callback): Proxy out to
13444         _gtk_tree_row_reference_deleted.
13445         (inserted_callback): Proxy out to
13446         _gtk_tree_row_reference_inserted.
13447         (_gtk_tree_row_reference_new_from_view): Somewhat yukky hack to
13448         get around signal emission ordering problem.
13449
13450         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
13451         fix to work with SINGLE 
13452         (_gtk_tree_selection_internal_select_node): Major sanitization on
13453         selections.  SINGLE now seems to work.
13454
13455         * tests/Makefile.am: add testtreecolumn.c:
13456
13457         * tests/testtreecolumn.c: New test.  Mostly points out selection
13458         bugs currently, but will test columns later.
13459
13460         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Fix really nasty
13461         selection bug.  I hate touching this code -- it's scary.
13462
13463 2001-02-26  Havoc Pennington  <hp@redhat.com>
13464
13465         * gtk/testgtk.c: test the window state stuff
13466
13467         * gtk/gtkwindow.c (gtk_window_present): new function, makes a
13468         window come to the user's attention as if it were just created
13469         (gtk_window_iconify): new function
13470         (gtk_window_deiconify): new function
13471         (gtk_window_stick): new function
13472         (gtk_window_unstick): new function
13473         (gtk_window_maximize): new function
13474         (gtk_window_unmaximize): new function
13475
13476         * gtk/gtkwidget.h, gtk/gtkwidget.c: add window_state_event signal
13477
13478         * gtk/gtkmain.c (gtk_main_do_event): handle GDK_WINDOW_STATE
13479
13480         * gdk/x11/gdkevents-x11.c: create window state events when
13481         appropriate
13482         (gdk_wmspec_supported): new function
13483
13484         * gdk/x11/gdkwindow-x11.c (gdk_window_iconify): handle
13485         iconification before showing the window
13486         (gdk_window_deiconify): new function
13487         (gdk_window_stick): new function
13488         (gdk_window_unstick): new function
13489         (gdk_window_maximize): new function
13490         (gdk_window_unmaximize): new function
13491
13492         * gdk/gdkwindow.c: store the window state in the window; 
13493         change to using the GDK_WINDOW_STATE_WITHDRAWN flag instead of
13494         window->mapped.
13495         (gdk_window_get_state): return the current window state
13496
13497         * gdk/gdkevents.c (gdk_event_get_time): handle GDK_WINDOW_STATE
13498         (gdk_event_get_state): handle GDK_WINDOW_STATE
13499         (gdk_synthesize_window_state): function to create the window state
13500         events
13501
13502         * gdk/gdkevents.h (struct _GdkEventWindowState): new type of
13503         event, for changes to "window state" such as maximized, sticky, 
13504         etc.
13505         
13506         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): new function,
13507         focuses a window
13508
13509         * gdk/x11/gdkmain-x11.c (_gdk_wmspec_supported): new function, 
13510         finds out if we support a given WM spec hint
13511
13512 Tue Feb 27 13:37:38 GMT 2001  Tony Gale <gale@gtk.org>
13513
13514         * docs/faq/gtk-faq.sgml: New question re memory leaks.
13515
13516 2001-02-25  Hans Breuer  <hans@breuer.org>
13517
13518         * gdk/gdk.h : changed #ifdef GDK_DISBALE_DEPRECARED to #ifndef
13519         cause we want to loose those prototypes only in the latter case
13520
13521         * gdk/win32/gdkevents-win32.c : can't cast from GdkPixmap to
13522         GdkPixmapImplWin32 because it itsn't derived from it. Use the
13523         impl member variable instead
13524
13525         * gtk/gtk.def : updated
13526
13527         * gtk/gtklist.c : 
13528         * gtk/gtkmenus.c : include <string.h> for memset ()
13529
13530         * gtk/makefile.msc.in : updated and don't define GTK_COMPILATION
13531         for everthing built here, but for gtk-x.x.dll only. This solves
13532         problem of indifferent gtk type definitions
13533
13534 Sat Feb 24 20:11:39 2001  Jonathan Blandford  <jrb@redhat.com>
13535
13536         * gtk/gtkclipboard.h: actually put /* */ around #endif comment.
13537
13538 Fri Feb 23 17:50:13 2001  Jonathan Blandford  <jrb@redhat.com>
13539
13540         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Only draw the
13541         column that is exposed.
13542
13543         (_gtk_tree_view_update_size): Changed name from set_size, and
13544         changed function to do more work, and not force people calling it
13545         to figure out the size.  Simplifies a lot of code elsewhere.
13546
13547 2001-02-23  Alexander Larsson  <alexl@redhat.com>
13548
13549         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf):
13550         return solid masks for xpms that have no transparent color.
13551         This makes the ..._create_from_xpm... API backwards
13552         compatible.
13553
13554 2001-02-23  Tor Lillqvist  <tml@iki.fi>
13555
13556         * README.win32: Update. Mention the gtk-1-3-win32-production
13557         branch.
13558
13559         * gdk/win32/bdfcursor.c: New file. A program that generates
13560         xcursors.h. Thanks to Stefan Ondrejicka.
13561
13562         * gdk/win32/xcursors.h: New file, contains the X cursor font in a
13563         compact format.
13564
13565         * gdk/win32/Makefile.am (EXTRA_DIST): Add new files.
13566
13567         * gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): New
13568         function, uses xcursors.h.
13569         (gdk_cursor_new): Use _gdk_win32_data_to_wcursor to generate
13570         cursor from inline data instead of using LoadCursor() to generate
13571         it from a resource.
13572
13573         * gdk/win32/gdkevents-win32.c (gdk_event_translate): At button up
13574         event, must check the Windows message for mouse button state, as
13575         the GDK event state might not have been built if it is
13576         undelivered. Remove one goto.
13577
13578         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Call
13579         SetCursor() if the current cursor as returned by GetCursor() is
13580         the window's previous cursor. The ChildWindowFromPoint() test
13581         apparently didn't work correctly.
13582
13583         * gdk/win32/rc/*.cur: Remove.
13584
13585         * gdk/win32/rc/gdk.rc.in: Remove cursors.
13586
13587         * gdk/win32/rc/Makefile.am (EXTRA_DIST): Remove from here, too.
13588
13589         * gtk/makefile.{mingw,msc}.in: Updates.
13590
13591 Wed Feb 21 20:56:50 2001  Jonathan Blandford  <jrb@redhat.com>
13592
13593         * gtk/gtktreemodel.h: add functions for signal emission.
13594
13595         * gtk/gtktreestore.c: move to use above functions instead of
13596         g_signal_emit.
13597
13598         * gtk/gtkliststore.c: ditto
13599
13600 Wed Feb 21 15:41:34 2001  Jonathan Blandford  <jrb@redhat.com>
13601
13602         * gtk/gtktreestore.c: removed signals.  Moved to inherit from
13603         GObject instead of GtkObject.
13604
13605         * gtk/gtkliststore.c: ditto.
13606
13607         * gtk/gtktreemodelsort.c: ditto.
13608
13609         * gtk/gtktreemodel.c (gtk_tree_model_base_init): moved signals to
13610         GtkTreeModelIface, instead of in each model.
13611
13612 2001-02-21  Havoc Pennington  <hp@redhat.com>
13613
13614         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_child_anchor):
13615         unbreak this function
13616
13617         * gtk/gtkentry.c: apply patch from Lee Mallabone to add object 
13618         properties
13619
13620         * gtk/gtkcurve.c: apply patch from Lee Mallabone to add object
13621         properties
13622
13623         * gtk/gtkcombo.c: apply patch from Lee Mallabone to add object 
13624         properties
13625
13626         * gtk/gtkentry.c (gtk_entry_set_max_length): have this take -1 to
13627         mean unset the max length
13628
13629 Wed Feb 21 14:23:05 2001  Jonathan Blandford  <jrb@redhat.com>
13630
13631         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data_func):
13632         Changed name to be set_cell_data_func to make it clear what
13633         the functino does.  Close bug #51069.
13634
13635 Tue Feb 20 16:49:00 2001  Jonathan Blandford  <jrb@redhat.com>
13636
13637         * gtk/testgtk.c (main): Remove turning on of profiling malloc,
13638         have memory actually freed.  Keeps box running longer.
13639
13640 2001-02-21  Alexander Larsson  <alexl@redhat.com>
13641         
13642         * gtk/gtkseparatormenuitem.[ch]:
13643         Added new menu separator item. The drawing and size handling
13644         is still done in GtkMenuItem, but the API is a bit more sane.
13645         
13646         * gtk/Makefile.am:
13647         Add gtkseparatormenuitem.[ch].
13648
13649         * gtk/gtk.h:
13650         Add gtkseparatormenuitem.h.
13651         
13652         * gtk/gtkentry.c:
13653         * gtk/gtkmenufactory.c:
13654         * gtk/gtktextview.c:
13655         Use the new API for menu separators.
13656         
13657         * demos/gtk-demo/menus.c (create_menu):
13658         Add some GtkSeparatorMenuItem demo code.
13659
13660 2001-02-20  Havoc Pennington  <hp@redhat.com>
13661
13662         * gtk/gtkaspectframe.c: Convert to new property API, patch from 
13663         Lee Mallabone
13664
13665         * gtk/gtkarrow.c: Convert to new property API, patch from 
13666         Lee Mallabone
13667
13668 Tue Feb 20 14:26:41 2001  Jonathan Blandford  <jrb@redhat.com>
13669
13670         * tests/testtreeview.c (toggled_callback): fix to reflect change
13671         in GtkTreeModelStore.
13672
13673 Tue Feb 20 12:16:12 2001  Jonathan Blandford  <jrb@redhat.com>
13674
13675         * gtk/gtkiconfactory.c (gtk_icon_set_new_from_pixbuf): New
13676         function to create an icon set from a pixbuf.
13677
13678 2001-02-20  Alexander Larsson  <alexl@redhat.com>
13679
13680         * gtk/gtkcellrenderertext.[ch]:
13681         Add a "markup" property.
13682
13683         * gtk/treestoretest.c:
13684         Use the markup property, remove some leftover stuff from
13685         GtkTreeModelMapping.
13686
13687 2001-02-20  Alexander Larsson  <alexl@redhat.com>
13688
13689         * gtk/gtklabel.c (gtk_label_set_selectable):
13690         Queue a redraw if the selectable setting was changed.
13691
13692 2001-02-20  Alexander Larsson  <alexl@redhat.com>
13693
13694         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
13695         Actually copy the whole gc, not just the public parts.
13696         
13697         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
13698         GDK_WINDOW_TEMP are not toplevel. Fixes selectable
13699         labels.
13700
13701 2001-02-19  Havoc Pennington  <hp@pobox.com>
13702
13703         * gdk/gdkwindow.c: docs
13704
13705         * gdk/gdkrgb.c: docs
13706
13707         * gdk/gdkregion-generic.c: docs
13708
13709         * gdk/gdkgc.c (gdk_gc_set_values): docs
13710
13711         * gdk/gdkdraw.c: docs
13712
13713         * gdk/gdkdrawable.h: deprecate drawable get/set data
13714
13715 Mon Feb 19 20:37:35 2001  Jonathan Blandford  <jrb@redhat.com>
13716
13717         * demos/gtk-demo/dialog.c: Add simple new demo.
13718
13719 2001-02-19  Havoc Pennington  <hp@redhat.com>
13720
13721         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): add
13722         insert_child_anchor signal, bug #50245
13723
13724         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): change
13725         from create_child_anchor, so the anchor is passed in
13726
13727         * gtk/gtktextchild.c (gtk_text_child_anchor_new): new function
13728         (_gtk_widget_segment_new): have the child anchor object passed in, 
13729         instead of creating it.
13730
13731         * gtk/gtktextbuffer.c (gtk_text_buffer_modified): rename
13732         to gtk_text_buffer_get_modified
13733
13734 2001-02-19  Havoc Pennington  <hp@redhat.com>
13735
13736         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): hmm, someone
13737         changed GLib without fixing GTK
13738
13739         * gtk/gtkrange.h: Rename all the stupid implementation detail 
13740         functions to have an underscore in front. Most of them should 
13741         probably just go away, but for starters don't export them.
13742         Bug #50482
13743
13744 2001-02-19  Havoc Pennington  <hp@redhat.com>
13745
13746         * gdk/gdkcolor.h: test was backward, so deprecated functions were
13747         excluded by default
13748
13749         * gtk/gtkstyle.c (gtk_default_draw_diamond): draw etched in/out,
13750         clean up the old code a bit
13751
13752         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): draw
13753         inconsistent state
13754
13755         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator):
13756         draw inconsistent state
13757
13758         * gtk/testgtk.c (create_toggle_buttons): add test for inconsistent
13759         (create_menu): add inconsistent test
13760
13761         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_set_inconsistent):
13762         new function
13763         (gtk_check_menu_item_get_inconsistent): new function
13764         (gtk_real_check_menu_item_draw_indicator): draw the inconsistent
13765         state (using etched in for now)
13766
13767         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator):
13768         draw inconsistent state
13769
13770         * gtk/gtktogglebutton.c (gtk_toggle_button_set_inconsistent): new
13771         function, used when the user has selected a range of stuff in
13772         different states
13773         (gtk_toggle_button_get_inconsistent): accessor for that
13774         (gtk_toggle_button_paint): draw inconsistent state (etched in?
13775         don't know what else to do)
13776
13777 2001-02-19  Hans Breuer <hans@breuer.org>
13778
13779         * gtk/gtk.def : updated exported symbols
13780
13781         * gtk/makefile.msc.in : updated
13782
13783         * gtk/gtkstyle.c (gtk_style_realize) : gets called without
13784         a colormap, when invoked from testgtk::entry. I'm not sure where
13785         the bug is, but g_return_if_fail (GDK_IS_COLORMAP (colormap));
13786         avoids immediate crashing ...
13787
13788         * gtk/gtkmain.c (check_setugid) : totally disabled on win32;
13789         any objections ?
13790
13791         * gtk/gtktreemodel.c : called G_VALUE_LCOPY with an extra
13792         0 parameter. At least msvc doesn't like macros with var args. 
13793         I simply removed the extra 0, was it a feature or a typo ?
13794
13795         * gtk/gtktreeviewcolumn.[hc] (gtk_tree_view_column_set_func) :
13796         removed the extra indirection from the GtkTreeViewColumnFunc parameter,
13797         because the value assignment to the internal struct wasn't working.
13798         I'm not absolutely sure. The problem could have been resolved by
13799         changing the "func" declartion in the struct, but was the pointer
13800         to the function pointer intended ?
13801
13802         * gtk+/gtk/gtktreedatalist.c : include gboxed.h
13803
13804         * gdk/gdk.def : updated exported symbols
13805
13806         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_image) :
13807         only use SetDIBitsToDevice if there is a palette at the drawable
13808         and the image is GDK_VISUAL_PSEUDO_COLOR
13809
13810         * gdk/win32/gdkkeys-win32.c : msvc still has no <unistd.h> ...
13811
13812         * gdk/win32/gdkwindow-win32.c : #include "gdk.h" /* gdk_rectangle_intersect */
13813
13814         * gdk/*/makefile.msc : updated
13815
13816 2001-02-19  Havoc Pennington  <hp@redhat.com>
13817
13818         * demos/gtk-demo/Makefile.am (INCLUDES): GDK_DISABLE_COMPAT_H,
13819         GDK_DISABLE_DEPRECATED (we need to merge those two #defines)
13820
13821         * gdk/x11/gdkmain-x11.c (gdk_key_repeat_disable): nuke
13822         (gdk_key_repeat_restore): nuke
13823
13824         * gdk/gdk.c (gdk_exit_func): #if 0 this for now, don't install it
13825         (gdk_init_check): no atexit func
13826
13827         * gdk/gdkrgb.h: mark some stuff deprecated
13828
13829         * gdk/gdkcolor.h: mark some stuff deprecated
13830         
13831         * gdk/gdk.h: deprecated gdk_exit, gdk_input_*
13832
13833         * gdk/gdkfont.h: bracket in GDK_DISABLE_DEPRECATED
13834
13835 2001-02-16  Havoc Pennington  <hp@redhat.com>
13836
13837         * gtk/gtkvscrollbar.c (gtk_vscrollbar_trough_keys): use the visual
13838         scroll steps.
13839
13840         * gtk/gtkvscale.c (gtk_vscale_trough_keys): use the visual scroll
13841         steps, and add Ctrl-arrow shortcuts for paging visually as with
13842         HScale, since Page Up and Page Down move logically.
13843
13844         * gtk/gtkenums.h (GtkScrollType): add GTK_SCROLL_STEP_UP,
13845         GTK_SCROLL_STEP_DOWN, etc. for visual scroll directions
13846         
13847         * gtk/gtkrange.c (gtk_range_key_press): handle the visual scroll
13848         steps
13849         (gtk_range_scroll): handle the visual steps
13850
13851         * gtk/gtklist.c (gtk_list_scroll_horizontal): handle the up/down
13852         scroll steps
13853
13854         * gtk/gtkhscale.c (gtk_hscale_trough_keys): use the visual scroll
13855         steps, not the logical ones.
13856
13857         * gtk/gtkclist.c (move_focus_row): handle the up/down scroll steps
13858         (scroll_vertical): handle up/down steps
13859
13860 2001-02-19 Alexander Larsson  <alexl@redhat.com>
13861
13862         * gdk/linux-fb/gdkimage-fb.c (gdk_image_new_bitmap):
13863         Copy data and free data with free().
13864
13865         * gdk-pixbuf/gdk-pixbuf.c:
13866         * gdk-pixbuf/io-jpeg.c:
13867         * gdk-pixbuf/io-png.c:
13868         Use g_try_malloc/g_free instead malloc/free.
13869         
13870         * gdk-pixbuf/test-gdk-pixbuf.c:
13871         Must... initialize... gobject...
13872         
13873         * gdk-pixbuf/pixops/timescale.c:
13874         * gtk/gtkcalendar.c:
13875         Use g_malloc instead of malloc.
13876         
13877 2001-02-19 Alexander Larsson  <alla@lysator.liu.se>
13878
13879         * gtk/testgtkrc:
13880         Comment out property assignments, these don't work yet.
13881
13882 2001-02-17  Havoc Pennington  <hp@pobox.com>
13883
13884         * gtk/gtkalignment.c (gtk_alignment_class_init): clean this up a
13885         bit.
13886
13887 2001-02-17  Havoc Pennington  <hp@pobox.com>
13888
13889         * gtk/gtklabel.c (gtk_label_ensure_layout): fix screwup with
13890         shadowed variables that had broken size request in some cases,
13891         leading to bogus tooltips (#50996)
13892
13893 2001-02-06  Jon K Hellan  <hellan@acm.org>
13894
13895         Implement fast browsing of tooltips, bug #50619
13896         
13897         * gtk/gtktooltips.h (struct _GtkTooltips): Add use_sticky_delay
13898         and last_popdown
13899         
13900         * gtk/gtktooltips.c (gtk_tooltips_init): Initialize sticky_delay,
13901         use_sticky_delay and last_popdown.
13902         (gtk_tooltips_draw_tips, gtk_tooltips_set_active_widget): Record
13903         time of popdown.
13904         (gtk_tooltips_set_active_widget): Unset sticky behaviour if widget
13905         is NULL.
13906         (gtk_tooltips_recently_shown): New static function.  Return true
13907         if < sticky_delay has elapsed since last popdown.
13908         (gtk_tooltips_event_handler): Display window after sticky_delay
13909         (presumably < normal delay) if < STICKY_REVERT_DELAY has elapsed
13910         since last popdown.
13911         
13912 2001-02-17  Havoc Pennington  <hp@pobox.com>
13913
13914         * gtk/gtktypeutils.h (GtkSignalFunc): change it to take (void)
13915         instead of (). #6394
13916
13917         * gtk/gtkprogressbar.c (gtk_progress_bar_get_text): Add
13918         G_CONST_RETURN, make it return by reference, #50473
13919         
13920 Sat Feb 17 06:47:27 2001  Tim Janik  <timj@gtk.org>
13921
13922         * gtk/gtkmenu.c (gtk_menu_motion_notify): default initialize the
13923         generated ENTER_NOTIFY event with 0, otherwise not explicitely
13924         setup fields contain garbage (e.g. subwindow, breaking
13925         gdk_drawable_ref() upon event copy).
13926         (gtk_menu_stop_navigating_submenu_cb): same here.
13927
13928         * gtk/gtklist.c (gtk_list_vertical_timeout): 
13929         * gtk/gtklist.c (gtk_list_horizontal_timeout): 
13930         * gtk/gtkclist.c (vertical_timeout): 
13931         * gtk/gtkclist.c (horizontal_timeout): change direct assignment
13932         default-zero-intialization for unions to memset(,0,), as unions are
13933         not fully default-zero-initialized by compilers (GdkEvent x = { 0, };
13934         has to become GdkEvent x; memset (&x, 0, sizeof (x)); )
13935
13936         * gtk/gtktreeview.c (gtk_tree_view_set_rows_drag_source): scratch
13937         g_closure_sink() warning.
13938
13939         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): 
13940         * gtk/gtktreestore.c (gtk_tree_store_set_valist): 
13941         * gtk/gtkliststore.c (gtk_list_store_set_valist): 
13942         fix G_VALUE_COLLECT() and G_VALUE_LCOPY() calls.
13943         
13944 Fri Feb 16 17:49:59 2001  Jonathan Blandford  <jrb@redhat.com>
13945
13946         * gtk/gtktreestore.[hc], gtk/gtkliststore.[ch]: removed
13947         gtk_*_store_get, and moved to GtkTreeModel.
13948
13949         * gtk/gtktreemodel.h (gtk_tree_model_set{v,}): Added
13950
13951         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): added.
13952
13953         * gtk/Makefile.am: remove gtktreemodelmapping.[ch]
13954
13955         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_func): let you
13956         set the func.
13957
13958         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
13959         freeze/thaw notify between setting all the properties for a cell.
13960
13961         * gtk/gtk.h: remove gtktreemodelsimple.h, and gtktreemodelmapping.h
13962
13963 2001-02-15  Havoc Pennington  <hp@redhat.com>
13964
13965         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): convert
13966         the X coordinates so they're with respect to the line, rather than 
13967         with respect to the layout.
13968
13969         * gtk/gtkalignment.c: Convert to new property API, patch from Lee
13970         Mallabone
13971
13972         * gtk/testgtk.c (create_range_controls): add vscale tests, 
13973         and inverted test
13974
13975         * gtk/gtkrange.c (gtk_range_set_inverted): new function to fix 
13976         #50806
13977
13978         * gtk/gtkentry.c (gtk_entry_get_text): add G_CONST_RETURN
13979
13980         * gtk/gtktextiter.h (gtk_text_iter_is_last): rename 
13981         gtk_text_iter_is_end
13982
13983         * gtk/gtktextbuffer.h (gtk_text_buffer_get_last_iter):
13984         rename gtk_text_buffer_get_end_iter
13985
13986         * gtk/testgtk.c (create_labels): Add test for selectable
13987
13988         * gtk/gtkentry.c (gtk_entry_draw_text): Use new GDK API to draw
13989         the selection stuff. This code is kind of broken since it doesn't 
13990         use the theme engine.
13991
13992         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
13993         fix infinite loop and y offset problem
13994         (gdk_draw_layout_line_with_colors): fix foreground color handling
13995
13996         * gtk/gtklabel.h, gtk/gtklabel.c: Implement a "selectable" flag 
13997         that makes the label selectable.
13998         
13999         * gtk/gtklabel.c (gtk_label_style_set): recreate the label's
14000         layout when the style is set, since fonts etc. could have changed.      
14001
14002 Fri Feb 16 14:22:05 2001  Jonathan Blandford  <jrb@redhat.com>
14003
14004         * gtk/Makefile.am: Removed gtktreemodelsimple.[ch]
14005
14006         * gtk/gtktreemodelsimple.[ch]: removed.
14007
14008 2001-02-16  Alexander Larsson  <alexl@redhat.com>
14009
14010         * gtk/gtktreemodelmapping.[ch]:
14011         New files. Implement GtkTreeModelMapping.
14012         
14013         * gtk/Makefile.am:
14014         Add gtktreemodelmapping.[ch].
14015         
14016         * gtk/gtk.h:
14017         Add gtktreemodelmapping.h
14018
14019         * gtk/treestoretest.c:
14020         Test the GtkTreeModelMapping
14021
14022 Tue Feb 13 13:16:09 2001  Jonathan Blandford  <jrb@redhat.com>
14023
14024         * demos/gtk-demo/panes.c (create_pane_options): If we're going to
14025         have a demo, we might as well pass in real values.  Thanks to
14026         clahey for pointing this out.
14027
14028 2001-02-14  Havoc Pennington  <hp@pobox.com>
14029
14030         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_remove): add
14031         "static" to a private function
14032         (gtk_image_menu_item_class_init): remove destroy handler,
14033         add "image" object property
14034
14035 2001-02-13  Alexander Larsson  <alla@lysator.liu.se>
14036
14037         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region):
14038         Add a shortcut if the window and the current clip_region doesn't
14039         overlap. This is needed when there are a lot of windows in a
14040         window. The layout test in testgtk is a good test.
14041
14042         * gdk/linux-fb/gdkwindow-fb.c:
14043         Whitespace fix.
14044
14045 2001-02-13  Sven Neumann  <sven@convergence.de>
14046
14047         * demos/testanimation.c: replaced deprecated gtk_drawing_area_size
14048
14049 2001-02-13  Alexander Larsson  <alexl@redhat.com>
14050
14051         * gdk/linux-fb/gdkcursor-fb.c (gdk_fb_cursor_unhide):
14052         Don't reference last_cursor if it is null. Fixes crash when rotating
14053         the screen before having moved the mouse.
14054
14055         * gdk/linux-fb/gdkcc-fb.c: Zapp!
14056
14057         * gdk/linux-fb/Makefile.am: Don't compile gdkcc-fb.c
14058
14059         * gdk/linux-fb/gdkwindow-fb.c: Fix typo. width->height. Fixes redraw 
14060         when using 90 or 270 degrees rotation.
14061
14062 2001-02-12  Havoc Pennington  <hp@pobox.com>
14063
14064         * gdk/gdkpango.c (gdk_pango_get_gc): fix bug where 
14065         it always set the foreground, even if we were only using
14066         a stipple.
14067         (gdk_draw_layout_line_with_colors): new function, allow
14068         override colors
14069         (gdk_draw_layout_with_colors): new function, allow override
14070         colors
14071         (gdk_pango_layout_line_get_clip_region): function to get the clip
14072         region for a logical text range
14073         (gdk_pango_layout_get_clip_region): get the clip region for a
14074         logical text range
14075
14076         * gdk/x11/gdkcolor-x11.c: forward declare gdk_colormap_sync(),
14077         (gdk_colormap_new): fix call to gdk_colormap_sync() so it has 
14078         the right number of arguments.
14079
14080         * gtk/gtktextbtree.c (gtk_text_btree_node_check_consistency):
14081         enhance the function to check that node data corresponds to a 
14082         view still belonging to the tree.
14083
14084         * gtk/gtktreeview.c (gtk_tree_view_changed): we were leaking the 
14085         GtkTreePath
14086         (gtk_tree_view_inserted): ditto
14087         (gtk_tree_view_child_toggled): ditto
14088
14089         * gtk/gtktreemodel.c (gtk_tree_path_append_index): use realloc to
14090         simplify this code.
14091
14092         * gtk/gtkcellrenderertext.c (get_layout): fix leak of 
14093         a PangoAttrList
14094
14095         * demos/gtk-demo/main.c (load_file): Fix leak of a GString
14096
14097         * gtk/gtkentry.c (gtk_entry_realize): Fix leak of a GdkCursor
14098
14099         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): consider toggle
14100         size in the size request 
14101         (gtk_menu_bar_size_allocate): consider toggle size here
14102
14103         * gtk/gtkimagemenuitem.h, gtkimagemenuitem.c: Menu item
14104         that displays a widget in the toggle slot
14105
14106         * gtk/testgtk.c: test GtkImageMenuItem
14107
14108         * gtk/Makefile.am, gtk/gtk.h: Add GtkImageMenuItem
14109         
14110         * gtk/gtkmenuitem.h: Use "gint" not "guint16" for toggle size
14111         request and allocation
14112
14113         * gtk/gtkmenu.c (gtk_menu_size_request): use gint not guint16
14114
14115         * gtk/gtkcheckmenuitem.c
14116         (gtk_check_menu_item_toggle_size_request): ditto
14117         
14118 Mon Feb 12 23:43:30 2001  Owen Taylor  <otaylor@redhat.com>
14119
14120         * gtk/Makefile.am (gdk_headers): Remove gdkcc.h 
14121         reference.
14122
14123         * configure.in gtk/gtkmain.c: Add checks for setuid/setgid,
14124         and refuse to initialize GTK+ if they fail.
14125
14126 Mon Feb 12 15:02:07 2001  Owen Taylor  <otaylor@redhat.com>
14127
14128         * configure.in: Add check for gtk-doc version.
14129
14130 Thu Feb  8 17:18:26 2001  Owen Taylor  <otaylor@redhat.com>
14131
14132         * gtk/gtklabel.c (gtk_label_size_request): Fix bug
14133         where the xpad/ypad was only being used on one side!
14134
14135 2001-02-11  Tor Lillqvist  <tml@iki.fi>
14136
14137         * gdk/win32/gdkcolor-win32.c (gdk_colormap_query_color): New
14138         function, copied from X11 version.
14139
14140         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Eliminate
14141         DestroyCursor failures. The reason for the problem (despite the
14142         inconsistent messages from GetLastError()) was that
14143         DestroyCursor() cannot be called while a cursor is set in a
14144         window. Set the new cursor first and then destroy the old one.
14145         Thanks to jpe@archaeopteryx.com.
14146
14147         * gdk/win32/gdkcc-win32.c: Remove.
14148
14149         * gdk/win32/Makefile.am: Remove from here, too.
14150         
14151         * gdk/gdk.def
14152         * gdk/makefile.mingw.in: Update. Godbye GdkColorContext.
14153
14154         * gtk/gtk.def
14155         * gtk/makefile.mingw.in: Updates.
14156
14157 2001-02-08  Havoc Pennington  <hp@redhat.com>
14158
14159         * gtk/gtkbin.c (gtk_bin_add): better error message if you try to
14160         add a widget to a bin that already has a child.
14161
14162         * gdk/gdkcc.h, gdk/gdkcc-x11.c: Remove GdkColorContext, #50512
14163
14164         * docs/Changes-2.0.txt: note that GdkColorContext is gone.
14165         
14166         * gdk/x11/Makefile.am (libgdk_x11_la_SOURCES): remove gdkcc-x11.c
14167
14168         * gdk/gdk.h: remove gdkcc.h
14169
14170         * gdk/Makefile.am (gdk_public_h_sources): remove gdkcc.h
14171
14172         * gtk/gtkpixmap.c (build_insensitive_pixmap): rewrite using
14173         GdkPixbuf, since the previous implementation was GdkColorContext
14174         dependent.
14175
14176         * gtk/testgtk.c (create_pixmap): add test for insensitive GtkPixmap
14177         
14178 Thu Feb  8 19:00:00 2001  Jonathan Blandford  <jrb@redhat.com>
14179
14180         * gtk/gtktreeview.c (TREE_VIEW_VERTICAL_SEPARATOR): moved back to
14181         a sane value!
14182
14183 2001-02-08  Havoc Pennington  <hp@redhat.com>
14184
14185         * gtk/gtkstyle.c (get_darkened_gc): let's darken colors, not
14186         lighten them.
14187
14188 2001-02-08  Havoc Pennington  <hp@redhat.com>
14189
14190         * gtk/gtktextview.c (gtk_text_view_destroy_layout): remove
14191         validation idle
14192
14193         * demos/gtk-demo/main.c (create_tree): adjust to changes in text
14194         cell renderer
14195
14196         * demos/pixbuf-demo.c (timeout): remove deprecated
14197         gtk_widget_draw
14198
14199         * demos/testpixbuf-save.c (main): remove deprecated
14200         gtk_drawing_area_size
14201
14202         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): allocate
14203         buttons even if the model isn't setup. gtk_tree_view_check_dirty()
14204         at the start of the allocation.
14205         (gtk_tree_view_check_dirty): handle column->button == NULL, handle
14206         unsetup or NULL model.
14207
14208         * gtk/gtkstyle.c (gtk_default_draw_flat_box): drawing for the 
14209         even/odd/sorted cells in the tree view.
14210
14211         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
14212         bugfixes
14213
14214         * gtk/gtktreeview.c: assorted bugfixy stuff. Draw the row
14215         backgrounds with draw_flat_box using different detail for even/odd
14216         rows.
14217
14218         * gtk/gtkrbtree.c, gtkrbtree.h: Keep track of the parity of each
14219         row, so we can draw the alternating colors thing
14220
14221         * gtk/gtktexttag.c (gtk_text_tag_set_property): if we change a
14222         property from a synonym property, notify for the synonym.
14223         Also, nuke the background_gdk_set and foreground_gdk_set synonyms
14224         (gtk_text_tag_get_property): Always return the font, even if
14225         all its fields aren't set
14226
14227         * gtk/gtkcellrenderertext.h (struct _GtkCellRendererText): don't
14228         store the attr list; it leaves us with no way to change attributes
14229         in _render according to the render flags, and no way to implement
14230         get_property. Instead store all the specific text attributes. 
14231         Separate whether an attribute is enabled from its value. Sync all
14232         properties with GtkTextTag, make them all consistent, etc.
14233
14234         * gtk/gtkcellrenderer.h: Add a flag GTK_CELL_RENDERER_SORTED so
14235         renderers can highlight the sort row/column     
14236
14237         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_property): use
14238         accessor functions to get values; this has the side effect of
14239         showing up which accessor functions were missing. Added those.
14240
14241         * gtk/gtktreeviewcolumn.h: Replace set_justification with
14242         set_alignment, to be consistent with GtkLabel, GtkMisc
14243
14244         * gtk/gtktreeviewcolumn.c: Added code to display sort indicator
14245         arrow.
14246
14247         * gtk/Makefile.am (gtk_public_h_sources): add gtktreesortable.h
14248
14249         * gtk/gtktreesortable.h: updates in here
14250
14251 2001-02-07  Sven Neumann  <sven@convergence.de>
14252
14253         * gtk/gtkentry.c (gtk_entry_draw_text): convert area_height to 
14254         pango dimensions after painting the background. We used to draw
14255         gigantic flat boxes here.
14256
14257 Mon Feb  5 22:05:57 2001  Owen Taylor  <otaylor@redhat.com>
14258
14259         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Fix syntax
14260         error introduced with earlier commit) (pointed out by
14261         Ollie Lho)
14262
14263 Mon Feb  5 12:25:06 2001  Owen Taylor  <otaylor@redhat.com>
14264
14265         * gtk/gtkbutton.c: Remove calls to gtk_grab_add/gtk_grab_remove,
14266         which are no longer necessary.
14267
14268 Mon Feb  5 13:22:54 GMT 2001  Tony Gale <gale@gtk.org>
14269
14270         * docs/faq/gtk-faq.sgml: s/MISK/MISC/
14271
14272 2001-02-04  Tor Lillqvist  <tml@iki.fi>
14273
14274         * gdk/gdk.def
14275         * gdk/win32/gdkim-win32.c (gdk_ic_attr_new, gdk_ic_attr_destroy):
14276         Provide dummy implementations.
14277
14278 Sun Feb  4 07:55:17 2001  Tim Janik  <timj@gtk.org>
14279
14280         * gtk/gtksignal.h: removed gtk_signal_init() compat define.
14281
14282         * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument
14283         GTypeDebugFlags debug_flags and pass it on to g_type_init ();
14284         deprecated this function.
14285
14286         * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as
14287         argument.
14288
14289 Sun Feb  4 07:45:45 2001  Tim Janik  <timj@gtk.org>
14290
14291         * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS.
14292
14293 2001-02-03  Havoc Pennington  <hp@pobox.com>
14294
14295         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Fix bug reported by
14296         Mikael Hermansson with patch from Mikael (if there was a toggle
14297         start one after the first character in the range, this function
14298         was broken). Bug #50380
14299
14300 Sat Feb  3 11:28:03 2001  Owen Taylor  <otaylor@redhat.com>
14301
14302         * configure.in: Remove confusing comment about X11.
14303
14304 Fri Feb  2 19:21:23 2001  Owen Taylor  <otaylor@redhat.com>
14305
14306         * gdk/gdkwindow.c (gdk_propagate_shapes): Surround additional
14307         regions with HAVE_SHAPE_EXT. (#50511, Eric Ding)
14308         
14309 Fri Feb  2 18:31:54 2001  Owen Taylor  <otaylor@redhat.com>
14310
14311         * gdk/x11/gdkimage-x11.c: Remove definition of _XOPEN_SOURCE, since
14312         it breaks things on BSD. If you want to compile GTK+ with
14313         -ansi -pedantic, you should supply CPP_FLAGS=_XOPEN_SOURCE 
14314         when configuring, since GTK+ simply can't be "pure ANSI" 
14315         in the header files it uses. (#8170, Greg Hudson)
14316
14317 2001-02-02  Havoc Pennington  <hp@redhat.com>
14318
14319         * gtk/gtkwindow.c: docs
14320
14321         * gtk/gtkwidget.c: docs
14322         (gtk_widget_set_colormap): add a reference to the colormap
14323         (gtk_widget_get_default_colormap): add a reference to the colormap
14324
14325         * gtk/gtktextbtree.c (gtk_text_mark_set_visible): docs
14326
14327         * gtk/gtktextiter.c: docs
14328
14329         * gtk/gtkmain.c (gtk_propagate_event): docs
14330
14331         * gtk/gtkpaned.c (gtk_paned_get_position): docs
14332         (gtk_paned_set_position): docs
14333
14334         * gtk/gtktreesortable.h (struct _GtkTreeSortableIface): Initial
14335         sort interface, no implementation yet.
14336
14337         * demos/testpixbuf.c (new_testrgb_window): replace
14338         gtk_drawing_area_size() with gtk_widget_set_usize()
14339
14340         * demos/testpixbuf-drawable.c (main): ditto
14341         
14342         * gtk/testgtk.c: remove use of GtkStatusbarMsg
14343
14344         * gtk/gtktextbuffer.c: docs
14345
14346         * gtk/gtkstock.c: docs
14347
14348         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_shadow_type): docs
14349
14350         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): docs
14351
14352         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): fix docs
14353         
14354         * gtk/gtkimage.c: add some docs in here
14355         (gtk_image_size_request): change name of
14356         gtk_widget_render_stock_icon
14357         (gtk_image_get_icon_set): don't dup returned string
14358         (gtk_image_get_icon_set): don't dup returned string
14359
14360         * gtk/gtkwidget.c (gtk_widget_render_icon): rename from 
14361         gtk_widget_render_stock_icon(), more consistent with gtkstyle.h
14362         and gtkiconfactory.h functions
14363
14364         * gtk/gtkiconfactory.c: add some docs in here
14365
14366         * gtk/gtkmain.c (gtk_get_default_language): document
14367         (gtk_get_current_event): document
14368         (gtk_get_current_event_state): document
14369         (gtk_get_event_widget): document
14370
14371         * gtk/gtkentry.c (gtk_entry_set_invisible_char): document
14372
14373         * gtk/gtkcontainer.c: Add some documentation
14374         (gtk_container_add): give a more explanatory warning on adding an
14375         already-parented widget, this is kind of a FAQ and also a common
14376         typo that's easier to debug with a nice warning 
14377
14378         * gtk/gtkcellrenderertoggle.c
14379         (gtk_cell_renderer_toggle_get_active): remove, I was on crack
14380         adding this, it's useless
14381         (gtk_cell_renderer_toggle_set_active): remove
14382         (gtk_cell_renderer_toggle_get_radio): add
14383
14384         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): don't allow
14385         the NULL cell renderer, that doesn't make any sense to me. 
14386
14387         * demos/gtk-demo/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED,
14388         demo code should never use deprecated features.
14389
14390         * demos/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED, demo
14391         code should never use deprecated features.
14392
14393         * gtk/gtkwidget.h: Mark gtk_widget_draw, gtk_widget_queue_clear,
14394         gtk_widget_queue_clear_area deprecated
14395
14396         * gtk/gtklayout.h: mark gtk_layout_freeze/gtk_layout_thaw
14397         deprecated
14398
14399         * gtk/gtklabel.h: mark gtk_label_get() deprecated
14400
14401         * gtk/gtkimage.h: mark the legacy GtkImage functions that took 
14402         a GdkImage deprecated, replaced by new consistently-named
14403         functions       
14404
14405         * gtk/gtkmain.h: Mark gtk_exit() deprecated
14406
14407         * gtk/gtkdrawingarea.h: mark gtk_drawing_area_size deprecated
14408
14409         * gtk/gtkstyle.h: mark gtk_draw_string, gtk_paint_string 
14410         deprecated
14411
14412         * gtk/gtkstatusbar.h: Move GtkStatusbarMsg to the .c file, 
14413         so it won't appear in docs and confuse people.
14414
14415         * gtk/gtkprogressbar.h: Mark all the old methods deprecated
14416
14417         * gtk/gtkprogress.h: Mark all methods deprecated, mark the cast
14418         macros deprecated. (can't mark the type itself deprecated, since
14419         GtkProgressBar is not deprecated and we need the type decl to use
14420         GtkProgressBar)
14421
14422         * gtk/gtkpixmap.h: Mark deprecated
14423
14424         * gtk/gtkoldeditable.h: Mark deprecated
14425
14426         * gtk/gtklist.h: Mark deprecated
14427
14428         * gtk/gtklabel.h: delete "GtkLabelWord" typedef, not used 
14429         for anything anymore.
14430
14431         * gtk/gtkctree.h: Mark deprecated
14432
14433         * gtk/gtkclist.h: Mark deprecated
14434
14435         * gtk/gtkpreview.h: Mark deprecated
14436
14437         * gtk/gtkpacker.h: Mark deprecated
14438
14439         * gtk/gtktipsquery.h: Mark deprecated
14440
14441         * gtk/gtkinputdialog.h: Add comment that it will move out of GTK
14442
14443         * gtk/gtkvruler.h: Add comment that it will move out of GTK
14444
14445         * gtk/gtkhruler.h: Add comment that it will move out of GTK
14446
14447         * gtk/gtkruler.h: Add comment that it will move out of GTK
14448
14449         * gtk/gtkgamma.h: Add comment that it will move out of GTK
14450
14451         * gtk/gtkcurve.h: Add comment that it will move out of GTK
14452
14453 Fri Feb  2 17:16:09 2001  Owen Taylor  <otaylor@redhat.com>
14454
14455         * gdk/x11/gdkcolor-x11.c (gdk_colormap_sync): Make
14456         gdk_colormap_sync private since it was never exported
14457         in a header file.
14458
14459         * gdk/x11/gdkcolor-x11.c (gdk_colormap_new): Fill in
14460         colormap->colors[] for StaticGray, StaticColor colormaps.
14461
14462         * gdk/gdkpixbuf-drawable.c: Fix problems where image->bpp
14463         was being used as if it was image->bits_per_pixel.
14464
14465         * gdk/gdkimage.h, gdk/x11/gdkimage-x11.c: Save the bits-per-pixel
14466         for the image in the GdkImage structure since it isn't
14467         reconstructable, and we need it to handle packed types
14468
14469         * gdk/win32/gdkimage-win32.c: Set image->bits_per_pixel. (I'm making
14470         the assumption that on Win32 image->bits_per_pixel == image->depth,
14471         always.
14472
14473         * gdk/linux-fb/gdkimage-fb.c: Set image->bits_per_pixel.
14474
14475         * gdk/gdkrgb.c (gdk_rgb_select_conv): Exit with an informative
14476         warning message if no converter can be found. 
14477
14478 Fri Feb  2 15:09:51 2001  Owen Taylor  <otaylor@redhat.com>
14479
14480         * gtk/fnmatch.c (FOLD): Fix problem with passing signed
14481         chars to isupper() / tolower(). (#567)
14482
14483         * examples/packer/pack.c: Add GINT_TO_POINTER, GPOINTER_TO_INT
14484         to clear up 64-bit warnings. (#567)
14485
14486 Fri Feb  2 12:26:50 2001  Owen Taylor  <otaylor@redhat.com>
14487
14488         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Get rid of
14489         a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
14490
14491         * gtk/gtkrc.c Makefile.am: Use $(libdir), not $(exe_prefix),
14492         since some people set $(libdir) separately. (#1290, David Kaelbling)
14493
14494 Thu Feb  1 18:25:46 2001  Owen Taylor  <otaylor@redhat.com>
14495
14496         * gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not
14497         defined, define MAXPATHLEN to 2048. (The Hurd doesn't have
14498         MAXPATHLEN, but the code here depends on a fixed value.)
14499         (#4524)
14500
14501 Wed Jan 31 22:01:04 2001  Owen Taylor  <otaylor@redhat.com>
14502
14503         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Handle the case
14504         where child == NULL and handle_position == RIGHT or BOTTOM. (#8041g)
14505
14506 Wed Jan 31 21:20:39 2001  Owen Taylor  <otaylor@redhat.com>
14507
14508         * gtk/gtkctree.c (real_tree_move): If the node being moved isn't
14509         viewable there is no way that moving the node will cause the 
14510         focus row to become not viewable, so omit check on the visibility
14511         of new_sibling, which is irrelevant. (Fixes #8002, David Helder)
14512
14513 Wed Jan 31 20:38:17 2001  Owen Taylor  <otaylor@redhat.com>
14514
14515         * gtk/gtkentry.c (gtk_entry_commit_cb): Delete the current
14516         selection before inserting new text.
14517
14518 Wed Jan 31 18:49:33 2001  Owen Taylor  <otaylor@redhat.com>
14519
14520         * gtk/gtkoptionmenu.c (gtk_option_menu_item_state_changed_cb):
14521         Make the sensitivity of the reparented child track that of
14522         the original parent menu item. (#34218, David Hodson)
14523
14524         * gtk/gtkoptionmenu.c (gtk_option_menu_item_destroy_cb): Handle
14525         the case where the current item is destroyed properly.
14526
14527         * gtk/gtkoptionmenu.c: Some additional code cleanups and fix
14528         some edge cases with child-less menuitems.
14529         
14530 Wed Jan 31 17:16:13 2001  Owen Taylor  <otaylor@redhat.com>
14531
14532         * gtk/gtkcombo.c (gtk_combo_window_key_press): Make Return
14533         key pop down window. (#12074, Jon K Hellan)
14534
14535 Wed Jan 31 16:21:42 2001  Owen Taylor  <otaylor@redhat.com>
14536
14537         * gtk/gtklist.c (gtk_list_signal_item_toggle): Don't allow
14538         toggling of rows off in BROWSE or EXTENDED mode. (#12072, Jon K Hellan) 
14539         The solution here isn't perfect - you get an extraneous
14540         emission of "toggle", which could conceivably confuse an app,
14541         but better than the current situation. LXR search seems to
14542         indicate that no apps in GNOME CVS connect to "toggle".
14543
14544 Wed Jan 31 15:46:13 2001  Owen Taylor  <otaylor@redhat.com>
14545
14546         * gtk/Makefile.am (libgtkinclude_HEADERS): Move gtkcompat.h from
14547         gtk_public_h_sources to directly here to avoid warning when
14548         building srcdir != builddir. (#9656)
14549
14550 Tue Jan 30 19:49:02 2001  Owen Taylor  <otaylor@redhat.com>
14551
14552         * gtk/gtkrange.c: Patch from Kipp Hickman to make the event
14553         handlers in gtkrange.c return the proper values (TRUE == handled)
14554         (#10316).
14555
14556         This is just the tip of the iceberg, but gtkrange.c is the
14557         most common place where the propagation is problematical,
14558         and also a place where it is almost certainly safe to change
14559         this in the stable branch.
14560
14561         (You don't want right click popups on a range control or anything...)
14562
14563 Tue Jan 30 18:57:59 2001  Owen Taylor  <otaylor@redhat.com>
14564
14565         * gtk/gtktext.c (clear_focus_area): We need to clear the focus
14566         area on focus out, even if a background pixmap isn't set.
14567         (#13941)
14568         
14569 Tue Jan 30 18:24:10 2001  Owen Taylor  <otaylor@redhat.com>
14570
14571         * gtk/gtknotebook.c (gtk_notebook_set_shape): Fix from Sean Cunningham
14572         to deal with setting the shape properly when scrolling arrows are
14573         turned on, but not visible because there is sufficient space.
14574         (#13432)
14575
14576 Tue Jan 30 16:39:25 2001  Owen Taylor  <otaylor@redhat.com>
14577
14578         * gtk/gtkitemfactory.c (gtk_item_factory_delete_item): For menu
14579         items with submenus, destroy the item along with the submenu.
14580         (#7841, Brian Masney(?)) Also, handle paths of the form '<foo>/abcd...' 
14581         properly.
14582
14583         * gtk/testgtk.c (menu_items): Add a dummy branch that we delete
14584         later.
14585
14586 Tue Jan 30 15:51:25 2001  Owen Taylor  <otaylor@redhat.com>
14587
14588         * gtk/gtkwindow.c (gtk_window_real_set_focus): Fix a problem where
14589         the focus widget sometimes wasn't drawn with the default if there
14590         was no default widget.
14591
14592         * gtk/gtkstyle.c (gtk_style_real_unrealize): free colors,
14593         unreference pixmaps. 
14594
14595         * gtk/gtkstyle.c (gtk_style_realize): Reference colormap
14596         for some extra safety.
14597
14598 Mon Jan 29 19:00:01 2001  Owen Taylor  <otaylor@redhat.com>
14599
14600         * gtk/gtk{ctree.c,clist.c} (set_cell_contents): Handle setting
14601         the text of a cell to the old pointer value better, by
14602         copying the new text before freeing the old text. Some code
14603         cleanup. (#8079, Karl Nelson)
14604
14605 Mon Jan 29 16:50:19 2001  Owen Taylor  <otaylor@redhat.com>
14606
14607         * gtk/gtklabel.[ch] gtk/gtkframe.[ch]: Make gtk_label_get_text()
14608         gtk_frame_get_label() non strdup'ing, and G_CONST_RETURN.
14609
14610 Mon Jan 29 15:22:51 2001  Owen Taylor  <otaylor@redhat.com>
14611
14612         * gtk/gtkmenu.c (gtk_menu_remove): When removing an
14613         item from a menu, check to see if it matches 
14614         menu->old_active_menu_item, and if so, unref and clear
14615         old_active_menu_item (Patch from Pavel Cisler)
14616
14617         * gtk/gtkmenushell.c (gtk_menu_shell_remove): Unset 
14618         menu_shell->active_menu_item, if it is the child being
14619         removed. (Patch based on that of Gene Ragan, #50337)
14620
14621 2001-01-31  Alexander Larsson  <alla@lysator.liu.se>
14622
14623         * gdk/linux-fb/gdkselection-fb.c: 
14624         * gdk/linux-fb/gdkcolor-fb.c: 
14625         * gdk/linux-fb/gdkdrawable-fb2.c: 
14626         * gdk/linux-fb/gdkfont-fb.c: 
14627         * gdk/linux-fb/gdkim-fb.c: 
14628         * gdk/linux-fb/gdkinput.c: 
14629         * gdk/linux-fb/gdkkeyboard-fb.c: 
14630         * gdk/linux-fb/gdkmain-fb.c: 
14631         * gdk/linux-fb/gdkrender-fb.c: 
14632         A bunch of whitespace cleanup.
14633         
14634 2001-01-30  Havoc Pennington  <hp@pobox.com>
14635
14636         * gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in 
14637         #ifdef GTK_ENABLE_BROKEN.
14638
14639         * gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
14640         GTK_ENABLE_BROKEN just before including the broken headers.
14641         
14642         * gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
14643         deprecated types registered.
14644
14645         * gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
14646         we have to test the broken stuff.
14647
14648         * docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
14649         
14650 2001-01-30  Havoc Pennington  <hp@redhat.com>
14651
14652         * gtk/gtkliststore.c (gtk_list_store_insert_before): fix bug in
14653         here where prev pointer was set to the wrong thing
14654
14655         * gtk/gtktreemodel.c (gtk_tree_path_is_ancestor): new function
14656         (gtk_tree_path_is_descendant): new function
14657
14658         * gtk/gtkliststore.c (gtk_list_store_iter_n_children): return
14659         cached length
14660         (gtk_list_store_get_iter): don't modify iter if we can't get the
14661         path.
14662
14663         * gtk/gtkliststore.h (struct _GtkListStore): cache the length
14664         
14665         * gtk/gtktreednd.h: add virtual function row_drop_possible() to
14666         GtkTreeDragDest
14667
14668         * gtk/gtktreestore.c (copy_node_data): fix varargs type error that
14669         was causing segfault
14670
14671         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_copy): set next
14672         pointer to NULL
14673
14674         * gtk/gtktreestore.c (gtk_tree_store_append): fix memleak
14675
14676         * gtk/gtkliststore.c (gtk_list_store_iter_next): don't modify iter
14677         on returning FALSE
14678         (gtk_list_store_iter_children): ditto
14679         (gtk_list_store_iter_nth_child): ditto
14680         (gtk_list_store_iter_nth_child): ditto
14681         (gtk_list_store_iter_parent): ditto
14682
14683         * gtk/gtktreestore.c (gtk_tree_store_get_path): g_return_if_fail
14684         on iter->user_data != NULL instead of silently accepting it.
14685         (gtk_tree_store_iter_next): ditto. Also, don't modify iter unless
14686         we are returning TRUE.
14687         (gtk_tree_store_iter_children): ditto
14688         (gtk_tree_store_iter_nth_child): ditto
14689         (gtk_tree_store_iter_parent): ditto
14690         (gtk_tree_store_insert): remove handling of parent->user_data ==
14691         NULL, replace with parent == NULL       
14692
14693         * gtk/gtktreemodel.c (inserted_callback): put some fixes in here,
14694         and a comment explaining things
14695
14696         * gtk/gtktreestore.c: add GtkTreeDragSource/GtkTreeDragDest
14697         interface support to GtkTreeStore.
14698
14699         * gtk/gtktreemodel.c (gtk_tree_path_prev): didn't properly return
14700         FALSE if no prev, fix
14701
14702         * gtk/gtktreeview.c (set_source_row): use a row reference
14703         (set_dest_row): use a row reference
14704
14705 Sat Jan 27 15:52:02 2001  Jonathan Blandford  <jrb@redhat.com>
14706
14707         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
14708         stupid typo pointed out by Kristian Rietveld <kristian@planet.nl>.
14709         (gtk_tree_selection_select_iter): The same as above.
14710
14711 2001-01-26  Havoc Pennington  <hp@redhat.com>
14712
14713         * gtk/gtktreemodel.c, gtk/gtktreemodel.h: add GtkTreeRowReference
14714         which holds a handle to a specific row (particular set of values
14715         in the model, i.e. pointer-identity row).
14716
14717         * gtk/gtktreeview.c, gtk/gtktreeprivate.h, gtk/gtktreeselection.c:
14718         use GtkTreeRowReference for anchor, cursor, and drag_dest_row.
14719         Still need to use it for the src/dest row saved on the drag context.
14720
14721 2001-01-26  Havoc Pennington  <hp@redhat.com>
14722
14723         * gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
14724
14725         * gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
14726         not offset by TREE_VIEW_HEADER_HEIGHT
14727         (gtk_tree_view_tree_to_widget_coords): fix to not offset by
14728         TREE_VIEW_HEADER_HEIGHT
14729
14730         * configure.in (included_loaders): for me, --with-included-loaders
14731         generates the error "the specified loader yes does not exist",
14732         i.e. the arg defaults to "yes", so change test for value ""
14733         to test for value "yes", and include all loaders in that case.
14734
14735         * gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
14736
14737         * gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
14738         handle TREE_VIEW_VERTICAL_SEPARATOR
14739         (gtk_tree_view_bin_expose): fix to consider the row offset as
14740         pointing halfway into vertical separator.       
14741         (gtk_tree_view_draw_node_focus_rect): ditto
14742
14743         * gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
14744         --gtk-debug=updates, which causes gdk_window_set_debug_updates
14745         (TRUE) to be called.
14746
14747         * gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
14748         debug mode where the invalid region is colored in on invalidate,
14749         so you can see the flicker and know whether your redraw code is 
14750         doing a good job.
14751
14752         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in 
14753         tree window coordinates (clip rect is in tree window coords)
14754
14755         * gtk/Makefile.am: add gtktreednd.[hc]
14756
14757         * gtk/gtkliststore.c: implement gtktreednd interfaces.
14758
14759         * gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
14760         drag-and-drop data operations on a model (so we can set up tree
14761         drag-and-drop automatically)
14762
14763         * gtk/testgtk.c: Add a window to change sensitivity in the
14764         GtkLabel test; add a way to change the entry frame in GtkEntry
14765         test
14766
14767         * gtk/gtkentry.c (gtk_entry_set_has_frame): 
14768         (gtk_entry_get_has_frame): new functions to remove the frame
14769         around an entry
14770         (gtk_entry_size_request): shrink requisition if no frame
14771         (gtk_entry_draw_focus): don't draw frame if no frame
14772
14773         * gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
14774         checks inside a cell renderer
14775         (gtk_default_draw_option): ditto for options
14776
14777         * gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
14778         children from the alignment, not the button
14779         (gtk_tree_view_column_init): ref/sink the column, to emulate
14780         GObject refcounting.
14781
14782         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
14783         
14784         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
14785         Use theme functions to draw the toggles 
14786
14787         * gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
14788
14789         * gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
14790         GdkPangoAttrEmbossed to use in rendering insensitive text
14791
14792         * gdk/gdkpango.c (gdk_draw_layout_line): render new properties
14793
14794         * gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
14795         using new GDK features
14796         
14797 2001-01-24  Alexander Larsson  <alexl@redhat.com>
14798
14799         * gtk/gtkimage.c:
14800         Splitted gtk_image_clear into gtk_image_clear() and
14801         gtk_image_reset(). Call gtk_image_clear() in ::destroy
14802         to avoid leaks.
14803
14804         * gtk/gtklabel.c (set_markup):
14805         Don't leak text.
14806
14807         * gtk/gtktextlayout.c:
14808         Always free display->shaped_objects.
14809
14810         * gtk/testgtk.c (create_clist):
14811         Don't leak custom style.
14812
14813 2001-01-23  Alexander Larsson  <alexl@redhat.com>
14814
14815         * gtk/gtkcolorsel.c (grab_color_at_mouse):
14816         Don't leak image. Simplify using gdk_colormap_query_color().
14817         (gtk_color_selection_init): Don't leak dropper_pixmap and mask.
14818
14819         * linux-fb/gdkcolor-fb.c:
14820         Implemented gdk_colormap_query_color.
14821
14822 2001-01-23  Alexander Larsson  <alexl@redhat.com>
14823
14824         * linux-fb/gdkcursor-fb.c:
14825         Don't leak built-in cursors.
14826
14827         * linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_polygon):
14828         Don't leak tmp_points.
14829
14830         * linux-fb/gdkfont-fb.c (gdk_font_from_description):
14831         Don't modify desc. Don't leak font if the PangoFont
14832         isn't found.
14833         
14834         * linux-fb/gdkgc-fb.c (gdk_fb_gc_finalize):
14835         Free dash_list.
14836
14837         * linux-fb/gdkkeyboard-fb.c (gdk_fb_handle_key):
14838         Don't leak string.
14839         
14840 2001-01-20  Havoc Pennington  <hp@pobox.com>
14841
14842         * gtk/gtktexttag.h (enum GtkWrapMode): rename member fields
14843         from GTK_WRAPMODE_WORD to GTK_WRAP_WORD, etc., seems nicer to 
14844         me, matches Pango
14845
14846 2001-01-22  Havoc Pennington  <hp@redhat.com>
14847
14848         * demos/testanimation.c: fix to reflect gdk-pixbuf changes
14849
14850         * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes
14851
14852         * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: 
14853         Remove, move back to gdk-pixbuf
14854
14855         * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents
14856         to all the word functions
14857
14858         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return
14859         before doing anything on NULL layout or if we don't have the focus
14860
14861         * gtk/testtext.c (fill_example_buffer): "justification"
14862
14863         * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute
14864         to be called "justification" not "justify"
14865
14866         * demos/gtk-demo/textview.c (create_tags): "justification"
14867         
14868         * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
14869
14870 2001-01-22  Alexander Larsson  <alexl@redhat.com>
14871
14872         * gdk/gdkwindow.c (gdk_window_invalidate_region):
14873         Don't leak visible_region. Use visible_region instead of region.
14874         
14875         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
14876         Don't do extra gdk_drawable_ref(). This is not X.
14877         (gdk_fb_window_find_focus, gdk_fb_change_focus): make sure
14878         gdk_fb_focused_window is ref:ed.
14879         (gdk_fb_window_send_crossing_events): Watch out for destroyed
14880         windows.
14881
14882 2001-01-22  Alexander Larsson  <alexl@redhat.com>
14883
14884         * gtk/gtkwindow-decorate.c (gtk_decorated_window_realize):
14885         Don't leak the PangoFontDescriptor.
14886
14887 Sun Jan 21 09:58:00 2001  Jonathan Blandford  <jrb@redhat.com>
14888
14889         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): Make fail
14890         when not realized.
14891         (gtk_tree_view_scroll_to_cell): Make work when not realized.
14892         (gtk_tree_view_realize): add scroll_to support
14893         (gtk_tree_view_finalize): add a finalize method.  Populate.
14894         (gtk_tree_view_insert_column): ref and sink the column.
14895         (gtk_tree_view_append_column): ref and sink the column.
14896         (gtk_tree_view_queue_draw_node): New function to handle redrawing
14897         individual nodes.  Should make the code much more efficient, if
14898         actually used.
14899
14900 2001-01-19  Havoc Pennington  <hp@redhat.com>
14901
14902         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
14903         byte_offset variable was being used to mean both "offset into
14904         layout" and "offset into buffer line" which was no longer true
14905         with addition of preedit string; fix
14906
14907 2001-01-19  Havoc Pennington  <hp@redhat.com>
14908
14909         * demos/gtk-demo/main.c (button_press_event_cb): sync to tree changes
14910
14911         * gtk/gtkrbtree.c (_gtk_rbtree_node_find_offset): fix this
14912         function
14913
14914         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_widget):
14915         implement
14916
14917         * gtk/gtktreeview.c (gtk_tree_view_move_to): rename
14918         scroll_to_cell, matches TextView scroll functions better
14919         (gtk_tree_view_tree_to_widget_coords): new function
14920         (gtk_tree_view_widget_to_tree_coords): new function
14921         (gtk_tree_view_get_visible_rect): new function
14922         (gtk_tree_view_get_path_at_pos): accept negative coordinates
14923         (gtk_tree_view_draw_node_focus_rect): new function moved from
14924         draw_focus, also, use width of bin_window as width of the focus
14925         rect
14926         (gtk_tree_view_expand_row): fix bug where it didn't recognize
14927         already-expanded rows
14928         (gtk_tree_view_get_cell_rect): new function
14929         (gtk_tree_view_get_path_at_pos): return the click position
14930         relative to the passed-in cell
14931         (gtk_tree_view_set_expander_column): new function
14932
14933         * configure.in: remove gtk-config-2.0 chmod
14934
14935         * gtk/gtktextview.c (gtk_text_view_drag_motion): small cleanups,
14936         and properly handle drags with targets we don't understand
14937         (gtk_text_view_drag_end): don't stop scrolling, the source isn't
14938         scrolling anyway
14939         (gtk_text_view_drag_drop): stop scrolling here though, and set the
14940         mark invisible
14941
14942         * gtk/gtkdnd.c (gtk_drag_dest_find_target): export as a public
14943         function
14944         (gtk_drag_dest_get_target_list): new function
14945         (gtk_drag_dest_set_target_list): new function
14946         
14947         * gtk/gtktreeview.c: Add a bunch of drag-and-drop implementation
14948
14949         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add fields
14950         related to drag-and-drop
14951
14952 2001-01-19  Alexander Larsson  <alexl@redhat.com>
14953
14954         * gdk/linux-fb/gdkprivate-fb.h:
14955         Define EMULATE_GDKFONT.
14956         Add extra pango_font stuff to GfkFontPrivate.
14957         
14958         * gdk/linux-fb/gdkdrawable-fb2.c:
14959         * gdk/linux-fb/gdkfont-fb.c:
14960         If EMULATE_GDKFONT defined, implement a slow lame GdkFont
14961         emulation using PangoFont.
14962
14963 2001-01-17  Havoc Pennington  <hp@pobox.com>
14964
14965         * gtk/gtkprogressbar.c, gtk/gtkprogressbar.h: Add "getters" for
14966         all the non-deprecated set_foo functions. Added missing object
14967         properties, and added g_object_notify() to setters. 
14968         Wrote docs.
14969         
14970 2001-01-18  Tor Lillqvist  <tml@iki.fi>
14971
14972         * gtk/gtkmain.c
14973         * gtk/gtkrc.c: (Win32) Use the new
14974         g_win32_get_package_installation_(sub)directory() functions.
14975
14976         * config.h.win32.in: New file.
14977         
14978         * config.h.win32: Removed.
14979
14980         * configure.in: Output config.h.win32.
14981
14982         * Makefile.am: Add it to EXTRA_DIST.
14983
14984         * gtk/gtk.def: Update.
14985
14986 Wed Jan 17 16:22:54 2001  Owen Taylor  <otaylor@redhat.com>
14987
14988         * gtk/gtklabel.c (gtk_label_size_request): Set the
14989         attributes onto the PangoLayout even if they are newly
14990         created from label->pattern.
14991
14992 Tue Jan  9 11:20:48 2001  Owen Taylor  <otaylor@redhat.com>
14993
14994         * gdk/x11/gdkdnd-x11.c: Remove unused variable.
14995
14996         * gtk/gtkdnd.c: Encapsulate storing and retrieving info
14997         structures in functions. Fixes bug where gtk_dataset_*
14998         was accidentally still being used in one place, causing
14999         every dest side event to be treated independently.
15000
15001         * gtk/gtkdnd.c: Remove last vestages of handling
15002         ::draw (fixes warning)
15003         
15004         * gtk/gtkentry.[ch]: Add drag and drop support.
15005
15006         * gtk/gtkdnd.[ch] gtk/gtktextview.c gtk/gtkentry.c: Add
15007         new function gtk_check_drag_threshhold() for checking
15008         to check if (dx,dy) has exceeded the threshhold for starting
15009         a drag and use it everywhere.
15010
15011 Mon Jan  8 11:58:05 2001  Owen Taylor  <otaylor@redhat.com>
15012
15013         * gtk+-2.0.pc.in gdk-pixbuf-2.0.pc.in (Cflags): Remove -I${includedir},
15014         add -I{includedir}/gtk-2.0.
15015
15016         * gtk/gtktreeview.[ch] gtktreemodelsort.[ch] gtknotebook.c
15017         gdk/gdk-pixbuf.h: Doc fixups.
15018         
15019         * gtk/gtkobject.h: Remove trailing , from enum
15020
15021 2001-01-17 Alexander Larsson <alexl@redhat.com> 
15022
15023         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_shadow_fb_draw_arc):
15024         Doh! Mixed up x and y.
15025
15026         * gdk/linux-fb/gdkglobals-fb.c:
15027         Removed gdk_fb_pointer_grab_window_events,
15028         added _gdk_fb_pointer_grab_owner_events and
15029         _gdk_fb_keyboard_grab_owner_events.
15030
15031         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab):
15032         Set all button mask if GDK_BUTTON_MOTION_MASK set. Send
15033         crossing events before grabbing. Set _gdk_fb_pointer_grab_owner_events.
15034         (gdk_fb_pointer_ungrab): Unset _gdk_fb_pointer_grab_owner_events
15035         Send crossing events after ungrab finished.
15036         (gdk_keyboard_grab): Set ..._owner_events
15037         (type_masks): Move out of function.
15038         (gdk_fb_other_event_window, gdk_fb_pointer_event_window,
15039         gdk_fb_keyboard_event_window): New functions, return the
15040         window an event should be targeted at. Handles grabs and
15041         event propagation. Can return NULL.
15042         (gdk_event_make): Remove event_mask checking. Now always
15043         returns an event.
15044                 
15045         * gdk/linux-fb/gdkkeyboard-fb.c:
15046         * gdk/linux-fb/gdkproperty-fb.c:
15047         * gdk/linux-fb/gdkselection-fb.c:
15048         Use new event_window/gdk_event_make() behaviour.
15049         
15050         * gdk/linux-fb/gdkmouse-fb.c:
15051         Use new event_window/gdk_event_make() behaviour.
15052         Only send motion events if in the same window.
15053         If grabbed, use cursor from window if sibling of grabbed
15054         window, and cursor from grabbed window otherwise.
15055
15056         * gdk/linux-fb/gdkprivate-fb.h:
15057         Update gdk_fb_window_send_crossing_events, gdk_event_make
15058         and grab varaible declarations. Add gdk_fb_*_event_window().
15059
15060         * gdk/linux-fb/gdkwindow-fb.c:
15061         Use new event_window/gdk_event_make() behaviour.
15062         Keep correct track of focus window.
15063         (gdk_window_set_events): Set all specific button motion masks
15064         if GDK_BUTTON_MOTION_MASK set.
15065
15066         * gtk/gtkdnd.c (gtk_drag_update):
15067         Free info->last_event if gdk_drag_motion returned FALSE.
15068
15069 2001-01-16  Tor Lillqvist  <tml@iki.fi>
15070
15071         * gdk/win32/gdkwindow-win32.c (gdk_window_show, gdk_window_hide):
15072         Eliminate redraws when input-only windows are shown or
15073         hidden. Thanks to jpe@archaeopteryx.com.
15074
15075 Tue Jan 16 13:13:13 GMT 2001  Tony Gale <gale@gtk.org>
15076
15077         * docs/faq/gtk-faq.sgml: FAQ update:
15078           - Update to bugzilla
15079           - Add GTK+ and security/SUID/SGID
15080           - Add DnD question
15081
15082 2001-01-16  Alexander Larsson  <alla@lysator.liu.se>
15083
15084         * gdk/linux-fb/gdkdnd-fb.c:
15085         Some cleanups.
15086         
15087 2001-01-15  Havoc Pennington  <hp@pobox.com>
15088
15089         * tests/testtreeview.c: add test stuff for CellRendererToggle
15090
15091         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_model): add this
15092         accessor
15093
15094         * gtk/gtkcellrenderertoggle.c: distinguish different event types,
15095         only toggle on button press (would do release like GtkButton, but
15096         we'd need implicit grab code for treeview cells)
15097
15098 2001-01-16  Tor Lillqvist  <tml@iki.fi>
15099
15100         * gdk/win32/gdkvisual-win32.c: Include <stdlib.h> for getenv().
15101
15102         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't use
15103         GDK_COLORMAP_PRIVATE_DATA on a potentially NULL GdkColormap.
15104
15105         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Adapt calls
15106         to g_{locale,filename}_{to,from}_utf8 to match current API.
15107
15108         * gtk/makefile.msc.in (gtk_OBJECTS)
15109         * gtk/makefile.mingw.in (gtk_OBJECTS): Add gtkwindow-decorate.
15110
15111         * gtk/gtk.def: Update.
15112
15113 2001-01-15  Tor Lillqvist  <tml@iki.fi>
15114
15115         * gdk/win32/gdkevents-win32.c (synthesize_crossing_events): New
15116         implementaion that more closely mimics the events that an X server
15117         would generate. Especially, properly generate GDK_NOTIFY_VIRTUAL and
15118         GDK_NOTIFY_NONLINEAR_VIRTUAL crossing events. This makes buttons
15119         with nested preview widgets, for instance, more responsive when
15120         you move the mouse quickly into them.
15121         (find_window_for_pointer_event): Make it actually compile.
15122         (gdk_event_translate): Set send_event to the value of
15123         InSendMessage (). This doesn't really mean the same as X11's
15124         send_event flag, but is close enough, says jpe@archaeopteryx.com
15125
15126 2001-01-15  Alexander Larsson  <alexl@redhat.com>
15127
15128         * gdk/linux-fb/gdkdnd-fb.c:
15129         Implemented drag and drop.
15130         Seems to be mostly working. I sometimes get an assert from gtkdnd.c:2664
15131         when it tries to free and then copy the same event (info->last_event).
15132         I am not sure about why this happens, but will continue looking.
15133
15134 2001-01-15  Alexander Larsson  <alexl@redhat.com>
15135
15136         * gdk/linux-fb/gdkwindow-fb.c:
15137         Use gdk_window_invalidate_rect instead of
15138         gdk_window_invalidate_rect_clear to minimise flashing.
15139         When hiding windows you need to clear the root window though.
15140
15141 2001-01-15  Alexander Larsson  <alexl@redhat.com>
15142
15143         * gdk/linux-fb/gdkdrawable-fb2.c:
15144         For optization, add an full_shapes argument to gdk_fb_clip_region.
15145         If this is false, only the cliprects of the shapes are used.
15146
15147         * gdk/linux-fb/gdkprivate-fb.h:
15148         Export gdk_fb_window_peek_shape.
15149         Add full_shapes to gdk_fb_clip_region.
15150
15151         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
15152         When moving a window, don't clear everything under the it, just the
15153         root window. Makes stuff faster and flash less.
15154         (gdk_window_get_pointer): Correctly handle offseted shapes, due to
15155         USE_CHILD_SHAPE. (gdk_fb_window_peek_shape): Return the correct
15156         offset of the shape.
15157         
15158
15159 2001-01-12  Havoc Pennington  <hp@redhat.com>
15160
15161         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): offset the 
15162         current invalid region, fixes redraw bug while scrolling the 
15163         text widget
15164
15165         * gtk/gtktextview.c, gtk/gtktextview.h:
15166         Rearrange the scrolling/validation/etc. code in a major way, 
15167         so it seems to make sense to me. Probably isn't genuinely that
15168         much better, but...
15169
15170         * gtk/gtktexttag.c (set_fg_color): fix name of property used for
15171         notifies
15172
15173         * gtk/gtktextmark.c (gtk_text_mark_get_left_gravity): new function
15174
15175 2001-01-12  Alexander Larsson  <alla@lysator.liu.se>
15176
15177         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_set_rotation):
15178         Hide mouse pointer while rotation. Show it afterwards.
15179
15180 2001-01-12  Alexander Larsson  <alexl@redhat.com>
15181
15182         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region): Take shaped
15183         windows in consideration when generating clip region.
15184
15185         * gdk/linux-fb/gdkfb.h:
15186         Huge HACK. Added GDK_FB_USE_CHILD_SHAPE.
15187
15188         * gdk/linux-fb/gdkprivate-fb.h:
15189         Add shape to GdkWindowFBDatat.
15190         exported gdk_fb_window_get_abs_shape().
15191         removed gdk_fb_draw_lines declaration.
15192
15193         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_impl_fb_init):
15194         Init shape to NULL. (gdk_fb_window_send_crossing_events): Don't
15195         send focus changes when there is a grabbed window.
15196         (gdk_window_get_pointer): Handle shaped windows.
15197         (gdk_fb_region_create_from_bitmap): Convert bitmap to region.
15198         (gdk_fb_window_peek_shape): Returns the shape for a window,
15199         handles GDK_FB_USE_CHILD_SHAPE.
15200         (gdk_fb_window_get_abs_shape): Returns the shape of the window,
15201         offseted to absolute positions. Handles GDK_FB_USE_CHILD_SHAPE.
15202         (gdk_window_shape_combine_mask): Implement.
15203
15204         * gtk/gtkwindow-decorate.c:
15205         HACK! Set GDK_FB_USE_CHILD_SHAPE on window->frame to make sure
15206         setting the shape of a window makes the window transparent.
15207
15208 2001-01-11  Havoc Pennington  <hp@redhat.com>
15209
15210         * gtk/gtktreemodelsimple.h: Oops, broke some macros
15211
15212 2001-01-10  Havoc Pennington  <hp@redhat.com>
15213
15214         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clear_attributes):
15215         add this function, bug 40251
15216
15217         * gtk/gtktreemodelsimple.h (GTK_TYPE_TREE_MODEL_SIMPLE): fix name
15218         of type macro   
15219
15220 2001-01-11  Alexander Larsson  <alexl@redhat.com>
15221
15222         * acconfig.h:
15223         Added ENABLE_SHADOW_FB
15224
15225         * configure.in:
15226         Added --disable-shadowfb
15227
15228         * gdk/linux-fb/gdkcursor-fb.c:
15229         Update shadowfb when updating cursor
15230
15231         * gdk/linux-fb/gdkdrawable-fb2.c:
15232         Added wrappers for shadowfb that calls  the normal drawable
15233         methods, but calls gdk_shadow_fb_update(bounding box) when
15234         GdkWindows are drawed to.
15235         Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
15236         which also returns the bounding box.
15237
15238         * gdk/linux-fb/gdkfb.h:
15239         Added GdkFBAngle type and gdk_fb_set_rotation declaration.
15240
15241         * gdk/linux-fb/gdkgeometry-fb.c:
15242         Update shadowfb when scrolling window.
15243
15244         * gdk/linux-fb/gdkglobals-fb.c:
15245         Add _gdk_fb_screen_angle.
15246         
15247         * gdk/linux-fb/gdkkeyboard-fb.c:
15248         Test code for screen rotation. Shift-F2 in the xlate driver
15249         rotates the screen.
15250
15251         * gdk/linux-fb/gdkmain-fb.c:
15252         Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
15253
15254         * gdk/linux-fb/gdkmouse-fb.c:
15255         Use fb_width/height instead of modeinfo.xres/yres.
15256
15257         * gdk/linux-fb/gdkprivate-fb.h:
15258         Added fb_men, fb_width, fb_height & fb_stride. When using
15259         shadow fb these can differ from the framebuffer stuff.
15260         Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
15261         gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
15262         _gdk_fb_screen_angle. Removed CM, RP.
15263
15264         * gdk/linux-fb/gdkrender-fb.c:
15265         Added code for shadowfb handling and screen rotation using
15266         shadowfb.
15267
15268         * gdk/linux-fb/gdkwindow-fb.c:
15269         Use fb_mem, fb_stride, fb_width, fb_height.
15270         Added recompute_rowstride to reset the rowstride of all windows.
15271         Added gdk_fb_recompute_all() which recomputes rootwindow size,
15272         window abs positions and window rowstrides. Usefull when the
15273         rotation has changed.
15274
15275 Thu Jan 11 13:16:50 GMT 2001  Tony Gale <gale@gtk.org>
15276
15277         * docs/faq/gtk-faq.sgml: update to make web site updating easier
15278
15279 2001-01-10  Havoc Pennington  <hp@redhat.com>
15280
15281         * gtk/gtktreestore.c (gtk_tree_store_insert_before): handle case
15282         where sibling == iter
15283         (gtk_tree_store_insert_after): handle sibling == iter
15284         (gtk_tree_store_prepend): remove stamp checks
15285         (gtk_tree_store_insert_before): ditto
15286         (gtk_tree_store_append): ditto
15287         (gtk_tree_store_get_path): ditto
15288         (gtk_tree_store_get_value): ditto
15289         (gtk_tree_store_iter_has_child): ditto
15290         (gtk_tree_store_iter_n_children): ditto
15291         (gtk_tree_store_iter_nth_child): ditto
15292         (gtk_tree_store_insert_after): ditto
15293         (gtk_tree_store_is_ancestor): ditto
15294         (gtk_tree_store_iter_depth): ditto
15295         (gtk_tree_store_insert_before): assert that sibling's parent is
15296         the same as the passed-in parent
15297         (gtk_tree_store_insert_after): assert that sibling's parent is
15298         the same as the passed-in parent
15299
15300         
15301         * gtk/gtktreemodel.c (gtk_tree_model_get_first): new convenience 
15302         function to get the first iterator in a model
15303         
15304         * gtk/gtktreestore.c (gtk_tree_store_get_root_iter): remove,
15305         conventionally the "root" in this sense is just NULL afaict.
15306
15307         * gtk/gtkliststore.c (gtk_list_store_insert_before): handle case
15308         where sibling == iter
15309         (gtk_list_store_insert_after): handle case where sibling == iter
15310
15311         * tests/testtreeview.c (run_automated_tests): fairly lame basic
15312         automated tests for ListStore, TreeStore
15313
15314         * gtk/gtkliststore.c (gtk_list_store_remove): update tail pointer
15315         (gtk_list_store_insert): update tail pointer, and fix it to work
15316         (gtk_list_store_insert_before): update tail pointer, and fix it to work
15317         (gtk_list_store_append): use tail to be faster
15318         (gtk_list_store_prepend): fix it, update tail pointer
15319         (gtk_list_store_insert_after): fix it, update tail pointer
15320
15321         * gtk/gtkliststore.h (struct _GtkListStore): add tail pointer for 
15322         the list
15323
15324 2001-01-09  Havoc Pennington  <hp@redhat.com>
15325
15326         * gtk/gtklabel.c (gtk_label_expose): don't draw if label->layout
15327         is NULL due to a pending resize
15328
15329         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): don't set the
15330         column width to values less than 1
15331
15332         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_width): clamp
15333         width to be between min/max width, and still set the width 
15334         even if autosize is turned on, so the tree view can use this 
15335         function in order to autosize.
15336         (gtk_tree_view_column_init): set initial width to 1 not 0
15337
15338         * gtk/gtktreeview.c (gtk_tree_view_size_request_buttons): use
15339         setter function to modify column width, so we get notification
15340         (gtk_tree_view_insert_iter_height): ditto
15341         (gtk_tree_view_calc_size): ditto
15342         (gtk_tree_view_check_dirty): ditto
15343
15344         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add
15345         properties to change all the interesting attributes of the tree
15346         view column.
15347         (gtk_tree_view_column_set_header_clickable): rename set_clickable
15348         (gtk_tree_view_column_get_clickable): add
15349         (gtk_tree_view_column_set_cell_renderer): don't unset the current
15350         attributes; assume a cell renderer with equivalent object
15351         properties has been swapped in. Do g_object_notify().
15352         (gtk_tree_view_column_set_visible): g_object_notify
15353         (gtk_tree_view_column_get_sizing): rename from get_col_type
15354         (gtk_tree_view_column_set_sizing): g_object_notify
15355         (gtk_tree_view_column_set_width): add g_object_notify
15356         (gtk_tree_view_column_set_min_width): ditto
15357         (gtk_tree_view_column_set_max_width): ditto
15358         (gtk_tree_view_column_set_title): ditto
15359         (gtk_tree_view_column_set_clickable): ditto
15360         (gtk_tree_view_column_set_widget): ditto
15361         (gtk_tree_view_column_set_justification): ditto
15362
15363 2001-01-09  Havoc Pennington  <hp@redhat.com>
15364
15365         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): handle case where
15366         there are no rows in the model
15367
15368         * gtk/gtkliststore.c (gtk_list_store_iter_children): if parent is
15369         NULL, then return the start of the list
15370
15371         * gtk/gtktreeview.c (gtk_tree_view_setup_model): don't build tree
15372         if we can't get any rows from an empty model 
15373
15374         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): remove
15375         extraneous * after function pointer typedef usage
15376
15377         * Makefile.am: don't specify full path to cp and rm
15378
15379         * gtk/gtkcellrenderertextpixbuf.c
15380         (gtk_cell_renderer_text_pixbuf_get_size): check width/height !=
15381         NULL before dereferencing, fixes a segfault that happened from
15382         time to time
15383
15384         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
15385         use gdk_pixbuf_render_to_drawable_alpha() to get alpha channel,
15386         and reindent the function
15387         (gtk_cell_renderer_pixbuf_get_size): indentation
15388
15389         * gtk/gtkdialog.c (gtk_dialog_run): destroy main loop only after
15390         we quit it
15391         (gtk_dialog_add_buttons_valist): add g_return_if_fail
15392         (gtk_dialog_set_default_response): New function, to set default
15393         button
15394         (gtk_dialog_set_response_sensitive): New function, to set 
15395         sensitivity of buttons
15396
15397         * gtk/gtkcellrendererpixbuf.c
15398         (gtk_cell_renderer_pixbuf_get_property): allow getting a NULL pixbuf
15399         (gtk_cell_renderer_pixbuf_set_property): allow setting a NULL pixbuf
15400
15401         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
15402         handle any G_TYPE_OBJECT subclass, not just the base class, and 
15403         also boxed types.
15404         (_gtk_tree_data_list_value_to_node): ditto
15405
15406         * gtk/gtkrbtree.c: Run _gtk_rbtree_test at strategic points if 
15407         --gtk-debug=tree
15408
15409         * gtk/gtkmain.c: add GTK_DEBUG_TREE
15410
15411         * gtk/gtkdebug.h: add GTK_DEBUG_TREE
15412
15413 2001-01-09  Tor Lillqvist  <tml@iki.fi>
15414
15415         * gdk/win32/gdkevents-win32.c: Implement better mouse
15416         capturing. Do use SetCapture(). Thanks to jpe@archaeopteryx.com.
15417         (find_window_for_pointer_event): New function.
15418         (gdk_event_translate): Use it when handling mouse events.
15419
15420 2001-01-09  Alexander Larsson  <alla@lysator.liu.se>
15421
15422         * configure.in:
15423         Added --with-included-loaders option
15424
15425         * gdk-pixbuf/Makefile.am:
15426         * gdk-pixbuf/gdk-pixbuf-io.c:
15427         Add support for including selected gdk-pixbuf loaders only.
15428
15429         * gtk/gtkwindow.c (gtk_window_set_frame_dimensions,
15430         gtk_window_set_has_frame):
15431         Added inline documentation.
15432
15433         * gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
15434         * docs/reference/gdk/tmpl/windows.sgml:
15435         Added inline documentation.
15436
15437 Mon Jan  8 14:42:06 2001  Jonathan Blandford  <jrb@redhat.com>
15438
15439         * gtk/gtktreeview.c (gtk_tree_view_realize_buttons): Skip
15440         realizing buttons that have already been realized.
15441
15442 Mon Jan  8 14:06:29 2001  Jonathan Blandford  <jrb@redhat.com>
15443
15444         * tests/testtreeview.c (main): Show menu items before adding to
15445         option menu.
15446
15447         * gtk/gtktreeview.c (gtk_tree_view_set_model): Keep the columns
15448         around if we kill them.
15449
15450         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
15451         Return if we pass in a NULL model.
15452
15453 2001-01-08  Havoc Pennington  <hp@redhat.com>
15454
15455         * tests/testtreeview.c: hack on this some
15456
15457         * gtk/gtktreestore.c (gtk_tree_store_setv): rename
15458         gtk_tree_store_set_valist, v is for arrays, valist for varargs
15459         list
15460         (gtk_tree_store_getv): rename gtk_tree_store_get_valist
15461
15462         * gtk/gtkliststore.h: Add varargs set() and get() convenience
15463         functions
15464
15465 2001-01-08  Alexander Larsson  <alexl@redhat.com>
15466
15467         * gtk/gtkwindow-decorate.[hc]:
15468         * gtk/Makefile.am:
15469         New files. Contains an implementation of a minimal WM for
15470         linux-fb.
15471
15472         * gtk/gtkwindow.h:
15473         Add the possibility for GtkWindows to specify a frame. This
15474         is used for the window decoration code, but could concievably
15475         be used for X programs too (xmms style windows).
15476         GtkWindow->frame is the toplevel window if the window is framed.
15477         The signal frame_event gets all events that are targeted to
15478         GtkWindow->frame.
15479         (_gtk_window_constrain_size): Exported for usage by gtkwindow-decorate.c.
15480         
15481         * gtk/gtkwindow.c:
15482         Implement gtk_window_set_has_frame and gtk_window_set_frame_dimensions.
15483         Call out to gtkwindow-decorate.c for WM support in linx-fb.
15484
15485 2001-01-08  Alexander Larsson  <alexl@redhat.com>
15486
15487         * docs/README.linux-fb:
15488         Correct filename ~/.pangoft2_aliases
15489
15490         * gdk/gdkwindow.h:
15491         Added new function gdk_window_get_decorations.
15492
15493         * gdk/linux-fb/gdkfb.h:
15494         Removed _gdk_window_get_decorations declaration.
15495         Renamed _gdk_window_set_child_handler to
15496         gdk_fb_window_set_child_handler.
15497
15498         * gdk/linux-fb/gdkwindow-fb.c:
15499         Renamed _gdk_window_set_child_handler to
15500         gdk_fb_window_set_child_handler.
15501
15502         * gdk/x11/gdkwindow-x11.c:
15503         New function gdk_window_get_mwm_hints().
15504         Implemented gdk_window_get_decorations.
15505
15506         * docs/reference/gdk/tmpl/windows.sgml:
15507         * docs/reference/gdk/gdk-sections.txt:
15508         Added gdk_window_get_decorations docs.
15509         
15510 2001-01-08  Alexander Larsson  <alla@lysator.liu.se>
15511
15512         * gdk/linux-fb/gdkwindow-fb.c (_gdk_fb_window_find_focus,
15513         gdk_fb_window_find_focus, gdk_fb_send_focus_change,
15514         gdk_fb_window_send_crossing_events):
15515         Possibly send focus events when the mouse moves from one
15516         window to another.
15517
15518 2001-01-07  Tor Lillqvist  <tml@iki.fi>
15519
15520         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title,
15521         gdk_window_new): Adapt calls to g_{locale,filename}_{to,from}_utf8
15522         to match current API.
15523
15524         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): If a secret
15525         environment variable is set, don't call g_error when on a
15526         palettized (PseudoColor) display. Some people want to use GTK+ 
15527         in 256-colour mode even though works only partially.
15528
15529         * gdk/gdk.def
15530         * gtk/gtk.def
15531         * gtk/makefile.mingw.in: Update.
15532
15533 2001-01-05  Havoc Pennington  <hp@redhat.com>
15534
15535         * tests/testtreeview.c: hack on this a bit
15536
15537         * gtk/gtktextlayout.c (gtk_text_layout_class_init):
15538         s/GTK_RUN_LAST/G_SIGNAL_RUN_LAST
15539
15540         * gtk/gtktreemodelsimple.h (GTK_IS_TREE_MODEL_SIMPLE_CLASS): 
15541         was spelled incorrectly
15542         (GTK_IS_TREE_MODEL_SIMPLE): ditto
15543
15544         * gtk/gtktreeview.c (gtk_tree_view_set_headers_clickable): rename
15545         from gtk_tree_view_set_headers_active   
15546
15547         * gtk/gtktexttag.c:
15548         (gtk_text_tag_get_property): handle PROP_DIRECTION
15549         (gtk_text_tag_set_property): g_object_notify when we toggle the _set
15550         properties, bug 40235
15551
15552         * gtk/gtktextiter.c (gtk_text_iter_forward_to_delimiters): rename
15553         forward_to_line_end
15554
15555 Fri Jan  5 16:16:29 2001  Owen Taylor  <otaylor@redhat.com>
15556
15557         * gtk/{gtkcalender.c,gtkfilesel.c,gtkimcontext.c},
15558         modules/input/gtkimcontextxim.c: Adapt to new prototypes
15559         for unicode,locale,filename conversion functions.
15560
15561 2001-01-05  Havoc Pennington  <hp@redhat.com>
15562
15563         * gtk/gtktextiter.c (gtk_text_iter_ends_line): this function was
15564         broken if called on the first position in the buffer.
15565
15566         * gtk/gtktextlayout.c (line_display_index_to_iter): fix
15567         forward_to_delimiters to be called only if we aren't already at
15568         the delimiters.
15569
15570 2001-01-05  Havoc Pennington  <hp@redhat.com>
15571
15572         * demos/gtk-demo/main.c (create_tree): Oops, that didn't link. Fix.
15573
15574 2001-01-05  Alexander Larsson  <alexl@redhat.com>
15575
15576         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_drawable_finalize): free
15577         colormap in here. Sync from X port.
15578         (gdk_fb_set_colormap): allow the colormap to be NULL if you like.
15579         Sync from X port.
15580         (gdk_fb_clip_region): Comment out g_warning about empty clip region.
15581         This happens now and then, and i don't think it is a bug.
15582         (gdk_fb_draw_polygon): Correctly add extra point if startpoint
15583         != endpoint.
15584         (gdk_fb_draw_lines): Don't draw dashed lines if line_style is
15585         GDK_LINE_SOLID.
15586
15587         * gdk/linux-fb/gdkfont-fb.c: Return bogus GdkFont that has
15588         some of the fields filled in at least.
15589
15590         * gdk/linux-fb/miwideline.c: The widths argument to miLineArcI, and
15591         miLineArcD is no more, remove it from the function definition.
15592
15593 2001-01-04  Havoc Pennington  <hp@redhat.com>
15594
15595         * gtk/gtktreeselection.c (gtk_tree_selection_get_tree_view): add
15596         this
15597
15598         * gtk/gtktreemodel.h (struct _GtkTreeIter): rename fields to
15599         user_data instead of tree_node
15600
15601         * gtk/gtktreeprivate.h (TREE_VIEW_COLUMN_WIDTH): rename from
15602         TREE_VIEW_COLUMN_SIZE
15603
15604         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): rename
15605         "size" field to "width" finishes bug 40061
15606
15607         * gtk/gtkcellrenderer.h: Use GtkCellRendererState instead of guint
15608         for bitfields, bug 40268
15609
15610 2001-01-04  Havoc Pennington  <hp@redhat.com>
15611
15612         Rename some stuff:
15613         
15614         s/gtk_tree_view_column_set_size/gtk_tree_view_column_set_width/g;
15615
15616         s/GtkModelSimple/GtkTreeModelSimple/g;
15617         s/GTK_MODEL_SIMPLE/GTK_TREE_MODEL_SIMPLE/g;
15618         s/gtk_model_simple/gtk_tree_model_simple/g;
15619         s/gtkmodelsimple/gtktreemodelsimple/g;
15620
15621         s/gtk_tree_view_column_set_header_active/gtk_tree_view_column_set_header_clickable/g;
15622
15623         s/GtkTreeViewColumnType/GtkTreeViewColumnSizing/g;
15624         s/column_set_col_type/column_set_sizing/g;
15625
15626         s/GtkTreeSelectionType/GtkTreeSelectionMode/g;
15627         s/gtk_tree_selection_set_type/gtk_tree_selection_set_mode/g;
15628
15629         s/GtkCellRendererType/GtkCellRendererState/g;
15630         
15631         * gtk/gtkcellrenderertoggle.c: remove _ macro, include gtkintl.h
15632         (gtk_cell_renderer_toggle_class_init): change "state" property to
15633         "active", to match GtkToggleButton
15634         (gtk_cell_renderer_toggle_get_active): new function, bug
15635         40269
15636         (gtk_cell_renderer_toggle_set_active): new function
15637         (gtk_cell_renderer_toggle_set_property): route changes to toggle
15638         state through gtk_cell_renderer_set_active
15639
15640 Thu Jan  4 15:46:18 2001  Jonathan Blandford  <jrb@redhat.com>
15641
15642         * gtk/gtkmodelsimple.c: Changed a bunch of boxed types to pointers
15643         temporarily until they work again.  Brought up to date with
15644         changes in the model.
15645         * gtk/gtkmodelsimple.h: Brought up to date with changes in the
15646         model.
15647
15648 2001-01-04  Havoc Pennington  <hp@redhat.com>
15649
15650         * gtk/gtktextlayout.c (line_display_index_to_iter): if index is
15651         equal to the line length, then position iterator before paragraph 
15652         separators. Fixes crash reported by Mikael Hermansson when
15653         pressing left arrow from the start of a line.   
15654
15655         * gtk/gtktextiter.c (iter_set_from_byte_offset): Add g_error
15656         about byte indexes off the end
15657         (iter_set_from_char_offset): add g_error about char offsets
15658         off the end
15659
15660 2001-01-03  Havoc Pennington  <hp@redhat.com>
15661
15662         * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
15663
15664         * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use 
15665         of private functions; remove inclusion of private headers.
15666
15667         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this 
15668         function, so we don't need private functions in gtktextdisplay.c
15669
15670         * gtk/gtktextiterprivate.h: underscore-ification
15671
15672         * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
15673         to instead say "only useful to implement widgets"
15674
15675         * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
15676         GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
15677         GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
15678
15679         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
15680         This function was completely broken
15681
15682         * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
15683
15684         * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
15685
15686         * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
15687
15688         * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
15689
15690         * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
15691
15692         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
15693
15694         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
15695         gtk_paint_layout
15696
15697         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
15698         gtk_paint_layout
15699
15700         * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
15701         Progress on bug 40103. Add draw_layout to draw a PangoLayout.
15702         (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
15703         which were not implemented.     
15704
15705         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
15706         insert_pixbuf signal. Rename delete_text to delete_range since it
15707         also deletes pixbufs and child anchors. This almost closes bug
15708         40245 (still need to deal with child anchors)
15709
15710         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
15711         insert_pixbuf, change signal names as appropriate, change types of
15712         signals taking marks/tags to have the specific type, not just
15713         G_TYPE_OBJECT
15714         
15715         * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; 
15716         closes bug 40051
15717
15718         * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
15719         unnecessary remove_contents() call
15720         (gtk_option_menu_class_init): add a "changed" signal, closes
15721         bug 40039
15722         (gtk_option_menu_update_contents): emit "changed" if the 
15723         active menu item changes
15724
15725         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
15726         cast to GtkObject, reported by Jonas Borgstrom
15727         (gdk_pixbuf_loader_finalize): don't close the loader on finalize;
15728         we can't do stuff with side effects in finalize. Instead, spew a
15729         warning if the loader isn't closed.
15730
15731         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
15732         colormap in here, non-X ports probably need to sync to this change
15733
15734         * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove 
15735         assertion that colormap != NULL, you can set the colormap to NULL
15736         if you like.
15737         
15738         * Makefile.am: remove gtk-config-2.0
15739
15740         * configure.in: Use pkg-config to locate GLib. Remove
15741         separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
15742         and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
15743         Use pkg-config to locate Pango. Output correct Pango libs to
15744         gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
15745
15746         * Makefile.am (pkgconfig_DATA): install only target-specific pc
15747         files
15748         (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
15749         X11 pc files
15750
15751         * gtk+-2.0.pc.in (Requires): require the GDK for the current target
15752         unref from here
15753
15754 2001-01-03  Alexander Larsson  <alla@lysator.liu.se>
15755
15756         * configure.in:
15757         Change GTK_NO_CHECK_CASTS to G_DISABLE_CAST_CHECKS.
15758
15759 Tue Jan  2 16:23:05 2001  Owen Taylor  <otaylor@redhat.com>
15760
15761         * gtk/gtktextlayout.c
15762         (gtk_text_layout_move_iter_to_previous_line): Fix unitialized
15763         variable when moving back onto a single line.
15764
15765 2001-01-01  Havoc Pennington  <hp@redhat.com>
15766
15767         * gtk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
15768
15769         * gdk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
15770
15771         * configure.in (LIBTOOL_EXPORT_OPTIONS): define
15772         LIBTOOL_EXPORT_OPTIONS with options to control symbol export
15773
15774 2001-01-01  Havoc Pennington  <hp@redhat.com>
15775
15776         * gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
15777
15778         * gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for 
15779         GtkTextAttributes
15780
15781         * gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug 
15782         #40246
15783         (gtk_text_attributes_copy_values): rename from 
15784         gtk_text_attributes_copy
15785         (gtk_text_attributes_copy): a more standard GTK copy function, 
15786         which returns a new object
15787
15788 2001-01-01  Havoc Pennington  <hp@redhat.com>
15789
15790         * gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
15791         
15792         * gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
15793         don't fill in tree_view->priv->selection, kind of an unexpected
15794         side effect
15795
15796         * gtk/gtkcellrenderertext.c: Remove definition of _ and include
15797         gtkintl.h
15798         
15799         * gtk/gtkcellrenderer.c: Remove definition of _ and include
15800         gtkintl.h
15801         (gtk_cell_renderer_get_property): remove calls to g_value_init
15802
15803         * gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
15804         gtkintl.h
15805
15806         * gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
15807         and include gtkintl.h
15808         (gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
15809         property names
15810
15811         * gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
15812         GtkTreeSelection
15813         (_gtk_tree_selection_new_from_with_view): rename, return
15814         GtkTreeSelection
15815         (_gtk_tree_selection_set_tree_view): rename with uscore
15816         (gtk_tree_selection_get_selected): fill in the "model" out param
15817         first, so it gets filled in even if we return at the top of the 
15818         function
15819         (gtk_tree_selection_real_select_all): add a comment and an else{}
15820         to clarify this a bit
15821         (gtk_tree_selection_real_unselect_all): add the same else{}
15822
15823         * gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
15824         set_tree_view to have underscore prefixes, move them to the
15825         private header, fix return type of new_with_tree_view
15826         (struct _GtkTreeSelection): mark struct
15827         fields private  
15828
15829         * gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
15830         GtkTreeModelFlags, not a guint
15831         (gtk_tree_path_prev): return gboolean not gint
15832         (gtk_tree_path_up): return gboolean not gint
15833
15834         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
15835         return GtkTreeModelFlags, not a guint
15836
15837         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
15838         that child model is non-null before unrefing it
15839         (g_value_int_compare_func): make this a qsort compare func, not 
15840         a boolean predicate
15841
15842         * gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
15843         (add -umn to the end), and mark it unimplemented
15844         (gtk_tree_model_sort_resort): remove, this wasn't implemented, and 
15845         I don't see what it's for - doesn't the model always sort itself?
15846         (gtk_tree_model_sort_set_compare): this had the wrong signature
15847
15848         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
15849         Fix the docs to say that it destructively replaces existing
15850         attributes (previously said that it added attributes).
15851         (gtk_tree_view_column_set_visible): canonicalize bool before
15852         equality testing. Also, check for realization before
15853         hiding/showing the tree_column->window; if this window could exist
15854         before realization, then it's busted and needs fixing, we can't 
15855         create GDK resources pre-realization. Also, remove
15856         superfluous queue_resize(), since set_size() does that for us.
15857         (gtk_tree_view_column_set_col_type): check realization before 
15858         using tree_column->window
15859
15860         * gtk/gtktreedatalist.c: fix filename in copyright notice
15861
15862 2000-12-31  Havoc Pennington  <hp@pobox.com>
15863
15864         * gtk/gtktextview.c: Rearrange all the
15865         scroll-while-dragging-or-selecting code to be different, not
15866         necessarily better. ;-)
15867         (gtk_text_view_scroll_to_mark): Change this
15868         function to take within_margin as a fraction instead of a pixel
15869         value, and to take alignment arguments (indicating where to align 
15870         the mark inside the visible area)
15871         
15872         * gtk/testtextbuffer.c (fill_buffer): fix bad cast of GtkTextTag
15873         to GtkObject
15874
15875         * gtk/gtktextiter.c (gtk_text_iter_set_line_offset): change
15876         behavior so that offsets past the end of the line are not 
15877         allowed, and an offset equal to the line length moves the iterator
15878         to the next line
15879         (gtk_text_iter_set_line_index): make parallel change
15880         (gtk_text_iter_get_bytes_in_line): add this function
15881         
15882         * gtk/gtktextbtree.c (_gtk_text_line_byte_locate): change handling
15883         of byte indexes off the end of the line; byte index at the end of
15884         the line now returns FALSE and doesn't fill in the requested
15885         values, byte index past the end of the line is an error.  Also,
15886         don't allow -1 offset anymore, since its meaning is unclear.
15887
15888         This change exposes some bug in visual cursor motion, where we
15889         end up with a huge invalid byte index; needs fixing. Symptom of 
15890         bug is a crash when you hit up arrow.
15891         
15892         (_gtk_text_line_char_locate): match the change to byte_locate
15893
15894         * gtk/gtktextiter.c (find_by_log_attrs): Handle iteration backward
15895         from start of line properly. fixes bug reported by Mikael
15896         Hermansson where backspace would delete all text before the
15897         cursor.
15898
15899 2000-12-30  Tor Lillqvist  <tml@iki.fi>
15900
15901         * gdk/win32/gdkwindow-win32.c
15902         (gdk_window_impl_win32_get_visible_region): New function, as in
15903         the X11 backend.
15904         (gdk_window_new, gdk_window_set_title): Use g_locale_from_utf8()
15905         instead of duplicating the same code here.
15906
15907         * gdk/win32/gdkwin32.h (GDK_COLORMAP_PRIVATE_DATA): Use
15908         GDK_COLORMAP macro.
15909
15910         * gdk/win32/gdkevents-win32.c (gdk_event_funcs): Use NULL as
15911         destroy function.
15912         (gdk_event_translate): Use GDK_COLORMAP_PRIVATE_DATA to correctly
15913         access that.
15914
15915         * gtk/gtk.def: Update.
15916
15917         * gtk/makefile.mingw.in: Use glib-genmarshal from $(GLIB)/gobject.
15918
15919 2000-12-30  Havoc Pennington  <hp@pobox.com>
15920
15921         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set the system
15922         colormap on input only windows, to avoid special cases all over
15923         the code for these windows.
15924
15925 2000-12-26  Tor Lillqvist  <tml@iki.fi>
15926
15927         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): Call g_error if
15928         we are on a palettized display ("PseudoColor" in X11), as the code
15929         for that doesn't work anyway, and never has.
15930
15931 2000-12-22  Alexander Larsson  <alexl@redhat.com>
15932
15933         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
15934         Don't use isprint() for chars > 255.
15935
15936 2000-12-21  Havoc Pennington  <hp@redhat.com>
15937
15938         * tests/testtreeview.c: more work
15939
15940 2000-12-21  Alexander Larsson  <alexl@redhat.com>
15941
15942         * docs/README.linux-fb:
15943         Update the docs to the new pangoft2 way.
15944
15945 2000-12-21  Alexander Larsson  <alexl@redhat.com>
15946
15947         * configure.in:
15948         For linux-fb get the pangoft2 cflags and libs. This needs a recent
15949         pango version.
15950         Remove modules/linux-fb/Makefile.
15951
15952         * gdk/linux-fb/gdkdrawable-fb2.c:
15953         Render glyphs using freetype.
15954
15955         * gdk/linux-fb/gdkfb.h:
15956         Add new fb-specific functions needed for managing windows.
15957
15958         * gdk/linux-fb/gdkmain-fb.c:
15959         Remove gdk_font_init/fini() calls.
15960
15961         * gdk/linux-fb/gdkpango-fb.c:
15962         Remove old implementation. Use pangoft2 instead.
15963
15964         * gdk/linux-fb/gdkprivate-fb.h:
15965         Remove PangoFBFont and related stuff.
15966
15967         * gdk/linux-fb/gdkwindow-fb.c:
15968         Implement drawable->get_visible_region.
15969         Implement support for _gdk_window_set_child_handler () and
15970         _gdk_window_get_decorations().
15971
15972         * modules/Makefile.am:
15973         Remove linux-fb subdir.
15974
15975         * modules/linux-fb/*:
15976         Removed all.
15977         
15978 2000-12-20  Jonathan Blandford  <jrb@redhat.com>
15979
15980         * gtk/gtkcellrenderer*.c (::get_property): remove g_value_init
15981         calls, as they are no longer needed.
15982
15983         * gtk/gtktreemodelsort.c: Fix up the comparison code.
15984         
15985         * gtk/gtktreemodel.h: Start work on ::reordered signal.  Need to
15986         figure out how to emit a signal on an interface.
15987
15988 2000-12-20  Havoc Pennington  <hp@redhat.com>
15989
15990         * tests: new directory to contain tests, gtk/test* should move
15991         here sometime (with appropriate on-cvs-server hackery)
15992
15993         * tests/testtreeview.c, tests/Makefile.am: a test
15994         
15995         * configure.in (AC_OUTPUT): add tests/Makefile
15996
15997         * gtk/gtktexttag.c (gtk_text_tag_get_property): Add "invisible"
15998         and "invisible_set" which were missing
15999
16000         * gtk/gtkrbtree.h: some cheesy indentation fix
16001         
16002 2000-12-20  Alexander Larsson  <alexl@redhat.com>
16003
16004         * gtk/gtkinvisible.c (gtk_invisible_realize):
16005         Attach the style to the window so that the style it is not
16006         leaked when unrealizing the window.
16007
16008 2000-12-18  Havoc Pennington  <hp@redhat.com>
16009
16010         * gtk/gtktextview.c (gtk_text_view_delete_from_cursor): do
16011         begin/end user action where appropriate
16012         (gtk_text_view_commit_handler): add begin/end user action
16013
16014         * gtk/gtktextbuffer.c: add begin/end user action signals, and
16015         bracket interactive operations with begin/end user action pair.
16016         
16017         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): remove
16018         "interactive" arg from insert_text and delete_text signals.
16019         Add begin_user_action, end_user_action signals
16020         (gtk_text_buffer_begin_user_action): 
16021         (gtk_text_buffer_end_user_action): New functions to delimit 
16022         a user-visible action
16023
16024         * gtk/gtkmarshal.list: update to reflect changes to gtktextbuffer
16025         signals.
16026         
16027 2000-12-18  Havoc Pennington  <hp@redhat.com>
16028
16029         * gdk/gdkevents.c (gdk_event_get_state): wow, that implementation
16030         was pretty non-working.
16031
16032         * gtk/testtext.c (fill_file_buffer): make this a bit more robust
16033         by passing the length to g_utf8_validate().
16034
16035 2000-12-16  Havoc Pennington  <hp@pobox.com>
16036
16037         * gtk/gdk-pixbuf-loader.h, gtk/gdk-pixbuf-loader.c: 
16038         Port to GObject, can go back in gdk-pixbuf after setting up 
16039         a gdk-pixbuf-marshal.h header over there.
16040
16041         * gtk/gtktreeview.c: s/SEPERATOR/SEPARATOR/g;
16042         (gtk_tree_view_class_init): specify GTK_TYPE_ADJUSTMENT for signal
16043         args
16044         (gtk_tree_view_init): don't unset GTK_NO_WINDOW, it shouldn't be
16045         set
16046         (gtk_tree_view_realize_buttons): don't gtk_widget_show() buttons
16047         here, do it when we create the buttons later
16048         (gtk_tree_view_realize_buttons): add some g_return_if_fail 
16049         (gtk_tree_view_map): paranoia checks that column->button is shown 
16050         and unmapped
16051         (gtk_tree_view_size_request): only request visible children.
16052         Move header size calculation in here, for cleanliness, and 
16053         to maintain invariants for child widgets if we eventually 
16054         let users set different children inside the buttons
16055         (gtk_tree_view_map_buttons): factor out code to map buttons,
16056         since it was being called several times
16057         (gtk_tree_view_size_allocate_buttons): move_resize the drag
16058         windows instead of just moving them; their height may change 
16059         if we allow random widgets in there, or the theme changes.
16060         (gtk_tree_view_size_allocate): move button size allocation 
16061         above emitting the scroll signals, to ensure a sane state when we
16062         hit user code
16063         (gtk_tree_view_button_release): remove queue_resize after
16064         tree_view_set_size(), set_size() will handle any resize queuing
16065         that's needed
16066         (gtk_tree_view_focus_in): just queue a draw, don't fool with
16067         draw_focus goo
16068         (gtk_tree_view_focus): use gtk_get_current_event() and
16069         gdk_event_get_state()
16070         (gtk_tree_view_deleted): don't queue_resize() after calling set_size()
16071         (gtk_tree_view_build_tree): fix a "if (foo); {}" bug - i.e. remove
16072         semicolon
16073         (gtk_tree_view_create_button): show the button here
16074         (gtk_tree_view_button_clicked): actually emit the clicked signal
16075         on the column
16076         (_gtk_tree_view_set_size): return right away if the size is
16077         unchanged, as a cheesy optimization
16078         (gtk_tree_view_setup_model): rename set_model_realized to 
16079         setup_model to match the flag that indicates whether we've 
16080         called it
16081         (gtk_tree_view_get_hadjustment): create adjustment if it doesn't
16082         exist, because set_scroll_adjustment does that and it shouldn't
16083         matter what order you call these in
16084         (gtk_tree_view_get_vadjustment): ditto
16085         (gtk_tree_view_set_headers_visible): canonicalize the bool, 
16086         for paranoia
16087         (gtk_tree_view_set_headers_visible): call
16088         gtk_tree_view_map_buttons() instead of using cut-and-paste code
16089         (gtk_tree_view_append_column): clarify whether the return value
16090         is the count of columns before or after, and do the increment 
16091         separately from the return statement so you can tell from the code.
16092         (gtk_tree_view_remove_column): ditto
16093         (gtk_tree_view_insert_column): ditto
16094         (gtk_tree_view_get_column): remove g_return_if_fail for columns
16095         outside the existing range, the docs say that outside-range
16096         columns are allowed, so we handle them as documented. (Presumably
16097         this allows a nice loop with column != NULL as test.)
16098         (gtk_tree_view_move_to): document what 0.0, 0.5, 1.0 alignments 
16099         mean (left/right/center etc.).
16100         (gtk_tree_view_collapse_all): only queue a draw if we're mapped
16101         (gtk_tree_view_expand_row): add docs
16102         (gtk_tree_view_collapse_row): add docs
16103
16104         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clicked): new
16105         function to emit the clicked signal on a column
16106         
16107         * gdk/gdkevents.c (gdk_event_get_state): new function, to get the
16108         state of an event
16109         (gdk_event_get_time): don't treat GDK_SCROLL 
16110         as a button event, remove default case from switch so gcc 
16111         will whine if we don't explicitly handle all event types
16112
16113         * gtk/gtktreeselection.h: added some FIXME 
16114         
16115         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): rename
16116         "columns" to "n_columns" and "column" to "columns" for clarity
16117
16118 2000-12-16  Havoc Pennington  <hp@pobox.com>
16119         
16120         * gtk/gtktextiter.c: General cleanup of the log attr iteration
16121         stuff. This should make e.g. the delete key work again in the
16122         text widget...
16123         (gtk_text_iter_forward_cursor_positions): handle negative count
16124         (gtk_text_iter_backward_cursor_positions): handle negative count
16125         (gtk_text_iter_forward_word_ends): handle negative count
16126         (gtk_text_iter_backward_word_starts): handle negative count
16127
16128         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h,
16129         gtk/gtktexttag.c, gtk/gtktexttagtable.h, gtk/gtktexttagtable.c, 
16130         gtk/gtktextbuffer.h, gtk/gtktextbuffer.c: Convert everything to 
16131         GObject. No doubt will cause breakage.
16132
16133         * demos/gtk-demo/textview.c: remove hacks around
16134         non-GObject-ification of the text objects
16135
16136         * demos/gtk-demo/main.c (main): use g_object_set() to manipulate 
16137         the text tag
16138         
16139 2000-12-14  Havoc Pennington  <hp@pobox.com>
16140
16141         * configure.in: only AC_DEFINE(HAVE_XFT) if we actually determined
16142         that we have Xrender
16143
16144 Thu Dec 14 20:22:31 2000  Owen Taylor  <otaylor@redhat.com>
16145
16146         * gdk/{gdkdrawable.[ch],gdkpixmap.c,gdkwindow.c,x11/gdkwindow.c}:
16147         Add two virtualized functions gdk_drawable_get_clip_region - to
16148         get the clip region when drawing.
16149         
16150         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Rewrite to simple
16151         use invalidate_region.
16152
16153         * gdk/gdkwindow.c (gdk_window_invalidate_region): Clip to visible
16154         region.
16155
16156         * acconfig.h configure.in: Check for Xft. For now, assume
16157         that if Xft is found, Pango was compiled with Xft support
16158         as well.
16159
16160         * gdk/gdkcolor.h gdk/x11/gdkcolor-x11.c: Add 
16161         gdk_colormap_query_color().
16162         
16163         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_glyphs): Draw
16164         with Xft if appropriate.
16165
16166         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Create
16167         a pangoxft context if we have XFT and the environment
16168         variable GD_USE_XFT is set.
16169         
16170         * gdk/x11/gdkx.h (struct _GdkGCX11): Cache the fg_pixel
16171         and also possibly an XftDraw structure.
16172
16173         * gtk/gtkfontsel.c: Handle the case where the font from the
16174         style doesn't match any of the fonts a bit better.
16175         
16176         * gtk/testgtk.c: Add tabs between directional segments for
16177         hebrew/arabic test. (Not really necessary, just a little
16178         prettier.)
16179
16180 2000-12-14  Havoc Pennington  <hp@redhat.com>
16181
16182         * gtk/testtext.c (fill_file_buffer): fix unicode validation when
16183         reading a file
16184
16185 2000-12-14  Havoc Pennington  <hp@redhat.com>
16186
16187         * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove
16188         unused call to get_last_line()
16189
16190         * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER
16191         here until boxed is working (and maybe after that - we should
16192         really not gratuitously break old code)
16193
16194         * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out
16195         specific types for font_desc and tabs args, move them to
16196         GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get 
16197         fixed. Move GdkColor args to GTK_TYPE_POINTER also.
16198
16199         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily
16200         use GTK_TYPE_POINTER for signal signatures as a hack-around
16201
16202         * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and
16203         PangoTabArray
16204
16205         * gtk/gtktextlayout.c (line_display_iter_to_index): 
16206         make static
16207         (line_display_index_to_iter): make static
16208
16209         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
16210         to marshal a string not a boxed
16211
16212         * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text
16213
16214         * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char
16215         since the UTF-8 isn't validated yet
16216
16217         * gtk/gtktextsegment.c (char_segment_check_func): don't require
16218         lines to end in '\n'
16219         
16220         * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use
16221         forward_to_delimiters, and grapheme boundaries
16222         (gtk_text_view_delete_from_cursor): properly handle non-newline
16223         delimiters, and grapheme boundaries
16224
16225         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename
16226         to gtk_text_iter_forward_to_delimiters, and make it work properly
16227         if empty lines end with a character other than '\n'
16228
16229         * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor
16230         position
16231
16232 2000-12-15  Tor Lillqvist  <tml@iki.fi>
16233
16234         * gdk/makefile.{mingw.in,msc} (gdk_OBJECTS): Add gdkkeys.
16235
16236         * gtk/gtk.def
16237         * gdk/gdk.def: Update.
16238
16239         * gdk/win32/gdkmain-win32.c
16240         * gdk/win32/gdkkeys-win32.c: New file. Move some functions from
16241         gdkmain-win32.c here.
16242
16243         * gdk/win32/makefile.mingw.in (all): No need to make
16244         gdk-win32res.o here, the makefile one step up will call us to make
16245         it.
16246
16247         * gdk/win32/makefile.{mingw.in,msc} (gdk_win32_OBJECTS): Add
16248         gdkkeys-win32.
16249
16250         * gdk/win32/gdkcolor-win32.c: Silence gcc -Wall.
16251
16252         * gdk/win32/gdkevents-win32.c (gdk_events_init): Remove leftover
16253         call to g_source_add().
16254
16255         * gdk/win32/gdkgc-win32.c (BitmapToRegion): Plug memory
16256         leak. Thanks to Andreas Kemnade.
16257
16258 2000-12-13  Havoc Pennington  <hp@pobox.com>
16259
16260         * gtk/gtktextbtree.h: Remove double _ in front of some functions
16261
16262         * gtk/gtktext*.[hc]: update accordingly
16263         
16264 2000-12-13  Havoc Pennington  <hp@pobox.com>
16265
16266         * gtk/gtktextbtree.h: Put _ in front of every function in this 
16267         header file
16268
16269         * gtk/gtktext*.[hc]: update to reflect renamed btree functions
16270
16271 2000-12-13  Alex Larsson  <alexl@redhat.com>
16272
16273         * gdk/linux-fb/gdkmouse-fb.c (mouse_devs):
16274         Add support for ps2 intellimouse.
16275
16276         * gdkkeyboard-fb.c:
16277         Move shift-F1 repaint handling to xlate handler only.
16278         
16279         * docs/README.linux-fb:
16280         Add imps2 to docs.
16281         Document the new refresh keys.
16282         
16283 Tue Dec 12 23:46:44 2000  Tim Janik  <timj@gtk.org>
16284
16285         * gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
16286
16287         * gtk/gtkbox.c: change property types from (u)long to (u)int for
16288         ::position and ::padding.
16289
16290         * gtk/gtkcontainer.c: make ::border_width an INT property.
16291
16292         * gtk/gtkpacker.c: make ::position an INT property.
16293
16294         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
16295         guard against NULL h/v scrollbars, since this is used at construction
16296         time.
16297
16298         * gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
16299         internal gtk_clist_constructor().
16300
16301         * gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
16302         gtk_ctree_constructor().
16303
16304         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
16305         ::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
16306
16307         * docs/reference/Makefile.am: fun stuff, disabled docs generation
16308         again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
16309
16310         * gtk/gtkwidget.[hc]:
16311         removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
16312         and gtk_widget_get().
16313         (gtk_widget_new): use g_object_new_valist().
16314         (gtk_widget_set): use g_object_set_valist().
16315
16316         * gtk/gtkobject.[hc]:
16317         removed gtk_object_arg_get_info(), gtk_object_getv(),
16318         gtk_object_query_args(), gtk_object_newv(),
16319         gtk_object_class_add_signals(),
16320         gtk_object_class_user_signal_new(),
16321         gtk_object_class_user_signal_newv(),
16322         gtk_object_arg_set(), gtk_object_arg_get(),
16323         gtk_object_args_collect(),
16324         gtk_object_default_construct(),
16325         gtk_object_constructed(),
16326         GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
16327         removed nsignals, signals and n_args members from GtkObjectClass.
16328         (gtk_object_new): use g_object_new_valist().
16329         (gtk_object_set): use g_object_set_valist().
16330         (gtk_object_get): use g_object_get_valist().
16331         
16332         * gtk/gtkcompat.h: define gtk_object_default_construct().
16333         
16334         * gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
16335         g_object_new().
16336
16337         * gtk/*.c: removed gtk_object_class_add_signals() from class_init()
16338         fucntions, cleaned up method assignments (make sure your structures
16339         are setup properly before calling out). removed all GTK_CONSTRUCTED
16340         hacks ;)
16341
16342 Tue Dec 12 11:52:16 2000  Owen Taylor  <otaylor@redhat.com>
16343
16344         * gtk/gtkclist.c (gtk_clist_optimal_column_width): Fix 
16345         off-by-one error in checks. (Dave Lambert)
16346
16347 2000-12-12  Alexander Larsson  <alexl@redhat.com>
16348
16349         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_close, raw_close):
16350         Don't free gdk_fb_keyboard twice.
16351
16352 Tue Dec 12 08:24:42 2000  Tim Janik  <timj@gtk.org>
16353
16354         * gtk/testgtk.c:
16355         (create_tooltips): 
16356         (create_statusbar): get rid of object_signal:: GtkObject argument uses,
16357         use GObject swapped_signal:: properties instead.
16358
16359         * gtk/gtkcellrenderertoggle.c: 
16360         * gtk/gtkcellrenderertextpixbuf.c: 
16361         * gtk/gtkcellrenderertext.c: 
16362         * gtk/gtkcellrendererpixbuf.c: 
16363         * gtk/gtkcellrenderer.c:
16364         * gtk/gtktreeviewcolumn.c: s/[sg]et_param/[sg]et_property/, fixed
16365         missing warnings for invalid property ids, install properties
16366         with g_object_class_install_property() now.
16367         
16368         * gtk/gtksignal.c:
16369         (gtk_signal_emit): let g_signal_emit_valist() collect the values for us.
16370         
16371 Wed Oct 25 14:17:43 2000  Owen Taylor  <otaylor@redhat.com>
16372         
16373         * gtk/gtkwidget.[ch] (gtk_widget_is_focus): Add a function
16374         to determine if a window is the focus widget within
16375         its toplevel.
16376
16377         * gtk/gtkcontainer.[ch]: Fix the return type of ::focus
16378         to be boolean.
16379
16380         * gtk/gtkcontainer.c (gtk_container_real_focus): Move handling 
16381         of the case where the container CAN_FOCUS to here instead
16382         of having it in each individual move-the-focus place.
16383
16384         * gtk/gtkcontainer.c: Rewrite handling of left-right and up-down
16385         focusing to be geometric in a much more obvious sense. Arrowing
16386         around is still non-intuitive because it isn't perfect and
16387         because entries, etc, grab the arrow keys, but it at least
16388         usually will do what you expect now.
16389         
16390         * gtk/gtknotebook.[ch]: Many cleanups. Moved docs inline in this
16391         file.
16392
16393         * gtk/gtknotebook.c: Change tabs to be a single item in
16394         the focus chain. Make movement of focus on tabs with arrow
16395         keys wrap around.
16396         
16397         * gtk/gtknotebook.c (gtk_notebook_find_child): Add
16398         CHECK_FIND_CHILD macro to give informative error messages
16399         instead of silent returns.
16400
16401         * gtk/gtknotebook.c (gtk_notebook_init): Set the RECEIVES_DEFAULT 
16402         flag since we handle GdkReturn on the tabs.
16403
16404         * gtk/gtknotebook.c (gtk_notebook_expose_tabs): Invalidate
16405         windows rather than sending expose events directly.
16406
16407         * gtk/gtknotebook.[ch] docs/Changes-2.0.txt: Move structure 
16408         definition for GtkNotebookPage into .c file, since it is private.
16409
16410         * gtk/testgtk.c (create_notebook): Add option for 
16411         testing borderless notebook.
16412
16413         * gtk/testgtk.c (page_switch): Removed egregious poking
16414         around in GTK+ internals.
16415
16416         * docs/widget-system.txt: Remove references to GTK_REDRAW_PENDING.
16417
16418         * gtk/gtkclist.[ch]: Remove key press handler, handle focusing
16419         properly through gtk_clist_focus. Make the title headers a
16420         single item in the tab-focus chain, and make left-right wrap
16421         around.
16422
16423         * gtk/gtkwindow.c (gtk_window_focus): Add a custom
16424         focus method so that wrapping around works properly.
16425
16426         * gtk/gtktreeview.c: Remove calls to gtk_container_set_focus_child() - 
16427         that is handled for the widget now. 
16428
16429 Mon Dec 11 11:41:12 2000  Owen Taylor  <otaylor@redhat.com>
16430
16431         * gtk/gtkinvisible.c (gtk_invisible_init): Flag invisible
16432         widgets as TOPLEVEL.
16433
16434         * gtk/gtkwidget.c (gtk_widget_queue_resize): Don't assume
16435         TOPLEVEL widgets are containers.
16436
16437         * gtk/gtkinvisible.h: Remove useless include.
16438
16439 2000-12-11  Havoc Pennington  <hp@redhat.com>
16440
16441         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
16442         Handle chopping off \r\n and 0x2029 in addition to \n before
16443         passing to PangoLayout
16444
16445         * gtk/gtkimcontextsimple.c
16446         (gtk_im_context_simple_get_preedit_string): 
16447         return an empty string if no match is pending
16448
16449         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): add
16450         assertion that the returned preedit string was sane
16451
16452         * gtk/gtktext*.[hc], gtk/testtext.c, gtk/testtextbuffer.c:
16453         s/gtk_text_iter_next_char/gtk_text_iter_forward_char/g;
16454         s/gtk_text_iter_prev_char/gtk_text_iter_backward_char/g;
16455
16456 Mon Dec 11 10:02:26 2000  Owen Taylor  <otaylor@redhat.com>
16457
16458         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_finalize): 
16459         Fix up finalizer to chain to its parent.
16460
16461 2000-12-11  Alexander Larsson  <alexl@redhat.com>
16462
16463         * docs/README.linux-fb (GDK_KEYBOARD_TYPE):
16464         Clearified the difference between the keyboard types. Wrote a note
16465         about the magic sysrq key to get out of raw mode.
16466
16467 2000-12-09  James Henstridge  <james@daa.com.au>
16468
16469         * gdk/linux-fb/gdkmouse-fb.c (GdkFBMouseDevice): add prot struct
16470         member to hold masks for detecting the start of a protocol packet.
16471         (mouse_devs): add packet start masks for ps2 and ms device types.
16472         Left the mask for fidmour blank, as I have no idea what it should
16473         be.
16474         (handle_mouse_io): skip bytes until we get to the start of a
16475         packet.  My Logitech mouse seems to be passing an extra NULL pad
16476         byte, and GPM does a similar thing here.
16477         (gdk_fb_mouse_ms_open): changed error message to not say psaux, as
16478         this is the ms mouse driver.
16479         (gdk_fb_mouse_ms_packet): fix up button handling, which was
16480         completely broken except for button1.  It was checking the wrong
16481         bit in the packet for the status of the right mouse button, and
16482         wrongly assuming right == button2 rather than 3.  I fixed that and
16483         also added support for middle button (button2).
16484
16485 2000-12-08  Havoc Pennington  <hp@redhat.com>
16486
16487         * gtk/gtktextbtree.c (gtk_text_btree_insert): fix breakage here
16488         that cause a segfault on text insertion
16489
16490         * gtk/gtktextchild.c (gtk_text_child_anchor_queue_resize): fix 
16491         warning
16492
16493         * gtk/gtktextiter.c (test_log_attrs): use
16494         _gtk_text_buffer_get_line_log_attrs to speed things up a bit
16495
16496         * gtk/gtktextbuffer.c (_gtk_text_buffer_get_line_log_attrs): 
16497         Get log attrs for a line, using a cache stored on the buffer
16498         
16499         * gtk/gtkcolorsel.h (GTK_COLOR_SELECTION_GET_CLASS): fix typo,
16500         reported by Jeff Franks
16501
16502 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
16503
16504         * gdk/linux-fb/gdkmouse-fb.c (gdk_fb_mouse_ms_open):
16505         /dev/ttyS0 -> /dev/mouse
16506
16507 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
16508
16509         * gdk/linux-fb/gdkfont-fb.c (gdk_fontset_load):
16510         Added dummy gdk_fontset_load.
16511
16512 2000-12-08  Alexander Larsson  <alexl@redhat.com>
16513
16514         * docs/README.linux-fb:
16515         * docs/Makefile.am:
16516         Initial GtkFB docs.
16517         
16518         * gdk/linux-fb/Makefile.am:
16519         Define GDK_DATA_PREFIX.
16520
16521         * gdk/linux-fb/gdkmain-fb.c:
16522         Fix typo.
16523         Change default display to /dev/fb0.
16524
16525         * gdk/linux-fb/gdkpango-fb.c:
16526         Add $(prefix)/share/fonts/ to font path.
16527         
16528 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
16529
16530         * gdk/linux-fb/gdkkeyboard-fb.c:
16531         New file containing the abstracted keyboard driver. Most code
16532         taken from gdkinput-ps2.c
16533
16534         * gdk/linux-fb/gdkinput-ps2.c:
16535         Removed file.
16536         
16537         * gdk/linux-fb/Makefile.am:
16538         Added gdkkeyboard-fb.c, removed gdkinput-ps2.c.
16539
16540         * gdk/linux-fb/gdkcolor-fb.c:
16541         display->fb was renamed to display->fb_fd.
16542
16543         * gdk/linux-fb/gdkcursor-fb.c:
16544         gdk_mouse_get_info -> gdk_fb_mouse_get_info
16545
16546         * gdk/linux-fb/gdkinput.c:
16547         Moved gdk_input_init here from gdkinput-ps2.c
16548
16549         * gdk/linux-fb/gdkmain-fb.c:
16550         display->fb was renamed to display->fb_fd.
16551         Now the tty and the console is opened here instead
16552         of in the keyboard driver. Also check GDK_VT to see what
16553         tty to open.
16554         Move gdk_beep () here from gdkinput-ps2.c
16555         gdk_mouse_get_info -> gdk_fb_mouse_get_info
16556
16557         * gdk/linux-fb/gdkmouse-fb.c:
16558         Add header.
16559         gdk_mouse_get_info -> gdk_fb_mouse_get_info
16560         Return correct keyboard modifiers.
16561         GDK_MOUSETYPE -> GDK_MOUSE_TYPE for consistancy
16562
16563         * gdk/linux-fb/gdkprivate-fb.h:
16564         Add tty and vt info to display.
16565         Add orignal modeinfo storage to display
16566         Update global functions
16567
16568         * gdk/linux-fb/gdkwindow-fb.c:
16569         Added gdk_fb_window_find_focus().
16570         gdk_mouse_get_info -> gdk_fb_mouse_get_info
16571
16572 2000-12-07  Havoc Pennington  <hp@pobox.com>
16573
16574         * gdk/x11/gdkkeys-x11.c (gdk_keymap_lookup_key): fix name of 
16575         function, noticed by Alex
16576
16577 2000-12-06  Elliot Lee  <sopwith@redhat.com>
16578
16579         * configure.in: Detect freetype properly
16580
16581         * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of
16582         above.
16583
16584 2000-12-06  Alexander Larsson  <alexl@redhat.com>
16585
16586         * gdk/linux-fb/Makefile.am:
16587         Add gdkmouse-fb.c
16588         
16589         * gdk/linux-fb/gdkmouse-fb.c:
16590         New file. Abstracted the mouse drivers a bit.
16591
16592         * gdk/linux-fb/gdkcursor-fb.c:
16593         The cursor hide/show functions was moved here from gdkinput-ps2.c.
16594
16595         * gdk/linux-fb/gdkinput-ps2.c:
16596         Removed old mouse handling code. Moved cursor handling code
16597         to gdkcursor-fb.c, moved gdk_fb_window_send_crossing_events() to
16598         gdkwindow-fb.c. gdk_input_get_mouseinfo was renamed to
16599         gdk_mouse_get_info.
16600
16601         * gdk/linux-fb/gdkmain-fb.c:
16602         Pass NULL pointers for x,y in gdk_mouse_get_info call.
16603
16604         * gdk/linux-fb/gdkprivate-fb.h:
16605         Removed public gdk_fb_find_common_ancestor, added and renamed
16606         functions for the new mouse handling code.
16607
16608         * gdk/linux-fb/gdkwindow-fb.c:
16609         Moved gdk_fb_window_send_crossing_events here. added global
16610         variable gdk_fb_window_containing_pointer. made
16611         gdk_fb_find_common_ancestor static. gdk_input_get_mouseinfo was
16612         renamed to gdk_mouse_get_info.
16613
16614 2000-12-06  Alexander Larsson  <alexl@redhat.com>
16615
16616         * gdk/linux-fb/gdkevents-fb.c:
16617         Update to match latest gmain/gsource changes.
16618
16619         * gdk/linux-fb/gdkinput-ps2.c:
16620         Bogus gdk_keymap_get_entries_for_keycode implementation so that
16621         it links. Will be implemented later.
16622
16623 2000-12-03  Havoc Pennington  <hp@pobox.com>
16624
16625         * gdk/Makefile.am: add gdkkeys.[hc]
16626
16627         * gdk/gdkkeys.h, gdk/gdkkeys.c: Move all the keyval stuff to these
16628         files from gdk.h, gdk.c; add GdkKeymap type and operations on it.
16629
16630         * acconfig.h, configure.in: add checks and command line options
16631         for XKB
16632
16633         * gdk/x11/gdkkeys-x11.c: Implement the above functions
16634         
16635         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Put the keycode
16636         and group in the key event
16637
16638         * gdk/gdkevents.h (struct _GdkEventKey): Add a hardware_keycode
16639         field with the low-level hardware key code, and a group
16640         field with the keyboard group
16641
16642         * gdk/x11/gdkprivate-x11.h: include config.h for HAVE_XKB,
16643         and declare a couple globals used for keymap handling
16644         
16645         * gtk/gtkimcontextsimple.c: Implement ISO 14755 input method,
16646         hold down Shift-Control and type a hex number to get a Unicode 
16647         character corresponding to the hex number
16648         (gtk_im_context_simple_get_preedit_string): Fix cursor position
16649         (return bytes not chars)
16650
16651 2000-12-05  Elliot Lee  <sopwith@redhat.com>
16652
16653         * gdk/gdkcolor.h: Make GdkColor specify element sizes
16654         to avoid waste on 64-bit platforms.
16655
16656 Tue Dec  5 15:49:31 2000  Owen Taylor  <otaylor@redhat.com>
16657
16658         * INSTALL: Fix link to PNG home, remove reference
16659         to fribidi.
16660
16661         * gdk/x11/gdkevents-x11.c: Fix up for new GMain API.
16662         
16663         * gdk/win32/gdkevents-win32.c: Fix up for new GMain API. (Not
16664         tested.)
16665
16666         * gtk/gtkcheckmenuitem.c: Permanently turn on
16667         always_show_toggle.
16668
16669         * gtk/gtkclist.c (gtk_clist_get_pixtext): Allow mask to 
16670         be NULL. (Vladimir Klebanov, #26545)
16671
16672         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text): Fix 
16673         some signed/unsigned comparison problems. (#6510,
16674         David Kaelbling)
16675
16676         * gtk/gtkwidget.[ch] (gtk_widget_is_ancestor): Change
16677         return type to boolean (Oskar Liljeblad, #18648)
16678
16679 2000-12-05  Alexander Larsson  <alexl@redhat.com>
16680
16681         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_display_new):
16682         Remove bogus colormap setting.
16683
16684 2000-12-05  Alexander Larsson  <alexl@redhat.com>
16685
16686         * gdk/linux-fb/gdkcolor-fb.c:
16687         More complete colormap handling. Now GdkRGB work in 8 bpp modes.
16688
16689         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_image):
16690         Must set colormap.
16691         
16692 Tue Dec  5 13:17:53 GMT 2000  Tony Gale <gale@gtk.org>
16693
16694         * docs/tutorial/gtk-tut.sgml: DND updates
16695
16696 2000-12-05  Alexander Larsson  <alla@lysator.liu.se>
16697
16698         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
16699         Remove old debug g_warning().
16700         (gdk_fb_draw_drawable): The src argument can be either a wrapper
16701         or an implementation, just pass the implementation to draw_drawable_2.
16702         
16703         * gdk/linux-fb/gdkprivate-fb.h:
16704         Added GDK_IS_DRAWABLE_IMPL_FBDATA()
16705
16706         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
16707         clear and invalidate area when window is destroyed.
16708         (send_map_events): Remove old commented out code.
16709
16710 2000-12-05  Alexander Larsson  <alexl@redhat.com>
16711
16712         * gdk/linux-fb/gdkpango-fb.c:
16713         Use italic instead of oblique in font aliases.
16714         
16715         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic,
16716         _gdk_fb_gc_calc_state): Support GDK_XOR, add g_warning for
16717         other unsupported functions.
16718
16719 2000-12-04  Havoc Pennington  <hp@redhat.com>
16720
16721         * gtk/gtkpaned.c (gtk_paned_expose): fix this to be sane
16722
16723         * gtk/gtkvpaned.c (gtk_vpaned_expose): Add an expose handler
16724
16725         * gtk/gtkhpaned.c (gtk_hpaned_expose): Add an expose handler
16726
16727         * gtk/gtknotebook.c (gtk_notebook_draw_tab): put in a temporary 
16728         hack to avoid infinite loops (synthetic expose event) - 
16729         Owen has more appropriate fixes in a branch he'll check in later.
16730
16731         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle paragraph
16732         separator, CR, and CRLF as line ends
16733
16734         * gtk/gtktextbtree.c (gtk_text_btree_insert): on insertion, break
16735         into lines using pango_find_paragraph_boundary(); other bits of
16736         the widget are still going to be broken if the boundary isn't '\n'
16737         though
16738
16739 2000-12-04  Alexander Larsson  <alexl@redhat.com>
16740
16741         * gdk/linux-fb/gdkfont-fb.c (gdk_text_width): Divide size by 2, not
16742         multiply.
16743
16744         * gdk/linux-fb/gdkpango-fb.c:
16745         Copied some 26.6 scaling macros from pango to clean up the rounding.
16746         (pango_fb_font_get_glyph_info): Correct sign on x value.
16747
16748         * gdk/linux-fb/gdkprivate-fb.h:
16749         Removed unreferenced external functions.
16750
16751         * modules/linux-fb/Makefile.am: Use ` instead of '.
16752
16753         * modules/linux-fb/basic.c:
16754         Remove dead code. In particular the dummy lang engine which broke all
16755         pango layouts in GtkFB. Don't include tables-big.i anymore.
16756
16757         * modules/linux-fb/tables-big.i:
16758         Upgrade to latest version from pango. Left for reference, basic_ranges
16759         moved to basic.c.
16760         
16761 2000-12-04  Havoc Pennington  <hp@redhat.com>
16762
16763         Fix bugs Alex found:
16764         
16765         * gtk/gtktooltips.c (gtk_tooltips_force_window): nuke connection
16766         to "draw"
16767
16768         * gtk/gtkdnd.c (gtk_drag_highlight): nuke connection to "draw"
16769
16770         * gtk/gtkcolorsel.c (palette_new): nuke connection to "draw"
16771
16772         * gtk/gtklistitem.c (gtk_list_item_expose): Put the old _draw() 
16773         implementation in here, apparently the expose() implementation was
16774         dead code.
16775
16776 2000-12-04  Alexander Larsson  <alexl@redhat.com>
16777
16778         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
16779         Return positive descent.
16780
16781 2000-12-02  Havoc Pennington  <hp@pobox.com>
16782
16783         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove "draw" virtual
16784         method and signal
16785         
16786         * gtk/gtkwidget.c (gtk_widget_draw): Now just queues a draw then
16787         calls gdk_window_process_updates() to push the exposes through
16788         (gtk_widget_class_init): No more draw signal, no
16789         gtk_widget_real_draw()  
16790         
16791         * gtk/gtkbin.c (gtk_bin_draw): remove
16792
16793         * gtk/gtkbox.c (gtk_box_draw): remove
16794
16795         * gtk/gtkbutton.c (gtk_button_draw): remove
16796
16797         * gtk/gtkcalendar.c (gtk_calendar_draw): remove
16798
16799         * gtk/gtkcheckbutton.c (gtk_check_button_draw): remove
16800
16801         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_draw): remove
16802
16803         * gtk/gtkclist.c (gtk_clist_draw): remove
16804
16805         * gtk/gtkentry.c (gtk_entry_draw): remove
16806
16807         * gtk/gtkeventbox.c (gtk_event_box_draw): remove
16808
16809         * gtk/gtkfixed.c (gtk_fixed_draw): remove
16810
16811         * gtk/gtkframe.c (gtk_frame_draw): remove
16812
16813         * gtk/gtkhandlebox.c (gtk_handle_box_draw): remove
16814
16815         * gtk/gtkhpaned.c (gtk_hpaned_draw): remove
16816
16817         * gtk/gtklayout.c (gtk_layout_draw): remove
16818
16819         * gtk/gtklist.c (gtk_list_draw): remove
16820
16821         * gtk/gtklistitem.c (gtk_list_item_draw): remove
16822
16823         * gtk/gtkmenu.c (gtk_menu_draw): remove
16824
16825         * gtk/gtkmenubar.c (gtk_menu_bar_draw): remove
16826
16827         * gtk/gtkmenuitem.c (gtk_menu_item_draw): remove
16828
16829         * gtk/gtknotebook.c (gtk_notebook_draw): remove
16830
16831         * gtk/gtkoptionmenu.c (gtk_option_menu_draw): remove
16832
16833         * gtk/gtkpacker.c (gtk_packer_draw): remove
16834
16835         * gtk/gtkrange.c (gtk_range_draw): remove
16836
16837         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_draw): remove
16838
16839         * gtk/gtkspinbutton.c (gtk_spin_button_draw): remove
16840
16841         * gtk/gtktable.c (gtk_table_draw): remove
16842
16843         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_draw): remove
16844
16845         * gtk/gtktext.c (gtk_text_draw): remove
16846
16847         * gtk/gtktextview.c (gtk_text_view_draw): remove
16848
16849         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): remove
16850
16851         * gtk/gtktoolbar.c (gtk_toolbar_draw): remove
16852
16853         * gtk/gtktree.c (gtk_tree_draw): remove
16854
16855         * gtk/gtktreeitem.c (gtk_tree_item_draw): remove
16856
16857         * gtk/gtktreeview.c (gtk_tree_view_draw): remove
16858
16859         * gtk/gtkviewport.c (gtk_viewport_draw): remove
16860
16861         * gtk/gtkvpaned.c (gtk_vpaned_draw): remove
16862
16863         * gtk/gtkvscale.c (gtk_vscale_draw): remove
16864
16865         * gtk/gtkwindow.c (gtk_window_draw): remove
16866
16867 2000-20-01  Anders Carlsson  <andersca@gnu.org>
16868
16869         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): Fix bug when
16870         a GtkToggleButton is both insensitive and active, it was being
16871         drawn by the GtkButton draw handler which doesn't check the
16872         state. Now it's calling gtk_toggle_button_paint instead.
16873         
16874 2000-12-01  Havoc Pennington  <hp@redhat.com>
16875
16876         * gtk/gtktextdisplay.c (gtk_text_layout_draw): don't create
16877         dangling pointers to the appearance attributes from the 
16878         line display
16879
16880         * gdk/gdkdraw.c (gdk_drawable_get_image): allow negative
16881         width/height to mean "full width/height of drawable"
16882
16883         * gtk/gtktextview.h, gtk/gtktextview.c: Implement double/triple
16884         click to select word/line
16885         
16886         * gtk/gtktextiter.c (test_log_attrs): include paragraph delimiters 
16887         when getting log attrs. Get a slice, so that pixmaps and stuff
16888         are properly handled.
16889
16890         * gtk/gtktextbuffer.c (paste): Fix pasting to work properly if you
16891         paste into the selection (replaces selection now, previously
16892         crashed or added to selection). Reveals longstanding btree bug -
16893         select multiple lines, middle-click on the selection, boom. This
16894         isn't related to my changes though.
16895
16896         * gtk/gtkentry.c (gtk_entry_move_forward_word): Update to reflect
16897         PangoLogAttrs changes
16898         (gtk_entry_move_backward_word): ditto
16899
16900         * gtk/gtktextlayout.h, gtk/gtktextlayout.c: Make the iter motion
16901         functions return bool whether the iter moved onto a
16902         dereferenceable position.
16903  
16904         * gtk/gtktextview.h, gtk/gtktextview.c: Add a bunch of public
16905         functions for motion in terms of display lines.
16906
16907         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): Add function to
16908         get the buffer a mark is inside
16909         
16910 2000-12-01  Alexander Larsson  <alexl@redhat.com>
16911
16912         * gdk/linux-fb/Makefile.am:
16913         * modules/linux-fb/Makefile.am:
16914         Freetype 2 final uses freetype-config
16915
16916         * gdk/linux-fb/gdkpango-fb.c:
16917         Upgrade to use Freetype 2 final.
16918         More flexible support for font aliases, this also fixes a bug with
16919         GtkFontSelector, as the aliases must be visible in the font/family list,
16920         or GtkFontSelector reads uninitialized memory.
16921
16922 2000-11-30 Hidetoshi Tajima  <tajima@eng.sun.com>
16923
16924         * modules/input/gtkimcontextxim.c (setup_im): Add NULL argument to
16925         XGetIMValues to properly terminate variable argument list, and do
16926         NULL return check for ic_values and xim_styles.
16927
16928         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset):
16929         Restore preedit state after XmbResetIC().
16930         
16931         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic):
16932         XvaCreateNestedList() should take XvaNestedList, but not
16933         XvaNestedList*.
16934
16935         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset,
16936         preedit_draw_callback, preedit_caret_callback): Match
16937         "preedit-changed" signal name to "preedit_changed" to be
16938         consistent to the spec.
16939
16940         * gtk/gtkimcontextsimple.c (check_table):
16941         Match "preedit-changed" to "preedit_changed" to be consistent
16942         to the spec.
16943
16944 Thu Nov 30 23:03:04 2000  Owen Taylor  <otaylor@redhat.com>
16945
16946         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Properly handle
16947         gc->clip_region == NULL>
16948
16949 2000-11-30  Tor Lillqvist  <tml@iki.fi>
16950
16951         Changes by Hans Breuer:
16952         
16953         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
16954         Dont't use negative width and height as max_hints. This fixes
16955         Owen's recent testgtk changes for win32.
16956
16957         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get,
16958         gdk_win32_hdc_release): These are exported and may be called with
16959         other drawable types than our GdkDrawableImplWin32 (?).
16960
16961         * gdk/gdkwindow.c: Backing store appears to work on Windows now,
16962         so always #define USE_BACKING_STORE.
16963
16964         * gtk/gtktextdisplay.c (render_layout_line): Use g_print instead
16965         of printf for debugging output.
16966
16967         * gtk/gtktextlayout.c (allocate_child_widgets): Ditto.
16968         
16969         * gtk/gtktextview.c (gtk_text_view_child_allocated): Ditto.
16970
16971         * gtk/gtkmain.h (GTKMAIN_C_VAR): Win32 fix for dllimport
16972         declaration.
16973
16974         * gtk/gtktexttypes.h: Ditto.
16975
16976         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): Return a value
16977         (GDK_VoidSymbol) also if in case of arg check failure.
16978
16979         * gtk/gtkimcontextsimple.c
16980         (gtk_im_context_simple_get_preedit_string): Don't assign cursor
16981         position to the pointer, but to the variable it points to.
16982
16983         * gtk/makefile.msc.in (DEFINES): Define GTK_VERSION.
16984
16985         * gtk/gtk.def: Updates.
16986
16987 2000-11-29  Elliot Lee  <sopwith@redhat.com>
16988
16989         * gtk/gtkmodelsimple.c: Inherits from GTK_TYPE_OBJECT, not
16990         GTK_TYPE_TREE_MODEL.
16991
16992 2000-11-29  Alexander Larsson  <alexl@redhat.com>
16993
16994         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description):
16995         Set the size of the font from the description.
16996         (gdk_text_width): Gross hack that calculates the width
16997         of text by text_length * size/2. This is necessary because
16998         GtkLabel does some ugly gtk_string_width call to calculate
16999         an good size.
17000         (linux-fb/gdkprivate-fb.h): Removed unused field FT_Face.
17001
17002 Wed Nov 29 13:39:19 GMT 2000  Tony Gale <gale@gtk.org>
17003
17004         * docs/tutorial/gtk-tut.sgml: DND updates
17005
17006 2000-11-29  Alexander Larsson  <alexl@redhat.com>
17007
17008         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
17009         If you pass width or height == 0 to gdk_window_clear_area they
17010         should be calculated from the window size.
17011
17012 2000-11-29  Alexander Larsson  <alexl@redhat.com>
17013
17014         * gdk/linux-fb/gdkinput-ps2.c (move_pointer): If there is
17015         a grab, but no grab-cursor, use the cursor from the grabbed
17016         window. (gdk_fb_window_send_crossing_events): Send normal
17017         enter/leave notifications if grab and owner_events == TRUE.
17018
17019 2000-11-29  Alexander Larsson  <alexl@redhat.com>
17020
17021         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
17022         Do implicit button grabs, even if the window doesn't
17023         want the event.
17024         (gdk_fb_window_send_crossing_events): If there is a
17025         grab, only the grabbed window gets normal enter/leave
17026         notifications. On ungrab go from grabbed window to current.
17027         Don't send any notification to b when propagating from c -> b.
17028         If setting a grab on window, don't set prev_window.
17029         (handle_mouse_input): Send enter/leave events to the window the
17030         mouse is over, not the grabbed one.
17031         
17032 2000-11-28  Elliot Lee  <sopwith@redhat.com>
17033
17034         * gdk/gdkregion-generic.c: Zap warning.
17035         * modules/input/Makefile.am: Only build im-xim if USE_X11 is enabled
17036         * gtk/gtkrc.c: s/strcpy/memcpy/ to save a few nanoseconds.
17037
17038 2000-11-28  Alexander Larsson  <alla@lysator.liu.se>
17039
17040         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
17041         The cursor should be hidden if it is part of either the
17042         source or destination region. Not only if it is in both.
17043         (gdk_window_set_transient_for): Silence warnings.
17044
17045 2000-11-28  Alexander Larsson  <alexl@redhat.com>
17046
17047         * gdk/linux-fb/mifillarc.c (miFillArcSliceSetup):
17048         The default mode in X is Pie Arcs, therefore that is
17049         what Gtk+ uses.
17050
17051 2000-11-28  Alexander Larsson  <alexl@redhat.com>
17052
17053         * gdk/linux-fb/gdkinput-ps2.c:
17054         Implement correct EnterNotify/LeaveNotify:
17055         (gdk_fb_window_send_crossing_events): New function that sends
17056         all GdkCrossingEvents from the last mouse-window to the specified
17057         destination.
17058         (gdk_fb_window_visibility_crossing): Removed function.
17059         (handle_mouse_input): Use gdk_fb_window_send_crossing_events()
17060         (send_button_event, gdk_fb_cursor_reset): Use gdk_window_at_pointer
17061         instead of gdk_window_get_pointer() for better readability.
17062
17063         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab,
17064         gdk_fb_pointer_ungrab): Use gdk_fb_window_send_crossing_events.
17065
17066         * gdk/linux-fb/gdkprivate-fb.h:
17067         removed gdk_fb_window_visibility_crossing, added
17068         gdk_fb_window_send_crossing_events and gdk_fb_find_common_ancestor.
17069
17070         gdk/linux-fb/gdkwindow-fb.c (gdk_fb_find_common_ancestor):
17071         New function that finds the least common ancestor of two windows.
17072         (gdk_window_show, gdk_window_hide):
17073         Use gdk_fb_window_send_crossing_events.
17074         (gdk_fb_window_move_resize): Send configure events to toplevel
17075         windows. Use gdk_fb_window_send_crossing_events.
17076
17077 2000-11-27  Havoc Pennington  <hp@redhat.com>
17078
17079         * gtk/gtkprivate.h (enum): Remove a trailing comma
17080
17081 2000-11-27  Federico Mena Quintero  <federico@helixcode.com>
17082
17083         * gtk/gtkspinbutton.c (gtk_spin_button_set_adjustment): Connect to
17084         the "changed" callback of the adjustment.  We need to redraw the
17085         spin button's arrows when the adjustment's range changes.
17086         (adjustment_changed_cb): Draw the arrows.
17087         (gtk_spin_button_value_changed): Draw the arrows.
17088
17089 2000-11-23  Alexander Larsson  <alexl@redhat.com>
17090
17091         * gdk/linux-fb/gdkselection-fb.c:
17092         Initial selection implementation.
17093
17094         * gtk/gtkselection.c:
17095         if GDK_WINDOWING_FB defined, include linux-fb/gdkfb.h and look up
17096         requestor in gtk_selection_request.
17097         
17098         * gdk/linux-fb/gdkfb.h, gdk/linux-fb/gdkglobals-fb.c:
17099         Added gdk_selection_property atom.
17100
17101         * gdk/linux-fb/gdkprivate-fb.h:
17102         Export _gdk_selection_window_destroyed.
17103         Removed mask_off_x/y from GdkCursorPrivateFB.
17104         Removed hbearing, added top, left to PangoFBGlyphInfo.
17105
17106         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
17107         Call _gdk_selection_window_destroyed
17108         (_gdk_windowing_window_init): Don't call gdk_cursor_new() before
17109         the root window has been created.
17110         (static_dx_hack, static_dy_hack, compare_draw_rects,
17111         gdk_fb_window_move_resize): Remove unnecessary sort of rectangles
17112         in region. They are already sorted. Instead just traverse them in
17113         reverse if draw_direction < 0.
17114         
17115         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
17116         Double-clicks must be sent after the normal button_press.
17117         (gdk_fb_cursor_unhide): Remove usage of mask_off_x/y. Clean up.
17118         
17119         * gdk/linux-fb/gdkgeometry-fb.c (gdk_window_scroll):
17120         Pass _gdk_fb_screen_gc instead of NULL.
17121
17122         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
17123         Initialize gdk_selection_property.
17124         (gdk_event_make): Remove unused code.
17125
17126         * gdk/linux-fb/gdkcursor-fb.c:
17127         Make the pixmap for the cursor the same size as the mask. Also remove
17128         the mask_off_x/y fields in GdkCursorPrivateFB and combine
17129         _gdk_cursor_new_from_pixmap() and gdk_cursor_new_from_pixmap()
17130         Now the whole cursor is visible.
17131
17132         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
17133         Fix bug where xdest+height instead of ydest+height was used
17134         to calculate if the source and dest overlapped. This fixes the
17135         redraw bug when the main window in testgtk was scrolled when
17136         partially covered by a tall window.
17137         Copy rectangles in region in order depending on draw_direction.
17138         Also moved the draw_direction flipping of start_y and end_y into
17139         the gc functions, as this might not be what all of them want.
17140         (gdk_fb_draw_lines): Support dashed lines.
17141         (gdk_fb_draw_glyphs): Clean up glyph placement. Also fix positioning
17142         so that the text is positioned correctly (was 1 pixel high).
17143
17144         gdk/linux-fb/gdkgc-fb.c:
17145         Initialize cap_style to GTK_CAP_BUTT. This fixes a problem where
17146         all lines were drawn a pixel to short. Also checked the default of
17147         the rest of the values, and they're the same as X now.
17148
17149         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_glyph_info):
17150         Clean up pixel positioning of the glyphs. Just use bgy->top and
17151         bgy->left. Also used PANGO_PIXEL where appropriate and added 0.5
17152         to all divisions to get correct rounding behaviour.
17153
17154         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_draw_drawable_generic,
17155         gdk_fb_draw_drawable_memmove, gdk_fb_draw_drawable_aa_24):
17156         Moved start_y/end_y flip into draw_drawable implementations.
17157         Flip also x rendering when draw_direction < 0.
17158         Remove unneccesary multiply with draw_direction.
17159
17160 Wed Nov 22 14:11:19 GMT 2000  Tony Gale <gale@gtk.org>
17161
17162         * docs/tutorial/gtk-tut.sgml:
17163           - get rid of gtk_toggle_button_toggled FUD
17164           - start DND section - needs work - based on:
17165                 http://wolfpack.twu.net/docs/gtkdnd/
17166
17167 2000-11-22  Alexander Larsson  <alexl@redhat.com>
17168
17169         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
17170         Correct calculation of font metrics. Now GtkEntrys have sane
17171         size.
17172
17173 2000-11-22  Alexander Larsson  <alexl@redhat.com>
17174
17175         * gdk/gdktypes.h:
17176         Add new type GdkSpan
17177         
17178         * docs/reference/gdk/gdk-sections.txt,
17179         docs/reference/gdk/tmpl/regions.sgml, gdk/gdkregion-generic.c,
17180         gdk/gdkregion.h:
17181         Implement and document gdk_region_spans_intersect_foreach.
17182
17183         * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkrender-fb.c:
17184         Add new file gdkrender-fb.c which contains all core
17185         rendering code.
17186         Add gdk_fb_fill_rectangle_generic (old rectangle code) and
17187         gdk_fb_fill_rectangle_simple_16, gdk_fb_fill_rectangle_simple_32
17188         (optimized rectangle fillers).
17189
17190         * gdk/linux-fb/gdkdrawable-fb2.c:
17191         Move all rendering code to gdkrender-fb.c.
17192         Change from using GdkRectangles and GdkSegments for spans to GdkSpan.
17193         Use the new span intersection functions in gdk_fb_fill_spans.
17194         gdk_fb_draw_rectangle() clips filled rectangles and calls
17195         gc->fill_rectangle with the result.
17196         gdk_fb_fill_spans() gets extra argument "sorted".
17197
17198         * gdk/linux-fb/gdkevents-fb.c:
17199         Remove unused includes and defines.
17200         New function gdk_fb_get_time() to get correct time for events.
17201
17202         * gdk/linux-fb/gdkinput-ps2.c:
17203         Use gdk method of generating multiple-clicks (gdk_event_button_generate)
17204         Make sure to set the time of all events.
17205
17206         * gdk/linux-fb/gdkmain-fb.c:
17207         Use gdk_fb_get_time ().
17208
17209         * gdk/linux-fb/gdkprivate-fb.h:
17210         New virtual GC calls: fill_span & fill_rectangle.
17211         Export gdk_fb_get_time().
17212         gdk_fb_fill_spans() gets extra argument "sorted".
17213
17214         * gdk/linux-fb/mi*.c:
17215         Use GdkSpan instead of GdkRectangle.
17216         Pass correct sorted to gdk_fb_fill_spans. (sorted value taken
17217         from XFree 4 source)
17218         
17219 2000-11-22    <jrb@redhat.com>
17220
17221         * gtk/gtktreeview.c (gtk_tree_view_calc_size): It's amazing what
17222         reversing the order in an if statement will do.  Doing so managed
17223         to make the treemodelsort half work.  Other half will follow after
17224         I get the insert function fully fixed.
17225
17226 2000-11-21  Elliot Lee  <sopwith@redhat.com>
17227         * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
17228         more than 2 bits. Besides, I need to implement an evil hack. :)
17229
17230 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
17231
17232         * docs/tutorial/gtk-tut.sgml: minor corrections
17233
17234 2000-11-20  Jonathan Blandford <jrb@redhat.com>
17235         * gtk/gtktreemodelsort.h: Add convertion functions to let you
17236           convert to and from relative path's and iters.
17237
17238         * gtk/treestoretest.c: move to having a sorted/unsorted view.  Start
17239           testing sorting functions a bit better.  Currently broken -- will
17240           fix in morning.
17241
17242 2000-11-20  Havoc Pennington  <hp@redhat.com>
17243
17244         * gtk/gtkwidget.c: Documented a bunch of functions in here
17245         (gtk_widget_realize): Warn if you try to realize
17246         a widget with no parent that isn't a toplevel
17247         (gtk_widget_intersect): return a gboolean
17248
17249 2000-11-20  Havoc Pennington  <hp@redhat.com>
17250
17251         * gtk/gtktextview.c, gtk/gtktextlayout.c, gtk/gtktextchild.c,
17252         gtk/testtext.c: Semi-finish widget embedding. Need guffaw
17253         scrolling to be implemented in GDK to finish. Also, right now
17254         we just size_allocate all children on every layout change,
17255         which is pretty lame. Test commented out of testtext.c, 
17256         until it works better.
17257
17258 2000-11-20  Alexander Larsson  <alla@lysator.liu.se>
17259
17260         * gdk/linux-fb/gdkdrawable-fb2.c:
17261         Removed unused arguments from gdk_fb_drawable_get_pixel().
17262
17263         * gdk/linux-fb/gdkinput-ps2.c (handle_input_ps2):
17264         Renamed fidur specific mouse packet data in MouseDevice to
17265         generic. Used it in ps2 mouse handling code to avoid blocking
17266         reads.
17267
17268 Sat Nov 18 18:00:17 2000  Jonathan Blandford  <jrb@redhat.com>
17269
17270         * demos/gtk-demo/main.c: Changed to have the list become
17271         non-italic when the demo window is destroyed through an external
17272         event (like a close button).  Doing so found three bugs in the
17273         widget.
17274
17275         * demos/gtk-demo/*.c (do_*): Changed to return the toplevel window.
17276
17277         * gtk/gtkliststore.c (gtk_list_store_set_cell): emit "change" when
17278         we actually set the cell.
17279
17280         * gtk/gtktreestore.c (gtk_tree_store_set_cell): ditto
17281
17282         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
17283         free a leaked path.  Thanks memprof.
17284
17285 Sat Nov 18 11:58:17 2000  Owen Taylor  <otaylor@redhat.com>
17286
17287         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Fix 
17288         off-by-one error when destroying allocated segments
17289         on failure. (Elliot)
17290
17291 Sat Nov 18 11:45:09 2000  Owen Taylor  <otaylor@redhat.com>
17292
17293         * gtk/gtkcalendar.c: Patch from ChiDeok Hwang to fix
17294         memleaks found by Evan Martin.
17295
17296 Fri Nov 17 20:14:20 2000  Owen Taylor  <otaylor@redhat.com>
17297
17298         * Released 1.3.2
17299         
17300         * NEWS: Updates for 1.3.2
17301
17302 2000-11-17  Tor Lillqvist  <tml@iki.fi>
17303
17304         * gdk/gdkevents.h: Add comment that GdkXEvent isn't only for XEvent,
17305         but in general for window system specific events.
17306
17307         * gtk/gtk.def
17308         * gtk/makefile.mingw.in
17309         * gtk/makefile.msc.in: Update.
17310         
17311         * gtk/gtktexttypes.h: Mark variables for export/import from DLL.
17312
17313 Thu Nov 16 16:11:39 2000  Owen Taylor  <otaylor@redhat.com>
17314
17315         * gtk/Makefile.am (EXTRA_DIST): Do not, in any circumstances,
17316         distribute gtk.immodules.
17317
17318         * gtk/Makefile.am (install-data-local): Don't install the
17319         gtk.immodules file created for the uninstalled modules;
17320         instead run gtk-query-immodules after install
17321
17322 Wed Nov 15 21:51:31 2000  Owen Taylor  <otaylor@redhat.com>
17323
17324         * modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
17325         -rpath to the right install location.
17326
17327         * modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
17328         -export-dynamic.
17329
17330         * gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
17331         properly.
17332
17333 2000-11-15  Havoc Pennington  <hp@pobox.com>
17334
17335         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): Apply
17336         patch from Mikael Hermansson to temporarily stop blinking while
17337         the user is using the keyboard to type or navigate. 
17338
17339         Also, when blinking, stay on for longer than we stay off. Also,
17340         return from start_cursor_blink if !cursor_visible, to save
17341         checking that flag all over the place before we call
17342         start_cursor_blink.
17343
17344 Thu Nov 16 01:25:51 2000  Robert Brady  <robert@suse.co.uk>
17345
17346         * gtk/gtkrc.*: Remove the locale-specific gtkrc's, as they
17347         only contain a "fontset" line, which is now ignored.
17348
17349         * gtk/gtkentry.c (gtk_entry_button_release): Make 
17350         double-click-to-select-word work.
17351         
17352 Wed Nov 15 20:16:54 2000  Owen Taylor  <otaylor@redhat.com>
17353
17354         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
17355         Don't move back one char when we are actually at the end of the 
17356         paragraph.
17357
17358 2000-11-15  Robert Brady  <robert@suse.co.uk>
17359
17360         * modules/input/iminuktitut.c (inuktitut_compose_seqs): 
17361         'o' < 'p'.
17362         
17363         * gtk/gtkmain.c: s/CODSET/CODESET/, include <libintl.h> for
17364         bind_textdomain_codeset.
17365
17366         (gtk_init_check): Make the warning about translating default:LTR
17367         sterner.
17368         
17369 Wed Nov 15 18:39:40 2000  Owen Taylor  <otaylor@redhat.com>
17370
17371         * **/Makefile.am : remove unecessary rules for win32-specific
17372         config-substituted targets. If you want these rules, use
17373         --enable-maintainer-mode (called automatically by autogen.sh).
17374         Stops a lot of unneccessary make-time warnings.
17375
17376         * gtk/gtktext{layout,display}.c: Factor in total width as
17377         well as screen when figuring alignment for word-wrap as well as
17378         no wrap; this is necessary to handle lines that cannot be wrapped
17379         at all.
17380
17381 2000-11-15  Havoc Pennington  <hp@redhat.com>
17382
17383         * gtk/testtext.c: Implement essential color cycling feature
17384
17385 2000-11-15  Havoc Pennington  <hp@redhat.com>
17386
17387         * gtk/gtktextview.c (changed_handler): Invalidate the side windows
17388         when we invalidate the main window.
17389
17390         * gtk/testtext.c (create_view): Get rid of text_changed_callback,
17391         GtkTextView will now invalidate the side windows for us when text
17392         changes.
17393
17394 Wed Nov 15 16:02:20 2000  Owen Taylor  <otaylor@redhat.com>
17395
17396         * gtk/gtktextview.c (changed_handler): Call scroll_calc_now()
17397         unconditionally, since we may need to update the horizontal
17398         scrollbars even if the height didn't change.
17399
17400         * gtk/gtktextlayout.c (add_preedit_attrs): Always get
17401         the extra attrs, since some of them affect size.
17402
17403         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Factor in
17404         x_offset correctly.
17405
17406 2000-11-15  Havoc Pennington  <hp@redhat.com>
17407
17408         * gtk/gtktextlayout.c (set_para_values): If indent is negative,
17409         don't move the first line out into the margin, instead move the
17410         whole paragraph in order to make space for the first line within 
17411         the margin
17412
17413 2000-11-15  Havoc Pennington  <hp@redhat.com>
17414
17415         * gtk/gtktextview.c (changed_handler): offset redraw rect by
17416         xoffset in addition to yoffset, so horizontal scrolling doesn't
17417         break redraws
17418
17419 2000-11-15  Havoc Pennington  <hp@redhat.com>
17420
17421         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove extra pixel
17422         from the cursor
17423         (render_layout_line): fix reversed test that caused weird
17424         underlines to get drawn
17425
17426 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
17427
17428         * gdk/linux-fb/gdkprivate-fb.h:
17429         Fix debug macros.
17430         
17431 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
17432
17433         * gdk/linux-fb/gdkprivate-fb.h:
17434         Added virtual functions set_pixel, get_color,
17435         fill_span and draw_drawable to the GC.
17436         Added global _gdk_fb_screen_gc to use instead of
17437         NULL when drawing to the screen.
17438         Added _gdk_fb_gc_calc_state() prototype.
17439
17440         * gdk/linux-fb/gdkgc-fb.c:
17441         Call _gdk_fb_gc_calc_state() on any gc state change.
17442
17443         * gdk/linux-fb/gdkglobals-fb.c:
17444         Add _gdk_fb_screen_gc
17445                 
17446         * gdk/linux-fb/gdkdrawable-fb2.c:
17447         _gdk_fb_gc_calc_state() calculates best functions
17448         for the GC state and depth.
17449         Moved bpp specialized code to separate functions.
17450         Added optimized 24 bpp AA draw_drawable.
17451
17452         * gdk/linux-fb/gdkevents-fb.c:
17453         Silence gcc warning.
17454
17455         * gdk/linux-fb/gdkimage-fb.c:
17456         Use _gdk_fb_screen_gc
17457
17458         * gdk/linux-fb/gdkwindow-fb.c:
17459         Init and use _gdk_fb_screen_gc
17460
17461         * gdk/linux-fb/mitypes.h:
17462         Remove unused types.
17463
17464 2000-11-14  Havoc Pennington  <hp@pobox.com>
17465
17466         * gtk/gtktextlayout.c (add_cursor): use PANGO_PIXELS() to convert
17467         to pixels
17468
17469 2000-11-14  Havoc Pennington  <hp@pobox.com>
17470
17471         * gtk/testtextbuffer.c (fill_buffer): change "offset" to "rise"
17472
17473         * gtk/gtktexttypes.h (GTK_TEXT_UNKNOWN_CHAR): Add macro for
17474         unknown char, no real reason we were using a variable. 
17475         Remove gtk_text_unknown_char variable. Fix all the text widget
17476         files accordingly.
17477
17478         * gtk/gtktexttypes.c: Change "unknown character" to 0xFFFC, 
17479         since the Unicode spec seems to prefer that character for our
17480         purposes.
17481
17482 Wed Nov 15 02:18:01 2000  Robert Brady  <robert@suse.co.uk>
17483
17484         * gtk/gtkrc.c (gtk_rc_get_im_module_file): The return 
17485         value of g_getenv() isn't freeable, so g_strdup it.
17486
17487         * modules/input/inuktitut.c: Inuktitut input method.
17488
17489         * modules/input/Makefile.am: Build this.
17490         
17491 2000-11-14  Elliot Lee  <sopwith@redhat.com>
17492
17493         * gtk/Makefile.am: Install gtk.immodules, needed for operation
17494         of gtk programs.
17495
17496 Tue Nov 14 20:13:06 2000  Owen Taylor  <otaylor@redhat.com>
17497
17498         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): Fix
17499         reversed > that was causing Home to go to end of previous line.
17500
17501         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): Ignore
17502         modified-keypresses (leave for bindings.)
17503
17504         * modules/input/Makefile.am: Remove useless -export-dynamic
17505         from module LDFLAGS.
17506
17507 2000-11-14  Havoc Pennington  <hp@redhat.com>
17508
17509         * gdk/gdkpango.c (gdk_draw_layout_line): Draw underlines one pixel
17510         higher.
17511
17512         * gtk/gtktextdisplay.c (render_layout_line): Take rise into
17513         account. Also, render rise, underline, background, etc. for
17514         pixbufs as well as text. Also, draw underlines one pixel higher.
17515
17516         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): Add a
17517         PangoAttribute for the rise, so it gets drawn properly. Also,
17518         add the GtkTextAppearance attribute for pixbuf/widget segments
17519         as well; we should go ahead and have rise, underline, background,
17520         stipple work for those
17521
17522         * gtk/gtktexttag.c: Rename "offset" property to "rise" to match
17523         Pango
17524
17525 2000-11-15  Tor Lillqvist  <tml@iki.fi>
17526
17527         * gtk/makefile.{mingw,msc}.in (gtk_OBJECTS): Add new objects.
17528
17529         * gtk/gtk.def: Update.
17530
17531         * gtk/gtkrc.c: Can't check for G_OS_WIN32 until glib.h has been
17532         included.
17533         (gtk_rc_get_im_module_file): Use run-time installation directory
17534         on Win32.
17535
17536         * gdk/win32/rc/gdk.rc: Remove.
17537         * gdk/win32/rc/gdk.rc.in: New file.
17538         * gdk/win32/rc/Makefile.am: New file
17539         * gdk/win32/Makefile.am: Corresponding changes.
17540
17541         * gtk/gtk.rc: Remove.
17542         * gtk/gtk-win32.rc.in: New file.
17543         * gtk/Makefile.am: Corresponding changes.
17544
17545         * configure.in: Corresponding changes.
17546
17547         * gtk/gtkcompat.h.win32: Remove, useless. A distribution already
17548         has a built gtkcompat.h. Developers using CVS code on Win32 can
17549         hand-edit it from gtkcompat.h.in.
17550
17551         * gtk/makefile.{mingw,msc}.in: Correspondingly don't try to make
17552         gtkcompat.h from gtkcompat.h.win32.
17553
17554 2000-11-14  Havoc Pennington  <hp@redhat.com>
17555
17556         * gtk/gtktextview.c (gtk_text_view_drag_motion): Fix drag-and-drop
17557         to default to GDK_ACTION_MOVE if the drag is within a single
17558         widget. Defaults to GDK_ACTION_COPY between widgets.
17559
17560 Mon Nov 13 14:43:48 2000  Owen Taylor  <otaylor@redhat.com>
17561
17562         * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir
17563
17564         * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk
17565
17566         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles
17567         srcdir != builddir
17568
17569         * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk
17570
17571         * configure.in (GTK_VERSION): Up to 1.3.2
17572
17573         * modules/input/Makefile.am (im_xim_la_SOURCES): Add 
17574         gtkimcontextxim.h
17575
17576         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add
17577         missing doc comment.
17578
17579 2000-11-14  Alexander Larsson  <alexl@redhat.com>
17580
17581         * modules/linux-fb/basic.c:
17582         Use the glib iconv wrappers.
17583
17584 2000-11-13  Havoc Pennington  <hp@pobox.com>
17585
17586         * demos/gtk-demo/textview.c: spiff up the demo a bit; reveals
17587         still more bugs.
17588
17589         * gtk/gtktextview.c (gtk_text_view_value_changed): don't try to
17590         scroll the GdkWindows before realization.
17591
17592 2000-11-13  Havoc Pennington  <hp@redhat.com>
17593
17594         * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug 
17595         where GC didn't always get updated properly
17596
17597         * demos/gtk-demo/textview.c (create_tags): Use subattributes
17598         of fonts instead of setting the entire font
17599
17600         * gtk/testtext.c (fill_example_buffer): Use "size" instead of
17601         setting entire font
17602
17603         * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings
17604
17605         * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into 
17606         a bunch of individually-settable font attributes. You can still 
17607         use the "font" and "font_desc" args, they just set all the font
17608         attributes at once.
17609
17610 2000-11-13 Elliot Lee <sopwith@redhat.com>
17611
17612         * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
17613
17614 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
17615
17616         * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
17617         * gtk/gtktreemodel.c (gtk_tree_path_free): ditto
17618
17619         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): make
17620         work better.
17621
17622 2000-11-13  Havoc Pennington  <hp@redhat.com>
17623
17624         * gtk/gtkimmodule.c (gtk_im_module_init): Free the filename of 
17625         the module file.
17626
17627         * gtk/gtktexttag.c (gtk_text_attributes_copy): fix memory leak of
17628         dest->language
17629
17630         * gtk/testtext.c: Test pixels above/below/inside paragraphs
17631         settings
17632
17633         * gtk/gtktextview.c: Implement object args and setters/getters for
17634         all the aspects of the GtkTextAttributes that are not set from
17635         GtkWidget attributes. This is spacing, justification, margins,
17636         etc.
17637
17638         (gtk_text_view_set_arg)
17639         (gtk_text_view_get_arg): implement get/set for editable, wrap mode
17640         args
17641         (gtk_text_view_class_init): Add args for justify, left_margin,
17642         right_margin, indent, and tabs
17643         
17644
17645         * gtk/gtktextlayout.c (set_para_values): fix to display indent
17646         attribute properly
17647
17648         * gtk/gtktexttag.c: Remove left_wrapped_line_margin attribute, 
17649         replace with indent attribute
17650
17651         * gtk/gtktextlayout.c (set_para_values): multiply indent by
17652         PANGO_SCALE
17653
17654         * gtk/gtktextdisplay.c (render_para): Use PangoLayoutIter,
17655         rearranging code to do that
17656         (gtk_text_layout_draw): Pass in the y for the whole LineDisplay,
17657         i.e. don't subtract the top_margin first, just to keep
17658         all margin-futzing in one place.
17659
17660         * gdk/gdkpango.c (gdk_draw_layout): Use PangoLayoutIter
17661
17662         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Remove
17663         special case of last line, Pango now handles this itself.
17664         (gtk_text_layout_get_iter_at_pixel): Fix incorrect clamp of the 
17665         Y coordinate
17666         (gtk_text_layout_move_iter_to_x): port to use PangoLayoutIter
17667         (find_display_line_above): wasn't moving the byte index as it
17668         iterated over lines, so always returned byte 0. Also, port to use
17669         PangoLayoutIter.
17670         (find_display_line_below): same problem as
17671         find_display_line_above. Also, port to use PangoLayoutIter.
17672
17673 2000-11-13  Alexander Larsson  <alexl@redhat.com>
17674
17675         * gdk/linux-fb/*.[ch]:
17676         Massive reindent to gtk+ standard. My hands hurt.
17677
17678         * gdk/linux-fb/gdkcolor-fb.c:
17679         Move GdkColorPrivateFB from inherited to windowing_data
17680
17681         * gdk/linux-fb/gdkcursor-fb.c:
17682         _gdk_cursor_new_from_pixmap made static
17683
17684         * gdk/linux-fb/gdkdnd-fb.c:
17685         GdkDragContextPrivate moved to windowing_data
17686
17687         * gdk/linux-fb/gdkdrawable-fb2.c:
17688         Removed endian.h, use glib endianness macros instead
17689         Some cleanups in the usage of GDK_DRAWABLE_FBDATA
17690         and GDK_DRAWABLE_IMPL_FBDATA
17691
17692         * gdk/linux-fb/gdkfont-fb.c:
17693         Add empty gdk_font_load(). Needed for linking of Gtk+.
17694
17695         * gdk/linux-fb/gdkimage-fb.c:
17696         Removed endian.h, use glib endianness macros instead
17697         Moved GdkImagePrivateFB to windowing_data
17698         gdk_image_new_bitmap didn't always allocate enough
17699         memory.
17700
17701         * gdk/linux-fb/gdkinput-ps2.c:
17702         Added semi-working support for MS serial mice.
17703
17704         * gdk/linux-fb/gdkprivate-fb.h:
17705         s/GdkWindowPrivate/GdkWindowObject/
17706         Removed GdkWindowPrivate typedef
17707         s/GDK_DRAWABLE_P/GDK_DRAWABLE_FBDATA/
17708         Removed GDK_DRAWABLE_P
17709         Move GdkColorPrivateFB from inherited to windowing_data
17710         Moved GdkImagePrivateFB to windowing_data
17711
17712         * gdk/linux-fb/gdkvisual-fb.c:
17713         Removed some unused debug code.
17714
17715         * gdk/linux-fb/gdkwindow-fb.c:
17716         Use stock cursors instead of including X headers.
17717         s/GdkWindowPrivate/GdkWindowObject/
17718
17719         * gdk/linux-fb/mitypes.h:
17720         Removed unused types.
17721
17722         * modules/linux-fb/basic.c:
17723         Use the pango fribidi wrappers.
17724
17725 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
17726
17727         * gdk/linux-fb/gdkcolor-fb.c, gdk/nanox/gdkmain-nanox.c,
17728         gdk/win32/gdkcolor-win32.c, gdk/win32/gdkwin32id.c,
17729         gdk/x11/gdkcolor-x11.c, gdk/x11/gdkvisual-x11.c, gdk/x11/gdkxid.c,
17730         gtk/gtkgc.c, gtk/gtkrc.c, gtk/gtktext.c: GCompareFunc ->
17731         GEqualFunc where applicable.
17732         
17733         * gdk/linux-fb/gdkpango-fb.c: pango_font_description_compare ->
17734         pango_font_description_equal as changed in pango.
17735         
17736         * gdk/nanox/gdkmain-nanox.c: gdk_xid_compare -> gdk_xid_equal.
17737
17738         * gdk/win32/gdkcolor-win32.c: gdk_colormap_cmp -> gdk_colormap_equal.
17739
17740         * gdk/win32/gdkwin32id.c: gdk_handle_compare -> gdk_handle_equal.
17741
17742         * gdk/x11/gdkcolor-x11.c: gdk_colormap_cmp -> gdk_colormap_equal.
17743
17744         * gdk/x11/gdkvisual-x11.c: gdk_visual_compare -> gdk_visual_equal.
17745
17746         * gdk/x11/gdkxid.c: gdk_xid_compare -> gdk_xid_equal.
17747
17748         * gtk/gtkgc.c: gtk_gc_key_compare -> gtk_gc_key_equal and
17749         gtk_gc_drawable_compare -> gtk_gc_drawable_equal.
17750
17751         * gtk/gtkrc.c: gtk_rc_style_compare -> gtk_rc_style_equal and
17752         gtk_rc_styles_compare -> gtk_rc_styles_equal.
17753
17754 2000-11-12  Havoc Pennington  <hp@pobox.com>
17755
17756         * demos/gtk-demo/Makefile.am (democodedir): change demo install
17757         dir to datadir/gtk+-2.0/demo
17758
17759         * demos/gtk-demo/textview.c: Text widget demo; reveals all 
17760         sorts of text widget and Pango font bugs. Urgh.
17761
17762         * demos/gtk-demo/Makefile.am (demos): Add textview.c
17763
17764         * demos/gtk-demo/main.c (create_tree): Add instructions at top of
17765         tree that you should double click to see the demo. Fix 
17766         types of variables to reflect changed return values from 
17767         GtkTreeStore and GtkTreeViewColumn constructors.
17768
17769         * gtk/gtktextbuffer.c (gtk_text_buffer_new): ref/sink the
17770         newly-created buffer to prepare for GObject semantics
17771
17772         * gtk/testtext.c: don't leak the buffer with GObject semantics
17773
17774         * gtk/testtextbuffer.c: ditto
17775         
17776 2000-11-12  Havoc Pennington  <hp@pobox.com>
17777
17778         Rename this testgtk to gtk-demo to avoid confusion, and 
17779         install it so people can use it as a supplement to 
17780         the documentation.
17781         
17782         * demos/gtk-demo: Moved from demos/testgtk
17783
17784         * demos/testgtk: Removed
17785
17786         * configure.in: make Makefile in gtk-demo
17787         
17788         * demos/gtk-demo/Makefile.am: Install sample source to 
17789         datadir/gtk-demo (maybe there's a better place?), and 
17790         rename the binary to gtk-demo
17791         
17792         * demos/gtk-demo/main.c (load_file): Load installed sample
17793         source if source isn't found in pwd.
17794
17795 2000-11-09  Havoc Pennington  <hp@pobox.com>
17796
17797         * gtk/gtkentry.c (gtk_entry_class_init): Add an "invisible_char" 
17798         argument to set the char displayed when visibility == FALSE
17799         (gtk_entry_create_layout): If !entry->visible, replace 
17800         all chars with the "invisible char"
17801
17802         * gtk/testgtk.c: Test the invisible_char deal
17803         
17804 Mon Nov 13 02:16:33 2000  Robert Brady  <robert@suse.co.uk>
17805
17806         * gtk/gtkstyle.c (gtk_style_init): Fall back to "fixed" if we
17807         can't get a native font in the right encoding.
17808
17809 Mon Nov 13 00:09:29 2000  Robert Brady  <robert@suse.co.uk>
17810
17811         * configure.in: Chinese .pos have been renamed to zh_CN and zh_TW
17812         respectively.
17813
17814 Sun Nov 12 19:11:42 2000  Owen Taylor  <otaylor@redhat.com>
17815
17816         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
17817         Fix warning when moving between paragraphs.
17818
17819         * gtk/gtkentry.[ch]: Change move => move_cursor, 
17820         delete => delete_from_cursor, insert => insert_at_cursor
17821
17822 Sun Nov 12 22:52:51 2000  Robert Brady  <robert@suse.co.uk>
17823
17824         * modules/input/imviqr.c: A vietnamese VIQR-based input method.
17825
17826         * modules/input/imthai-broken.c: A Thai input method for use if
17827         Thai keys are really generating Latin1 keysyms.
17828
17829         * modules/input/Makefile.am: Build these.
17830
17831 Sun Nov 12 22:15:35 2000  Robert Brady  <robert@suse.co.uk>
17832
17833         * gtk/gtkfileselection.c, gdk/win32/gdkfont-win32.c: 
17834         g_filename_{to,from}_utf8 now takes an extra parameter.
17835
17836         * gtk/gtkcalendar.c (gtk_calendar_init): Convert output of
17837         strftime into UTF-8.
17838
17839         (column_from_x, gtk_calendar_paint_day_names): Support RTL
17840         calendars.
17841
17842         (gtk_calendar_paint_day_names): Draw day names in the right 
17843         place.
17844         
17845 Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>
17846
17847         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
17848         problem with using result of g_get_charset() backwards -
17849         pointed out by Mikael Hermansson <mikeh@bahnhof.se>.
17850
17851         * gtk/gtkwindow.c (gtk_window_compute_hints): Support
17852         negative min_width/height and max_width/height to
17853         mean "requisition"; this allows setting a window
17854         to be user-resizable in only one direction easily.
17855
17856         * gtk/testgtk.c (create_main_window): Remove hard-coded
17857         usize - set a default size in the vertical direction.
17858
17859 Sun Nov 12 13:33:01 2000  Owen Taylor  <otaylor@redhat.com>
17860
17861         * gtk/gtkrange.c: Add some missing casts. Support 
17862         2 and 3 button clicks on the arrows to mean 
17863         "move by pages" and "jump to end". (Like gtkspinbutton)
17864
17865 2000-11-12 Hans Breuer <Hans@Breuer.Org>
17866
17867         * gdk/win32/makefile.msc : reflect build module changes
17868
17869         * gdk/win32/gdkcursor-win32.c : can't cast to impl type directly
17870         from GdkPixmap*, cast implementation member instead.
17871
17872         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_drawable) : The
17873         passed in drawable is of type GdkDrawableImplWin32, the GdkPixmap *src 
17874         maybe either GdkDrawable or GdkDrawableImpl. Corrected all casts, add
17875         more Gdi functions return value checking. 
17876         (gdk_win32_draw_image) : use IMAGE_PRIVATE_DATA to get on the
17877         GdkImagePrivateWin32 *.
17878
17879         * gdk/win32/gdkevents-win32.c : Disable the SetCapture call to make
17880         menus useable again. Add #pragma message to keep reminded on this issue.
17881         (gdk_event_translate) : don't generate GDK_EXPOSE events for InputOnly
17882         windows. This allows to enable backing store on Win32!
17883
17884         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image) : the passed
17885         in drawable is of impl type. Correct specific type checks appropriate.
17886  
17887         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data) : check 
17888         GDK_WINDOW_DESTROYED before allocating new resources.
17889
17890         * gdk/win32/gdkselection-win32.c : Handle GDK_WINDOW_DESTROYED case
17891
17892         * gdk/win32/gdkwindow-win32.c : more Gdi return value checking,
17893         (gdk_window_foreign_new) initialize parent handle.
17894         (gdk_window_destroy_notify) add GDK_IS_WINDOW check
17895
17896         * gdk/win32/gdkgeometry-win32.c (_gdk_window_move_resize_child) :
17897         Let the GDI invalidate the window on MoveWindow call to fix scrolling
17898         problems (e.g. main buttons in testgtk). 
17899
17900 Sat Nov 11 23:07:30 2000  Owen Taylor  <otaylor@redhat.com>
17901
17902         * gtk/gtkentry.c (gtk_entry_key_press): Call 
17903         gtk_widget_activate for GDK_Return.
17904
17905         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): Fix handling
17906         of preedit cursor position.
17907
17908 Sun Nov  5 04:24:53 2000  Owen Taylor  <otaylor@redhat.com>
17909
17910         * gtk/gtkcellrenderertextpixbuf.c: Make parent_class
17911         static.
17912
17913 Tue Sep 19 10:54:22 2000  Owen Taylor  <otaylor@redhat.com>
17914
17915         * modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
17916         out support for multiple locales; that simple doesn't
17917         work reliably with current Xlib
17918
17919         * gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
17920         gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c: 
17921         Add support for positioning the cursor within the preedit string.
17922
17923 Mon Sep 18 23:56:32 2000  Owen Taylor  <otaylor@redhat.com>
17924
17925         * modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
17926         at XIM input method module.
17927
17928         * gtk/gtktextview.c: Check for bindings after passing
17929         events to im context filter.
17930
17931 Mon Sep 18 11:50:51 2000  Owen Taylor  <otaylor@redhat.com>
17932
17933         * gtk/gtktextlayout.c (add_preedit_attrs): Handle
17934         empty attribute lists properly.
17935
17936 Sun Sep 17 10:08:16 2000  Owen Taylor  <otaylor@redhat.com>
17937
17938         * gtk/queryimmodules.c (main): Return non-zero exit
17939         status if errors were encountered querying any
17940         modules.
17941
17942         * modules/input/Makefile.am (moduledir): remove
17943         leftover bin program target.
17944
17945         * docs/make-todo: Fix typo in error message.
17946
17947 Sat Sep 16 14:04:30 2000  Owen Taylor  <otaylor@redhat.com>
17948
17949         * configure.in: Add modules/input/Makefile
17950
17951 Sat Sep 16 14:01:52 2000  Owen Taylor  <otaylor@redhat.com>
17952
17953         * gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
17954         don't include gtkthemes.h.
17955
17956         * gtk/testgtk.c gtk/testtext.c: Set environment variables
17957         to point
17958
17959         * gtk/Makefile.am: Add new .c and .h files, build 
17960         gtk-query-immodules and use it to create a gtk.immodules
17961         file for use of test programs.
17962
17963         * gtk/gtkpreview.c: remove extra blank line.
17964
17965 Sat Sep 16 13:21:04 2000  Owen Taylor  <otaylor@redhat.com>
17966
17967         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table): 
17968         Add the ability to add extra tables beyond the default
17969         one, and also the ability to have compose sequences 
17970         that are prefixes of other compose sequences. 
17971
17972         * gtk/gtkimcontextsimple.c: Export a preedit string which
17973         consists of possible candidates for keystrokes that have
17974         been entered but not yet committed.
17975
17976         * gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
17977         gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
17978
17979         * gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems): 
17980         Add a function to add input-method switching menu items
17981         to a menu.
17982
17983         * gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
17984         when switching input methods.
17985
17986         * gtk/gtkimcontextsimple.[ch]: Change the format of
17987         the compose table to allow compose tables of different
17988         lengths / sequence.
17989
17990 Sat Sep 16 13:05:48 2000  Owen Taylor  <otaylor@redhat.com>
17991
17992         * gtk/gtkimmodule.[ch]: Support routines for loading
17993         GtkIMContext implementations dynamically at runtime.
17994
17995         * modules/input/imcyrillic-translit.c: A sample input
17996         method (based on GtkIMContextSimple with an extra table),
17997         which demonstrates preedit strings and the module
17998         system for input modules
17999
18000         * gtk/queryimmodules.c: Program to query the available
18001         input modules and write the results into a file.
18002          
18003         * gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
18004         extra config options "im_module_file" (cache file for
18005         input method modules), and "im_module_path" - path
18006         to look for modules when generating cache file.
18007
18008         This doesn't scale.
18009
18010 Sat Sep 16 13:09:06 2000  Owen Taylor  <otaylor@redhat.com>
18011
18012         * gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the 
18013         generic code from gtkthemes into a new abstraction
18014         GtkModule which has the logic for implementing
18015         a loadable module which implements a number of 
18016         GObject types.
18017
18018 Sat Sep 16 13:07:13 2000  Owen Taylor  <otaylor@redhat.com>
18019
18020         * gtk/gtkeditable.[ch]: Convert GtkEditable from
18021         a class into an interface  
18022         
18023         * gtk/gtkoldeditable.[ch]: Move the old editable
18024         implementation into here, so legacy widgets can
18025         still rely on the implemenation. GtkOldEditable
18026         exports GtkEditable. Make selection handling
18027         code use new text conversion functions (and
18028         handle UTF-8 as a side-effect). Use GtkClipboard
18029         for CLIPBOARD.
18030
18031         * gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
18032         Adopt to match above changes.
18033
18034         * gtk/gtkentry.[ch]: Implement GtkEditable directly,
18035         avoid GtkOldEditable implementation. Restructure
18036         to reduce number of places that modify state directly.
18037         Move to GtkBindingSet. Display the preedit string.
18038         Queue recomputation of PangoLayout and scroll position
18039         to improve effiency of doing complex changes naively.
18040         Add a menu with cut/copy/paste and input method selection.
18041
18042 Thu Sep 14 22:11:05 2000  Owen Taylor  <otaylor@redhat.com>
18043
18044         * gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
18045         to set preedit string and attributes; display preedit string by
18046         inserting string and attributes at cursor when creating the
18047         GtkTextLineDisplay.
18048
18049         * gtk/gtktextlayout.c: Move all conversions between byte
18050         positions in PangoLayout and GtkTextIter into new functions
18051         line_display_iter_to_index/index_to_iter that properly
18052         handle the preedit string.
18053
18054         * gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
18055         it to return const char * (eventually will end up
18056         as GCONST char *, most likely.)
18057
18058         * gtk/gtktextview.[ch]: Handle the preedit string, call
18059         gtk_im_context_reset() as necessary, add a menu to switch
18060         input methods.
18061         
18062         * gtk/gtktextlayout.[ch]: Remove useless
18063         gtk_text_layout_get_log_attrs() function.
18064
18065 2000-11-11  Tor Lillqvist  <tml@iki.fi>
18066
18067         * gdk/gdk.def
18068         * gtk/gtk.def: Update.
18069
18070         * gdk/win32/*.c: Add last argument to g_type_register_static()
18071         calls.
18072
18073         * gdk/win32/gdkwindow-win32.c: Silence gcc -Wall.
18074
18075         * gdk/win32/gdkevents-win32.c: Handle MSH_MOUSEWHEEL messages
18076         generated by older wheel mouse drivers. Get the correct y
18077         coordinate from WM_MOUSEWHEEL messages.
18078
18079         * gdk/win32/gdkgc-win32.c (gdk_win32_cap_style_to_string,
18080         gdk_win32_fill_style_to_string, gdk_win32_function_to_string,
18081         gdk_win32_join_style_to_string, gdk_win32_line_style_to_string):
18082         Debugging functions.
18083
18084         * gdk/win32/gdkprivate-win32.h: Declare them.
18085
18086         * gdk/win32/gdkinput-win32.h: Add declaration for
18087         gdk_input_window_destroy().
18088
18089         * gtk/makefile.mingw.in: Pass -DGTK_VERSION. Add gtktreemodel.o.
18090
18091 Fri Nov 10 19:06:41 2000  Jonathan Blandford  <jrb@redhat.com>
18092
18093         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): New
18094         function to help handle keeping things in sync.
18095
18096 Fri Nov 10 12:10:34 2000  Jonathan Blandford  <jrb@redhat.com>
18097
18098         * gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
18099         BOXED marshallers.
18100
18101         * gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
18102         (gtk_list_store_class_init): use the new BOXED marshallers.
18103
18104         * gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
18105         new_with_values to new_with_types.
18106         (gtk_tree_store_get_column_type): add this.
18107         (gtk_tree_store_class_init): use the new BOXED marshallers.
18108
18109         * gtk/gtkmarshal.list: Added a number of BOXED marshallers to
18110         mirror some POINTER marshallers.
18111
18112 Thu Nov  9 11:23:22 2000  Jonathan Blandford  <jrb@redhat.com>
18113
18114         * gtk/gtktreemodel.h (struct _GtkTreeIter): added more fields to
18115         allow more interesting iterators.  Also, made the lifecycle of
18116         iterators more explicit.
18117
18118         * gtk/gtktreemodelsort.[ch]: New model for sorting.
18119
18120         * gtk/gtk-boxed.defs (GtkTreeIter, GtkTreePath): Added two boxed
18121         types.
18122
18123 2000-11-09  Alexander Larsson  <alexl@redhat.com>
18124
18125         * demos/testgtk/menus.c:
18126         Changes to make the new testgtk compile after
18127         gtk_menu_append was removed.
18128
18129         * gdk/linux-fb/gdkdrawable-fb2.c
18130         (gdk_fb_get_depth, gdk_fb_get_visual,
18131         gdk_drawable_impl_fb_class_init): Implement
18132         these drawable functions. Now GtkImages work again.
18133
18134         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Change prototype.
18135
18136         * gdk/linux-fb/gdkprivate-fb.h (_gdk_fb_get_image): Change prototype.
18137         
18138         * gdk/linux-fb/gdkmain-fb.c (fb_modes_parse_mode,
18139         gdk_fb_setup_mode_from_name, gdk_fb_set_mode, gdk_fb_display_new);
18140         Parse /etc/fb.modes, use the environment variables GDK_DISPLAY_MODE,
18141         GDK_DISPLAY_DEPTH, GDK_DISPLAY_WIDTH, GDK_DISPLAY_HEIGHT.
18142
18143 2000-11-08  Havoc Pennington  <hp@pobox.com>
18144
18145         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add visible and
18146         visible_set args, don't know where these had gone, I thought they
18147         used to be there
18148
18149         * gtk/testtext.c: Add a menu item to apply invisibility tag;
18150         now we can test the feature and see that it's totally broken.
18151
18152 2000-11-08  Havoc Pennington  <hp@pobox.com>
18153
18154         Make DND copy pixbufs and tags when source and target share a 
18155         tag table.
18156         
18157         * gtk/gtktextview.c (gtk_text_view_drag_data_get): provide the
18158         in-process GTK_TEXT_BUFFER_CONTENTS target
18159         (gtk_text_view_drag_data_received): Paste from
18160         GTK_TEXT_BUFFER_CONTENTS if we receive it.
18161
18162 2000-11-08  Alexander Larsson  <alexl@redhat.com>
18163
18164         * docs/Changes-2.0.txt: Add note about GtkMenuPositionFunc
18165         API changes.
18166
18167         * gtk/gtkmenu.c: Add support for scrolling menus.
18168         Remove gtk_menu_append/prepend/insert, these have been moved to
18169         gtkcompat.h as #defines.
18170
18171         * gtk/gtkcompat.h.in:
18172         Add compatibility #defines for gtk_menu_append/prepend/insert
18173
18174         * gtk/gtkmenu.h: Add data needed for scrolling menus.
18175         GtkMenuPositionFunc gets an extra argument push_in.
18176         gtk_menu_append/prepend/insert removed.
18177         
18178         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Change menu
18179         positioning behaviour to fit to scrolling menus.
18180
18181         * gtk/gtkmenuitem.c (gtk_menu_item_forall): Don't recurse
18182         into menuitem->submeny. That is wrong, and broke torn
18183         off submenus of torn off menus, since they were unrealized
18184         when the first menu was unrealized.
18185
18186         * gtk/gtkmenushell.[ch]: Virtualize gtk_menu_shell_insert() and
18187         gtk_menu_shell_select_item() since these need to be overridden in
18188         GtkMenu.
18189
18190         * gtk/gtkoptionmenu.c (gtk_opttion_menu_position): Change menu
18191         positioning behaviour to fit to scrolling menus.
18192         (gtk_option_menu_key_press, gtk_option_menu_button_press): Select
18193         the current item so that it is prelighted when the menu pops up.
18194         This is a workaround to the fact that the menu doesn't get the
18195         initial enter event (due to grabs).
18196
18197         * gtk/gtkfilesel.c, gtk/gtkinputdialog.c, gtk/testgtk.c:
18198         s/gtk_menu_append/gtk_menu_shell_append/
18199
18200         * gtk/gtknotebook.c:
18201         s/gtk_menu_insert/gtk_menu_shell_insert/
18202
18203         * gtk/testgtk.c (create_menu, create_menus):
18204         Create the first menu with 50 items so that menu scrolling
18205         can be tested.
18206         
18207         
18208         Patch from Jonathan Blandford  <jrb@redhat.com>
18209
18210         * gtk/gtkmenuitem.[ch] (gtk_menu_item_toggle_size_request): new
18211         system to handle size requests.  First, we ask what the size of
18212         the toggle is.  Then, when allocating the size, we allocate the
18213         toggle_size first.  This way we can have multiple menu-item
18214         classes w/o needing a seperate class for each.
18215
18216         * gtk/gtkmenu.c (gtk_menu_size_request): Actually use the new system.
18217         * gtk/gtkmenu.c (gtk_menu_size_allocate): Use the new system.
18218
18219         * gtk/gtkcheckmenuitem.c
18220         (gtk_check_menu_item_toggle_size_request): New function to handle
18221         the toggle size-request.
18222
18223 2000-11-07  Havoc Pennington  <hp@redhat.com>
18224
18225         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location):
18226         Half-ass somewhat fix this function, so that scrolling to the
18227         insertion point works. Pango hacking is in the future to really
18228         fix it.
18229
18230         * gtk/gtktextview.c (gtk_text_view_drag_data_get): Don't calculate
18231         length of data, no longer used.
18232
18233         * gtk/gtktextbuffer.c (gtk_text_buffer_finalize): move destroy
18234         method contents in here, get rid of destroy method
18235         (gtk_text_buffer_insert_range): Fix some g_return_if_fail checks
18236         that were backward. Remove debug spew.
18237         (cut_or_copy): Make the clipboard work with insert_range to
18238         preserve tags and pixbufs, not just the primary selection.
18239
18240 2000-11-07  Havoc Pennington  <hp@redhat.com>
18241
18242         * gtk/gtktextmark.c (gtk_text_mark_is_visible): rename 
18243         to gtk_text_mark_get_visible
18244
18245         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): fix
18246         bug that was generating an invalid iterator
18247
18248         * gtk/gtktextiter.c (gtk_text_iter_get_offset): move call to
18249         ensure_char_offsets() in front of code placing the iter in an
18250         invalid state.
18251
18252         * gtk/gtktextbuffer.c (gtk_text_buffer_paste_primary):
18253         make override_location arg const
18254         (paste): Replace the selection if we paste into the 
18255         current selection
18256
18257         * gtk/gtkselection.h: Remove "GtkSelectioData"
18258         (struct _GtkSelectionData): move the definition here.
18259
18260         * gtk/gtktextbuffer.c (gtk_text_buffer_update_primary_selection):
18261         Export the GTK_TEXT_BUFFER_CONTENTS target for in-process copies
18262
18263         * gtk/gtktextiter.c (gtk_text_iter_get_tags): New function
18264
18265         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_range): implement
18266         (gtk_text_buffer_insert_range_interactive): implement
18267         (gtk_text_buffer_get_tags): Remove, replaced by
18268         gtk_text_iter_get_tags()
18269
18270         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Add a search
18271         limit parameter, to avoid infinite linear scan.
18272         (gtk_text_iter_backward_search): Add search limit
18273         (gtk_text_iter_forward_find_char): Add search limit
18274         (gtk_text_iter_backward_find_char): Add search limit
18275
18276 2000-11-07  Alexander Larsson  <alla@lysator.liu.se>
18277
18278         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
18279         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkimage-fb.c,
18280         gdk/linux-fb/gdkpango-fb.c, gdk/linux-fb/gdkpixmap-fb.c,
18281         gdk/linux-fb/gdkwindow-fb.c:
18282         use g_object_new() instead of g_type_create_instance() which
18283         is a private function for fundamental type implementations.
18284
18285         * gdk/linux-fb/gdkinput-ps2.c:
18286         Use MEDIUMRAW instead of RAW keycodes. Remove keyboard state-table
18287         instead just store the current modifier state. Add a (somewhat broken)
18288         keyboard input parser for XLATE mode too, if we couldn't use MEDIUMRAW.
18289         Rename exported function gdk_input_ps2_get_mouseinfo to
18290         gdk_input_get_mouseinfo.
18291
18292         * gdk/linux-fb/gdkmain-fb.c, gdk/linux-fb/gdkprivate-fb.h,
18293         gdk/linux-fb/gdkwindow-fb.c:
18294         gdk_input_ps2_get_mouseinfo was renamed to gdk_input_get_mouseinfo.
18295         
18296
18297 2000-11-02  Havoc Pennington  <hp@redhat.com>
18298
18299         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
18300         use stock buttons. Should be 100% source compatible, appropriate
18301         filesel fields now point to dialog->vbox and dialog->action_area.
18302         On the bizarre side, dialog->action_area and filesel->action_area
18303         are not the same widget.
18304         (gtk_file_selection_init): Put some padding around the selection
18305         entry, so it isn't touching the GtkDialog separator.    
18306
18307         * gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog, 
18308         use stock buttons, etc. Should also be source compatible.
18309         Set the dialog default title in _init not _new().
18310         
18311         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
18312         Use stock buttons; don't put a button box inside the existing
18313         dialog button box. Don't bother with push/pop colormap anymore.
18314
18315         * gtk/gtkdialog.h (GtkResponseType): Add a bunch of more 
18316         specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
18317         for message dialog, and necessary for the font selection and color
18318         selection with help and apply buttons.
18319         
18320         * gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer 
18321         to the created button widget. Set GTK_CAN_DEFAULT on the button.
18322         (gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
18323         between buttons, put less padding around the action area.
18324         (gtk_dialog_run): Exit on unmap rather than on destroy. 
18325         This will also exit the loop if the widget is hidden.
18326         (gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
18327         instead of GTK_RESPONSE_NONE; since we're already adding a bunch
18328         of GTK_RESPONSE_* stuff, this seems cleaner, and lets you 
18329         special-case delete event.
18330
18331         * gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
18332         formatting
18333         
18334 Sun Nov  5 05:32:39 2000  Tim Janik  <timj@gtk.org>
18335
18336         * gtk/testgtk.c (uposition_stop_configure): provide a toggle
18337         button to temporarily disable position recording in the
18338         "saved position" test.
18339
18340 Sat Nov  4 05:37:17 2000  Tim Janik  <timj@gtk.org>
18341
18342         * gtk/gtkthemes.c: added compat code that temporarily implements
18343         GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
18344         going to be revamped by owen's upcoming GtkModule patches, but
18345         untill then people want gtk to build, right? ;)
18346
18347 2000-11-04  Havoc Pennington  <hp@pobox.com>
18348
18349         * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member
18350         list
18351
18352         * docs/Changes-2.0.txt: Add note about
18353         gtk_container_get_toplevels()
18354
18355         * gtk/gtktextview.h: formatting
18356         
18357         * gtk/gtktextview.c: don't start descriptions with "Returns",
18358         confuses gtk-doc
18359
18360 Sat Nov  4 10:12:27 2000  Owen Taylor  <otaylor@redhat.com>
18361
18362         * autogen.sh: When doing sanity checking on ACLOCAL_FLAGS,
18363         look for glib-2.0.m4 not glib.m4. (Ali Abdin)
18364
18365 2000-11-03  Havoc Pennington  <hp@redhat.com>
18366
18367         * gtk/gtktexttagtable.c: Docs
18368         (gtk_text_tag_table_size): return a signed int
18369
18370         * gtk/gtktexttag.c: s/tkxt/text/g; write documentation
18371         (gtk_text_tag_event): make the event_object a GObject
18372
18373         * gtk/gtktextview.c: Write API docs for all functions.
18374
18375         * gtk/gtktextview.h: add GTK_TEXT_WINDOW_PRIVATE as return value
18376         for gtk_text_view_get_window_type() called on one of the private
18377         windows.
18378
18379         * gtk/gtktextview.c: Instead of accessing text_view->buffer
18380         directly, call get_buffer() which demand-creates a default
18381         buffer. So gtk_text_view_new() can be used to create a view with a
18382         default buffer in it, if you just want an empty text box users can
18383         put data in. Useful for GUI builders also.
18384
18385 2000-11-03  Pablo Saratxaga <pablo@mandrakesoft.com>
18386
18387         * gtk/gtkrc.zh_TW.*: moved gtkrc.zh_TW.Big5 to gtkrc.zh_TW.big5;
18388         the charset encodign portion MUST be in lowercase.
18389         * gtk/gtkrc.az: added file for Azeri language
18390
18391 2000-11-03  Havoc Pennington  <hp@redhat.com>
18392
18393         Get widgets working on the btree/buffer side. Display of them 
18394         still doesn't work.
18395         
18396         * gtk/gtktextview.c: start implementing child widget stuff
18397
18398         * gtk/gtktextiter.c (gtk_text_iter_get_child_anchor): new function
18399
18400         * gtk/gtktextlayout.c: handle embedded widgets
18401
18402         * gtk/gtktextdisplay.c: handle embedded widgets
18403
18404         * gtk/gtktextchild.c: Implement all the child anchor goo
18405
18406         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor): New
18407         function
18408
18409         * gtk/gtktextbtree.c: Add child anchor table to the btree struct
18410         (insert_pixbuf_or_widget_segment): abstract out common portions of 
18411         creating a child anchor or a pixbuf segment.
18412         (gtk_text_btree_create_child_anchor): new function
18413         (gtk_text_btree_unregister_child_anchor): new function
18414
18415         * gtk/gtkmarshal.list: added VOID:OBJECT,INT,INT for the
18416         allocate_child signal on GtkTextLayout
18417
18418         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): fix bogus return
18419         values
18420         (gtk_text_iter_get_child_anchor): new function
18421
18422         * gtk/gtktextbuffer.c (gtk_text_buffer_real_changed): Add a
18423         default handler for the changed signal, which calls
18424         gtk_text_buffer_set_modified(), instead of just always emitting
18425         changed then calling set_modified() manually. I guess this is
18426         maybe more flexible. It seems logical.
18427
18428 Fri Nov  3 08:58:38 2000  Tim Janik  <timj@gtk.org>
18429
18430         * gtk/gtkobject.c: _g_signal_handlers_destroy() is prefixed with '_'
18431         now.
18432
18433         * gtk/gtksignal.c: use g_signal_connect_closure_by_id() now.
18434
18435 Thu Nov  2 14:10:51 2000  Owen Taylor  <otaylor@redhat.com>
18436
18437         * gdk/x11/gdkdnd-x11.c: Fix a bunch of functions that should have
18438         been marked static.
18439
18440 2000-11-02  Havoc Pennington  <hp@redhat.com>
18441
18442         * gtk/testgtk.c (create_labels): had a test backward
18443
18444         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Copy the client-side GC
18445         fields, so the dest GC ends up with the correct clip origin, 
18446         etc. Fixes a bug where colored labels didn't redraw 
18447         properly.
18448
18449 2000-11-02  Alexander Larsson  <alexl@redhat.com>
18450
18451         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
18452         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkpango-fb.c,
18453         gdk/linux-fb/gdkpixmap-fb.c, gdk/linux-fb/gdkwindow-fb.c:
18454         Add last argument to t_type_register_static call.
18455         
18456         * gdk/linux-fb/gdkdrawable-fb2.c:
18457         Add last argument to t_type_register_static call.
18458         export the get_image drawable virtual function.
18459
18460         * gdk/linux-fb/gdkimage-fb.c:
18461         Add last argument to t_type_register_static call.
18462         rename gtk_image_get to _gdk_fb_get_image and
18463         export it for use by gdkdrawable-fb2.
18464
18465         * gdk/linux-fb/gdkprivate-fb.h:
18466         export _gdk_fb_get_image.
18467
18468         * gdk/linux-fb/gdkselection-fb.c:
18469         Add new api call stubs.
18470
18471         * gtk/Makefile.am:
18472         Missing ( in linux-fb part.
18473
18474         * modules/linux-fb/Makefile.am:
18475         Must link with gdk_pixbuf or get unresolved symbol.
18476
18477 2000-11-01  Havoc Pennington  <hp@pobox.com>
18478
18479         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Use 
18480         GTK_TYPE_TEXT_ITER and BOXED marshallers
18481
18482         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): ditto
18483
18484         * gtk/gtktexttag.c (gtk_text_tag_class_init): ditto
18485         
18486         * gtk/gtk-boxed.defs: add GtkTextIter
18487
18488         * gtk/gtkmarshal.list: Add marshallers for text widget that 
18489         properly use OBJECT and BOXED
18490
18491 2000-11-01  Havoc Pennington  <hp@redhat.com>
18492
18493         * gtk/testgtk.c (create_labels): Test set_markup_with_accel()
18494
18495         * gtk/gtklabel.c (set_markup): Convert the unichar to a GDK keyval
18496         before returning it. 
18497         
18498 2000-11-01  Havoc Pennington  <hp@redhat.com>
18499
18500         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
18501         Clip the rectangle to be rendered to the drawable, since
18502         get_from_drawable() requires a region within the drawable
18503
18504 2000-11-01  Havoc Pennington  <hp@redhat.com>
18505
18506         * gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
18507         from coordinates.
18508
18509 Wed Oct 25 20:10:57 2000  Owen Taylor  <otaylor@redhat.com>
18510
18511         * gdk/gdkevents.c (gdk_event_copy): Only ref the window if
18512         it isn't NULL.
18513
18514 2000-11-01  Havoc Pennington  <hp@pobox.com>
18515
18516         * gtk/gtklabel.c (gtk_label_set_attributes): Set a PangoAttrList
18517         on a label
18518         (gtk_label_finalize): unref the attr list if any.
18519
18520         * gtk/testgtk.c (create_get_image): close test on second click
18521         (make_message_dialog): close dialog if it exists
18522
18523         * gdk/gdkpango.c (gdk_draw_layout): Handle rise attribute
18524
18525         * gdk-2.0.pc.in (Requires): Make it require gdk-pixbuf-2.0 not
18526         gdk-pixbuf
18527
18528         * gtk/gtklabel.c (gtk_label_set_markup): new function to set label
18529         from Pango markup format
18530         (gtk_label_set_markup_with_accel): ditto but with accelerator
18531         parsing
18532
18533         * gtk/gtkimage.c (gtk_image_expose): reformatting.
18534
18535         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable): Hack to
18536         reflect current state of GDK - use gdk_drawable_get_colormap, etc.
18537         Check GDK_IS_WINDOW() not !GDK_IS_PIXMAP() to decide whether to 
18538         call gdk_window_get_origin().
18539
18540         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
18541         implement GDK_PIXBUF_ALPHA_FULL
18542         
18543 Wed Nov  1 03:43:42 2000  Tim Janik  <timj@gtk.org>
18544
18545         * gtk/gtksignal.c (gtk_signal_compat_matched): make use of
18546         g_signal_handlers_block_matched, g_signal_handlers_unblock_matched and
18547         g_signal_handlers_disconnect_matched to block/unblock and disconnect
18548         multiple handlers respectively, instead of only treating the
18549         first handler found (bug reported by owen).
18550
18551 Mon Oct 30 19:23:50 2000  Jonathan Blandford  <jrb@redhat.com>
18552
18553         * gtk/gtktreeview.c (gtk_tree_view_expand_row): New function.
18554
18555         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): New function.
18556
18557         * gtk/gtktreeview.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c
18558         gtk/gtktreestore.h, gtk/gtktreeview.h, gtk/gtktreeviewcolumn.c,
18559         gtk/gtktreeviewcolumn.h: Fixed inline docs.
18560
18561         * docs/reference/gtk/tree_widget.sgml: Proto intro to the tree
18562         widget.  Needs writing someday.
18563
18564         * docs/reference/gtk/tmpl/gtktree*sgml: Added the tree widget to
18565         the docs.
18566
18567 2000-10-30  Havoc Pennington  <hp@redhat.com>
18568
18569         * gtk/gtktextview.h, gtk/gtktextview.c:
18570         Rename delete_at_cursor delete_from_cursor, and 
18571         move to move_cursor.
18572
18573 2000-10-30  Havoc Pennington  <hp@redhat.com>
18574
18575         * gtktextbtree.c, gtktextbtree.h, gtktextbuffer.c,
18576         gtktextbuffer.h, gtktextchild.c, gtktextchild.h,
18577         gtktextchildprivate.h, gtktextdisplay.c, gtktextdisplay.h,
18578         gtktextiter.c, gtktextiter.h, gtktextiterprivate.h,
18579         gtktextlayout.c, gtktextlayout.h, gtktextmark.c, gtktextmark.h,
18580         gtktextmarkprivate.h, gtktextsegment.c, gtktextsegment.h,
18581         gtktexttag.c, gtktexttag.h, gtktexttagprivate.h,
18582         gtktexttagtable.c, gtktexttagtable.h, gtktexttypes.c,
18583         gtktexttypes.h, gtktextview.c, gtktextview.h:
18584
18585         Massive reindentation and reformatting. Arg alignment and comments
18586         still need fixing in various places.
18587
18588 2000-10-30  Havoc Pennington  <hp@redhat.com>
18589
18590         * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals
18591         to be named insert_at_cursor and delete_at_cursor so C++ can
18592         handle them.
18593
18594 2000-10-28  Tor Lillqvist  <tml@iki.fi>
18595
18596         * gtk/gtkrc.c (gtk_rc_append_default_module_path): Make sure not
18597         to get a double directory separator in case the home directory
18598         ends with one. This would cause trouble especially on Windows,
18599         where the path will be confused with the syntax for an an UNC
18600         (network share) path \\server\share\path.
18601         (gtk_rc_add_initial_default_files): Ditto.
18602
18603 Sat Oct 28 02:33:09 2000  Robert Brady  <robert@suse.co.uk>
18604
18605         * gtk/gtkmarshal.list: add new marshallers for GtkTextView.
18606
18607         * gtk/gtktextview.c: Use correct marshallers.
18608
18609 Fri Oct 27 17:56:26 2000  Jonathan Blandford  <jrb@redhat.com>
18610
18611         * gtk/gtkliststore.c: Not sure how this ever worked.  Fixed it to
18612         use new iter stuff, and added all the appropriate signals et al.
18613
18614         * gtk/gtktreedatalist.h: s/gtk/_gtk to further reinforce that this
18615         code is internal to gtk only.
18616
18617 2000-10-28  Tor Lillqvist  <tml@iki.fi>
18618
18619         * gtk/gtk.def
18620         * gtk/makefile.{mingw,msc}.in: Adjust to Tim's changes. Use
18621         glib-genmarshal etc.
18622
18623 Fri Oct 27 20:15:00 2000  Tim Janik  <timj@gtk.org>
18624
18625         * gtk/Makefile.am: added dependancies for testtextbuffer which broke
18626         parallel builds.
18627
18628 Fri Oct 27 18:51:44 2000  Tim Janik  <timj@gtk.org>
18629
18630         * gtk/gtksignal.[hc]: adapt to GSignal signature changes.
18631
18632 2000-10-27  Robert Brady  <robert@suse.co.uk>
18633
18634         * configure.in (ALL_LINGUAS): Add en@IPA (English, phonetic), 
18635         en_GB (British), ia (Interlingua).
18636
18637 2000-10-26  Havoc Pennington  <hp@redhat.com>
18638
18639         * gtk/gtktextiter.c (my_strrstr): fix constness warning
18640
18641         Fixed output of:
18642         nm -g -l .libs/libgtk-x11-1.3.so | grep ' T ' | grep -v gtk_ | grep -v GTK_
18643         
18644         * gtk/gtktextsegment.c (char_segment_new): rename
18645         (_char_segment_new_from_two_strings): rename
18646         (_toggle_segment_new): rename
18647         
18648         * gtk/gtkclipboard.c (ensure_clipboard_widget): make this static
18649         (make_clipboard_widget): make it static
18650         (text_get_func): static
18651         (text_clear_func): static
18652
18653         * gtk/gtkcolorsel.c (adjustment_changed): make this function
18654         static
18655         (hex_changed): make it static
18656         (hsv_changed): make it static
18657         (opacity_entry_changed): make it static
18658
18659         * gtk/gtktextbtree.c (change_node_toggle_count): rename with _gtk
18660         (toggle_segment_check_func): rename with _gtk
18661
18662         * gtk/gtktextchild.c (_pixbuf_segment_new): rename with _gtk
18663         (_widget_segment_new): rename
18664         (_widget_segment_add): rename
18665         (_widget_segment_remove): rename
18666         (_widget_segment_ref): rename
18667         (_widget_segment_unref): rename
18668
18669         * gtk/gtktextmark.c (_mark_segment_new): Rename
18670         _gtk_mark_segment_new   
18671
18672 2000-10-26  Havoc Pennington  <hp@redhat.com>
18673
18674         * gtk/gtkmarshal.list: add new marshallers used by the text widget
18675         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
18676         types
18677
18678         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
18679         marshaller types
18680
18681         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
18682         gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
18683         license on these files.
18684
18685         * gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
18686         work.
18687
18688         * gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to 
18689         runtime random number different for each tree, instead of 
18690         a constant I made up.
18691
18692 Thu Oct 26 07:36:16 2000  Tim Janik  <timj@gtk.org>
18693
18694         * gtk/Makefile.am: buncha cleanups, kludged build sources
18695         dependencies with a Makefile: oldest-source-stamp dependancy
18696         for the moment. automake is really fighting us here, with
18697         intentionally not allowing user-defined rules or dependancies
18698         prior to it's -include $(DEP_FILES) statement. sucks rocks!
18699
18700         * gtk/Makefile.am: added gtktextlayout.h and gtktextdisplay.h
18701         to public headers. tehy have a comment stating that they are
18702         "semi-public" aren't included by gtk.h and if enums popup there,
18703         they can be /*< skip >*/-ed.
18704
18705         * gtk/gtktextlayout.h: 
18706         * gtk/gtktextdisplay.h: indentation fixes, comment fixes,
18707         added LGPL... <SIGH>
18708
18709 Wed Oct 25 20:40:25 2000  Jonathan Blandford  <jrb@redhat.com>
18710
18711         * gtk/gtktreemodel.h: Got rid of GtkTreeNode, and changed it to
18712         GtkTreeIter.  Added iterators everywhere.
18713
18714         * gtk/gtktreeviewcolumn.c: Changed to use the iterators.
18715
18716         * gtk/gtktreeviewselection.c: Changed to use the iterators.
18717
18718         * gtk/gtktreestore.c: Changed to use the iterators.
18719
18720         * gtk/gtkliststore.c: Commented out the code.  Will convert to
18721         iterators tomorrow.
18722
18723         * gtk/gtkmodelsimple.c: Commented out the code.  Will convert to
18724         iterators tomorrow.
18725
18726         * gtk/treestoretest.c: Changed to use iterators.
18727
18728         * demos/testgtk/main.c: Moved to use the new iterator system.
18729
18730 Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>
18731
18732         * gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
18733         localization misbehaviour.
18734
18735         * gtk/gtk-boxed.defs: nuked "boxed" type GtkCTreeNode, since it's
18736         a useless type without copy/free.
18737
18738         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_TYPE_POINTER instead
18739         of GTK_TYPE_CTREE_NODE.
18740
18741 Thu Oct 26 00:51:52 2000  Tim Janik  <timj@gtk.org>
18742
18743         * gtk/gtksignal.c:
18744         (gtk_signal_emitv): use g_value_set_static_{string|boxed} where
18745         applicable.
18746
18747         * gtk/gtk-boxed.defs (GtkSelectionData): specify
18748         gtk_selection_data_copy and gtk_selection_data_free
18749         do GtkSelectionData work as params in signals.
18750
18751 Wed Oct 25 20:47:41 2000  Tim Janik  <timj@gtk.org>
18752
18753         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
18754         implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
18755         couldn't they at least give it a non-standard name?
18756         
18757         * gtk/gtktextlayout.c: arg! yet another implementation of
18758         gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
18759
18760         * gtk/gtktextbuffer.c: gotcha! captured a vagabonding
18761         gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
18762         home. now i know this _is_ a conspiracy.
18763
18764         * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
18765         ::state-changed.
18766
18767         * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): 
18768         (gtk_accel_group_create_add): marshaller signature fixups.
18769
18770         * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
18771         pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
18772
18773         * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
18774         anymore.
18775
18776 Tue Oct 24 23:59:21 2000  Tim Janik  <timj@gtk.org>
18777
18778         * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
18779         due to the signal system changes, it wouldn't build currently. to
18780         be fixed soon.
18781
18782         * docs/Changes-2.0.txt: GtkSignal/GSignal updates.
18783
18784         * gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
18785         so it needs gtk_marshal_VOID__ENUM() instead of
18786         gtk_marshal_NONE__UINT().
18787
18788         * gdk/gdk*.c: adapted type registration functions.
18789
18790         * gtk/gtkbindings.c:
18791         * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
18792         gone.
18793
18794         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
18795
18796         * gtk/gtkobject.c:
18797         (gtk_object_destroy):
18798         (gtk_object_shutdown): fixed recursion guards. basically we have to
18799         catch the case where any of GObject.shutdown() or gtk_object_destroy()
18800         is called during ::destroy, and avoid recursion there.
18801
18802         * gtk/gtktypeutils.c:
18803         * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
18804         boxed_copy/boxed_free. this needs a more general solution based on a
18805         publically installed code-generator utility.
18806
18807         * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
18808         glib's gobject has support for that now.
18809         define GtkSignalMarshaller in terms of GSignalCMarshaller.
18810
18811 Mon Oct 23 09:36:42 2000  Tim Janik  <timj@gtk.org>
18812
18813         * gtk/gtksignal.[hc]:
18814         * gtk/gtkmarshal.[hc]:
18815         * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
18816         compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
18817         removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
18818         care of that.
18819
18820         * *.c: marshaller name fixups.
18821
18822         * gtk/gtkmarshal.list: added a comment briefing the format.
18823
18824 Sun Oct 22 23:14:39 2000  Tim Janik  <timj@gtk.org>
18825
18826         * gtk/gtksignal.[hc]: nuked old implementation. we mostly have
18827         compatibility macros here now. more specifically, most of
18828         the API is preserved (yes, _most_, nonwithstanding the
18829         following exceptions listed, the API is stil lHUGE ;)
18830         things that got removed completely:
18831         GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
18832         gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
18833         gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
18834         gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
18835         gtk_signal_remove_emission_hook().
18836         non-functional functions variants:
18837         gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
18838         the GtkCallbackMarshal argument to gtk_signal_connect_full() is
18839         not supported anymore.
18840         (gtk_signal_compat_matched): new internal function to aid
18841         implementation of the compatibility macros, it  provides
18842         functionality to block/unblock/disconnect handlers based
18843         on func/data.
18844
18845         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
18846
18847         * *.c: adaptions to new type registration API signatures.
18848
18849 Fri Oct 20 15:26:33 2000  Tim Janik  <timj@gtk.org>
18850
18851         * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
18852
18853 2000-10-25  Robert Brady  <robert@suse.co.uk>
18854
18855         * gdk/x11/gdkproperty-x11.c (gdk_property_get, gdk_property_change,
18856         gdk_property_delete): If window == NULL, assume the root window.
18857         (restoring the behaviour that was in 1.2).
18858         
18859         * gtk/testtext.c (save_buffer): Allow creation of new files when
18860         saving.
18861
18862         (fill_file_buffer): Don't die if a UTF-8 sequence is split across
18863         calls to read().
18864
18865 2000-10-25  Tor Lillqvist  <tml@iki.fi>
18866
18867         * gdk/gdkwindow.c: Include x11/gdkx.h only when building for X11.
18868
18869         * gdk/win32/gdkdrawable-win32.c
18870         * gdk/win32/gdkimage-win32.c
18871         * gdk/win32/gdkprivate-win32.h: Corresponding changes as in the
18872         X11 backend.
18873
18874         * gdk/win32/gdkcc-win32.c
18875         * gdk/win32/gdkcolor-win32.c
18876         * gdk/win32/gdkfont-win32.c
18877         * gdk/win32/gdkinput-win32.c
18878         * gdk/win32/gdkmain-win32.c
18879         * gdk/win32/gdkproperty-win32.c: Silence gcc -Wall.
18880
18881 2000-10-24  Havoc Pennington  <hp@redhat.com>
18882
18883         * gtk/gtktextview.c (gtk_text_view_scroll_to_mark_adjusted): make
18884         it a static function
18885
18886         * gtk/gtktextbtree.c (gtk_text_btree_tag): Gee, maybe we should
18887         redraw text when a tag is applied to it.
18888
18889         * gtk/gtktexttag.c (gtk_text_tag_affects_size)
18890         (gtk_text_tag_affects_nonsize_appearance): private functions to
18891         see if a tag requires various kinds of redraw/layout to be queued
18892         up.
18893
18894         * gtk/gtktexttag.h (struct _GtkTextTag): Remove relief crackrock
18895
18896         * gtk/testtext.c (fill_example_buffer): Put the cursor 
18897         at the start of the buffer, so search works by default
18898
18899         * gtk/gtktextiter.c (lines_match): init match_start always
18900
18901         * gtk/gtktextbuffer.c (gtk_text_buffer_get_iter_at_line_index): New
18902         function, get iter at a line + a byte index
18903
18904         * gtk/gtktextiter.c (gtk_text_iter_set_line_index): New function,
18905         to set byte position within a line
18906         (gtk_text_iter_check): remove leftover G_BREAKPOINT thing
18907
18908 2000-10-23  Havoc Pennington  <hp@redhat.com>
18909
18910         * gtk/testtext.c: Re-enable the "find" dialog
18911
18912         * gtk/testgtk.c: Add test for gdk_drawable_get_image
18913         
18914         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix bug where
18915         the arguments to gdk_draw_drawable were in the wrong order
18916         (gdk_window_paint_init_bg): This function was ignoring the
18917         init_region, instead of clipping to it, so the entire backing
18918         pixmap was cleared on every begin_paint()
18919         (gdk_window_begin_paint_region): Hmm, the same list-walking bug
18920         was in here again, the loop kept using the same GtkWindowPaint
18921         over and over.
18922         (gdk_window_begin_paint_region): Fix a bug where we had two
18923         x_offset instead of x_offset and y_offset
18924
18925         * gdk/gdkdraw.c (gdk_drawable_get_image): get composite drawable
18926         before we get the image.
18927         (gdk_draw_drawable): get the composite before we draw the drawable.
18928         (gdk_drawable_real_get_composite_drawable): default
18929         get_composite_drawable implementation that returns the drawable 
18930         itself
18931
18932         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Add
18933         get_composite_drawable virtual function
18934
18935         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix a cheesy
18936         list-walking bug
18937
18938         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable): Add a hack to
18939         make this work if the source drawable is a GdkDrawableImplX11
18940         instead of a public drawable type. This is really broken; the
18941         problem is that GdkDrawable needs a virtual method get_xid(), but
18942         of course that doesn't work in practice. Enter RTTI.
18943
18944         Also, improve mismatched depth message.
18945
18946         * gdk/gdkpixmap.c (gdk_pixmap_get_image): Implement get_image for
18947         GdkPixmap
18948
18949         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_class_init):
18950         install _gdk_x11_get_image as our implementation of get_image
18951         
18952         * gdk/x11/gdkimage-x11.c (gdk_image_get): Rename to
18953         _gdk_x11_get_image and export for use in gdkdrawable-x11.c
18954
18955         * gdk/gdkimage.c (gdk_image_get): Make this just a wrapper around
18956         gdk_drawable_get_image
18957
18958         * gdk/gdkdraw.c (gdk_drawable_get_image): call virtual get_image
18959
18960         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Virtualize
18961         get_image
18962
18963         * gtk/gtktreestore.c (gtk_tree_store_get_node): remove weird
18964         trailing semicolon after for loop
18965
18966 Mon Oct 23 12:07:57 2000  Owen Taylor  <otaylor@redhat.com>
18967
18968         * gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
18969         where font_desc for widget's context lagged widget's font_desc by
18970         one step.
18971
18972 2000-10-22  Tor Lillqvist  <tml@iki.fi>
18973
18974         * gdk/win32/gdkgc-win32.c
18975         * gdk/win32/gdkimage-win32.c: Remove gcc -Wall warnings.
18976
18977         * gtk/makefile.mingw.in
18978         * gtk/gtk.def: Updates.
18979
18980         * gtk/testgtk.c: sleep() is called _sleep in MS's C
18981         library.
18982
18983         * gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
18984
18985         * gtk/makefile.msc: Remove
18986
18987         * gtk/makefile.msc.in: New file, like makefile.mingw.in.
18988
18989         * gtk/Makefile.am: Add it.
18990
18991         * configure.in: Generate it.
18992
18993         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
18994         * gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
18995         something even if not implemented, to satisfy picky MSVC.
18996
18997         Patches by Hans Breuer:
18998         
18999         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_glyphs): Call
19000         SetBkMode() and SetTextAlign() before calling
19001         pango_win32_render().
19002
19003         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values):
19004         Set hcliprgn to NULL after destroying it.
19005         (gdk_gc_set_clip_rectangle): Delete hcliprgn and set to NULL.
19006
19007         * gdk/win32/gdkgeometry-win32.c
19008         (_gdk_windowing_window_queue_antiexpose): More effective
19009         implementation.
19010
19011         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use drawable's
19012         depth as default, not the visual's.
19013
19014         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Guard
19015         against empty title.
19016
19017         * gdk/win32/gdkprivate-win32.h: Define a helper macro,
19018         IMAGE_PRIVATE_DATA.
19019
19020         * gdk/win32/gdkimage-win32.c: Use it.
19021
19022 2000-10-22  Robert Brady  <robert@suse.co.uk>
19023
19024         * configure.in: Check for bind_textdomain_codeset
19025
19026         * gtk/gtkmain.c (gtk_init_check): If bind_textdomain_codeset 
19027         present, make use of it.
19028
19029         Add a translatable string "default:LTR" which, if translated
19030         to "default:RTL", will cause the default direction to be
19031         Right-to-Left.
19032
19033         * gtk/gtkrange.h, gtk/gtkrange.c: Take into account the widget 
19034         direction if marked as flippable.
19035
19036         * gtk/gtkhscale.c: Mark widget as flippable.
19037         
19038 2000-10-04  Havoc Pennington  <hp@redhat.com>
19039
19040         * gtk/testgtk.c (create_buttons): create some stock buttons
19041         with the default accel group
19042         (create_image): test some new GtkImage features
19043         (make_message_dialog): test GtkMessageDialog
19044         (create_modal_window): fix someone's bizzarro indentation
19045
19046         * gtk/gtkwindow.h, gtk/gtkwindow.c: Implement 
19047         GTK_WIN_POS_CENTER_ON_PARENT. 
19048         Add "destroy with parent" setting, which means the window goes
19049         away with its transient parent.
19050         (gtk_window_get_default_accel_group): get the default accel group
19051         for the window.
19052         (gtk_window_set_destroy_with_parent): set/unset destroy with
19053         parent flag
19054         (gtk_window_read_rcfiles): invalidate icon set caches
19055         after reloading rcfiles 
19056
19057         * gtk/gtkenums.h (GtkWindowPosition): add
19058         GTK_WIN_POS_CENTER_ON_PARENT, which centers a dialog 
19059         on its parent window when the dialog is mapped for the first time.
19060
19061         * gtk/gtkmessagedialog.h, gtk/gtkmessagedialog.c: Add 
19062         a simple message dialog class
19063         
19064         * gtk/gtkdialog.c (gtk_dialog_init): Connect delete event 
19065         handler to emit response signal, and maybe later it would
19066         honor a hide_on_delete flag - though that isn't there yet.
19067         Set border width on the vbox to 2, so we get some padding.      
19068         Use a button box for the action area.
19069         (gtk_dialog_key_press): synthesize a delete event if Esc
19070         is pressed and the GtkWidget key press handler didn't 
19071         handle the escape key.
19072         (gtk_dialog_new_with_buttons): new function creates a dialog
19073         with some default buttons in it.
19074         (gtk_dialog_add_action_widget): add an activatable widget
19075         as a button in the dialog - you can also add a non-activatable
19076         widget by accessing the action area directly.
19077         (gtk_dialog_add_button): add a simple button - stock ID or 
19078         label - to the action area
19079         (gtk_dialog_response): emit response signal
19080         (gtk_dialog_run): block waiting for the dialog, return 
19081         the response. Override normal delete_event behavior, so that 
19082         delete_event does nothing inside gtk_dialog_run().
19083         * gtk/gtkdialog.h, gtk/gtkdialog.c: Add "response" signal
19084         emitted when an action widget is clicked or the dialog gets
19085         delete_event
19086
19087         * gtk/gtk.h: add gtkmessagedialog.h
19088
19089         * gtk/Makefile.am: add gtkmessagedialog.[hc]
19090
19091 2000-10-18  Havoc Pennington  <hp@redhat.com>
19092
19093         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): Fix a bug 
19094         where any number of empty lines would get skipped
19095
19096         * gtk/gtktextiter.h: Remove padding from GtkTextIter; live on the
19097         edge.
19098
19099         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): enhance the
19100         warning about invalid iterators (explain more thoroughly)
19101         (gtk_text_iter_in_region): rename gtk_text_iter_in_range
19102
19103         * gtk/gtktextview.c (FOCUS_EDGE_WIDTH): Make focus rectangle less
19104         big
19105
19106         * demos/*.c: Add error handling
19107
19108         * gtk/gtktextbuffer.c: don't modify const iterators
19109
19110         * gtk/gdk-pixbuf-loader.c: Add full error handling here
19111
19112         * gtk/gtkimage.c (gtk_image_set_from_file): ignore errors
19113         on file load
19114
19115         * gtk/gtkiconfactory.c: Update to reflect addition of error
19116         handling to gdk-pixbuf loaders
19117
19118 Wed Oct 18 11:14:05 2000  Owen Taylor  <otaylor@redhat.com>     
19119
19120         * configure.in demos/Makefile.am demos/testgtk/*: Start of work to
19121         move to new modularized testgtk.
19122
19123 2000-10-17  Jonathan Blandford  <jrb@redhat.com>
19124
19125         * gtk/gtktreeview.c: Draw the arrows correctly.
19126
19127         * gtk/gtktreemodel.c: Added user docs.
19128
19129         * gtk/gtk.h: remove gtktreedatalist.h.
19130
19131         * gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
19132         parent when generating my type.
19133
19134         * gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
19135         POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
19136
19137 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
19138
19139         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move
19140         GtkTreeModel from object to interface.
19141
19142 2000-10-16  Havoc Pennington  <hp@redhat.com>
19143
19144         * gtk/gtktreeviewcolumn.c: #include gtklabel.h, fixing 
19145         compilation
19146
19147 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
19148
19149         * gtk/gtktreeselection.c: Add API documentation to all public
19150         functions.
19151
19152         * gtk/gtktreeviewcolumn.c: Added API documentation to all public
19153         functions.
19154
19155 2000-10-15  Jonathan Blandford  <jrb@redhat.com>
19156
19157         * gtk/gtktreeview.c (gtk_tree_view_insert_column): New function
19158         proposed by Guy Harris <gharris@flashcom.net>.  Also, added API
19159         docs to all public functions.
19160
19161         * gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
19162         gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
19163         gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
19164         gtk/gtktreemodel.h, gtk/gtktreeselection.c,
19165         gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
19166         issue.
19167
19168 2000-10-14  Robert Brady  <robert@suse.co.uk>
19169
19170         * configure.in: Added "fa" (Persian) to ALL_LINGUAS.
19171
19172 2000-10-12  Jonathan Blandford  <jrb@redhat.com>
19173
19174         * gtk/gtktreedatalist.[ch] (gtk_tree_data_list_value_to_node): Added
19175         values other then G_TYPE_STRING.
19176         * gtk/gtktreeselection.c: Minor commenting updates.
19177         * gtk/gtktreeview.c: Format updates.
19178
19179 2000-10-09  Tor Lillqvist  <tml@iki.fi>
19180
19181         * README.win32: Update.
19182
19183         * gdk/win32/gdkgeometry-win32.c (gdk_window_clip_changed): Add two
19184         lines that had been deleted by mistake (?).
19185
19186         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Handle
19187         also the case fg==white and bg==black (but still not randomly
19188         coloured cursors). Thanks to Wolfgang Sourdeau.
19189
19190         * gdk/win32/*.c: Silence gcc -Wall.
19191
19192         * gtk/gtk.def: Add missing entry points.
19193
19194         Fixes by Hans Breuer:
19195
19196         * gdk/makefile.msc
19197         * gdk/win32/makefile.msc: Update.
19198
19199         * gdk/testgdk.c: If compiling with debugging (with _DEBUG defined,
19200         some MSVC thing, presumably), cause breakpoint on failures. Add
19201         GDK_NOR case. Call g_log_set_always_fatal.
19202
19203         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_insert): Handle
19204         should be pased by reference.
19205         
19206         * gdk/win32/gdkprivate-win32.h: Correct declaration accordingly.
19207         
19208         * gdk/win32/*.c: Correct calls to gdk_win32_handle_table_insert.
19209
19210         * gdk/win32/gdkevents-win32.c
19211         * gdk/win32/gdkwindow-win32.c: Handle WM_CREATE.
19212
19213         * gdk/win32/gdkgc-win32.c: Fix mixups of drawable and
19214         implementation object.
19215
19216         * gdk/win32/gdkimage-win32.c (gdk_image_get): Handle drawables,
19217         not just windows.
19218         
19219         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize):
19220         Use the wrapper object.
19221         
19222 2000-10-06  Havoc Pennington  <hp@redhat.com>
19223
19224         * Makefile.am (SRC_SUBDIRS): contrib subdir
19225
19226         * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library,
19227         so it can be used in Xlib version
19228
19229         * demos/testpixbuf.c (update_timeout): error checking from 1.0
19230         tree
19231
19232         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync
19233         change from 1.0 tree that returns first frame of animation
19234         if the loaded file is an animation.
19235
19236         * contrib: add new directory to hold stuff that comes with GTK+
19237         but isn't really part of GTK+ (for now, gdk-pixbuf-xlib)
19238         
19239         * configure.in: add contrib/*
19240
19241 2000-10-05  Havoc Pennington  <hp@redhat.com>
19242
19243         * demos/testpixbuf-save.c: add pixbuf save test
19244
19245         * demos/Makefile.am: add testpixbuf-save.c
19246
19247 2000-10-05  Jonathan Blandford  <jrb@redhat.com>
19248
19249         * gtk/gtktree.h (GTK_TREE_SELECTION): Replaced with
19250         GTK_TREE_SELECTION_OLD to prevent conflict with gtktreeselection.c
19251         * gtk/testgtk.c: s/GTK_TREE_SELECTION/GTK_TREE_SELECTION_OLD/
19252         * gtk/gtktreeselection.[ch]: Replaced
19253         "node_selected"/"node_unselected" signal with "selection_changed"
19254         signal.
19255
19256 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
19257
19258         * gtk/gtk{tree,cell}?*.[ch]: Checked in initial draft of the new
19259         tree widget.
19260
19261 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
19262
19263         * gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
19264         drawing.
19265
19266 Wed Oct  4 15:52:15 2000 Owen Taylor  <otaylor@redhat.com>
19267
19268         * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
19269         Move list pointer forwards before removing item from
19270         list. (Crash reported by Salmaso Raffaele)
19271
19272         * gdk/gdkwindow.h: Remove spurious trailing ,
19273
19274         * gdk/Makefile.am (LDFLAGS): You can't do interlibrary
19275         dependencies on uninstalled libraries, sorry folks.
19276
19277 2000-10-04  Havoc Pennington  <hp@redhat.com>
19278
19279         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
19280         gtk/gtkiconfactory.c: Fix copyrights    
19281
19282         * demos/testpixbuf.c: add inline pixbuf test
19283         
19284 Mon Sep 25 15:05:17 2000  Owen Taylor  <otaylor@redhat.com>
19285
19286         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c (gdk_window_iconify):
19287         Add gdk_window_iconify.
19288
19289         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c
19290         (gdk_window_set_geometry_hints): Add win_gravity
19291         to geometry structure.
19292
19293         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
19294         Implement _NET_WM_PING.
19295
19296         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check):
19297         Set _NET_WM_PID on the client leader.
19298
19299         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_name):
19300         Handle UTF-8 better.
19301
19302         * gdk/x11/gdkwindow-x11.c (gdk_window_set_title): Handle
19303         UTF-8 better, set _NET_WM_NAME as well. Only set
19304         icon name if it hasn't previously been explicitely 
19305         set.
19306
19307 2000-10-03  Havoc Pennington  <hp@redhat.com>
19308
19309         * gtk/testtextbuffer.c: clean up trailing whitespace,
19310         add extensive tests for tag toggle iteration.
19311         
19312         * gtk/gtktextiter.c (MAX_LINEAR_SCAN): decrease linear scan 
19313         distance
19314
19315         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
19316         optimize case where the tag root is on level 1
19317         (gtk_text_line_previous_could_contain_tag): attempt to implement
19318         (gtk_text_line_next_could_contain_tag): Abstract out node_compare
19319         functionality
19320
19321         * gtk/gtktextiter.c (gtk_text_iter_backward_to_tag_toggle):
19322         Implement this, though not very efficiently.
19323
19324         * gtk/gtktextiterprivate.h: reformat
19325
19326         * gtk/gtktextiter.c (gtk_text_iter_get_char): return 0 on the end
19327         iterator
19328
19329         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_interactive): Fix
19330         this to properly revalidate the iterators.
19331
19332         * gtk/gtktextview.c (gtk_text_view_delete): fix control-K to work
19333         properly at the end of the line (and therefore on empty lines)
19334
19335         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Gee,
19336         maybe we should return a value...
19337
19338 2000-10-03  Tor Lillqvist  <tml@iki.fi>
19339
19340         * config.h.win32: Guard definition of alloca(). glib.h now handles
19341         that.
19342
19343         * gdk/gdk.def
19344         * gtk/gtk.def: Add new entry points.
19345
19346         Changes just to make GTK+ build without errors on Win32. No hope
19347         of it working in its current state, though...:
19348         
19349         * gdk/win32/gdkselection-win32.c: Remove gcc -Wall warnings.  Add
19350         some functions from the X11 backend, just to make GTK+ build.
19351
19352         * gdk/makefile.mingw.in
19353         * gtk/makefile.mingw.in: Use correct gdk_pixbuf version
19354         number. Add new object files.
19355
19356         * gtk/gtkclipboard.c: Include gdkwin32.h on Win32. Use
19357         GetMessageTime to get timestamp (where on X11 uses
19358         gdk_x11_get_server_time()).
19359
19360 2000-10-02  Havoc Pennington  <hp@pobox.com>
19361
19362         * gtk/gtktextview.c: text_window_* weren't static and should have
19363         been.
19364         Start work on child widgets; not yet complete, syncing to 
19365         office computer.
19366
19367         * gtk/gtktextchild.h: change this to contain a public interface,
19368         starting work on child interfaces.
19369         * gtk/gtktextchildprivate.h: move private interfaces here
19370
19371         * gtk/Makefile.am: update to reflect gtktextchildprivate.h
19372
19373         * gtk/gtktextview.h, gtk/gtktextview.c, gtk/gtktextbuffer.h,
19374         gtk/gtktextbuffer.c, gtk/gtktextiter.h, gtk/gtk/textiter.c, 
19375         gtk/gtktextmark.c: copyright notices
19376
19377         * gtk/gtktextmarkprivate.h: reformat, and put _ in front of
19378         internal functions      
19379
19380         * gtk/gtktextchild.c (_pixbuf_segment_new): put _ in front of
19381         internal function
19382
19383         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
19384         Reformatting    
19385
19386 2000-09-30  Havoc Pennington  <hp@pobox.com>
19387
19388         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Handle
19389         NULL start/end pointers
19390
19391         * gtk/gtktextbuffer.c: Write some docs
19392         (gtk_text_buffer_get_selection_bounds): Allow start/end to be
19393         NULL, so you can just check whether there's a selection.        
19394
19395         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): No need to 
19396         cleanup_line or segments_changed ourselves, it gets done 
19397         in unlink_segment
19398
19399         * gtk/gtktextmark.h:
19400         s/gtk_text_mark_deleted/gtk_text_mark_get_deleted/
19401         
19402         * gtk/gtktextsegment.h: Clean up some indentation and naming mess
19403
19404         * gtk/gtktextmark.c: delete some more old Tk cruft
19405
19406         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_mark): add ref to
19407         mark before removing it, so we can emit MARK_DELETED with a valid
19408         pointer.
19409         (gtk_text_buffer_mark_set): hold ref across signal emission
19410
19411         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): improve
19412         whining about attempts to delete special marks
19413
19414         * gtk/gtktextbuffer.c (_gtk_text_buffer_spew): Prepend with
19415         underscore, since it's internal.
19416
19417         * gtk/gtktextbuffer.h: Remove find_string prototype, this is 
19418         now implemented in terms of iterators in gtktextiter.h
19419
19420         * gtk/gtktextbuffer.c (gtk_text_buffer_set_text): 
19421         New function, destructively sets contents of buffer. Also 
19422         a convenient way to clear the buffer by setting text to ""
19423
19424         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): reformat
19425         multiline string literal
19426
19427         * gtk/testtext.c (text_changed_callback): Redraw line numbers if
19428         text changes.
19429
19430         * gtk/gtktextiter.c (forward_char): Return FALSE if new location 
19431         is not dereferenceable
19432         (gtk_text_iter_forward_lines): fix return value
19433
19434 2000-09-29  Havoc Pennington  <hp@redhat.com>
19435
19436         * gtk/gtktexttag.c (gtk_text_tag_set_priority): fix indentation
19437
19438         * gtk/gtktextview.c: Implement drag thresholding; change functions 
19439         that set border window size to have nicer name
19440         (gtk_text_view_mark_set_handler):  Fix this to have the 
19441         right signature.
19442
19443         * gtk/testtextbuffer.c (fill_buffer): Update with pixbuf changes
19444
19445         * gtk/testtext.c: Update with API changes, put line numbers on 
19446         both sides.
19447         
19448         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): Replace get_pixmap
19449         with this
19450
19451         * gtk/gtktextchild.h, gtk/gtktextchild.c: replace all pixmap with
19452         pixbuf; delete a big block of #if 0 Tk code
19453
19454         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_pixbuf): Replace 
19455         insert_pixmap with insert_pixbuf
19456
19457 2000-09-29  Martin Baulig  <baulig@suse.de>
19458
19459         * gdk-pixbuf.pc.in: Renamed to gdb-pixbuf-2.0.pc.in to avoid
19460         confusion with the GdkPixbuf of the GNOME 1.x platform.
19461
19462 2000-09-29  Havoc Pennington  <hp@pobox.com>
19463
19464         * gtk/gtktextview.c: Implement the side windows.
19465
19466         * gtk/testtext.c: Implement simple line numbering in the 
19467         left side window; seems to make scrolling sloooow. Oops.
19468         Also, cursor blink is for some reason causing redraws
19469         of the line numbers. Should investigate...
19470
19471 2000-09-28  Havoc Pennington  <hp@redhat.com>
19472
19473         * gtk/gtktextview.c: Set up infrastructure to deal with lots of 
19474         scrolling child windows, and draw focus rectangle properly.
19475         
19476         (gtk_text_view_buffer_to_window_coords):
19477         Coordinate transformation to deal with all these freaking windows
19478         and offsets
19479         (gtk_text_view_window_to_buffer_coords): transform the other way
19480
19481         * gtk/testtext.c (create_buffer): Update to match Pango API change
19482
19483         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Go over the
19484         anonymous tags
19485         (foreach_unref): don't emit remove signal from finalize, just
19486         set tag's parent to NULL
19487
19488 2000-09-26  Havoc Pennington  <hp@redhat.com>
19489
19490         * gtk/gtkiconfactory.c (gtk_icon_set_clear): remove
19491         Fix some warnings       
19492
19493 2000-09-26  Havoc Pennington  <hp@redhat.com>
19494
19495         * gtk/Makefile.am (gtk_private_h_sources): Move more text widget
19496         headers into the private header list
19497
19498         * Makefile.am (pkgconfig_DATA): install pkg-config files
19499
19500         * configure.in: add pkg-config files
19501
19502         * gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
19503
19504         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
19505         outstanding icon caches on theme change.
19506
19507         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three 
19508         important types:
19509
19510         (GtkIconSource): Specification for creating a pixbuf 
19511         appropriate for a direction/state/size triplet from 
19512         a source pixbuf or filename
19513
19514         (GtkIconSet): List of GtkIconSource objects that are used to
19515         create the "same" icon (e.g. an OK button icon), and cache for
19516         rendered icons
19517
19518         (GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
19519         up the icon set for a given stock ID.  GTK maintains a stack of
19520         GtkIconFactory to search, and applications or libraries can add
19521         additional icon factories on top of the stack
19522         
19523         * gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse 
19524         the set of GtkIconSource specified for a given stock ID into 
19525         a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the 
19526         RcStyle, under the specified stock ID.
19527
19528         * gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
19529         render_icon used to derive a GdkPixbuf from a GtkIconSource.
19530         This allows people to theme how prelight, insensitive, etc. are
19531         done.
19532
19533         (gtk_style_lookup_icon_set): Look up a stock ID in the list of
19534         icon factories for a style, and return the resulting 
19535         icon set if any.
19536
19537         (gtk_style_render_icon): Render an icon using the render_icon 
19538         method in the GtkStyleClass.
19539
19540         * gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon): 
19541         Use the style for a given widget to look up a stock ID, get the
19542         icon set, and render an icon using the render_icon method 
19543         of the style
19544
19545         * gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
19546         (contains information about a stock item), the built-in stock item
19547         IDs, and functions to add/lookup stock items.
19548
19549         * gtk/stock-icons/*: Stock icons that come with GTK
19550
19551         * gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
19552         a button based on a GtkStockItem
19553         (gtk_button_new_accel): Takes a uline string and accel group, and
19554         installs the accelerator.
19555
19556         * gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
19557         image-display widget.
19558
19559 2000-09-25  Havoc Pennington  <hp@redhat.com>
19560
19561         * gtk/gtktexttypes.c: Remove Latin1 conversion stuff
19562
19563         * gtk/gtktextbtree.c (gtk_text_btree_node_remove_data): 
19564         Fix a bug when removing node data, we didn't properly 
19565         re-splice the linked list after removing the data.
19566
19567         * gtk/gtktextview.c (gtk_text_view_key_press_event): Pass through 
19568         GDK_Tab as literal tab, Ctrl-Tab to tab to focus widget
19569
19570         * gtk/gtktextbuffer.c (selection_received): fix g_convert usage
19571
19572         * gtk/gtktextlayout.c (set_para_values): Set tab array 
19573         for the layout from the GtkTextTag.
19574
19575         * gtk/gtktexttypes.h: delete tab and search cruft, 
19576         remove g_convert() in favor of GLib version
19577
19578         * gtk/gtktexttypes.c: remove tab implementation from here,
19579         move to Pango
19580
19581         * gtk/gtktexttag.h, gtk/gtktexttag.c: Implement 
19582         tab stuff using new PangoTabArray from Pango
19583
19584         * gtk/gtktexttag.c (gtk_text_attributes_fill_from_tags): Remove
19585         unused border_width stuff
19586
19587 Thu Sep 14 12:21:12 2000  Owen Taylor  <otaylor@redhat.com>
19588
19589         * gtk/gtktexttypes.[ch]: Remove g_convert (moved to
19590         glib) and now useless utf_to_latin1() latin1_to_utf()
19591
19592         * gtk/gtktextview.[ch]: Change ::move_insert and
19593         ::delete_text action signals to ::move and ::delete;
19594         create the signals with the right enumeration type,
19595         not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
19596         C-v bindings, change Home, End to move to beginning/end
19597         of line, Add C-Home C-End to move to beginning/end
19598         of buffer. Change ::cut_text to ::cut_clipboard, etc;
19599         combine ::scroll_text into ::move; use new GtkSelectionData
19600         functions to simplify DND text handling.
19601         
19602         * gtk/gtkenums.h gtk/gtktextview.h: Move movement,
19603         deletion enumerations here, rename enumeration values to 
19604         be consistently plural.
19605
19606         * gtk/gtktextbuffer.c: Use new clipboard interfaces
19607         for cut/copy/paste and primary selection.
19608
19609         * gtk/gtktextbuffer.[ch]: Remove excess time and
19610         'interactive' arguments from cut/copy/paste;
19611         rename cut to cut_clipboard, etc; remove
19612         gtk_text_buffer_get_clipboard_contents().
19613
19614         * gtk/gtktextlayout.[ch]: Add 
19615         gtk_text_layout_move_iter_to_line_end() to move the iter to 
19616         line ends.
19617
19618         * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
19619         Functions to set or get a UTF-8 string on the selection
19620         data.
19621
19622         * gtk/gtkclipboard.[ch]: New, simplified selection handling
19623         interfaces.
19624
19625         * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
19626         created widgets - one of these is useless if we don't.
19627
19628         * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
19629         a public function clear all targets registered for the
19630         widget.
19631
19632         * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
19633         Never call gtk_widget_realize() - that was just asking
19634         for bizarre side-effects.
19635
19636         * gtk/gtkselection.c (gtk_selection_owner_set): Call
19637         gdk_selection_owner_set even if the widget is the
19638         same so that we reliably update the timestamp on
19639         the server.
19640
19641         * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a 
19642         gdk_x11_get_server_time() function.
19643         
19644         * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
19645         gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
19646         Add some tricky filtering on serial numbers for
19647         selection clear events to fix up long-standard
19648         race condition FIXME's in gtkselection.c.
19649
19650         * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
19651         routines to convert from utf8 to compound text or
19652         STRING and from a text property to UTF-8.
19653
19654         * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add 
19655         a convenience function gdk_get_current_event_time().
19656
19657         * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
19658         and free selection_data->data properly
19659
19660 Sat Sep  9 10:23:53 2000  Owen Taylor  <otaylor@redhat.com>
19661
19662         * gtk/gtkthemes.c: Remove some unecessary includes.
19663
19664 2000-09-08  Jonathan Blandford  <jrb@redhat.com>
19665
19666         * gtk/gtktextdisplay.c
19667         * gtk/gtktextlayout.c
19668         * gtk/gtktexttag.c
19669         * gtk/gtktexttag.h
19670         * gtk/testtext.c: Change the overstrike property to strikethrough,
19671         to closer match pango.
19672
19673 Fri Sep  8 14:28:00 2000  Owen Taylor  <otaylor@redhat.com>
19674
19675         * gtk/gtktextview.c: Fix up visibility so that focus,
19676         cursor_visible and blink interact properly.  Reenable cursor blink
19677         which had been roughly disabled. Make blink and focus
19678         properly per-view.
19679
19680         * gtk/gtktextlayout.[ch] (gtk_text_layout_set_cursor_visible):
19681         Add a flag for whether to display insertion cursor and
19682         a function to set the flag.
19683
19684         * gtk/gtktextlayout.c (gtk_text_layout_get_line_yrange): Change
19685         get_line_y() to get_line_yrange(), to be a bit more generally
19686         useful.
19687
19688 Thu Sep 07 20:54:33 2000  George Lebl <jirka@5z.com>
19689
19690         * gtk/gtkmenu.c:  in gtk_menu_set_submenu_navigation_region
19691           do stop_navigating_submenu, to clear last timeout properly.
19692           Also in gtk_menu_motion_notify move ignore_enter above
19693           the conditional to make it always happen as suggested by Owen
19694
19695 2000-09-07  Tor Lillqvist  <tml@iki.fi>
19696
19697         * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o
19698
19699         * gdk/win32/gdkwin32.h: Add more definitions missing from the free
19700         w32api headers.
19701
19702         * gdk/win32/gdkprivate-win32.h: Add a couple of missing
19703         declarations.
19704
19705         * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings.
19706         (gdk_win32_get_colormap): A line had been deleted by mistake.
19707
19708         * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too.
19709         (gdk_event_translate): Handle more virtual keycodes to be able to
19710         generate GDK events for Control-comma, Control-period, etc.
19711
19712         * gtk/gtk.def: Add some missing entry points.
19713
19714 Thu Sep  7 11:47:02 2000  Owen Taylor  <otaylor@redhat.com>
19715
19716         * gtk/gtktextbuffer.c gtk/gtkimcontext.c gtk/gtkwidget.c:
19717         Doc comment fixing. (Mostly non-matching parameter names.)
19718
19719         * gtk/gtkcalendar.c gtk/gtklist.c gtk/gtknotebook.c: Modify
19720         comments a little to avoid looking like a doc comment.
19721
19722         * gtk/gtkspinbutton.h (GTK_INPUT_ERROR): Change INPUT_ERROR to
19723         GTK_INPUT_ERROR. (Should the mechanism for erros in spin button
19724         conversions be changed to GError?)
19725
19726         * gtk/gtkcolorsel.c (GTK_CUSTOM_PALETTE_WIDTH/HEIGHT): 
19727         Move private #defines into .c file.
19728
19729         * gtk/gtktexttag.c (gtk_text_tag_class_init): Alphabetize
19730         order of argument addition, remove duplicates.
19731
19732         * gtk/gtkaspectframe.h (struct _GtkAspectFrameClass):
19733         parent class is FrameClass, not BinClass.
19734
19735         * gtk/gtk.h: Add gtkinvisible, which was missing.
19736         (It's occasionalyl useful for client apps, if seldom.)
19737
19738         * gdk/gdktypes.h: Remove obsolete GDK_CORE_POINTER
19739         #define.
19740
19741 Wed Sep  6 09:53:15 2000  Owen Taylor  <otaylor@redhat.com>
19742
19743         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Use X-space
19744         coordinates when creating window, instead of GDK-space
19745         coordinates. (Avoid BadValue on too large windows.)
19746
19747 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
19748
19749         * configure.in (use_mmx_asm): Remove conftest* after use along the
19750         lines of AC_TRY_COMPILE.        
19751         
19752         * gtk/gtkrc.c (gtk_rc_parse_file): Use g_path_get_dirname instead
19753         of g_dirname, which is deprecated.
19754         (gtk_rc_parse_any): Removed calls to
19755         g_scanner_{freeze,thaw}_symbol_table, which are deprecated.
19756
19757         * gtk/gtkbindings.c (binding_entry_new, binding_entry_destroy):
19758         Removed calls to g_hash_table_{freeze,thaw}, as they are
19759         deprecated now.
19760
19761         * gtk/testtext.c (buffer_pretty_name): Use g_path_get_basename
19762         instead of g_basename.
19763         
19764 2000-09-04 Elliot Lee <sopwith@redhat.com>
19765         
19766         * gdk/gdkpixbuf.h: Put text after #endif inside a comment to avoid
19767         ANSI warning.
19768
19769 Sun Sep 03 00:47:08 2000  George Lebl <jirka@5z.com>
19770
19771         * gtk/gtkwidget.h:  Add some documenting comments about 
19772           GTK_CAN_DEFAULT, GTK_HAS_DEFAULT and GTK_RECEIVES_DEFAULT
19773           just as owen said on irc.
19774
19775         * gtk/gtkwindow.c (gtk_window_set_default):  Don't blindly
19776           set HAS_DEFAULT.  Only set it if there isn't another window
19777           holding it (a focus window which RECEIVES_DEFAULT) and only unset
19778           it if the widget is not the focused window with RECEIVES_DEFAULT.
19779           This fixes weird double default bugs in dialogs which has things
19780           call gtk_window_set_default at times.
19781
19782 Fri Sep  1 22:39:07 2000  Owen Taylor  <otaylor@redhat.com>
19783
19784         * gtk/gtkmenu.[ch] TODO.xml: Apply patch from
19785         Nils Barth and David Santiago to improve submenu
19786         navigation. The patch does this by creating a triangular
19787         region from the point where the pointer leaves the
19788         menu to the submenu.  While the pointer is in
19789         that region and a timeout has not expired, events 
19790         that would cause the active submenu to change are
19791         ignored.
19792
19793 Fri Sep  1 15:34:46 2000  Owen Taylor  <otaylor@redhat.com>
19794
19795         * gdk/x11/gdkwindow-x11.c (gdk_window_move): Fix bug where
19796         moving a toplevel window immediately after sizing it would
19797         result in it being sized back to the old size since 
19798         impl->width, impl->height aren't updated until we hear
19799         back from the server. There is still a (longstanding) bug
19800         here that gdk_window_get_size() will give the wrong size
19801         until we do hear back.
19802
19803 2000-08-31  Havoc Pennington  <hp@redhat.com>
19804
19805         * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, 
19806         gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, 
19807         gtk/gtktexttagprivate.h, gtk/gtktextview.c:
19808         Rename GtkTextStyleValues to GtkTextAttributes
19809
19810 2000-08-31  Havoc Pennington  <hp@pobox.com>
19811
19812         * gtk/gtktextbtree.c (GtkTextBTree): cache end line, 
19813         for rapid testing whether an iterator is the end iterator
19814         (gtk_text_btree_new): init end line cache
19815         (gtk_text_line_is_last): use fast cached line to 
19816         see if we're the last line.
19817         (get_last_line): use cached line here too, should 
19818         speed up some random unrelated code.
19819         
19820 2000-08-30  Havoc Pennington  <hp@pobox.com>
19821
19822         * gtk/gtkmarshal.list: Add marshallers for changed GtkTextBuffer
19823         signals.
19824
19825         * gtk/gtktextbuffer.h: Add "interactive" arg to insert_text and
19826         delete_text signals. This allows the signals to be used for
19827         implementing undo.
19828
19829         * gtk/gtktextbuffer.c: Change signal handler signatures; 
19830         provide "interactive" argument when emitting insert_text or
19831         delete_text signal.
19832         
19833 2000-08-30  Havoc Pennington  <hp@pobox.com>
19834
19835         * gtk/gtktextbuffer.c: Docs
19836
19837 Fri Aug 25 12:16:15 2000  Owen Taylor  <otaylor@redhat.com>
19838
19839         * gdk/x11/gdkimage-x11.c: remove GDK_IMAGE_SHARED_PIXMAP
19840         from switch statements, since Tor removed the enumeration
19841         value.
19842         
19843         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
19844         s/GDK_IS_WINDOW/GDK_IS_DRAWABLE/.
19845
19846 2000-08-29 Elliot Lee <sopwith@redhat.com>
19847         * */*.h: Use G_GNUC_CONST.
19848
19849 2000-08-27  Havoc Pennington  <hp@pobox.com>
19850
19851         * gtk/gtktextiter.c, gtk/gtktextiter.h: wrote lots of API docs,
19852         minor indentation fixes, inserted some FIXME about stuff I
19853         realized was broken while documenting it.
19854         (gtk_text_iter_get_pixmap): allow out params to be NULL, following
19855         GTK convention  
19856
19857 Tue Aug 22 12:33:24 2000  Owen Taylor  <otaylor@redhat.com>
19858
19859         * gtk/testgtk.c (create_styles): Fix double free of
19860         font desc.
19861
19862 Mon Aug 21 22:39:18 2000  Owen Taylor  <otaylor@redhat.com>
19863
19864         * gtk/gtkwidget.[ch]: Add gtk_widget_modify_{fg,bg,text,base,font}.
19865         
19866         * gtk/testgtk.c (create_styles): Add a test for modifying
19867         the style through gtk_widget_modify_*.
19868
19869         * gtk/gtkwidget.c (gtk_widget_get_modifier_style): Add
19870         a function to get the current modifier style.
19871
19872         * gtk/gtkwidget.c (gtk_widget_modify_style): Make a copy
19873         of the passed in GtkRcStyle instead of ref'ing it.
19874
19875         * gtk/gtkrc.[ch]: Add gtk_rc_style_copy().
19876
19877 2000-08-20  Tor Lillqvist  <tml@iki.fi>
19878
19879         * gdk/gdkimage.h
19880         * gdk/win32/gdkimage-win32.c: No need any longer on Win32 for the
19881         shared memory image+pixmap GdkImage type, or
19882         gdk_image_bitmap_new(). They were used in the gdk_imlib port, but
19883         I am dropping that.
19884
19885         * gtk/gtkmain.h: On Win32, use a #define to map gtk_init() to
19886         actually call gtk_init_abi_check(), passing also
19887         sizeof(GtkWindow). Ditto for gtk_init_check(). 
19888
19889         * gtk/gtk.def
19890         * gtk/gtkmain.c: (gtk_init_abi_check, gtk_init_check_abi_check):
19891         New functions, used to check that the GTK+-using code has been
19892         compiled using the correct compiler and switches. In particular,
19893         with gcc one has to use the -fnative-struct switch as GTK+ is
19894         compiled with that.
19895
19896 Fri Aug 18 17:27:46 2000  Owen Taylor  <otaylor@redhat.com>
19897
19898         * gtk/gtkclist.c (gtk_clist_merge): Don't leave dangling
19899         ->prev fields when merging lists. (Found simultaneously
19900         by Pawel Salek and Jakub Jelinek)
19901
19902 2000-08-12  Tor Lillqvist  <tml@iki.fi>
19903
19904         * gdk/gdk.def
19905         * gtk/gtk.def: Add missing entries.
19906
19907         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Use
19908         OUT_TT_ONLY_PRECIS, try to get a TrueType font.
19909
19910         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): New
19911         function. Dummy implementation at this point.
19912
19913         * gtk/makefile.mingw.in: Fix typo. Add testtext and testtextbuffer
19914         rules. Undefine GTK_COMPILATION when compiling the test programs.
19915         
19916         * gtk/gtkdebug.h: Mark gtk_debug_flags for export/import.
19917
19918 2000-08-11  Tor Lillqvist  <tml@iki.fi>
19919
19920         * gtk/gtkfilesel.c: Add more calls to g_filename_{to,from}_utf8()
19921         to convert back and forth from UTF-8 and the "system" (or "current
19922         locale") charset when necessary. Indentation/spacing cleanup.
19923
19924 2000-08-10  Havoc Pennington  <hp@redhat.com>
19925
19926         * Makefile.am (snapshot): Change the format of the snapshot
19927         version to match glib
19928
19929         * gdk/win32/Makefile.am (EXTRA_DIST): remove gdkinputprivate.h
19930         from EXTRA_DIST since it doesn't seem to exist
19931
19932 2000-08-10  Tor Lillqvist  <tml@iki.fi>
19933
19934         * gtk/gtkfilesel.c (open_new_dir): Use the "system codepage"
19935         version of the directory name (not the UTF-8 one) when building
19936         the path name to stat().
19937
19938 2000-08-03  Elliot Lee  <sopwith@redhat.com>
19939
19940         * gdk/gdkpango.c (gdk_draw_layout_line): Don't shape runs with a
19941         PANGO_ATTR_SHAPE set.
19942
19943 Thu Aug  3 09:17:06 2000  Owen Taylor  <otaylor@redhat.com>
19944
19945         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Applied patch from
19946         Peter Osterlund to simplify the code while keeping the
19947         functionality the same.
19948
19949 Wed Aug  2 14:57:38 2000  Owen Taylor  <otaylor@redhat.com>
19950
19951         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Move
19952         is_viewable() test further inside the function, since removing the 
19953         window from the redraw list without clearing ->update_area
19954         was also very broken.
19955
19956 2000-08-02  Tor Lillqvist  <tml@iki.fi>
19957
19958         * configure.in: Check for <unistd.h>.
19959
19960 2000-08-01  Martin Baulig  <baulig@suse.de>
19961
19962         * gtk/gtkmain.c (gtk_init_check): Use g_message() and not g_warning()
19963         to display the message that this is a development version of GTK+.
19964
19965 Mon Jul 31 18:37:36 2000  Owen Taylor  <otaylor@redhat.com>
19966
19967         * gtk/gtkentry.c (entry_adjust_scroll): Fix problem where computation
19968         was depending on widget->allocation instead of the width of text_area,
19969         which was incorrect for subclasses like GtkSpinButton.
19970
19971         * gdk/gdkpango.c (gdk_draw_layout): Fix a couple of typos
19972         with width == 1 tests that should be width == -1.
19973
19974 Mon Jul 31 16:45:48 2000  Owen Taylor  <otaylor@redhat.com>
19975
19976         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Replace broken, 
19977         (broken, Elliot, every single window blank on X) custom code with call
19978         to gdk_window_is_viewable() which a) prevents code duplicate and
19979         b) works. 
19980
19981 2000-07-31  Elliot Lee  <sopwith@redhat.com>
19982
19983         * gtk/gtkcolorsel.c: We really do need to include gdkfb.h in order
19984         to get the GDK_PARENT_ROOT() macro to work.
19985         * gtk/gtkmarshal.list: Add NONE:STRING,POINTER
19986         * gdk/gdkwindow.c: Don't send expose events, or invalidate pieces
19987         of, windows that aren't shown.
19988         * gdk/linux-fb: Redraw-when-menu-hidden solved, plus a bunch of
19989         pointer grab stuff.
19990
19991 Mon Jul 31 13:53:16 BST 2000  Tony Gale <gale@gtk.org>
19992
19993         * docs/gtkfaq.sgml docs/gtk-faq.sgml:
19994           s/gtk_main_iteration/g_main_iteration/
19995
19996           Did this already in change:
19997                 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
19998           don't know how it got reverted.
19999
20000 2000-07-31  Stanislav Brabec  <utx@penguin.cz>
20001
20002         * gdk/gdk.c: #ifdef G_ENABLE_DEBUG around gdk_arg_debug_cb and
20003         gdk_arg_no_debug_cb to fix compilation problem with --disable-debug.
20004
20005         * gdk/Makefile.am: Link gdk against actually compiled gdk_pixbuf-1.3,
20006         not gdk_pixbuf.
20007
20008 2000-07-30  Pablo Saratxaga <pablo@mandrakesoft.com>
20009
20010         * configure.in,po/{sp,sr}.po: Added Serbian files
20011
20012 2000-07-30  Tor Lillqvist  <tml@iki.fi>
20013
20014         * gdk/Makefile.am: Add makefile.mingw.in to EXTRA_DIST.
20015
20016         * gdk/win32/gdkevents-win32.c (gdk_events_init, gdk_events_queue):
20017         Remove the g_pipe_readable_msg stuff. Not needed with new GLib
20018         GIOChannel implementation.
20019
20020         * gdk/win32/gdkinput.c
20021         * gdk/win32/gdkpango-win32.c: Update license name here, too.
20022
20023         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_lookup): Fix
20024         definition to match prototype.
20025
20026         * gtk/makefile.mingw.in: Add libiconv CFLAGS and LIBS.
20027
20028 2000-07-27  Elliot Lee  <sopwith@redhat.com>
20029
20030         * gtk/gdk-pixbuf-loader.[ch]: Add gdk_pixbuf_loader_new_with_type
20031         function, to allow handling image formats that cannot be detected
20032         by looking at content alone.
20033
20034 Thu Jul 27 13:13:21 BST 2000  Tony Gale <gale@gtk.org>
20035
20036         * docs/tutorial/*.gif *.jpg *.eps
20037           Update these to the same look-n-feel.
20038           Why does including images in DocBook suck so badly?
20039
20040 Thu Jul 27 05:06:29 2000  Tim Janik  <timj@gtk.org>
20041
20042         * gtk/gtktable.c: applied patch from Phil Thompson
20043         <phil@river-bank.demon.co.uk> that enables space settings for
20044         the last row/columns as well.
20045
20046 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
20047
20048         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
20049         updates the license headers to the GNU Lesser General Public License,
20050         as well as updating the copyright year to 2000.
20051
20052 2000-07-26  Robert Brady  <rwb197@zepler.org>
20053
20054         * configure.in: Cause GETTEXT_PACKAGE to be consistent in config.h
20055           and po/Makefile, was installing and looking for them under gtk20
20056           and gtk2 respectively.
20057
20058 2000-07-25  Havoc Pennington  <hp@redhat.com>
20059
20060         * gtk/testtext.c: Comment out some stuff that depends on the rest
20061         of my patches.
20062
20063 2000-07-25  Havoc Pennington  <hp@redhat.com>
20064
20065         * gtk/gtkmarshal.list: Add NONE:POINTER,POINTER,INT for the text
20066         buffer
20067
20068 2000-07-25  Havoc Pennington  <hp@redhat.com>
20069
20070         * gtk/testtext.c, gtk/testtextbuffer.c: update to reflect text
20071         widget changes.
20072
20073         * gtk/gtktextview.h: To be consistent with usage of "line"
20074         throughout the API to mean "newline-terminated thingy", change
20075         MOVEMENT_LINE to be MOVEMENT_WRAPPED_LINE, and MOVEMENT_PARAGRAPH
20076         to MOVEMENT_LINE.
20077
20078         (GtkTextView): Add flags for default editability, and whether to
20079         show the cursor. Add functions to get/set that. Add 
20080
20081         (gtk_text_view_get_iter_location): new function
20082
20083         * gtk/gtktexttypes.h: Move GtkTextLine typedef from here to
20084         gtktextlayout.h
20085         (g_convert): Add g_convert temporarily, will go in glib in a bit
20086         
20087         * gtk/gtktexttagtable.h: include gtktexttag.h, and define
20088         GtkTextTagTableForeach instead of brokenly using GHFunc.
20089         Change gtk_text_tag_table_foreach() so it doesn't use GHFunc.
20090
20091         * gtk/gtktexttagprivate.h: Remove GtkTextStyleValues from here,
20092         moved to public header.
20093
20094         * gtk/gtktexttag.h: Rename the "elide" attribute of tags to
20095         "invisible", since "elide" was a bad name.
20096         (gtk_text_tag_get_priority): Added
20097
20098         (GtkTextStyleValues): put this in public header, along with
20099         functions to use it.
20100
20101         * gtk/gtktextmarkprivate.h: Include more headers, since we no
20102         longer include gtktextbtree.h.
20103
20104         * gtk/gtktextmark.h: Add gtk_text_mark_ref, gtk_text_mark_unref,
20105         gtk_text_mark_deleted
20106
20107         * gtk/gtktextlayout.h: Don't include the "really private" headers,
20108         only buffer/iter. Forward declare GtkTextLIne and GtkTextLineData
20109         to make this possible. Now we only need to install
20110         gtktextlayout.h, not gtktextbtree.h and gtktext*private.h.
20111         (However the Makefile.am isn't changed yet because of the
20112         logistics of merging gtk-hp-patches piecemeal)
20113
20114         * gtk/gtktextiterprivate.h: include btree header, so it compiles;
20115         rename gtk_text_iter_get_line to gtk_text_iter_get_text_line since
20116         gtk_text_iter_get_line is now used in the public API for a
20117         different purpose.
20118
20119         * gtk/gtktextiter.h: Clean up function names to be more
20120         consistent. Always call char offset "offset" and byte index
20121         "index". A "line" is always a line number. 
20122
20123         (gtk_text_iter_is_last): new function, more efficient than 
20124         the existing way to check
20125         (gtk_text_iter_is_first): new function, also more efficient
20126
20127         (gtk_text_iter_up_lines, gtk_text_iter_down_lines): Remove these
20128
20129         (gtk_text_iter_next_char, gtk_text_iter_prev_char): Renamed from 
20130         gtk_text_iter_forward_char, etc.
20131
20132         (gtk_text_iter_forward_to_tag_toggle): Renamed from
20133         forward_find_tag_toggle, since this isn't a linear search
20134
20135         (GtkTextCharPredicate): rename from GtkTextViewCharPredicate
20136
20137         (gtk_text_iter_forward_search, gtk_text_iter_backward_search): 
20138         New functions, search for a buffer substring.
20139
20140         * gtk/gtktextbuffer.h: Add fields to store whether a paste is
20141         interactive and default editable (since we need to store that info
20142         until we receive the selection data).
20143
20144         Remove all the _at_char and at_line etc. versions of functions;
20145         only have iterator versions.
20146
20147         Add _interactive() versions of functions, that consider the
20148         editability of text. (FIXME add interactive flag to the 
20149         insert/delete signals per Darin's suggestion)
20150
20151         (gtk_text_buffer_get_tag_table): new function, demand-creates the
20152         tag table if necessary
20153
20154         Remove declaration of gtk_text_buffer_get_iter_from_string
20155
20156         (_gtk_text_buffer_get_btree): private/internal function, added.
20157         
20158
20159         * gtk/gtktextbtree.h: Remove forward decl of GtkTextLineData.
20160         (gtk_text_line_is_last): new function
20161
20162 2000-07-25  Havoc Pennington  <hp@redhat.com>
20163
20164         * gtk/gtkprogressbar.h: Implement new sane, 5-function API for
20165         using GtkProgressBar. See Changes-2.0.txt for details.
20166
20167         * gtk/gtkprogressbar.c: Add object arguments "fraction" and
20168         "pulse_step" which are the equivalent of
20169         gtk_progress_bar_set_pulse_step and gtk_progress_bar_set_fraction.
20170         Implement new API.
20171         
20172         * gtk/gtkprogress.h (struct _GtkProgress): Add a field
20173         (use_text_format) to mark whether text set on the progress bar is
20174         a format string. Deprecate entire GtkProgress interface.
20175
20176         * gtk/gtkprogress.c (gtk_progress_init): init use_text_format to TRUE
20177         (gtk_progress_build_string): make this a no-op if use_text_format
20178         is FALSE
20179
20180         * docs/Changes-2.0.txt: Describe progress bar changes.
20181
20182 2000-07-25  Tor Lillqvist  <tml@iki.fi>
20183
20184         * Makefile.am: Include the build directory.
20185
20186         * configure.in: Generate build/Makefile, build/win32/Makefile,
20187         gdk/, gdk/win32/, and gtk/makefile.mingw.
20188
20189         * config.h.win32: Add USE_GMODULE and USE_MMX for gdk-pixbuf.
20190         Add GETTEXT_PACKAGE.
20191         
20192         * gdk/gdk.def
20193         * gtk/gtk.def: Updates.
20194
20195         * gdk/gdkfont.h
20196         * gdk/gdkpixmap.h: Remove temporary Win32-only functions, we don't
20197         need them any longer.
20198
20199         * gdk/gdkinput.h: Mark gdk_core_pointer for export/import.
20200
20201         * gdk/makefile.mingw.in: Define GDK_COMPILATION. Link with
20202         PANGOWIN32_LIBS and gdk_pixbuf.
20203
20204         * gdk/win32: Compiles, but no doubt doesn't work at all.
20205
20206         * gdk/win32/makefile.mingw.in: Define GDK_COMPILATION. 
20207
20208         * gdk/win32/gdkinput.c: New file, temporarily.
20209         
20210         * gdk/win32/gdkinput-win32.h: New file
20211
20212         * gdk/win32/gdkinputprivate.h: Remove.
20213
20214         * gdk/win32/gdkpango-win32.c: New file.
20215
20216         * gtk/makefile.mingw.in: New file
20217
20218         * gtk/makefile.cygwin: Removed
20219         
20220         * gtk/Makefile.am: Update accordingly.
20221
20222         * gtk/gtkrc.[ch] (gtk_win32_get_installation_directory): Renamed and
20223         made externally visible.
20224
20225         * gtk/gtkmain.c: Use it.
20226         
20227         * gtk/gtktextdisplay.c: No need to include pangox.h, pango.h
20228         is enough.
20229
20230         * gtk/gtktypeutils.c: Mark glib_debug_objects for import.
20231
20232 2000-07-24 Elliot Lee <sopwith@redhat.com>
20233         * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
20234         individual backends already.
20235         * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
20236         again. Yes, there really is a good reason for this, if you are using the gdkregion
20237         internals, and if you're not, why do you care?
20238         * gdk/gdkwindow.c: Fix inverted condition
20239         * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
20240         * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
20241         * gtk/gtkrange.c: Redraw trough when moving.
20242         * gtk/gtktypeutils.c: Fix warning by adding const cast.
20243         * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
20244
20245 2000-07-23  Tor Lillqvist  <tml@iki.fi>
20246
20247         * configure.in: Check for mkstemp and sigsetjmp. Output
20248         gdk-pixbuf/makefile.mingw and gdk-pixbuf/pixops/makefile.mingw.
20249
20250         More work on GDK for Win32. Still in an intermediate state.
20251
20252         * gdk/makefile.cygwin
20253         * gdk/win32/makefile.cygwin: Removed.
20254         
20255         * gdk/makefile.mingw.in
20256         * gdk/win32/makefile.mingw.in: New files.
20257
20258         * gdk/Makefile.am
20259         * gdk/win32/Makefile.am: Generate and distribute them.
20260
20261         * gdk/win32/gdkwindow-win32.h
20262         * gdk/win32/gdkdrawable-win32.h
20263         * gdk/win32/gdkpixmap-win32.h: New files.
20264
20265         * gdk/win32/gdkcolor-win32.c
20266         * gdk/win32/gdkcursor-win32.c
20267         * gdk/win32/gdkdrawable-win32.c
20268         * gdk/win32/gdkgc-win32.c
20269         * gdk/win32/gdkimage-win32.c
20270         * gdk/win32/gdkprivate-win32.h
20271         * gdk/win32/gdkwin32.h: Update data structures. Cosmetics:
20272         Rename fields and variables called xcursor, xid, etc (these names
20273         were leftovers from the X11 backend) to hcursor, hwnd, hbitmap etc.
20274
20275 Sat Jul 22 17:41:26 2000  Owen Taylor  <otaylor@redhat.com>
20276
20277         * gtk/gtkentry.[ch]: Fix some problems with vertical
20278         alignment.
20279
20280         * gtk/gtkentry.c (gtk_entry_find_position): Fix 
20281         char/byte confusion.
20282
20283 Sat Jul 22 11:16:05 2000  Owen Taylor  <otaylor@redhat.com>
20284
20285         * gtk/gtktextview.c (changed_handler): Fix bug where
20286         redraw wasn't being done properly when height of
20287         dirty region changed.
20288
20289         * demos/Makefile.am: Remove various references to
20290         -lgmodule
20291
20292 Fri Jul 21 15:28:13 2000  Owen Taylor  <otaylor@redhat.com>
20293
20294         * gtk/gtktextlayout.[ch], gtk/gtktextdisplay.c: Use new
20295         PangoAttrShape to reserve space for pixmaps, add 
20296         GSList *pixmaps to GtkTextLineDisplay, draw the pixmaps
20297         in the display functions.
20298         
20299         * gtk/testgtk.c (create_layout): Set some more exotic
20300         scrolled window options
20301
20302         * gtk/gtkscrolledwindow.[ch] (gtk_scrolled_window_set_shadow_type):
20303         Add function to set the shadow type of a window, to allow
20304         putting a shadow around widgets such as GtkLayout or GnomeCanvas
20305         which don't draw their own frame.
20306
20307 Fri Jul 21 16:34:42 BST 2000  Tony Gale <gale@gtk.org>
20308
20309         * docs/tutorial/package-db-tutorial.sh: New file for
20310           packaging DocBook format tutorial
20311
20312 Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>
20313
20314         * docs/tutorial/gtk-tut.sgml: Minor updates
20315
20316         * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
20317
20318 2000-07-19  Tor Lillqvist  <tml@iki.fi>
20319
20320         * gtk/gtksignal.c: Fix C++ comment.
20321
20322         * gtk/gtkimmulticontext.c
20323         * gtk/gtktextbtree.c: Remove gccisms: Don't use __FUNCTION__,
20324         don't return value from void functions.
20325
20326         * gtk/gtk.def: Add gtk_rc_style_unref.
20327
20328 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
20329
20330         * gdk-pixbuf/gdk-pixbuf.h, gtk/gtkhsv.h, gtk/gtktextbtree.h,
20331         gtk/gtktextbuffer.h, gtk/gtktextchild.h, gtk/gtktextdisplay.h,
20332         gtk/gtktextiter.h, gtk/gtktextiterprivate.h, gtk/gtktextlayout.h,
20333         gtk/gtktextmarkprivate.h, gtk/gtktextsegment.h, gtk/gtktexttag.h,
20334         gtk/gtktexttagtable.h, gtk/gtktexttypes.h, gtk/gtktextview.h,
20335         gtk/gtktypeutils.h: Include files outside of the extern "C"
20336         block. Makes some C++ compiler happy. Reported by Denis Vakatov
20337         <vakatov@peony.nlm.nih.gov>.
20338
20339 Wed Jul 19 14:07:57 BST 2000  Tony Gale <gale@gtk.org>
20340
20341         * docs/tutorial/gtk-tut.sgml: Yet more clean ups.
20342           Completes first pass. Hurrah!
20343
20344 Tue Jul 18 17:17:55 BST 2000  Tony Gale <gale@gtk.org>
20345
20346         * docs/tutorial/gtk-tut.sgml: More clean ups.
20347
20348 Mon Jul 17 18:52:38 2000  Owen Taylor  <otaylor@redhat.com>
20349
20350         * gtk/gtkentry.c (gtk_entry_draw_text): Restore code to
20351         paint the background of the text area which was accidentally
20352         removed at some point.
20353
20354         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch] gtk/gtkthemes.[ch]: 
20355           
20356          - Move most of the functionality from the theme vtable
20357            into GtkRcStyleClass and GtkStyleClass. The moved
20358            vtable functions were changed a bit in the move to
20359            work better in their new home.
20360
20361          - Get rid of the engine and engine_data fields from
20362            GtkRcStyle and GtkStyle; instead the theme
20363            engine derives theme-specific subclasses of GtkRcStyle
20364            and GtkStyle
20365
20366          - Add extra dlsym() found entry point to themes,
20367            theme_create_rc_style().
20368
20369         * gtk/gtkstyle.c: Copy xthickness, ythickness fields
20370         in gtk_style_real_copy.
20371
20372         * gtk/themes.[ch]: add a function gtk_theme_engine_register_type()
20373         to register a type associated with an engine. (The engine
20374         won't be unloaded as there is an instance of the type.)
20375
20376
20377 Mon Jul 17 18:19:06 BST 2000  Tony Gale <gale@gtk.org>
20378
20379         * docs/tutorial/gtk-tut.sgml: Clean ups.
20380
20381 Mon Jul 17 13:59:29 BST 2000  Tony Gale <gale@gtk.org>
20382
20383         * docs/tutorial/gtk-tut.sgml: Initial DocBook version. Lots
20384           of cleaning up to do.
20385
20386 2000-07-15  Tor Lillqvist  <tml@iki.fi>
20387
20388         * gdk/testgdk.c: New file, quick hack to test backends for
20389         pixel-by-pixel correctness of the most simple graphic operations.
20390
20391 Fri Jul 14 20:30:25 2000  Owen Taylor  <otaylor@redhat.com>
20392
20393         * Really release 1.3.1
20394         
20395         * gtk-config-2.0.in gtk-2.0.m4: Fix up to correspond to new
20396         include structure.
20397
20398 Fri Jul 14 18:40:39 2000  Owen Taylor  <otaylor@redhat.com>
20399
20400         * Released 1.3.1
20401
20402 Fri Jul 14 16:21:26 2000  Owen Taylor  <otaylor@redhat.com>
20403
20404         * gtk/gtktextlayout.c: use FALSE for size_only most
20405         of the time when calling gtk_text_layout_get_line_display()
20406         to avoid causing double reshapes when a redraw follows
20407         immediately after.
20408
20409 Tue Jul 11 11:13:40 2000  Owen Taylor  <otaylor@redhat.com>
20410
20411         * gtk/gtkrange.c (gtk_range_default_[hv]slider_update): Invalidate
20412         appropriate region and gdk_window_process_updates() so trough
20413         updating doesn't lag behind the window being scrolled.
20414
20415         * gdk/gdkgc.c: Make parent_class pointer static.
20416          
20417 Sun Jul  9 21:31:23 2000  Owen Taylor  <otaylor@redhat.com>
20418
20419         * gdk/gdk-pixbuf.c gtk/gdk-pixbuf-loader.c gtk/gtktextview.c:
20420         include <string.h>.
20421          
20422         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Fix
20423         cut-and-paste error in computing memory offset for 4 channels.
20424
20425 Fri Jul 14 14:05:02 2000  Owen Taylor  <otaylor@redhat.com>
20426
20427         * gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string): Remove
20428         gtk_rc_append_default_pixmap_path(), since it wasn't
20429         adding an interesting path and we don't have a meaningful
20430         default for this value.
20431
20432 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
20433
20434         * configure.in Makefile.am gtk-config.m4 gtk.m4: Move
20435         gtk-config to gtk-config-2.0 move gtk_.m4 to
20436         gtk-2.0.m4
20437
20438         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
20439         gdk/Makefile.am demos/Makefile.am: Change 
20440         library names to libgtk-1.3.la, etc, so that we
20441         can distinguish gtk-1.2 and gtk-2.0 on the linkline.
20442
20443         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
20444         gdk/Makefile.am gdk/x11/Makfile.am
20445         Move include files into /usr/include/gtk-2.0, 
20446         /usr/lib/gtk-2.0/include/
20447          
20448         * autogen.sh acconfig.h configure.in gtk/gtkmain.c
20449         gtk/gtkintl.h: Change package for gettext from 
20450         gtk+ to gtk20. Put hack in autogen.sh to modify
20451         po/Makefile.in.in after gettextize to make this
20452         possible.
20453
20454         * gtk+.spec: Some updates, not tested.
20455
20456         * gdk-pixbuf/Makefile.am: Move loaders into
20457         $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders.
20458
20459         * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations
20460         $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir
20461         to THEMENAME/gtk-2.0/. Move engine directory  to
20462         $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
20463         
20464 2000-07-12  Tor Lillqvist  <tml@iki.fi>
20465
20466         Win32 changes, still doesn't build though.
20467
20468         * gdk/makefile.cygwin
20469         * gdk/win32/makefile.cygwin
20470         * gtk/makefile.cygwin: Updates.
20471
20472         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Use the same
20473         default values for fg and bg pixel as X11 does (0 and 1), not
20474         black and white. Use PS_ENDCAP_FLAT and PS_JOIN_MITER by default.
20475         Use 0 for pen width by default (treated as 1 anyway later, but for
20476         apps that might check the value in the GdkGC).
20477         (gdk_win32_hdc_get, gdk_win32_hdc_release): New functions, public
20478         interface to gdk_gc_predraw and _postdraw.
20479
20480         * gdk/win32/gdkwin32.h
20481         * gdk/gdk.def: Add gdk_win32_hdc_{get,release}.
20482
20483         * gdk/win32/gdkcolor-win32.c (gdk_colormap_alloc1): Remove
20484         extraneous semicolon.
20485
20486         * gdk/win32/gdkdrawable-win32.c: Check also for pen_width == 0.
20487
20488         * gdk/win32/gdkimage-win32.c (gdk_image_new): Use the visual's depth,
20489         not the Win32 bitspixel value.
20490
20491         * gdk/win32/gdkcc-win32.c:
20492         * gdk/win32/gdkcolor-win32.c 
20493         * gdk/win32/gdkprivate-win32.h
20494         * gdk/win32/gdkwin32.h: Changes to make compilable, with new
20495         GDK object structure.
20496
20497 Tue Jul 11 20:59:35 2000  Tim Janik  <timj@gtk.org>
20498
20499         * docs/tutorial/gtk_tut_12.es.sgml (name): 
20500         * docs/tutorial/gtk_tut_it.sgml (name): 
20501         * docs/tutorial/gtk_tut_fr.sgml (name): 
20502         * docs/tutorial/gtk_tut.sgml (name): scratched notion of completely
20503         outdated email adress: s/timj@psynet.net/timj@gtk.org/.
20504
20505 Tue Jul 11 13:10:57 BST 2000  Tony Gale <gale@gtk.org>
20506
20507         * docs/faq/gtk-faq.sgml: Cleanup indenting and various
20508           small changes.
20509
20510 Tue Jul 11 08:04:58 2000  Tim Janik  <timj@gtk.org>
20511
20512         * gtk/gtktree.c (gtk_real_tree_select_child): eek, i've never seen
20513         a bug here, never been here and never fixed anything ;(
20514         (don't segfault if tree->root_tree is NULL, which happens prior
20515         to widget realization, but puke instead).
20516
20517 Tue Jul 11 06:38:42 2000  Tim Janik  <timj@gtk.org>
20518
20519         * gtk/gtkrc.h: add xthickness and ythickness to GtkRcStyle and
20520         add the necessary tokens.
20521
20522         * gtk/gtkrc.c (gtk_rc_style_init): properly initiality the rc style.
20523         (gtk_rc_style_to_style): copy thicknesses.
20524         (gtk_rc_init_style): apply thicknesses.
20525         (gtk_rc_parse_style): parse xthickness and ythickness.
20526
20527         * gdk/x11/gdkdnd-x11.c: silence compiler in switch() statements.
20528
20529         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): 
20530         (gdk_window_new): 
20531         (_gdk_windowing_window_init): 
20532         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new): 
20533         (gdk_pixmap_create_from_data): 
20534         (gdk_bitmap_create_from_data): 
20535         (gdk_pixmap_new): 
20536         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
20537         (gdk_image_new): 
20538         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): 
20539         * gdk/x11/gdkdnd-x11.c (gdk_drag_context_new): 
20540         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get):
20541         (gdk_colormap_get_system): 
20542         (gdk_colormap_new): 
20543         * gdk/gdkwindow.c (gdk_window_init): 
20544         * gtk/gtkstyle.c (gtk_style_new):
20545         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
20546         * gdk/gdkpixmap.c (gdk_pixmap_init): 
20547         * gtk/gtkrc.c (gtk_rc_style_new):
20548         use g_object_new() instead of g_type_create_instance() which
20549         is a private function for fundamental type implementations.
20550
20551 Thu Jul  6 16:12:14 2000  Owen Taylor  <otaylor@redhat.com>
20552
20553         * configure.in: Add check for db2html
20554
20555 Thu Jul  6 14:53:05 2000  Owen Taylor  <otaylor@redhat.com>
20556
20557         * gtk/gtktypeutils.c (gtk_type_init): Add a temporary 
20558         hack to set glib_debug_objects based on gtk_debug_flags.
20559
20560 Thu Jul  6 14:12:13 2000  Owen Taylor  <otaylor@redhat.com>
20561
20562         * INSTALL.in: Update the Prerequisites section.
20563
20564         * Makefile.am demos/Makefile.am docs/Makefile.am
20565         docs/tutorial/Makefile.am gdk/x11/Makefile.am
20566         gdk/linux-fb/Makefile.am: Dist fixes
20567
20568 Thu Jul  6 12:26:03 2000  Owen Taylor  <otaylor@redhat.com>
20569
20570         * NEWS: 10,000 foot view of 1.3.1 changes.
20571
20572 Thu Jul  6 11:54:03 2000  Owen Taylor  <otaylor@redhat.com>
20573
20574         * gdk/gdk.h gdk/gdktypes.h gdk/linux-fb/gdkmain-fb.c
20575         gdk/nanox/gdkmain-nanox.c gdk/win32/gdkevents-win32.c
20576         gdk/win32/gdkinput-win32.c gdk/win32/gdkwin32.h
20577         gdk/x11/gdkmain-x11.c: 
20578
20579         Patch from George Lebl to add a GdkGrabStatus enumeration to use
20580         as a return value of gdk_*_grab(). Previously, we just
20581         returned the X11 values directly.
20582
20583 Thu Jul  6 11:27:44 2000  Owen Taylor  <otaylor@redhat.com>
20584
20585         * gdk/x11/Makefile.am: Patch from George Lebl to 
20586         install all the headers in the right place.
20587
20588 Tue Jul  4 13:13:01 BST 2000  Tony Gale <gale@gtk.org>
20589
20590         * docs/faq/gtk-faq.sgml: Add remaining sections. Completes
20591           initial conversion to DocBook.
20592
20593 2000-07-04  Tor Lillqvist  <tml@iki.fi>
20594
20595         * README.win32: Improve a bit.
20596
20597         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle also
20598         WM_SYSCHAR, and other changes to get handling of Alt+nnn or
20599         Alt+0nnn on the numpad (used to enter characters by numeric code
20600         from current DOS or ANSI codepage) working correctly, as in other
20601         Windows apps.
20602
20603         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Use
20604         same argument validity tests as in X11 version.
20605         (_gdk_cursor_destroy): Use DestroyCursor, not DestroyIcon.
20606
20607         * gdk/win32/gdkwin32.h: Add also WM_MOUSEWHEEL and CopyCursor
20608         definitions in case missing from headers.
20609
20610         * gdk/win32/gdkwindow-win32.c (gdk_win32_window_destroy): Also
20611         destroy the window-specific cursor.
20612         (RegisterGdkClass): Use the global gdk_ProgInstance instead of
20613         calling GetModuleHandle(NULL).
20614         (gdk_window_set_cursor): Reworked to always copy the passed cursor
20615         with CopyCursor before setting it as the window-specific
20616         cursor. It is OK for the caller to destroy the GdkCursor (and thus
20617         also its Windows cursor) after calling this function. Destroy any
20618         previous window-specific cursor.
20619
20620 Mon Jul  3 17:54:49 2000  Owen Taylor  <otaylor@redhat.com>
20621
20622         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): 
20623         font charset is iso8859-1, not iso-8859-1.
20624
20625 Mon Jul  3 17:08:14 2000  Owen Taylor  <otaylor@redhat.com>
20626
20627         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale):
20628         Use g_get_charset() instead of g_get_codeset().
20629
20630         * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: 
20631         Comment out some strdup'ing functions to keep timj
20632         happy until we finish fighting this out.
20633
20634 Mon Jul  3 14:24:16 2000  Owen Taylor  <otaylor@redhat.com>
20635
20636         * gtk/gtkwidget.c (gtk_widget_draw): Ignore calls with
20637         <= width or height.
20638
20639         * gtk/gtktable.c (gtk_table_attach): Fix missed merge
20640         from 1.2 for parent/child states.
20641
20642         * gdk/gdkgc.c (gdk_gc_set_rgb_fg/bg_color): Fix a couple
20643         of typos.
20644
20645         * gdk/gdkevents.[ch]: Remove press/xtilt/ytilt fields of
20646         event structures, replace with a generic axes field. Replace 
20647         deviceid/sourec with GdkDevice *device.
20648
20649         * gdk/gdkevents.[ch] (gdk_event_get_axis): Add function
20650         to extract particular axis use value from event. (Also
20651         can be used for normal X/Y.)
20652
20653         * gdk/gdkinput.h gdk/x11/gdkinput*: Major revision;
20654         allow for arbitrary number of axes, namespace everything
20655         as gdk_device_*. Replace guint32 deviceid with GdkDevice *
20656         everywhere.
20657
20658         * gdk/x11/{gdkmain-x11.c,gdkevent-x11.c,gdkinput*}: 
20659         Get rid of the gdk_input_vtable setup if favor of simply
20660         defining the functions in gdkinput-none/gxi/xfree.c in
20661         a similar fashion to the way that the port structure is 
20662         done.
20663
20664         * gtk/gtkdnd.c: Fix fields of synthesized button press event
20665         for new event structures. 
20666
20667         * gtk/gtkinputdialog.c gtk/testinput.c: Revise to match
20668         new device interfaces.
20669
20670 Sun Jul  2 18:19:50 2000  Owen Taylor  <otaylor@redhat.com>
20671
20672         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_layout): Add a 'text' argument to
20673         set the initial text.
20674
20675         * gtk/gtkaccellabel.c gtk/gtkcalendar.c gtk/gtkclist.c
20676         gtk/gtkentry.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c
20677         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvruler.c
20678         gtk/gtkvscale.c: Adapt to new argument of create_pango_layout().
20679
20680         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
20681         pango_layout_set_font_description to simplify.
20682
20683 Sun Jul  2 17:43:41 2000  Owen Taylor  <otaylor@redhat.com>
20684
20685         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
20686         pango_layout_set_font_description to simplify.
20687
20688 Sun Jul  2 17:06:40 2000  Owen Taylor  <otaylor@redhat.com>
20689
20690         * gtk/gtkcalendar.c gtk/gtkclist.c gtk/gtkctree.c gtk/gtkhscale.c
20691         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvscale.c gtk/gtkaccellabel.c: Use
20692         pango_layout_get_pixel_extents() to remove a large number of '/ PANGO_SCALE'.
20693
20694         * gtk/gtk[hv]ruler.c gtk/gtklabel.c: replace some / PANGO_SCALE with
20695         PANGO_PIXELS() macro.
20696
20697 Sun Jul  2 15:24:41 2000  Owen Taylor  <otaylor@redhat.com>
20698
20699         * gtk/gtkwidget.[ch] (gtk_widget_get_pango_context): Add new function
20700         that returns a PangoContext owned by the widget and updated to
20701         match future changes in the widget. Also, make 
20702         gtk_widget_create_pango_layout() use this context. If we ever
20703         add a ::changed signal to PangoContext, this will make things
20704         much more convenient. 
20705
20706         * gtk/gtkentry.c gtk/gtklabel.c: Call pango_layout_context_changed()
20707         in the appropriate places instead of destroying the layouts and
20708         creating new ones.
20709
20710         * gtk/gtkfontsel.[ch] gtk/gtkclist.c: Use gtk_widget_get_pango_context()
20711         in a few strategic places.
20712
20713 Sun Jul  2 14:37:58 2000  Owen Taylor  <otaylor@redhat.com>
20714
20715         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Call 
20716         gtk_widget_size_request() on reparented child, if one. Otherwise,
20717         queue_resize() on the child never results in it getting size-requested
20718         at all.
20719
20720         * gtk/testgtk.c (build_option_menu): Remove silly radio-menu-items
20721         in option menus, so that (with luck) people won't copy it into
20722         their apps in the future.
20723
20724         * gtk/gtkoptionmenu.c: Connect ::size_request on the menu
20725         to gtk_option_menu_calc_size. This isn't perfect, but should fix
20726         a lot of problems with changing the size of the menu's menu
20727         items after adding it to the option menu.
20728
20729         * gtk/gtktexttag.c: Include gtkmain.h for gtk_get_default_language().
20730
20731         * gtk/gtkwidget.[ch]: Add a ::direction_changed that triggers when
20732         the text direction for a widget changes.
20733
20734         * gtk/gtk{entry.c,label.[ch],textview.[ch]} gtk/testgtk.c: Use
20735         ::direction_changed to get rid of various hacks.
20736
20737 Sun Jul  2 13:19:12 2000  Owen Taylor  <otaylor@redhat.com>
20738
20739         * docs/Changes-2.0.txt: Move Changes-1.4.txt to the appropriate
20740         name.
20741
20742 Sun Jul  2 13:06:26 2000  Owen Taylor  <otaylor@redhat.com>
20743
20744         * gdk/x11/gdkpixmap-x11.[ch] Changes-1.4.txt: Add a is_foreign
20745         flag to the structure. Do not call XFreePixmap on pixmaps created
20746         by gdk_pixmap_foreign_new().
20747
20748 Sun Jul  2 12:45:50 2000  Owen Taylor  <otaylor@redhat.com>
20749
20750         * gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
20751         value using GdkRGB functionality given GdkColormap and GdkColor.
20752         (name not final, waiting for inspiration.)
20753         
20754         * gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
20755         set the foreground/background of a GC using the GC's colormap
20756         and GdkRGB. (name not final, waiting for inspiration.)
20757
20758         * gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from 
20759         gdk_rgb_get_cmap(), put #define in gdkcompat.h.
20760
20761         * gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
20762         gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
20763         purely a function of the corresponding colormap. Make
20764         gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
20765
20766         * gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
20767         gdk_pixbuf_*create_from_xpm_* in terms of
20768         gdk_pixbuf_new_from_xpm_data(), move into platform independent
20769         code.
20770
20771         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
20772         advantage of the new draw_rgb_32_image_dithalign.
20773
20774         * gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
20775
20776         * gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
20777         on each created GC.
20778
20779         * gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
20780
20781         * gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
20782         which we initialize from the drawable when the GC is created,
20783         if the drawable has a colormap.
20784
20785         * gdk/x11/gdkgc-x11.c: include string.h for memset.
20786
20787         * gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
20788
20789         * gtk/gtklayout.[ch]: Remove unsed configure serial member.
20790
20791 Sat Jul  1 16:28:32 2000  Owen Taylor  <otaylor@redhat.com>
20792
20793         * gdk/x11/gdkevents-x11.c (gdk_event_translate): When
20794         actually returning expose events, make sure to set
20795         the count field properly.
20796
20797         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): Fix
20798         accidentally reintroced bug which always cleared
20799         the graphics_exposures value. 
20800
20801 Wed Jun 28 18:03:09 BST 2000  Tony Gale <gale@gtk.org>
20802
20803         * docs/faq/gtk-faq.sgml: Change DocBook layout slightly
20804
20805 Wed Jun 28 17:49:05 BST 2000  Tony Gale <gale@gtk.org>
20806
20807         * docs/faq/gtk-faq.sgml: Finish Section 6. Add Section 7.
20808
20809 Wed Jun 28 13:31:55 BST 2000  Tony Gale <gale@gtk.org>
20810
20811         * docs/faq/gtk-faq.sgml: Start of Section 6.
20812
20813 Mon Jun 26 19:37:04 2000  Owen Taylor  <otaylor@redhat.com>
20814
20815         * configure.in: Put 1.3.1 in warning message, not 1.3.0.
20816         
20817         (Fixes problem with drawing childless frames. Pointed out
20818         by and a first patch from Anders)
20819         
20820         * gtk/gtkframe.c (gtk_frame_compute_child_allocation): Always
20821         compute a child_allocation, even if we don't have a child.
20822
20823         * gtk/gtkaspectframe.c (gtk_aspect_frame_compute_child_allocation):
20824         Always chain to the parent's impl, even if we don't have a child.
20825
20826 Mon Jun 26 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
20827
20828         * gdk/gdkrgb.c: If possible, create only a single shm segment and
20829         use multiple parts of it instead of creating a bunch of separate
20830         segments, since the maximum number of segments per system is not
20831         large. (This might be worth backporting to GTK+-1.2.x if we make a
20832         new release )
20833
20834         * gdk/gdkrgb.c: Localize a bunch of variables into the GdkRgbInfo
20835         structure in preparation for per-colormap GdkRGB.
20836
20837         * gdk/x11/gdkimage-x11.c (gdk_image_new): Don't set gdk_use_xshm
20838         to False when we get EINVAL from shmget so that the caller of
20839         gdk_image_new can retry with a smaller segment size.
20840
20841 Mon Jun 26 13:01:16 BST 2000  Tony Gale <gale@gtk.org>
20842
20843         * docs/faq/gtk-faq.sgml: Add Sections 4 & 5.
20844
20845 Fri Jun 23 17:54:23 2000  Tim Janik  <timj@gtk.org>
20846
20847         * configure.in: make the current version number 1.3.1 (binary age 0,
20848         interface age 0).
20849         
20850         * gtkfeatures.h, gtkfeatures.h.in: dejavue, get rid of these *again*,
20851         gtkcompat.h is all we want.
20852
20853         * gtk/gtktypeutils.[hc]: define most of the primitive types in terms of
20854         GLib primitive types. fixed g_type_register_fundamental() argument
20855         ordering.
20856
20857         * gtk-config.in (lib_gtk): add -lgdk_pixbuf so third party code
20858         compiles.
20859
20860         * gdk-pixbuf-loader.[hc]: get rid of unistd.h include.
20861         object code cleanup, comment trigraph fixes, etc...
20862
20863 2000-06-23  Havoc Pennington  <hp@redhat.com>
20864
20865         * gtk/gtktextview.c (gtk_text_view_set_buffer): Use anonymous mark 
20866         instead of making up a bogus name for first_para_mark
20867
20868         * gtk/gtkstatusbar.h, gtk/gtkstatusbar.c: Allow 
20869         0 as a context ID
20870
20871 Thu Jun 22 17:43:51 BST 2000  Tony Gale <gale@gtk.org>
20872
20873         * docs/faq/gtk-faq.sgml: Change filename. Add Section 3.
20874
20875 2000-06-21  Havoc Pennington  <hp@pobox.com>
20876
20877         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Fix bug where
20878         we didn't check window->bg_pixmap != GDK_NO_BG.
20879
20880         * gtk/gdk-pixbuf-loader.c: Change to reflect GObject-ification of
20881         gdk-pixbuf
20882
20883 Thu Jun 22 14:02:19 BST 2000  Tony Gale <gale@gtk.org>
20884
20885         * docs/faq/gtk-faq.sgm: Move file to here.
20886           TODO: Update Makfile.am 
20887
20888 Thu Jun 22 13:41:09 BST 2000  Tony Gale <gale@gtk.org>
20889
20890         * docs/gtk-faq.sgm: Add Section 2
20891
20892 Thu Jun 22 08:43:45 BST 2000  Tony Gale <gale@gtk.org>
20893
20894         * docs/gtk-faq.sgm: New file. Start of DocBook
20895           version of the FAQ.
20896
20897 Wed Jun 21 23:04:17 2000  Owen Taylor  <otaylor@redhat.com>
20898
20899         * configure.in (GDK_PIXBUF_MAJOR): Define version
20900         numbers for GDK_PIXBUF_*, as they get substituted
20901         into a header file. Need to consider versioning
20902         for gdk-pixbuf more carefully later.
20903
20904 2000-06-21  Raja R Harinath  <harinath@cs.umn.edu>
20905
20906         Work with srcdir != builddir.   
20907         * demos/testanimation.c: Don't include "gdk-pixbuf.h".  Use
20908         <gtk/gdk-pixbuf-loader.h>, not "gtk-pixbuf/gdk-pixbuf-loader.h".
20909         * demos/testpixbuf.c: Likewise.
20910         * demos/testpixbuf-scale.c: Don't include "gdk-pixbuf.h".
20911         * demos/testpixbuf-drawable.c: Don't include "gdk-pixbuf.h".  Use
20912         <gdk/x11/gdkx.h>.
20913         * demos/pixbuf-demo.c: Use <gtk/gtk.h> not "gtk.h".  Don't include
20914         "gdk-pixbuf.h".
20915         * demos/Makefile.am (INCLUDES): Remove unneeded directories.
20916
20917 Wed Jun 21 19:45:02 2000  Owen Taylor  <otaylor@redhat.com>
20918
20919         * TODO.xml: Change 1.4 version numbers to 2.0.
20920
20921 Wed Jun 21 19:29:08 2000  Owen Taylor  <otaylor@redhat.com>
20922
20923         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf-drawable.c: Indentation
20924         fixups to GTK+ standard.
20925
20926 Wed Jun 21 16:38:13 2000  Owen Taylor  <otaylor@redhat.com>
20927
20928         * gdk-pixbuf/* docs/reference/gdk-pixbuf/*: Welcome aboard,
20929         gdk-pixbuf.
20930
20931         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
20932         fixups for GObject.
20933
20934         * gdk/Makefile.am gdk/gdkpixbuf-render.[ch] gdk/gdkpixbuf.[ch]: Bits of 
20935         gdk-pixbuf with GDK dependencies moved into GDK.
20936         
20937         * gtk/Makefile.am gtk/gdk-pixbuf-loader.[ch]: Temporarily
20938         move gdk-pixbuf-loader here until GObject has signals.
20939
20940         * demos/: New directory of demos. Move demos from
20941         gdk-pixbuf here.
20942
20943         * demos/pixbuf-init.c: Small bit of code to check for
20944         loaders in ../gdk-pixbuf/.libs/gdk-pixbuf, and if found,
20945         set GDK_PIXBUF_MODULEDIR appropriately.
20946
20947         * gdk/gdkcompat.h: Remove GDK_DRAWABLE_PIXMAP compat
20948         define which no longer makes sense.
20949
20950 2000-06-21  Havoc Pennington  <hp@redhat.com>
20951
20952         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Use
20953         gtk_get_default_language
20954
20955         * gtk/gtkmain.h, gtk/gtkmain.c (gtk_get_default_language): 
20956         new function to get the default language
20957
20958         * gtk/gtktexttagprivate.h, gtk/gtktexttag.c, gtktextview.c: 
20959         s/gtk_text_view_style_values/gtk_text_style_values/
20960
20961         * gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktexttagprivate.h:
20962         Add a "language" field to tags.
20963
20964         (gtk_text_tag_set_arg): Fix bug in setting
20965         "bg_full_height_set" tag.
20966
20967 2000-06-21  Havoc Pennington  <hp@redhat.com>
20968
20969         * gtk/gtktextiter.h: Use gunichar instead of gint when appropriate
20970         in the interfaces
20971
20972         * gtk/gtktexttypes.c: Remove UTF functions, use glib 
20973         stuff instead when possible.
20974
20975         * gtk/gtktexttypes.h: Delete some unused constants
20976
20977         * gtktextbtree.c, gtktextiter.c, gtktextsegment.c, gtktextview.c,
20978         testtextbuffer.c: use glib instead of custom unicode routines
20979
20980 Wed Jun 21 12:50:58 2000  Owen Taylor  <otaylor@redhat.com>
20981
20982         * docs/es/: Removed mistakenly added generated sgml
20983
20984         * docs/{gdk.texi,gtk.texi,gdk.sgml} macros.texi texinfo.tex:
20985         Remove outdated info files.
20986
20987         * docs/gtk_tut* docs/package_tutorial.sh docs/tutorial:
20988         Moved tutorial files into subdir
20989
20990         * docs/gtkfaq.sgml docs/faq/gtkfaq.sgml: Move FAQ into
20991         subdir.
20992
20993         * docs/man/gtk_button.pod: Remove. (contents will be
20994         integrated into gtk-reference button page.)
20995
20996         * configure.in docs/Makefile.am docs/tutorial/Makefile.am
20997         docs/faq/Makefile.am: Adjust for new organization
20998
20999 2000-06-21 Christopher Blizzard  <blizzard@redhat.com>
21000
21001         * gdk/x11/Makefile.am (install-data-local): use $(mkinstalldirs)
21002         not $(MKINSTALLDIRS)
21003
21004 Wed Jun 21 12:24:28 2000  Owen Taylor  <otaylor@redhat.com>
21005
21006         * gtk/testgtk.c (create_text): Finish the job Elliot started
21007         of removing font setting test for text widget. (Since text widget
21008         and GdkFont are not deprecated, and cause portability problems.)
21009
21010 Wed Jun 21 11:41:43 2000  Owen Taylor  <otaylor@redhat.com>
21011
21012         * gtk/gtkentry.c gtk/gtkimcontextsimple.c gtk/gtklabel.c
21013         gtk/gtktexttypes.c gtk/testtext.c modules/linux-fb/basic.c:
21014         Remove use of libunicode in favor of new GLib functions.
21015
21016         * gtk/gtkcolorsel.c: Remove conditional includes for FB, win32,
21017         nano-x, framebuffer. The X11 include is just a hack until we get
21018         the necessary functions in gdkcolor.h, so there is no reason to
21019         add other includes of platforms.
21020
21021         * gtk/gtkwindow.c (gtk_window_compute_default_size): Revert 
21022         window bigger than the screen change.
21023
21024         * gtk/testgtk.c: Revert some random changes from Elliot
21025         that had no particular point and were causing testgtkrc
21026         not to function correctly.
21027         
21028         * gdk/gdkregion-generic.h: Revert change from Elliot. Just
21029         because GdkSegment and GdkRegionBox have the same fields,
21030         it doesn't mean that 'typedef GdkSegment GdkRegionBox'
21031         results in clearer code.
21032
21033         * gdk/x11/gdkinput-x11.c (gdk_input_common_select_events,
21034         gdk_input_translate_coordinates): Fix missed GdkObjectification
21035
21036 2000-06-18  Elliot Lee  <sopwith@redhat.com>
21037
21038         * gdk/Makefile.am, gdk/*/Makefile.am: Fix conditionality to work the "right" way.
21039         * gtk/gtk{plug,socket}.h: Missed commits from previous.
21040
21041 2000-06-20  Havoc Pennington  <hp@redhat.com>
21042
21043         * modules/linux-fb/Makefile.am: Make this compile
21044         without framebuffer enabled
21045
21046         * gdk/linux-fb/Makefile.am: Add conditional to not build
21047         framebuffer unless specified in configure
21048
21049         * gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
21050         the size of the target instead of source if -1 was passed for
21051         width/height
21052
21053         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
21054         width/height confusion.
21055
21056 2000-06-19  Havoc Pennington  <hp@redhat.com>
21057
21058         * gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
21059         GDK_DRAWABLE_XID. In the future, we probably want to make it
21060         faster with G_DISABLE_CHECKS turned on.
21061
21062 2000-06-14  Havoc Pennington  <hp@redhat.com>
21063
21064         * gdk/Makefile.am: add gdkpixmap.c
21065
21066         * gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
21067         s/gdk_image_init/_gdk_windowing_image_init
21068
21069         * gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
21070         ref/unref
21071
21072         * gdk/gdkcolor.h: make GdkColormap a GObject subclass
21073
21074         * gdk/gdkcompat.h: remove GdkWindowType compat, since
21075         GdkWindowType is now non-deprecated; 
21076         change gdk_window_get_type() compat to be
21077         gdk_window_get_window_type().
21078
21079         * gdk/gdkdnd.h: make GdkDragContext a GObject.
21080
21081         * gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
21082         virtual GObject. Make all functions call into the vtable.
21083         Move gdk_image_put() guts in here. Remove GdkDrawableType
21084         and gdk_drawable_get_type(), these are now GdkWindow-specific.
21085         draw_image, get_depth, get_size, set_colormap, get_colormap,
21086         get_visual added to the vtable.
21087         
21088         * gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual 
21089         GObject. Virtualize everything. 
21090         (gdk_gc_new_with_values): remove check for destroyed window,
21091         because now GdkWindow::create_gc will check this.
21092         (gdk_gc_set_values): New function to set GC values, this 
21093         was already implemented but wasn't in the header
21094
21095         * gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
21096
21097         * gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
21098         _gdk_window_draw_image(), remove _gdk_windowing_window_class,
21099         remove _gdk_window_class; add _gdk_window_impl_get_type() and
21100         _gdk_pixmap_impl_get_type(). Rename gdk_window_init to
21101         _gdk_windowing_window_init, rename gdk_image_init to
21102         _gdk_windowing_image_init.
21103         
21104         * gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
21105         (gdk_draw_layout): Remove check for destroyed window, 
21106         because all the drawable methods already check it.
21107         
21108         * gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
21109         Add gdkpixmap.c which contains implementation of GdkDrawable
21110         virtual table (by chaining to a platform-specific implementation
21111         object).
21112         
21113         * gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP, 
21114         GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
21115         GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
21116         GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
21117         GdkColormapPrivate. 
21118
21119         * gdk/gdktypes.h: #include <glib-object.h>
21120
21121         * gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
21122         Move most functionality to platform-specific implementation
21123         object. GdkWindow itself now handles the backing store, then
21124         chains to the platform-specific implementation.
21125         (gdk_window_get_window_type): return GdkWindowType of the window.
21126         (gdk_window_peek_children): New routine, returns the children of 
21127         a GdkWindow
21128         (gdk_window_get_children): Was in X11-specific code and did 
21129         XQueryTree. Changed to simply return a copy of window->children; 
21130         so it can go in cross-platform code.
21131         
21132         * gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
21133
21134         * gdk/x11/gdkcolor-x11.c: implement X-specific parts of 
21135         GdkColormap; just changed to use the new private data instead
21136         of casting to GdkColormapPrivate.
21137
21138         * gdk/x11/gdkcursor-x11.c: added a couple typechecks to 
21139         gdk_cursor_new().
21140
21141         * gdk/x11/gdkdnd-x11.c: Change the way we access private fields 
21142         (private data member in the GObject). 
21143         (xdnd_manager_source_filter): Function had broken 
21144         error handling, fix it (use gdk_error_trap_push).
21145
21146         * gdk/x11/gdkdrawable-x11.c: This file now implements
21147         a base class for GdkWindowImplX11/GdkPixmapImplX11. This 
21148         base class is purely for the convenience of the X port,
21149         and not part of the interface to cross-platform GDK.
21150
21151         * gdk/x11/gdkevents-x11.c: Reflect various renamings.
21152         
21153         * gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
21154         specific to X, and returned by the create_gc virtual method
21155         of GdkDrawableImplX11. 
21156         (gdk_x11_gc_set_dashes): Change this to take an array of gint8
21157         rather than gchar, this was also changed in the GdkGC vtable.
21158         (gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
21159         mask is 0, return immediately, instead of checking every flag.
21160         This is faster, and keeps us from segfaulting if values is NULL
21161         and the mask contains some nonzero flags.
21162
21163         * gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
21164         GdkWindow.
21165
21166         * gdk/x11/gdkglobals-x11.c: change type of grab window, since 
21167         GdkWindowPrivate is gone.
21168
21169         * gdk/x11/gdkim-x11.c: rename things that got renamed.
21170
21171         * gdk/x11/gdkimage-x11.c: implement in terms of GObject, and 
21172         remove the image_put stuff that got transferred to GdkDrawable.
21173         
21174         * gdk/x11/gdkinput.c: renamings
21175
21176         * gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
21177
21178         * gdk/x11/gdkpixmap-x11.c: GObject conversion
21179
21180         * gdk/x11/gdkprivate-x11.h: indentation fixes
21181
21182         * gdk/x11/gdkproperty-x11.c: renamings
21183
21184         * gdk/x11/gdkselection-x11.c: renamings
21185
21186         * gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now 
21187         implements the platform-specific "impl" object.
21188         Moved gdk_window_get_children to gdk/gdkwindow.c
21189
21190         * gdk/x11/gdkx.h: Remove all the private structs and private datas
21191         that no longer exist. Add declaration of GdkGCX11 object here.
21192         Fix all the macros to still work. 
21193
21194         * gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
21195         GdkDragContext from the boxed types since they are now GObjects.
21196
21197         * gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
21198         moved xthickness/ythickness into the instance. GtkStyleClass
21199         functions are now in the standard vtable for GtkStyle, so you have
21200         to create a GObject subclass to write a theme engine.
21201         (gtk_style_copy): fixed a leaked PangoFontDescription
21202         (gtk_style_init): renamed gtk_style_realize, so gtk_style_init
21203         can be the standard GObject function.
21204         
21205         * Throughout GTK:
21206         s/style->klass->[xy]thickness/style->[xy]thickness
21207         s/pango_layout_unref/g_object_unref/
21208
21209         * gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
21210         
21211         * gtk/gtksocket.c: Use gdk_window_get_user_data() instead of 
21212         accessing GDK internals.
21213
21214         * gtk/gtkwidget.c: Use gdk_window_peek_children() instead of 
21215         accessing GDK internals.
21216
21217 2000-06-18  Elliot Lee  <sopwith@redhat.com>
21218
21219         * gtk/gtkwindow.c: Don't allow creation of a window bigger than the screen.
21220
21221         * gtk/gtkrange.c: Fix the mega-jumpy-with-lagged-events scrollbar
21222         problem by calculating event position relative to the trough
21223         rather than the slider.
21224         * gtk/gtkdnd.c, gtk/gtkcolorsel.c: Include FB headers if appropriate.
21225
21226         * gdk/gdkgc.h: Add GDK_NOR.
21227
21228         * configure.in, Makefile.am: Add modules top level dir
21229         * configure.in: Only use pangox library if building x11 target.
21230         * gdk/gdkdnd.h: Add GDK_DRAG_PROTO_LOCAL enum for future intra-app use.
21231
21232 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
21233
21234         * gtk/gtkcolorsel.c: Change private class member to be named
21235         private_data throughout the file.
21236
21237         * gtk/gtkcolorsel.h (struct _GtkColorSelection): Change private to
21238         private_data to avoid clashing with keyword.
21239
21240 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
21241
21242         * gdk/gdkdnd.h: Add comment to remove warning.
21243
21244 Sun Jun 18 15:35:35 2000  Pablo Saratxaga <pablo@mandrakesoft.com>
21245
21246         * gtk/gtkrc.cp1251,gtk/Makefile.am: the cp1251 is also used by
21247         Byelorussian language; changed the Makefile and file names 
21248         to reflect that.
21249
21250 Mon Jun 12 16:58:40 2000  Owen Taylor  <otaylor@redhat.com>
21251
21252         * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw
21253         rather than gdk_window_hide; this makes things work
21254         correctly if the window is programmatically hidden while
21255         iconified.
21256
21257 Sun Jun 11 12:46:19 2000  Owen Taylor  <otaylor@redhat.com>
21258
21259         * gtk/gtkdnd.c (gtk_drag_set_default_icon): Fix
21260         cut and paste typo where wrong pixmap was being
21261         unref'ed. (Pointed out by a friend of KUSANO Takayuki.)
21262
21263 Sun Jun 11 10:22:36 2000  Owen Taylor  <otaylor@redhat.com>
21264
21265         * gtk/gtkselection.c (gtk_selection_bytes_per_item):
21266         Add helper function to compute format / bytes 
21267         relationship. Use in a couple places to fix up
21268         errors which assume 8 * format.
21269
21270         * gtk/gtkselection.c (gtk_selection_request): Use 32
21271         rather than 8 * sizeof (GdkAtom), to work correctly
21272         on Alpha.
21273
21274 Thu Jun  8 21:54:51 2000 Christopher Blizzard  <blizzard@redhat.com>
21275
21276         * gtk/Makefile.am (DEPS): deps include libgtk-x11.la, not
21277         libgtk.la
21278         (LDADDS): include libgtk-x11.la and libgdk-x11.la, not the non-x11
21279         versions
21280
21281         * gtk/gtklabel.c (gtk_label_get_text): Make sure that the error
21282         checking macros return NULL since the function has a return value.
21283
21284 Wed Jun  7 15:44:42 2000  Owen Taylor  <otaylor@redhat.com>
21285
21286         * gtk/Makefile.am (LDFLAGS): Add missing backslash that was keeping
21287         GTK+ from building at all.
21288
21289         * gdk/Makefile.am (gdk_c_sources): Fix up some indentation issues.
21290
21291 Mon Jun  5 19:32:53 CEST 2000 Paolo Molaro <lupus@linuxcare.com>
21292
21293         * configure.in, gtk-config.in, gdk/Makefile.am, gdk/*/Makefile.am,
21294         gtk/Makefile.am: make it possible to configure gtk for different
21295         targets on the same platform. The library name is now 
21296         libgtk-$target-$version.so. gtk-config accepts a --target x11|nanox|linux-fb
21297         flag. Only the x11 target compiles right now.
21298         * gdk/gdkregion-generic.h, gdk/gdkregion-generic.c, gdk/gdkpoly-generic.h,
21299         gdk/gdkpolyreg-generic.c: move generic region code in the main GDK dir.
21300         * gdk/nanox/gdk*generic*: delete generic region code.
21301         * gdk/linux-fb/gdk*generic*: delete generic region code.
21302         * README.nanox: update information.
21303         
21304 Tue Jun  6 10:53:59 2000  Owen Taylor  <otaylor@redhat.com>
21305
21306         * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
21307         prepend not append. (Pointed out by Brett Hall.)
21308
21309 Tue Jun  6 01:59:57 2000  Owen Taylor  <otaylor@redhat.com>
21310
21311         * gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
21312
21313 Mon Jun  5 16:00:09 2000  Owen Taylor  <otaylor@redhat.com>
21314
21315         * gdk/gdk.c (gdk_init_check): Add call to g_type_init() - we'll
21316         need this later, and this makes sure that the atexit for
21317         glib gets called after that for GDK, so atexits are
21318         properly ordered for object leak checking.
21319
21320         * gdk/gdk.c (gdk_exit_func): Call gdk_windowing_exit().
21321
21322         * gdk/x11/gdkmain-x11.c (gdk_windowing_exit): Call 
21323         pango_x_shutdown_display()
21324
21325         * gtk/simple.c (main): Close window on destroy.
21326
21327 Mon Jun  5 11:50:02 2000  Owen Taylor  <otaylor@redhat.com>
21328
21329         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): We need
21330         to treat initial creation different from setting with 
21331         regards to the graphics-exposures parameter, so add a parameter
21332         indicating whether this is initial or not.
21333
21334 Mon Jun  5 13:29:31 2000  Owen Taylor  <otaylor@redhat.com>
21335
21336         * gdk/x11/gdkevents-x11.c: Hack gdk_event_get_graphics_expose()
21337         to sort of work by adding an extra return_exposes arg
21338         to gdk_event_translate() - it might be better to simply
21339         deprecate the function altogether and force people to rewrite
21340         without it. gdk_window_scroll() handles most of it, and where
21341         gdk_window_scroll() doesn't work, simply redrawing more does.
21342
21343         * gtk/gtkwidget.c (gtk_widget_set_default_direction): Fix up
21344         assertion.
21345
21346         * gtk-config.in: Include PANGO_CFLAGS/LIBS.
21347
21348         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Remove a 
21349         bunch of pretty much useless /* Print debugging info */ comments 
21350         which had drifted away from the code they were commenting.
21351
21352 2000-06-02  Havoc Pennington  <hp@pobox.com>
21353
21354         * gtk/testtextbuffer.c: Test program to make sure GtkTextBuffer
21355         is in working order.
21356         
21357         * gtk/testtext.c: Change to reflect anonymous mark API
21358
21359         * gtk/gtktextview.c: Convert from mark names to GtkTextMark*.
21360
21361         * gtk/gtktexttag.h (struct _GtkTextTag): remove the affects_size
21362         field, which was unused.
21363
21364         * gtk/gtktextmarkprivate.h (GTK_IS_TEXT_MARK): add this macro,
21365         saves some typing.
21366
21367         * gtk/gtktextbuffer.c: Switch from mark names to GtkTextMark*   
21368
21369         * gtk/gtktextbtree.c (gtk_text_btree_new): set the not_deleteable
21370         flag on the insertion point and selection bound
21371
21372         Throughout, use GtkTextMark instead of GtkTextLineSegment, and 
21373         make mark-manipulation functions take a GtkTextMark* instead of a
21374         mark name.
21375         
21376         * gtk/gtktextmarkprivate.h: Add a "not_deleteable" flag to 
21377         GtkTextMarkBody; will be used to detect attempts to delete
21378         the permanent marks (insert and selection bound)
21379
21380         * gtk/Makefile.am (noinst_PROGRAMS): add testtextbuffer 
21381
21382 Fri Jun  2 12:56:01 2000  Owen Taylor  <otaylor@redhat.com>
21383
21384         * gtk/gtkwidget.c (gtk_widget_init): Initialize DOUBLE_BUFFERED
21385         flag to on.
21386
21387         * gtk/gtkwidget.c (gtk_widget_draw) gtk/gtkmain.c (gtk_main_do_event): 
21388         Honor DOUBLE_BUFFRED_FLAG
21389
21390         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a
21391         function to set the DOUBLE_BUFFERED flag.
21392
21393         * gtk/gtkwidget.h: Add GTK_DOUBLE_BUFFERED flag to indicate whether
21394         or not exposes done on the widget should be double-buffered.
21395
21396         * gtk/gtkenums.h (GtkTextDirection): Reverse order of enumerations
21397         to be what would be expected. (Fixes problem with a
21398         g_return_if_fail() validating a TextDirection enumeration)
21399
21400 Thu Jun  1 23:05:13 2000  Owen Taylor  <otaylor@redhat.com>
21401
21402         * gtk/gtkwidget.c: Remove all references to 
21403         offscreen flag which was no longer used.
21404
21405         * gtk/gtkprivate.h (enum): Remove unused flags and compress.
21406
21407         * gtk/gtkframe.c (gtk_frame_set_label_widget): Check
21408         for non-null label_widget->parent.
21409
21410         * gtk/gtkentry.c: Get rid of code to deal with PangoAttribute 
21411         which no longer was used.
21412
21413         * gdk/gdkpango.c (gdk_pango_context_get_info): make static.
21414
21415         * gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
21416         for null arguments.
21417
21418         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
21419         check for destroyed windows.
21420
21421 Thu Jun  1 13:48:45 2000  Owen Taylor  <otaylor@redhat.com>
21422
21423         * gtk/gtkimmulticontext.c: Add a finalize method and unref
21424         the slave context there.
21425
21426         * gtk/gtkinvisible.[ch]: Make reference counting behavior
21427         identical to GtkWindow.
21428
21429 Thu Jun  1 01:54:11 2000  Owen Taylor  <otaylor@redhat.com>
21430
21431         * Makefile.am gdk/gdkpango.c: Copy the layout render function from
21432         pangox to here, so we can write them independent of rendering
21433         system, using GDK primitives.
21434
21435         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
21436         gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
21437         since we have a rendering-system independent implementation in
21438         terms of draw_glyphs().
21439         
21440         * gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
21441         function to render a single line.
21442
21443         * gdk/x11/gdkpango.c: Move the guts of this file mostly
21444         into ../gdkpango.c, which simplifies things, since we
21445         don't have to deal with raw X gc's.
21446
21447 Fri May 19 04:28:16 2000  Owen Taylor  <otaylor@redhat.com>
21448
21449         * gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
21450         get the logical attributes for a given GtkTextLine.
21451
21452 Tue May 30 16:05:39 2000  Owen Taylor  <otaylor@redhat.com>
21453
21454         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
21455         g_locale_get_codeset() to g_get_codeset() change.
21456
21457 Tue May 30 15:03:19 2000  Owen Taylor  <otaylor@redhat.com>
21458
21459         * gtk/testcalendar.c (calendar_font_selection_ok): Use font
21460         descriptions.
21461
21462         * gtk/gtkentry.c (gtk_entry_draw_text): Center text within
21463         the entry.
21464
21465         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
21466         redoing (vastly simplifying) for Pango. Still needs quite
21467         a bit of work. (Size selection is currently poor. List of 
21468         predefined sizes is not a good idea, since all of these
21469         sizes won't necessarily be distinct.)
21470
21471 Tue May 30 13:50:19 2000  Owen Taylor  <otaylor@redhat.com>
21472
21473         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
21474         CODESET results for LANG=C.
21475
21476 Mon May 29 15:49:10 2000  Owen Taylor  <otaylor@redhat.com>
21477
21478         * gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
21479         which takes a stringized pango font description;
21480         ignore the older 'font' and 'fontset' declarations.
21481
21482         * gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
21483         field with a GdkFont derived via gdk_font_from_description(),
21484         for compatibility. (Should we just remove it entirely?
21485         Probably too much compatibility breakage, but people
21486         should be migrating to the new Pango stuff as quickly
21487         as possible.)
21488
21489 Mon May 29 15:47:41 2000  Owen Taylor  <otaylor@redhat.com>
21490
21491         * gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
21492
21493 Mon May 29 15:44:46 2000  Owen Taylor  <otaylor@redhat.com>
21494
21495         * gtk/gtkcalender.c: Roughly pango-ized. Really needs 
21496         redoing; there are some bugs in size allocation right
21497         now, the semi-existant distinction between header / day
21498         fonts was removed, but, with Pango, could actually
21499         be made functional in a nice way.
21500         
21501         * gtk/testcalender: Move calender from examples into this
21502         directory as a test program. (We really need to restrcture
21503         testgtk into a whole directory full of tests for every
21504         widget or functionality group, separated into multiple .c
21505         files.)
21506
21507 Mon May 29 15:19:56 2000  Owen Taylor  <otaylor@redhat.com>
21508
21509         * gtk/testgtk.c (file_exists): Fix stupid typo that
21510         was keeping RC file from being loaded.
21511
21512         * gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
21513         RC file font code.
21514
21515 Mon May 29 14:31:27 2000  Owen Taylor  <otaylor@redhat.com>
21516
21517         * gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
21518         Add function to load a GdkFont from a PangoFontDescription.
21519
21520 2000-05-29  Tor Lillqvist  <tml@iki.fi>
21521
21522         * gdk/win32/gdkevents-win32.c (gdk_WindowProc): The local "event"
21523         variable should be of type GdkEventPrivate.
21524
21525 Fri May 26 17:16:40 2000  Owen Taylor  <otaylor@redhat.com>
21526
21527         * gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
21528         to have any widget for the label, use a GtkLabel widget
21529         to display the text. (Based partially on a patch from
21530         Anders Carlson.)
21531
21532         (Quite a bit of code reorganization - strip 90% of the
21533         guts out of gtkaspectframe and add a single virtual
21534         func to GtkFrameClass - compute_child_allocation.)
21535
21536 Fri May 26 12:00:02 2000  Owen Taylor  <otaylor@redhat.com>
21537
21538         * gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
21539         (Removed clist->row_center_offset field because caching
21540         it wasn't saving time or code, added private function
21541         _gtk_clist_create_cell_layout()).
21542
21543 Wed May 24 15:59:37 2000  Owen Taylor  <otaylor@redhat.com>
21544
21545         * gtk/gtkaccellabel.c: Pangoized.
21546
21547         * gtk/[hv]ruler.c: Pangoized
21548
21549 Mon May 22 19:23:59 2000  Owen Taylor  <otaylor@redhat.com>
21550
21551         * gtk/gtkfilesel.c (gtk_file_selection_init):
21552         Use gtk_clist_set_column_auto_resize() to remove need
21553         need for manual column width computations.
21554
21555 Mon May 22 18:50:26 2000  Owen Taylor  <otaylor@redhat.com>
21556
21557         * gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel, 
21558         ensuring Pango correctness, and considerably simplifying the
21559         code.
21560         
21561         * gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
21562
21563         * gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
21564         getting of numbers of lines.
21565
21566         * gtk/gtklabel.c (gtk_label_size_request): Set the requisition
21567         to the actual requested width of the lable, not to the wrap
21568         width we set.
21569
21570         * gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
21571
21572         * gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
21573           gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
21574
21575         * gtk/gtktextview.c: Fix structure inheritance.
21576
21577         * gtk/gtkprogressbar.c: Pangoize.
21578
21579 Mon May 22 15:47:30 2000  Owen Taylor  <otaylor@redhat.com>
21580
21581         * gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
21582         in a function.
21583
21584         * gtk/gtktextlayout.c (find_display_line_above): Fixed
21585         bug with computing line tops.
21586
21587         * gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
21588
21589 Thu May 18 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
21590
21591         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
21592         and y_offset coordinates to do what we need now. (The offset between
21593         buffer and layout coordinates has been reintroduced, but is a 
21594         bit different than before.)
21595
21596         * gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
21597         handle the adjustments ourselves, and scroll as necessary using
21598         the new gdk_window_scroll().
21599         
21600         The advantage of this is that when we are incrementally revalidating,
21601         we are essentially rearranging things around the visible portion
21602         of the screen. With the old setup, the visible portion of the
21603         screen was moved around in the layout, so scrolling and redrawing
21604         to track that caused jumping of the display. Since we now
21605         control the scrolling ourselves, we can suppress this and
21606         only redraw when things actually change.
21607
21608 Thu May 18 18:47:25 2000  Owen Taylor  <otaylor@redhat.com>
21609
21610         * gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
21611         the region not just redisplay it after-all, since we store the
21612         cursors in the LineDisplay. (Ugly interactions here between
21613         GtkLayout and GtkTextBTree here.)
21614         
21615         * gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
21616
21617 Thu May 18 18:43:21 2000  Owen Taylor  <otaylor@redhat.com>
21618
21619         * gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
21620         Added function to scroll contents of a window while keeping the
21621         window constant. Works by XCopyArea or guffaw-scrolling depending
21622         on the details of how the window is set up. (guffaw-scrolling
21623         still needs to be filled in.)
21624
21625 Wed May 17 22:36:53 2000  Owen Taylor  <otaylor@redhat.com>
21626
21627         * gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
21628         move the debugging that was tied to a global variable
21629         to that.
21630
21631         * gtk/gtkmarshal.list: Add NONE:INT,INT,INT
21632
21633         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
21634         validated flag, in line data instead of setting height/width to
21635         -1. This allows us to perform operations with partially invalid
21636         buffer (using the old size for invalid lines) and thus to do
21637         incremental vaidation. Keep height/width aggregates up to date
21638         when deleting text and rebalancing the tree.
21639
21640         * gtk/gtktextbtree.[ch]: Add functions validate a line
21641         (gtk_text_btree_validate_line), and to validate up
21642         to a number of pixels (gtk_text_btree_validate).
21643
21644         * gtk/gtktextlayout.[ch]: Add an ::invalidated signal
21645         that indicates that something is changed and a revalidation
21646         pass is needed. Change ::need_repaint to ::changed, and
21647         make it take old and new yranges instead of a rectangle.
21648
21649         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
21650         the line_data_destroy() function from 
21651         gtk_text_btree_add_view() to a virtual function in 
21652         GtkTextLayout
21653
21654         * gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
21655         since we are handling partial repaints in a different fashion
21656         now.
21657
21658         * gtk/gtktextbtree.[ch]: Only repaint the changed portion
21659         of the selection instead of queueing a repaint on the
21660         entire widget.
21661
21662         * gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
21663         get_selection_bounds() down to btree, make the function
21664         in buffer a wrapper around the btree function.
21665
21666         * gtk/gtktextlayout.[ch]: Add functions to check if the
21667         layout is valid and to recompute either a range of pixels
21668         aroudn a line or a certain total number of pixels.
21669
21670         * gtk/gtktextlayout.[ch]: Cache a single line display;
21671         now that we only redraw the needed portions, the hit rate
21672         for this cache is quite high.
21673         
21674         * gtk/gtktextview.[ch]: Keep track of the first paragraph
21675         on the screen so that when re-laying-out the buffer, we can
21676         keep the same place. This requires connecting to ::value_changed
21677         on the adjustments
21678
21679         * gtk/gtktextview.[ch]: Add idle functions to revalidate
21680         the buffer after we receive an ::invalidated signal.
21681         
21682 Wed May 17 22:10:47 2000  Owen Taylor  <otaylor@redhat.com>
21683
21684         * gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
21685         to max of allocation and layout size, not just to the
21686         layout size.
21687
21688         * gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size): 
21689         Invalidate window so it gets redrawn properly.
21690
21691         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
21692         to mean the entire window.
21693
21694         * gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
21695         into public header.
21696
21697 Mon May 15 14:51:31 2000  Owen Taylor  <otaylor@redhat.com>
21698
21699         * gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
21700         to get the name of a mark.
21701
21702         * gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
21703         to find the paragraph from a y position.
21704
21705 Thu May 11 12:57:20 2000  Owen Taylor  <otaylor@redhat.com>
21706
21707         * gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
21708         nodes have width/height >= 0, not > 0.
21709
21710 Tue May  9 21:29:06 2000  Owen Taylor  <otaylor@redhat.com>
21711
21712         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
21713         Add a size_only flag, so when we only need the size, we don't create
21714         useless appearance attributes.
21715
21716         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
21717         duplicate setting of font description.
21718
21719         * gtk/gtkscale.c: Use PANGO_SCALE instead of 1000 
21720
21721 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
21722
21723         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
21724         EXTRA_DIST. It does not work well when the file that
21725         everything depends on is not in the tarball.
21726
21727 Wed Apr 26 00:56:14 2000  Owen Taylor  <otaylor@redhat.com>
21728
21729         * gtk/testgtk.c: Some hacks and fixes so that it basically
21730         works when not sitting in the GTK+ build tree.
21731
21732 2000-05-03  Havoc Pennington  <hp@redhat.com>
21733
21734         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
21735         Properly determine the ordering of the tag root and the current
21736         line within the tree. Previous algorithm only worked if the tag
21737         root's immediate parent was the common root of both the current
21738         line and the tag root.
21739
21740 Wed Apr 26 00:43:00 2000  Owen Taylor  <otaylor@redhat.com>
21741
21742         * gtk/gtktextlayout.c (set_para_values): Fix some bugs in
21743         alignment.
21744
21745         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
21746         the widget text directional dynamically.
21747
21748         * gtk/gtktextview.[ch]: Added functions to get and set default
21749         wrap mode.
21750
21751 Tue Apr 25 23:47:38 2000  Owen Taylor  <otaylor@redhat.com>
21752
21753         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
21754         in cursor location computation.
21755
21756 Tue Apr 25 23:22:59 2000  Owen Taylor  <otaylor@redhat.com>
21757
21758         * gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
21759         vadjusment values properly when layout gets smaller.
21760
21761         * gtk/gtktextview.c (need_repaint_handler): Areas being
21762         passed in are far completely inaccurate, and sometimes
21763         too small, so, for now, just queue a redraw on the
21764         whole visible region.
21765
21766 2000-04-25  Havoc Pennington  <hp@redhat.com>
21767
21768         * gtk/gtktextbtree.c (summary_destroy): new function to 
21769         destroy tag summary nodes
21770         (gtk_text_line_next_could_contain_tag): this function was 
21771         totally broken if the line passed in wasn't below the tag
21772         root. Fix it.
21773         (gtk_text_btree_first_could_contain_tag): In the tag == NULL 
21774         "wildcard" case, we have to do a linear scan. Blah.
21775         (gtk_text_btree_last_could_contain_tag): In tag == NULL case,
21776         we have to do the linear scan
21777         (tag_removed_cb): When a tag is removed from the tag table, 
21778         remove the GtkTextTagInfo node from the btree.
21779         (gtk_text_btree_spew): Implement the spew function, for 
21780         our debugging pleasure.
21781
21782 Tue Apr 25 19:40:18 2000  Owen Taylor  <otaylor@redhat.com>
21783
21784         * gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
21785         a problem with referring to the wrong buffer.
21786
21787         * gtk/gtkentry.c: Fix focus-in/focus-out confusion.
21788
21789         * gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
21790         font description to gtk_style_new() - otherwise things
21791         don't work without a .gtkrc file.
21792
21793         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
21794         tags table if we create it ourself, too.
21795
21796         * gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
21797         it was conflicting with XKB modifiers.
21798
21799         * gtk/gtktextview.[ch]: Add simple support for 
21800         GtkIMContext.
21801
21802 Mon Apr 24 19:34:18 2000  Owen Taylor  <otaylor@redhat.com>
21803
21804         * gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
21805         with deletion from last commit.
21806
21807 Mon Apr 24 19:29:40 2000  Owen Taylor  <otaylor@redhat.com>
21808
21809         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
21810         in the context from the current locale.
21811         
21812         * gtk/gtkentry.c (gtk_entry_size_request): Use language from the
21813         context, not hardcoded value.
21814
21815         * gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
21816         not logical.
21817
21818 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
21819
21820         * gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
21821         attributes - that doesn't handle partial-glyph selection
21822         properly. Instead use new pango_layout_line_get_x_ranges()
21823         functionality to draw the selection.
21824
21825         * gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
21826         now properly handles out-of-range coordinates.
21827
21828         * gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
21829
21830         * gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
21831         public.
21832
21833         * gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
21834         for paragraphs opposite to the base direction of the widget.
21835
21836         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
21837
21838         * gtk/gtktextlayout.c: Don't split segments on marks, since that
21839         causes Arabic words to reshape as you cursor through.
21840
21841         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
21842         cursor position when moving vertically with the arrow keys and
21843         scrolling with page-up/page-down. (Arrow keys save only the X,
21844         scrolling saves both X and Y.)
21845
21846         This means you can line-up / line-down or page-up / page-down
21847         without losing your place, and also that moving vertically
21848         with the cursor keys keeps the same X position, not the same
21849         character count:
21850
21851         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
21852         arrow keys move by display lines, not paragraphs.
21853
21854 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
21855
21856         * gtk/gtklayout.c: Make sure that the bin window is at least
21857         as big as the allocation. (Should we also make sure that the
21858         bin window is big enough to completely cover widget->window?)
21859
21860         * gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
21861         function to get the onscreen rectangle.
21862
21863         * gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
21864         for offsets in window coordinates.
21865
21866 Sun Apr 16 16:13:27 2000  Owen Taylor  <otaylor@redhat.com>
21867
21868         * gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
21869         confusion.
21870
21871         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
21872         from the widget direction.
21873
21874         * gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg): 
21875         Add a "direction" attribute.
21876
21877         * gtk/gtktextview.c: global s/tkxt/text_view/.
21878
21879         * gtk/testtext.c: Added long block of text in Arabic, to test out
21880         the direction attributes. (Some problems with the shaping system
21881         for arabic become obvious - like the fact the cursor splits words
21882         into unjoined pieces.)
21883
21884 Fri Apr 14 12:54:34 2000  Owen Taylor  <otaylor@redhat.com>
21885
21886         * gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
21887
21888         * gtk/gtktextlayout.c: Fix up alignment.
21889
21890         * gtk/testtext.c: Add some tests for centering, wrapping.
21891
21892 Fri Apr 14 09:26:22 2000  Owen Taylor  <otaylor@redhat.com>
21893
21894         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
21895         Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
21896         If we wrote GTK+-specific layout-render function this could just replace
21897         the draw_layout() operation in the vtable.
21898
21899         * gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to 
21900         pango_layout_get_cursor_pos() and use that function.
21901
21902         * gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
21903         is a non-static symbol.
21904
21905         * gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
21906         with gtk_text_btree_find_line_by_y()
21907
21908         * gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
21909         renderer that handles GtkTextAppearance attributes.
21910
21911         * gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h: 
21912
21913           - Move the values in the style that don't affect geometry into a
21914             GtkTextAppearance structure.
21915           - Change underline to take a PangoUnderline and "font" a string
21916             representation of a font description
21917           - Add a "font_desc" attribute which takes a FontDescription structure.
21918
21919         * gtk/gtktextlayout.[ch]:
21920
21921           - Get rid of the display-line list per each line. Instead, we
21922             generate, on demand, a GtkTextLineDisplay structure which]
21923             contains a PangoLayout * and other necesary information
21924             (offsets, cursor locations) for displaying a paragraph.
21925           - Get rid of the code to wrap lines, create display chunks,
21926             etc. Instead, we just go through a paragraph and convert
21927             it into the necessary inputs to a PangoLayout.
21928           - Implement a new attribute type, GtkTextAttrAppearance. This
21929             holds a GtkTextAppearance, and is used to pass colors, 
21930             stipple, etc, through from the layout to the display without
21931             having to use lots and lots of individual attributes.
21932           - Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
21933             in terms of PangoLayout functions.
21934         
21935         * gtk/gtktextview.c: 
21936          
21937           - Handle passing the necessary PangoContext to the layout
21938           - Some fixups in painting to deal with the automatic backing store
21939             and offsetting of GTK+-1.4
21940           - Add a style_set handler so that the default style reacts
21941             properly to theme changes.
21942         
21943         * gtk/gtktext?*.[ch]: Random code-style fixes.
21944
21945         * gtk/testtext.c: Substitute in languages that Pango handles now for Thai
21946
21947 Mon Apr 10 10:33:45 2000  Owen Taylor  <otaylor@redhat.com>
21948
21949         * gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
21950         in original form preparatory to Pango-ization and gdkimcontext-ization.
21951
21952 Thu Apr  6 19:25:39 2000  Owen Taylor  <otaylor@redhat.com>
21953
21954         * gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
21955         so that we can derive from gtkimcontext in language bindings properly.
21956
21957 Thu Apr  6 16:02:52 2000  Owen Taylor  <otaylor@redhat.com>
21958
21959         * gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
21960         Add a compose table including (almost) all the compose combinations
21961         from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
21962         data in the XIM implementation.
21963
21964         * gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
21965         Moved functions to convert keyvalues from and to unicode here from
21966         the win32 port and made them public.
21967
21968 Wed Apr  5 16:37:29 2000  Owen Taylor  <otaylor@redhat.com>
21969
21970         * gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
21971
21972 Wed Apr  5 16:27:45 2000  Owen Taylor  <otaylor@redhat.com>
21973
21974         * gtk/gtkimcontext.[ch]: Base class for new input context system
21975
21976         * gtk/gtkimmulticontext.[ch]: Proxy input context that allows
21977         the real input context implementation to be loaded from modules
21978         and switched on the fly.
21979
21980         * gtk/gtkcontextsimple.[ch]: Simple implementation of an input
21981         context that just does direct keysymbol => unicode translation.
21982
21983         * gtk/gtkentry.[ch]: Start switching editing over to using
21984         GtkInputContext. (No handling of preedit yet.)
21985
21986 Wed Apr  5 15:48:41 2000  Owen Taylor  <otaylor@redhat.com>
21987
21988         * gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
21989         many substitutions. (klass should not be subsituted.)
21990
21991 Wed Apr  5 00:18:14 2000  Owen Taylor  <otaylor@redhat.com>
21992
21993         * configure.in: Add checks for Pango
21994
21995         * configure.in docs/Makefile.am: Add test for sgml2html
21996         and allow 'make dist' without building html, but print out
21997         warnings in that case. (For making snapshots)
21998
21999         * gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
22000         Add Pango libraries and C flags
22001
22002         * gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
22003         Add function (gdk_draw_layout) to draw a pango layout.
22004
22005         * gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
22006         for getting Pango contexts for GDK.
22007
22008         * gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
22009
22010         * gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
22011         editing.
22012
22013         * gtk/gtkentry.c: Hack in simple Hebrew input with direct
22014         keysym => unicode translations. More languages can be added
22015         here, but real input-method support is needed.
22016
22017         * docs/Changes-1.4.txt: Added note about entry behavior.
22018         
22019         * gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
22020         to set the reading direction for a widget and the global direction.
22021         Add test which allows toggling the global direction. Two private
22022         flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
22023
22024         * gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
22025           gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c 
22026
22027         * gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
22028
22029         * gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
22030         underlining now handled by Pango.
22031
22032         * gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
22033         to RCStyle and Style. (Having both this and the old font name and GdkFont 
22034         is temporary.)
22035
22036         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added 
22037         convenience functions for creating contexts and layouts for widgets.
22038
22039         * gtk/testgtk.c: Enhance label tests with multilingual labels.
22040
22041 2000-05-29  Jonathan Blandford  <jrb@redhat.com>
22042
22043         * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
22044         titles to be active, even if they aren't visible.
22045         (gtk_clist_column_titles_passive):  Ditto.
22046
22047 2000-05-21  Nils Barth  <nils_barth@post.harvard.edu>
22048
22049         * gtkmenu.c:
22050         * gtkmenu.h:
22051         * gtktypeutils.h: Spelling/grammar fixes in comments.
22052
22053 Tue May 23 12:25:07 CEST 2000 lupus <lupus@debian.org>
22054
22055         * gdk/nanox/*.h: add missing header files.
22056
22057 Fri May 19 11:52:59 2000  Tim Janik  <timj@gtk.org>
22058
22059         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set
22060         send_event to TRUE.
22061         (gtk_drawing_area_size): queue a resize.
22062
22063 Sun Mar 26 03:21:28 2000  Tim Janik  <timj@gtk.org>
22064
22065         * gtk/gtksignal.c (gtk_signal_handlers_destroy): when unref-ing
22066         the handlers, also invalidate them. bug nailed down by Karl Nelson
22067         <kenelson@ece.ucdavis.edu>.
22068
22069 Fri May 19 06:49:23 2000  Tim Janik  <timj@gtk.org>
22070
22071         * gtk/gtkfontsel.c (gtk_font_selection_get_font_name): handle
22072         "(nil)" foundries, patch from Grigorios Magklis.
22073
22074         * gtk/gtkfontsel.c (gtk_font_selection_load_font): don't crash
22075         on non-available fonts, based on a patch by Grigorios Magklis
22076         <maglis@cs.rochester.edu>.
22077
22078 2000-05-18  Elliot Lee  <sopwith@redhat.com>
22079
22080         * gdk/x11/gdkregion-generic.c: If a region does not have any
22081         rectangles, or if the specified rectangle is not in the region, then return GDK_OVERLAP_RECTANGLE_OUT
22082         instead of GDK_OVERLAP_RECTANGLE_IN.
22083
22084 2000-05-17  Jonathan Blandford  <jrb@redhat.com>
22085
22086         * gtk/gtklayout.c (gtk_layout_map): Remove references to
22087         OFFSCREEN, as it is no longer necessary.
22088
22089 Wed May 17 10:52:12 2000  Owen Taylor  <otaylor@redhat.com>
22090
22091         * gtk/gtkcolorsel.c: Patch from David Santiago
22092         <mrcooger@cyberverse.com> to change things so that the 
22093         indicator of the active palette entry is done independently,
22094         not via the focus, since it should always be visible.
22095
22096 2000-05-17  Tor Lillqvist  <tml@iki.fi>
22097
22098         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Plug same
22099         refcount leaks as in the X11 backend.
22100
22101         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Logging
22102         cosmetics.
22103
22104         * gdk/win32/gdkwindow-win32.c: Similar changes as in X11
22105         backend. Add _gdk_windowing_window_destroy().
22106
22107         * gtk/gtkcolorsel.c: Include correct backend-specific header.
22108         Don't use XColor unless on X11. (No GDK_VISUAL_STATIC_COLOR
22109         either, but these probably do exist on nanox?)
22110         
22111         * gtk/gtkhsv.c: Use G_PI (fresh from <glib.h>) instead of M_PI
22112         which isn't necessarily defined by <math.h>.
22113
22114         * gtk/gtkobject.c (gtk_object_init): Don't go up the class
22115         ancestry past GtkObject.
22116
22117         * gtk/gtktypeutils.h: Mark GTK_TYPE_IDENTIFIER for export/import
22118         from DLL on Win32.
22119
22120         * gtk/gtk.def: Update corresponding to recent changes.
22121
22122         * gtk/makefile.{cygwin,msc}: Updates.
22123
22124 Fri May 12 18:46:51 2000  Owen Taylor  <otaylor@redhat.com>
22125
22126         * docs/Changes-1.4.txt: A bit of editing.
22127
22128         * gdk/gdkwindow.c (_gdk_window_clear_update_area) 
22129         * gdk/x11/gdkwindow-x11.c (gdk_window_hide): Add a function
22130         to clear the update area for the window, and clear it
22131         when hiding a window.
22132
22133         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Ignore
22134         if window destroyed.
22135
22136         * gdk/gdkwindow.c (gdk_window_end_paint): Likewise.
22137
22138         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c gdk/gdkinternals.h: Move 
22139         gdk_window_destroy() to the generic code, since there was a lot of 
22140         window-system-independent logic it in. Add a function:
22141         
22142          _gdk_window_destroy() 
22143
22144         to the internal API to destroy a window without unreferencing it.
22145         Add a function:
22146
22147          _gdk_windowing_window_destroy()
22148
22149         That does the windowing-system-dependent part of destroying 
22150         the window.
22151
22152 Fri May 12 11:07:41 2000  Owen Taylor  <otaylor@redhat.com>
22153
22154         * gtk/testgtk.c: Fix various memory leaks of pixmaps.
22155
22156 Fri May 12 11:06:10 2000  Owen Taylor  <otaylor@redhat.com>
22157
22158         * gtk/gtkwidget.c docs/Changes-1.4.txt (gtk_widget_shape_combine_mask): 
22159         Make gtk_widget_shape_combine_mask() keep a reference count on
22160         the pixmap since it keeps it around.
22161
22162 Fri May 12 10:53:29 2000  Owen Taylor  <otaylor@redhat.com>
22163
22164         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix refcount
22165         leak.
22166
22167         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix refcount
22168         leak with event filters.
22169
22170 Thu May 11 14:29:44 2000  Owen Taylor  <otaylor@redhat.com>
22171
22172         * gtk/gtkdnd.c (gtk_drag_dest_set_internal): Remove the
22173         signal handlers with the right data arguments. (Fixes
22174         some warnings when a widget was repeatedly set as a drag
22175         destination.)
22176
22177         * gdk/x11/gdkdnd-x11.c (gdk_window_register_dnd): Set data on the
22178         window so we can avoid avoid setting the DND properties on the
22179         toplevel window repeatedly.
22180
22181 2000-05-13  Tor Lillqvist  <tml@iki.fi>
22182
22183         * gdk/win32/gdkwin32.h: Define more message types missing from
22184         mingw headers.
22185
22186         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
22187         call gdk_window_destroy_notify(). It was never called. This
22188         probably meant that the GdkWindow was never freed. Thanks Owen for
22189         noticing (!).
22190
22191         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
22192         window as destroyed before calling DestroyWindow(). DestroyWindow()
22193         causes a call to the window procedure (gdk_WindowProc), which
22194         calls gdk_event_translate(), which calls
22195         gdk_window_destroy_notify(), which gets confused unless the window
22196         is set as destroyed.
22197
22198         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
22199         this function to indicate it's win32 only. Put inside #ifdef
22200         G_ENABLE_DEBUG.
22201
22202         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
22203         debugging function. (gdk_event_translate:) Add a default branch
22204         that uses the above function to print debug messages with all
22205         Windows messages symbolically.
22206
22207         * gdk/win32/gdkprivate-win32.h: Declare it, and
22208         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
22209
22210 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
22211
22212         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
22213         public header file.
22214
22215 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
22216
22217         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
22218
22219         * gtk/gtktext.c: made the adjustments no-construct args, simply
22220         provide default adjustments.
22221         (gtk_text_destroy): release adjustments.
22222
22223         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
22224         adjustment argument non-construct.
22225
22226         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
22227         instead of in finalize.
22228         (gtk_progress_get_text_from_value): 
22229         (gtk_progress_get_current_text): 
22230         (gtk_progress_set_value): 
22231         (gtk_progress_get_percentage_from_value): 
22232         (gtk_progress_get_current_percentage): 
22233         (gtk_progress_set_percentage): 
22234         (gtk_progress_configure): ensure an adjustment is present.
22235
22236 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
22237
22238         * gtk/gtkcolorsel.[hc]:
22239         * gtk/gtkcolorseldialog.[hc]:
22240         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
22241         their parent implementation, use bit fields for boolean values, don't
22242         create unused widgets, usage of glib types, braces go on their own
22243         lines, function argument alignment, #include directives etc. etc. etc..
22244
22245         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
22246
22247 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
22248
22249         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
22250
22251         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
22252         of NULL.
22253
22254         * gtk/gtkcombo.c (gtk_combo_item_destroy): don't keep references
22255         to freed data.
22256         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
22257
22258         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
22259         to NULL when the toplevel is getting destroyed.
22260         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
22261         (gtk_menu_destroy): 
22262         (gtk_menu_init): store the information of whether we have to
22263         readd the initial child ref_count during destruction in a new
22264         GtkMenu field needs_destruction_ref_count.
22265
22266         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
22267         here, those reading: learn from my mistake! ;)
22268         in order for set_?adjustment to support a default adjustemnt if
22269         invoked with an adjustment pointer of NULL, the code read (pseudo):
22270         if (v->adjustment) unref (v->adjustment);
22271         if (!adjustment) adjustment = adjustment_new ();
22272         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
22273         now imagine the first unref to actually free the old adjustment and
22274         adjustment_new() creating a new adjustment from the very same memory
22275         portion. here, the latter comparision will unintendedly fail, and
22276         all hell breaks loose.
22277         (gtk_viewport_set_hadjustment):
22278         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
22279         after unreferencing it.
22280
22281         * gtk/gtkcontainer.[hc]: removed toplevel registration
22282         functions: gtk_container_register_toplevel(),
22283         gtk_container_unregister_toplevel() and
22284         gtk_container_get_toplevels() which had wrong semantics
22285         anyways: it didn't reference and copy the list.
22286
22287         * gtk/gtkwindow.c: we take over the container toplevel registration
22288         bussiness now. windows are registered across multiple destructions,
22289         untill they are finalized. the initial implicit reference count
22290         users are holding on windows is removed with the first destruction
22291         though.
22292         (gtk_window_init): ref & sink and set has_user_ref_count, got
22293         rid of gtk_container_register_toplevel() call. add window to
22294         toplevel_list.
22295         (gtk_window_destroy): unref the window if has_user_ref_count
22296         is still set, got rid of call to
22297         gtk_container_unregister_toplevel().
22298         (gtk_window_finalize): remove window from toplevel list.
22299         (gtk_window_list_toplevels): new function to return a newly
22300         created list with referenced toplevels.
22301         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
22302
22303         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
22304         adjustment a non-construct arg.
22305         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
22306         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
22307         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
22308
22309         * gtk/gtkrange.c: added some realized checks.
22310         (gtk_range_destroy): get rid of the h/v adjustments in the
22311         destroy handler instead of finalize. remove timer.
22312         (gtk_range_get_adjustment): demand create adjustment.
22313
22314         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
22315         we simply create them on demand now and get rid of them in
22316         the destroy handler.
22317         (gtk_viewport_destroy): get rid of the h/v adjustments in the
22318         destroy handler instead of finalize.
22319         (gtk_viewport_get_hadjustment): 
22320         (gtk_viewport_get_vadjustment): 
22321         (gtk_viewport_size_allocate): demand create h/v adjustment
22322         if required.
22323
22324         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
22325         gtk_widget_real_destroy () functionality.
22326         (gtk_widget_real_destroy): reinitialize with a new style, instead
22327         of setting widget->style to NULL.
22328
22329 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
22330
22331         * gtk/gtkcalendar.c:
22332         * gtk/gtkbutton.c: ported _get_type() implementation over to
22333         GType, either to preserve memchunks allocation facilities,
22334         or because Gtk+ 1.0 GtkTypeInfo was still being used.
22335
22336         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
22337         over. prepare for ::destroy to be emitted multiple times.
22338         removed reference tracer magic. chain into GObjectClass.shutdown()
22339         to emit ::destroy signal.
22340
22341         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
22342         fundamental.
22343
22344         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
22345         cludge.
22346
22347         * gtk/gtksocket.c:
22348         * gtk/gtkplug.c:
22349         * gtk/gtklayout.c:
22350         * gtk/gtklabel.c:
22351         * gtk/gtkargcollector.c:
22352         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
22353         not being a fundamental anymore, and to work with the new
22354         type system (nuked fundamental type varargs clutter).
22355
22356         * gtk/*.c: install finalize handlers in the GObjectClass
22357         part of the class structure.
22358         changed direct GTK_OBJECT()->klass accesses to
22359         GTK_*_GET_CLASS().
22360         changed direct object_class->type accesses to GTK_CLASS_TYPE().
22361
22362         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
22363         GType. made most of the GTK_*() type macros and Gtk* typedefs
22364         simple wrappers around macros and types provided by GType.
22365         most notably, a significant portion of the old API vanished:
22366         GTK_TYPE_MAKE(),
22367         GTK_TYPE_SEQNO(),
22368         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
22369         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
22370         GTK_TYPE_ARGS,
22371         GTK_TYPE_CALLBACK,
22372         GTK_TYPE_C_CALLBACK,
22373         GTK_TYPE_FOREIGN,
22374         GtkTypeQuery,
22375         gtk_type_query(),
22376         gtk_type_set_varargs_type(),
22377         gtk_type_get_varargs_type(),
22378         gtk_type_check_object_cast(),
22379         gtk_type_check_class_cast(),
22380         gtk_type_describe_tree(),
22381         gtk_type_describe_heritage(),
22382         gtk_type_free(),
22383         gtk_type_children_types(),
22384         gtk_type_set_chunk_alloc(),
22385         gtk_type_register_enum(),
22386         gtk_type_register_flags(),
22387         gtk_type_parent_class().
22388         replacements, where available are described in ../docs/Changes-1.4.txt.
22389         implemented compatibility functions for the remaining API.
22390
22391         * configure.in: depend on glib 1.3.1, use gobject module.
22392
22393 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
22394
22395         * TODO.xml: Various updates to current status.
22396
22397 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
22398
22399         * gtk.m4: Print out version when test succeeds.
22400
22401 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
22402
22403         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
22404         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
22405         
22406         (Original triangle color selector from Simon Budig
22407         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
22408         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
22409         Santiago <mrcooger@cyberverse.com>)
22410
22411         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
22412         out into a separate widget.
22413
22414         * gtk/testgtk.c: Add some checkbuttons for toggling palette
22415         and opacity controls.
22416
22417 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
22418
22419         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
22420         snuck in prematurely.
22421
22422 2000-05-07  Tor Lillqvist  <tml@iki.fi>
22423
22424         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
22425         had deleted a ! operator by mistake, which caused
22426         GDK_SELECTION_CLEAR events never to be generated, which caused
22427         only the first copy to the clipboard from an gtkeditable to
22428         actually cause a copy to the Windows clipboard.
22429
22430 2000-05-06  Tor Lillqvist  <tml@iki.fi>
22431
22432         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
22433         compilation, too. Current mingw gcc distributions include the
22434         necessary headers. Also the necessary IIDs are now in mingw
22435         headers/libraries, and own definitions unnecessary.
22436
22437         More hacking on OLE2 DND, still doesn't work though, and thus
22438         ifdeffed out.
22439
22440         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
22441         here, too.
22442
22443 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
22444
22445         * gdk/nanox/*: nano-X port work in progress.
22446         * gdk/simple.c: simple test for Gdk.
22447         * README.nanox: notes about the port: read this first!
22448         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
22449         with nano-X.
22450
22451 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
22452
22453         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
22454         gdk_window_clear() into common code, implement in terms of
22455         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
22456         not redirected to the backing rectangle.
22457
22458 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
22459
22460         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
22461         EXTRA_DIST. It does not work well when the file that
22462         everything depends on is not in the tarball.
22463
22464 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
22465
22466         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
22467         with recursion where process_updates() is called from
22468         an expose handler. (GtkTextView is highly broken in
22469         doing this, but it should work, so it is a nice test
22470         case.)
22471
22472 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
22473
22474         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
22475         handle the case where updates are queued during processing of
22476         updates.
22477
22478 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
22479
22480         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
22481         window is on gdk_display - use that instead of segfaulting.
22482
22483 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
22484
22485         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
22486         broken and require an empty arg, give it to them.
22487
22488 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
22489
22490         * gtk/gtklabel.h: indentation fixes.
22491
22492 2000-05-02  Tor Lillqvist  <tml@iki.fi>
22493
22494         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
22495         draw too narrow or too low arcs, they seem to fail, at least with
22496         some display drivers.
22497
22498         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
22499
22500         Large changes to the Win32 backend, partially made necessary by
22501         the changes to the backend-independent internal
22502         structures. Attempts to implement similar backing store stuff as
22503         on X11. The current (CVS) version of the Win32 backend is *not* as
22504         stable as it was before the no-flicker branch was merged. A
22505         zipfile with that version is available from
22506         http://www.gimp.org/win32/. That should be use by "production"
22507         code until this CVS version is usable. (But note, the Win32
22508         backend has never been claimed to be "production quality".)
22509
22510         * README.win32: Add the above comment about versions.
22511
22512         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
22513
22514         * gdk/gdk.def: Update.
22515
22516         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
22517         presumably be replaced by some more better mechanism as 1.4 gets
22518         closer to release shape.
22519
22520         * gdk/makefile.{cygwin,msc}: Update.
22521
22522         * gdk/win32/*.c: Correct inclusions of the backend-specific and
22523         internal headers. Change code according to changes in these. Use
22524         gdk_drawable_*, not gdk_window_* where necessary.
22525
22526         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
22527         our old DND.
22528
22529         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
22530         to interpret single characters as UTF-8. Thanks to Hans Breuer.
22531         Use correct function name in warning messages.
22532
22533         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
22534         GSourceFuncs gdk_event_prepare and gdk_event_check.
22535         (gdk_event_get_graphics_expose): Do implement, use
22536         PeekMessage. Thanks to Hans Breuer.
22537         (event_mask_string): Debugging function to print an GdkEventMask.
22538         (gdk_pointer_grab): Use it.
22539
22540         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
22541         (old) book I used claimed was Hangul actually is CJK Unified
22542         Ideographs Extension A. Also, Hangul Syllables were missing.
22543         Improve logging.
22544
22545         * gdk/win32/gdkgc-win32.c: Largish changes.
22546
22547         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
22548         g_win32_getlocale() from GLib, and not setlocale() to get current
22549         locale name.
22550
22551         * gdk/win32/gdkprivate-win32.h
22552         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
22553         gdkwin32.h, similarily as in the X11 backend.
22554
22555         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
22556         assignment was used instead of equals in if test. Thanks to Hans
22557         Breuer.
22558
22559         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
22560         the X11 version.
22561
22562         * gdk/win32/makefile.{cygwin,msc}
22563         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
22564         path to the Win32 headers that works also with the mingw compiler.
22565
22566         * gtk/gtkstyle.c: Include <string.h>.
22567
22568 2000-04-26  Havoc Pennington  <hp@redhat.com>
22569
22570         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
22571         replacing the broken gtk_label_get ()
22572
22573 2000-04-15  Havoc Pennington  <hp@pobox.com>
22574
22575         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
22576         this keeps scanner scripts from getting confused.
22577
22578         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
22579         data, rather than void
22580
22581 2000-04-15  Tor Lillqvist  <tml@iki.fi>
22582
22583         * gtk/gtkclist.c (gtk_clist_motion)
22584         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
22585         with is_hint FALSE, get x and y from the event. They used to be
22586         used uninitialised. The Win32 backend never sends motion events
22587         marked as hints. This for instance fixes the annoying file and
22588         font selector behaviour in the Win32 version.
22589
22590 2000-04-14  Tor Lillqvist  <tml@iki.fi>
22591
22592         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
22593         gtk_private_n_signals variables, they are used by some software,
22594         sigh.
22595
22596         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
22597         installation directory from the Registry, where the installer
22598         should have put it.
22599
22600 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
22601
22602         * gdk/x11/Makefile.am: Fix problem with installation directory for
22603         gdkx.h
22604
22605         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
22606         <mrcooger@cyberverse.com> so that when selecting menus with the
22607         mouse, the first item will not be selected, but when selecting
22608         with an accelerator, or navigating left-right on a menubar with
22609         the menus popped up, the first item will be selected.
22610
22611 2000-04-05  Dan Damian  <dand@dnttm.ro>
22612
22613         * configure.in: Added "ro" to ALL_LINGUAS.
22614
22615 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
22616
22617         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
22618         indentation.
22619
22620         * Makefile.am (EXTRA_DIST): Fix typo.
22621
22622         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
22623         to catch gdkconfig.h
22624
22625         * gtk/gtkitemfactory.c: Added FIXME.
22626
22627 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
22628
22629         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
22630         s/return_if_fail/return_val_if_fail/g and add a return value.
22631
22632 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
22633
22634         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
22635         merge slipup.
22636
22637         * gdk/gdkinput.h: Fix missing line from merge.
22638
22639 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
22640
22641         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
22642         instead of gdkprivate.h.
22643
22644 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
22645
22646         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
22647         parent class to correctly be GtkDialogClass.
22648
22649 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
22650
22651         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
22652         toplevel windows and their immediate children by their parents,
22653         since the size of toplevel windows is out of our immediate
22654         control and we don't get any real benefit from trying to track
22655         this size for clipping.
22656
22657         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
22658         for input_only windows.
22659
22660         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
22661         to fix some hacks and make sure that we don't try to set the
22662         background of input only windows.
22663
22664 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
22665
22666         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
22667         the _really_ internal stuff, and leave gdkprivate.h for the fake private
22668         stuff that we've traditionally exposed.
22669
22670         * gdk/**.c: Use gdkinternals.h where appropriate.
22671
22672         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
22673         not include gdkprivate-x11.h, move all stuff of conceivable public
22674         interest into gdkx.h; keep all really private stuff in
22675         uninstalled header gdkprivate-x11.h.
22676
22677         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
22678         image->image_put on windows through a new function _gdk_window_draw_image()
22679         to allow us to do backing store for images. (Sort of ugly)
22680
22681         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
22682         contexts locally so that we can offset them properly when drawing 
22683         onto backing pixmaps.
22684
22685         * gdk/gdkinput.h: Reindented
22686
22687         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
22688         pixmap or color for the window, so we can properly initialize
22689         our double-buffer pixmaps, and also so that we temporarily set
22690         a background of None while scrolling.
22691
22692         * gdk/gdkregion.h: Revise region boolean operators to have an
22693         interface that is actually convenient - switch from creating new
22694         regions on every op, to "methods" that modify existing regions
22695         (A = A OP B). 3 argument forms which allow dest == src, would also
22696         be possible, but the current interfaces seem to map nicely
22697         onto what needs to be done. (There is quite a lot of region
22698         code in GDK now.)
22699
22700         * gdk/gdkregion.h: Add constructor from rectangle and a copy
22701         operator.
22702
22703         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
22704         gdkpoly-generic.h: Copy region code from Xlib, switch it over
22705         to 32 bit coordinates, modify it to be mostly GTK+ style
22706         and to have interfaces that match gdkregion.h.
22707
22708         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
22709         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
22710         create a backing pixmap and redirect all drawing to
22711         that backing pixmap until a matching gdk_window_end_paint().
22712
22713         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
22714         Create a special drawable class for GtkWindow's that 
22715         redirects the drawing to the backing pixmap as necessary
22716         and then calls the real operations in _gdk_windowing_window_class.
22717
22718         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
22719         Store invalid region for each window. Generate expose events for invalid
22720         region in an idle. This replaces both the expose compression
22721         and the redrawing queuing in GTK+. It is both more efficient and
22722         simpler than either one individually and far more so then the
22723         combination.
22724
22725         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
22726         Emulate 32 bit coordinates for windows with 16 bit coordinates
22727         by offsetting drawing, guffaw scrolling techniques and
22728         mapping/unmapping child windows as necessary.
22729
22730         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
22731         where, when invalid regions are processed, the region is stored,
22732         and if expose events come in that are detectably duplicate
22733         the processed exposes (by comparison of event serial numbers),
22734         the stored region is subtracted out of those exposes.
22735
22736         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
22737         regions newly exposed when scrolling or resizing windows.
22738         This, combined with forcing processesing of queued invalidated
22739         regions, gives nice flicker-free scrolling.
22740
22741         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
22742         invalidated regions after every scroll.
22743
22744         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
22745         emulation in GDK. Its, for all practical purposes just a
22746         GtkViewport/GtkFixed hybrid now.
22747
22748         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
22749         (16-bit) structures as necessary instead of just casting.
22750
22751         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
22752         in terms of the structures from gdkregion-generic.c, using appropriate
22753         offsets from GDK to X11 coordinates. Cache clip mask and
22754         origin and ts origin locally and only flush to the server
22755         when drawing, to avoid constantly setting and resetting these
22756         values when offsetting GC's for scrolling and backing pixmaps.
22757
22758         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
22759
22760         * gtk/gtkcontainer.c: Call process_all_updates at end
22761         of resizing to reduce flicker. (Avoids having redraw
22762         lag arbitrarily behind resize under some circumstances)
22763
22764         * gtk/gtkentry.c: Remove old backing store code, and simply take
22765         advantage of the new backing store capabilities of GDK.
22766
22767         * gtk/gtkmain.c: Simple implementation of widget backing
22768         store - simply push a paint while handling each expose.
22769         (Should really be configurable widget for widget.)
22770         
22771         * gtk/gtkwidget.c: Remove all the old complicated redraw
22772         code, and simply invalidate the GDK windows from
22773         gdk_window_queue_clear(), etc. (Sigh, so much carefully
22774         debugged complexity ... gone to the winds.)
22775
22776         Remove all the code for suppressing expose events while
22777         resizes are pending; this isn't needed since the invalid
22778         areas won't be processed until after the resizes are
22779         processed, since they are in a lower priority idle.
22780
22781 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
22782
22783         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
22784         and height of dest rectangle for non-intersecting rectangles.
22785
22786 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
22787
22788         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
22789         for GdkRectangle.
22790
22791 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
22792
22793         * gdk/gdk{events,image,private,types,window}.h
22794          gdk/x11/gdkinputprivate.h: Change all coordinates
22795          from int16 to int. Also, Change width and height from
22796          unsigned to signed to avoid all the stupid C 
22797          signedness bugs.
22798
22799 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
22800
22801         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
22802         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
22803         Add some more detailed checking.
22804
22805         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
22806         New function to retrieve the depth of a drawable.
22807
22808         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
22809         field, reorder fields to save memory. 
22810
22811 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
22812
22813         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
22814         of the background image instead of scaling the background down to
22815         a line.
22816
22817         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
22818         which temporarily set slider to wrong size.
22819
22820         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
22821         queue_clear().
22822
22823 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
22824
22825 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
22826
22827         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
22828
22829 2000-03-17  Tor Lillqvist  <tml@iki.fi>
22830
22831         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
22832         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
22833
22834         * gdk/win32/gdkfont-win32.c
22835         * gdk/win32/gdkproperty-win32.c
22836         * gdk/win32/gdkselection-win32.c
22837         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
22838         now declared such.
22839
22840 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
22841
22842         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
22843
22844 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
22845
22846         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
22847         is called without trapping X errors.
22848
22849 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
22850
22851         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
22852         way into the fontset lists.
22853
22854 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
22855
22856         * gtk/gtkthemes.h: add extern "C" scope.
22857
22858 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
22859
22860         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
22861         to make appends to the list constant. (gtk-guy-990901-0.patch)
22862
22863 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
22864
22865         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
22866         for the typename hash table.
22867
22868 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
22869
22870         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
22871         to make sure we never divide by zero. 
22872         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
22873
22874 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
22875
22876         * gtk/gtkfontsel.c: Apply patch from
22877         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
22878         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
22879
22880         Also, some cleanups in atom handling.
22881
22882 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
22883
22884         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
22885         not GtkWidget.
22886
22887 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
22888
22889         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
22890         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
22891         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
22892         more guint wrap-around bugs before going to bed.
22893
22894 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
22895
22896         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
22897         guint wrap arounds in allocation.width.
22898
22899         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
22900         process untill we fit the allocation given.
22901
22902 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
22903
22904         * gtk/gtkwidget.c:
22905         (gtk_widget_unrealize): guard widget access with ref/unref
22906         around signal emission.
22907         (gtk_widget_hide): same here, but also check its destroyed
22908         state before queueing a resize.
22909
22910 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
22911
22912         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
22913         of gtk_default_insensitive_bg as insensitive base color.
22914
22915         * gtk/gtktext.c (gtk_text_style_set): set the background color according
22916         to the widget's state.
22917         (gtk_text_realize): same here.
22918         (gtk_text_state_changed): same here.
22919         (draw_bg_rect): compare background color against base[] from
22920         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
22921
22922 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
22923
22924         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
22925         grabs are active, unless a delete event is send to the toplevel
22926         of the currently grab holding widget.
22927
22928 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
22929
22930         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
22931         debugging g_print's.
22932
22933 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
22934
22935         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
22936         ever make the scrolled-window requisition ever depend on the 
22937         visibility state of the scrollbars for the AUTOMATIC policy. 
22938         This breaks the GTK+ requisition model, and causes loops.
22939
22940 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
22941
22942         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
22943         the default font to avoid problems with XFree86-4.0 where the
22944         default charset is iso10646-1, not iso8859-1.
22945
22946 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
22947
22948         * acinclude.m4
22949         * config.guess
22950         * config.sub
22951         * ltconfig
22952         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
22953
22954         * gtk/Makefile.am: minor cosmetic consistency tweak
22955
22956 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
22957
22958         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
22959         the activate_time to 0, so that we handle a quick
22960         press/release press/release properly and don't suppress
22961         the second release. (Red Hat bug #7545)
22962
22963 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
22964
22965         * gtk/gtkctree.c (row_delete):
22966         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
22967         bugs with destruction notifier, *always* update internal
22968         structures *before* calling user code.
22969
22970 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
22971
22972         A few more fixes for bug #5487, #2051, #2677.
22973         * gtk/gtkclist.c : 
22974         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
22975         not GDK_BUTTON_PRESS.
22976         (resync_selection): resync only if selection_mode is
22977         GTK_SELECTION_EXTENDED
22978         * gtk/gtkctree.c (resync_selection): same here
22979
22980 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
22981
22982         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
22983         gdk_drag_get_selection() and gtk_menu_detach().
22984
22985         [ From Jeroen Ruigrok/Asmodai ]
22986
22987 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
22988
22989         * gtk/gtknotebook.c (gtk_notebook_size_request): 
22990         page->tab_label can be NULL.
22991
22992 2000-01-25  Havoc Pennington  <hp@pobox.com>
22993         
22994         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
22995         arg is boolean
22996
22997         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
22998
22999         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
23000
23001         * gdk/gdkproperty.c (gdk_property_get): return boolean
23002
23003         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
23004
23005         * gdk/gdkim.c (gdk_im_ready): return boolean
23006
23007         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
23008
23009         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
23010         glib clash, should fix glib)
23011
23012         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
23013         (gdk_get_show_events): return gboolean, and canonicalize 
23014         to TRUE/FALSE
23015
23016         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
23017         colormap is private
23018         (gdk_colors_alloc): gboolean whether to be contiguous
23019         (gdk_color_equal): return gboolean since we are a predicate
23020         and not a qsort() (this looks semi-wrong due to glib breakage,
23021         IMO glib should be fixed)
23022         
23023         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
23024         (gdk_get_use_xshm): return gboolean
23025         (gdk_pointer_is_grabbed): return gboolean
23026
23027         * gdk/gdk.h: Change prototypes to match all the above changes,
23028         and re-run egtk-format-protos as required.
23029
23030 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
23031
23032         * gtk/gtkctree.c (resync_selection): 
23033         * gtk/gtkclist.c (resync_selection):
23034
23035         Return immediately if clist->drag_pos < 0. This is a workaround
23036         for the corrupt state that the clist gets into when a
23037         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
23038
23039         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
23040         
23041         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
23042         variable from recent commit.
23043
23044 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
23045
23046         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
23047
23048 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
23049
23050         * gtk/Makefile.am: prefix all autogenerated source that get build in
23051         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
23052         in builddir. since we subsequently cd into srcdir for autogeneration,
23053         the paths have to be stripped from the target file names, thusly we
23054         use $(@F) as target names now.
23055         put a comment about configure.in's --disable-rebuilds option,
23056         which can be used for non-writable source directories, for development
23057         setups though, srcdir has to be *writable*.
23058
23059 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
23060
23061         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
23062           Finish the job of allowing event to be NULL.
23063           (Fixes bug #4283, reported by Chris Blizzard)
23064
23065         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
23066           things so that the cursor appears on screen, properly
23067           take into account INNER_BORDER.
23068           (Fixes bug #4754, reported by Antonio Campos)
23069
23070 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
23071
23072         * gtk/gtknotebook.c (gtk_notebook_map): Don't
23073           show the tab_label unless it itself is visible.
23074
23075           gtk/gtknotebook.c (gtk_notebook_size_request):
23076           Do a better job of making sure that the visibility
23077           of the tab label corresponds to whether it should
23078           be mapped or not.
23079
23080 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
23081
23082         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
23083           Use the requisition, not the allocation, since the
23084           allocation has not necessarily been computed yet.
23085           (Pointed out by Eugene Osintsev)
23086
23087 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
23088
23089         * gtk/gtkstyle.c (gtk_style_new): Dont' set
23090           style/base[GTK_STATE_INSENSITIVE] both to
23091           gtk_default_insensitive_bg!
23092           (Bug #2187, reported by Jonathan Blandford)
23093
23094         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
23095           Add Alt_L, Alt_R to list of invalid accelerators.
23096           (Bug #3736, reported by Vlad Harchev)
23097
23098 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
23099
23100         * gtk/gtkfilesel.c (open_ref_dir): Fix several
23101         bugs which occured after an attempt to open 
23102         invalid home directory left cmpl_state->reference_dir == NULL.
23103
23104          - completion on files in home directory didn't work
23105          - completion on an empty string caused  segfault
23106
23107          (Bug #3678, reported by Steve Ratcliffe)
23108
23109         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
23110         cut and paste error that was causing scales to
23111         be incorrectly positioned.
23112         (Bug #2956,
23113          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
23114
23115 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
23116
23117         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
23118         when checking for dcgettext, if we've found we needed
23119         it for dgettext.
23120 +
23121 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
23122
23123         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
23124         queue_clear on NO_WINDOW widgets during a reparent,
23125         since at that point the window and widget heirarchies
23126         are out of sync. This stops crashing in some cases
23127         (the scrolled window reparent test, for instance), and
23128         _probably_ won't cause drawing errors.
23129
23130         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
23131         test do what it was supposed to do and be robust against
23132         window closings, etc. (Bug #2443)
23133
23134 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
23135
23136         * gtk/gtkentry.c: Fix return values on mouse events.
23137         (Bug #2686, Sky <seb_sky@yahoo.com>)
23138
23139         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
23140         (pointed out by George Lebl)
23141
23142         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
23143         (From Ettore Perazzoli  <ettore@helixcode.com>)
23144  
23145 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
23146
23147         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
23148         clicks between rows or outside calender area correctly.
23149         (Patch from Damon Chaplin)
23150
23151         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
23152         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
23153           Call destroy function when overwriting existing data. 
23154           (Pointed out by Damon Chaplin)
23155
23156 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
23157
23158         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
23159           which was causing problems on various systems with Xmu.
23160           This hasn't been needed for a very long time.
23161           (Fixes #1185 3167)
23162
23163 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
23164
23165         * gdk/gdki18n.h: Include <ctype.h> when defining
23166           gdk_isw* in terms of is* as a fallback.
23167           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
23168
23169 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
23170
23171         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
23172           realize the widget when it is size allocated!
23173           (old, old bug)
23174
23175         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
23176           Removed unused call to gdk_window_get_size() that
23177           showed up when the above was fixed.
23178
23179 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
23180
23181         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
23182           fix up widget->window when the widget is a
23183           NO_WINDOW container widget.
23184
23185 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
23186
23187         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
23188           to account for the fact that feof() does _not_ 
23189           return TRUE on errors, and thus avoid infinite loops
23190           when trying to use gdk_pixmap_create_from_xpm()
23191           on unreadable values.
23192
23193 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
23194
23195         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
23196
23197 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
23198
23199         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
23200           gdk_gc_set_dashes to take gint8 instead of gchar to
23201           make it clearer that it is _not_ a NULL terminated string.
23202
23203         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
23204           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
23205           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
23206           arguments.
23207
23208 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
23209
23210         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
23211         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
23212         background size relative to our allocation, guard against small
23213         allocations, we may have not yet been size allocated.
23214
23215 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
23216
23217         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
23218         not just version == 3. We implement all 3 + most of 4 - 
23219         (we don't support matching text/plain;charset=iso-8859-1
23220         to a dest that expects text/plain). We'll still advertise
23221         3 to be safe, but any client implementing version >= 3
23222         must interoperate with 3.
23223         
23224 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
23225
23226         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
23227         background and gc members, add a warning in gtk_tooltips_set_color()
23228         indicating that this function is deprecated.
23229
23230 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
23231
23232         * docs/gtkfaq.sgml: FAQ Update:
23233           - Minor cleanups (Emmanuel, me)
23234           - New questions:
23235                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
23236                 How can I retrieve the text from a GtkMenuItem? (timj)
23237                 How do I validate/limit/filter the input to a GtkEntry? (me)
23238                 Memory does not seem to be released when I free the list
23239                         nodes I've allocated (timj)
23240
23241 2000-03-07  Tor Lillqvist  <tml@iki.fi>
23242
23243         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
23244         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
23245         for which it is no use to call GetLastError onWin9x.
23246         (gdk_other_api_failed) New function, for general error
23247         reporting without calling GetLastError.
23248         (gdk_win32_api_failed) OTOH, this function always calls
23249         GetLastError. (gdk_win32_last_error_string) Remove this function,
23250         GLib has the equivalent now.
23251
23252         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
23253         call them with function name, file name and line number in the
23254         arguments.
23255
23256         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
23257         functions.
23258         
23259         * gtk/gtk.def: Add some missing entry points.
23260
23261         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
23262         gtk_paned_set_gutter_size, which don't exist any longer, as void.
23263         
23264         Fixes by Hans Breuer:
23265
23266         * gdk/makefile.msc: Update for debugging.
23267
23268         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
23269         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
23270         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
23271         in the dash_list.
23272
23273         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
23274         the x11 backend.
23275
23276         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
23277
23278         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
23279
23280 2000-03-04  Tor Lillqvist  <tml@iki.fi>
23281
23282         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
23283         just pixel value of background colour.
23284
23285         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
23286         containing code snippet previously duplicated in a couple of
23287         places.
23288         
23289         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
23290         gdk_colormap_color.
23291
23292         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
23293         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
23294         events for autorepeated Shift, Control and Alt keys. Use
23295         gdk_colormap_color.
23296
23297         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
23298         pointer is inside the window the cursor of which we are setting,
23299         call SetCursor immediately.
23300
23301         * gdk/win32/makefile.cygwin
23302         * gtk/makefile.cygwin: If we don't have the build number stamp
23303         file, use zero.
23304
23305         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
23306         gtk_paned_set_gutter_size as empty.
23307
23308         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
23309         
23310 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
23311
23312         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
23313           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
23314           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
23315           docs/gtk_tut.sgml docs/gtk.texi TODO:
23316
23317           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
23318
23319 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
23320
23321         * gtk/gtkcalendar.c: Implement num_marked_dates,
23322           and don't emit mutiple day_selected signals on
23323           month_prev.
23324
23325 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
23326
23327         * docs/make-todo (lineno): let title and logo be configurable so
23328         that GNOME can use this script too.
23329
23330         * TODO.xml: added logourl and a title
23331
23332 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
23333
23334         * TODO.xml: Added some UI items, and an explanatory
23335         comment at the top of the file.
23336
23337 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
23338
23339         * TODO.xml: some updates, added abunch of new entries.
23340         a note for those fiddeling with this file, when done
23341         with it, invoke:
23342         $ ./docs/make-todo TODO.xml >/dev/null
23343         and correct output errors before comitting changes.
23344
23345 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
23346
23347         * TODO.xml: Added XML-structured TODO file.
23348         * docs/make-todo: python script to turn TODO.xml into
23349           pretty XML output. 
23350
23351 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
23352
23353         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
23354         the function to let it draw the seven dots, instead of the old,
23355         much maligned, method.
23356         (draw_dot): New function to draw a dot.
23357
23358         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
23359         to draw the handle inside the border width as opposed to outside.
23360         Use paint function instead of gdk_draw_point.
23361
23362         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
23363         to draw the handle inside the border width as opposed to outside.
23364         Use paint function instead of gdk_draw_point.
23365
23366         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
23367         Change indenting to be more GTK like.
23368
23369 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
23370
23371         * docs/gtk_tut.sgml: New section on GtkCalendar
23372         * examples/calendar: Update example code
23373
23374 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
23375
23376         * docs/gtkfaq.sgml: FAQ Update
23377
23378 2000-02-19  Anders Carlsson  <andersca@gnu.org>
23379
23380         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
23381         to prevent the scroll event to be propagated upwards.
23382
23383 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
23384
23385         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
23386         OwnerGrabButtonMask from button entries for
23387         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
23388
23389         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
23390         to the event mask (which will result in button/press release
23391         being added to the event mask on Unix) so scrolling works
23392         for layouts in scroll windows.
23393
23394         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
23395
23396         Patch from Anders Carlsson  <andersca@gnu.org> to add
23397         a scroll event.
23398
23399         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
23400         scrolling to the "Test Scrolling" part of testgtk.
23401  
23402         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
23403  
23404         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
23405         it against GDK_SCROLL.
23406  
23407         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
23408         way of mouse wheel scrolling.
23409  
23410         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
23411  
23412         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
23413  
23414         * gtk/gtkmain.c: Removed previous mouse wheel hack.
23415  
23416         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
23417         gdk_event_mask_table.
23418  
23419         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
23420         GdkEventScroll handler.
23421  
23422         * gdk/gdkevents.h: Added GdkEventScroll structure.
23423  
23424 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
23425
23426         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
23427         and Anders Carlsson to change the Paned widgets so that they
23428         can be dragged from anywhere along the length. Also change
23429         the way that this is drawn to make this apparent.
23430
23431         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
23432         from George Lebl to check that option_menu->menu is present
23433         before getting history.
23434
23435 2000-02-14  Tor Lillqvist  <tml@iki.fi>
23436
23437         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
23438         before the assertion for non-NULL segment list.
23439
23440         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
23441         Seems that pattern brushes *must* be 8x8 pixels! At least on my
23442         machine, but it might be display driver dependent. Sigh, so make
23443         sure the stipple is that size. Does Windows suck or what?
23444
23445         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
23446         places.
23447
23448 2000-02-13  Havoc Pennington  <hp@pobox.com>
23449
23450         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
23451         refcount to 1
23452         (gdk_cursor_new): init refcount to 1
23453
23454         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
23455
23456 2000-02-13  Tor Lillqvist  <tml@iki.fi>
23457
23458         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
23459         so that we don't have to do unnecessary settings to the HDC.
23460
23461         * gdk/win32/gdkdrawable-win32.c
23462         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
23463         gdk_gc_predraw.
23464
23465         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
23466         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
23467         GDI paths, call WidenPath to get the outline of the stroken path,
23468         and then fill the outline (with the brush that was built from the
23469         stipple).
23470
23471         * gdk/win32/gdkgc-win32.c: Factor out common code from
23472         _gdk_win32_gc_new and gdk_win32_gc_set_values into
23473         gdk_win32_gc_values_to_win32values. Use correct colour for
23474         SetBkColor() (Until now the code actually used a random colour in
23475         the call to SetBkColor()... but that didn't show up as not many
23476         GDI APIs use the background colour. Pattern (opaque stippled)
23477         brushes do.)
23478
23479         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
23480         gdk_win32_api_failed): New functions for error logging.
23481
23482         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
23483         WIN32_API_FAILED to call them, passing function or file name and
23484         line number.
23485
23486         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
23487
23488         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
23489         GdkColor for foreground and background in GdkGCWin32Data.
23490
23491         * gdk/makefile.cygwin: Link in the resource object separately.
23492
23493         * gdk/win32/rc/gdk.rc
23494         * gtk/gtk.rc (New file)
23495         * gdk/win32/makefile.cygwin
23496         * gtk/makefile.cygwin: Update build number in DLLs automatically,
23497         as in GLib.
23498
23499 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
23500
23501         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
23502         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
23503         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
23504         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
23505         parameters given and cursor->ref_count. coding style fixups.
23506
23507         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
23508         not GtkWidget.
23509         
23510         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
23511         fix up widget macros and add _GET_CLASS() variant.
23512         
23513         * gtk/*.c: some GtkType fixups.
23514
23515 2000-02-09  Tor Lillqvist  <tml@iki.fi>
23516
23517         * gdk/win32/gdkproperty-win32.c
23518         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
23519         were reversed.
23520
23521 2000-02-04  Tor Lillqvist  <tml@iki.fi>
23522
23523         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
23524         g_filename_to_utf8 to convert the font names Windows gives us from
23525         whatever is the default codepage to UTF-8.
23526         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
23527         in the other direction.
23528
23529         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
23530         error in debugging output.
23531
23532 2000-02-02  Tor Lillqvist  <tml@iki.fi>
23533
23534         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
23535         and height parameters to gdk_window_clear_area(). Not minus one.
23536
23537 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
23538
23539         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
23540         checks if the widget passed to gtk_drag_get_data() was not the
23541         dest widget.
23542
23543 2000-02-01  Tor Lillqvist  <tml@iki.fi>
23544
23545         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
23546         g_filename_from_utf8 functions (which were added a moment ago to
23547         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
23548         size buffers.
23549
23550         gtk_file_selection_get_filename returns the filename in the C
23551         runtime encoding. It calls g_filename_from_utf8, but copies the
23552         returned string to a static buffer, which is returned. I think
23553         this is better than returning the result from g_filename_from_utf8
23554         directly, which would mean all apps that use it would have to free
23555         the return value. Or should this function care about this issue at
23556         all? Maybe a new function with clearly defined semantics.
23557
23558         * gtk/gtkfilesel.h: Add comment about
23559         gtk_file_selection_get_filename returning the filename in the C
23560         runtime's encoding.
23561
23562         * README.win32
23563         * gdk/gdk.def
23564         * gdk/makefile.{cygwin,msc}
23565         * gtk/gtk.def: Updates.
23566
23567         * gdk/gdkcursor-win32.c: Initialise refcount.
23568
23569 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
23570
23571         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
23572
23573 2000-01-30  Havoc Pennington  <hp@pobox.com>
23574
23575         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
23576         destroy
23577
23578         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
23579
23580         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
23581         implemented in platform-specific code
23582
23583         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
23584
23585         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
23586         underscore in front
23587
23588         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
23589         put an underscore in front
23590
23591         * gdk/gdkcursor.c: new file, implements
23592         gdk_cursor_ref/gdk_cursor_unref
23593
23594         * gdk/gdkcursor.h: Refcount GdkCursor
23595
23596         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
23597
23598 2000-01-29  Tor Lillqvist  <tml@iki.fi>
23599
23600         * gdk/gdkwindow.h
23601         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
23602
23603 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
23604
23605         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
23606         structures to properly inherit from GtkWidget not GtkBin.
23607
23608 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
23609
23610         * gtk+.spec.in: Added lib/gtk+/include/* to %files
23611         (bug #5178 - Peter Wainright)
23612         
23613         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
23614         so that it will be installed.
23615         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
23616
23617 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
23618
23619         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
23620         for the GtkStyleClass vtable const.
23621
23622         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
23623         take a const string argument like GtkTranslateFunc. This will
23624         require changes in use code.
23625
23626 2000-01-19  Tor Lillqvist  <tml@iki.fi>
23627
23628         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
23629         semantics (to mimic the X11 backend, which just calls XClearArea)
23630         is to check for zero width (and height), and in that case use the
23631         window's width minus x (height minus y). This fixes for instance
23632         some redraw problems with gtkclist, which were easily noticeable
23633         in the gtk file selection widget.
23634
23635         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
23636         windows.
23637
23638 2000-01-13  Tor Lillqvist  <tml@iki.fi>
23639
23640         * configure.in
23641         * gdk/Makefile.am
23642         * gdk/x11/Makefile.am
23643         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
23644         (bug #5177).
23645         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
23646         out later.
23647
23648 2000-01-09  Tor Lillqvist  <tml@iki.fi>
23649
23650         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
23651         WM_MOVE for iconified or invisible windows. This fixes various
23652         problems when minimising windows. Thanks to Bernd Herd.
23653
23654 2000-01-05  Tor Lillqvist  <tml@iki.fi>
23655
23656         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
23657         backend's draw_lines method, not draw_points.
23658
23659 2000-01-02  Tor Lillqvist  <tml@iki.fi>
23660
23661         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
23662         before Owen's reorganisation: Don't have queued_events and
23663         queued_tail statics in this file, but use gdk_queued_events and
23664         gdk_queued_tail. This makes exposure event compression work again.
23665
23666         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
23667         seem to be needed?
23668
23669 1999-12-30  Tor Lillqvist  <tml@iki.fi>
23670
23671         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
23672         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
23673         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
23674         doesn't do anything.
23675
23676         * gdk/gdk.def: Add gdk_xid_table_insert.
23677
23678         * gdk/win32/gdkprivate-win32.h
23679         * gdk/win32/gdkevents-win32.c
23680         * gdk/win32/gdkinput-win32.c
23681         
23682         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
23683         extension_events field in the GdkWindowWin32Data struct. Use only
23684         the extension_events field in GdkWindowPrivate. Previously one was
23685         set, and the other one tested, which broke tablet
23686         functionality. Thanks to Keishi Suenaga for pointing this out.
23687
23688 1999-12-18  Tor Lillqvist  <tml@iki.fi>
23689
23690         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
23691         When handling a single character (text length == 1), don't handle
23692         it as if it was UTF-8.
23693
23694 1999-12-11  Tor Lillqvist  <tml@iki.fi>
23695
23696         * Makefile.am: Distribute README.win32.
23697         
23698         * gdk/Makefile.am
23699         * gdk/win32/Makefile.am: Distribute Win32 files.
23700
23701         * gdk/makefile.msc: New file.
23702
23703         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
23704         after label).
23705
23706         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
23707         gdk_error_code as GDKVAR, as they are referred outside GDK.
23708
23709         * gdk/win32/makefile.msc: Update.
23710
23711         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
23712         tweaks. Check only if at least one of those Unicode subrange bits
23713         we care for is set. If no code page bits are set, guess (wildly)
23714         based on the charset.
23715
23716         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
23717
23718         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
23719         non-NULL.
23720
23721         * gtk/gtkdnd.c
23722         * gtk/gtklayout.c
23723         * gtk/gtkplug.c
23724         * gtk/gtkselection.c
23725         * gtk/gtksocket.c
23726         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
23727         appropriate. There must be a cleaner way to handle this?
23728
23729         * gtk/gtkrc.c: Must include windows.h on Win32.
23730
23731         * gtk/testgtk.c: No need to include gdkx.h.
23732
23733         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
23734
23735 1999-12-07  Tor Lillqvist  <tml@iki.fi>
23736
23737         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
23738         the rbearing is set to the same as the width, but this should be
23739         fixed.
23740
23741 1999-12-06  Tor Lillqvist  <tml@iki.fi>
23742
23743         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
23744         function. If Windows doesn't tell us what Unicode subranges a font
23745         covers, guesstimate based on the codepages it covers. This will
23746         hopefully help those Windows versions or fonts that don't give us
23747         any useful Unicode subrange information with GetTextCharsetInfo.
23748         Call this function in gdk_font_load_internal.
23749
23750         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
23751         minor changes.
23752
23753 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
23754
23755         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
23756         New function, long needed.
23757
23758 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
23759
23760         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
23761         only_if_exists argument of gdk_atom_intern to
23762         bool.
23763
23764 1999-11-25  Tor Lillqvist  <tml@iki.fi>
23765
23766         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
23767         Fix two copy&paste errors.
23768
23769         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
23770         win32 has changed.
23771
23772         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
23773         GdkWin32SingleFont struct.
23774
23775         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
23776         subranges of loaded fonts. Clear font signature first, in case
23777         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
23778         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
23779
23780         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
23781         Unoffset clip region.
23782
23783 1999-11-23  Tor Lillqvist  <tml@iki.fi>
23784
23785         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
23786         event->any.window before calling filter functions.
23787
23788 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
23789
23790         * gtk/gtkgamma.h: Adapt cast macros to standard.
23791
23792 [ Merges from 1.2 ]
23793
23794 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
23795
23796         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
23797         If translation does not include a '/', use entire
23798         translation instead of crashing.
23799
23800 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
23801
23802         * docs/gtk_tut.sgml:
23803         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
23804
23805 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
23806
23807         * gtk/gtkselection.c (gtk_target_list_remove): Use
23808         g_list_remove_link, not g_list_remove.
23809
23810         [ From Geert Bevin <gbevin@thunderstorms.org> ]
23811         
23812 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
23813
23814         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
23815         statement upon unselection (how the heck did that slip in?).
23816
23817 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
23818
23819         * gtk/gtktext.c (gtk_text_freeze): 
23820         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
23821         in frozen state (and aparently crashes). patch provided by Anders
23822         Melchiorsen <and@kampsax.dtu.dk>.
23823
23824 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
23825
23826         * fix insensitive default/focus widget activation,
23827         reported by Matt Goodall <mgg@isotek.co.uk>.
23828
23829         * gtk/gtkwindow.c (gtk_window_key_press_event): 
23830         (gtk_window_activate_default):
23831         (gtk_window_activate_focus):
23832         return handled=FALSE for actiavtion of insensitive default
23833         widgets. return handled=TRUE for activation of insensitive
23834         focus widgets. don't activate in either case.
23835
23836 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
23837
23838         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
23839         and $glib_cflags to match library order and in the
23840         theory that an old version of GLib is more likely to
23841         be in the include directory for X then vice-versa.
23842         (Bug #2776)
23843
23844 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
23845
23846         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
23847         to determine the locale for fontsets, not LC_MESSAGES;
23848         the user may want English messages with a handling
23849         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
23850         will still be broken) (Bug #2891)
23851
23852 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
23853
23854         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
23855
23856 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
23857
23858         * gtk/gtkrc.ko: Changed the Korean default fontset.
23859
23860 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
23861
23862         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
23863         where when scrolling to the left or top double exposes
23864         were done, causing major slowdowns.
23865
23866 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
23867
23868         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
23869         names to lowercase and alphanumeric, before looking
23870         them up.
23871
23872         * gtk/Makefile.am: Install codeset variant gtkrc files
23873         with normalized names.
23874
23875 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
23876
23877         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
23878         popup menus when the menu is already visible, but its parent
23879         is still hidden, (happens after tornoff window got hidden).
23880
23881 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
23882
23883         * gtk/Makefile.am (install-data-local): Fix
23884         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
23885         deleted, causing error messages on install.
23886
23887 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
23888
23889         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
23890         the handle as well, since we now sometimes ignore
23891         exposes on the handle while resizing.
23892
23893 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
23894
23895         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
23896         extra g_free introduced in one of the last one or two 
23897         commits.
23898
23899 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
23900
23901         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
23902         consistent, put each style that a gtkrc.* file creates
23903         in a unique namespace, remove old files before installing.
23904
23905 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
23906
23907         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
23908         gtk_rc_init is called multiple times. (Yes, people who
23909         do that have bugs in their code.)
23910
23911 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
23912
23913         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
23914         Remove it since it's generated by the Makefile anyway
23915
23916 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
23917
23918         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
23919         device->info.axes for core pointer.
23920
23921 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
23922
23923         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
23924         idle_id, to deal with obsolete, broken C libraries.
23925
23926 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
23927
23928         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
23929         allocation->x/y twice!
23930
23931         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
23932         consistent with gtk_vscale_pos_trough().
23933
23934 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
23935
23936         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
23937         be queueing a resize on a toplevel container between
23938         the time we show it and when we map it. So, we need
23939         to test GTK_WIDGET_VISIBLE() for toplevels, and only
23940         use GTK_WIDGET_DRAWABLE() for child windows.
23941
23942 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
23943
23944         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
23945         (fixes bug #2144)
23946
23947 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
23948
23949         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
23950         container DRAWABLE (instead of VISIBLE), so we don't queue
23951         resizes on non-toplevel containers.
23952
23953 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
23954
23955         * gtk/gtkselection.[ch]: Make the data argument
23956         const guchar *.
23957
23958 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
23959
23960         * gtk/gtkwindow.c: Try to behave sensibly if 
23961         the focus widget is the window itself. (Should
23962         we allow this at all?)
23963
23964 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
23965
23966         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
23967         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
23968         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
23969         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
23970         in prototypes and implementations consistent (Tomas Ogren).
23971
23972         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
23973         before the widget is unparented (reported by damon).
23974
23975         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
23976         since we provide unsigned data anyways.
23977
23978 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
23979
23980         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
23981         the call to gtk_tooltips_layout_text() until later.
23982
23983         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
23984         Call gtk_widget_ensure_style() before using the style.
23985
23986 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
23987
23988         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
23989         for old widgets that don't propagate draws to all
23990         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
23991
23992 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
23993
23994         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
23995         for a redraw but just the widget that requested the resize.
23996
23997 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
23998
23999         * gtk/gtkcontainer.c: added new widget level method
24000         gtk_container_set_reallocate_redraws() and a GtkContainer flag
24001         reallocate_redraws : 1 to reflect the setting, exported this through
24002         the argument system as a boolean ::reallocate_redraws.
24003
24004         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
24005         on the widget because the allocation changes, do so as well for
24006         widget->parent if the parent has reallocate_redraws set to TRUE.
24007         with that containers requesting reallocation redraws get automatically
24008         redrawn if their children changed allocation (this unfortunately
24009         affects also other children that didn't change allocation, but we
24010         cannot work around that before 1.3).
24011
24012 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
24013
24014         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
24015         _and_ height are >0 (not _or_).
24016
24017         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
24018         instead of gtk_container_queue_resize(), which is a core gtk internal
24019         function (must have been on crack when i queued that).
24020
24021         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
24022         we can check more reliably if we want to discard expose events.
24023         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
24024         flag.
24025         
24026         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
24027         we simply trust these events. for deciding whether to discard exposes,
24028         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
24029         
24030 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
24031
24032         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
24033         queues of areas that are completely off screen.
24034
24035         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
24036         logic for handleboxes.
24037
24038         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
24039         check on width/height.
24040
24041 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
24042
24043         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
24044         we are fine with using $@ the way we do (if we actually encounter
24045         brokeness with $@ in VPATH builds because of additional path prefixes,
24046         we need to use $(@F) actually).
24047
24048 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
24049
24050         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
24051         short lived bugs, that would allow language bindings to do surgeries
24052         to our guts.
24053
24054 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
24055
24056         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
24057         where comparison was being done against an uninitialized
24058         value causing intermittant results depending on
24059         compiler flags. Also make it clearer that we aren't
24060         ever initializing the child as 0x0 (though this will
24061         be caught in gtk_widget_size_allocate())
24062
24063 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
24064
24065         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
24066         gtk_window_unset_transient_for() call after we do checks
24067         involving the old transient parent.
24068         [ From Lance Capser <lmc@cyberhighway.net> ]
24069
24070 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
24071
24072         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
24073         an empty file.
24074
24075 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
24076
24077         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
24078         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
24079
24080 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
24081
24082         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
24083         `$@' is valid only in the build dir, not after we've done 
24084         `cd $srcdir'.  Also use `test -f' instead of less portable
24085         `test -e'.
24086
24087 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
24088
24089         * gtk/gtktext.c (correct_cache_insert): Rewrite
24090          for simplicity, and hopefully correctness.
24091          (Fixes bug #1322, which was a segfault when
24092           on some insertions with the properties around
24093           the insertion set up just wrong.)
24094
24095         * gtk/gtktext.c (gtk_text_adjustment): When we receive
24096          a "changed" signal, clamp the new value to the adjustment
24097          bounds to avoid segfaulting if someone tries to change
24098          the adjustment to a bogus value. (Bug #1795)
24099
24100 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
24101
24102         * gtk/gtkmain.c: Ignore unexpected destroy notifies
24103         for children, for toplevel windows handle them
24104         like delete_event.
24105
24106         * gtk/gtkplug.c: Add an unrealize handler so that
24107         we unref plug->socket_window when we are done
24108         with it.
24109
24110 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
24111
24112         * gtk/gtktext.c (clear_area): Fix stupid signedness
24113          problem that was causing background to sometimes
24114          be misaligned.
24115
24116 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
24117
24118         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
24119         
24120         * gtk/gtkmenu.c (gtk_menu_position): Make
24121          sure we never position menus with negative x, y,
24122          since gtk_widget_set_uposition() can't handle that.
24123
24124         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
24125          Modify the positioning code a bit so that we always
24126          put the top-left corner onscreen. (This is for
24127          UI reasons, gtk_menu_position() now takes care of
24128          gtk_widet_set_uposition() brokeness.)
24129
24130 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
24131
24132         * gtk/Makefile.am: fixed up things for -jx, x > 1.
24133
24134 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
24135
24136         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
24137           RC style that is passed in. The lack of the ref
24138           before was a bug. If people worked around this
24139           bug, this will introduce a slight memory leak
24140           in their code. The code should typically look like:
24141
24142             rc_style = gtk_rc_style_new ();
24143             [...]
24144             gtk_widget_modify_style (widget, rc_style);
24145             gtk_rc_style_unref (rc_style);
24146
24147         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
24148           the style if it was already set.
24149
24150         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
24151           style if it was set before.
24152
24153 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
24154
24155         * gtk/testgtk.c (main): Add a check to see if we
24156           are being run from the correct directory and
24157           to quit nicely if we are not.
24158
24159         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
24160           static.
24161
24162 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
24163
24164         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
24165
24166         * gtk/gtkwindow.c:
24167         queue resizes unconditionally (gtk_widget_queue_resize will figure
24168         what to do if the window is not realized).
24169         (gtk_window_move_resize): only recenter the window
24170         for GTK_WIN_POS_CENTER_ALWAYS.
24171         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
24172         the same way as GTK_WIN_POS_CENTER.
24173
24174 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
24175
24176         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
24177         with (!(info->last_flags & GDK_HINT_POS)) instead of
24178         (!info->last_flags & GDK_HINT_POS).
24179
24180         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
24181         new_height unconditionally, because we use these values even if
24182         !default_size_changed && !hints_changed.
24183         comented the (default_size_changed || hints_changed) case with
24184         respect to resize rejects from the window manager.
24185
24186         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
24187         in the zvt condition hack, since this includes the window hints, set
24188         the hints after the handling_resize case.
24189
24190         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
24191         window is initially shown with to the geometry.
24192
24193 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
24194
24195         * gtk/gtkwindow.c (gtk_window_move_resize):
24196         s/size_changed/default_size_changed/g so i know what's
24197         really going on (frying brain on smaller flame now).
24198
24199 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
24200
24201         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
24202         we have size_changed upon handling_resize. this is a gross
24203         workaround for the broken zvt widget and should be removed in
24204         1.3 again (search for FIXME).
24205         Owen provided an accurate comment for this:
24206
24207         /* We could be here for two reasons
24208          *  1) We coincidentally got a resize while handling
24209          *     another resize.
24210          *  2) Our computation of size_changed was completely
24211          *     screwed up, probably because one of our children
24212          *     is broken. It's probably a zvt widget.
24213          *
24214          * For 1), we could just go ahead and ask for the
24215          * new size right now, but doing that for 2)
24216          * might well be fighting the user (and can even
24217          * trigger a loop). Since we really don't want to
24218          * do that, we requeue a resize in hopes that
24219          * by the time it gets handled, the child has seen
24220          * the light and is willing to go along with the
24221          * new size. (this happens for the zvt widget, since
24222          * the size_allocate() above will have stored the
24223          * requisition corresponding to the new size in the
24224          * zvt widget)
24225          *
24226          * This doesn't buy us anything for 1), but it shouldn't
24227          * hurt us too badly, since it is what would have
24228          * happened if we had gotten the configure event before
24229          * the new size had been set.
24230          */
24231
24232 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
24233
24234         * gtk/gtkrc.c: deal properly with the fact that RC
24235           style lists may include rc styles more than once.
24236
24237         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
24238           unused static function.
24239
24240         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
24241           stack of directories of RC files currently being
24242           parsed and implicitely add them to pixmap path.
24243           
24244           This fixes a bug where the directory would get
24245           appended then overwritten by pixmap_path declarations.
24246
24247           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
24248
24249         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
24250           theme's exit function. (Patch from Peter Wainwright,
24251           bug #1454)
24252
24253         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
24254           Add a destroy() handler to take care of removing
24255           group for menu item. (Fixes bug #1197)
24256
24257         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
24258           in warning message.
24259
24260 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
24261
24262         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
24263         roundtrip to figure window's width and height, since we know that
24264         anyways from widget->allocation.
24265
24266 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
24267
24268         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
24269           the hints after we request the new size.
24270
24271 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
24272
24273         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
24274           GTK_WIDGET_REALIZED() assertion - we can compute the
24275           hints before we are realized.
24276
24277         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
24278           hint changing so that we have a value of hints_changed
24279           when we decide whether to constrain the window size.
24280
24281         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
24282
24283         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
24284         change back to G_MAXINT.
24285
24286 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
24287
24288         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
24289         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
24290         contain uncluttered values.
24291         (gtk_window_compute_hints): simply assert that window is realized
24292         and that geometry_info is valid, since we rely on this anyways.
24293         (gtk_window_constrain_size): major cleanups to the code.
24294         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
24295         for the base size, instead of the minimums. use 32767 as max width
24296         and height (like in gtkwindow.c) instead of G_MAXINT.
24297
24298 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
24299
24300         * cleaned up the GtkContainer.need_resize flag handling mess, we
24301         only need to force resize requests when we were prematurely
24302         realized, or our widget tree was modified when we were temporarily
24303         hidden. handling these cases directly upon showing the window (i.e.
24304         while the GdkWindow is still unmapped) avoids the need to wait for
24305         a configure event response and therefore makes the GUI more snappier
24306         and avoids blank windows during the roundtrip.
24307
24308         * gtk/gtkwidget.c:
24309         (gtk_widget_hide): 
24310         (gtk_widget_show): don't queue resizes on toplevels, they know how
24311         to deal with matters.
24312
24313         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
24314         flag directly for not visible resize containers and spare us unecessary
24315         signal emissions.
24316
24317         * gtk/gtkwindow.c:
24318         (gtk_window_realize): if we need to enforce premature size allocation,
24319         queue a container resize so we are correctly resized later on.
24320         (gtk_window_init):
24321         (gtk_window_size_request):
24322         don't freak around with the ->need_resize flag,
24323         gtk_container_queue_resize() will care about that.
24324         (gtk_window_show):
24325         handle initial resizing issues here, we can handle matters better in
24326         this place, especially since we know that our GdkWindow is still
24327         unmapped.
24328         (gtk_window_move_resize):
24329         don't care about ->need_resize at all.
24330         handle size changes properly that occoured while we waited for a
24331         configure event.
24332
24333 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
24334
24335         * gtk/gtkwidget.c (gtk_widget_set_uposition):
24336         * gtk/gtkwindow.[hc] (gtk_window_reposition):
24337         Move the hint setting code from gtk_widget_set_uposition
24338         to here; set the hints so that we respect any previously
24339         set geometry hints.
24340
24341         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
24342         change the window hints here or move the window here,
24343         let that happen in gtk_window_move_resize().
24344
24345 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
24346
24347         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
24348         to already queued resizes (and therefore redraws) on a widget, check
24349         its anchestry as well.
24350
24351         * gtk/gtkcontainer.c:
24352         (gtk_container_queue_resize): clear resize widgets for resize
24353         containers before aborting prematurely. this is especially important
24354         for toplevels which may need imemdiate processing or their resize
24355         handler to be queued.
24356         (gtk_container_dequeue_resize_handler): added new internal function for
24357         gtkwindow.c.
24358
24359         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
24360         configure event, take possible changes in window position into account
24361         as well.
24362         if we request a new window size, queue up a resize handler that will
24363         last until the configure event response arrives.
24364         combined the ->need_resize case (initial show) with the general size
24365         (hints) changed case and added even more comments.
24366         if !auto_shrink, only revert to the old allocation if the new size
24367         is smaller than the current allocation.
24368
24369 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
24370
24371         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
24372                            gtk_window_set_geometry_hints
24373                            gtk_window_set_default_size):
24374         When hints are set, queue a resize so that the hints will
24375         be eventually reset on the toplevel.
24376
24377         * gtk/gtkwindow.c (gtk_window_show): Use
24378         gtk_window_compute_default_size(). Clear the need_resize flag
24379         on the initail map so that we don't unnecessarily trigger the
24380         resize code.
24381
24382         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
24383         into separate functions. Compare the hints we are setting
24384         with what we set last time so that we can accurately
24385         tell when we need to reset the hints.
24386
24387         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
24388         function to figure out the size from requisition
24389         and default_size.
24390
24391         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
24392         from fvwm to constrain a size to the geometry hints.
24393
24394         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
24395         to compare two sets of geometry hints.
24396
24397         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
24398         from gtk_window_set_hints(), just compute the hints,
24399         don't set them.
24400
24401         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
24402         code from gtk_window_move_resize() to separate function,
24403         rationalize a bit.
24404
24405 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
24406
24407         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
24408         structure into a new private structure.
24409
24410         * gtkrc.c: Split GtkRcStyle into public/private.
24411         In the private part, add a list of pointers to the
24412         RcStyle lists this RcStyle participates in.
24413
24414         * gtkrc.c: When a RcStyle is free, remove all
24415         lists referencing it from the 
24416         realized_style_ht hash, and free those lists.
24417         
24418         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
24419         gtk_rc_init(), since that adds the default styles
24420         to the list of parsed RC files again.
24421
24422         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
24423         
24424 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
24425
24426         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
24427         checks that ensure that a widget's allocation is at least 1 in width
24428         and height. (GNOME note: this doesn't affect old panel code anymore,
24429         because GtkSocket will request width and height of at least 1 since
24430         Fri Jul 23).
24431
24432         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
24433         allocated yet (happens if the user realizes the window prematurely),
24434         size request and allocate it.
24435         (gtk_window_size_allocate): guard against guint underflows.
24436
24437 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
24438
24439         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
24440         in gtk_built_sources, so gtk.defs gets built prior to all other
24441         sources.
24442
24443 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
24444
24445         * gtk/Makefile.am:
24446         invoke indent on gtkmarshal.*. 
24447         rewrote source generation rules, use COPYING as oldest source tag for
24448         a piggyback rule to generate all sources from (don't touch it ;).
24449         major cleanups, strip spaces on build rules for GNU Make.
24450
24451         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
24452         source and target files from commandline arguments. don't invoke indent.
24453
24454 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
24455
24456         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
24457         notebook after switch to avoid drawing problems.
24458         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
24459         
24460         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
24461         show them instead. 
24462         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
24463
24464 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
24465
24466         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
24467         notebook after switch to avoid drawing problems.
24468         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
24469         
24470         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
24471         show them instead. 
24472         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
24473
24474 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
24475
24476         * gtk/gtkwindow.c:
24477         we use window->need_resize from configure_event now, to indicate that
24478         the gtkwindow should keep its allocation (e.g. because the user resized
24479         the window through window manager handles). resize_count is now reliably
24480         used to figure whether we got the allocation we requested from the
24481         window manager.
24482         configure events get queued as resizes now, the real stuff (size
24483         computation and allocation) now only goes on in gtk_window_move_resize().
24484         GtkWindow's requisition now contains its *real* requisition (like all
24485         other widgets), *not* taking usize into account.
24486         geometry_info->last_{width|height} is now updated from set_hints() only
24487         so it always contains the last hints we set for the window manager.
24488         made some event handlers return TRUE instead of FALSE.
24489         the overall code should be much more straight forward now, and the
24490         significant code portions are accompanied by comments now.
24491         (gtk_window_set_hints):
24492         removed requisition argument and made it
24493         fetch the requisition through gtk_widget_get_child_requisition.
24494         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
24495         does that now.
24496         (gtk_window_show):
24497         ensure that the widget is realized before calling 
24498         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
24499         ensure that we got properly size requested and allocated before
24500         realization.
24501         (gtk_window_configure_event):
24502         ignore plain window moves, or reallocate the widget tree through the
24503         resize queue otherwise.
24504         (gtk_window_move_resize):
24505         mostly rewrote this function to figure window manager hints more
24506         reliably, coalesce window moves and resizes to reduce configure events
24507         and do actuall size allocations.
24508
24509 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
24510
24511         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
24512         that have a resize pending, because a redraw is already queued for them.
24513
24514         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
24515         hack to clear resize_widgets.
24516
24517         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
24518         for resize containers prior to size allocation. (this is also a bit
24519         ugly, but avoids side effects for stopped emissions and is thus more
24520         reliable).
24521         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
24522
24523         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
24524         function from gtk_tooltips_expose, as we connect to ::expose_event
24525         *and* ::draw now.
24526
24527 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
24528
24529         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
24530         checks.
24531         (gtk_target_list_unref): Likewise.
24532
24533         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
24534
24535 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
24536
24537         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
24538         guard against division by zero. (Fixes bug #1339)
24539
24540 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
24541
24542         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
24543         Prevent the trivial leak of information of allowing
24544         word motion when the entry is not visible.
24545
24546 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
24547
24548         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
24549         modality to error dialog as well as confirmation dialogs.
24550         (Bug #1803, reported by Rosanna Wing Sze Yuen)
24551
24552 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
24553
24554         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
24555         tree->view_lines.
24556         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
24557
24558         * gtk/Makefile.am (install-data-local): Solaris apparently
24559         has various troubles with ln -f; use rm first instead.
24560         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
24561
24562 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
24563
24564         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
24565         use `cp' followed by `rm' (the `rm' was already there).
24566
24567 July 30, 1999 Elliot Lee <sopwith@redhat.com>
24568         
24569         * configure.in: Fix autoconf warnings about cross compilation by
24570         trying to provide sane defaults for AC_TRY_RUN.
24571         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
24572         put them into $(srcdir) when generated. Also add a dependency of
24573         gtksignal.h on gtkmarshal.h for -j builds. 
24574         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
24575
24576 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
24577
24578         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
24579         GDK_THREADS_{LEAVE,ENTER} pair.
24580         (From Paul Fisher <pnfisher@redhat.com>)
24581
24582 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
24583
24584         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
24585         width and height are always >0 (owen).
24586
24587 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
24588
24589         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
24590         change that assured that a widget's allocated with and height are
24591         always >1, since this breaks *buggy* panel code. unfortunately this
24592         back-breaks the gimp's color selector.
24593
24594         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
24595         allocation is always >0 in width and height, before sending the
24596         configure event; this is a *gross* hack to get the gimp back to work.
24597         
24598         * marked both cases with TODO-1.3
24599
24600 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
24601
24602         * gtk/gtktext.c: Don't display wrap indicators when
24603         text is not editable and word wrap is on.
24604
24605 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
24606
24607         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
24608         option menus here as they are not derived from menu shell, assure that
24609         the option menu has a menu we can add items to.
24610
24611 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
24612
24613         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
24614         width/height to (gint) before calculations and check against < 0 to
24615         avoid guint wraparounds.
24616
24617 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
24618
24619         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
24620         width and height is never zero. sanity check both dimensions against
24621         32767 and issue a warning if the allocation is greater than that.
24622
24623 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
24624
24625         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
24626         to g_main_pending() as well.
24627
24628 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
24629
24630         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
24631         call to g_main_iteration() - since that will regrab
24632         GTK+ lock to process events.
24633
24634 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
24635
24636         * gtk/gtkwindow.c
24637         - Regularize with the rest of GTK+ by making widget->requisition
24638           not reflect the set_usize()
24639         - Always recompute geometry hints, then check if they
24640           changed before sending them to the X server. The
24641           previous checks for changes would fail in a number
24642           of circumstances. 
24643
24644 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
24645
24646         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
24647
24648 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
24649
24650         * gtk/gtkdnd.c:
24651         - Code cleanups
24652         - Instantaneously update on modifier key presses
24653         - Allow cancellation of the drag with Escape.
24654
24655 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
24656
24657         * gtk/testgtk.c (create_handle_box): Set the policy
24658         to auto_shrink - otherwise the appearance is rather
24659         strange when flipping between horizontal and vertical.
24660
24661 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
24662
24663         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
24664         (gtk_window_set_default_size): don't change a value if it's < 0.
24665         queue a resize.
24666
24667 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
24668
24669         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
24670
24671 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
24672
24673         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
24674         add an extra "/" when concating "/" + filename.
24675         (From Matt Grossman <mattg@oz.net>)
24676
24677 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
24678
24679         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
24680         for fg_gc if we set it for drawing pixmap.
24681
24682 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
24683
24684         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
24685         
24686         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
24687         already set, call old engine's destroy function and
24688         unref the old engine.
24689
24690 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
24691
24692         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
24693
24694 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
24695
24696         * gtk/gtkaccelgroup.h: mark certain functions as internal.
24697
24698 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
24699
24700         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
24701         expand behaviour changed.
24702
24703         * gtk/gtklabel.c (gtk_label_set_pattern):
24704         (gtk_label_set_justify):
24705         (gtk_label_set_line_wrap):
24706         don't bother invoking queue_clear, the reallocation does
24707         that for us, always free_words so the upcoming resize will
24708         relayout the label's contents.
24709
24710 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
24711
24712         * applied argument implementation patches from Elena Devdariani
24713         <elena@cogent.ca>.
24714
24715         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
24716         ::space_style, ::relief
24717         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
24718         * gtk/gtkpreview.c: ::expand
24719         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
24720         * gtk/gtknotebook.c: ::homogeneous
24721         * gtk/gtklabel.c: ::wrap
24722         * gtk/gtklist.c: ::selection_mode
24723         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
24724         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
24725         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
24726         * gtk/gtkclist.c: ::sort_type
24727         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
24728         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
24729
24730 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
24731
24732         * gtk/gtkstyle.c: Removed ill-thought-out part of last
24733         comment.
24734
24735 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
24736
24737         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
24738         counting right when we have to attach a new style
24739         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
24740
24741         * gtk/gtkstyle.c: Documented the refcounting
24742         peculularities of gtk_style_attach.
24743
24744 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
24745
24746         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
24747         window types.
24748
24749         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
24750         of GTK_TOPLEVEL for creating the window.
24751
24752 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
24753
24754         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
24755         the last argument (reported by Per Winkvist).
24756         
24757 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
24758
24759         Fixes for invisible XOR lines (Frank Loemker
24760         <floemker@TechFak.Uni-Bielefeld.DE>)
24761         
24762         * gtk/gtkclist.c (gtk_clist_realize): Always use
24763         a non-zero pixel for GDK_XOR.
24764
24765         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
24766         Use GDK_INVERT instead of GDK_XOR.
24767
24768 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
24769
24770         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
24771         signals if h/voffsets differ from adjustment values.
24772         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
24773
24774 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
24775
24776         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
24777         ::selection-done emissions up to the topmost menu shell.
24778
24779 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
24780
24781         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
24782         the user data on the window before destroying it.
24783
24784         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
24785         unrealize handler to take care of destroying 
24786         notebook->panel properly. 
24787         (Bug #1198 - Morten Welinder <terra@diku.dk>)
24788
24789         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
24790         of g_new and g_realloc to stop memory leak. (Actually,
24791         we could just use g_realloc(), but I'm not 100% sure
24792         that is portable).
24793         (Bug #1196 - Morten Welinder <terra@diku.dk>)
24794
24795 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
24796
24797         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
24798
24799         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
24800         for fontsets.
24801
24802         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
24803         with bin/button confusion.
24804
24805 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
24806
24807         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
24808         and show how preselection of radio items is done.
24809
24810 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
24811
24812         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
24813         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
24814         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
24815         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
24816         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
24817         * gtk/gtktable.c (gtk_table_attach): 
24818         * gtk/gtklist.c (gtk_list_insert_items): 
24819         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
24820         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
24821         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
24822         * gtk/gtkbin.c (gtk_bin_add): 
24823         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
24824         * gtk/gtkfixed.c (gtk_fixed_put): 
24825         * gtk/gtklayout.c (gtk_layout_put):
24826         general fixups to container_add logic. always realize child if
24827         child->parent is realized, only map the child and queue a resize
24828         if child and child->parent are both visible.
24829
24830 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
24831
24832         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
24833         instead of gtk_container_foreach to walk and unrealize children, so
24834         composite children get also unrealized.
24835         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
24836         (gtk_widget_map): assert that the widget is visible (basic constrain).
24837         (gtk_widget_real_map): assert that the widget is realized (basic
24838         constrain).
24839
24840 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
24841
24842         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
24843
24844 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
24845
24846         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
24847         file for iso-8859-2 locales.
24848
24849         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
24850
24851 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
24852
24853         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
24854          (Pointed out by andy@rz.uni-karlsruhe.de and others).
24855          Remove some suspicious and useless lines. 
24856
24857 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
24858
24859         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
24860         width,height = 0, 0 to mean - here to edge of window,
24861         instead of -1, -1, since the former is all we support.
24862
24863 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
24864
24865         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
24866         when removing from quit_functions list.
24867
24868 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
24869
24870         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
24871
24872 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
24873
24874         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
24875          When redrawing characters on non-visible entry, use appropriate
24876          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
24877
24878 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
24879
24880         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
24881         from drag coordinates.
24882         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
24883         use drag_dest_cell.
24884
24885         * gtk/gtktree (drag_dest_cell)
24886         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
24887         (Bug #1129)
24888
24889 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
24890
24891         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
24892         translate_* fields.
24893         (gtk_item_factory_finalize): invoke translate_notify independant from
24894         translate_data.
24895         (gtk_item_factory_set_translate_func): likewise.
24896         (gtk_item_factory_destroy): only remove ifactory pointer from those
24897         widgets that belong to us (stupid me).
24898
24899 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
24900
24901         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
24902         rc_style list when lookup succeeeds.
24903
24904 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
24905
24906         * gtk/gtkctree.c (resync_selection): 
24907         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
24908         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
24909         bug.
24910
24911 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
24912
24913         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
24914         Add some missing GDK_THREADS_ENTER()/LEAVE around
24915         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
24916
24917 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
24918
24919         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
24920         rather than emit_by_name.
24921
24922         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
24923         on the widget across multiple signal emissions.
24924         (gtk_editable_delete_text): same here.
24925         (gtk_editable_class_init): set widget_class->activate_signal after
24926         editable_signals[ACTIVATE] has been created.
24927
24928 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
24929
24930         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
24931         position here prematurely -- we might not have the
24932         right ->min_position and ->max_position yet.
24933
24934 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
24935
24936         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
24937         Add error traps so if the other end of the connection
24938         dies, we survive.
24939
24940         * gtk/gtkselection.c (gtk_selection_notify): Clean
24941         up properly when selection property retrieval fails.
24942         
24943         * gtk/gtkselection.c (gtk_selection_request): Correctly
24944         reject SelectionRequest notifies where the handler
24945         returns no data.
24946
24947 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
24948
24949         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
24950         when we've previously highlighted.
24951
24952         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
24953         emit two "drag_leave" signals for Motif drops.
24954
24955         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
24956         back the correct status messages when dropping from
24957         Motif onto a proxy window that is rejecting the
24958         drop.
24959
24960 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
24961
24962         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
24963         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
24964         to compare two argument values. added gtk_arg_to_valueloc() to set a
24965         variable from an arg through its location (pointer).
24966
24967         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
24968         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
24969         as gfloat*, uchars are collected as guchar*, ints are collected as
24970         gint*, etc...
24971
24972 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
24973
24974         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
24975         Include <string.h> instead of <strings.h>.
24976
24977         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
24978         (actually, a lot more duplicate includes occur if
24979          you trace through the sequence of #include's)
24980         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
24981         
24982 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
24983
24984         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
24985         gtk-a-higuti-990322-[0-3]
24986
24987         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
24988         that was causing -DX_LOCALE not to work.
24989
24990         * gtk/gtkrc.c (gtk_rc_init):
24991         X_LOCALE will never have LC_MESSAGES defined
24992
24993 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
24994
24995         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
24996         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
24997
24998         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
24999         left/right as well (gtk-michael-980726-0.patch.gz).
25000
25001         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
25002         for pointer values, use gchar instead of char. fixed uline allocation
25003         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
25004         chunks instead of G_ALLOC_ONLY.
25005         (gtk_label_size_request): always alter requisition as passed and leave
25006         widget->requisition alone.
25007         (gtk_label_set_text): allow NULL strings.
25008         (gtk_label_new): likewise.
25009
25010 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
25011
25012         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
25013
25014 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
25015
25016         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
25017         *and* mapped (i.e. drawable).
25018         (gtk_bin_expose): only send exposes to drawable children.
25019
25020         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
25021         (gtk_box_expose): only send exposes to drawable children.
25022
25023         * gtk/gtkhscale.c (gtk_hscale_draw): 
25024         * gtk/gtkvscale.c (gtk_vscale_draw):
25025         hm, this is an ugly one. we first compute the size of our trough area
25026         here (window relative) and then check intersection with the draw_area
25027         which is parent relative because we're a NO_WINDOW widget, so we need
25028         to offset the trough area by allocation.x and allocation.y before the
25029         check. (this must not be done for the background area though, since
25030         that's already computed parent relative).
25031
25032 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
25033
25034         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
25035         unrealize title buttons.
25036
25037 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
25038
25039         * gtk/gtkclist.c (gtk_clist_column_title_passive)
25040         (gtk_clist_column_title_active): 
25041         only connect/disconnect to GtkWidgetClass::event to block mouse events.
25042
25043         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
25044         zero initialize event, removed superfluous gdk_window_get_pointer call
25045
25046         * gtk/gtklist.c (gtk_list_vertical_timeout)
25047         (gtk_list_horizontal_timeout): removed superfluous
25048         gdk_window_get_pointer call
25049
25050 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
25051
25052         * plugging problems reported by "Bruce Mitchener, Jr."
25053         <bruce@puremagic.com> due to a purify session.
25054
25055         * gtk/gtkstyle.c:
25056         (gtk_style_ref): 
25057         (gtk_style_unref): assert ref_count to be > 0.
25058
25059         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
25060         the requisition.
25061         (gtk_clist_set_shift): likewise.
25062
25063         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
25064         adjustments.
25065
25066         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
25067         event before sending it and set send_event to TRUE (which needs to
25068         be done for *all* synthesized events).
25069         (gtk_list_vertical_timeout): likewise.
25070
25071         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
25072         leaks.
25073
25074         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
25075         to TRUE when synthesizing events.
25076
25077 [ *** end of merges from 1.2 *** ]      
25078         
25079 1999-11-21  Tor Lillqvist  <tml@iki.fi>
25080
25081         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
25082         (or copied from gdkconfig.h.win32 on Win32, sigh).
25083
25084         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
25085
25086         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
25087
25088         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
25089
25090         * gdk/gdkconfig.h.win32: New file.
25091
25092         * gdk/win32/makefile.cygwin: Build just a static archive here.
25093
25094         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
25095         for the DLL from the static archive built above.
25096
25097         * gdk/gdk.def: Moved here from the win32 subdirectory.
25098
25099         * gdk/win32/*: Adapt for the changed private struct organisation.
25100
25101         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
25102
25103 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
25104
25105         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
25106         for wheel mice (buttons 4 and 5).
25107
25108 1999-11-18  Tor Lillqvist  <tml@iki.fi>
25109
25110         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
25111         drawables use just the pixel field in the foreground and
25112         background GdkColor of the GdkGC.
25113
25114         gdk_gc_set_{fore,back}ground() are called in the GIMP with
25115         GdkColors containing uninitialized (red,green,blue) fields, and
25116         just the pixel field filled in, and furthermore in the
25117         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
25118         It thus turns out that we really don't need to have the full
25119         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
25120         it later to have just the pixel values.
25121
25122 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
25123
25124         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
25125
25126 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
25127
25128         * docs/gtkfaq.sgml: threads example from Erik Mouw.
25129         New question on GtkLabel background colors.
25130
25131         * docs/gtk_tut.sgml:
25132           - Correct the example code callback
25133             function definitions.
25134           - Update the gtkdial example code, from Frans van Schaik.
25135           - Update setselection.c to current API.
25136
25137         * examples/Makefile examples/*/*.c: Update to code
25138         listed in tutorial.
25139
25140 1999-11-10  Tor Lillqvist  <tml@iki.fi>
25141
25142         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
25143         subrange table (from the "Developing International Software for
25144         WIndows 95 and Windows NT" book) was missing the Hangul syllable
25145         block... Get the loaded font's charset correctly.
25146
25147         (Note that this, and the other *-win32.c files, still really are
25148         the old ones, the win32 subdirectory is not ready for compilation
25149         yet after the reorg.)
25150
25151 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
25152
25153         * gtk/gtkclist.c: Fix off-by-one bug in parameter
25154         check.
25155
25156 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
25157
25158         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
25159         on results of XQueryDeviceState().
25160
25161 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
25162
25163         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
25164         we need to accesss only ->children. We need an accessor
25165         for the children.
25166
25167         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
25168         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
25169         to get rid of gdkx.h include.
25170         
25171         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
25172         and random references to 'None'.
25173
25174         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
25175         Get rid of unused #include <gdk/gdkx.h>
25176
25177         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
25178         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
25179         gdkconfig.h.
25180
25181 1999-11-08  Tor Lillqvist  <tml@iki.fi>
25182
25183         * gdk/win32/gdkdraw.c
25184         * gdk/win32/gdkfont.c
25185         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
25186         following yesterday's changes. (Unrelated to Owen's reorg.)
25187
25188 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
25189
25190         * gdk/x11/gdkinput-gxi.c: Add missing include,
25191           fix GdkWindowPrivate => GdkDrawablePrivate.
25192
25193         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
25194
25195         * gdk/x11/Makefile.am (xinput_sources): Add missing
25196         backslash to fix building with --with-xinput=none
25197
25198 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
25199
25200         Move all X specific code into the x11/ directory.
25201         Aside from shuffling things around, did the following:
25202
25203        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
25204          gdk_arg_context_* - a simple argument parsing system
25205          in the style of popt.
25206
25207        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
25208          gdk/x11/gdkprivate-x11.h:
25209          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
25210          add ->klass and ->klass_data fields. The klass_data
25211          field points to an auxilliary structure that is
25212          windowing system dependent.
25213
25214        * gdk/gdkfont.c: Make most of the measurement functions
25215          simply wrappers around gdk_text_extents().
25216
25217        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
25218          _gdk_font_strlen() function that hides the weird
25219          behavior in gtk+-1.[02] where a string is interpreted
25220          differently for 8-bit and 16-bit fonts.
25221
25222        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
25223          to store common code for synthesizing double/triple
25224          press events.
25225         
25226        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
25227          Make all the function that modify an existing GC
25228          simply wrappers around gdk_gc_set_values().
25229          
25230        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
25231          for throwing out later.
25232
25233        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
25234          GdkImagePrivate and GdkColormapPrivate to have a
25235          windowing system dependent part (GdkFontPrivateX etc.)
25236          that "derives" from the system-independent part.
25237
25238        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
25239          Got rid of the included-source-files for XInput in
25240          favor of automake conditionals. (Which didn't exist
25241          when XInput support was originally added.)
25242
25243        * gdk/gdkrgb.c: Remove the visual id from the debugging
25244          statements since that is X11 specific; print out
25245          type/depth info instead.
25246          
25247
25248 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
25249
25250         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
25251         loading duplicates of hashed fonts.
25252
25253         * gdk/gdk.c (gdk_keysym_convert_case): rename
25254         gdk_XConvertCase to gdk_keysym_convert_case, allow
25255         results to be NULL in the GTK+ style.
25256
25257         * gdk/gdkcompat.h: Started compatibility header
25258         for renames.
25259
25260 1999-11-07  Tor Lillqvist  <tml@iki.fi>
25261
25262         * gdk/win32/gdkprivate.h: New font private structures, related to
25263         fontsets.
25264
25265         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
25266         gdk_font_list_free(). On X11, will just be wrappers to
25267         XListFonts() and XFreeFontNames(). On Win32, the code previously
25268         in gtkfontsel.c is now here.
25269
25270         New function gdk_font_xlfd_create(). On X11 will get the FONT
25271         property of the font (for GDK_FONT_FONTs), or call
25272         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
25273         builds a XLFD style name from the font information in the LOGFONT
25274         struct(s).
25275
25276         New function gdk_font_xlfd_free(), which correspondingly frees the
25277         string returned by gdk_font_xlfd_create().
25278
25279         Implement fontsets on Win32. Add a function that iterates over a
25280         wide char string and calls a callback function for each substring
25281         of wide chars from the same Unicode subrange (and thus probably
25282         available in the same real font).
25283
25284         Improve the XLFD emulation a bit.
25285
25286         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
25287
25288         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
25289         Beta3, WM_IME_CHAR messages don't seem to contain the composed
25290         multi-byte char as with the Active IMM on Win9x. Oh well, handle
25291         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
25292         ImmGetCompositionStringW() to get the composed Unicode chars.
25293
25294         * gdk/win32/gdkgc.c
25295         * gdk/win32/gdkdraw.c: Changes needed because of the font private
25296         struct changes.
25297
25298         * gdk/win32/gdk.def: Add the new functions.
25299
25300 1999-11-04  Tor Lillqvist  <tml@iki.fi>
25301
25302         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
25303         get the Platform SDK to get <dimm.h>.
25304
25305         * gdk/win32/gdkevents.c: More event handling fixes and
25306         simplification. Never generate motion events with is_hint true. We
25307         used to do that on bogus grounds earlier. Windows sends
25308         WM_MOUSEMOVE messages on button events even if the mouse hasn't
25309         moved, ignore these.
25310
25311         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
25312
25313         * gdk/win32/gdkglobals.c
25314         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
25315         the TrackMouseEvent function, and use it.
25316
25317         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
25318         char before calling WideCharToMultiByte in order to get a string
25319         for the window title.
25320
25321         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
25322
25323         * gdk/win32/gdk.def: Remove obsolete functions.
25324
25325         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
25326         /nodefaultlib and /defaultlib switches.
25327
25328         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
25329
25330 1999-10-31  Tor Lillqvist  <tml@iki.fi>
25331
25332         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
25333         EuroSign).
25334
25335         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
25336         same type as GdkWChar, especially on Win32.
25337
25338         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
25339
25340         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
25341         before passing to Windows GDI for drawing etc. Convert to the
25342         system default codepage before passing to Windows as window
25343         titles.
25344
25345         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
25346         support changing input locale on the fly.
25347
25348         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
25349         on-the-fly changes. Convert incoming characters from the current
25350         codepage to Unicode (and then to a UTF-8 multi-byte string) based
25351         on the current input language. Use keysym<->Unicode mapping tables
25352         and functions borrowed from xterm sources.
25353
25354         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
25355         editions of Win9x, use the ActiveX-based Active IMM (Input Method
25356         Manager) if available. IMEs and the Active IMM are available under
25357         the disguise of Chinese, Korean and Japanese support for IE and
25358         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
25359         support is present in all editions (as long as you install it).
25360
25361         Call DispatchMessage from gdk_events_queue() (and thus
25362         gdk_WindowProc()), instead of duplicating the code in
25363         gdk_WindowProc().
25364
25365         Reworked the grab handling and propagation code, factored out
25366         duplicated code snippets into separate functions. Other cleanups,
25367         too.
25368
25369         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
25370         the <dimm.h> header describing the Active IMM.
25371
25372         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
25373         just do the same as for "single" fonts.
25374
25375         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
25376         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
25377         the new keysyms from gdkkeysyms.h.
25378
25379         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
25380         fontset, so that gtkentry uses wide characters.
25381
25382         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
25383         GTk+'s system directory "gtk+", not "gtk".
25384
25385 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
25386
25387         * docs/gtkfaq.sgml: FAQ update
25388
25389 1999-10-21  Tor Lillqvist  <tml@iki.fi>
25390
25391         * gdk/win32/gdkprivate.h: Add more font private data.
25392
25393         * gdk/win32/gdkfont.c
25394         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
25395         fonts and strings. Now works much better. You still have to
25396         have a correct font selected, though. No fontset emulation yet.
25397
25398 1999-10-19  Tor Lillqvist  <tml@iki.fi>
25399
25400         * gtk/maketypes.awk: Use G_OS_WIN32.
25401
25402         * gtk/gtk.def: Add some missing entry points. Also some non-public
25403         ones, but PyGTK porter claims to need them.
25404
25405         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
25406         built-in type generation.
25407
25408 1999-10-14  Tor Lillqvist  <tml@iki.fi>
25409
25410         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
25411         GDK_FONT_FONT fonts (which is all we have for now, we don't
25412         emulate fontsets). The X11 version uses plain XDrawString in that
25413         case, too. The string passed to gdk_draw_text_wc seems to be in
25414         fact (at least, when used by gtkentry and gtktext) either in a
25415         single-byte charset, or a DBCS. Not Unicode.
25416
25417         This fixes the problem in gtkfontsel, where even if you had
25418         selected a font with a non-Latin1 charset (windows-greek, for
25419         instance), the preview still used Latin-1 glyphs.
25420
25421         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
25422         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
25423         (gdk_font_load): Recognize the demibold etc weights, even if we
25424         don't have the corresponding constants in the headers.
25425         (gdk_font_hash_insert): Use same hash mechanism as in the X11
25426         version. Should save font resources a bit, when we don't have
25427         multiple HFONTs for the same font.
25428
25429         * gdk/win32/gdkprivate.h: Add the names field as in the X11
25430         version.
25431
25432 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
25433
25434         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
25435         X values
25436
25437 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
25438
25439         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
25440         layout support (as mentioned on
25441         http://www.jcinteractive.com/gnome-ui/software/widgets/)
25442
25443 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
25444
25445         * gtk/fnmatch.c
25446         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
25447
25448 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
25449
25450         * configure.in (ALL_LINGUAS): Added Galician (gl)
25451
25452 1999-10-05  Tor Lillqvist  <tml@iki.fi>
25453
25454         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
25455
25456         * gdk/win32/gdkcompat.c: New file, actually provide an
25457         implementation for the deprecated functions. (Just temporarily.)
25458
25459         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
25460
25461         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
25462
25463         * gdk/win32/gdk.def gtk/gtk.def: Updates.
25464
25465 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
25466
25467         * configure.in: Added "uk" to ALL_LINGUAS.
25468         
25469 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
25470
25471         * configure.in: correct checking for BeOS check
25472
25473         * gdk/gdktypes.h
25474         * gtk/fnmatch.c
25475         * gtk/gtkfilesel.c
25476         * gtk/gtkitemfactory.c
25477         * gtk/gtkmain.[ch]
25478         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
25479
25480 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
25481
25482         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
25483         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
25484         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
25485         by Bulgarian). 
25486
25487 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
25488
25489         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
25490         Fix a reference to window_private->destroyed.   
25491
25492         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
25493         (ugly) setting of an internal GdkWindow member to use
25494         a _slightly_ cleaner macro.
25495
25496         * gdk/gdkprivate.h: Split GdkWindowPrivate into
25497         GdkDrawablePrivate and GdkWindowPrivate.
25498         Add extra macros for accessing GDK_DRAWABLE_ components.
25499
25500         * *.[ch]: Massive adjustments for the above, use the
25501         new macros in a lot of places.
25502
25503 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
25504
25505         * gdk/gdktypes.h: Make GdkDrawable the base type,
25506         not GdkWindow.
25507
25508 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
25509
25510         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
25511
25512 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
25513
25514         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
25515
25516 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
25517
25518         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
25519         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
25520
25521         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
25522
25523         * docs/gtk-config.1: Now autogenerated.
25524         * docs/Changes-1.4.txt: started
25525         
25526 1999-10-03  Tor Lillqvist  <tml@iki.fi>
25527
25528         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
25529         to #ifdef also here.
25530
25531         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
25532         Owen did to the X11 backend.
25533
25534         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
25535         ScrollWindowEx when blitting inside a window, it can't be correct
25536         in the general case.
25537
25538         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
25539         WM_GETMINMAXINFO is easier.
25540
25541         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
25542         depth equal to the bitspixel value, not the visual's depth.
25543
25544         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
25545         to 24 even if the bitspixel value is 32.
25546
25547         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
25548         need to check for depth==32 when bpp==32, depth will always be 24.
25549
25550 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
25551
25552         * docs/Changes-1.4.txt: Started
25553         
25554         * gtk/Makefile.am (gdk_headers): Include all the new headers.
25555
25556         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
25557         
25558         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
25559         into C file.
25560         
25561         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
25562         header to gdkinputprivate.h.
25563
25564         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
25565         unused since before 1.2.
25566
25567 1999-09-30  Tor Lillqvist  <tml@iki.fi>
25568
25569         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
25570         expand possible hex escapes in the font family (put there by
25571         logfont_to_xlfd if the font name isn't a legal XLFD font family,
25572         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
25573         On Win32, add hex escapes here, too.
25574
25575 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
25576
25577         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
25578         to #ifdef GDK_WINDOWING_X11.
25579
25580 [ Merges from gtk-1-2 ]
25581
25582 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
25583
25584         * configure.in: fixed "GNU Make" check to pass with new make version
25585         3.77.95.
25586
25587 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
25588
25589         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
25590         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
25591         AM_PATH_GTK() macros don't get confused by the -pre1.
25592
25593 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
25594
25595         * configure.in (REBUILD): Change check for perl5
25596           to check explicitely for v >= 5.002. (5.001
25597           does not work with our scripts.)
25598
25599 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
25600
25601         * configure.in: evaluate $PERL for the perl version check. added
25602         --disable-rebuilds to give the user an option to completely disable
25603         any source autogeneration rules.
25604
25605 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
25606
25607         * configure.in: evaluate $ac_make when checking for GNU Make.
25608
25609 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
25610
25611         * docs/Makefile.am: added generation.txt.
25612
25613         * Makefile.am: require automake 1.4, build README from README.in and
25614         INSTALL from INSTALL.in in dist-hook.
25615         
25616         * README.in:
25617         * INSTALL.in: new files to autogenerate README and INSTALL from.
25618
25619         * configure.in: figure whether we have GNU Make
25620
25621         * docs/generation.txt: minor additions/corrections.
25622
25623 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
25624
25625         * docs/gtkfaq.sgml: FAQ Update
25626
25627 July 30, 1999 Elliot Lee <sopwith@redhat.com>
25628         
25629         * configure.in: Fix autoconf warnings about cross compilation by
25630         trying to provide sane defaults for AC_TRY_RUN.
25631
25632 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
25633
25634         * ltconfig
25635         * ltmain.sh: upgrade to libtool 1.3.3
25636
25637 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
25638
25639         * INSTALL: Indicate that the --with-glib= configure
25640         time flag is unsupported.
25641
25642 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
25643
25644         * docs/generation.txt: Added a file that gives
25645         documenation about the autogeneration process for
25646         various autogenerated files.
25647         
25648 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
25649
25650         * configure.in (LIBS): Look for libgmodule in the
25651         right location.
25652
25653 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
25654
25655         * docs/gtk_tut.sgml: Removed references to
25656         code examples in my directory on gtk.org as
25657         they should all be in the tutorial now.
25658
25659         * docs/gtk_tut.sgml: Added sources for dial-test
25660         and scribble-xinput programs that were previously
25661         missing.
25662
25663 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
25664
25665         * TODO: Added entry about menu keyboard navigation, removed
25666         some finished items.
25667
25668 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
25669
25670         * acinclude.m4: Standardize on func_dgettext
25671         not func_gettext, so that the checks for dgettext
25672         actually are paid attention to.
25673
25674 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
25675
25676         * configure.in (LIBS): Add $INTLLIBS into $LIBS
25677         directly, rather than repeating the checks for
25678         gettext.
25679
25680         * INSTALL: Added information about gettext and
25681         NLS support.
25682
25683         * acinclude.m4 (LIBM): Check for dgettext, not
25684         just gettext. This should hopefully fix things wrt
25685         systems with old versions of GNU gettext installed.
25686
25687 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
25688
25689         * configure.in (LIBS): Look for libgmodule in the
25690         right location.
25691
25692 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
25693
25694         * autogen.sh: add --enable-maintainer-mode
25695
25696         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
25697
25698 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
25699
25700         * docs/gtk-config.1.in:
25701           docs/Makefile.am:
25702           configure.in: gtk-config is now generated.
25703
25704         * docs/gtk-config.1: Removed, now generated.
25705
25706 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
25707
25708         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
25709         handle CreateNotify itself, still put out a debuging message for
25710         --gdk-debug=events. made the ReparentNotify debugging message more
25711         verbose.
25712         wrap xcoords translation for ConfigureEvents into an error trap,
25713         a destroy event may already be pending, and in that case, the
25714         actuall coordinate values are not at all critical.
25715
25716 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
25717
25718         * gdk/gdkcc.c: Stop leaking the color_hash all over
25719         the place. Simplify and improve the logic.
25720
25721 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
25722
25723         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
25724         for prototypes and function implementations consistent (reported
25725         by Tomas Ogren).
25726
25727 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
25728
25729         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
25730         send_event set in debugging output.
25731         (gdk_compress_exposures): default initialize the event so we don't
25732         operate on bogus values (namely send_event).
25733
25734 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
25735
25736         * gdk/gdkwindow.c: When we receive an unexpected
25737         destroy notify on one of our windows, don't just
25738         warn about it, also mark our windows as destroyed.
25739
25740 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
25741
25742         * gdk/gdkfont.c (gdk_font_hash_insert): Add
25743           name => font and name => fontset hashes. The 
25744           name => fontset hash is a _big_ win since we
25745           weren't previously caching fontsets at all and loading
25746           fontsets is expensive. The name => font hash
25747           is less of a win, but it does save us from doing
25748           repeated XQueryFont calls on the same font.
25749
25750         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
25751           list so we can remove font/fontset from hash.
25752
25753 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
25754
25755         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
25756           and slightly confusing test. [ XInternAtom (,,TRUE)
25757           will never return None ].
25758
25759 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
25760
25761         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
25762           gdk/gdkwindow.c (gdk_window_set_hints):
25763
25764         Don't omit setting the properties if flags == 0 -
25765         there may be an existing set of properties there
25766         already. (Very old bug. Would it be better to
25767         delete the property instead?)
25768
25769         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
25770           spelling error in comment.
25771
25772 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
25773
25774         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
25775           to avoid stomping over gdk_error_warnings.
25776
25777         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
25778           as (bits_per_pixel + 7) / 8. This gives the same
25779           result as before for multiples of 8, but actually
25780           a "reasonable" value for 1bit or 4bit displays.
25781
25782 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
25783
25784         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
25785         GNU Make.
25786
25787 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
25788
25789         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
25790         discarding configure events.
25791
25792 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
25793
25794         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
25795         refcount is greater than zero.
25796
25797         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
25798
25799         * gdk/gdkfont.c (gdk_font_unref): Likewise.
25800
25801         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
25802
25803         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
25804
25805 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
25806
25807         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
25808         that format 32 => sizeof(item) == 4. It really is
25809         sizeof(long).
25810
25811 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
25812
25813         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
25814         core dump at all on X IO errors, only core dump
25815         if --enable-debug for X errors.
25816
25817 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
25818
25819         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
25820         unknown window:" message. disabled ConfigureNotify discarding code,
25821         because it led to events being processed out of order.
25822
25823 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
25824
25825         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
25826
25827         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
25828         we export this function, supress error warnings and don't reset the
25829         error code in the first half of this function.
25830
25831         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
25832         code (instead of just -1) so gdk_error_trap_pop() reveals something
25833         actually informative about the error that happened.
25834
25835         * gdk/*.c:
25836         don't rely on gdk_error_code being -1 if an error occoured, but just
25837         gdk_error_code != 0.
25838
25839 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
25840
25841         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
25842         pointer *before* invoking the filter function, so we at least don't
25843         crash if a filter is removed that is currently executed. window filters
25844         *really* need to be made truely reentrant at some point.
25845
25846 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
25847
25848         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
25849         PropertyNotify debug messages.
25850
25851 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
25852         
25853         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
25854         
25855         * gdk/gdkim.c: Fix cut-and-paste errors for 
25856         x/y and PreeditAttributes/StatusAttributes.
25857
25858 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
25859
25860         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
25861         G_MAXINT to 2^16 to alleviate overflow problems in
25862         various window managers.
25863
25864 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
25865
25866         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
25867         for fontsets.
25868
25869 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
25870
25871         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
25872         Initialize size_hints.x and size_hints.y because kwm
25873         brokenly pays attention to them.
25874         (Bug #1181 -  Lars Heete <hel@admin.de>)
25875
25876 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
25877
25878         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
25879         return value of gdk_list_visuals(). 
25880         (Bug #1193 - Morten Welinder <terra@diku.dk>)
25881
25882 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
25883
25884         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
25885         XSetIMValues to (void *) when comparing to NULL, to workaround
25886         the problem of some compilers barfing since older X headers don't
25887         have the prototype for it.
25888
25889 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
25890
25891         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
25892         for pseudocolor where colormap->colors was double
25893         allocated.
25894
25895         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
25896         color value in the hash table with the pixel filled
25897         in so when we do later hash table lookups, the color
25898         value is correct.
25899         
25900 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
25901
25902         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
25903         making the call
25904
25905 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
25906
25907         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
25908         pointed out by Morten Welinder <terra@diku.dk>.
25909
25910 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
25911
25912         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
25913           default filter from the list
25914
25915 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
25916
25917         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
25918           default filter from the list
25919
25920 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
25921
25922         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
25923
25924         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
25925         g_strdup_printf instead of calcing the length separately
25926
25927 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
25928
25929         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
25930         that we don't do in many other places. (Fixing duplicate 
25931         #include of config.h)
25932
25933         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
25934         Otherwise, #ifndef XINPUT_NONE check in the latter
25935         doesn't work. (Bug #546)
25936
25937 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
25938
25939         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
25940         "None" case insensitive.
25941
25942 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
25943
25944         * gdk/gdkselection.c: 
25945         Add error traps so if the other end of the connection
25946         dies, we survive.
25947
25948 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
25949
25950         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
25951         dest_xid field into two fields - one for the window
25952         to send in messages, one to indicate the last looked
25953         up window for caching purposes. This is needed, so
25954         that Leave messages get the correct window.
25955
25956 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
25957
25958         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
25959         Fix warning created by people mucking around
25960         with the gsource API.
25961
25962         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
25963         Change mapping between GIOCondition and GdkInputCondition
25964         to match the way the Linux kernel does it. This should
25965         fix problems where closed pipes were no longer signalling
25966         GDK_INPUT_READ on systems with a native poll().
25967
25968 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
25969
25970         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
25971         explicitly for the string "None" - it is in the XPM
25972         spec and some servers treat unknown colors in odd ways
25973         (like asking the user!)
25974
25975 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
25976
25977         * gdk/gdkevents.c: made "->" into a "." of previous change so
25978         it compiles
25979
25980 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
25981
25982         * gdk/gdkevents.c (gdk_compress_exposures): Set the
25983         window field of the event structure before calling
25984         user filters.
25985
25986 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
25987
25988         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
25989         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
25990
25991 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
25992
25993         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
25994         intermediate text property - prevents major memory
25995         leak when gdk_use_mb.
25996         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
25997
25998 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
25999
26000         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
26001         gtk-a-higuti-990322-[0-3]
26002
26003         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
26004         sizeof(wchar_t) != sizeof (GdkWChar)
26005
26006         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
26007         that was causing -DX_LOCALE not to work.
26008
26009         * gtk/gtkrc.c (gtk_rc_init):
26010         X_LOCALE will never have LC_MESSAGES defined
26011
26012         * gdk/gdk.c (gdk_init_check):
26013         Remove --xim-preedit and --xim-status from argv properly.
26014
26015         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
26016         that the client window is present on the X server
26017         before we pass it to the input method.
26018
26019 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
26020
26021         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
26022         if --display is specified on the command line, than
26023         the drag window will not be created on that display.
26024         
26025 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
26026
26027         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
26028         lookups with only_if_exists == TRUE were inserting
26029         bogus values into the atom cache.
26030
26031 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
26032
26033         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
26034         then reset it to NULL.
26035
26036         * gdk/gdkcolor.c:
26037         (gdk_colors_free): 
26038         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
26039         key for g_hash_table_remove() in both functions, this prevents us
26040         from accessing possibly uninitialized portions of a GdkColor structure
26041         where we are only interested in its pixel value.
26042
26043 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
26044
26045         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
26046         font hash table, if we have a GdkFontPrivate entry for this font
26047         already, simply increment its reference count, provided by Olaf Dietsche
26048         <olaf.dietsche+list.gtk@netcologne.de>.
26049
26050 1999-09-21  Tor Lillqvist  <tml@iki.fi>
26051
26052         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
26053         just to be sure.
26054
26055         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
26056         unused variables, leftovers from the X11 version.
26057
26058         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
26059
26060         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
26061         downcase fields on X11.
26062
26063 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
26064         
26065         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
26066         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
26067
26068 1999-09-17  Tor Lillqvist  <tml@iki.fi>
26069
26070         * gdk/win32/gdk.def: Add gdk_threads_mutex.
26071
26072         * gtk/makefile.msc: Correct path to libintl.
26073
26074         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
26075         use of gint vs. int, and gint vs. gboolean in headers and
26076         definitions. Use GtkType for the *_get_type functions. Note that
26077         these changes preserve binary compatibility.
26078
26079         * gdk/gdk.c
26080         * gdk/win32/gdk.c
26081         * gdk/gdk.h: Fix inconsistencies: gint vs int.
26082
26083         * gtk/gtkmain.c
26084         * gtk/gtkclist.c
26085         * gtk/gtkmenufactory.c
26086         * gtk/gtknotebook.c
26087         * gtk/gtkwidget.c: Fix inconsistencies, also gint
26088         vs. gboolean.
26089
26090         * gtk/gtkcolorsel.[ch]
26091         * gtk/gtkcombo.[ch]
26092         * gtk/gtkdrawingarea.[ch]
26093         * gtk/gtkgamma.[ch]
26094         * gtk/gtkhandlebox.[ch]
26095         * gtk/gtkhpaned.[ch]
26096         * gtk/gtkhruler.[ch]
26097         * gtk/gtkplug.[ch]
26098         * gtk/gtkpreview.[ch]
26099         * gtk/gtkruler.[ch]
26100         * gtk/gtksocket.[ch]
26101         * gtk/gtkstatusbar.[ch]
26102         * gtk/gtktoolbar.[ch]
26103         * gtk/gtkvbbox.[ch]
26104         * gtk/gtkvpaned.[ch]
26105         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
26106         functions.
26107
26108         * gtk/gtkgamma.h: Fix bug, missing () in call of
26109         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
26110
26111 1999-09-14  Tor Lillqvist  <tml@iki.fi>
26112
26113         * gdk/gdkcolor.c (gdk_colormap_new)
26114         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
26115         colormap->colors was allocated twice.
26116
26117         * gdk/win32/gdk.c: Remove some unused stuff.
26118
26119         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
26120         colormap.
26121
26122         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
26123         * gtk/gtklabel.h (gtk_label_get_type)
26124         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
26125         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
26126         in a couple of places, not guint.
26127
26128 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
26129
26130         * configure.in,po/et.po: added Estonian language file
26131
26132 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
26133
26134         * configure.in,po/da.po: added Danish file
26135
26136 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
26137
26138         * docs/gtkfaq.sgml: Minor FAQ Update
26139
26140 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
26141
26142         * docs/gtkfaq.sgml: FAQ update
26143
26144 1999-08-27  Tor Lillqvist  <tml@iki.fi>
26145
26146         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
26147         way to get window contents continually refreshed while resizing. I
26148         didn't like the effects myself, so it's not on by default.
26149
26150         * gdk/win32/gdkprivate.h: New flag variable
26151         gdk_event_func_from_window_proc, FALSE by default.
26152
26153         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
26154         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
26155         are passed --gdk-event-func-from-window-proc.
26156
26157         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
26158         and we have am event_func, call it instead of enqueing the event.
26159
26160 1999-08-23  Tor Lillqvist  <tml@iki.fi>
26161
26162         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
26163         Kelley: Set expose_count in GdkEventExposes correctly.
26164
26165         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
26166         MULTIPLE_WINDOW_CLASSES).
26167
26168         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
26169         for bug in NT, apparently NT *does* draw the end pixel, too, in
26170         LineTo with a one-pixel pen, so we don't have to do it ourselves.
26171
26172 1999-08-21  Tor Lillqvist  <tml@iki.fi>
26173
26174         Improvements by Hans Breuer: 
26175
26176         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
26177
26178         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
26179         CS_?REDRAW flags as they cause lots of (late) redraws when "show
26180         window contents while dragging" is turned on. Allocate at least
26181         one unique class for every GdkWindowType. If support for single
26182         window-specific icons is ever needed (eg. Dialog specific), every
26183         such window should get its own class.
26184
26185 1999-08-19  Tor Lillqvist  <tml@iki.fi>
26186
26187         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
26188         error that caused crashes.
26189
26190 1999-08-17  Tor Lillqvist  <tml@iki.fi>
26191
26192         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
26193         window, use ScrollWindowEx, and call UpdateWindow. This prevents
26194         bugs when for instance part of the window was outside the
26195         display. Thanks to Philippe Colantoni for finding and fixing this.
26196
26197 1999-08-16  Tor Lillqvist  <tml@iki.fi>
26198
26199         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
26200         endpoint calculations which were totally wrong. (A little RTFMing
26201         helps a lot ;-)
26202
26203         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
26204         from a separate directory, not from gettext, because of licensing
26205         issues (we want to use the LGPL version).
26206
26207         * README.win32: Mention the intl from glibc vs from gettext issue.
26208
26209 1999-08-13  Tor Lillqvist  <tml@iki.fi>
26210
26211         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
26212         in the key event handling: Now AltGr chars work again. Also,
26213         now Alt-digits are passed up as well as Control-digits.
26214         Pass keypad plus and minus as normal plus and minus.
26215
26216 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
26217
26218         * docs/gtkfaq.sgml: FAQ Update
26219
26220 1999-07-25  Tor Lillqvist  <tml@iki.fi>
26221
26222         * README.win32
26223         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
26224         the Wintab SDK.
26225
26226         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
26227         OK, but getting closer. Guard against bogus tilt data from Wacom
26228         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
26229         enable easier building without Wintab.
26230
26231         * gdk/win32/gdkinput.h
26232         * gdk/win32/gdkevents.c 
26233         * gdk/win32/gdkwindow.c: Minor changes related related to above.
26234         
26235         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
26236         code. As we have just one visual on Win32, no sense to have it in a
26237         table, and no need for the hash table.
26238
26239         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
26240         better on white background.
26241
26242 1999-07-21  Tor Lillqvist  <tml@iki.fi>
26243
26244         * README.win32: Update gcc build instructions. Mention gettext is
26245         GPL.
26246
26247         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
26248         supported cursor size with GetSystemMetrics.
26249
26250         * gdk/win32/gdkfont.c
26251         * gtk/gtkfontsel.c: Guard against some font weight and charset
26252         symbols being undefined (in mingw32 headers).
26253
26254         * gdk/win32/makefile.cygwin
26255         * gtk/makefile.cygwin
26256         * gtk/gtkthemes.c: No longer need to have differently named
26257         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
26258
26259 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
26260
26261         * docs/gtkfaq.sgml: Long awaited FAQ update.
26262
26263 1999-07-15  Tor Lillqvist  <tml@iki.fi>
26264
26265         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
26266         it. Obscure bit manipulation needed.
26267
26268         * gdk/win32/gdkevents.c: Logging.
26269         
26270         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
26271         style (file name include compiler name) for theme engines.
26272
26273 1999-07-13  Tor Lillqvist  <tml@iki.fi>
26274
26275         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
26276
26277         * gdk/win32/gdkevents.c: Fix long-standing bug in key
26278         events. The key.string wasn't zero-terminated, still we strdup'ed
26279         it in gdk_event_copy(). Synthesize crossing events for button
26280         events before possible propagation.
26281
26282         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
26283
26284         * gdk/win32/makefile.cygwin
26285         * gtk/makefile.cygwin: Use new DLL naming style for the
26286         GCC-compiled ones.
26287
26288         * gdk/win32/makefile.msc
26289         * gtk/makefile.msc: Cosmetics mostly.
26290
26291         * gtk/gtk.def: Add missing entry points.
26292
26293         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
26294
26295 1999-07-09  Tor Lillqvist  <tml@iki.fi>
26296
26297         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
26298         or height is zero. Don't print a warning if Pie or Arc fails, they
26299         always fail (?) for very narrow ellipses.
26300
26301         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
26302         the part or the destination window corresponding to source area
26303         outside of the source drawable's boundary.
26304
26305         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
26306         anything if less than two points.
26307
26308         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
26309         return NULL. Gtk cut-and-paste inside a single program works
26310         better this way. (It always gets the clipboard contents from
26311         Windows, not from its own copy, which is cleared anyway. I can't
26312         say I fully understand what happens... Emulating the X selection
26313         and property stuff is a bit of a mess.)
26314
26315         * gdk/win32/gdkevents.c
26316         * gdk/win32/gdkproperty.c: A bit more verbose logging.
26317
26318         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
26319         that never got deleted). Revamp gdk_region_shrink.
26320
26321         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
26322         after use.
26323
26324         * gtk/gtk.def: Add some missing entry points.
26325
26326         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
26327         component.
26328
26329 1999-07-04  Tor Lillqvist  <tml@iki.fi>
26330
26331         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
26332         Control-digits specially.
26333
26334 1999-07-03  Tor Lillqvist  <tml@iki.fi>
26335
26336         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
26337
26338 1999-06-28  Tor Lillqvist  <tml@iki.fi>
26339
26340         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
26341         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
26342         finding this.)
26343
26344 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
26345
26346         * gtk+.spec.in: Corrected some typos in files section.
26347         
26348 1999-06-15  Tor Lillqvist  <tml@iki.fi>
26349
26350         * README.win32: Mention using GNU gettext.
26351         * config.h.win32: Enable NLS stuff.
26352         * gtk/makefile.msc: Use GNU gettext.
26353         * gdk/win32/gdkdnd.c: Minor header reorg.
26354         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
26355         cosmetics.
26356         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
26357         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
26358
26359 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
26360
26361         * acinclude.m4
26362         * config.guess
26363         * config.status
26364         * ltconfig
26365         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
26366
26367 1999-05-30  Tor Lillqvist  <tml@iki.fi>
26368
26369         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
26370         SafeAdjustWindowRectEx. Don't override all calls to
26371         AdjustWindowRectEx by it, but use it only in two places: When
26372         creating a new top-level window and when moving a top-level
26373         window.
26374
26375         Use screen coordinate rectangle, not client rectangle, in
26376         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
26377         when we try to place a window so that the decoration (mainly,
26378         title bar) isn't visible.
26379
26380         These changes fix the bug that showed up for instance as the
26381         GIMP's saved top-level windows moving right and down (by an amount
26382         equal to the window decoration) for each session. This bug showed
26383         up also in testgtk's "Saved Position".
26384
26385         gdk_window_resize also redone a bit.
26386
26387 1999-05-25  Tor Lillqvist  <tml@iki.fi>
26388
26389         * gtk/testgtkrc: Add (commented out) Windows-style theme
26390         include line.
26391
26392         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
26393
26394 1999-05-18  Tor Lillqvist  <tml@iki.fi>
26395
26396         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
26397         gdkx.h to a gdk subdirectory, so that applications can include
26398         these with <gdk/*.h> without trouble.
26399
26400         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
26401         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
26402         have their bitmap destroyed.
26403
26404         * gdk/win32/gdk.def: Add gdk_root_parent.
26405
26406 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
26407
26408         * configure.in
26409           gtk-config.in
26410           ltconfig
26411           ltmain.sh     
26412           gtk/Makefile.am: changes to compile nicely (with xlib) 
26413           on BeOS
26414
26415 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
26416
26417         * acinclude.m4
26418         * config.guess
26419         * config.sub
26420         * ltconfig
26421         * ltmain.sh: upgrade to libtool 1.3
26422
26423 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
26424
26425         * gtk/gtkclist.c:
26426         * gtk/gtkctree.c: merges from gtk-1-2
26427
26428 1999-04-25  Tor Lillqvist  <tml@iki.fi>
26429
26430         Support added for building using a GNU toolchain on Win32,
26431         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
26432
26433         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
26434         * config.h.win32: Changes for gcc.
26435         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
26436         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
26437         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
26438         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
26439         Protect shl stuff unavaiilable with mingw32 headers.
26440         * gdk/win32/gdkevents.c: Fix typo.
26441         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
26442         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
26443         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
26444         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
26445         the mingw32 headers.
26446         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
26447         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
26448         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
26449         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
26450         Test for NATIVE_WIN32, not _MSC_VER.
26451         * gtk/gtkmain.c: No use warning about developer version on Win32,
26452         there aren't any non-developer versions anyhow.
26453         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
26454         * gtk/makefile.msc: Use pthread from another directory. Minor other
26455         changes. 
26456
26457 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
26458
26459         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
26460           default filter from the list
26461
26462 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
26463
26464         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
26465          when gtk_widget_grab_default() is called for a widget that
26466          is not within a GtkWindow.
26467
26468 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
26469
26470         * docs/gtk_tut.sgml, examples/clist.c: use a
26471           scrolled window in the clist example. Minor
26472           tutorial fixes.
26473
26474 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
26475
26476         * docs/gtk_tut.sgml: Style check from David King
26477           <dking@youvegotmail.net>
26478
26479 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
26480
26481         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
26482         compile with unknown value of GDK_WINDOWING
26483
26484 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
26485
26486         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
26487         after the rule is fired.
26488         (install-exec-local): Install gdkconfig.h only if the contents are
26489         different from the currently installed gdkconfig.h.
26490
26491 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
26492
26493         * gdk/Makefile.am (configexecincludedir): Rename from 
26494         configincludedir so that gdkconfig.h will be installed 
26495         as part of `make install-exec'. 
26496
26497 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
26498
26499         * acinclude.m4
26500         * config.guess
26501         * config.sub
26502         * ltconfig
26503         * ltmain.sh: upgrade to libtool 1.2f
26504
26505         * autogen.sh: libtool is not required to autogen gtk+
26506
26507         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
26508         needed)
26509
26510 1999-03-18  Tor Lillqvist  <tml@iki.fi>
26511
26512         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
26513         declaring gdk variables exported/imported from the DLL. New image
26514         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
26515         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
26516         GDK_DRAG_PROTO_OLE2.
26517
26518         * gdk/gdk.h: Merge in Win32 version: Two new functions,
26519         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
26520         declared only for the Win32 version, but could be in the X11
26521         version as well. (Needed for a Xlib-less gdk_imlib.)
26522         gdk_color_hash should have only one parameter. Declare
26523         gdk_threads_mutex with GDKVAR.
26524         
26525         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
26526         just one parameter.
26527
26528         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
26529         per pixel, not bits.
26530
26531         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
26532         Fetch bpp (which means bits-per-pixel here) from another place on
26533         Win32. Accept also depth==32 (which we might get on Win32) with
26534         bpp==32.
26535
26536         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
26537         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
26538         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
26539         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
26540         in the backend-dependent directory, not in the common gdk
26541         directory.
26542
26543         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
26544         headers.
26545
26546 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
26547
26548         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
26549         want to use the Gtk+ devel version (which is true, and yes - even i am
26550         currently working with the 1.2.x branch). so everyone reading this, you
26551         probably want to issue
26552         cvs checkout -r glib-1-2 glib
26553         and
26554         cvs checkout -r gtk-1-2 gtk+
26555         as your next two comands.
26556
26557 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
26558
26559         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
26560         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
26561
26562         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
26563         file. strongly deprecated the GTK_HAVE_* macros, we provide
26564         GTK_CHECK_VERSION() for people that need to check for certain
26565         Gtk+ versions.
26566
26567         * gtk/gtkcompat.h: removed this from CVS.
26568         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
26569         idea right from the start, it just didn't seem like that back then.
26570
26571 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
26572
26573         * merges from gtk-1-2:
26574
26575 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
26576
26577         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
26578         item factory class has been created.
26579         (gtk_item_factory_parse_rc): likewise.
26580
26581         * gtk/gtkmenu.c:
26582         keep proper references for old_active_menu_item.
26583         (gtk_menu_reparent): unset the usize of the new parent,
26584         so the menu can sanely be size requested and we don't get nasty screen
26585         artefacts upon next reparentation.
26586         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
26587         enter notify. only synthesize enter notifies if the pointer really is
26588         inside the event window.
26589         (gtk_menu_popdown): use gtk_menu_shell_deselect().
26590         (gtk_menu_popup): move the background setting stuff into
26591         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
26592
26593         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
26594         gtk_menu_shell_select_item() to select the new item.
26595         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
26596         do the right thing for deselection as well.
26597
26598 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
26599
26600         * gtk/gtkwidget.[hc]:
26601         (gtk_widget_accelerators_locked): return whether a widget's accelerators
26602         are locked.
26603
26604         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
26605         existing accelerators if the widget's accelerators are locked.
26606
26607 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
26608
26609         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
26610
26611         * gtk/gtkmenu.c: truely forward key press and key release events to
26612         the menu widget from the toplevel or tearoff window. we can't simply
26613         connect to that, we need to stop further processing of the events as
26614         well.
26615
26616 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
26617
26618         * gtk/gtkmenu.c:
26619         (gtk_menu_key_press): pass event->keyval, event->state to
26620         gtk_accelerator_valid, instead of event->keyval twice.
26621         refuse to install single letter accelerators for menus that use
26622         single letter shortcuts.
26623
26624         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
26625         gtk_menu_ensure_uline_accel_group().
26626
26627         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
26628         which will always return an uline accel group, made
26629         gtk_menu_get_uline_accel_group() return NULL if the group isn't
26630         yet created.
26631
26632 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
26633
26634         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
26635
26636         * gtk/gtkclist.c (gtk_clist_column_title_passive):
26637         Leave button sensitive, trap  button_press, button_release,
26638         motion_notify, enter_notify and leave_notify events instead.
26639         (gtk_clist_column_title_active): disconnect event handler.
26640         (gtk_clist_drag_data_get): fixed memory leak. Reported by
26641         Guillaume Laurent <glaurent@worldnet.fr>
26642
26643 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
26644
26645         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
26646         width/height mixups.
26647
26648         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
26649         if needed.
26650
26651 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
26652
26653         * gtk/testgtk.c (create_item_factory): unref the item factory after
26654         window's destruction.
26655
26656         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
26657         count on the menu shell around the menu item's activation, since the
26658         signal emission may cause menu shell destruction.
26659
26660         * gtk/gtkitemfactory.c:
26661         the previous code leaked one accel group per menu. we use
26662         gtk_menu_get_uline_accel_group() now to fix that, and with that
26663         also create the underline accelerator group of the menus only if
26664         required (i.e. an underline accelerator has been specified).
26665         (gtk_item_factory_construct):
26666         (gtk_item_factory_create_item): removed code that would create an
26667         extra accel group for the menu (and leak references).
26668         (gtk_item_factory_create_item): adapted the underline accelerator
26669         installation code to properly feature gtk_menu_get_uline_accel_group().
26670
26671         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
26672         menu->accel_group, this may return NULL if the accelerator group
26673         hasn't been set yet.
26674         added gtk_menu_get_uline_accel_group() to retrive the underline
26675         accelerator group of the menu, this will be created on demand
26676         and proper care is taken about its reference count.
26677
26678         * gtk/gtkitemfactory.h:
26679         * gtk/gtkitemfactory.c:
26680         dumped the approach of keeping a widgets by action list on the
26681         factory since the factory<->widget destroy negotiation didn't work
26682         and would be hard to get going at all. instead we keep a list of
26683         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
26684         persistant throughout a program's life time).
26685         also, i removed the static const gchar *key_* variables, and made
26686         them inline strings (they weren't actually used anyways).
26687         (gtk_item_factory_add_item): update ifactory->items.
26688         (gtk_item_factory_destroy): destroy ifactory->items (and remove
26689         the item factory pointer from the remaining ifactory widgets).
26690         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
26691         list to find the widget.
26692         (gtk_item_factory_get_item): new function that works around
26693         gtk_item_factory_get_widget() limitations, this function will only
26694         return menu items, even for <Branch> entries.
26695
26696 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
26697
26698         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
26699         font hash table, if we have a GdkFontPrivate entry for this font
26700         already, simply increment its reference count, provided by Olaf Dietsche
26701         <olaf.dietsche+list.gtk@netcologne.de>.
26702
26703         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
26704         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
26705
26706 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
26707
26708         * gtk/gtkcontainer.c:
26709         (gtk_container_add_with_args):
26710         (gtk_container_addv):
26711         (gtk_container_add): before adding a child to a conatiner, make sure
26712         it is (default) constructed, this is neccessary because under certain
26713         circumstances the child will get relized and mapped immediatedly, in
26714         which case it has to be constructed already.
26715
26716 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
26717
26718         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
26719         values > 1 as TRUE also.
26720
26721 1999-03-16  Tor Lillqvist  <tml@iki.fi>
26722
26723         * README.win32: New file.
26724                 
26725         * configure.in: Check for lstat.
26726
26727         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
26728         completeness.
26729
26730         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
26731
26732         * gtk/gtk.def: Removed CRs.
26733
26734         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
26735         ..\gdk\win32).
26736
26737         * gdk/win32/makefile.msc: Correct upwards relative paths.
26738         
26739 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
26740
26741         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
26742           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
26743           it was connecting a void function to expose_event and the int
26744           returning function to the draw signal
26745
26746 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
26747
26748         * configure.in:
26749         Use correct path to libgmodule.la when ref'ing uninstalled copy
26750         of glib.  (Already in stable branch, Bug #417)
26751
26752 1999-03-15  Tor Lillqvist  <tml@iki.fi>
26753
26754         Win32 merge and general portability stuff:
26755                 
26756         * acconfig.h,configure.in: Check for <sys/time.h>.
26757
26758         * gdk/win32: New directory (actually, been there for a while).
26759         
26760         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
26761         NATIVE_WIN32, and use these. Always case fold on Win32. No
26762         backslashed escapes on native Win32.
26763
26764         * gtk/{gtk.def,makefile.msc}: New files.
26765
26766         * gtk/Makefile.am: Add above new files.
26767         
26768         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
26769         instead of <strings.h>.
26770
26771         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
26772         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
26773         <unistd.h> appropriately.
26774
26775         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
26776         Use ABS() (from <glib.h>) instead of abs().
26777         
26778         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
26779         of gtk (and thus glib) headers, so that WIN32 will be
26780         defined. With MS C, include <direct.h> for mkdir prototype.
26781
26782         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
26783         some casts, needed by MS C.
26784
26785         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
26786         implemented).
26787
26788         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
26789         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
26790         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
26791
26792         * gtk/gtkmain.h: Mark variables for export/import on Win32.
26793                 
26794         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
26795         the event is not a hint, or its window is not the slider. Needed
26796         on Win32, at least.
26797
26798         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
26799         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
26800         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
26801         a subdirectory of the Windows directory as gtk system
26802         configuration directory.
26803
26804         * gtk/gtkselection.c: No chunks on Win32.
26805
26806         * gtk/gtksocket.c: Not implemented on Win32.
26807
26808         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
26809
26810         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
26811
26812         * gtk/maketypes.awk: Declare variables with a macro that expands to
26813         necessary export/import magic in the case of Win32.
26814                 
26815         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
26816
26817 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
26818
26819         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
26820         since those were meant only for gdki18n.h.  
26821         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
26822         for widechar tests.
26823         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
26824
26825 1999-03-13  Tor Lillqvist  <tml@iki.fi>
26826
26827         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
26828         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
26829
26830         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
26831         installed) to CFLAGS.
26832
26833         * gdk/Makefile.am: Add rules for gdkconfig.h.
26834
26835         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
26836         APIs.
26837
26838         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
26839         gdkx.h anyway when compiling for X11.
26840         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
26841         general): Merge in Win32 version.
26842         
26843         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
26844         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
26845         expansion (if we don't have HAVE_PWD_H), allow for drive
26846         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
26847         included code from Craig Setera's port to Win32 (the one that uses
26848         X11, and the cygwin dll), even if it probably will be abandoned.
26849
26850         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
26851         the user entered one herself.  This way one can complete *.h and
26852         don't get matches on any .help files, for instance.
26853         
26854 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
26855
26856         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
26857         font hash table, if we have a GdkFontPrivate entry for this font
26858         already, simply increment its reference count, provided by Olaf Dietsche
26859         <olaf.dietsche+list.gtk@netcologne.de>.
26860
26861         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
26862         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
26863
26864 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
26865
26866         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
26867         the number of calls to gdk_draw_point() (and thus to X) by
26868         clipping the points by hand.
26869
26870         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
26871         the clip parameter.
26872         (gtk_handle_box_paint): Only paint the handle if the expose area
26873         intersects it.
26874
26875 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
26876
26877         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
26878
26879 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
26880
26881         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
26882         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
26883
26884 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
26885
26886         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
26887          textmode (O_TEXT) for OS/2 version.
26888
26889 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
26890
26891         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
26892         GtkSpinButton, "input" and "output", to make the output more flexible.
26893         The user has to provide a mapping between adjustment->value and the
26894         output string (and vice versa, if the spin button is editable). 
26895         See testgtk for examples.
26896
26897 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
26898
26899         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
26900         new one.
26901         
26902         * configure.in: set gtk+ version to 1.3.0.
26903
26904         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog,