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