]> Pileus Git - ~andy/gtk/blob - ChangeLog
New directory with the start of a framework for testing performance in
[~andy/gtk] / ChangeLog
1 2005-07-26  Federico Mena Quintero  <federico@ximian.com>
2
3         * perf/: New directory with the start of a framework for testing
4         performance in GTK+.
5
6         * Makefile.am (SRC_SUBDIRS): Added the perf directory.
7
8         * configure.in (AC_OUTPUT): Generate perf/Makefile.
9
10 2005-07-26  Matthias Clasen  <mclasen@redhat.com>
11
12         * gtk/gtkfilechooserdefault.c: Fix up includes on Win32.  
13         (#311630, Kazuki Iwamoto)
14
15         * gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to 
16         the list of keysyms to ignore for composition, since
17         AltGr keys produce it in some keyboard layouts.  (#307283)
18
19         * gtk/gtkwidget.h: 
20         * gtk/gtk.symbols: Remove G_GNUC_NULL_TERMINATED from
21         gtk_widget_new as well, pointed out by Kjartan Maraas.
22
23 2005-07-25  Matthias Clasen  <mclasen@redhat.com>
24
25         * gtk/gtkhsv.c (paint_triangle): Pad out the full width, in 
26         an attempt to work around bug #311225. 
27
28         * gtk/gtktreemodelsort.c: Trivial doc fixes.
29
30         * gtk/gtktreesortable.c: Talk about comparison functions, not
31         sort functions in some places.  (#311398, Fabrice Bauzac)
32
33         * gtk/gtk.symbols: 
34         * gtk/gtkobject.[hc]: 
35         * gtk/gtkfilechooserdialog.[hc] 
36         * gtk/gtkdialog.[hc]: Remove the G_GNUC_NULL_TERMINATED marker
37         from a number of varargs functions where we allow to omit the
38         varargs completely.  (#311465, Callum McKenzie)
39
40 2005-07-22  Matthias Clasen  <mclasen@redhat.com>
41
42         * === Released 2.7.4 === 
43
44         * NEWS: Updates
45
46         * gtk/gtkmessagedialog.c (gtk_message_dialog_format_secondary_markup): 
47         Point out escaping oversight.  (#311260, Owen Taylor)
48
49 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
50
51         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): Cleanup
52         a possible resize idle.  (#311141, Robert Ögren)
53
54         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_changed): 
55         (gtk_tree_model_sort_sort_level): Ref the level while using it,
56         otherwise it may get nuked by gtk_tree_model_sort_increment_stamp.
57         (gtk_tree_model_sort_row_deleted): Don't leak the root level 
58         here.  (#300089, James Bramford, Markku Vire)
59
60 2005-07-21  Federico Mena Quintero  <federico@ximian.com>
61
62         * gtk/gtkfilechooser.c (gtk_file_chooser_set_filename): Clarify
63         the usage of this function.
64         (gtk_file_chooser_set_uri): Likewise.
65         (gtk_file_chooser_set_current_name): Likewise.
66
67         * gtk/gtkfilechooserdefault.c (set_file_system_backend):
68         Instrument this function for profiling as well.
69         (gtk_file_chooser_default_init): Likewise; just to have a marker
70         of where instance initialization begins.
71
72 2005-07-21  Owen Taylor  <otaylor@redhat.com>
73
74         * gtk/gtkwidget.c (update_pango_context): Fix a couple of leaks.
75
76 2005-07-21  Christian Rose  <menthos@menthos.com>
77
78         * configure.in: Added "hy" to ALL_LINGUAS.
79
80 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
81
82         * NEWS: Updates
83
84         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Be
85         a bit more careful to not shrink the label to a negative
86         width.  (#311175, Thomas Vander Stichele)
87
88         * gtk/gtk.symbols: mark gtk_socket_steal as deprecated.
89
90         * configure.in: Bump the cairo requirement.
91
92 2005-07-19  Owen Taylor  <otaylor@redhat.com>
93
94         * gtk/gtksettings.c gtk/gtkwidget.c: Change machinery for
95         following font rendering xsettings to set cairo font
96         options on PangoContext
97
98         * gdk/x11/gdkxftdefaults.c gdk/x11/gdkevents-x11.c gdkscreen-x11.h
99         gdkprivate-x11.h: Get default values for rendering options
100         (such as antialiasing, dpi) from the Xft resources for the
101         display, borrowing a bit of code from Xft.
102
103         * gtk/gtksettings.c (gtk_settings_class_init): Fix docs for
104         values of gtk-xft-hintstyle.
105
106 2005-07-21  Tor Lillqvist  <tml@novell.com>
107
108         Make GtkPlug/Socket cross-platform: Add Win32 implementation,
109         splice out X11 implementation to separate files. (#58541)
110             
111         * gtk/gtk.symbols: Make GtkPlug/Socket API available with all
112         backends.
113
114         * gtk/Makefile.am: Changes to build GtkPlug/Socket with all
115         backends.
116
117         * gtk/gtksocket.c
118         * gtk/gtkplug.c: Splice out backend-dependend parts to separate
119         files, see below.
120
121         * gtk/gtksocketprivate.h
122         * gtk/gtkplugprivate.h: New files. Declare the backend-specific
123         functions, and the private backend-independent functions they call
124         back to.
125
126         * gtk/gtksocket-stub.c
127         * gtk/gtkplug-stub.c
128         * gtk/gtksocket-x11.c
129         * gtk/gtkplug-x11.c
130         * gtk/gtksocket-win32.c
131         * gtk/gtkplug-win32.c
132         * gtk/gtkwin32embed.h
133         * gtk/gtkwin32embed.c: New files, containing the backend-specific
134         parts of GtkPlug/Socket.
135
136         * gtk/gtkxembed.h
137         * gtk/gtkxembed.c (_gtk_xembed_message_name): New function, used
138         in error messages and debugging output.
139         
140         * gtk/gtkwindow.c (gtk_window_show): No need for ifdef, can now
141         use GTK_IS_PLUG() with all backends.
142
143         * tests/testsocket_common.c: Make it work on Win32, too.
144
145 2005-07-21  Tor Lillqvist  <tml@novell.com>
146
147         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Use
148         wide-char API when available. (#311079, Peter Zelezny)
149
150 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
151
152         * gtk/gtkwidget.c (gtk_widget_modify_bg, gtk_widget_modify_base): 
153         Add hints on how to handle "no window" widgets.  (#136347)
154
155 2005-07-20  Keith Packard  <keithp@keithp.com>
156
157         * gdk/x11/gdkdrawable-x11.c: (gdk_x11_ref_cairo_surface):
158
159         Follow change in cairo API to add Screen* to
160         cairo_xlib_create_surface_for_bitmap
161
162 2005-07-20  Matthias Clasen  <mclasen@redhat.com>
163
164         * gtk/gtkicontheme.c (load_svg_at_size): Explicitly use the 
165         svg loader, if available. This should help with the fact that
166         svg is not reliably sniffable with the current gdk-pixbuf sniffing
167         code. 
168
169         * gtk/gtkstyle.c (gtk_default_draw_expander): Make sure expanded
170         expanders are not fuzzy.  (#310172, reported by Alexander Larsson,
171         patch by Owen Taylor)
172
173         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't fail if we
174         can't get a keyboard grab.  (#168351)
175
176         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_[sg]et_property):
177         Add GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION. 
178
179 2005-07-19  Federico Mena Quintero  <federico@ximian.com>
180
181         * gtk/gtkfilechooserdefault.c: Added a few utility functions for
182         profiling; instrument the code, make it conditional.
183
184 2005-07-19  Kristian Rietveld  <kris@gtk.org>
185
186         * gtk/gtkentry.c (gtk_entry_move_forward_word): don't iterate
187         past the end of the string, so pango_layout_get_cursor_pos() won't
188         complain. (#309211, Tommi Komulainen).
189
190 2005-07-19  Tor Lillqvist  <tml@novell.com>
191
192         * gtk/gtkmain.c (check_sizeof_GtkWindow, check_sizeof_GtkBox):
193         Don't bother mentioning the -fnative-struct (used by GCC 2) switch
194         in the error message any longer.
195
196 2005-07-18  Matthias Clasen  <mclasen@redhat.com>
197
198         * gdk/gdkpixbuf-render.c: Small formatting fixes in doc comments. 
199
200         * gtk/gtkcombobox.c (gtk_combo_box_model_row_deleted) 
201         (gtk_combo_box_model_row_inserted): Remove useless calls
202         to gtk_tree_row_reference_inserted/deleted, since we
203         don't use manual row references here. 
204
205         * gtk/gtkmain.c (gtk_parse_args, gtk_init_with_args): Call
206         gettext_initialization before checking gtk_initialized, otherwise
207         there are scenarios where it is not called at all. For an
208         example, see tests/testfilechooserbutton.c.  (#310323, 
209         Arkady L. Shane)
210
211 2005-07-18  Tor Lillqvist  <tml@novell.com>
212
213         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get): Be sure to remove
214         any possible leftover clipping region in the DC if we don't want
215         any clipping. Thanks to Robert Ögren. (#309823)
216
217         * configure.in (GDK_EXTRA_LIBS): [Win32] Bypass libtool, use
218         -Wl,-luuid. This avoids a libtool warning as libuuid is static.
219
220 2005-07-18  Matthias Clasen  <mclasen@redhat.com>
221
222         * gtk/gtkcombobox.c (gtk_combo_box_set_focus_on_click): Propagate
223         the focus-on-click value to the button.  (#310543, Christian Persch)
224
225         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a note
226         about the need to handle expose events. We really need a chapter
227         on the GTK+ drawing model that we can refer to here... (#310765,
228         Steve Chaplin)
229
230 2005-07-16  Tor Lillqvist  <tml@novell.com>
231
232         * configure.in (GDK_EXTRA_LIBS): [Win32] Put -luuid back, it is
233         needed in case one builds without the ie55 stuff. (#310582)
234
235 2005-07-15  Matthias Clasen  <mclasen@redhat.com>
236         
237         * configure.in: Bump version
238
239         * === Released 2.7.3 ===
240         
241         * gdk/gdkdraw.c (gdk_draw_drawable): Add better docs.  
242         (#310192, Owen Taylor)
243
244 2005-07-15  Matthias Clasen  <mclasen@redhat.com>
245
246         * NEWS: Updates
247
248         * gtk/gtkentry.c (gtk_entry_move_forward_word): 
249         (gtk_entry_move_backward_word): Don't treat whitespace as
250         words for keynav, pointed out by Owen Taylor.
251
252 2005-07-15  Federico Mena Quintero  <federico@ximian.com>
253
254         * gtk/gtkfilechooserdefault.c
255         (should_respond_after_confirm_overwrite): Take the parent folder
256         path instead of the display name, to avoid doing duplicated work
257         in gtk_file_chooser_default_should_respond().
258
259 2005-07-15  Federico Mena Quintero  <federico@ximian.com>
260
261         * gtk/gtkfilechooserdefault.c
262         (confirm_dialog_should_accept_filename): Take the display name of
263         the folder as well so that we can present a better message.  Use a
264         stock cancel button, "_Replace", and GTK_STOCK_SAVE_AS.
265         (gtk_file_chooser_default_should_respond): Pass the file part and
266         folder display name directly to the function above.  Oops, only do
267         the confirmation dialog if the file exists.
268
269 2005-07-15  Federico Mena Quintero  <federico@ximian.com>
270
271         * gtk/gtkfilechooserdefault.c
272         (confirm_dialog_should_accept_filename): Use header capitalization
273         for the buttons, per the HIG.
274
275         * gtk/gtk.symbols: Add the new functions.
276
277         * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for
278         the confirm-overwrite signal.
279
280         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Remove the
281         stub documentation for the "confirm-overwrite" signal.
282         (gtk_file_chooser_set_do_overwrite_confirmation): Add "Since: 2.8"
283         to the docs.
284         (gtk_file_chooser_get_do_overwrite_confirmation): Likewise.
285
286 2005-07-14  Federico Mena Quintero  <federico@ximian.com>
287
288         Add overwrite confirmation for SAVE mode.  Fixes bug #152850:
289
290         * gtk/gtkfilechooser.h: Add prototypes for
291         gtk_file_chooser_set/get_do_overwrite_confirmation().
292         (GtkFileChooserConfirmation): New enum for the result of the
293         "confirm-overwrite" signal.
294
295         * gtk/gtkmarshalers.list: Add ENUM:VOID.
296
297         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add a
298         "do-overwrite-confirmation" boolean property.
299         (gtk_file_chooser_set_do_overwrite_confirmation): Implement.
300         (gtk_file_chooser_get_do_overwrite_confirmation): Implement.
301         (confirm_overwrite_accumulator): New accumulator for the signal.
302
303         * gtk/gtkfilechooserutils.h (GtkFileChooserProp): Add
304         GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION.
305
306         * gtk/gtkfilechooserutils.c
307         (_gtk_file_chooser_install_properties): Override the
308         do-overwrite-confirmation property.
309
310         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserIface): Add a
311         confirm_overwrite signal to the vtable.
312
313         * gtk/gtkfilechooserdefault.c
314         (gtk_file_chooser_default_set_property): Handle the new property.
315         (gtk_file_chooser_default_get_property): Likewise.
316         (get_selected_file_info_from_file_list): New helper function; code
317         taken from list_selection_changed().
318         (list_selection_changed): Use get_selected_file_info_from_file_list().
319         (should_respond_after_confirm_overwrite): New function.
320         (gtk_file_chooser_default_should_respond): Confirm when necessary.
321
322 2005-07-14  Matthias Clasen  <mclasen@redhat.com>
323
324         * gtk/gtk.symbols: Add new exported symbols.
325
326 2005-07-14  Tor Lillqvist  <tml@novell.com>
327
328         * gtk/gtkfilesystemwin32.c (filename_get_info): Implement getting
329         the MIME type of a file. Look it up in the Registry. Bug reported
330         by Hans Oesterholt.
331
332 2005-07-14  Tor Lillqvist  <tml@novell.com>
333
334         * configure.in (GDK_EXTRA_LIBS): Don't need -luuid on Win32. It
335         was some leftover, and in fact occasionally caused issues with
336         libtool as it made its way into the libgdk-win32-2.0.la file and
337         that way into the .la files of all libraries that depend on
338         GDK. (This happened only when building from CVS and not using a
339         full "make install" which would run the sanitize-la.sh script.)
340
341 2005-07-14  Matthias Clasen  <mclasen@redhat.com>
342
343         * gdk/x11/gdkevents-x11.c (set_screen_from_root): Don't assert if 
344         the xrootwin is invalid.  (#309997, Barbie LeVille)
345         (gdk_event_translate): Ignore events with an invalid root field.
346
347         * configure.in: Set interface age to 0.
348
349         * gtk/gtkimmodule.h: Move G_BEGIN_DECLS to the right spot, noticed
350         by Akira Tagoh.
351
352 2005-07-14  Kristian Rietveld  <kris@gtk.org>
353
354         * gtk/gtktreeviewcolumn.[ch] (gtk_tree_view_column_queue_resize): new
355         function (fixes #169961, reported by Morten Welinder).
356
357 2005-07-14  Kristian Rietveld  <kris@gtk.org>
358
359         * gtk/gtktreeview.[ch] (gtk_tree_view_get_visible_range): new
360         function. (fixes #105252, suggestion from Mikael Hallendal).
361
362 2005-07-13  Manish Singh  <yosh@gimp.org>
363
364         * demos/gtk-demo/iconview_edit.c: remove unused variable.
365
366 2005-07-13  Kristian Rietveld  <kris@gtk.org>
367
368         * gtk/gtktreemodel.[ch] (gtk_tree_row_reference_get_model): new
369         function. (#160879, Stefan Kost).
370
371 2005-07-13  Kristian Rietveld  <kris@gtk.org>
372
373         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): paint a flat box
374         on the area the treeview got allocated extra vertically (fixes
375         #142063, reported by Brian Bober).
376
377         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
378         make this function calculate real_cell_area and real_background_area
379         correctly. (fixes #309249, reported by Bernd Demian).
380
381 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
382
383         * gtk/gtkcalendar.c (calendar_realize_arrows): Fix an 
384         unintentional case of width-for-height... (#310133, Luis Villa)
385
386 2005-07-13  Kristian Rietveld  <kris@gtk.org>
387
388         * gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
389         the MIN of width and max_width here, not width and max_width != -1.
390         (fixes #144480, reported by Mikael Magnusson).
391
392 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
393
394         * gtk/gtkicontheme.c (load_themes): Don't keep the caches
395         for unthemed directories in a separate list, instead append
396         them at the end of the dir_mtimes list, so that we can check
397         them for staleness like the other caches.  (#310221, Mark 
398         McLoughlin)
399
400         * configure.in: Check that we have a new enough Cairo.
401
402 2005-07-13  Robert Ögren  <gtk@roboros.com>
403
404         Fix handling of Aiptek and Aiptek-like graphical tablets such as Trust
405         on Windows. (#167004, thanks to "pnohant" for testing)
406
407         Code cleanup: Remove the unused and unmaintained code for using a
408         non-system tablet context (USE_SYSCONTEXT ifdef:s), suggested
409         by Tor Lillqvist.
410
411         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Handle
412         tablet drivers that don't support WTI_DDCTXS/WTI_DSCTXS gracefully.
413         Sligthly reorganize and simplify the code to support this.
414         (_gdk_input_wintab_init_check, _gdk_input_other_event): Remove
415         USE_SYSCONTEXT ifdef:s and the code for the case it was not defined.
416         (gdk_input_window_find_within): Removed.
417
418 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
419
420         * gdk/win32/bdfcursor.c: Add Copyright/License information.
421         
422 2005-07-13  Kristian Rietveld  <kris@gtk.org>
423
424         * gtk/gtktreeview.c (validate_row): when !separator, don't add
425         the focus_line_width to width/height (happens in
426         _column_cell_get_size), but do add the vertical-separator to height,
427         we weren't taking this into account before.
428
429         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
430         take vertical-separator into account. (#309137, Ross Burton).
431
432 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
433
434         * tests/treestoretest.c: 
435         * tests/testxinerama.c: 
436         * tests/testtreeview.c: 
437         * tests/testtreefocus.c: 
438         * tests/testtreeflow.c:
439         * tests/testtreeedit.c: 
440         * tests/testtreecolumns.c: 
441         * tests/testtext.c: 
442         * tests/testtextbuffer.c: 
443         * tests/testspinbutton.c: 
444         * tests/testsocket_common.c: 
445         * tests/testsocket_child.c: 
446         * tests/testsocket.c: 
447         * tests/testmultiscreen.c: 
448         * tests/testmultidisplay.c: 
449         * tests/testmerge.c: 
450         * tests/testmenus.c: 
451         * tests/testmenubars.c: 
452         * tests/testicontheme.c: 
453         * tests/testfilechooser.c: 
454         * tests/testentrycompletion.c: 
455         * tests/testdnd.c: 
456         * tests/testcombochange.c: 
457         * tests/testactions.c: 
458         * tests/testcombo.c: 
459         * tests/simple.c: 
460         * gtk/gtktextutil.c: 
461         * gtk/gtktexttypes.h: 
462         * gtk/gtktexttypes.c: 
463         * gtk/gtktexttagprivate.h: 
464         * gtk/gtktextsegment.h: 
465         * gtk/gtktextiterprivate.h: 
466         * gtk/gtktextchildprivate.h: 
467         * gtk/gtktextbtree.h: Add Copyright/License information.
468
469         * gtk/gtkicontheme.c (gtk_icon_theme_get_default) 
470         (gtk_icon_theme_get_for_screen): Add a warning about
471         unreffing icon themes.  (#310163, Rodney Dawes)
472
473 2005-07-13  Kristian Rietveld  <kris@gtk.org>
474
475         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach): quit
476         maintaining the iter on every iteration, only get the iter when
477         we are about to call the foreach_func. Gives us a 10x speedup,
478         since maintaining iters is a lot more expensive than maintaining
479         paths. We lose a bit of sanity checking though. Thanks go to
480         Billy Biggs for pointing this out.
481
482 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
483
484         * tests/testcairo.c (draw): Fix the same confusion here, too.
485
486         * gdk/gdkgc.c (make_stipple_tile_surface): Fix 
487         cairo_content_t <-> cairo_format_t confusion.  (#310086,
488         Carlos Garnacho Parro)
489
490         * gtk/gtkfilesystemunix.c 
491         (gtk_file_system_unix_volume_get_display_name): Follow
492         the Nautilus change and rename "Filesystem" to "File System",
493         string change.  (#310047, Vincent Noel)
494         
495 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
496
497         * demos/gtk-demo/iconview.c: Rename this demo.
498
499         * demos/gtk-demo/iconview_edit.c: Add a demo for icon view
500         editing and drag-and-drop.
501
502         * demos/gtk-demo/geninclude.pl.in: Accept dashes in demo titles.
503
504 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
505
506         * gtk/theme-bits/decompose-bits.c: 
507         * gtk/gtkfilechooserembed.c: 
508         * gtk/gtktextmarkprivate.h: 
509         * gtk/gtktexttagtable.h: 
510         * gtk/gtktexttagtable.c: 
511         * gtk/gtkrc.key.emacs: Add Copyright/License information.
512
513         * gdk/linux-fb/gdkrender-fb.c: 
514         * gdk/linux-fb/gdkpango-fb.c: 
515         * gdk/linux-fb/gdkdrawable-fb2.c: 
516         * gdk/linux-fb/gdkgc-fb.c: 
517         * gdk/linux-fb/gdkfbswitch.c: Add Copyright/License information.
518
519         * gdk/gdkwindow.h: 
520         * gdk/gdkvisual.h: 
521         * gdk/gdkselection.h: 
522         * gdk/gdkselection.c: 
523         * gdk/gdkregion.h: 
524         * gdk/gdkproperty.h: 
525         * gdk/gdkpixmap.h: 
526         * gdk/gdkpixbuf.h: 
527         * gdk/gdkkeyuni.c: 
528         * gdk/gdkintl.h: 
529         * gdk/gdkinput.h: 
530         * gdk/gdkimage.h: 
531         * gdk/gdkgc.h: 
532         * gdk/gdkfont.h: 
533         * gdk/gdkevents.h: 
534         * gdk/gdkdnd.h: 
535         * gdk/gdkcursor.h: 
536         * gdk/gdkcolor.h: Add Copyright/License information.
537
538 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
539
540         * modules/input/imm-extra.h: Add Copyright/License information.
541
542 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
543
544         * gtk/gtktexttag.c (gtk_text_tag_class_init) 
545         (gtk_text_tag_set_property): Remove the runtime warning about 
546         the invisible property, add a warning about possible remaining
547         problems to the documentation of the property.  (#66194)
548
549         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Don't
550         ever go unconditionally to the buffer ends; that doesn't work
551         if the initial or final portion of the buffer are invisible.
552
553 2005-07-11  Kristian Rietveld  <kris@gtk.org>
554
555         * gtk/gtktreeview.c (gtk_tree_view_class_init): add binding entry
556         for ctrl + backspace (move focus to parent without affecting
557         selection),
558         (gtk_tree_view_real_select_cursor_parent): implement ctrl+backspace
559         and simplify the function a bit. (#309296, Kathy Fernandes).
560
561 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
562
563         Make gtk_window_present() move the window to the current
564         desktop, instead of letting the WM change the current
565         desktop to where the window is.  (#166379, Elijah Newren)
566         
567         * gdk/gdk.symbols: 
568         * gdk/x11/gdkx.h: 
569         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_move_to_current_desktop): 
570         New function to move a window to the current desktop.
571         
572         * gtk/gtkwindow.c (gtk_window_present_with_time): Move the
573         window to the current desktop before giving it focus.  
574
575 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
576
577         When dragging text, use a drag icon showing the (ellipsized)
578         text that is being dragged: (#161132, Kevin Duffus, patch
579         by Carlos Garnacho Parro)
580         
581         * gtk/gtktextutil.h: 
582         * gtk/gtktextutil.c (_gtk_text_util_create_drag_icon): Add
583         a function to create a pixmap for use when dragging text.
584
585         * gtk/gtktextview.c (gtk_text_view_start_selection_dnd): 
586         * gtk/gtklabel.c (gtk_label_motion): 
587         * gtk/gtkentry.c (gtk_entry_motion_notify): Use a drag icon
588         showing the text being dragged.  
589
590 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
591
592         * gtk/gtkentry.c (gtk_entry_move_forward_word) 
593         (gtk_entry_move_backward_word): Match the text view change
594         to allow selecting whitespace with double-click.
595
596         * gtk/gtktextview.c (extend_selection): Make double-clicking
597         between words select whitespace.  (#309860, Mike Miller, patch
598         by Paolo Borelli)
599
600         * gtk/gtkiconview.c: Documentation improvements.  (#309946, 
601         Torsten Schoenfeld)
602
603 2005-07-10  Kristian Rietveld  <kris@gtk.org>
604
605         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): remove
606         unneeded check for negative window_y.
607
608 2005-07-10  Kristian Rietveld  <kris@gtk.org>
609
610         * gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): also move
611         to the next match when ctrl+g is pressed. (#156657, Matt T. Proud).
612
613 2005-07-10  Kristian Rietveld  <kris@gtk.org>
614
615         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): rework
616         function to make page up/down behave the same as in GtkTextView.
617         (Fixes #101220, Owen Taylor).
618
619 2005-07-09  Kristian Rietveld  <kris@gtk.org>
620
621         Fix #305737, patch from Tomislav Jonjic. This makes the
622         gtk_tree_store_insert* family of functions emit row_has_child_toggled
623         when needed (they didn't do that before).
624
625         * gtk/gtktreestore.c (gtk_tree_store_insert): emit
626         row_has_child_toggled when needed,
627         (gtk_tree_store_insert_before): fix a possible memleak,
628         emit row_has_child_toggled when needed,
629         (gtk_tree_store_insert_after): ditto.
630
631 2005-07-09  Kristian Rietveld  <kris@gtk.org>
632
633         * gtk/gtktreeview.c (gtk_tree_view_real_expand_row): when
634         open_all is TRUE, traverse the newly built tree to emit
635         row_expanded for the subitems. (rev 1.444, patch in #172319
636         broke this). Fixes #305582, reported by Billy Biggs.
637
638 2005-07-09  Tor Lillqvist  <tml@novell.com>
639
640         * configure.in: Look for windres on Win32. Drop build/* from
641         AC_CONFIG_FILES.
642
643         * Makefile.am: Drop build from SUBDIRS. 
644
645         * gdk/win32/rc/Makefile.am
646         * gdk/Makefile.am
647         * gtk/Makefile.am: Don't use the scripts in build/win32 to compile
648         the rc files into resource object files. (This means we lose the
649         build number increment magic, but I doubt it was that useful
650         anyway.) Instead use windres directly. To pass a normal .o file
651         produced by windres through libtool, which would want a .lo file,
652         pass it directly to the linker using a -Wl option.
653
654         * gdk/win32/rc/gdk.rc.in
655         * gtk/gtk-win32.rc.in: Replace BUILDNUMBER with 0.
656
657 2005-07-08  Kristian Rietveld  <kris@gtk.org>
658
659         Fixes #165034, reported by Jorn Baayen.
660
661         * gtk/gtkrbtree.[ch] (_gtk_rbtree_set_fixed_height): add a
662         mark_valid parameter (so we can mark all nodes as valid when we
663         are setting them to the fixed height).
664
665         * gtk/gtktreeview.c (initialized_fixed_height_mode): mark all
666         nodes as valid when setting the fixed height,
667         (do_validate_rows): update call to _set_fixed_height,
668         (gtk_tree_view_row_inserted): mark node as valid when fixed
669         height mode is enabled and a height has been set,
670         (gtk_tree_view_build_tree): if fixed height mode is enabled,
671         mark new nodes as valid in addition to setting the height.
672
673 2005-07-08  Matthias Clasen  <mclasen@redhat.com>
674
675         * configure.in: Bump version
676         
677         * === Released 2.7.2 ===
678
679         * NEWS: Updates
680
681         * gtk/gtkcelllayout.c (gtk_cell_layout_pack_start): 
682         (gtk_cell_layout_pack_end): Add a note about reusing cell
683         renderers.
684
685         * gtk/gtkdnd.c (gtk_drag_update_cursor): Pass a GdkDragAction to
686         gtk_drag_get_cursor.  (#309784, Sebastian Bacher)
687
688 2005-07-08  Tor Lillqvist  <tml@novell.com>
689
690         * gtk/gtkfilesel.c: Use g_get_host_name().
691
692 2005-07-07  Matthias Clasen  <mclasen@redhat.com>
693
694         * configure.in: Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX.  
695         (#162979, Paul Cornett)
696
697         * gtk/gtkhscale.c (gtk_hscale_new_with_range): 
698         (gtk_vscale_new_with_range): Add some additional docs on 
699         precision here too.  (#309238, Steve Chaplin)
700
701         * gdk/x11/gdkmain-x11.c (generate_grab_broken_event): Don't
702         generate events on destroyed windows.
703
704         Implement Drag-and-Drop to the file list.  (#145121, Sven Neumann)
705         
706         * gtk/gtkfilechooserdefault.c (file_list_drag_data_received_cb) 
707         (file_list_drag_drop_cb, file_list_drag_motion_cb): New functions
708         to handle drag-and-drop on the file list.
709         (create_file_list): Set up drag-and-drop handlers on the file list.
710
711 2005-07-07  Matthias Clasen  <mclasen@redhat.com>
712
713         Fix #157787, reported by Jonathan Blandford: 
714         
715         * gtk/gtkfilechooserdefault.c 
716         (gtk_file_chooser_default_set_current_folder): Don't leave a 
717         "trail" behind when set_current_folder is called explicitly.
718         (gtk_file_chooser_default_update_current_folder): New function
719         that is called to update the current folder in response to
720         user actions.
721
722         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Add a boolean
723         keep_trail argument, and don't leave a "trail" behind unless
724         it is set.
725
726 2005-07-06  Manish Singh  <yosh@gimp.org>
727
728         * demos/gtk-demo/menus.c: change_orientation() should return void,
729         remove unused variable in do_menus().
730
731 2005-07-06  Tor Lillqvist  <tml@novell.com>
732
733         * gdk/win32/gdkcursor-win32.c
734         (gdk_win32_icon_to_pixbuf_libgtk_only): Don't create the GdkPixbuf
735         until we know that we have something to put in it.
736
737 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
738
739         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range): Add some
740         additional docs on precision.  (#309238, Steve Chaplin)
741
742         * modules/input/imime.c: Fix includes.  (#309462, Kazuki IWAMOTO)
743
744 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
745
746         * doc/tools/widgets.c: Actually generate a file-button
747         image.
748
749 2005-07-06  Tor Lillqvist  <tml@novell.com>
750
751         * gdk/win32/gdkcursor-win32.c: Add comment about the current named
752         cursor implementation, and what it maybe really should do.
753         (gdk_win32_icon_to_pixbuf_libgtk_only): New function, code moved
754         here from gtk/gtkfilesystemwin32.c:extract_icon().
755         (gdk_cursor_get_image): Use
756         gdk_win32_icon_to_pixbuf_libgtk_only().
757
758         * gdk/gdk.symbols
759         * gdk/win32/gdkwin32.h: Declare gdk_win32_icon_to_pixbuf_libgtk_only().
760
761         * gtk/gtkfilesystemwin32.c (extract_icon): Use
762         gdk_win32_icon_to_pixbuf_libgtk_only().
763
764 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
765
766         * gtk/gtkmenu.c (gtk_menu_grab_notify): Take window
767         groups into account.  (#309473, Diego Gonzalez)
768
769         * gtk/gtkwindow.[hc]: Add a non-exported function to
770         get the grab widget of a window group.
771
772 2005-07-05  Kristian Rietveld  <kris@gtk.org>
773
774         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): in the
775         'main' expose loop, add back the calls to _set_cell_data
776         removed earlier. (#309221, Matthias Clasen).
777
778 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
779
780         * demos/gtk-demo/menus.c: Demonstrate vertical menubars.
781
782         * gtk/gtk.symbols:
783         * gtk/gtkaboutdialog.[hc]: Add a wrap-license property
784         with getter and setter.  (#165012, Christian Rose,
785         based on a patch by Christian Persch)
786
787 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
788
789         * gdk/Makefile.am: Distribute the keyname-table.h header 
790         and the files that are used to construct it.  (#309421,
791         J. Ali Harlow)
792
793 2005-07-04  Matthias Clasen  <mclasen@redhat.com>
794
795         * gtk/gtkmenubar.c (gtk_menu_bar_set_pack_direction) 
796         (gtk_menu_bar_set_child_pack_direction): Queue a resize
797         on the contained menuitems as well.  
798
799         * demos/gtk-demo/appwindow.c: Break some overlong lines. 
800
801 2005-07-03  Hans Breuer  <hans@breuer.org>
802
803         * **/makefile.msc[.in] : updated
804         * gtk/gtkiconcache.c : <io.h> for open()
805         * gtk/gtkstyle.c : use G_PI instead of M_PI
806
807         * gdk/win32/gdkcursor-win32.c : implement gdk_cursor_new_from_name()
808         by mapping the lower case win32 api name to the respective cursor.
809         E.g. pass "wait" to get the IDC_WAIT cursor. Also allows to load
810         cursors from named resources in the executable.
811         (gdk_cursor_get_image) : just return NULL for now.
812
813         * gdk/win32/gdkgeometry-win32.c : implement gdk_window_move_region()
814         by delegation to ScollWindowEx(), untested.
815
816         * gdk/win32/gdkwindow-win32.c : stub for gdk_window_set_urgency_hint()
817
818 2005-07-03  Matthias Clasen  <mclasen@redhat.com>
819
820         * gtk/gtkimagemenuitem.c: Hmm, when committing my vertical
821         menubar patch, I forgot the GtkImageMenuItem changes. And I
822         managed to do 2 releases without noticing that...
823
824         * gtk/gtksettings.c (gtk_settings_class_init): Correct the 
825         blurb for the icon-sizes setting. String change.  
826         (#309355, Benjamin Berg)
827
828 2005-07-01  Matthias Clasen  <mclasen@redhat.com>
829
830         * configure.in: Bump version.
831
832         * === Released 2.7.1 ===
833         
834         * NEWS: Updates
835
836 2005-07-01  Matthias Clasen  <mclasen@redhat.com>
837
838         * gtk/gtkfilesel.c (cmpl_init_state): Prevent an infinite
839         loop when G_FILENAME_ENCODING is invalid.  (#309280, Padraig Brady)
840
841 Thu Jun 30 14:17:24 2005  Manish Singh  <yosh@gimp.org>
842
843         * gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event.
844
845         * gtk/gtkbutton.c: fix signature of gtk_button_grab_broken.
846
847 2005-06-30  Matthias Clasen  <mclasen@redhat.com>
848
849         * gdk/x11/gdkvisual-x11.c (gdk_visual_decompose_mask): Avoid
850         infinite loop if a mask is zero.  (#309222, David Saxton)
851
852         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_fetch_child): 
853         Clarify the code, gcc 4 complains about predecrement in MAX().
854
855         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): Don't
856         prematurely unregister callbacks. 
857
858         * NEWS: Updates
859
860 2005-06-29  Matthias Clasen  <mclasen@redhat.com>
861
862         * gtk/gtkbutton.c (gtk_button_grab_broken): Handle broken
863         grabs.
864
865         * gtk/gtkrange.c (gtk_range_grab_broken): Handle broken 
866         grabs.
867
868         * gdk/gdkevents.h: Add a boolean to specify wether the broken
869         grab was implicit.
870
871         * gdk/x11/gdkdisplay-x11.c (gdk_display_pointer_is_grabbed): 
872         As the documentation states, don't return TRUE for
873         implicit grabs.
874
875         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add
876         a boolean field to store wether a pointer grab is implicit.
877
878         * gdk/x11/gdkmain-x11.c (_gdk_xgrab_check_button_event): 
879         Track implicit grabs.
880
881         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Call
882         _gdk_xgrab_check_button_event for button events.
883
884 2005-06-28  Matthias Clasen  <mclasen@redhat.com>
885
886         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size2): 
887         Make sure that cell boxes are always completely inside
888         the item area. 
889
890 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
891
892         * demos/gtk-demo/main.c (create_tree): Make the list of
893         demos scrollable.
894
895         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
896         Fix positioning at the end of the line for lines ending
897         in invisible characters.
898         (gtk_text_layout_get_line_display): Set display->layout 
899         to a PangoLayout, even for totally invisible lines. 
900
901         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Ignore
902         GrabBroken events which are caused by overgrabbing inside
903         the application; menus rely on these for their operation.
904         
905         * gdk/gdkevents.h (struct _GdkEventGrabBroken): Add a 
906         grab_window field.
907
908         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Set
909         grab_window to NULL when generating GrabBroken events for
910         WM_KILLFOCUS messages.
911
912         * gdk/x11/gdkmain-x11.c (_gdk_xgrab_check_unmap) 
913         (_gdk_xgrab_check_destroy): Set grab_window to NULL when
914         generating GrabBroken events when the grab window becomes
915         unviewable or is destroyed.
916
917         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab, gdk_keyboard_grab): 
918         Generate GrabBroken events when overriding a grab inside
919         the application. In this case, set grab_window to the new
920         grab_window.
921         
922 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
923
924         * gtk/gtkbutton.c (gtk_real_button_activate): Continue
925         to activate even if we can't grab the keyboard.
926         (gtk_button_finish_activate): Only ungrab when we have
927         a keyboard grab.  (#172998, William Jon McCann)
928
929 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
930
931         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): 
932         Avoid a segfault. (#309054)
933
934 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
935
936         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add
937         fields for grab timestamps.
938
939         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab, gdk_keyboard_grab): 
940         Store grab timestamps when grabbing.
941         
942         * gdk/x11/gdkdisplay-x11.c (gdk_display_keyboard_ungrab) 
943         (gdk_display_pointer_ungrab): Don't unset the grab_window
944         if the timestamps indicate that the ungrab will fails.
945
946         * gtk/gtkmenu.c (gtk_menu_grab_notify): Cancel menus when 
947         they are grab-shadowed by something thats not a 
948         submenu.  (#145416, Euan MacGregor)
949
950 2005-06-27  Owen Taylor  <otaylor@redhat.com>
951
952         * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks): 
953         Fix indentation.
954
955 2005-06-27  Kjartan Maraas  <kmaraas@gnome.org>
956
957         * gtk/gtkhruler.c: (gtk_hruler_draw_ticks): Fix leaks
958         * gtk/gtkvruler.c: (gtk_vruler_draw_ticks): Same
959         Closes bug #308953.
960
961 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
962
963         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Use
964         GMappedFile.
965
966         * configure.in: Require GLib 2.7.1
967
968 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
969
970         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): 
971         Unregister XIM callbacks here.  (#309054)
972
973         * modules/input/gtkimcontextxim.h: Small cleanup.
974
975         * gtk/gtkmenu.c (gtk_menu_paint): Pay attention to the
976         scroll offset when drawing the box.  (#308834, Tom von 
977         Schwerdtner)
978
979 2005-06-26  Tor Lillqvist  <tml@novell.com>
980
981         * gdk/Makefile.am
982         * gtk/Makefile.am: Current GNU tools do understand the PRIVATE
983         keyword, so no need to remove those entries from the import
984         library. libtool installs the .dll.a import library itself, so no
985         need to do it here. Install the .def file.
986
987 Sun Jun 26 00:04:36 2005  Manish Singh  <yosh@gimp.org>
988
989         * gdk/gdkevents.c (gdk_event_get_time, gdk_event_get_state): add
990         GDK_GRAB_BROKEN to the switch cases.
991
992         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): remove unused
993         variables.
994
995         * gtk/gtkpaned.c (gtk_paned_grab_broken): return TRUE.
996
997 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
998
999         * gtk/gtktreeview.c (gtk_tree_view_grab_broken): Stop column
1000         header drag operations if the grab is broken.
1001
1002         * gtk/gtkhsv.c (gtk_hsv_grab_broken): Stop the drag if
1003         the grab is broken.
1004
1005         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Don't do 
1006         explicitly ungrab pointer and keyboard. We're unmapping
1007         the grab window anyway. 
1008         (gtk_combo_box_popup): Handle grab failures.
1009
1010 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
1011
1012         * gdk/x11/gdkmain-x11.c (gdk_keyboard_grab, gdk_pointer_grab):
1013         Don't emit grab-broken for overgrabbing, until we figure
1014         out how to do that without breaking the menu code.
1015
1016 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
1017
1018         Add a GrabBroken event to GDK, and a grab-broken-event
1019         signal to GtkWidget.  (#107320, Simon Cooke, initial patch 
1020         by John Ehresman)
1021
1022         * gdk/gdkevents.h: Add a GDK_GRAB_BROKEN event type,
1023         define a GdkEventGrabBroken event struct.
1024
1025         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
1026         Generate GrabBroken events in response to WM_KILLFOCUS.
1027
1028         * gdk/x11/gdkmain-x11.c: Generate GrabBroken events
1029         when a grab is broken by the window becoming unviewable,
1030         or by another grab from the same client.
1031         
1032         * gtk/gtkwidget.h (GtkWidgetClass): Add grab_broken_event.
1033
1034         * gtk/gtkwidget.c (gtk_widget_event_internal): Translate
1035         GrabBroken events into grab_broken_event signals.
1036
1037         * gtk/gtkmain.c (gtk_main_do_event): Propagate GrabBroken
1038         events.
1039
1040         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Deactivate
1041         the menu when the grab is broken.
1042
1043         * gtk/gtkcolorsel.c (gtk_color_selection_grab_broken): Stop 
1044         the color picker if the grab is broken.
1045
1046         * gtk/gtkpaned.c (gtk_paned_grab_broken): Stop the drag if
1047         the grab is broken.
1048
1049 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
1050
1051         Add some new stock items.  (#166480, Kristof Vansant)
1052         
1053         * gtk/stock-icons/stock_fullscreen_16.png: 
1054         * gtk/stock-icons/stock_fullscreen_24.png: 
1055         * gtk/stock-icons/stock_leave_fullscreen_16.png: 
1056         * gtk/stock-icons/stock_leave_fullscreen_24.png: 
1057         * gtk/stock-icons/stock_info_16.png: 
1058         * gtk/stock-icons/stock_info_24.png: New icons.
1059
1060         * gtk/stock-icons/Makefile.am: Add new icons.
1061
1062         * gtk/gtkstock.h: Define names for the new icons.
1063
1064         * gtk/gtkstock.c (builtin_items): Register new stock items.
1065         
1066         * gtk/gtkiconfactory.c (get_default_icons): Register new 
1067         stock icons.
1068
1069 2005-06-24  Owen Taylor  <otaylor@redhat.com>
1070
1071         * gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
1072         conversion functions for MSB machines: convert_0888[_br]
1073         now work on bytes so are endian independent. 
1074         (Reported by David Zeuthen)
1075
1076 2005-06-24  Matthias Clasen  <mclasen@redhat.com>
1077
1078         * gtk/gtktextview.c (gtk_text_view_scroll_hpages): Don't
1079         jump to the next line if we are at the end of the line.  
1080         (gtk_text_view_move_cursor_internal): Make movement by
1081         paragraphs up/down symmetric.  (#307055, Behnam Esfahbod)
1082
1083 2005-06-23  Tor Lillqvist  <tml@novell.com>
1084
1085         Improve and simplify line segment rendering on Win32, especially
1086         the implementation of GDK_CAP_NOT_LAST, and dashed lines. Fixes
1087         bugs #306396 and #308413.
1088
1089         * gdk/win32/gdkprivate-win32.h (GdkGCWin32): Save the GdkGC's
1090         line_style, cap_style and join_style as such in the
1091         GdkGCWin32. Don't need to keep the pen_double_dash flag, we can
1092         check the line_style.
1093
1094         * gdk/win32/gdkgc-win32.c (fixup_pen): New internal function. Sets
1095         up the GDI pen type, style, end cap and join attributes to use
1096         based on the pen width, GDK line style, end cap style, and join
1097         style.
1098
1099         For a narrow (zero-width) GDK pen with the GDK_CAP_NOT_LAST end
1100         cap style, which typically are used for XOR drawing where it is
1101         essential that the last pixel is not drawn, use a GDI cosmetic
1102         pen. Only for a cosmetic pen does GDI not draw the last pixel. I
1103         deduced this by experimetation, the documentation is rather vague.
1104
1105         For other GDK pens use a geometric GDI pen. If the width is 0 or 1
1106         and the GDK end cap style is GDK_CAP_BUTT, and the line style is
1107         GDK_LINE_SOLID, use PS_ENDCAP_ROUND. This ensures that also
1108         single-pixel length lines are drawn. (For sngle-pixel width lines
1109         roundness as such is of course irrelevant.) For dashed lines, use
1110         PS_ENDCAP_FLAT.
1111
1112         For wide lines use PS_ENDCAP_FLAT, _ROUND or _SQUARE,
1113         respectively, for GDK_CAP_BUTT, GDK_CAP_ROUND and GDK_CAP_PROJECTING.
1114
1115         For one pixel on-off dashed lines, use PS_ALTERNATE, it seems to
1116         work better than PS_USERSTYLE. For other dashed lines, use
1117         PS_USERSTYLE and the dashes as set by the user (or the default
1118         four-pixel on-off style).
1119
1120         (gdk_win32_gc_values_to_win32values, gdk_win32_gc_set_dashes):
1121         Call fixup_pen() to do the pen settings after modifying some of
1122         the GDK GC attributes that affect pens.
1123
1124         * gdk/win32/gdkdrawable-win32.c (render_line_horizontal,
1125         render_line_vertical, draw_segments): Check GdkGCWin32::line_style
1126         instead of the the removed pen_double_dash member. Don't use
1127         PATCOPY unconditionally in the PatBlt() call, use a raster op
1128         code that depends on the GC function in use.
1129
1130         (draw_rectangle, draw_segments, draw_lines): Be more careful in
1131         deciding when to do the manual dash rendering.
1132
1133         (draw_segments): Don't do any manual "last point" drawing at
1134         all. The above changes takes care of narrow line segments being
1135         drawn correctly in most cases, at least on NT-based Windows.
1136
1137 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
1138
1139         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): 
1140         Fix an error in the cache timeout logic.  (#166601, Morten
1141         Welinder)
1142
1143         * gtk/gtktreeview.c (gtk_tree_view_key_press): Change the
1144         keynav for header reordering and resizing to Alt-arrows and
1145         Shift-Alt-arrows, following a proposal by the keynav 
1146         authority. (#308666, Calum Benson)
1147
1148         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Remove
1149         a leftover debugging envvar.  
1150
1151 2005-06-23  Owen Taylor  <otaylor@redhat.com>
1152
1153         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
1154         big endian case for 3-channel source. (Reported by
1155         David Zeuthen)
1156
1157 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
1158
1159         * gtk/gtkbutton.c (gtk_button_construct_child): Don't
1160         trigger warnings if there are extra references to the
1161         hbox.  (#308677, Dan Winship)
1162
1163         * gtk/gtkfilesystemunix.c (bookmark_list_write): Use
1164         g_file_set_contents().  (#308722, Morten Welinder)
1165
1166 2005-06-22  Matthias Clasen  <mclasen@redhat.com>
1167
1168         * gdk/x11/gdkdnd-x11.c (xdnd_finished_filter): Set the
1169         time field in the event.  (#308573, Morten Welinder)
1170
1171         * gtk/gtkfilesystemunix.c: Remove gratitious differences
1172         between the stable branch and HEAD, which sneaked in with
1173         the bookmark renaming.  
1174
1175 2005-06-22  Kjartan Maraas  <kmaraas@gnome.org>
1176
1177         * gtk/gtkhsv.c: (gtk_hsv_expose): Don't leak the cairo context
1178         Closes bug #308581.
1179
1180 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
1181
1182         * gtk/gtkarrow.c:
1183         * gtk/gtkimage.c:
1184         * gtk/gtklabel.c:
1185         * gtk/gtkpixmap.c: Modify all of the GtkMisc widgets to round down
1186         on centering calculations to match the behaviour of other parts
1187         of GTK+. (#307419, Ryan Lortie)
1188
1189 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
1190
1191         * gtk/gtkdnd.c (gtk_drag_source_set): Connect to 
1192         button-release-event as well, to handle touchscreen 
1193         scenarios better.  (#171490, Markku Vire)
1194
1195         * gtk/*.h: Trivial cleanups. (#169647, #303455, 
1196         Fabricio Barros Cabral, Benoit Carpentier)
1197
1198         * gdk/gdk.symbols: 
1199         * gdk/gdkwindow.h: 
1200         * gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
1201         function which can be used to implement scrolling in 
1202         non-window widgets.  (#135165, Søren Sandmann)
1203
1204 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
1205
1206         * gtk/gtkiconcache.c: Handle MAP_FAILED.  (#308449, Georg
1207         Schwarz)
1208
1209 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
1210
1211         * configure.in: Bump version number.
1212
1213         * === Released 2.7.0 ===
1214
1215 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
1216
1217         * gtk/gtk.symbols:
1218         * gtk/gtkwindow.h:
1219         * gtk/gtkwindow.c (gtk_window_present_with_time): Variant of
1220         gtk_window_present which takes a timestamp.  (#166379, Elijah Newren)
1221
1222 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
1223         
1224         * gtk/gtk.symbols: Add a forgotten symbol
1225
1226         * NEWS: Updates
1227
1228 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1229
1230         * gtk/gtktreeview.c (gtk_tree_view_clamp_node_visible): added a
1231         check which avoids processing updates on bin_window and scrolling
1232         if the node is already visible. (#170600, Billy Biggs).
1233
1234 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1235
1236         * gtk/gtktreeview.c (validate_visible_area): only keep the
1237         row at the same position if the full row is visible. (#304623,
1238         Jorn Baayen).
1239
1240 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1241
1242         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set dy to zero
1243         if treeview's height is smaller than the current page_size (just
1244         like we do elsewhere).
1245
1246 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1247
1248         Make mousewheel scrolling possible in typeahead mode, suggestion
1249         from Reinout van Schouwen (#307898).
1250
1251         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
1252         connect treeview search window to scroll_event signal,
1253         (gtk_tree_view_search_scroll_event): implement.
1254
1255 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1256
1257         * gtk/gtktreeview.c (gtk_tree_view_search_button_press_event): pass
1258         the event on to treeview, so it has a change of selecting a row, etc.
1259         (#169677, Kirk Bridger).
1260
1261 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1262
1263         This commit includes a fix for #169463, Stefan Kost.
1264
1265         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_get_size):
1266         when cell_area is set, return cell_area width/height as width/height,
1267         so the focus rectangle will be drawn correctly.
1268
1269         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): drop unneeded get
1270         of focus-line-width property,
1271         (validate_row): take focus_line_width into account.
1272
1273         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
1274         also take focus_line_width into account when calculating the cell_area
1275         y and height (before, we only took it into account when calculating
1276         x and width).
1277
1278 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
1279
1280         * gtk/gtk.symbols:
1281         * gtk/gtksizegroup.[hc]: Add an ignore-hidden property
1282         with getter and setter.  (#171612, Christian Neumair)
1283
1284 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
1285
1286         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Make this 
1287         work for inserting before/after an existing menuitem or
1288         toolitem.  (#155946, Christian Persch)
1289
1290         * tests/testmerge.c (delayed_toggle_dynamic): Test the 
1291         "insert after" functionality of gtk_ui_manager_add_ui.
1292
1293         * gtk/gtkuimanager.c: Allow to construct menu tool buttons.
1294         (#300678, Sven Neumann)
1295         
1296         * demos/gtk-demo/appwindow.c: Demonstrate menu tool buttons
1297         constructed with GtkUIManager.
1298
1299         * gtk/gtk.symbols: 
1300         * gtk/gtkimage.h: 
1301         * gtk/gtkimage.c (gtk_image_clear): Make this function
1302         public.  (#64792, Havoc Pennington)
1303
1304 2005-06-18  Kristian Rietveld  <kris@gtk.org>
1305
1306         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): undo merging
1307         of the separate loop setting cell data with cell drawing loop
1308         (introduced in revision 1.280), since this breaks focus handling
1309         wrt special cells.
1310
1311 Sat Jun 18 04:22:51 2005  Manish Singh  <yosh@gimp.org>
1312
1313         * gdk/gdkcursor.h: remove GDK_CURSOR and GDK_IS_CURSOR, instance
1314         checks don't work on boxed types.
1315
1316         * gdk/x11/gdkcursor-x11.c: 
1317         * gdk/gdkcursor.c: make return_if_fail checks != NULL instead of
1318         GDK_IS_CURSOR.
1319         
1320 Sat Jun 18 04:21:58 2005  Manish Singh  <yosh@gimp.org>
1321
1322         * gtk/gtktreeview.c (do_presize_handler): remove unused variable
1323         height_old.
1324
1325 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
1326
1327         * gtk/gtkcellrenderertoggle.c:
1328         * gtk/gtktextview.c:
1329         * gtk/gtktreeview.c: Typo fixes in comments.
1330
1331         * gtk/gtkpaned.c (gtk_paned_add): Barf if more than
1332         2 children are added.  (#308111, Morten Welinder)
1333
1334         * gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
1335         1-based.  (#163842, Pierre Ossman)
1336
1337 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1338
1339         Fix #160281, testcase from Peter Bloomfield.
1340
1341         * gtk/gtktreeview.c (do_presize_handler): always size request
1342         and update adjustments in fixed height mode,
1343         (gtk_tree_view_build_tree): if a fixed height is set, set this
1344         height on newly added nodes.
1345
1346 2005-06-17  Tor Lillqvist  <tml@novell.com>
1347
1348         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Set the actions
1349         and suggested_action fields in the GdkDragContext to
1350         GDK_ACTION_COPY. Otherwise apps that check the suggested_action
1351         field, like eog, won't accept dropped files.
1352
1353 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
1354
1355         Support the ICCCM urgency hint.  (#61858, Havoc Pennington)
1356         
1357         * gtk/gtk.symbols: 
1358         * gtk/gtkwindow.[hc]: Add a GtkWindow::urgency-hint property
1359         with getter and setter.
1360
1361         * gdk/gdk.symbols: 
1362         * gdk/gdkwindow.h: 
1363         * gdk/x11/gdkwindow-x11.c (gdk_window_set_urgency_hint): 
1364         Add a setter for the urgency hint.
1365
1366         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store
1367         urgency hint here.
1368
1369         * gdk/x11/gdkwindow-x11.c (update_wm_hints): Set the urgency
1370         hint in the WM_HINTS property when appropriate.
1371
1372 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
1373
1374         * gdk/gdkcursor.h: Define GDK_IS_CURSOR() and GDK_CURSOR().
1375
1376         * gdk/x11/gdkcursor-x11.c: 
1377         * gdk/gdkcursor.c: Improve some return_if_fail checks,
1378         and add the missing non-Xcursor fallback for 
1379         _gdk_x11_cursor_update_theme(), noticed by Jeroen 
1380         Zwartepoorte.
1381
1382         * gtk/gtkbutton.c (gtk_button_class_init): Document
1383         several button signals as not useful.
1384
1385         * gtk/gtkentrycompletion.c (gtk_entry_completion_complete): 
1386         Resize the popup if necessary.  (#308076, Vincent Noel)
1387
1388         * gtk/gtkwindow.c (gtk_window_real_set_focus): Queue a
1389         draw on the old and new focus widgets, if their defaultness
1390         changes.  (#305607, Billy Biggs)
1391
1392 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1393
1394         * gtk/gtktreeview.c (validate_visible_area): make sure the row
1395         above 'above_path' is always in a validated state, so it does
1396         not mess up scrolling. (#303319, testcase from Billy Biggs).
1397
1398 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
1399
1400         * gdk/x11/gdkprivate-x11.h: 
1401         * gdk/x11/gdkcursor-x11.c: Handle cursor theme changes
1402         for cached cursors which are not associated with a window
1403         at the time of the theme change, by storing a serial
1404         number in each cursor, and updating the theme_serial 
1405         counter whenever the cursor theme changes.
1406         
1407         * gdk/x11/gdkcursor-x11.c (_gdk_x11_cursor_update_theme): 
1408         Private function to update a cursor to the current
1409         cursor theme if necessary.
1410
1411         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
1412         * gdk/x11/gdkwindow-x11.c (gdk_window_set_cursor): Call
1413         _gdk_x11_cursor_update_theme() here.
1414
1415 2005-06-17  Owen Taylor  <otaylor@redhat.com>
1416
1417         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix
1418         #if G_BYTE_ORDER == GDK_LSB_FIRST.
1419
1420 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1421
1422         * gtk/gtktreeview.c (validate_visible_area): don't try to update
1423         the top_row rowref ourselves here, but just have _dy_to_top_row()
1424         do it,
1425         (gtk_tree_view_scroll_to_cell): handle scrolling via
1426         validate_visible_area() if the treeview is not visible or needs
1427         reallocation. (#165246, Nickolay V. Shmyrev).
1428
1429 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1430
1431         Fixes #307914 (Alexander Larsson), fixing some breakage caused
1432         by my previous commit.
1433
1434         * gtk/gtktreeview.c (validate_visible_area): force dy to be zero
1435         when it fits on a single page,
1436         (scroll_sync_handler): same here.
1437
1438 Thu Jun 16 15:33:42 2005  Manish Singh  <yosh@gimp.org>
1439
1440         * gdk/x11/gdkcursor-x11.c (update_cursor): remove unused variable.
1441
1442         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_get_cursor): use
1443         g_return_val_if_fail.
1444
1445         * gtk/gtkdnd.c (gtk_drag_get_cursor): initialize hot_x and hot_y
1446         for all cases.
1447
1448         * gtk/gtkfilechooserdefault.c (button_new): gtk_button_set_image
1449         takes a GtkWidget, not a GtkImage.
1450
1451 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
1452
1453         * gtk/gtkfilechooserdefault.c (button_new): Simplify
1454         the code and respect the show-button-images setting.
1455         (#307941, Vincent Noel)
1456
1457         * gtk/gtkdnd.c: Update the RGBA cursor if an
1458         icon is set after the cursor has been constructed.
1459         Also handle repeated setting of icons correctly.
1460
1461 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
1462
1463         * gtk/gtkbutton.c (gtk_button_set_image): Add some more
1464         docs.  (#307818, Christian Persch)
1465
1466 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
1467
1468         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
1469         Initialize all fields of the expose event.  (#151693,
1470         Jim Evins)
1471
1472 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
1473
1474         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image): Get
1475         red and blue in place.
1476
1477         * gtk/gtkwindow.c (gtk_window_parse_geometry): Fox doc
1478         formatting, pointed out by Kjartan Maraas.
1479
1480         * gtk/gtksettings.c: Add two new settings, 
1481         gtk-cursor-theme-name and gtk-cursor-theme-size to
1482         control the cursor theme.
1483
1484         * gdk/x11/gdkevents-x11.c: Add two new X settings,
1485         Gtk/CursorThemeName and Gtk/CursorThemeSize, and map
1486         these to the gtk settings.
1487
1488         * tests/testgtk.c (create_cursors): Add a cursor theme
1489         testcase.
1490
1491         * gdk/x11/gdkwindow-x11.[hc]: Keep a reference to the 
1492         GdkCursor and add a private getter for it, so that we can 
1493         update the cursor when the cursor theme changes.
1494         
1495         * gdk/gdk.symbols: 
1496         * gdk/x11/gdkx.h: 
1497         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
1498         New function to change the cursor theme.
1499
1500         * gdk/x11/gdkwindow-x11.c: Remove a lot of pointless
1501         g_return_if_fail() non-NULL checks.
1502
1503 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
1504
1505         * gdk/abicheck.sh: Use uniq to filter out duplicates.
1506         * gdk/gdk.symbols: Fix a define.
1507
1508 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1509
1510         * gtk/gtkwindow.c (gtk_window_parse_geometry):
1511         Fix up the example.  (#307699, Michal Suchanek)
1512
1513 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1514
1515         * gtk/gtkcalendar.c: Update num_marked_dates as we
1516         used to do.  (#307689, Thorsten Schoenfeld)
1517  
1518 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
1519
1520         Merged from gtk-2-6:
1521
1522         Fix #302087:
1523
1524         * gtk/gtkfilechooserdefault.c (list_selection_changed): Emit
1525         "selection-changed" and do the normal housekeeping even if we are
1526         in SAVE mode and there is nothing selected.  We didn't emit that
1527         signal if we were in SAVE mode and unselect_all() got called.
1528         (gtk_file_chooser_default_unselect_all): Call
1529         pending_select_paths_free() so that we cancel any asynchronous
1530         selections.
1531         (gtk_file_chooser_default_set_current_name): Likewise.
1532
1533 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
1534
1535         Merged from gtk-2-6:
1536
1537         Fixes #307640:
1538
1539         * gtk/gtkfilechooserdefault.c
1540         (gtk_file_chooser_default_should_respond): Oops, I broke SAVE
1541         mode.  If the parent path is a folder, only create a subfolder if
1542         we are in CREATE_FOLDER mode; if we are in SAVE mode, just return
1543         and respond.  Also, pick up the case where the user types
1544         "dirname/" instead of "dirname".
1545         (check_save_entry): Make the return type void.  Add some return
1546         parameters so that we can do more thorough checking.
1547         (gtk_file_chooser_default_get_paths): If the file part is empty
1548         and we are in SAVE mode, return an empty selection.
1549
1550 2005-06-15  Kristian Rietveld  <kris@gtk.org>
1551
1552         Patch for #163214 (reported by Tommi Komulainen) and fixes some
1553         other scrolling/validation related bugs along the why.
1554
1555         * gtk/gtktreeview.c (gtk_tree_view_size_request): run
1556         do_validate_rows once and don't queue a size request there,
1557         (gtk_tree_view_size_allocate): don't update vadj value without
1558         reason, sync top_row/dy after the window sizes and adjustments
1559         are in sync again,
1560         (validate_visible_area): always update dy when scrolling,
1561         manually set top_row here after changing the vadj (don't depend
1562         on _adjustment_changed and top_row/dy sync to do this), since we
1563         now always set top_row here correctly, we can always free
1564         scroll_to_path at the end which avoids infinite expose loops,
1565         (do_validate_rows): add queue_resize boolean, remove top_row/dy
1566         sync here, we cannot do it safely at this place since the
1567         window sizes and adjustments are out of sync,
1568         (validate_rows), (validate_rows_handler): update call to
1569         do_validate_rows().
1570
1571 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1572
1573         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_name): Add a 
1574         stub for the no-Xcursor case. (noticed by Luis Villa)
1575
1576         Use named cursors for the DND cursors, the names are "dnd-none",
1577         "dnd-copy", "dnd-link", "dnd-move" and "dnd-ask". Also use an RGBA 
1578         cursor instead of cursor+window when possible. This saves 
1579         roundtrips during the drag operation, and makes translucent icons 
1580         possible.
1581         
1582         * gtk/gtkdndcursors.h: New file, containing inlined pixbufs
1583         for the default dnd cursors.
1584
1585         * gtk/gtkdnd.c (struct _GtkDragSourceInfo): Store the cursors
1586         used during the drag here, also store the icon pixbuf here. 
1587
1588         * gtk/gtkdnd.c (drag_cursors): Store the cursor names here. Also
1589         switch the default cursors from xbm to inlined pixbufs. 
1590
1591         * gtk/gtkdnd.c (gtk_drag_get_cursor): This function now takes the
1592         GtkDragSourceInfo as well, since it has to composite the 
1593         drag-specific cursors. The cursors combined from the image of
1594         the themed cursor and the icon_pixbuf stored in the info.
1595
1596         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't set the default
1597         icon if there is an icon_pixbuf, which will be composited into
1598         the cursor later.
1599
1600         * gtk/gtkdnd.c (set_icon_stock_pixbuf): If appropriate, store
1601         the pixbuf in the info struct for later compositing into the
1602         cursor instead of creating an icon window.
1603         
1604         * gtk/gtkdnd.c (gtk_drag_drop_finished): If we used an
1605         RGBA cursor for the drag, and need to display the cancel
1606         animation, construct the icon window here.
1607
1608         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Unref the 
1609         drag-specific cursors and the icon_pixbuf when done with
1610         the drag.
1611
1612 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1613
1614         * gtk/gtkcolorsel.c (make_picker_cursor): Use a named cursor
1615         with the name "color-picker", when available.
1616
1617         * gdk/gdk.symbols: 
1618         * gdk/gdkcursor.h: 
1619         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image) 
1620         (gdk_cursor_new_from_name): New functions to construct named
1621         cursors and to get the image used for a cursor.  
1622
1623 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
1624
1625         * gtk/gtkpathbar.[hc]: Rework the way in which rerooting of the
1626         path bar is done, implementing the following principles:
1627         (#137289, patch by Benjamin Otte)
1628         
1629         1. Re-root only if $HOME is an ancestor of the current path.
1630
1631         2. When re-rooting, make sure the Left arrow appears in the path 
1632         bar, so that you can navigate up from $HOME to /.  In that case, 
1633         make sure the Right arrow doesn't appear if the sub-hierarchy from 
1634         $HOME to the cwd fits in the window.
1635
1636         3. Make sure that hitting Alt-Up takes you always one folder up, 
1637         even when the path bar is re-rooted.
1638
1639         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
1640         Try harder not to modify readonly strings. (#307541, Torsten Schoenfeld)
1641
1642         * gtk/gtkfilechooserbutton.c (model_update_current_folder): 
1643         Free the data of the row before overwriting it.  (#307490,
1644         Kjartan Maraas)
1645
1646 2005-06-13  Kjartan Maraas  <kmaraas@gnome.org>
1647
1648         * gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
1649         leak the cairo context. Closes bug #307426.
1650
1651 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
1652
1653         Make invisible text work a bit better (#66194, patch by
1654         Jeroen Zwartepoorte)
1655         
1656         * gtk/gtk.symbols:
1657         * gtk/gtktextiter.[hc]: Add function to move by
1658         visible lines.
1659
1660         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): 
1661         Skip invisible text when moving by paragraphs.
1662
1663         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually): 
1664         Skip invisible lines here too.
1665
1666 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
1667
1668         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
1669         Don't leak the format names.  (#307190, Morten Welinder)
1670
1671 2005-06-12  Kjartan Maraas  <kmaraas@gnome.org>
1672
1673         * gdk/x11/gdkasync.c: (send_event_handler): Plug
1674         a leak. Closes bug #307281.
1675
1676 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
1677
1678         * gtk/gtkcalendar.c (calendar_paint_header): 
1679         (gtk_calendar_size_request): Allow localization of the
1680         format in which the year is displayed.  (#135451, Paisa 
1681         Seeluangsawat)
1682
1683         * gdk/*.h: Cleanup.  (#169648, Fabricio Barros Cabral)
1684
1685         * gdk/gdkcairo.c: Small doc additions.
1686
1687         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
1688         Check start_button_mask before starting a drag.  (#149058, 
1689         Andreas Volz)
1690
1691         * gtk/gtkfilesystemunix.c: Support .hidden files.  (#129170,
1692         Sayamindu Dasgupta, patch by Jan Arne Petersen)
1693
1694 2005-06-11  Matthias Clasen  <mclasen@redhat.com>
1695
1696         * NEWS: Updates.
1697
1698         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
1699         provided by Owen Taylor.
1700
1701         * gtk/gtk.symbols: 
1702         * gtk/gtkiconview.h: 
1703         * gtk/gtkiconview.c (gtk_icon_view_get_visible_range): 
1704         Add a function to determine what parts of the model are
1705         visible.  (#306726, Jonathan Blandford)
1706
1707         * gtk/gtkfilesystemunix.c (create_file_info): Treat backup
1708         files the same way as hidden files, to be closer to what
1709         Nautilus does.  (#136196, Sean Middleditch)
1710
1711 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1712
1713         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
1714         Don't modify strings returned from gettext().
1715
1716 Fri Jun 10 19:06:03 2005  Manish Singh  <yosh@gimp.org>
1717
1718         * gtk/gtktextdisplay.c (render_para): don't use deprecated
1719         gdk_gc_unref function.
1720
1721 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1722
1723         Allow setting paragraph background.  (#81045, Gustavo
1724         Carneiro, patch by Jeroen Zwartepoorte)
1725         
1726         * gtk/gtktextlayout.c (set_para_values): Propagate 
1727         pg_bg_color to the display struct.
1728         (gtk_text_layout_free_line_display): Free it here.
1729
1730         * gtk/gtktextdisplay.c (render_para): If pg_bg_color
1731         is set, draw a rectangle in that color behind
1732         the paragraph.
1733
1734         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add 
1735         paragraph-background, paragraph-background-gdk and
1736         paragraph-background-set properties.
1737         (set_pg_bg_color): A setter for paragraph-background.
1738
1739         * gtk/gtktextlayout.h (struct _GtkTextLineDisplay): Add
1740         pg_bg_color.
1741
1742         * gtk/gtktexttag.h (struct _GtkTextAttributes): Add
1743         pg_bg_color.
1744         (struct _GtkTextTag): Add pg_bg_color_set.
1745
1746 2005-06-10  Kjartan Maraas  <kmaraas@gnome.org>
1747
1748         * gdk/gdkcairo.c: (gdk_cairo_set_source_pixbuf): Destroy the
1749         cairo surface when done with it. Plugs a fairly large leak in
1750         some cases.
1751         ==6014== 1999824 (115640 direct, 1884184 indirect) bytes in
1752         826 blocks are definitely lost in loss record 25239 of 25250
1753         Like this from nautilus.
1754
1755 2005-06-10  Michael Natterer  <mitch@imendio.com>
1756
1757         * gtk/gtk.symbols
1758         * gtk/gtkaction.[ch] (gtk_action_get_accel_closure): new function
1759         to get an action's accel_closure (Fixes #141750 and #148106).
1760
1761 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1762
1763         * gdk/gen-keyname-table.pl: Generate N_() calls for
1764         translatable key names.
1765
1766         * gdk/keynames.txt: Mark some key names as translatable.
1767         
1768         * gdk/keyname-table.h: Regenerated.
1769
1770         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): Add
1771         some context to the msg ids for keyboard modifiers and
1772         key names.
1773         (_gtk_accel_label_class_get_accelerator_label): Try to
1774         translate key names.  (#300224, Christian Rose)
1775
1776 2005-06-10  Federico Mena Quintero  <federico@ximian.com>
1777
1778         Merged from gtk-2-6:
1779
1780         Fixes #162358:
1781
1782         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't return
1783         immediately if we are in CREATE_FOLDER mode, so that we can fill
1784         the entry with the newly-selected folder.
1785         (gtk_file_chooser_default_set_property): Warn against turning on
1786         multiple selection for CREATE_FOLDER mode, or about setting that
1787         action while multiple selection is on.
1788         (update_chooser_entry): Change the entry's contents as well if we
1789         are in CREATE_FOLDER mode.  If nothing is selected, clear the
1790         chooser entry.
1791         (trap_activate_cb): Don't trap enter/space if modifiers are
1792         pressed.  This lets one use Ctrl-space to toggle rows in multiple
1793         selection mode.
1794         (gtk_file_chooser_default_should_respond): Clean up the if-chain
1795         mess of special cases by using an array to determine what to do.
1796         Also, for the save-entry case in CREATE_FOLDER mode, actually fix
1797         the bug where the file chooser would switch to an existing folder
1798         rather than confirming with it, and create the folder ourselves.
1799         (error_creating_folder_over_existing_file_dialog): New function.
1800
1801         * gtk/gtkfilechooserentry.c (check_completion_callback): Only
1802         insert the common prefix if we are in an "open" mode.  Use a
1803         helper function.
1804         (append_common_prefix): New helper function; code moved over from
1805         check_completion_callback().
1806         (find_common_prefix): New helper function.
1807         (gtk_file_chooser_entry_focus): Append the common prefix if the
1808         user requests it explicitly.
1809
1810 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1811
1812         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_expand): 
1813         * gtk/gtktoolbar.c (gtk_toolbar_get_show_arrow): 
1814         * gtk/gtktextview.c (gtk_text_view_get_iter_at_position): 
1815         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
1816         * gtk/gtkspinbutton.c (gtk_spin_button_get_adjustment): 
1817         * gtk/gtkscrolledwindow.h: 
1818         * gtk/gtkmenushell.c (gtk_menu_shell_get_take_focus): 
1819
1820         * gtk/gtkiconview.c (gtk_icon_view_set_margin): 
1821         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): 
1822         * gtk/gtkcalendar.c (gtk_calendar_thaw): Doc fixes.
1823
1824 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
1825
1826         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
1827
1828         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add docs.
1829         (#306212, Steve Chaplin, docs provided by Billy Biggs)
1830
1831         * gtk/gtktextbtree.c (_gtk_text_btree_char_is_invisible): Small 
1832         cleanup.  (#305539, Paolo Borelli)
1833
1834 2005-06-09  Rodrigo Moya <rodrigo@novell.com>
1835
1836         * configure.in: added cairo to list of $GTK_PACKAGES.
1837
1838 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
1839
1840         * gdk/x11/gdkdnd-x11.c (motif_drop_start, xdnd_drop_filter): Update
1841         the user time on the window when a drop happens.  (#169364, Alexander
1842         Hunziker, patch by Elijah Newren)
1843
1844         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
1845
1846         * gtk/gtk.symbols: 
1847         * gtk/gtkiconview.h: 
1848         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_path): New function
1849         to scroll to a path.  (#306838, Jonathan Blandford)
1850
1851 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
1852
1853         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Scroll to the
1854         item.  (#306839, Jonathan Blandford)
1855
1856         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): Check for
1857         negative before appending the index, to avoid double error
1858         message.  (#306393, Morten Welinder)
1859
1860         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
1861         Don't crash if search_window is NULL.  (#304914, Victor Osadci,
1862         testcase by Olaf Vitters)
1863
1864         * gtk/gtkimage.c: Make the file property readable.  
1865         (#170674, Lorenzo Gil Sanchez)
1866
1867         
1868 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
1869
1870         * gtk/gtkfilesystem.c (gtk_file_info_get_display_key): Use
1871         g_utf8_collate_key_for_filename().
1872
1873 2005-06-07  Kjartan Maraas  <kmaraas@gnome.org>
1874
1875         * gtk/gtkfilechooserbutton.c: (update_label_and_image):
1876         Merge leak fix from stable. Bug 306754.
1877
1878 2005-06-05  Tor Lillqvist  <tml@novell.com>
1879
1880         * gdk/win32/gdkscreen-win32.c
1881         (_gdk_windowing_substitute_screen_number): Return NULL unless
1882         screen number is zero. We have only one screen on Win32.
1883         (gdk_screen_make_display_name): Call gdk_display_get_name() and
1884         return that.
1885         
1886         * modules/engines/Makefile.am
1887         * modules/input/Makefile.am: Decide whether to build the
1888         ms-windows theme engine based on the GDK backend, not based on
1889         platform. (I.e., if building for Cygwin with the X11 backend, we
1890         shouldn't build the ms-windows engine, but if building for Cygwin
1891         but with the Win32 backend, we should.) Ditto for the IME
1892         (Windows) input module. (#305832)
1893
1894 2005-06-04  Tor Lillqvist  <tml@novell.com>
1895
1896         * gdk/win32/gdkcursor-win32.c
1897         * gdk/win32/gdkwindow-win32.c
1898         * gdk/win32/gdkprivate-win32.h: Support full-colour cursors.
1899         Support cursors with alpha on XP. Use code in common with the
1900         support for alpha icons that already was present. (#306101, Tim
1901         Evans)
1902
1903         * modules/engines/ms-windows/msw_style.c: Render insensitive icons
1904         in a way that more closely matches Windows. (#305986, Tim Evans).
1905
1906         * modules/engines/ms-windows/Makefile.am (LDADDS): Link with
1907         gdk-pixbuf.
1908
1909 2005-06-03  Dom Lachowicz <cinamod@hotmail.com>
1910
1911         * modules/engines/ms-windows/msw_style.c: Re-sync with gtk-wimp
1912         * modules/engines/ms-windows/xp_theme.c: Ditto
1913         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
1914
1915 Thu May 26 16:43:27 2005 Manish Singh  <yosh@gimp.org>
1916
1917         * gtk/gtkentrycompletion.h: Add declarations for
1918         gtk_entry_completion_{get,set}_popup_single_match.
1919
1920 2005-05-26  Matthias Clasen  <mclasen@redhat.com>
1921
1922         * gtk/gtk.symbols: 
1923         * gtk/gtkentrycompletion.c: Add a property to suppress the
1924         popup for single matches.  (#154711)
1925
1926         * gtk/gtkentry.c (gtk_entry_completion_timeout): Respect it here.
1927
1928         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_set_action): 
1929         Use it here.
1930
1931         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Queue the 
1932         redisplay after modifying the tag in the btree, otherwise 
1933         we end up showing the old tags until the next redraw comes 
1934         around.   (#143537, Gary Kramlich, Peter Wainwright)
1935
1936         * gtk/gtkcombobox.c (gtk_combo_box_list_auto_scroll): Make 
1937         autoscrolling work at the bottom of the screen.
1938
1939 2005-05-26  Maciej Katafiasz  <email@mathrick.org>
1940
1941         * docs/reference/gtk/tmpl/gtkentry.sgml:
1942         Point to GtkTextView instead of GtkText. Fixes bug #305535
1943
1944 2005-05-26  Sven Neumann  <sven@gimp.org>
1945
1946         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): use a less
1947         aggressive PNG compression level (bug #305340).
1948
1949 2005-05-26  Tor Lillqvist  <tml@novell.com>
1950
1951         * gdk/win32/gdkdrawable-win32.c (_gdk_win32_blit): If blitting
1952         from the root window, take the multi-monitor offset into
1953         account. (#305511)
1954
1955 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
1956
1957         * demos/gtk-demo/appwindow.c (do_appwindow): Set the window
1958         icon by name.
1959
1960         * gtk/gtkfilesystem.c (gtk_file_folder_is_finished_loading): 
1961         Remove another C99ism.
1962
1963         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the 
1964         background of rows insensitive when the treeview is insensitive.
1965         (pointed out by Billy Biggs)
1966
1967         * demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
1968         and DND, and clipboard persistency.
1969
1970         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
1971         Make sure png comes first, otherwise dnd may use bmp by
1972         default, loosing transparency.
1973
1974 2005-05-25  Michael Natterer  <mitch@imendio.com>
1975
1976         * gtk/gtktextview.c (blink_cb): block the text_layout's "changed"
1977         handler when changing cursor visibility because it would expose
1978         the whole paragraph where the cursor is. Instead, expose the
1979         cursors' areas manually. (#173047).
1980
1981         (text_window_invalidate_cursors): new function which exposes the
1982         cursors.
1983
1984         * gtk/gtkstyle.c (draw_insertion_cursor): added comment that the
1985         same cursor size calculation is in text_window_invalidate_cursors().
1986
1987 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
1988
1989         * demos/gtk-demo/editable_cells.c (create_items_model): Also
1990         demonstrate GtkCellRendererProgress.
1991
1992         * demos/gtk-demo/Makefile.am (demos): 
1993         * demos/gtk-demo/combobox.c: Add a demo showing combo box 
1994         variations.
1995
1996         * demos/gtk-demo/Makefile.am (demos): 
1997         * demos/gtk-demo/pickers.c: Add a demo showing all picker widgets.
1998
1999 2005-05-24  Matthias Clasen  <mclasen@redhat.com>
2000
2001         * demos/gtk-demo/iconview.c (do_iconview): Fix a typo.
2002
2003 2005-05-24  Tor Lillqvist  <tml@novell.com>
2004
2005         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Handle
2006         gtk-alternative-button-order (setting it to TRUE).
2007
2008 2005-05-23  Matthias Clasen  <mclasen@redhat.com>
2009
2010         * gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
2011         an unused variable.  (#305130, Jaap A. Haitsma)
2012
2013         * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
2014         the focus away from the file list when operating the filter
2015         combo with the pointer.  (#304844, Sven Neumann)
2016
2017 2005-05-23  Tor Lillqvist  <tml@novell.com>
2018
2019         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
2020         GDK_Menu. (#172383, Ivan Wong)
2021
2022         * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
2023         of the special cases this function takes care of, use it as
2024         such. This takes care of for instance the Bengali Virama, see bug
2025         #165723.
2026
2027 2005-05-20  Matthias Clasen  <mclasen@redhat.com>
2028
2029         * gtk/gtkimcontextsimple.c (check_table): Avoid a possible
2030         buffer overrun.  (#142444, Leonard Michlmayr)
2031
2032         * gtk/gtkfilesystem.c: Remove C99-isms (#304879, 
2033         Kazuki IWAMOTO)
2034
2035 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
2036
2037         * gtk/gtkfilechooser.c (gtk_file_chooser_remove_shortcut_folder_uri): 
2038         Use the correct function to conver the uri to a path.  (#304565,
2039         Ismael Juma)
2040
2041         * gtk/gtkfilechooserbutton.c (dialog_response_cb): Handle the
2042         Cancel button properly.  (#304234, Sven Neumann)
2043
2044 2005-05-18  Anders Carlsson  <andersca@imendio.com>
2045
2046         * gtk/gtktextview.c: (gtk_text_view_flush_scroll),
2047         (gtk_text_view_update_adjustments), (gtk_text_view_value_changed):
2048         * gtk/gtktextview.h:
2049         If the horizontal adjustment changes because of a change in the
2050         layout width, then do a complete redraw. This is because there
2051         might be right-aligned or centered text that needs to be redrawn.
2052
2053 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
2054         
2055         * gtk/gtkwidget.c (gtk_widget_add_events): Try harder to set
2056         the event masks of descendent windows.  (#169821, Tommi Komulainen)
2057
2058         * gtk/gtktreeview.c (gtk_tree_view_get_drop_column) 
2059         (gtk_tree_view_set_column_drag_info): Fix some errors in the
2060         handling of drop columns.  (#143355, John Finlay)
2061
2062         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
2063         Remove the no longer needed workaround.
2064
2065         * gtk/gtkwidget.c (widget_add_child_draw_rectangle): Only collect
2066         allocations of mapped children.
2067
2068         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
2069         Add a bug reference.
2070
2071 2005-05-18  Tor Lillqvist  <tml@novell.com>
2072
2073         * gdk/win32/gdkevents-win32.c
2074         * gdk/win32/gdkkeys-win32.c
2075         * gdk/win32/gdkprivate-win32.h: Check the KF_EXTENDED bit in
2076         lParam of WM_KEY* messages to distinguish between left and right
2077         Control and Alt keys. Unfortunately, the right Shift key doesnt
2078         set KF_EXTENDED, so to distinguish between left and right Shift
2079         keys, check the scan code. (#304584)
2080
2081 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
2082
2083         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Warn if
2084         length overflows.  (#161520, Ian Wienand)
2085
2086         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name): Fix
2087         parameter names to make gtk-doc happy.
2088
2089         * gtk/gtkscale.c (gtk_scale_class_init): Fix the default
2090         values of draw-value and value-pos to be the values we
2091         actually use in _init. (#304547, Mikael Hallendal)
2092
2093         * gtk/gtkcellrendererpixbuf.c: Support named icons in
2094         cells by adding a icon-name property. (#165777, Anders
2095         Carlsson)
2096
2097         * gtk/gtk.symbols:
2098         * gtk/gtktoolbutton.h: 
2099         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name) 
2100         (gtk_tool_button_get_icon_name): Support named icons in 
2101         tool buttons by adding a icon-name property. (#116577, 
2102         Christian Neumair)
2103
2104         * gtk/gtk.symbols: 
2105         * gtk/gtkdnd.h: 
2106         * gtk/gtkdnd.c (gtk_drag_source_set_icon_name) 
2107         (gtk_drag_set_icon_name): New functions to support themed 
2108         drag icons.  (#116577, Christian Neumair)
2109
2110 2005-05-17  Owen Taylor  <otaylor@redhat.com>
2111
2112         * gdk/x11/gdkdrawable-x11.c (gdk_x11_ref_cairo_surface): 
2113         Update to changed cairo interface.
2114
2115         * gdk/x11/gdkdrawable-x11.[ch]:
2116         Add _gdk_x11_drawable_update_size()
2117         
2118         * gdk/x11/gdkwindow-x11.c (gdk_window_resize) 
2119         (gdk_window_move_resize)
2120         * gdk/x11/gdkevents-x11.c (gdk_event_translate): 
2121         Call _gdk_x11_drawable_update_size().
2122
2123 2005-05-17  Matthias Clasen  <mclasen@redhat.com>
2124
2125         * gtk/gtktextview.c (cursor_blinks): Don't blink the cursor
2126         if the text view is not editable.  
2127
2128         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
2129         the popup posted if the button is released over the cellview.
2130         This matches the behaviour of other combo box implementations.  
2131         (#171378)
2132         
2133         * gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
2134         when recursing.  (#153682, Felipe Heidrich)
2135
2136 2005-05-16  Matthias Clasen  <mclasen@redhat.com>
2137
2138         * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up 
2139         and GDK_Page_Down twice.  (#168333, Hazael Maldonado Torres)
2140
2141         * gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if 
2142         the entry is not editable.  (#304171, Nikos Kouremenos)
2143         
2144         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor): 
2145         Make sure the action of the button and the dialog are in sync,
2146         when the dialog is provided by the app.  (#303987, David A Knight)
2147
2148         * gdk/gdkpango.c (gdk_pango_renderer_get_default): Fix a typo
2149         in the docs.  (#303940, Masao Mutoh)
2150
2151         * configure.in (GTK_DOC_CHECK): Check for gtk-doc 1.4.
2152
2153         * gtk/gtktoggleaction.c (connect_proxy): Be more careful when
2154         casting.  (#304089, Philip Langdale)
2155
2156         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only shrink
2157         the label if we need to.  (#169390, Felix Riemann)
2158
2159 Sat May 14 00:07:46 2005  Manish Singh  <yosh@gimp.org>
2160
2161         * gdk/gdkdraw.c
2162         * gdk/gdkpango.c: #include gdkcairo.h for gdk_cairo_create()
2163         declaration.
2164
2165         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): actually
2166         call gdk_cairo_set_source_color() with a color.
2167
2168         * gtk/gtkimage.c (gtk_image_expose): remove unused stock_id variable.
2169
2170         * tests/testiconview.c (main): cast args of drag functions to the
2171         appropriate type.
2172
2173 2005-05-13  Owen Taylor  <otaylor@redhat.com>
2174
2175         * gdk/x11/gdkdrawable-x11.c: Update for cairo-xlib API change.
2176
2177         * gdk/x11/gdkpixmap-x11.[ch] gdk/gdk.symbols: Export 
2178         gdk_pixmap_impl_x11_get_type(), needed in gdkdrawable-x11.c.
2179         
2180 2005-05-11  Owen Taylor  <otaylor@redhat.com>
2181
2182         * tests/testgtk.c (on_alpha_window_expose): Fix to use
2183         gdk_cairo_create(). (create_alpha_window): Hook up "response"
2184         to close the window.
2185
2186 2005-05-11  Owen Taylor  <otaylor@redhat.com>
2187
2188         * gtk/gtkcolorbutton.c: Use a GtkAlignment rather than a GtkDrawingArea
2189         to draw the swatch in to avoid having an extraneous window.
2190         
2191         * gtk/gtkcolorsel.c (color_sample_draw_sample): Actually se tthe
2192         color when !has_opacity.
2193
2194 2005-05-10  Owen Taylor  <otaylor@redhat.com>
2195
2196         * gdk/gdkcairo.[ch] gdk/gdkcolor.[ch] gdk/Makefile.am: Add source
2197         files for Cairo convenience functionality.
2198
2199         * gdk/gdkcairo.h (gdk_cairo_rectangle, gdk_cairo_region): Add a
2200         convenience functions to add GdkRectangle, GdkRegion to a cairo path.
2201
2202         * gdk/gdkwindow.c gdk/gdkgc.c gtk/gtkcolorsel.c gtk/gtkiconview.c 
2203         gtk/gtkstyle.c: Use gdk_cairo_rectangle/region().
2204
2205         * gdk/gdkcairo.[ch] gdk/gdkdrawable.h gdk/gdkdraw.c: Rename
2206         gdk_drawable_create_cairo_context() to gdk_cairo_create().
2207
2208         * gdk/gdkcairo.c gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c:
2209         Rename gdk_pixbuf_set_as_cairo_source() to 
2210         gdk_cairo_set_source_pixbuf().
2211
2212         * gdk/gdkdraw.c gdk/gdkpango.c gtk/gtkcolorsel.c gtk/gtkhruler.c
2213         gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkstyle.c gtk/gtkvruler.c:
2214         Adjust for renames.
2215
2216         * gdk/gdk.symbols: Update.
2217
2218         * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): Fix 
2219         coordinate system problem that was causing the wrong portions
2220         to be invalidated.
2221
2222         * gtk/gtkcellrenderer.c (gtk_cell_renderer_render)
2223         gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render)
2224         gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render)
2225         gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render)
2226         gtk/gtkcellview.c (gtk_cell_view_expose)
2227         gtk/gtkdnd.c (gtk_drag_highlight_expose)
2228         gtk/gtkentry.c (gtk_entry_draw_text) 
2229         gtk/gtktextview.c (text_window_invalidate_rect): Some cairoization.
2230
2231         * gtk/gtkcalendar.[ch]: Beat into something roughly resembling
2232         GTK+ style ... use instance-private data and standard names for
2233         private structure, etc. Move function docs inline.
2234
2235         * gtk/gtkcalendar.[ch]: Switch to drawing everything in
2236         expose. Switch drawing to Cairo.
2237
2238         * gtk/gtkcalendar.c (gtk_calendar_freeze): Deprecate
2239         gtk_calendar_freeze/thaw
2240
2241 2005-05-10  Tor Lillqvist  <tml@novell.com>
2242
2243         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Check
2244         that GDK_IS_SCREEN(screen) (like the X11 backend does), not screen
2245         == gdk_screen_get_default(), as that might return NULL when this
2246         function is called.
2247
2248 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
2249
2250         * gtk/gtkalignment.c (gtk_alignment_size_allocate): Flip the
2251         padding in RTL mode.  (#303572, Maciej Katafiasz)
2252
2253 2005-05-09  Owen Taylor  <otaylor@redhat.com>
2254
2255         * gdk/gdkrgb.c (gdk_rgb_convert_0888_br, gdk_rgb_convert_8880_br): 
2256         Fill in unused bits so they can be used for the depth-32 target case.
2257         Rewrite so that that gives a marginal speedup rather than a
2258         marginal slowdown. (on x86)
2259
2260         * gdk/gdkscreen.h gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkvisual-x11.c:
2261         Add gdk_screen_get_rgba_colormap/visual to get a visual for
2262         windows with an alpha channel, if one exists.
2263
2264         * gdk/win32/gdkscreen-win32.c gdk/linux-fb/gdkscreen-fb.c:
2265         Stub out gdk_screen_get_rgba_colormap/visual.
2266
2267         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): computation of
2268         "unused" wasn't right for depth == 32, since it depended on
2269         shifting by 32.
2270
2271         * gdk/gdkrgb.c: Fill in alpha bits with 1s. (Based on patch from
2272         Keith Packard,
2273         http://mail.gnome.org/archives/gtk-devel-list/2004-June/msg00080.html)
2274
2275         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
2276         Implement again, without using Xft.
2277
2278         * tests/testgtk.c: Add a test for windows with an alpha channel.
2279
2280 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
2281
2282         * autogen.sh: Revert accidental commit.
2283
2284 2005-05-08  Matthias Clasen  <mclasen@redhat.com>
2285
2286         * gdk/gdkcolor.c (gdk_cairo_set_source_color): 
2287         * gdk/gdkimage.h: 
2288         * gdk/gdkdraw.c: 
2289         * gdk/gdkcolor.h: 
2290         * gdk/gdkcursor.h: 
2291         * gdk/x11/gdkcolor-x11.c: Small documentation additions.
2292
2293 2005-05-07  Matthias Clasen  <mclasen@redhat.com>
2294
2295         * gtk/gtkscrolledwindow.h: 
2296         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_hscrollbar): 
2297         (gtk_scrolled_window_get_cscrollbar): Change the return 
2298         type to GtkWidget*, proposed by Owen Taylor. 
2299
2300         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_width_mm) 
2301         (gdk_screen_get_height_mm): Fix typos in the docs.  (#303389,
2302         Masao Mutoh)
2303
2304 2005-05-07  Matthias Clasen <mclasen@redhat.com>
2305
2306         * gtk/gtkiconview.c: Fix a copy-and-paste accident, spotted
2307         by Owen Taylor.
2308
2309 2005-05-07  Owen Taylor  <otaylor@redhat.com>
2310
2311         * gdk/gdkgc.c (gc_get_foreground): Get the foreground color, not
2312         the background color.
2313
2314 2005-05-07  Owen Taylor  <otaylor@redhat.com>
2315
2316         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h (gdk_pixbuf_set_as_cairo_source): 
2317         Change prototype to match cairo_set_source_surface().
2318
2319         * gdk/gdkdraw.c gdk/gdkgc.c gdk/gdkpixbuf-render.c gdk/gdkwindow.c
2320         gtk/gtkhsv.c tests/testcairo.c.
2321
2322 2005-05-06  Federico Mena Quintero  <federico@ximian.com>
2323
2324         Merged from gtk-2-6:
2325
2326         * gtk/gtkfilesystemunix.c (fill_in_mime_type): Don't fill the mime
2327         types if this is an AFS directory.
2328         (fill_in_names): If we are in an AFS directory, set the MIME type
2329         blindly to "x-directory/normal".
2330
2331 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
2332
2333         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Always
2334         initialize child-visible to FALSE, otherwise we may end up
2335         with the wrong page visible initially.  (#302283, Patrik Fimml)
2336
2337         * gtk/gtktreeview.c (gtk_tree_view_draw_arrow): Make expanders
2338         appear insensitive in insensitive treeviews. 
2339
2340 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
2341
2342         * gtk/gtktoolbar.c: Fix a typo in the docs.  (#303024, 
2343         Morten Welinder)
2344
2345 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
2346
2347         * gtk/gtk.symbols:
2348         * gtk/gtkiconview.[hc]: Add DND support similar to the DND
2349         support in the tree view.  (#150270)
2350
2351 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
2352
2353         * gtk/gtktreednd.h: 
2354         * gtk/gtkwidget.h: Small cleanups.
2355
2356         * gtk/gtktreeview.c (gtk_tree_view_get_dest_row_at_pos): Fix
2357         a typo.
2358
2359 2005-05-04  Owen Taylor  <otaylor@redhat.com>
2360
2361         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.h: Fix a bug
2362         in focus tracking when we move between has_pointer_focus and 
2363         has_focus_window directly. (#109246, Billy Biggs, Niko Tyni 
2364         and others)
2365
2366         * gdk/x11/gdkevents-x11.c: Also fix some confusion that could
2367         happen in the case of no window manager + keyboard grabs, by
2368         moving to a more consistent model of when we pay attention to
2369         mode=NotifyGrab/NotifyUngrab events.
2370         
2371         * docs/focus_tracking.txt: Extensive writeup about how to track
2372         focus under X11.
2373
2374 Wed May  4 13:21:41 2005  Søren Sandmann  <sandmann@redhat.com>
2375
2376         * tests/testcairo.c (draw): Replace cairo_show_surface() uses with
2377         cairo_set_source_surface()/cairo_paint();
2378
2379 2005-05-04  Tor Lillqvist  <tml@novell.com>
2380
2381         * gdk/win32/gdkdrawable-win32.c (generic_draw, blit_from_pixmap)
2382         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values,
2383         _gdk_win32_gc_new, _gdk_windowing_gc_set_clip_region,
2384         gdk_win32_hdc_get): Minor fixes to make Win32 backend compile
2385         again.
2386
2387 2005-05-03  Matthias Clasen  <mclasen@redhat.com>
2388
2389         * gtk/gtkfilesystem.c: 
2390         * gtk/gtkcelleditable.c: 
2391         * gtk/gtktreemodel.c: Avoid getting the interface struct
2392         twice in the same function.  (#300513, Billy Biggs)
2393
2394         * gtk/gtkscrolledwindow.h:
2395         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_vscrollbar): 
2396         * gtk/gtk.symbols: Add getters for the scrollbars.  (#167181,
2397         Billy Biggs)    
2398
2399         * gtk/gtkdialog.h: 
2400         * gtk/gtkdialog.c (gtk_dialog_get_response_for_widget): 
2401         Make this function public.  (#170748, Morten Welinder)
2402
2403 2005-05-02  Federico Mena Quintero  <federico@ximian.com>
2404
2405         Merged from gtk-2-6:
2406
2407         Fixes #301068:
2408
2409         * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add fields
2410         to store struct stat for /afs and /net, and boolean fields to say
2411         whether these are valid.
2412         (struct _GtkFileFolderUnix): Added a boolean is_network_dir field.
2413         (gtk_file_system_unix_get_folder): Fill in the is_network_dir
2414         field of the folder structure.
2415         (fill_in_names): If the folder is a network directory, create a
2416         fake struct stat for its entries.
2417         (fill_in_stats): Don't stat() the children of network directories.
2418
2419         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): If the mtime
2420         is 0, use "Unknown" for the cell's displayed text.
2421
2422 2005-04-28  Owen Taylor  <otaylor@redhat.com>
2423
2424         * gtk/gtkwidget.c: Add a draw-border style property to allow
2425         themes to draw outside the widget's allocation.
2426
2427         * gdk/gdkwindow.c gtk/gtkstyle.c: Remove some save/restore pairs
2428         that were working around the clip-leakage bug in Cairo.
2429
2430         * gtk/gtkstyle.c: Use cairo_fill_preserve() rathe than
2431         save/fill/restore.
2432
2433         * gdk/gdkgc.c gdk/gdkinternals.h: Add _gdk_gc_update_context()
2434         That updates a Cairo context to match a GC.
2435
2436         * gdk/gdkdraw.c: Use _gdk_gc_update_context() to add support
2437         for tiles/stipples/clipping to gdk_draw_glyphs(), 
2438         gdk_draw_trapezoids().
2439
2440         * gdk/gdkpango.c: Use _gdk_gc_update_context() instead of internal
2441         implementation of stipples. Use one cairo_t across the entire
2442         drawing operation. Replace cairo_matrix_create() with 
2443         stack-allocated matrices.
2444
2445         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c 
2446         gdk/win32/gdkgc-win32.c: Save various aspects of the 
2447         GC state (fill, tile, stipple, foreground, background, clip region)
2448         in instance-private-data for future use. Add getters.
2449         Get rid of _gdk_windowing_gc_get_foreground() function implemented 
2450         by the backends.
2451
2452         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
2453         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Add
2454         _gdk_gc_init() to do initial setup of the GC from values;
2455         fixes some problems from drawable redirection.
2456
2457         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
2458         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Move 
2459         gdk_gc_copy() and gdk_gc_set_clip_{region,rectangle}() into 
2460         the generic code, add _gdk_windowing_gc_copy(), 
2461         _gdk_windowing_gc_set_clip_region() to do backend specific
2462         stuff.
2463
2464         * gdk/x11/{gdkprivate-x11.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
2465         gdk/win32/{gdkprivate-win32.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
2466         gdk/linux-fb/{gdkprivate-fb.h,gdkgc-fb.c.c,gdkdrawable-fb.c}:
2467         Don't duplicate state that now is stored by the generic code.
2468
2469         * gdk/gdk.symbols Update
2470
2471 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
2472
2473         * tests/testiconview.c: Test cell renderers.
2474
2475         * gtk/gtk.symbols: Add new functions.
2476
2477         * gtk/gtkiconview.[hc]: Implement GtkCellLayout and use
2478         cell renderers for drawing and editing. (#148144, #160242)
2479
2480 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
2481
2482         * gtk/gtkcellrenderertext.c (get_size): Return a sufficient
2483         width for cases where pango_layout_get_pixel_extents() returns
2484         a rectangle with nonzero x. 
2485
2486         * gtk/gtkselection.c: Small doc fixes.
2487
2488         * gtk/gtkmenushell.c (gtk_menu_shell_set_take_focus): 
2489         (gtk_menu_shell_get_take_focus): Fix up the docs a bit.
2490
2491 2005-05-02  Michael Natterer  <mitch@imendio.com>
2492
2493         * gtk/gtkmain.c (do_post_parse_initialization): return silently if
2494         "gtk_initialized" is TRUE. Re-enables calling GTK's init functions
2495         multiple times when using gtk_get_option_group(), just as one can
2496         call gtk_init() multiple times without doing any harm.
2497
2498 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
2499
2500         * gtk/gtktextview.c (gtk_text_view_expose_event): Propagate
2501         the event to unanchored children in the text window.  
2502         (#302494, Stephen Kennedy)
2503
2504 2005-04-30  Tor Lillqvist  <tml@novell.com>
2505
2506         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Take
2507         multi-monitor offset into account. (#302525)
2508
2509 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
2510
2511         * gtk/gtkradioaction.c: Make the docs build.  (#302230,
2512         Ali Akcaagac)
2513
2514         * gtk/gtkiconview.c (gtk_icon_view_map): Get rid of this
2515         function, instead show the bin_window when it is created.
2516
2517         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
2518         grab focus to unrealized widgets.  (#302240, Philip Langdale)
2519
2520         * gtk/gtktreeview.c (gtk_tree_view_state_changed): Set
2521         background upon state changes.  (#301651, Billy Biggs)
2522         (gtk_tree_view_get_path_at_pos): Take RTL into account
2523         when iterating over the columns.  (#302163)
2524         
2525         * configure.in: Check for nm.
2526
2527         * gtk/Makefile.am: Use $(NM), not nm directly. (#301299, 
2528         Nguyen Thai Ngoc Duy)
2529
2530         * gtk/gtkiconview.c (gtk_icon_view_move_cursor_start_end): Use
2531         the internal unselect_all function, since we need the unselection
2532         to happen even in browse mode.  (#300995, Mathias Hasselmann)
2533
2534         * gtk/gtkuimanager.c (update_node): Use g_object_notify() instead
2535         of triggering a ::notify by re-setting the property.  (#300982,
2536         Sven Neumann)
2537
2538         * gtk/gtkaction.c (connect_proxy): Use gtk_action_sync_tooltip().
2539
2540         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_item): Also
2541         scroll horizontally when necessary, and keep the northwest
2542         corner of the item visible.  (#300913, Mathias Hasselmann)
2543
2544         * tests/testiconview.c: Add some more tests.
2545
2546         * gtk/gtkiconview.c (gtk_icon_view_select_path): Don't crash
2547         if the path does not point to a row in the model.  (#300909,
2548         Mathias Hasselmann)
2549         (gtk_icon_view_rows_reordered): Re-layout here.  (#301009, 
2550         Mathias Hasselmann)
2551
2552         * tests/testtext.c: Add some more attribute tests.
2553
2554         * gtk/gtktexttag.c (gtk_text_tag_class_init): Correct the documentation
2555         of the rise property. String change, but it is more important to
2556         be correct than to be translated.  (#301740)
2557
2558 2005-04-25  Tor Lillqvist  <tml@novell.com>
2559
2560         * gtk/gtkfilesystemwin32.c
2561         (gtk_file_system_win32_volume_get_display_name): Get volume name
2562         also on Win9x. (#301798, Daniel Atallah)
2563         (canonicalize_filename): Add explicit braces to silence compiler
2564         warning.
2565
2566 2005-04-22  Tor Lillqvist  <tml@novell.com>
2567
2568         * gtk/gtkmain.c: Initailize gettext before use. Calling
2569         bindtextdomain() and bind_textdomain_codeset() in
2570         do_post_parse_initialization() is too late. Put the calls in a new
2571         function gettext_initialization(), and call that from
2572         gtk_init_with_args() and gtk_parse_args(). Fixes #170948 for
2573         GTK+'s part, but the same problem occurs also at least in
2574         atk. Thanks to Robert Ögren, Daniel Atallah and Kevin Stange.
2575
2576 2005-04-19  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2577
2578         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Match
2579         character height instead of cell height. Fix #301228.
2580
2581 2005-04-18  Federico Mena Quintero  <federico@ximian.com>
2582
2583         Merged from gtk-2-6:
2584
2585         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): Remove
2586         obsolete assertion that the selected row can't be a volume; this
2587         is handled by the "removable" column now.  Fixes #301017.
2588
2589 2005-04-18  Owen Taylor  <otaylor@redhat.com>
2590
2591         * gtk/gtkstyle.c gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c
2592         * gdk/gdkcolor.c gdk/gdkwindow.c gdk/gdkpixbuf-render.c
2593         gdk/gdkpango.c tests/testcairo.c: Update to new Cairo API for
2594         setting color and opacity. (#301066, Vincent Noel)
2595  
2596 2005-04-15  Federico Mena Quintero  <federico@ximian.com>
2597
2598         Merged from gtk-2-6:
2599
2600         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
2601         Patch from Christian Neumair <chris@gnome-de.org>; only select the
2602         first row if we are in OPEN mode.  The only other case we were
2603         letting pass through was SELECT_FOLDER, but selecting the first
2604         row when changing folders confuses people when folders are
2605         actually being selected.  Fixes #171885.
2606
2607 2005-04-13  Matthias Clasen  <mclasen@redhat.com>
2608
2609         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
2610         Revert the fix for #169870, adjust the documentation instead. 
2611
2612         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
2613         Revert the fix for #170727.     
2614
2615 2005-04-11  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2616
2617         Fix #300218:
2618
2619         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
2620         C99ism.
2621
2622         * gtk/updateiconcache.c: Guard inclusion of unistd.h and
2623         utime.h.
2624
2625 2005-04-09  Matthias Clasen  <mclasen@redhat.com>
2626
2627         * gdk/x11/gdkinput-xfree.c:
2628         * gdk/x11/gdkinput-none.c:
2629         * gdk/gtk.symbols: Some more fixes necessary to 
2630         make building with gcc 4 work.
2631
2632         Add 16x16 versions of the zoom icons and of 
2633         GTK_STOCK_INDEX. Some of the images were taken from 
2634         the hicolor icon theme, and were originally created 
2635         by Jakub Steiner and Tuomas Kuosmanen.  (#167515, 
2636         Vincent Noel)
2637         
2638         * gtk/stock-icons/stock_index_16.png:
2639         * gtk/stock-icons/stock_zoom_1_16.png:
2640         * gtk/stock-icons/stock_zoom_fit_16.png:
2641         * gtk/stock-icons/stock_zoom_in_16.png:
2642         * gtk/stock-icons/stock_zoom_out_16.png: New images.
2643         
2644         * gtk/stock-icons/Makefile.am: Add the new images. 
2645
2646         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
2647         Don't display too many broken images.  (#169870, Roman
2648         Kagan, patch by Ivan Wong)
2649
2650         * gtk/gtkwidget.c (gtk_widget_unparent): Remove debugging
2651         output.  (#300013, Tommi Komulainen)
2652
2653 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
2654
2655         * gtk/gtkimage.c (gtk_image_expose, gtk_image_calc_size): 
2656         If a stock_id is unknown, display the missing image. (#169870,
2657         Steven Walter)
2658
2659         * gtk/gtkiconcache.c (icon_name_hash): Use the same function 
2660         as in updateiconcache.c.  (spotted by Morten Welinder)
2661
2662 2005-04-08  Carl Worth  <cworth@cworth.org>
2663
2664         * gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
2665         now that cairo exposes the cairo_matrix_t structure.
2666         
2667         * gdk/gdkpixbuf-render.c: (gdk_pixbuf_set_as_cairo_source): Track
2668         cairo API change in signedness of data argument.
2669
2670 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
2671
2672         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Make this
2673         work when called from gtk_combo_box_destroy().  (#172999,
2674         Christian Persch)
2675
2676 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
2677
2678         Fix double-click to autosize treeview columns. This was
2679         probably broken since 2.2 ! (#169675)
2680         
2681         * gtk/gtktreeview.c (gtk_tree_view_button_press): Leave the
2682         "user-resized" state of the column on a double-click to
2683         autosize.
2684         (gtk_tree_view_button_press, gtk_tree_view_motion_resize_column): 
2685         Enter the "user-resized" state of the column only if a drag
2686         actually changes the column width, not on any click.
2687
2688 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
2689
2690         * gtk/gtkmenu.c (gtk_menu_paint): Allow setting background
2691         images on menus.  (#169532, Benjamin Otte)
2692         
2693         * gtk/updateiconcache.c (write_card16, write_card32): Avoid
2694         unaligned access.  (#172947)
2695
2696         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): 
2697         Consistently use the term "Bookmarks" in the UI.  (#166906,
2698         Sebastian Bacher)
2699
2700         Some fixes from Morten Welinder (#172947):
2701         
2702         * gtk/updateiconcache.c (icon_name_hash): Make this compiler- 
2703         and platform-independent.
2704         (is_cache_up_to_date): Don't compare mtimes is a stat call failed.
2705         (build_cache): Error out if a stat fails.  
2706
2707 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
2708
2709         * gtk/gtktreeview.c (gtk_tree_view_set_expander_column): Add 
2710         a hint about hiding expanders.
2711
2712         * gtk/updateiconcache.c (is_cache_up_to_date): Return 
2713         TRUE if the cache is newer than the directory.  (#172852,
2714         Jacob Kroon)
2715
2716         * configure.in: Replace an explicit pkg-config by 
2717         $PKG_CONFIG.  (#168074, Hans-Wolfgang Loidl)
2718         
2719         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
2720         Ignore regions which fall completely outside the line.  
2721         (#165862, Felipe Heidrich)
2722
2723 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
2724
2725         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
2726         -1 as possible value.  
2727         (gtk_tree_view_enable_model_drag_source) 
2728         (gtk_tree_view_enable_model_drag_dest): Pass the target list 
2729         to the underlying dnd implementation, otherwise we miss the 
2730         target info in the drag-data-received signal.  (#164085, Jorn
2731         Baayen)
2732
2733 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
2734
2735         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column) 
2736         (gtk_tree_view_bin_expose): Avoid a few unnecessary calls
2737         to gdk_window_get_pointer(). (#168015, Billy Biggs)
2738
2739         * po/.cvsignore, po-properties/.cvsignore: Remove
2740         Makefile.in.in.  (#171092, Stepan Kasal)
2741
2742         * gtk/gtkrc.c (gtk_rc_parse_style): Don't modify 
2743         scanner->value, copy it first.  (#165693, Tommi Komulainen)
2744
2745 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
2746
2747         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_grab_focus): 
2748         * gtk/gtkcombobox.c (gtk_combo_box_grab_focus): Implement
2749         grab_focus for GtkComboBox and GtkComboBoxEntry.  (#171912,
2750         Gustavo Carneiro)
2751
2752         * gtk/gtkicontheme.c: Store icon caches along with the
2753         mtimes of the toplevel directories. The previous
2754         mechanism of a hashtable-per-theme caused duplicate icon
2755         caches for the same toplevel directory to be created.  
2756         (#170030)
2757
2758 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
2759
2760         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): 
2761         Fix a typo in a warning.
2762
2763         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Protect
2764         the license and credits buttons from being affected by 
2765         gtk_widget_show_all().  (#172724)
2766
2767 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
2768
2769         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): Keep a 
2770         reference to the item.  (#167920, Hazael Maldonado Torres)
2771
2772         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Add some
2773         more docs on interactive search.
2774
2775 2005-04-05  Tor Lillqvist  <tml@novell.com>
2776
2777         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Handle 16 colour
2778         display mode. For some reason, in this mode GetDeviceCaps(BITSPIXEL)
2779         returns 1 (but GetDeviceCaps(NUMCOLORS) does return 16). (#143415)
2780
2781         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Don't force
2782         24bpp GdkVisual on 32bpp displays. (#140706)
2783
2784 Mon Apr  4 19:13:23 2005  Jonathan Blandford  <jrb@redhat.com>
2785
2786         Fix for #172319, Tristan Van Berkom:
2787         
2788         * gtk/gtktreeview.c (gtk_tree_view_expand_all): change to use
2789         gtk_tree_view_real_expand_row() instead of doing this by hand.
2790
2791 2005-04-04  Johan Dahlin  <johan@gnome.org>
2792
2793         * gtk/gtktextbuffer.c: (gtk_text_buffer_class_init),
2794         (gtk_text_buffer_set_property), (gtk_text_buffer_get_property),
2795         (gtk_text_buffer_set_text): Add GtkTextBuffer::text (#172631)
2796
2797 Mon Apr  4 14:33:55 2005  Manish Singh  <yosh@gimp.org>
2798
2799         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text):
2800         cast combo->priv->entry to GTK_ENTRY()
2801
2802         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
2803         cast completion->priv->tree_view to GTK_TREE_VIEW()
2804
2805 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2806
2807         * gtk/gtktextbuffer.c: Some trivial doc fixes.
2808
2809         * gtk/gtkwidget.c (gtk_widget_set_redraw_on_allocate): Improve 
2810         the wording of the doc comment.  (#172422, Vincent Untz)
2811
2812 2005-04-04  Owen Taylor  <otaylor@redhat.com>
2813
2814         * gtk/gtkstyle.c (gtk_default_draw_expander): Covert expander
2815         drawing to Cairo. Also always draw the entire triangle instead
2816         of just drawing the center for prelight. (Fixes inconsistent
2817         drawing in GtkTreeView.)
2818
2819 2005-04-04  Johan Dahlin  <johan@gnome.org>
2820
2821         * gtk/gtk.symbols: Remove symbols accidentally added.
2822         * gtk/gtkentryprivate.h: Add boolean property popup_set_width
2823         * gtk/gtktoggletoolbutton.c: (gtk_toggle_tool_button_class_init):
2824         Use object_class instead of gobject_class
2825
2826 Mon Apr  4 12:14:35 2005  Søren Sandmann  <sandmann@redhat.com>
2827
2828         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Translate x, y into
2829         widget coordinates instead of root coordinates. Patch from Jorn
2830         Baayen. (#172236)
2831
2832 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2833
2834         * gtk/gtktoolbar.c: Add a tooltips property.
2835
2836         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_class_init): 
2837         * gtk/gtkruler.c (gtk_ruler_class_init): Add docs.
2838
2839         * gtk/gtktoggletoolbutton.c: Add an active property.
2840
2841 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2842
2843         Allow completion popups to be wider than the entry. (#131916, 
2844         Ross Burton)
2845         
2846         * gtk/gtkentrycompletion.[hc]: Add a boolean popup-set-width property.
2847
2848         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
2849         Don't force the popup to have the same width as the entry if 
2850         popup-set-width is FALSE.
2851
2852         * gtk/gtk.symbols: Add new functions.
2853
2854 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2855
2856         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
2857         Use gtk_accel_map_change_entry(), so that reusing the same
2858         action name works.  (#170727, Paolo Borelli)
2859
2860 2005-04-04  Tor Lillqvist  <tml@novell.com>
2861
2862         * gdk/win32/gdkmain.c (_gdk_win32_cf_to_string): New debugging
2863         function, to log a clipboard format name symbolically.
2864         (_gdk_win32_data_to_string): Also new, to log random data bytes.
2865
2866         Implement delayed rendering on Win32, specifically for transfering
2867         images through the clipboard from GTK+ apps to other
2868         apps (#168173, implementation by Ivan Wong):
2869
2870         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
2871         Handle WM_RENDERFORMAT.
2872
2873         * gdk/win32/gdkprivate-win32.h
2874         * gdk/win32/gdkglobals-win32.c: Add _format_atom_table,
2875         _delayed_rendering_data and _image_bmp.
2876
2877         * gdk/win32/gdkmain-win32.c: Initialize _image_bmp.
2878
2879         * gdk/win32/gdkproperty-win32.c (gdk_property_change):
2880         Accept formats other than GDK_TARGET_STRING or _utf8_string, and
2881         assume they are handled through delayed rendering.
2882
2883         * gdk/win32/gdkselection-win32.c (gdk_selection_convert):
2884         Return all available formats (including those registered by GTK+
2885         apps) on request_targets.
2886         (gdk_selection_property_get): We should append a zero byte like
2887         X11 does.
2888         (gdk_win32_selection_add_targets): New function, for
2889         gtkselection's use. Win32 requires that the clipboard owner
2890         registers all valid formats even if the owner wants delayed
2891         rendering.
2892         (_gdk_win32_selection_convert_to_dib): New function. Convert
2893         images to DIB using gdk-pixbuf.
2894
2895         * gdk/win32/gdkwin32.h: Declare gdk_win32_selection_add_targets().
2896
2897         * gtk/gtkselection.c (gtk_selection_add_target,
2898         gtk_selection_add_targets): Call gdk_win32_selection_add_targets()
2899         to register target formats.
2900
2901         * gdk/gdk.symbols: Add gdk_win32_selection_add_targets().
2902
2903 2005-04-03  Hans Breuer  <hans@breuer.org>
2904
2905         [merged from gtk-2-6 branch]
2906         * gdk/win32/gdkdrawable-win32.c : let dash_offset shift the start of
2907         the line pattern not the start of the line. Fixes bug #171641.
2908
2909         * gtk/makefile.msc.in : follow .symbols changes
2910
2911         * gdk/win32/gdkwindow-win32.c : declare and resolve GetAncestor()
2912         dynamically. (It is not available in _WIN_VER <= 0x0400)
2913
2914         * gdk/win32/makefile.msc : removed gdkpango-win32.obj
2915
2916         * gtk/gtkhsv.c gtk/gtkstyle.c : use G_PI instead of M_PI
2917
2918         [also applied to gtk-2-6 branch]
2919         * gdk/makefile.msc gdk-pixbuf/makefile.msc : handle gdk*alias.def
2920
2921         * gdk/makefile.msc.in : add gtkmnemonichash.obj
2922
2923         * test/testgtk.c(set_parent_signal) : use g_message instead of
2924         g_print to keep the 'testgtk --bench=all' output clean
2925
2926 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
2927
2928         * gtk/gtkruler.c: Add a "metric" property.
2929
2930         * gtk/gtkradiomenuitem.c: Add a "group" property like
2931         the one found in radio buttons.
2932
2933         * gtk/gtkradiobutton.c (gtk_radio_button_class_init): Fix
2934         a typo in the docs.
2935         (gtk_radio_button_set_group): Add change notification.
2936         
2937 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
2938
2939         * gtk/gtkselection.c: Move documentation inline, document
2940         if add_target functions append or prepend.  (#172350, 
2941         Jon-Kare Hellan)
2942
2943 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
2944
2945         Make gtk_combo_box_get_active_text do the right thing for
2946         GtkComboBoxEntry (#171373, Robert Staudinger)
2947         
2948         * gtk/gtkcombobox.h: Add a get_active_text vfunc.
2949         
2950         * gtk/gtkcombobox.c (gtk_combo_box_real_get_active_text): And
2951         implement it here.
2952
2953         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text): 
2954         Implement get_active_text by always returning the content of 
2955         the entry.
2956
2957 2005-03-31  Sven Neumann  <sven@gimp.org>
2958
2959         Merged from gtk-2-6:
2960
2961         * gtk/gtkbutton.c
2962         * gtk/gtkiconview.c: fixed gtk-doc comments.
2963
2964 2005-03-31  Michael Natterer  <mitch@gimp.org>
2965
2966         Allow to pop up menus without grabbing the keyboard. Useful for
2967         stuff like virtual keyboards. Fixes bug #159890
2968
2969         * gtk/gtk.symbols
2970         * gtk/gtkmenushell.[ch]: added boolean property "take-focus"
2971         and public API gtk_menu_shell_set/get_take_focus().
2972
2973         * gtk/gtkmenu.c (gtk_menu_popup)
2974         (popup_grab_on_window): don't grab the keyboard if take_focus
2975         is FALSE.
2976
2977         * gtk/gtkmenuitem.c (_gtk_menu_item_popup_submen): propagate the
2978         parent menu_shell's take_focus property to the submenu which is
2979         about to be popped up.
2980
2981 2005-03-30  Federico Mena Quintero  <federico@ximian.com>
2982
2983         Merged from gtk-2-6:
2984
2985         Fix #170755:
2986
2987         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Only stop editing
2988         if the row which changed is the same as the row being edited.
2989
2990 2005-03-30  Matthias Clasen  <mclasen@redhat.com>
2991
2992         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
2993         Make enable_search control only typeahead, not C-f.  (#170435,
2994         Sven Neumann)
2995         (gtk_tree_view_start_interactive_search): Pass keybinding == TRUE.
2996
2997         * gdk/gdkpixbuf.h: Include cairo.h
2998
2999         * gtk/gtkclipboard.c (gtk_clipboard_set_can_store): 
3000         Don't accept n_targets == -1.
3001         (clipboard_unset): unref the old_data, not the
3002         user_data which we have just cleared.  (#172038, Sven
3003         Neumann)
3004
3005         * gtk/gtkcombobox.c (gtk_combo_box_popup): Don't 
3006         segfault if somebody tries to popup an unrealized
3007         combo box.  (#172031, Felipe Heidrich)
3008
3009 2005-03-30  Tor Lillqvist  <tml@novell.com>
3010
3011         * gdk/win32/gdkevents-win32.c (build_pointer_event_state): The
3012         state field should represent the state before the event, like on
3013         X11. (#169753)
3014         (gdk_event_translate): Fix event filter handling. If an event
3015         filter (global, client message filter, of window-specific) returns
3016         GDK_FILTER_CONTINUE, continue as if nothing happened. If it
3017         returns GDK_FILTER_REMOVE or GDK_FILTER_TRANSLATE, return TRUE
3018         from gdk_event_translate() which means that DefWindowProc() will
3019         not be called.
3020         (gdk_event_translate): Fix client message handling. Append a
3021         GDK_CLIENT_EVENT unless there is a filter that matches and returns
3022         something other than GDK_FILTER_CONTINUE. (#135552)
3023
3024 2005-03-29  Matthias Clasen  <mclasen@redhat.com>
3025
3026         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_visible_func): 
3027         Document the need to refilter if parameters of the visibility function
3028         change.  (#169516, Olivier Sessink)     
3029
3030 Mon Mar 28 15:13:42 2005  Søren Sandmann  <sandmann@redhat.com>
3031
3032         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
3033         invalidate areas that are covered by mapped input-output child
3034         windows. Bug 141380.
3035
3036 2005-03-28  Jeroen Zwartepoorte  <jeroen.zwartepoorte@gmail.com>
3037
3038         * gtk/gtkfilechooserdefault.c: (update_preview_widget_visibility): Make
3039         the preview label ellipsize so the dialog layout stays constant.
3040         (#171398)
3041
3042 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
3043
3044         * gtk/gtktreeview.c (gtk_tree_view_key_press): Don't pop up
3045         the context menu of the search entry if it is not visible.
3046         (#169534, Billy Biggs)
3047
3048 2005-03-27  Tor Lillqvist  <tml@novell.com>
3049
3050         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
3051         after all, and in fact necessary with HEAD libtool.
3052
3053 2005-03-26  Matthias Clasen  <mclasen@redhat.com>
3054
3055         * gtk/*.c: 
3056         * gdk/gdkdisplaymanager.c: 
3057         Use canonical names for g_object_notify() as well. 
3058
3059 2005-03-24  Tor Lillqvist  <tml@novell.com>
3060
3061         * configure.in (GTK_EXTRA_CFLAGS): Include the -mms-bitfields flag
3062         in GTK_EXTRA_CFLAGS on Win32, so that it gets included in the
3063         gtk+-2.0.pc file and automatically used by dependents. MSVC users
3064         who use pkg-config will have to manually edit it out from
3065         gtk+-2.0.pc, sorry. Maybe pkg-config should be enhanced to support
3066         some kind of conditionals in .pc files?
3067
3068 2005-03-23  Matthias Clasen  <mclasen@redhat.com>
3069
3070         * gtk/gtkfilechooserbutton.c (update_combo_box): Remove
3071         a call whose result was unused and leaked.  (#170776,
3072         Kjartan Maraas)
3073
3074         Some cleanups to the GtkDialog code:  (#170746, 
3075         Morten Welinder)
3076         * gtk/gtkdialog.c (action_widget_activated): Simplify,
3077         use _gtk_dialog_get_response_for_widget.
3078         (gtk_dialog_add_action_widget): Use the correct signal
3079         id for non-buttons.
3080         (gtk_dialog_set_response_sensitive): 
3081         (gtk_dialog_set_default_response): Use get_response_data.
3082         (gtk_dialog_run): Don't disconnect the signals if the
3083         dialog was destroyed while running.
3084
3085 Tue Mar 22 14:16:31 2005  Manish Singh  <yosh@gimp.org>
3086
3087         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
3088         Use g_return_if_fail, not g_return_val_if_fail.
3089
3090 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
3091
3092         Implement bookmark renaming  (#136216, Sean Middleditch)
3093         
3094         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Add 
3095         get_bookmark_label and set_bookmark_label vfuncs.
3096
3097         * gtk/gtkfilesystem.h:
3098         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label): 
3099         (gtk_file_system_get_bookmark_label): Wrappers for the
3100         vfuncs.
3101
3102         * gtk/gtk.symbols: Add new exported symbols.
3103
3104         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_set_bookmark_label): 
3105         (gtk_file_system_unix_get_bookmark_label): Implementations
3106         for the Unix backend.
3107
3108         * gtk/gtkfilechooserdefault.c: Add a context menu to
3109         the bookmarks pane, and allow to rename bookmarks.
3110
3111 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
3112
3113         * gtk/gtkpathbar.c (gtk_path_bar_unmap): 
3114         * gtk/gtkspinbutton.c (gtk_spin_button_unmap): 
3115         * gtk/gtknotebook.c (gtk_notebook_unmap): 
3116         * gtk/gtkrange.c (gtk_range_unmap): Stop scrolling when
3117         the widget is unmapped.  (#168791, Ryan Lortie)
3118
3119 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
3120
3121         * gtk/gtkprivate.h: Define macros GTK_PARAM_READABLE,
3122         GTK_PARAM_WRITABLE, GTK_PARAM_READWRITE which are like
3123         their G_ counterparts, but also mark the name, nick
3124         and blurb as static.
3125
3126         * gtk/*.c: Mark param spec strings as static, using
3127         the new macros.
3128
3129         * gtk/gtkspinbutton.h: Fix a typo.
3130
3131 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
3132
3133         * gtk/gtkcellrendererprogress.c: 
3134         * gtk/gtkcellrendererpixbuf.c: 
3135         * gtk/gtkcellrenderercombo.c: 
3136         * gtk/gtkcellrenderer.c: 
3137         * gtk/gtkcalendar.c: 
3138         * gtk/gtkbutton.c: 
3139         * gtk/gtkbox.c: 
3140         * gtk/gtkbbox.c: 
3141         * gtk/gtkaspectframe.c: 
3142         * gtk/gtkarrow.c: 
3143         * gtk/gtkalignment.c: 
3144         * gtk/gtkactiongroup.c: 
3145         * gtk/gtkaction.c:
3146         * gtk/gtkaccellabel.c: 
3147         * gtk/gtkaboutdialog.c: Mark param spec strings as static.
3148
3149         * gdk/gdkpango.c (gdk_pango_renderer_class_init): 
3150         * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
3151         param spec strings as static.
3152
3153 2005-03-21  Tor Lillqvist  <tml@novell.com>
3154
3155         * modules/engines/ms-windows/*.c: Silence gcc warnings (unused
3156         variables, unhandled enum value in switch). Use g_object_unref()
3157         instead of deprecated gdk_gc_unref() and gdk_drawable_unref().
3158
3159         * modules/engines/ms-windows/xp_theme.c (xp_theme_map_gtk_state): 
3160         Add missing "case" keyword.
3161
3162         * modules/engines/ms-windows/Makefile.am: Link with -lgdi32
3163         explicitly.
3164
3165 2005-03-20  Tor Lillqvist  <tml@novell.com>
3166
3167         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Return the
3168         Terminal Services session number, window station name (always
3169         "WinSta0" in interactive processes), and desktop name (typically
3170         "Default"), concatenated with backslash separators.
3171         (gdk_display_open): Accept only NULL or the string
3172         gdk_display_get_name() returns as display name.
3173
3174 2005-03-20  Matthias Clasen  <mclasen@redhat.com>
3175
3176         Make PLT-reduction work with gcc4, and don't include
3177         everything in gdkalias.h:
3178         
3179         * gtk/grk.symbols: Group symbols by header and source file.
3180         * gtk/makegtkalias.pl: Protect definitions by the same 
3181         preprocessor symbols used to guard the headers. Move
3182         the alias declarations to a separate file which is 
3183         produced when calling makegtkalias.pl -def
3184         * gdk/Makefile.am (gtkaliasdef.c): Add a rule to generate 
3185         this file.
3186         * gtk/*.c: Include gtkalias.h after the other headers, 
3187         include gtkaliasdef.c at the bottom.
3188         * gtk/*.h: Small cleanups.
3189
3190 Fri Mar 18 23:59:49 2005  Soeren Sandmann  <sandmann@redhat.com>
3191
3192         * gtk/gtkmenutoolbutton.c (arrow_button_button_press_event_cb):
3193         Make right-clicks not pop up the menu.
3194
3195 2005-03-18  Owen Taylor  <otaylor@redhat.com>
3196
3197         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_drawable_finish): 
3198         Call cairo_surface_finish()
3199
3200         * gdk/gdkinternals.c gdk/x11/gdkdrawable-x11.c: Remoev
3201         _gdk_windowing_set_surface_device_offset().
3202
3203 2005-03-18  Tor Lillqvist  <tml@novell.com>
3204
3205         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
3206         WM_MOUSEMOVE, don't check if this process owns the active
3207         window. This makes cross-application widget embedding work better.
3208         On WM_MOVE, don't bother checking for window visibility.
3209
3210         * gdk/win32/gdkim-win32.c: Remove bogus empty doc comment. Remove
3211         unused variables. Add some casts to silence gcc.
3212
3213 2005-02-24  Owen Taylor  <otaylor@redhat.com>
3214
3215         * gdk/gdkwindow.c: Use cairo_set_device_offset().
3216
3217         * gdk/win32/gdkdrawable-win32.[ch] gdk/win32/gdkwindow-win32.c
3218         gdk/win32/gdkpixmap-win32.c: 
3219         Add_gdk_win32_drawable_acquire/release_dc() to get a DC for the 
3220         drawable. Add _gdk_drawable_win32_finish() to clean up resources
3221         when a drawable is destroyed.
3222
3223         * gdk/win32/gdkgc-win32.c gdk/win32/gdkdrawable-win32.c
3224         (blit_from_pixmap) gdk/win32/gdkprivate-win32.h : Use 
3225         acquire/release_dc when getting a DC to use with a GC or for 
3226         blitting from a pixmap.
3227
3228         * gdk/win32/gdkdrawable-win32.[ch]: Implement ref_cairo_surface()
3229
3230         * gdk/win32/gdkpango-win32.c gdk/win32/gdkdrawable-win32.c Makefile.am:
3231         Remove gdk_screen_get_pango_context(), draw_glyph[_transformed]
3232         implementations.
3233
3234         * gdk/win32/gdkdrawable-win32.c: Remove 
3235         gdk_draw_rectangle_alpha_libgtk_only()
3236
3237 2005-03-17  Owen Taylor  <otaylor@redhat.com>
3238
3239         * gdk/gdkpango.c: Fix get_stipple_surface to actually work, set
3240         EXTEND_REPEAT on the stipple pattern.
3241
3242 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
3243
3244         * gtk/gtklabel.c (gtk_label_set_markup): Fix formatting
3245         in example in the docs.  (#170611, Jianfei Wang)
3246
3247         * gtk/gtkiconview.c (gtk_icon_view_size_allocate): Clamp
3248         adjustment values on resize.  (#170567, Tomislav Jonjic)
3249
3250         * gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
3251         if there is no cache.  (#170652, Diego Gonzalez)
3252         
3253         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
3254         Make inline completion insert the prefix at the
3255         right spot.  (#170146, Doug Quale)
3256
3257 2005-03-17  Tor Lillqvist  <tml@novell.com>
3258
3259         * gdk/gdkkeynames.c: gdk_key is a typedef, not a struct tag.
3260
3261 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
3262
3263         * gtk/gtkprogressbar.c (gtk_progress_bar_get_ellipsize): 
3264         Typo fix in the docs.
3265         
3266         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_set_arrow_tooltip): 
3267         Typo fix in the docs.
3268
3269         * gtk/gtkiconview.c (gtk_icon_view_set_columns) 
3270         (gtk_icon_view_get_columns, gtk_icon_view_set_item_width) 
3271         (gtk_icon_view_get_item_width, gtk_icon_view_set_spacing) 
3272         (gtk_icon_view_get_spacing, gtk_icon_view_set_row_spacing) 
3273         (gtk_icon_view_set_column_spacing) 
3274         (gtk_icon_view_get_row_spacing, gtk_icon_view_get_margin) 
3275         (gtk_icon_view_set_margin): Add docs.
3276         
3277         * gtk/gtkcellview.c (gtk_cell_view_get_displayed_row): 
3278         Add docs.
3279
3280 2005-03-15  Owen Taylor  <otaylor@redhat.com>
3281
3282         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkpixmap.c gdk/gdkwindow.c 
3283         gdk/x11/gdkdrawable-x11.c gdk/x11/gdkpixmap-x11.c gdk/x11/gdkwindow-x11.c
3284         gdk/gdkinternals.h: Switch set_cairo_target() virtual function to
3285         ref_cairo_surface()
3286
3287         * gdk/gdkdrawable.h gdk/gdkdraw.h: Switch set_cairo_target() virtual
3288         function to create_cairo_context()
3289
3290         * gdk/gdkwindow.c: Clear double buffer pixmaps with Cairo.
3291
3292         * gdk/x11/gdkwindow-x11.c: Keep all components in GdkWindowObject.bg_color,
3293         not just the pixel.
3294
3295         * tests/testcairo.c: Update for create_cairo_context()
3296
3297         * gdk/gdkdraw.c (gdk_draw_trapezoids, gdk_draw_glyphs[_transformed]):
3298         Reimplement in terms of Cairo, bypass the vtable entries.
3299
3300         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
3301         gdk/x11/gdkgc-x11.c gdk/x11/gdkpango-x11.c
3302         gdk/x11/gdkprivate-x11.h gdk/x11/Makefile.am: Remove
3303         implementation of draw_trapezoids / draw_glyphs[_transformed].
3304
3305         * gdk/gdkpango.c: Switch GdkPangoRenderer to use Cairo
3306
3307         * gdk/gdkpango.c gdk/x11/gdkpango-x11.c: Move
3308         gdk_pango_context_get_for_screen() into the backend independent code.
3309
3310         * gdk/x11/gdkdrawable-x11.[ch]: Remove Xft use, use RENDER directly
3311         for drawing images.
3312
3313         * gdk/gdkdrawable.h gdk/x11/gdkdrawable-x11.c: Remove
3314         gdk_draw_rectangle_alpha_libgtk_only.
3315
3316         * gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c: Add 
3317         gdk_pixbuf_set_as_cairo_source()
3318
3319         * gdk/gdk.symbols: Update
3320
3321         * gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkruler.[ch]
3322         gtk/gtk[hv]ruler.c: Convert to Cairo rendering.
3323
3324         * gtk/gtkstyle.c (gtk_default_draw_check, gtk_default_draw_focus,
3325         gtk_default_draw_option): Switch to Cairo. Simplify the checkbutton,
3326         radio button style for now to get something more scalable.
3327
3328         *  gtk/gtksettings.c: #if 0 out the code to use PangoXft for hinting/
3329         antialiasing/dpi settings.
3330
3331 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
3332
3333         * demos/gtk-demo/editable_cells.c: Also demonstrate
3334         GtkCellRenderer::editing-started and separators.
3335
3336 Tue Mar 15 20:34:33 2005  Manish Singh  <yosh@gimp.org>
3337
3338         * gdk/x11/gdkinput-xfree.c: #include gdkaliasdef.c here too.
3339
3340 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
3341
3342         Make PLT-reduction work with gcc4, and don't include
3343         everything in gdkalias.h:
3344
3345         * gdk/gdk.symbols: Group symbols by header and source file.
3346         * gdk/makegdkalias.pl: Protect definitions by the same
3347         preprocessor symbols used to guard the headers. Move
3348         the alias declarations to a separate file which is
3349         produced when calling makegdkalias.pl -def
3350         * gdk/Makefile.am (gdkaliasdef.c): Add a rule to generate this
3351         file.
3352         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h after the other
3353         headers, include gdkaliasdef.c at the bottom.
3354
3355 2005-03-16  Tor Lillqvist  <tml@novell.com>
3356
3357         * gdk/win32/gdkdisplay-win32.c (_win32_on_clipboard_change): Print
3358         debugging output only if asked for, not always.
3359
3360         * gdk/win32/*.c: Use the %+d%+d format for coordinate pairs in
3361         debugging printout instead of +%d+%d. Misc other additions and
3362         cosmetic improvements to debugging printouts. Use API_CALL() and
3363         GDI_CALL() macros in more places.
3364
3365         * gdk/win32/gdkwindow-win32.c (gdk_window_move, gdk_window_resize,
3366         gdk_window_move_resize): To detect child windows, check whether
3367         the real parent is not the desktop window, instead of relying on
3368         the GDK window type being GDK_WINDOW_CHILD. Foreign GtkPlug
3369         windows have a GDK window type GDK_WINDOW_FOREIGN, but are still
3370         de facto child windows.
3371
3372         * gdk/win32/gdkprivate-win32.h
3373         * gdk/win32/*.c: Drop global variable _gdk_root_window, just call
3374         GetDesktopWindow(). Rename the GdkWindow* _gdk_parent_root to
3375         _gdk_root.
3376
3377         * gdk/win32/gdkwindow-win32.h (GdkWindowImplWin32): Add
3378         toplevel_window_type field.
3379
3380         * gdk/win32/gdkwindow-win32.c: As there is only one root window in
3381         GDK on Win32, we can compare directly to _gdk_root instead of
3382         checking the window type.
3383         (gdk_window_reparent): When reparenting a child of the desktop
3384         clear out the window decorations. Correspondingly, when
3385         reparenting to the desktop, add decorations. As in the X11
3386         backend, save the window type of a toplevel window when
3387         reparenting, in case it is reparented back to toplevel.
3388
3389 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
3390
3391         * gtk/gtkradioaction.c (gtk_radio_action_get_group): Add an
3392         example for manually setting up a group of actions.
3393
3394         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3395         Document that inline completion requires text-column to be set.
3396         (gtk_entry_completion_compute_prefix): Return NULL if text-column
3397         is not set.
3398
3399         * gtk/gtkentry.c (check_completion_callback): Call 
3400         gtk_entry_completion_complete() before inserting the prefix,
3401         otherwise the prefix may depend on (random) state of the
3402         filter model.  
3403
3404 2005-03-15  Anders Carlsson  <andersca@imendio.com>
3405
3406         * docs/iconcache.txt:
3407         Update spec.
3408         
3409         * gtk/gtkiconcache.c: (find_image_offset),
3410         (_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
3411         (_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
3412         * gtk/gtkiconcache.h:
3413         Update to be able to fetch pixbuf data and icon metadata.
3414         
3415         * gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
3416         (icon_info_ensure_scale_and_pixbuf):
3417         Use new cache functions.
3418         
3419         * gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
3420         (maybe_cache_image_data), (scan_directory), (write_pixdata),
3421         (get_image_meta_data_size), (get_image_pixel_data_size),
3422         (get_image_data_size), (get_single_node_size), (get_bucket_size),
3423         (write_bucket), (main):
3424         Update to write pixbuf data as well as information from .icon
3425         files.
3426         
3427 2005-03-15  Tor Lillqvist  <tml@novell.com>
3428
3429         * gdk/win32/gdkmain-win32.c (_gdk_win32_key_to_string): New
3430         debugging function. As GetKeyNameText() returns a localized key
3431         name we need to convert it to UTF-8.
3432
3433         * gdk/win32/gdkprivate-win32.h: Declare it.
3434
3435         * gdk/win32/gdkevents-win32.c: Use it.
3436
3437         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal): Fix
3438         handling of children of foreign windows. They should be child
3439         windows from Windows's perspective, even if they are toplevel GDK
3440         windows.
3441
3442 2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
3443
3444         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
3445         for big window support. Now also the test in testgtk works.
3446
3447 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
3448
3449         * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
3450         style changes.  (#169334, Yury Puzis)
3451
3452         * gtk/gtkicontheme.c (gtk_icon_theme_set_custom_theme): Fix
3453         the doc comments.  (#169967, Masao Mutoh)
3454
3455 2005-03-12  Ivan, Wong Yat Cheung  <email@ivanwong.info>
3456
3457         Big window fix for Win32. Big windows are still emulated within
3458         16-bit coordinate limits, though. Big windows now work on NT-based
3459         Windows. (#169989)
3460
3461         * gdk/win32/gdkgc-win32.c (_gdk_win32_gdkregion_to_hrgn): Use
3462         32-bit coordinates.
3463
3464         * gdk/win32/gdkgeometry-win32.c: Largely rewrite.
3465
3466         * gdk/win32/gdkwindow-win32.c: Minor related changes.
3467         
3468 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
3469
3470         * gtk/gtkliststore.c (gtk_list_store_insert_with_valuesv): 
3471         Fix a doc typo.  (#169873, Johan Dahlin)
3472
3473         * gtk/gtkdialog.c (gtk_dialog_map): Don't
3474         try to focus the default_widget if there is 
3475         none.  (#169881, Thomas Leonard)
3476
3477 Wed Mar  9 19:20:44 2005  Manish Singh  <yosh@gimp.org>
3478
3479         * configure.in: Remove inadvertent gail references, require
3480         Pango 1.9.0
3481
3482 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
3483
3484         * configure.in: Require GLib 2.7.0
3485
3486 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
3487
3488         * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
3489         (#169728, Morten Welinder, Owen Taylor)
3490
3491         * gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
3492         in the docs.  (#169729, Morten Welinder)
3493
3494         * gtk/gtkimage.c (gtk_image_class_init): Fix a typo.
3495
3496         * gtk/gtkiconview.c (gtk_icon_view_set_model): Queue a resize 
3497         when the model is unset.  (#169528, Tomislav Jonjic)
3498
3499 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
3500
3501         * gtk/gtkviewport.c (gtk_viewport_class_init): 
3502         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
3503         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_class_init): 
3504         * gtk/gtktipsquery.c (gtk_tips_query_class_init): 
3505         * gtk/gtktext.c (gtk_text_class_init): 
3506         * gtk/gtkstatusbar.c (gtk_statusbar_class_init): 
3507         * gtk/gtkspinbutton.c (gtk_spin_button_class_init): 
3508         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): 
3509         * gtk/gtkoptionmenu.c (gtk_option_menu_class_init): 
3510         * gtk/gtkoldeditable.c (gtk_old_editable_class_init): 
3511         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): 
3512         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): 
3513         * gtk/gtktoolitem.c (gtk_tool_item_class_init): 
3514         * gtk/gtkimage.c (gtk_image_class_init): 
3515         * gtk/gtkruler.c (gtk_ruler_class_init): 
3516         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
3517         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): 
3518         * gtk/gtkprogress.c (gtk_progress_class_init): 
3519         * gtk/gtkmenu.c (gtk_menu_class_init): 
3520         * gtk/gtkscale.c (gtk_scale_class_init): 
3521         * gtk/gtkpaned.c (gtk_paned_class_init): 
3522         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
3523         * gtk/gtkfontbutton.c (gtk_font_button_class_init): 
3524         * gtk/gtkfontsel.c (gtk_font_selection_class_init): 
3525         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
3526         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3527         * gtk/gtkcurve.c (gtk_curve_class_init): 
3528         * gtk/gtkcombo.c (gtk_combo_class_init): 
3529         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
3530         * gtk/gtkcolorbutton.c (gtk_color_button_class_init): 
3531         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): 
3532         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): 
3533         * gtk/gtkcheckbutton.c (gtk_check_button_class_init): 
3534         * gtk/gtktogglebutton.c (gtk_toggle_button_class_init): 
3535         * gtk/gtkcellview.c (gtk_cell_view_class_init): 
3536         * gtk/gtktoolbar.c (gtk_toolbar_class_init): 
3537         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): 
3538         * gtk/gtkclist.c (gtk_clist_class_init): 
3539         * gtk/gtkctree.c (gtk_ctree_class_init): 
3540         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): 
3541         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init): 
3542         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
3543         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_class_init): 
3544         * gtk/gtkcalendar.c (gtk_calendar_class_init): 
3545         * gtk/gtkbbox.c (gtk_button_box_class_init): 
3546         * gtk/gtktable.c (gtk_table_class_init): 
3547         * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): 
3548         * gtk/gtkframe.c (gtk_frame_class_init): 
3549         * gtk/gtkaction.c (gtk_action_class_init): 
3550         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): 
3551         * gtk/gtkaboutdialog.c (gtk_about_dialog_class_init): 
3552         * gtk/gtkdialog.c (gtk_dialog_class_init): More of the same.
3553
3554 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
3555
3556         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): 
3557         * gtk/gtkrange.c (gtk_range_class_init): 
3558         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): 
3559         * gtk/gtktexttag.c (gtk_text_tag_class_init): 
3560         * gtk/gtktextview.c (gtk_text_view_class_init): 
3561         * gtk/gtkscrollbar.c (gtk_scrollbar_class_init): 
3562         * gtk/gtknotebook.c (gtk_notebook_class_init): 
3563         * gtk/gtkentry.c (gtk_entry_class_init): 
3564         * gtk/gtkexpander.c (gtk_expander_class_init): 
3565         * gtk/gtkarrow.c (gtk_arrow_class_init): 
3566         * gtk/gtkalignment.c (gtk_alignment_class_init): 
3567         * gtk/gtkbutton.c (gtk_button_class_init): 
3568         * gtk/gtklabel.c (gtk_label_class_init): 
3569         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
3570         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
3571         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
3572         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
3573         * gtk/gtkbox.c (gtk_box_class_init): 
3574         * gtk/gtkwindow.c (gtk_window_class_init, gtk_window_class_init): 
3575         * gtk/gtkcontainer.c (gtk_container_class_init): 
3576         * gtk/gtkwidget.c (gtk_widget_class_init): 
3577         * gtk/gtkobject.c (gtk_object_class_init): Use canonical names
3578         when registering param specs.
3579
3580         * demos/gtk-demo/editable_cells.c: Use GtkCellRendererCombo
3581         (#169607, Mark McLoughlin)
3582         
3583         * gtk/gtk.symbols: Add the new attributes here, too.
3584
3585         * gtk/gtkwidget.h: 
3586         * gtk/gtktreeview.h: 
3587         * gtk/gtktreeviewcolumn.h: 
3588         * gtk/gtktextbuffer.h: 
3589         * gtk/gtkobject.h: 
3590         * gtk/gtkfilechooserdialog.h: 
3591         * gtk/gtkdialog.h: 
3592         * gtk/gtkcontainer.h: 
3593         * gtk/gtkcelllayout.h: 
3594         * gtk/gtkaboutdialog.h: Use G_GNUC_NULL_TERMINATED where
3595         appropriate.  (#165682, Marc Meissner)
3596
3597 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
3598
3599         Convert the gdk keyval-keyname tables to a big string
3600         + offsets. (#168901)
3601         
3602         * gdk/gen-keyname-table.pl: Perl script inspired by
3603         pango/tools/gen-color-table.pl to create the 
3604         gdk_keys_by_keyval and gdk_keys_by_name tables as lists
3605         of offsets pointing into a big const string.
3606         
3607         * gdk/keynames.txt: List of keyval-keyname pairs.
3608         * gdk/keyname-table.h: Generated tables.
3609
3610         * gdk/gdkkeynames.c: Include keyname-table.h and don't
3611         generate the inverse table at runtime.
3612
3613 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
3614
3615         * gtk/gtkstyle.c: Document which parameters may be NULL.  
3616         (#166855, Frank Naumann)
3617
3618 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
3619
3620         * AUTHORS: Add original authors of incorporated software.
3621
3622 Thu Mar  3 16:59:44 2005  Manish Singh  <yosh@gimp.org>
3623
3624         * configure.in: URL escape the '+' in gtk+ in the bugzilla URL.
3625
3626 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
3627
3628         * gtk/gtksettings.c (gtk_settings_get_property): 
3629         * gtk/gtkrc.c (gtk_rc_parse_assignment): Don't leak 
3630         the values here.  (#169047, Philip Langdale)
3631
3632         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
3633         Don't warn if a stock icon cannot be found.  (#168830,
3634         Sven Neumann)
3635
3636 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
3637
3638         * gtk/gtkwidget.c (gtk_widget_reparent_subwindows): 
3639         Avoid warnings if gtk_widget_reparent() is called at
3640         unusual times.  (#168966, Christian Persch)
3641
3642 Tue Mar  1 14:04:08 2005  Manish Singh  <yosh@gimp.org>
3643
3644         * gdk/x11/gdkproperty-x11.c (virtual_atom_check_init): Cast to avoid
3645         const warnings on data structure seeding.
3646
3647 Tue Mar  1 13:53:56 2005  Manish Singh  <yosh@gimp.org>
3648
3649         * gtk/xdgmime/xdgmime.[ch]: revert previous change, maintain ABI.
3650
3651 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
3652
3653         * gtk/gtkmenutoolbutton.c (button_state_changed_cb): 
3654         Fix prelighting.  (#157392, Vincent Noel, patch by
3655         Christian Persch)
3656
3657         * gtk/gtkicontheme.c (theme_lookup_icon): Make 
3658         icon data caching work again.  (#168851, Alexander Larsson)
3659
3660         * gdk-pixbuf/gdk-pixbuf.c:
3661         * gdk-pixbuf/gdk-pixbuf-features.h.in:
3662         Revert the previous change, since it breaks
3663         bin compat.
3664
3665 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
3666
3667         * gdk/gdkkeyuni.c
3668         * gdk/gdkpixbuf-drawable.c
3669         * gdk/gdkrgb.c
3670         * gdk/x11/gdkdnd-x11.c
3671         * gdk/x11/gdkevents-x11.c
3672         * gdk/x11/gdkproperty-x11.c
3673         * gdk/x11/gdkvisual-x11.c
3674         * gdk-pixbuf/gdk-pixbuf.c
3675         * gdk-pixbuf/gdk-pixbuf-features.h.in
3676         * gtk/gtkaction.c
3677         * gtk/gtkbindings.c
3678         * gtk/gtkcolorbutton.c
3679         * gtk/gtkcombo.c
3680         * gtk/gtkcontainer.c
3681         * gtk/gtkfilechooserdefault.c
3682         * gtk/gtkfilesel.c
3683         * gtk/gtkgamma.c
3684         * gtk/gtkiconview.c
3685         * gtk/gtkinputdialog.c
3686         * gtk/gtkitemfactory.c
3687         * gtk/gtkmenu.c
3688         * gtk/gtktextview.c
3689         * gtk/gtktooltips.c
3690         * gtk/gtktreedatalist.c
3691         * gtk/gtkuimanager.c
3692         * gtk/tree_minus.xpm
3693         * gtk/tree_plus.xpm
3694         * gtk/xdgmime/xdgmime.c
3695         * gtk/xdgmime/xdgmime.h: 
3696         Move constant data to .rodata.
3697
3698 2005-02-27  Matthias Clasen  <mclasen@redhat.com>
3699
3700         * gtk/gtkaction.c (connect_proxy): Improve the handling
3701         of buttons as action proxys.  (#165534, Milosz Derezynski)
3702
3703         * gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
3704         (#168646, Vincent Untz)
3705
3706         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
3707         Unset "focus-on-click" for the save folder combo.  (#168688,
3708         Sven Neumann)
3709
3710 2005-02-25  Matthias Clasen  <mclasen@redhat.com>
3711
3712         * demos/testpixbuf.c (main): Remove a C++ comment.  (#168531, 
3713         Paul Cornett)
3714
3715         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Don't leak a 
3716         path here.  (#168443, Morten Welinder)
3717
3718 2005-02-24  Robert Ögren  <gtk@roboros.com>
3719
3720         Implement better handling of Wintab tablet context overlap on
3721         Win32. (#167298)
3722
3723         * gdk/win32/gdkinput-win32.c (_gdk_input_set_tablet_active): New
3724         function that brings any tablet contexts to the top of the overlap
3725         order.
3726         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_set_tablet_active ()
3727         * gdk/win32/gdkevents-win32.c (gdk_event_translate):
3728         Call _gdk_input_set_tablet_active when a window is activated (on
3729         WM_ACTIVATE)
3730
3731 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3732
3733         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
3734         Don't leak parent_path.  (#168435, Morten Welinder)
3735
3736 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
3737
3738         * gtk/gtkstyle.c: Add
3739
3740         g_return_if_fail (style->depth == gdk_drawable_get_depth(window));
3741
3742         all over the place.
3743
3744 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3745
3746         * gtk/gtkcombobox.c: Consistently use gtk_tree_row_reference_valid().
3747         (gtk_combo_box_model_row_deleted): Update the displayed row in 
3748         the cell_view.  (#167842, Gustavo Carneiro)
3749
3750 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3751
3752         Fix #167259, reported by  Christian Persch:
3753         
3754         * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
3755         widget, even if we avoid the unrealizing. 
3756         (gtk_widget_reparent_subwindows): Make reparenting work for
3757         !NO_WINDOW widgets which have other windows which are siblings
3758         of widget->window (as e.g. GtkSpinButton).
3759
3760 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3761
3762         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_changed): 
3763         Don't emit a warning if a parent node is filtered out. (#164726,
3764         Olivier Sessink)
3765
3766 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
3767
3768         * gtk/gtklabel.c (gtk_label_style_set): Revert the last 
3769         change, since gtk_widget_set_style_internal() already
3770         queues a resize.
3771
3772 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
3773
3774         * gtk/gtklabel.c (gtk_label_style_set): Queue a resize, since
3775         fonts may have changed.  (#164128, Phil Blundell)
3776
3777         * gtk/gtkaboutdialog.c (gtk_about_dialog_init) 
3778         (gtk_about_dialog_new): Move initialization code from _new to 
3779         _init.  (#168249, Murray Cumming) 
3780
3781 Wed Feb 23 17:34:01 2005  Jonathan Blandford  <jrb@redhat.com>
3782
3783         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Patch from
3784         jorn@nl.linux.org (Jorn Baayen) to notice changes to fixed-height
3785         widgets.
3786
3787 2005-02-23  Tor Lillqvist  <tml@novell.com>
3788
3789         * gdk/win32/gdkkeys-win32.c (update_keymap): Workaround for bug in
3790         MapVirtualKey(VK_DIVIDE, 0) in some Windows versions. (#142998)
3791
3792 Tue Feb 22 13:49:09 2005  Manish Singh  <yosh@gimp.org>
3793
3794         * gtk/updateiconcache.c: #include <config.h>
3795
3796 2005-02-22  Federico Mena Quintero  <federico@ximian.com>
3797
3798         Merged from gtk-2-6:
3799
3800         Fix #164940, patch by Ben Maurer and Tommi Komulainen.
3801
3802         * gdk/gdkrgb.c (gdk_rgb_convert_565_d): Constify the "dmp" variable.
3803         (gdk_rgb_convert_565_d): Likewise.
3804         (DM_565): Made a static const precomputed array to avoid
3805         allocating it at runtime.
3806         (gdk_rgb_preprocess_dm_565): #ifdef out.
3807
3808 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
3809
3810         * gtk/gtkwindow.c: 
3811         * gtk/gtkclipboard.c: Fix links to freedesktop.org specs
3812         in the documentation.
3813
3814         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
3815         Set have_render_with_trapezoids to GDK_YES when we have 
3816         a new enough Render extension.  (#167965,Billy Biggs) 
3817
3818         * gtk/gtkwindow.c (gtk_window_present): Use the timestamp of
3819         the last user interaction when focusing the window.  (#166379, 
3820         Elijah Newren)
3821
3822 Thu Feb 17 14:58:16 2005  Manish Singh  <yosh@gimp.org>
3823
3824         * gtk/gtkuimanager.c (start_element_handler): make sure expand
3825         is initialized, cast to GTK_SEPARATOR_TOOL_ITEM.
3826
3827 Thu Feb 17 14:52:57 2005  Manish Singh  <yosh@gimp.org>
3828
3829         * gtk/gtkcombobox.c: Pass gtk_widget_get_toplevel() a GTK_WIDGET.
3830
3831 2005-02-16  Matthias Clasen  <mclasen@redhat.com>
3832
3833         * docs/iconcache.txt: Add some information about the
3834         icon cache format (since I can't locate it at freedesktop.org)
3835
3836         Fixes for #143829, Tommi Komulainen, Christian Persch:
3837         
3838         * gtk/gtktreeview.c (gtk_tree_view_destroy): Remove the
3839         typeselect_flush_timeout when destroying the widgets
3840         it is operating on.  
3841         (gtk_tree_view_ensure_interactive_directory): Add the 
3842         popup to the window group of the toplevel it belongs to.
3843
3844         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget) 
3845         (gtk_combo_box_popup): Do the same here. 
3846
3847 2005-02-14  Matthias Clasen  <mclasen@redhat.com>
3848
3849         * configure.in: Kill --enable-ansi  (#164394)
3850
3851 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
3852
3853         * gtk/gtkpathbar.c (gtk_path_bar_finalize): Stop scrolling 
3854         when the pathbar goes away.  (#167094, Rodney Dawes)
3855         (change_icon_theme): Use GTK_ICON_SIZE_MENU here as 
3856         well  (Vincent Noel)
3857
3858 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
3859
3860         Support vertical menubars  (#166632): 
3861         
3862         * gtk/gtkenums.h (GtkPackDirection): New enumeration for pack 
3863         directions, with values for left-to-right, right-to-left, 
3864         top-to-bottom and bottom-to-top.
3865
3866         * gtk/gtk.symbols: 
3867         * gtk/gtkmenubar.h: 
3868         * gtk/gtkmenubar.c: Add two properties, pack-direction and
3869         child-pack-direction, which specify how children and 
3870         grandchildren of a menubar are packed, with getters and setters. 
3871
3872         * gtk/gtkmenubar.c (gtk_menu_bar_set_property): 
3873         (gtk_menu_bar_get_property): Implement set_property and get_property.
3874
3875         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): 
3876         (gtk_menu_bar_size_allocate): Take pack direction into account.
3877
3878         * gtk/gtkmenubar.c (gtk_menu_bar_move_current): Implement 
3879         move_current here move all the menubar-specific direction 
3880         tweaking from the generic menushell implementation here.
3881
3882         * gtk/gtkmenu.c (gtk_menu_move_current): Move  menu-specific 
3883         direction tweaking from the generic menushell implementation here.
3884
3885         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): 
3886         (gtk_menu_bar_size_allocate): Take pack direction into account.
3887
3888         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_size_request) 
3889         (gtk_image_menu_item_size_allocate): 
3890         (gtk_image_menu_item_toggle_size_request): Take child pack 
3891         direction into account and pack the image vertically if
3892         necessary.
3893
3894         * gtk/gtkmenushell.c (gtk_menu_shell_real_select_item):
3895         Set the submenu direction to left-right for menuitems in 
3896         vertical menubars.
3897         (gtk_real_menu_shell_move_current): Simplify by moving
3898         direction tweaking to menu- and menubar-specific 
3899         implementations. Take pack direction into account when
3900         doing fallbacks.
3901
3902         * tests/testmenubars.c: Test menubars in various packing
3903         direction combinations.
3904
3905         * tests/Makefile.am (noinst_PROGRAMS): Add testmenubars.
3906
3907 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
3908
3909         Complete the fix for #165770, Vincent Noel:
3910         
3911         * gtk/gtkfilechooserbutton.c (FALLBACK_ICON_SIZE): Make the
3912         fallback size be 16, to be equal to the default for
3913         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
3914         (gtk_file_chooser_button_init):
3915         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
3916         GTK_ICON_SIZE_SMALL_TOOLBAR. 
3917
3918 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
3919
3920         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): Fix RTL
3921         keynav for going from menubar to menu.
3922
3923 2005-02-08  Christian Rose  <menthos@menthos.com>
3924
3925         * configure.in: Added "xh" to ALL_LINGUAS.
3926
3927 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
3928
3929         * gtk/gtkuimanager.c (start_element_handler): Accept 
3930         the "expand" attribute and set a flag in the node if it
3931         is set to "true".
3932         (update_node): If the expand flag is set, make separator
3933         toolitems non-drawn and expanding.  (#166489, Christian Persch)
3934
3935 2005-02-05  Hans Breuer  <hans@breuer.org>
3936
3937         * gdk/makefile.msc gdk/win32/makefile.msc gtk/makefile.msc.in :
3938         build with Cairo dependency. The patch to acually use Cairo
3939         on win32 will be on gtk-devel-list soon.
3940         * tests/makefile.msc : add testcairo building
3941
3942         * gtk/stock-icons/makefile.msc : split command line into two to
3943         work with the shells default
3944
3945 Fri Feb  4 14:16:31 2005  Manish Singh  <yosh@gimp.org>
3946
3947         * gtk/gtkaccelgroup.c (substitute_underscores): remove unused
3948         function.
3949
3950         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
3951         Add some extra parens for bitop order of operations disambiguiation.
3952
3953         * gtk/gtkstock.c: Fix const confusion, make our own copy of the 
3954         domain when setting a translate function.
3955
3956         * tests/testcombo.c: removed unused variable.
3957
3958 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
3959
3960         * gtk/gtkstock.c (gtk_stock_lookup): Handle item->translation_domain
3961         being NULL.  (#166179, Diego Gonzalez)
3962
3963 2005-02-04  Owen Taylor  <otaylor@redhat.com>
3964
3965         * configure.in: Revert gtk_binary_version to 2.4.0. Fix
3966         up comment to talk only about backwards compat, not
3967         forward/backwards compat. (#166293, reported by Vincent Noel)
3968
3969 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
3970
3971         * gtk/gtkpaned.c (gtk_paned_compute_position): Work better
3972         when there is not enough space. This avoids a nasty size
3973         allocation loop in the file chooser.  (#154007, reported 
3974         by Milosz Derezynski, patch by Robert Ögren)
3975
3976 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
3977
3978         * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious
3979         selection of RTL direction if the widget does not have 
3980         focus.  (#164125, Frederic Crozat)
3981
3982 Thu Feb  3 19:15:55 2005  Manish Singh  <yosh@gimp.org>
3983
3984         * gdk/x11/gdkdrawable-x11.c: #include cairo-xlib.h
3985
3986 2005-02-03  Owen Taylor  <otaylor@redhat.com>
3987
3988         * gdk/gdkdrawable.[ch] gdkpixmap.c gdkwindow.c: Add
3989         gdk_drawable_set_cairo_target().
3990
3991         * tests/testtreeflow.c (enum): Use grand not rand as a variable
3992         name because one of the cairo headers is pulling in stdlib.h.
3993
3994         * tests/testcairo.c tests/Makefile.am: Add a simple cairo based
3995         example.
3996
3997         * configure.in: Bump release to 2.7.0, gtk_binary_version to 2.7.0.
3998
3999         * Require libpangocairo for all backends.
4000
4001 2005-02-03  Tor Lillqvist  <tml@novell.com>
4002
4003         * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the
4004         wide character version of ImmGetCompositionString() here,
4005         too. (#165278, Takuro Ashie)
4006
4007 2005-02-03  Matthias Clasen  <mclasen@redhat.com>
4008
4009         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Don't do
4010         one roundtrip per motion event.  (#166173, pointed out
4011         by Chris Lee, patch by Søren Sandmann)
4012
4013         * gtk/gtk.symbols: 
4014         * gtk/gtkstock.h: 
4015         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
4016         New function which allows to change the function used for
4017         translation stock labels, on a per-domain basis. Use this
4018         functionality to switch the GTK+ stock items to use Q_()
4019         prefixed msgids.  (#166179, Funda Wang)
4020         
4021         * gdk/gdkkeynames.c: Make the gdk_key array const (#166075,
4022         Tommi Komulainen)
4023
4024 2005-02-02  Federico Mena Quintero  <federico@ximian.com>
4025
4026         Merged from gtk-2-6:
4027
4028         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
4029         Don't select the first row if the chooser is not mapped.  This
4030         happens when it's acting on behalf of GtkFileChooserButton.  Also,
4031         don't select the first row if we are in SAVE or CREATE_FOLDER
4032         modes --- I had missed that (see the ChangeLog entry from
4033         2005-01-18).  Fixes #165264.
4034
4035 2005-02-02  Tor Lillqvist  <tml@novell.com>
4036
4037         Implement lazy extended input initialization on Win32, by Robert
4038         Ögren. Fixes #163163, possibly #162334. Lazy initialization would
4039         be a good idea in any case even if it didn't fix any visible
4040         problems, though.
4041
4042         The Wacom tablet driver seems to get confused if Wintab is
4043         initialized but no window is shown before the process exits. This
4044         is the case for some GIMP plug-ins, for instance. 
4045
4046         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Made
4047         non-static (and renamed).
4048         (_gdk_input_init): Don't call _gdk_input_wintab_init_check().
4049
4050         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_wintab_init_check().
4051
4052         * gdk/win32/gdkinput.c (gdk_devices_list,
4053         gdk_display_list_devices, gdk_input_set_extension_events): Call
4054         _gdk_input_wintab_init_check() here instead.
4055
4056 2005-02-02  Ivan, Wong Yat Cheung  <email@ivanwong.info>
4057
4058         * gdk/win32/gdkselection.c: Use a FIFO list for storing GdkSelProp
4059         of a single window so that gtk_clipboard_request_contents() can be
4060         called inside a GtkClipboardReceivedFunc(). (#163844)
4061
4062 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
4063
4064         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look for icons
4065         in XDG_DATA_DIRS/pixmaps.  (#165950, Thomas Zajic)
4066
4067         * gtk/gtkwindow.c (gtk_window_set_icon_name): Set info->icon_list
4068         to NULL after freeing it.  (#165800, Damon Chaplin)
4069
4070 2005-02-01  Michael Natterer  <mitch@gimp.org>
4071
4072         * configure.in: depend on stable pango-1.8, not unstable 1.7
4073
4074 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
4075
4076         Merged from gtk-2-6:
4077
4078         * gtk/gtkfilechooserdefault.c
4079         (browse_files_model_finished_loading_cb): Don't
4080         g_assert_not_reached() if we are in any other state.  Another code
4081         path may have triggered a folder reload.  Fixes #165556.
4082
4083 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
4084
4085         Merged from gtk-2-6:
4086
4087         Fix #165770:
4088
4089         * gtk/gtkfilechooserdefault.c (FALLBACK_ICON_SIZE): Make the
4090         fallback size be 16, to be equal to the default for
4091         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
4092         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
4093         GTK_ICON_SIZE_SMALL_TOOLBAR.
4094
4095 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
4096
4097         * */*.c: Fix many instances of "the the" in docs and
4098         comments.  (#165815, Masao Mutoh)
4099
4100         * gtk/updateiconcache.c (main): Add a --quiet option.
4101
4102 2005-02-01  Tor Lillqvist  <tml@novell.com>
4103
4104         * gdk/win32/gdkkeys-win32.c (handle_special, set_shift_vks,
4105         reset_after_dead, handle_dead): New functions, code blocks
4106         refactored out of update_keymap(). No functionality change.
4107
4108         (update_keymap): Use ToUnicodeEx() when available (on NT-based
4109         Windows) instead of ToAsciiEx(). Makes keyboard input work in
4110         Unicode-only input locales that don't have any ANSI codepage, for
4111         instance Hindi and Bengali. Use _gdk_input_codepage only on
4112         Win9x. (#165723)
4113
4114         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
4115         WM_INPUTLANGCHANGE, use GetLocaleInfo() instead of
4116         TranslateCharsetInfo() to get the input locale's corresponding
4117         codepage, if any.
4118
4119 2005-01-31  Matthias Clasen  <mclasen@redhat.com>
4120
4121         * modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate 
4122         NULL-terminated va lists.  (#165683)
4123
4124 2005-01-29  Matthias Clasen  <mclasen@redhat.com>
4125
4126         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw): 
4127         Typo fix.  (#165581, Masao Mutoh)
4128
4129 Thu Jan 27 14:25:45 2005  Manish Singh  <yosh@gimp.org>
4130
4131         * README.cvs-commits: update ancient IRC info.
4132
4133 2005-01-27  Federico Mena Quintero  <federico@ximian.com>
4134
4135         Merged from gtk-2-6:
4136
4137         * gtk/gtkfilechooserdefault.c
4138         (gtk_file_chooser_default_select_path): Oops, don't assert that we
4139         can't reach the end of the function; this happens if we are still
4140         loading but don't need a path change.  Fixes #165213.
4141
4142 2005-01-27  Matthias Clasen  <mclasen@redhat.com>
4143
4144         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
4145         Make wrapping work in RTL mode.  
4146
4147         * gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
4148         obey HIG spacing a bit more, add a hand cursor when over the
4149         link button.  (#163979, Jorn Baayen)
4150
4151 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
4152
4153         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
4154         Don't allow -1 as minimum-key-length.
4155         (gtk_entry_completion_set_model): Add missing notification.
4156         (gtk_entry_completion_set_minimum_key_length): Add missing
4157         notification, allow setting minimum-key-length to 0.  (#165194,
4158         Vincent Ladeuil)
4159
4160 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
4161
4162         * gtk/gtkaboutdialog.c (display_license_dialog): Make sure
4163         the license dialog is initially displayed without a horizontal
4164         scrollbar.  
4165         (gtk_about_dialog_class_init): Document the fact that the 
4166         license text is not wrapped.  (#165012, Christian Rose)
4167
4168 2005-01-25  Matthias Clasen  <mclasen@redhat.com>
4169
4170         * gtk/gtkbutton.c (gtk_button_set_image): Fix docs.  (#165180,
4171         Jeff Franks)
4172
4173         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Fix 
4174         docs.  (#165163, Jeff Franks)
4175         
4176         * gtk/gtkimage.c (gtk_image_get_property): Use the correct setter
4177         for a string GValue.  (#165203, Damon Chaplin)
4178
4179 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
4180
4181         * gdk/x11/gdkdisplay-x11.c (_gdk_windowing_set_default_display): 
4182         Initialize user_time from DESKTOP_STARTUP_ID.  (#165131,
4183         Elijah Newren)
4184
4185 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
4186
4187         * gtk/gtkfilechooserdefault.c: Removed leftover comments.
4188
4189 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
4190
4191         Merged from gtk-2-6:
4192
4193         Fix #147785 and clean up the loading code:
4194
4195         * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states
4196         be EMPTY, PRELOAD, LOADING, FINISHED.
4197         (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state.
4198         (struct _GtkFileChooserDefault): Added a pending_select_paths
4199         field.
4200         (load_remove_timer): Add the new states.
4201         (load_setup_timer): Likewise.
4202         (load_timeout_cb): Likewise.  Switch to the LOAD_LOADING state.
4203         (browse_files_model_finished_loading_cb): Switch to the
4204         LOAD_FINISHED state.
4205         (enum PendingOp): Removed.
4206         (struct _GtkFileChooserDefault): Removed the pending_op and
4207         pending_select_path fields.
4208         (pending_select_paths_free): New utility function.
4209         (pending_select_paths_add): New utility function.
4210         (gtk_file_chooser_default_finalize): Call
4211         pending_select_paths_free().
4212         (pending_op_queue): Removed.
4213         (pending_op_process): Removed.
4214         (pending_select_paths_process): New function.
4215         (browse_files_model_finished_loading_cb): Call
4216         pending_select_paths_process().
4217         (center_selected_row_foreach_cb): Handle multiple selection by
4218         only centering the first row.
4219         (get_is_file_filtered): Constify.
4220         (gtk_file_chooser_default_select_path): Queue into a list of paths
4221         to select if we are not finished loading.
4222         (show_and_select_paths): New utility function.
4223         (up_folder_handler): Use pending_select_paths_add().
4224         (gtk_file_chooser_default_should_respond): Do not call
4225         pending_op_queue(); free the pending_selected_paths instead.
4226         (gtk_file_chooser_default_initial_focus): Don't queue a pending
4227         operation, and don't select the first row unconditionally --- this
4228         will happen when the folder is done loading.
4229         (shortcuts_row_activated_cb): Free the pending_select_paths.
4230         (pending_select_paths_store_selection): New utility function.
4231         (gtk_file_chooser_default_map): Call
4232         pending_select_paths_store_selection() to save the selection
4233         before reloading the folder.
4234         (select_func): Umm?  Call gtk_tree_selection_select_iter().  Don't
4235         move the cursor here; it will be done when processing the pending paths.
4236
4237         * tests/testfilechooser.c (main): Add a button to the command
4238         window to unmap and remap the file chooser.
4239
4240 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
4241
4242         * docs/tutorial/gtk-tut.sgml:
4243         * docs/tutorial/gtk_tut.sgml:
4244         * docs/reference/gtk/tmpl/gtkliststore.sgml:
4245         * gtk/gtkactiongroup.c:
4246         * gtk/gtksizegroup.c:
4247         * gtk/gtksizegroup.h:
4248         * gtk/gtktogglebutton.c: Replace "effect" by "affect" where
4249         appropriate.  (#165108, Dan Winship)
4250
4251 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
4252
4253         * gtk/gtkwidget.c (gtk_widget_class_init): Document 
4254         GtkWidget::style-set.  (#164222, Alex Graveley)
4255         
4256 2005-01-22  Matthias Clasen  <mclasen@redhat.com>
4257
4258         * gdk/gdkdisplay.h (gdk_display_add_client_message_filter_full): 
4259         Remove the accidentally added prototype for this unimplemented 
4260         function.  (#164893, Jeff Franks)
4261
4262         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): Avoid spurious
4263         drags.  (#164884)
4264
4265 2005-01-23  Tor Lillqvist  <tml@novell.com>
4266
4267         * gdk/win32/gdkkeys-win32.c (update_keymap): Handle Greek tonos
4268         dead accent key. (#164859, reported and fix verified by Daniel
4269         Atallah.)
4270
4271         * gtk/gtkimcontextsimple.c (gtk_compose_seqs): Handle
4272         GDK_Greek_accentdieresis (tonos and dialytika) combining with iota
4273         and upsilon.
4274
4275         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_volume_get_display_name): 
4276         Don't call GetVolumeInformation() for network drives. They might
4277         be disconnected, and calling GetVolumeInformation() will then
4278         cause long delays. (#164448, reported by Dave Neary.) It seems to
4279         be very hard to reliably find out whether a network drive is
4280         connected or not, so it's easier to just not try getting the
4281         volume name for them. See the bug report for discussion.
4282
4283         Make volume name display formats translatable.
4284
4285         Fix for #163702, from Ivan Wong: 
4286         
4287         * gdk/win32/gdkprivate-win32.h 
4288         * gdk/win32/gdkglobals-win32.c: New flag _ignore_destroy_clipboard.
4289         
4290         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle
4291         WM_DESTROYCLIPBOARD. Unless _ignore_destroy_clipboard, generate a
4292         GDK_SELECTION_CLEAR event.
4293
4294         * gdk/win32/gdkselection-win32.c
4295         (gdk_selection_owner_set_for_display): Set _ignore_destroy_clipboard
4296         when emptying the clipboard ourselves.
4297
4298         (gdk_selection_send_notify_for_display): Remove the artifical
4299         GDK_SELECTION_CLEAR event generation.
4300
4301 2005-01-21  Matthias Clasen  <mclasen@redhat.com>
4302
4303         * gtk/gtkwidget.c (gtk_widget_get_accessible): More details
4304         provided by Bill Haneman.
4305
4306 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4307
4308         * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
4309         George Kraft IV)
4310
4311         * gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
4312         here, even if the only focusable widgets are labels.
4313
4314 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4315
4316         Support tinting in GtkCellRendererPixbuf (#162903, Jorn Baayen):
4317         
4318         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init) 
4319         Add a follow-state property which when TRUE causes the pixbuf
4320         to be tinted according to state.
4321
4322         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
4323         Use follow-state and colorize the pixbuf when appropriate.      
4324         
4325 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4326
4327         Support wrapping in GtkCellRendererText  (#163608):
4328         
4329         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
4330         Add wrap-mode and wrap-width properties which cause a 
4331         text cell to break to a specified width when set.
4332
4333         * gtk/gtkcellrenderertext.c (get_layout): Use wrap-mode
4334         and wrap-width when they are set.
4335
4336 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4337
4338         * gtk/gtkmodules.c (load_module): Don't reverse the order
4339         of modules when putting them in gtk_modules.  (#162676, Dennis
4340         Cranston, patch by Remus Draica)
4341
4342         * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
4343         if the tree is empty.  (#164669, Priit Laes)
4344
4345 Wed Jan 19 18:57:02 2005  Manish Singh  <yosh@gimp.org>
4346
4347         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Call
4348         GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
4349         function a bit too.
4350
4351 Wed Jan 19 17:17:31 2005  Manish Singh  <yosh@gimp.org>
4352
4353         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Squash
4354         strict aliasing warning in _NET_VIRTUAL_ROOTS code.
4355
4356 2005-01-19  Tor Lillqvist  <tml@novell.com>
4357
4358         * gdk/win32/gdkkeys-win32.c (update_keymap,
4359         gdk_keymap_translate_keyboard_state): Handle keyboards with
4360         ShiftLock (and not CapsLock) correctly. (#161814)
4361
4362 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
4363
4364         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond):
4365         In save mode, don't return paths containing nonexisting 
4366         directories.  (#162443, Jean Marie Favreau)
4367
4368         * gtk/gtkobject.c (gtk_object_add_arg_type): Use GLib limit 
4369         macros to avoid sparse warnings. Pointed out by Kjartan Maraas.
4370
4371         * gdk/x11/gdkdisplay-x11.c: Precache the _NET_VIRTUAL_ROOTS
4372         atom.
4373
4374         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): 
4375         Support _NET_VIRTUAL_ROOTS.  (#163910, Carsten Haitzler)
4376         
4377         * gdk/gdk.symbols: 
4378         * gdk/x11/gdkx.h: 
4379         * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_get_user_time): 
4380         Add a function to obtain the last user interaction 
4381         time.  (#163119, Elijah Newren)
4382
4383 Tue Jan 18 13:56:09 2005  Manish Singh  <yosh@gimp.org>
4384
4385         * gtk/gtkfilechooserdefault.c (pending_op_queue): Actually assign
4386         PENDING_OP_NONE.
4387
4388 Tue Jan 18 13:46:46 2005  Manish Singh  <yosh@gimp.org>
4389
4390         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids):
4391         disambiguate nested if/else.
4392
4393 2005-01-18  Federico Mena Quintero  <federico@ximian.com>
4394
4395         Merged from gtk-2-6:
4396
4397         * gtk/gtkfilechooserdefault.c (pending_op_queue): Don't queue an
4398         operation to select the first file if we are in SAVE or
4399         CREATE_FOLDER modes.  Executing that operation would overwrite the
4400         contents of the save-name entry.
4401
4402 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
4403
4404         * gdk/gdkdisplay.h: 
4405         * gdk/x11/gdkwindow-x11.c (gdk_display_warp_pointer): 
4406         * gdk/win32/gdkwindow-win32.c (gdk_display_warp_pointer): Add
4407         pointer warping to GDK.  (#160437)
4408
4409         * gtk/gtkcolorsel.c (key_press): Use gdk_display_warp_pointer.
4410
4411 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
4412
4413         * gtk/gtkstyle.c (gtk_default_draw_check) 
4414         (gtk_default_draw_option, gtk_default_draw_handle): Add some
4415         more NULL checks, patch by Michael Natterer.
4416
4417 Tue Jan 18 10:55:47 2005  Søren Sandmann  <sandmann@redhat.com>
4418
4419         * gtk/gtkstyle.c (gtk_default_draw_handle): Check for NULL detail
4420         and NULL widget.
4421
4422         * gtk/gtkstyle.c (gtk_default_draw_box): Check for NULL detail and
4423         NULL widget.  (#164477, Michael Natterer)
4424
4425 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
4426
4427         Avoid X errors when running against servers which
4428         implement XRender < 0.4.  (#164427, Albert Chin)
4429         
4430         * gdk/x11/gdkprivate-x11.h:
4431         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
4432         New function to check for trapezoid support in XRender.
4433         (gdk_x11_draw_trapezoids, _gdk_x11_drawable_draw_xtrapezoids): 
4434         Use it here.
4435         
4436         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a 
4437         separate have_render_with_trapezoids field.
4438
4439         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize it.
4440
4441 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
4442
4443         * gtk/gtkiconview.c: Remove debug output. (#164376, Jens Finke)
4444
4445 Mon Jan 17 16:44:36 2005  Jonathan Blandford  <jrb@redhat.com>
4446
4447         * docs/Makefile.am (EXTRA_DIST): add tree-column-sizing.png to
4448         dist.
4449
4450 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
4451
4452         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmarks): Save
4453         and restore the selected row in the bookmark list and the
4454         save folder combo.  (#164290)
4455
4456 2005-01-16  Matthias Clasen  <mclasen@redhat.com>
4457
4458         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new_with_backend):
4459         Fix argument order in docs.  
4460
4461 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
4462
4463         * gtk/gtktextview.c (gtk_text_view_check_keymap_direction): 
4464         * gtk/gtkentry.c (gtk_entry_create_layout): Prefer LTR over RTL 
4465         if the keymap is neutral.  (#164125, Phil Blundell)
4466
4467 2005-01-14  Matthias Clasen  <mclasen@redhat.com>
4468
4469         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Allow to
4470         reset the property to its default value -1. 
4471         (gtk_tree_view_get_search_column): Return the default value in
4472         the g_return_val_if_fail() check.  (#163864, Richard Hult)
4473
4474         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_value): 
4475         Add a translator hint.  (#163889)
4476
4477         * configure.in: Check for _NL_TIME_FIRST_WEEKDAY too, since it
4478         is an enum value, not a define. Pointed out by Tommi Komulainen.
4479         * gtk/gtkcalendar.c (gtk_calendar_init): Adapt.
4480
4481 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
4482
4483         * configure.in: Check for nl_langinfo()
4484         * gtk/gtkcalendar.c (gtk_calendar_init): Use nl_langinfo() when it's
4485         available to determine first day of week   (#163842, Vincent Untz)
4486
4487         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Add hints about 
4488         the lifecycle of widgets.  (#159503, Christian Persch)
4489
4490         * demos/gtk-demo/main.c (create_text): Use monospace for the 
4491         source code view.  (#163526, Theerud Lawtrakul)
4492
4493         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
4494         for the Credits button to avoid duplicate.  (#163465, Tim-Philipp 
4495         Müller)
4496         
4497         * configure.in: Add an OS_LINUX conditional.
4498
4499         * gdk/Makefile.am (TESTS):
4500         * gdk-pixbuf/Makefile.am (TESTS):
4501         * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
4502         Roger Leigh)
4503
4504 2005-01-13  Matthias Clasen <mclasen@redhat.com>
4505
4506         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
4507         (gtk_tree_view_set_headers_clickable): Make the headers-visible
4508         property readwrite instead of just writable, and remove the
4509         g_return_if_fail check that there is a model when setting this
4510         property. Also improve the blurb.  (#163851, Richard Hult)
4511
4512 2005-01-12  Owen Taylor <otaylor@redhat.com>
4513
4514         * configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
4515         initialization of gdktarget, that was causing it to be
4516         evaluated before host was set. Simplify --with-gdktarget help
4517         message.
4518
4519         * gtk/Makefile.am: Use grep | head -n 1 instead of grep -m 1 
4520         which doesn't work with slightly older versions of GNU grep 
4521         in install-libtool-import-lib rule.
4522         
4523 2005-01-12  Tor Lillqvist  <tlillqvist@novell.com>
4524
4525         Fix for #162790, by Iwan Wong:
4526         
4527         * gdk/win32/gdkdrawable-win32.c: Implement dashed lines
4528         correctly. Simplify the interface to render_line_horizontal() and
4529         render_line_vertical(). Need to draw lines "manually" also on
4530         NT-based Windowses if we have a dash offset or are drawing
4531         double-dashed lines.
4532
4533         * gdk/win32/gdkprivate-win32.h: Keep also the dash offset,
4534         double-dash flag, and a brush for the background colour (used by
4535         the odd dashes in the double-dash line style) in the GdkGCWin32
4536         struct.
4537
4538         * gdk/win32/gdkgc-win32.c: Set up above new fields.
4539
4540 2005-01-10  Federico Mena Quintero  <federico@ximian.com>
4541
4542         Fix #162617.
4543
4544         * gtk/gtkfilesystemunix.c (STAT_NEEDED_MASK): Take out
4545         GTK_FILE_INFO_IS_HIDDEN; we don't need to stat() to know this.
4546         (gtk_file_system_unix_get_folder): Make error reporting more
4547         accurate.  Don't bail out if we can't read the directory.
4548         (fill_in_stats): Don't return an error; just assume we don't have
4549         stat info for this folder's files.
4550         (fill_in_names): Don't create the hash table for the names if we
4551         can't open the directory.
4552         (gtk_file_folder_unix_list_children): Don't emit the
4553         "finished-loading" signal --- we don't do asynchronous loads, so
4554         we are always finished loading.
4555         (gtk_file_folder_unix_get_info): Use helper functions; handle the
4556         case where we can't stat '/'.
4557         (get_icon_type_from_path): Don't call fill_in_stats() here; only
4558         use the info we have.
4559         (fill_in_mime_type): Don't return an error.  Don't do anything if
4560         we don't have the stat info.
4561
4562 2005-01-10  Owen Taylor  <otaylor@redhat.com>
4563
4564         * Makefile.am (EXTRA_DIST): Adding missing ChangeLog.pre*
4565         to EXTRA_DIST.
4566
4567 2005-01-10  Matthias Clasen  <mclasen@redhat.com>
4568
4569         * gtk/gtkaccelgroup.c (gtk_accel_group_class_init): Document
4570         signals.  (#163319, Murray Cumming)
4571
4572 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
4573
4574         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Set current
4575         cursor also when changing the cursor of a window that is the first
4576         ancestor of the window containing the pointer that has a cursor
4577         defined. (#163035, Ivan Wong)
4578
4579 2005-01-09  Anders Carlsson <andersca@gnome.org>
4580
4581         * gtk/gtkcellrenderertext.c: (get_size):
4582         * gtk/gtklabel.c: (gtk_label_size_request):
4583         * gtk/gtkprogressbar.c: (gtk_progress_bar_size_request):
4584         Don't pass NULL to pango_context_get_metrics. Use 
4585         pango_context_get_language instead, which is way faster.
4586         
4587 2005-01-08  Matthias Clasen  <mclasen@redhat.com>
4588
4589         * configure.in: Bump version
4590
4591         * === Released 2.6.1 ===
4592         
4593         * gdk-pixbuf-2.0.pc.in: Require gmodule-no-export-2.0
4594
4595 2005-01-07  Tor Lillqvist  <tml@iki.fi>
4596
4597         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
4598         Fix braino. (#163232, Arnaud Charlet)
4599
4600 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
4601
4602         * gtk/gtkiconview.c: Make markup_column work, and fix some
4603         layout issues when either icon or text is missing.  (#163065)
4604
4605 2005-01-06  Federico Mena Quintero  <federico@ximian.com>
4606
4607         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): Add an
4608         "Open _Location" item.  Fixes #148839.
4609
4610 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
4611
4612         * README.in: Fix a typo.  (#163128, kentaro fukuchi)
4613
4614 2005-01-06  James M. Cape  <jcape@ignore-your.tv>
4615
4616         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new)
4617         (gtk_file_chooser_button_new_with_backend): Use default title if
4618         NULL is passed.
4619
4620         * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml: Make examples
4621         match API.
4622
4623 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
4624
4625         Fix #161409:
4626
4627         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Queue
4628         a pending operation to select the first row.
4629
4630 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
4631
4632         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Don't call
4633         button_data_free() explicitly; the button is weak-reffed and the
4634         callback will free the button data.  Fixes #163010.
4635         (_gtk_path_bar_set_path): Don't ref/sink the button.  And for the
4636         failure case, call gtk_widget_destroy() on it.
4637
4638         * gtk/gtkfilechooserdefault.c (check_is_folder): Use
4639         gtk_file_system_get_folder() again (see the ChangeLog entry from
4640         2004-08-25).  We can't first get the parent folder and then
4641         request the info for the path in question, as the parent folder
4642         may not be readable.  See bug #162617.
4643         (gtk_file_chooser_default_set_current_folder): Assert that the
4644         passed-in path is not null.
4645         (shortcuts_find_current_folder): Likewise.
4646         (shortcuts_add_current_folder): Likewise.
4647         (set_list_model): Likewise.
4648         (gtk_file_chooser_default_map): Only reload the current folder if
4649         it exists.
4650         (bookmarks_check_add_sensitivity): Check for the current folder
4651         being NULL.
4652         (browse_files_select_first_row): Don't set the cursor if there is
4653         no model loaded.
4654
4655 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
4656
4657         * gtk/gtkfilechooserdefault.c: Don't construct errors from 
4658         the GTK_FILE_SYSTEM_ERROR domain. Partial fix for #162911.
4659         (get_file_info, check_is_folder): Translate errors from
4660         the filesystem into the GTK_FILE_CHOOSER_ERROR domain. Rest
4661         of the fix for #162911, noticed by Murray Cumming.
4662
4663 Wed Jan  5 11:42:49 2005  Søren Sandmann  <sandmann@redhat.com>
4664
4665         * gtk/gtkviewport.c (gtk_viewport_realize):
4666         * gtk/gtktextview.c ((text_window_realize): Set the background of
4667         the windows to None instead of adding EXPOSURE_MASK, as suggested
4668         by Owen in #162112.
4669
4670         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Update 
4671         the user time when receiving a WM_DELETE message.  (#162980, 
4672         Elijah Newren)
4673         
4674 Tue Jan  4 16:52:14 2005  Jonathan Blandford  <jrb@redhat.com>
4675
4676         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event):
4677         only reorder on button 1, part of #141937
4678
4679 Tue Jan  4 11:36:43 2005  Søren Sandmann  <sandmann@redhat.com>
4680
4681         Bug 162112.
4682         
4683         * gtk/gtktextview.c (text_window_realize): Add GDK_EXPOSURE_MASK
4684         to win->window's event_mask
4685
4686         * gtk/gtkviewport.c (gtk_viewport_realize): Add GDK_EXPOSURE_MASK
4687         to viewport->view_window.
4688
4689 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
4690
4691         * demos/testpixbuf.c (main): Remove the size_prepared callback,
4692         to test incremental display.
4693         (new_testrgb_window): Return the drawing area, not the window,
4694         since we want to queue draws on the drawing area.
4695
4696 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
4697
4698         * examples/*: Re-extract.
4699
4700         * docs/tutorial/gtk-tut.sgml: Small corrections.
4701         
4702         * docs/tutorial/gtk-tut.sgml: Some updates for the drawing
4703         section.  (#161414, Robert Ancell)
4704
4705         * docs/tutorial/gtk-tut.sgml: Make it build.
4706
4707         * gtk/gtkdialog.c (gtk_dialog_run): Some clarification
4708         regarding modality.  (#112903, Dave Bordoley)
4709
4710         * gtk/gtkfixed.c (gtk_fixed_set_has_window): 
4711         Add a little motivation.  (#145556, Tommi Komulainen)
4712
4713         * docs/tutorial/gtk-tut.sgml: Clarify section on 
4714         g_signal_connect_swapped.   (#120543, David Bourguignon)
4715
4716         Make gtk_icon_theme_load_icon() work independent of
4717         icon factory initialization.  (#162791, Tristan Van Berkom)
4718         
4719         * gtk/gtkiconfactory.[hc]: Rename ensure_default_icons to
4720         _gtk_icon_factory_ensure_default_icons, and make it non-static.
4721
4722         * gtk/gtkicontheme.c (find_builtin_icon): ..and call it here.
4723
4724 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
4725
4726         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_remove_shortcut_folder): 
4727         Don't add a shortcut here.  (#162752, Tor Lillqvist)
4728
4729 2005-01-02  Tor Lillqvist  <tml@iki.fi>
4730
4731         * gtk/Makefile.am (libgtk_target_ldflags): Add -lole32, needed for
4732         CoTaskMemFree in get_special_folder() below.
4733
4734         * gtk/gtkfilesystem.h: Implement case-insensitive path compare on
4735         Win32 using _gtk_file_system_win32_path_compare().
4736
4737         * gtk/gtk.symbols: Add _gtk_file_system_win32_path_compare.
4738
4739         * gtk/gtkfilechooserbutton.c (model_add_special)
4740         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Use
4741         _gtk_file_system_win32_get_desktop() to get correct Desktop folder
4742         on Win32. (#144003)
4743
4744         * gtk/gtkfilesystemwin32.c: Remove unnecessary includes. Do
4745         consider all drives "mounted", including floppies. Trying to
4746         inspect the contents of a nonexistent floppy will cause errors
4747         later that are handled normally, no need to avoid them
4748         completely. Keep the drive type in the GtkFileSystemVolume.
4749         Support UNC paths. (#161797, #137874) Fix error message
4750         capitalizations as in gtkfilesystemunix.c.
4751
4752         (gtk_file_system_win32_init): Start one timeout per
4753         GtkFileSystemWin32.
4754
4755         (gtk_file_system_win32_finalize): Remove the timeout.
4756
4757         (get_special_folder): Copied from GLib.
4758
4759         (_gtk_file_system_win32_get_desktop): New function, uses
4760         get_special_folder().
4761
4762         (gtk_file_system_win32_list_volumes): Don't start a timeout at
4763         each call to this function. Don't assume A: and B: are floppies.
4764
4765         (gtk_file_system_win32_get_volume_for_path): Don't assume all
4766         volumes are drive roots, i.e. support share roots of UNC paths
4767         (\\server\share).
4768
4769         (gtk_file_system_win32_get_folder): Don't assume errno is set
4770         after g_file_test() returns FALSE. It isn't on Win32 (and even on
4771         Unix I don't think one should assume anything about errno after
4772         g_file_test()).
4773
4774         (gtk_file_system_win32_volume_get_is_mounted): Always return TRUE.
4775
4776         (gtk_file_system_win32_volume_get_display_name): Don't call
4777         GetVolumeInformation() on drives A: or B: if they are removable,
4778         as they might then be floppies, causing an unnecessary
4779         delay. (#157820)
4780
4781         (gtk_file_system_win32_volume_render_icon): Use network icon for
4782         unrecognized drive types.
4783
4784         (canonicalize_filename, gtk_file_system_win32_parse): Don't get
4785         confused by UNC paths.
4786
4787         (bookmarks_serialize): Use _gtk_file_system_win32_path_compare()
4788         for case-insensitive UTF-8 path comparison.
4789
4790         (extract_icon): Use SHGetFileInfo() which is faster than
4791         ExtractAssociatedIcon(). Icon extraction is still slow, though,
4792         needs work.
4793
4794         (win32_pseudo_mime_lookup): Don't use the same icon for all
4795         shortcuts or executables. Cache only other file type icons.
4796
4797         (gtk_file_system_win32_render_icon): Use network stock icon for
4798         remote drives and UNC server share roots. Compare home directory
4799         case-insensitively. Do lookup icons also for executable files,
4800         after all, it's these files that can have individual icons in the
4801         first place. Yes, it can be slow. Needs work.
4802
4803         (filename_is_drive_root): Require also the slash after the colon.
4804
4805         (filename_is_server_share): New function.
4806
4807         (_gtk_file_system_win32_path_compare): New function, does
4808         case-folded UTF-8 comparison.
4809
4810         * gtk/gtkfilesystemwin32.h: Declare
4811         _gtk_file_system_win32_path_compare().
4812
4813 2005-01-01  Matthias Clasen  <mclasen@redhat.com>
4814
4815         * gtk/gtkbutton.c (gtk_button_set_image): Allow unsetting the
4816         custom image by passing NULL.
4817         (gtk_button_init): Initialize image_is_stock to TRUE, fixing
4818         a problem with changing stock labels.  (#162273, Marcin 
4819         Krzyzanowski)
4820
4821 2005-01-01  Tor Lillqvist  <tml@iki.fi>
4822
4823         * gtk/gtkmodules.c (get_module_path)
4824         * gtk/gtkrc.c (gtk_rc_make_default_dir, gtk_rc_get_im_module_file,
4825         gtk_rc_get_theme_dir, gtk_rc_add_initial_default_files): With
4826         g_getenv() now returning UTF-8 on Win32, no need to call
4827         g_locale_to_utf8().
4828
4829 2004-12-31  Matthias Clasen  <mclasen@redhat.com>
4830
4831         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval) 
4832         (_gtk_key_hash_lookup): Don't sort a list of values as if
4833         it was a list of entries. This fixes crashes during mnemonic
4834         activation in the presence of multiple keymaps. (#162488, 
4835         Christian Persch)
4836
4837 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
4838
4839         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Fix
4840         state propagation when making an insensitive combo box sensitive
4841         again.  (#162524, Carlos Garnacho Parro)
4842
4843         * gtk/gtkfilechooserdefault.c: Use secondary text for error 
4844         dialogs.
4845
4846         * gtk/gtkfilesystemunix.c: Clean up some cases of errno handling
4847         (#162496, noted by Tor Lillqvist), and use g_filename_display_name()
4848         for error messages. Also mark some error messages for translation,
4849         fix capitalization of error messages.
4850
4851         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property): 
4852         Use g_value_get_boolean() for ellipsize_set.  (#162447, 
4853         Brian Tarricone)
4854
4855 2004-12-30  Tor Lillqvist  <tml@iki.fi>
4856
4857         * gtk/gtkicontheme.c (gtk_icon_theme_init): Use /usr/share/pixmaps
4858         only on Unix.
4859
4860 2004-12-28  Matthias Clasen  <mclasen@redhat.com>
4861
4862         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Inherit
4863         submenu direction from the parent menu.
4864
4865         * gtk/gtkmenushell.c (gtk_menu_shell_select_submenu_first): 
4866         Return a boolean indicating whether an item in the submenu
4867         was selected.
4868         (gtk_real_menu_shell_move_current): When going in child 
4869         direction, don't get stuck at completely insensitive 
4870         submenus.  (#162055, Billy Biggs)       
4871
4872 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
4873
4874         Make the clipboard image API more robust (#162357, 
4875         Torsten Schoenfeld):
4876         
4877         * gtk/gtkclipboard.c (clipboard_image_received_func): Don't
4878         ref the pixbuf if it is NULL.
4879
4880         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): 
4881         NULL-terminate the varargs in the call to 
4882         gdk_pixbuf_save_to_buffer(). 
4883         (gtk_selection_data_get_pixbuf): Only use a pixbuf loader 
4884         if there is data to load.
4885
4886 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
4887
4888         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
4889         Set x_root and y_root in button and motion events from 
4890         extended input devices.  (#148715, Robert Ögren)
4891
4892         * gtk/gtktreeview.c (gtk_tree_view_class_init): Fix a 
4893         typo.  (#162339, Alessio Dessi)
4894
4895         * gtk/gtkadjustment.c (gtk_adjustment_class_init): Document
4896         properties as new since 2.4.  (#156101, Billy Biggs)
4897
4898         * configure.in: Add a warning about the linux-fb 
4899         target.  (#155488, Zeeshan Ali)
4900
4901         * gtk/gtkmain.c (gtk_init_with_args): Typo fix.  (#162278,
4902         Torsten Schoenfeld)
4903
4904 2004-12-26  Matthias Clasen  <mclasen@redhat.com>
4905
4906         * gtk/gtkfilechooser.c (gtk_file_chooser_set_action): 
4907         Typo fix.  (#162219, Masao Mutoh)
4908         (gtk_file_chooser_set_preview_widget_active): 
4909         Another typo.  (#162218, Masao Mutoh)
4910
4911 2004-12-23  Matthias Clasen  <mclasen@redhat.com>
4912
4913         * gtk/gtkliststore.c (gtk_list_store_iter_children): 
4914         Return TRUE if there are children.  (#162134, Iñigo Serna,
4915         patch by John Finlay)
4916
4917         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): 
4918         Transfer state from the button to the cell view to get
4919         prelighting right.  (#156327, Ricardo Veguilla)
4920
4921 Wed Dec 22 14:22:19 2004  Søren Sandmann  <sandmann@redhat.com>
4922
4923         * tests/testtoolbar.c (timeout_cb): Add sensitivity-changing
4924         timeout. Written by Christian Persch.
4925
4926 Wed Dec 22 14:14:02 2004  Søren Sandmann  <sandmann@redhat.com>
4927
4928         Bug #161561
4929         
4930         * gdk/x11/gdkwindow-x11.c (tmp_{re,un}set_bg): Only set/reset the
4931         background for windows that get expose events. 
4932
4933         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Remove
4934         hack to repaint !expose windows.
4935
4936 Wed Dec 22 11:35:41 2004  Søren Sandmann  <sandmann@redhat.com>
4937
4938         Bug #147497, make menu items activate immediately when you release
4939         the button.
4940         
4941         * gtk/gtkmenu.c (gtk_menu_enter_notify, menu_motion_notify): Make
4942         items activate immediately.
4943
4944         * gtk/gtkmenu.c (definitely_within_item): New function
4945         * gtk/gtkmenu.c (check_threshold): New function
4946
4947 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
4948
4949         * gtk/gtklabel.c (gtk_label_setup_mnemonic): Don't forget to
4950         null the mnemonic_menu when unsetting a mnemonic, reported
4951         by Owen Taylor.
4952
4953 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
4954
4955         * gtk/gtkliststore.c (generate_order): Generate the order the
4956         way it is supposed to be, order[new_pos] == old_pos.
4957         (gtk_list_store_reorder): Invert the order before using it.
4958
4959 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
4960
4961         Fix sorting of list stores.  (#161886, Marcin Krzyzanowski)
4962
4963         * gtk/gtkliststore.c (generate_order): Generate the order the
4964         way it is supposed to be, order[new_pos] == old_pos.
4965         (gtk_list_store_reorder): Invert the order before using it.
4966
4967         * gtk/gtkiconview.c (gtk_icon_view_rows_reordered): Adapt to the
4968         list store fix.
4969
4970 Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
4971
4972         * gtk/queryimmodules.c (main): print out the version and binary
4973         name in the header comment.  Problem reported by Seth Nickell.
4974
4975 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
4976
4977         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
4978         root path to gtk_tree_model_rows_reordered().  (#161720,
4979         Marcin Krzyzanowski)
4980
4981         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): Don't 
4982         translate NULL messages.  (#161789, Morten Welinder)
4983
4984         * gtk/gtkmessagedialog.c (setup_primary_label_font): Don't show
4985         the secondary label on show_all().  (#161707, Christian Persch)
4986
4987 2004-12-19  Tor Lillqvist  <tml@iki.fi>
4988
4989         * gdk/win32/gdkdnd-win32.c (resolve_link, gdk_dropfiles_filter):
4990         Use wide character API when available. Use UTF-8 for filenames.
4991
4992         * gdk/win32/gdkselection-win32.c (_gdk_dropfiles_store): Include
4993         the string's trailing zero byte in the property's length, just for
4994         safety.
4995
4996 2004-12-18  Matthias Clasen  <mclasen@redhat.com>
4997
4998         * gtk/gtkfilechooserentry.c (check_completion_callback) 
4999         (load_directory_callback): Add missing GDK_THREADS_ENTER/LEAVE.
5000
5001         * gtk/gtkfilechooserdefault.c (edited_idle_cb) 
5002         (shortcuts_drag_outside_idle_cb): Add missing 
5003         GDK_THREADS_ENTER/LEAVE.  (#161604)
5004         
5005         * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): 
5006         (list_select_func): Don't call gtk_file_info_get_is_folder()
5007         on NULL. 
5008
5009         * gtk/gtkaboutdialog.c (gtk_about_dialog_get_logo_icon_name): 
5010         (gtk_about_dialog_init): Add missing initializations.  (#161646,
5011         Torsten Schoenfeld)
5012