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