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