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