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