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