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