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