]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
5a2a8041442ef3977aeae8124b14b445e41e3668
[~andy/gtk] / ChangeLog.pre-2-6
1 2004-08-30  Matthias Clasen  <mclasen@redhat.com>
2
3         * gtk/gtktextview.c (gtk_text_view_delete_surrounding_handler): Make it compile.
4
5 2004-08-27  Matthias Clasen  <mclasen@redhat.com>
6
7         Fix #151112, Olexiy Avramchenko:
8         
9         * gtk/gtktreeview.c (gtk_tree_view_search_entry_flush_timeout): 
10         * gtk/gtkiconview.c (scroll_timeout, layout_callback) 
11         (gtk_icon_view_item_accessible_idle_do_action): 
12         * gtk/gtkcombobox.c (list_popup_resize_idle, popdown_idle) 
13         (popup_idle): Protect idle callbacks and timeouts with 
14         GDK_THREADS_ENTER/_LEAVE.
15
16         * gtk/gtkfilechooserbutton.c (update_dialog_idle): New function to
17         call update_dialog() from an idle with the necessary protection.
18
19 Mon Aug 30 01:34:42 2004  Matthias Clasen  <maclas@gmx.de>
20
21         Changes to make sure input methods respect the editability
22         of entries and text views. #114173, Noah Levitt.
23         
24         * gtk/gtkentry.c (popup_targets_received): Make the Input 
25         Methods menuitem insensitive if we're not editable.
26
27         * gtk/gtkentry.c (gtk_entry_delete_surrounding_cb): 
28         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): 
29         * gtk/gtkentry.c (gtk_entry_commit_cb): Don't change anything 
30         if we're not editable.
31
32         * gtk/gtkentry.c (gtk_entry_focus_out): 
33         * gtk/gtkentry.c (gtk_entry_focus_in): Only send focus_in and
34         focus_out to the im context if we're editable.
35
36         * gtk/gtkentry.c (gtk_entry_set_property): Reset the im context
37         if the entry just became non-editable.
38
39         * gtk/gtktextview.c (gtk_text_view_delete_surrounding_handler): 
40         Use gtk_text_buffer_delete_interactive() to not delete
41         non-editable portions of text.
42
43 2004-08-30  Tor Lillqvist  <tml@iki.fi>
44
45         * modules/input/Makefile.am (im_ime_la_LIBADD): Link with -limm32.
46
47         * modules/input/gtkimcontextime.c: Use quotes in #includes, to
48         find headers when building inside GTK+ sources.
49
50 2004-08-27  Tor Lillqvist  <tml@iki.fi>
51
52         * gdk/win32/gdkdnd-win32.c (GdkDragContextPrivateWin32): Add
53         drop_failed, like in the X11 backend. Nothing sets it, though.
54         (gdk_drag_drop_succeeded): Copy from X11 backend.
55
56 Thu Aug 26 23:58:11 2004  Matthias Clasen  <maclas@gmx.de>
57
58         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Don't crash
59         if model is not set. Noted by Mariano Suarez-Alvarez.
60
61 Thu Aug 26 22:44:12 2004  Matthias Clasen  <maclas@gmx.de>
62
63         Provide information about how an adjustment change in a range 
64         widget happened. Add a "slider-moved" signal which reports how 
65         a user is interacting with the range, whether they are clicking 
66         on a stepper or the trough, or dragging the slider.  (#133263,
67         Thomas Fitzsimmons)
68
69         * gtk/gtkmarshalers.list: Add signal type BOOLEAN:ENUM,DOUBLE.
70         * gtk/gtkrange.c (gtk_range_class_init): Add "change-value"
71         signal.
72         (gtk_range_internal_set_value): Rename to
73         gtk_range_real_change_value.  Add GtkScrollType parameter.  Emit
74         the change-value signal when the range's value changes.
75         (update_slider_position, gtk_range_scroll_event, step_back,
76         step_forward, page_back, page_forward, scroll_begin,
77         scroll_end): Change gtk_range_internal_set_value to
78         gtk_range_real_change_value.
79         * gtk/gtkrange.h (struct _GtkRangeClass): Declare change_value
80         function.
81
82 >>>>>>> 1.5765
83 2004-08-26  Matthias Clasen  <mclasen@redhat.com>
84
85         * modules/input/Makefile.am: Build imime.la on Windows.
86
87         * modules/input/gtkimcontextime.h: 
88         * modules/input/gtkimcontextime.c: 
89         * modules/input/imime.c: 
90         * modules/input/imm-extra.h: Add the IME input method for Win32
91         written by Takuro Ashie and Kazuko IWAMOTO. The code was previously
92         hosted at http://sourceforge.jp/projects/imime.  (#135195)
93
94 2004-08-26  Bill Haneman <billh@gnome.org>
95
96         * gtk/gtktreeview:
97         (gtk_tree_view_move_cursor_up_down):
98         If a multi-selection list contains only one item,
99         select it on cursor_up or cursor_down.
100         Fixes bug #131226.
101         [patch from Padraig O'Briain]
102
103 2004-08-26  Matthias Clasen  <mclasen@redhat.com>
104
105         Make gdk_window_process_[all]_updates() respect 
106         update_freeze_counter  (#144272, Soeren Sandmann)
107         
108         * gdk/gdkwindow.c (gdk_window_schedule_update): New function to
109         install an idle for gdk_window_update_idle() if one isn't there
110         already.
111         (gdk_window_process_all_updates): 
112         (gdk_window_process_updates): Only process the updates if the
113         window isn't frozen.
114         (gdk_window_invalidate_maybe_recurse): Schedule an update when
115         necessary.
116         (gdk_window_thaw_updates): Use gdk_window_schedule_update() instead
117         of directly installing the idle.
118
119 2004-08-22  Robert Ögren  <gtk@roboros.com>
120
121         On Win32, make graphical tablets work on multi-monitor systems.
122         (#145467, reported by buttknock1@ya...)
123
124         * gdk/win32/gdkinput-win32.c (gdk_input_translate_coordinates):
125         Use dimensions of _gdk_parent_root as screen size.
126         (gdk_input_get_root_relative_geometry): Get coordinates relative
127         to GDK root window instead of Win32 coordinates.
128         (_gdk_input_other_event): Updated accordingly.
129
130 Wed Aug 25 17:24:17 2004  Manish Singh  <yosh@gimp.org>
131
132         * gdk/x11/gdkfont-x11.c: remove unused gdk_font_charset_for_locale()
133         function.
134
135         * gdk/x11/gdkinput-x11.c (_gdk_input_common_init): remove unused
136         variables num_extensions and extensions.
137
138         * gtk/gtkhsv.c: remove unused gtk_hsv_get_focus_gc() function.
139
140 Wed Aug 25 17:14:58 2004  Manish Singh  <yosh@gimp.org>
141
142         * gtk/gtktreeview.c (gtk_tree_view_search_activate): initialize
143         path so we don't potentially use an undefined pointer.
144
145         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): add G_CALLBACK
146         cast for tree_view_keybinding_cb.
147
148         * gtk/gtkfilechooserdefault.c (location_entry_create): cast to
149         GTK_FILE_CHOOSER_ENTRY for _gtk_file_chooser_entry_set_file_part()
150         calls.
151
152         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_start_editing):
153         cast to GTK_COMBO_BOX for gtk_combo_box_set_active_iter() call.
154
155         * gtk/gtkselection.c (selection_get_text_plain): make len a gsize,
156         since that's what g_convert_with_fallback() expects.
157
158 Wed Aug 25 16:14:34 2004  Jonathan Blandford  <jrb@redhat.com>
159
160         * gtk/gtktreeview.c (gtk_tree_view_search_activate): activate the
161         typeahead entry on enter.
162
163 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
164
165         * gtk/gtkmenu.c (gtk_menu_attach_to_widget): Steal ATTACHED_MENUS
166         list so its tail isn't freed when we re-set it, noticed
167         by Hans Petter Jansson.
168
169         * gtk/gtksizegroup.c (gtk_size_group_add_widget): Fix
170         a typo, noticed by Tim Janik.
171
172 Wed Aug 25 15:15:56 2004  Jonathan Blandford  <jrb@redhat.com>
173
174         * gtk/gtkpathbar.c (gtk_path_bar_size_allocate): Change the Down
175         button to be end-justified, so that clicking on it is a stable
176         operation.
177
178 Tue Aug 24 02:06:37 2004  Jonathan Blandford  <jrb@gnome.org>
179
180         * gtk/gtktreeview.c
181         (gtk_tree_view_real_expand_collapse_cursor_row): Don't handle the
182         event if we have no children.
183
184         * gtk/gtkfilechooserdefault.c (trap_activate_cb):
185         (tree_view_keybinding_cb):Since GtkTreeView has a keybinding
186          attached to '/', we need to catch keypresses before the TreeView
187          gets them.
188         (gtk_file_chooser_default_class_init): add '/' to be a keybinding
189         to the C-l dialog.
190         (location_entry_create): Clear the text to "" when loading a file.
191         This has a much better feel than putting the currently selected
192         in.
193         * #include <errno.h>
194
195 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
196
197         * gtk/gtkfilechooserdefault.c (check_is_folder): Use get_file_info() rather 
198         than trying get_folder() and checking for an error directly because older 
199         versions of the gnome-vfs backend don't return an error 
200         immediately.  (#150852, Zack Cerza )
201
202 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
203
204         * configure.in: Post-release version bump.
205
206         * === Released 2.5.2 ===
207
208         * gdk/abicheck.sh:
209         * gtk/abicheck.sh: Make work during make distcheck.
210         
211         * docs/RELEASE-HOWTO: Add hint about doing make check 
212         before make distcheck.
213         
214         * gtk/gtk.symbols: Add some missing symbols.
215
216         * gtk/gtkiconview.c: Add some missing statics.
217
218 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
219
220         * NEWS: Updates for 2.5.2
221
222 Wed Aug 25 00:22:48 2004  Søren Sandmann  <sandmann@redhat.com>
223
224         * gtk/gtksequence.c: Remove debug spew
225
226 Wed Aug 25 00:09:07 2004  Søren Sandmann  <sandmann@redhat.com>
227
228         * gtk/gtkliststore.c (gtk_list_store_move_after): Fix logical
229         errors in gtk_list_store_move_before/after(). (#150983, patch by
230         Robert Ögren).
231
232 Tue Aug 24 21:46:42 2004  Søren Sandmann  <sandmann@redhat.com>
233
234         * gtk/gtksequence.c (_gtk_sequence_move): Just return if the
235         parameters are identical. (#150159, Robert Ögren)
236
237 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
238
239         * gtk/gtkaction.c (connect_proxy, disconnect_proxy): Handle 
240         action_group being NULL.  (#150869,  Tommi Komulainen)
241
242 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
243
244         * gdk/gdkimage.c (allocate_scratch_images): Use the correct 
245         index variable.  (#150941, Tommi Komulainen)
246
247 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
248
249         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Take header
250         height and adjustment into account.  (#136496, Pawek Salek)
251
252 Mon Aug 23 17:19:19 2004  Jonathan Blandford  <jrb@redhat.com>
253
254         * configure.in:
255         * docs/tools/Makefile.am (clean-local): add the doc shooter to the
256         docs dir as an uninstalled helper tool.
257
258 2004-08-23  Matthias Clasen  <mclasen@redhat.com>
259
260         * gdk/x11/gdkwindow-x11.c (show_window_internal): Make it compile.
261
262         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Add a 
263         user_time field.
264
265         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): Update
266         toplevel->user_time.
267         (show_window_internal): Update the user time when re-mapping a
268         toplevel window.  (#150502, Elijah Newren)
269
270 2004-08-23  Matthias Clasen  <mclasen@redhat.com>
271
272         Fix #150822, reported by Christian Persch
273         
274         * gtk/gtklabel.c (gtk_label_ensure_layout): Set the layout width
275         appropriately when ellipsized.
276         (gtk_label_size_allocate): Only set the layout width if there
277         is a layout.
278
279 2004-08-23  Matthias Clasen  <mclasen@redhat.com>
280
281         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): Support the latest
282         EWMH additions to the _NET_ACTIVE_WINDOW client message 
283         format.  (#150668, Elijah Newren)
284
285 Mon Aug 23 01:17:59 2004  Matthias Clasen  <maclas@gmx.de>
286
287         * gdk/gdkrgb.c (gdk_rgb_xpixel_from_rgb_internal): Set unused
288         bits in pixel to 1s in case they are used as alpha; copying
289         code from gdk_colormap_alloc_colors().  (#150466, Rich Wareham)
290
291 2004-08-22  Philip Langdale  <plangdale@vmware.com>
292
293         * gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals
294         (gtk_action_sync_property and gtk_action_sync_sensitive) were
295         not being correctly disconnected, leading to actions continuing
296         to affect disconnected proxies. (#150607)
297
298 2004-08-22  Tor Lillqvist  <tml@iki.fi>
299
300         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal,
301         gdk_window_new, gdk_window_set_skip_taskbar_hint): Don't show TEMP
302         windows in the Task Manager. Implement by calling
303         gdk_window_set_skip_taskbar_hint(TRUE) on them. (#145481, Tim
304         Evans)
305
306         * gdk/win32/gdkdisplay-win32.c (enum_monitor, gdk_display_open):
307         Report whole of (primary) monitor, including any taskbars.
308         Excluding the taskbar area from the "root window" reported to GDK
309         doesn't seem to be that useful although gdk/win32 had been doing it
310         for a very long time. (#149013, see also #145467 and #148526)
311
312 Sun Aug 22 16:55:15 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
313
314         * gtk/gtkexpander.c
315         * gtk/gtkalignment.c: 
316         * gtk/gtktexttag.c
317         Make enums match property names. Found by a script by Tommi
318         Komulainen.
319
320         * gtk/gtkpaned.c (gtk_paned_class_init): fix min/max mixup.
321
322 Sun Aug 22 16:09:49 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
323
324         * gtk/gtkliststore.h (struct _GtkListStore): 
325         * gtk/gtkliststore.c (gtk_list_store_init): 
326         * gtk/gtkliststore.c (gtk_list_store_insert): 
327         * gtk/gtkliststore.c (gtk_list_store_remove): 
328         Restore length field; PyGTK and maybe others use it directly.
329
330 Sun Aug 22 15:46:56 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
331
332         * gtk/gtkpaned.c (gtk_paned_class_init):
333         s/CYCLE_HANDLE_FOCUS/CYCLE_CHILD_FOCUS/
334
335         * gtk/gtkfontbutton.c (gtk_font_button_class_init):
336         s/PROP_SHOW_SIZE/PROP_SHOW_STYLE/
337
338         Both pointed out by Tommi Komulainen.
339
340 Sun Aug 22 13:44:53 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
341
342         * gtk/gtkpaned.c (gtk_paned_class_init): Use PROP_MAX_POSITION,
343         not PROP_MIN_POSITION for the max_position property. Fix pointed
344         out by Tommi Komulainen.
345
346 Sun Aug 22 13:32:33 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
347
348         * gtk/gtkliststore.c (gtk_list_store_insert): Normalize the
349         position so we don't create paths with off-list
350         indices. (#150320).
351
352 Sun Aug 22 12:04:59 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
353
354         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Use the
355         correct tree path (#150289, Morten Welinder).
356
357 Sun Aug 22 00:08:44 2004  Matthias Clasen  <maclas@gmx.de>
358
359         Fix #150406, reported by Fernando San Martín Woerner, patch
360         by Gustavo Carneiro.
361         
362         * gtk/gtkentrycompletion.c 
363         (gtk_entry_completion_default_completion_func): Check that 
364         column is of type G_TYPE_STRING before proceeding.
365
366 Sat Aug 21 23:52:13 2004  Matthias Clasen  <maclas@gmx.de>
367
368         * gtk/gtktreestore.c (gtk_tree_store_swap): Don't use an 
369         uninitialized tree iter.  (#150414, Torsten Schoenfeld)
370
371 Sat Aug 21 23:29:54 2004  Matthias Clasen  <maclas@gmx.de>
372
373         Fix #150738, Tomislav Jonjic.
374         
375         * gtk/gtktoolitem.h (GTK_IS_TOOL_ITEM_CLASS): 
376         * gtk/gtktoolbutton.h (GTK_IS_TOOL_BUTTON_CLASS): 
377         * gtk/gtktoggleaction.h (GTK_IS_TOGGLE_ACTION_CLASS): 
378         * gtk/gtkseparatortoolitem.h (GTK_IS_SEPARATOR_TOOL_ITEM_CLASS): 
379         * gtk/gtkradiotoolbutton.h (GTK_IS_RADIO_TOOL_BUTTON_CLASS): 
380         * gtk/gtkradioaction.h (GTK_IS_RADIO_ACTION_CLASS): 
381         * gtk/gtkuimanager.h (GTK_IS_UI_MANAGER_CLASS): 
382         * gtk/gtkaction.h (GTK_IS_ACTION_CLASS): Fix macro definitions.
383
384 Wed Aug 18 17:25:26 2004  Manish Singh  <yosh@gimp.org>
385
386         * demos/testpixbuf-save.c
387         * demos/gtk-demo/hypertext.c: Get rid of some unnecessary casts.
388
389         * demos/gtk-demo/appwindow.c: Make activate_email and activate_url
390         match the arguments for GtkAboutDialogActivateLinkFunc.
391
392 Wed Aug 18 16:18:00 2004  Manish Singh  <yosh@gimp.org>
393
394         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Initialize height
395         from fixed_height before we do anything, so it always has a valid
396         value.
397
398         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): Fix call
399         to gtk_tree_model_get (missing "," in param list).
400
401 2004-08-18  Federico Mena Quintero  <federico@ximian.com>
402
403         Merged from 2.4:
404
405         Fixes #149251:
406
407         * gtk/gtkfilechooserdefault.c: Renamed SHORTCUTS_COL_PATH to
408         SHORTCUTS_COL_DATA.  Add SHORTCUTS_COL_IS_VOLUME, to determine
409         easily whether the SHORTCUTS_COL_DATA points to a GtkFilePath or a
410         GtkFileSystemVolume.
411         (shortcuts_model_create): Create a boolean column for
412         SHORTCUTS_COL_IS_VOLUME.
413         (shortcuts_reload_icons): Simplify with the use of the
414         SHORTCUTS_COL_IS_VOLUME column.  Don't leak the pixbuf.
415         (shortcuts_insert_path): Add the SHORTCUTS_COL_IS_VOLUME data.
416         (shortcuts_free_row_data): New helper function; frees the data
417         columns for an iter.
418         (shortcuts_remove_rows): Don't take a callback for freeing the
419         data; free everything here instead.  Use
420         shortcuts_free_row_data().
421         (volume_remove_cb): Removed.
422         (remove_bookmark_cb): Removed.
423         (remove_row_cb): Make this a single generic function to delete
424         rows.
425         (shortcuts_add_volumes): Use remove_row_cb().
426         (shortcuts_add_bookmarks): Likewise.
427         (struct _GtkFileChooserDefault): Removed the
428         shortcuts_current_folder_is_volume field.
429         (shortcuts_add_current_folder): Oops, don't free the volume.
430         (remove_current_folder_cb): Removed.
431         (shortcut_find_position): Simplify through the use of the
432         SHORTCUTS_COL_IS_VOLUME column.
433         (remove_selected_bookmarks): Assert that we don't get a volume.
434         (shortcuts_reorder): Likewise; also, plug a leak.
435         (gtk_file_chooser_default_remove_shortcut_folder): Simplify
436         through the use of shortcuts_remove_rows().
437         (gtk_file_chooser_default_list_shortcut_folders): Assert that we
438         don't get a volume.
439         (shortcuts_activate_iter): Simplify.
440         (home_folder_handler): Simplify by using
441         shortcuts_activate_iter().
442         (shortcuts_free): New function; frees all the data columns.
443         (gtk_file_chooser_default_finalize): Unref the
444         shortcuts_filter_model and the shortcuts model data first.
445
446 Wed Aug 18 08:31:17 2004  Manish Singh  <yosh@gimp.org>
447
448         * gtk/gtkiconview.c: Applied patch from Olivier Andrieu to fix
449         bug #150440.
450
451         * gtk/gtkicontheme.c (gtk_icon_theme_init): xdg_data_dirs should
452         match constness attributes of g_get_system_data_dirs ().
453
454 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
455
456         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look up icon themes in the 
457         directories specified in the icon theme spec: $HOME/.icons, 
458         $XDG_DATA_DIRS/icons, /usr/share/pixmaps. Note that GTK+ used to also look 
459         in $GTK_DATA_DIR/icons, $GTK_DATA_DIR/pixmaps and /usr/share/icons.  (#148694)
460         
461
462         * gtk/gtkframe.c (gtk_frame_paint): Take widget->state into account when
463         painting the shadows.  (#150351, Tim Janik)
464
465 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
466
467         * gtk/abicheck.sh: No need for INCLUDE_INTERNAL_SYMBOLS anymore.
468
469         * gdk/gdk.symbols: Don't use #if defined().
470
471         * gdk/Makefile.am (gdkalias.h): 
472         * gtk/Makefile.am (gtkalias.h): Don't use cpp to filter gtk.symbols.
473
474         * gdk/makegdkalias.pl: 
475         * gtk/makegtkalias.pl: Move the #ifdef processing into the perl script, and
476         keep the #ifdefs which differentiate between platforms.
477
478         * gtk/Makefile.am (gtk_private_h_sources): Remove gtkinternals.h, it is no 
479         longer needed.
480
481 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
482
483         * tests/testfilechooserbutton.c: Use g_message() throughout, add RTL envar for
484         rtl testing.
485
486         * gtk/gtkfilechooserbutton.c: Get rid of HAVE_CONFIG_H.
487         (gtk_file_chooser_button_init): Use gtk_drag_dest_add_text_targets().
488         (gtk_file_chooser_button_drag_data_received): Use gtk_selection_data_get_text().
489         (gtk_file_chooser_button_set_dialog): _gtk_file_chooser_entry_set_base_folder()
490         seems to expect a path, not an uri.
491         (update_dialog): Handle g_filename_from_uri() returning NULL, don't free
492         info if it is NULL. 
493
494         * gtk/gtkfilechooserbutton.h: Minor stylistic changes.
495
496 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
497
498         * gtk/gtkfilechooserbutton.[hc]: New widget to go along with 
499         GtkFontButton and GtkColorButton for use in preference dialogs.
500         Replaces GnomeFileEntry.  (#148108, James M. Cape)
501
502         * gtk/gtk.h: Include gtkfilechooserbutton.h
503
504         * gtk/Makefile.am (gtk_public_h_sources): Add gtkfilechooserbutton.h
505         (gtk_c_sources): Add gtkfilechooserbutton.c
506
507         * gtk/gtk.symbols: Add the GtkFileChooserButton symbols.
508
509         * gtk/gtkfilechooserutils.[hc]: Make the delegate quark available. 
510
511         * gtk/gtkfilechooserentry.[hc] (_gtk_file_chooser_entry_new): Allow
512         to suppress tab-eating using the new eat_tabs argument. Adjust all
513         callers.
514
515         * tests/testfilechooserbutton.c: Test for GtkFileChooserButton.
516
517         * tests/Makefile.am (noinst_PROGRAMS): Add testfilechooserbutton
518
519 2004-08-16  Matthias Clasen  <mclasen@redhat.com>
520
521         * gtk/gtkwidget.c (gtk_widget_render_icon): Doc update.
522
523         * gtk/gtkiconfactory.c (render_icon_name_pixbuf): When the size is -1,
524         use the available size closest to 48.  (#150147)
525
526         * gtk/gtkicontheme.c (gtk_icon_theme_get_icon_sizes): Actually return
527         a pointer to the beginning of the sizes array, not the end.
528
529 2004-08-16  Morten Welinder  <terra@gnome.org>
530
531         * tests/testtreemodel.c (test_run): Comment out mallinfo stuff.
532         Fix g_print %-strings.
533
534         * gtk/gtksequence.c (_gtk_sequence_set): Fix C99ism.
535
536 2004-08-16  Christian Rose  <menthos@menthos.com>
537
538         * configure.in: Added "bs" to ALL_LINGUAS.
539
540 Mon Aug 16 01:35:25 2004  Matthias Clasen  <maclas@gmx.de>
541
542         
543         * gtk/gtkcombobox.[hc]: Add a ::focus-on-click property and
544         change the default behaviour to focus on click.
545
546         * gtk/gtkbutton.c (gtk_button_set_focus_on_click): Typo fix.
547
548 Mon Aug 16 01:03:08 2004  Matthias Clasen  <maclas@gmx.de>
549
550         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset): 
551         (gtk_text_iter_set_visible_line_index): Count from the 
552         beginning of the line, not from the current position.  (#150101,
553         Torsten Schoenfeld)
554
555 2004-08-15  Tor Lillqvist  <tml@iki.fi>
556
557         * gtk-zip.sh.in: Fix typo. The gtk.immodules file had never been
558         included in my zipfiles...!
559
560         * gtk/gtkfilesystemwin32.c (extract_icon): Improve handling of
561         icon alpha channel (on Windows XP) and mask (older Windows
562         versions). (#148641, Tim Evans)
563
564 Sun Aug 15 02:31:55 2004  Matthias Clasen  <maclas@gmx.de>
565
566         * gtk/gtkfilesystemunix.c (get_icon_type_from_stat): Make 
567         the use of S_ISFIFO and S_ISSOCK conditional.  (#150146,
568         Gustavo Carneiro)
569
570 2004-08-14  Tor Lillqvist  <tml@iki.fi>
571
572         * gtk/gtkfilechooserdefault.c (shortcuts_append_home,
573         shortcuts_append_desktop, set_local_only)
574         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_render_icon)
575         * gtk/gtkpathbar.c (find_button_type, _gtk_path_bar_set_file_system): 
576         Guard against g_get_home_dir() returning NULL. (#150007)
577
578 Sat Aug 14 17:56:33 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
579
580         * gtk/gtkentry.c (gtk_entry_get_pixel_ranges): New function. 
581
582         * gtk/gtkentry.c (in_selection): New function using
583         gtk_entry_get_pixel_ranges() to determine whether a click is in
584         the selection. Improve entry behavior wrt. dragging and
585         selecting. Bug #143249.
586
587 Sat Aug 14 17:53:46 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
588
589         * configure.in: Require glib 2.5.2
590         
591         * gtk/gtksequence.[ch]: New internal data structure.
592
593         * gtk/gtkliststore.[hc]: Reimplement in terms of new data
594         structure
595         
596         * tests/Makefile.am (testtreemodel_SOURCES):
597         * tests/testtreemodel.c: New test program written by Matthias.
598
599 2004-08-13  Matthias Clasen  <mclasen@redhat.com>
600
601         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set): 
602         Don't install the settings_notify_cb from here, since it
603         may be called before the first screen_changed signal, 
604         confusing the logic in gtk_file_chooser_screen_changed().
605         (#148803, Abel Daniel)
606
607         * gtk/gtkcombobox.c: Make re-sensitivation work
608         in menu mode.
609
610         * gtk/gtkaction.c (gtk_action_new): Fix the docs.
611
612 Fri Aug 13 01:06:56 2004  Matthias Clasen  <maclas@gmx.de>
613
614         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): 
615         Make fixed height mode handle insertions.  (#135955, 
616         Michael Vogt, testcase by Tim-Philipp Müller, fix by
617         Pawel Salek)
618
619 Fri Aug 13 00:40:18 2004  Matthias Clasen  <maclas@gmx.de>
620
621         * gtk/gtkhandlebox.c: Add missing include.
622
623 Thu Aug 12 23:52:12 2004  Matthias Clasen  <maclas@gmx.de>
624
625         Fix #149547, Markus Lausser:
626         
627         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate): 
628         * gtk/gtkcombobox.c (gtk_combo_box_size_request): Don't 
629         crash if size_request or size_allocate are called early.
630
631         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate): Protect
632         against being allocated too small.
633
634 Thu Aug 12 21:02:57 2004  Matthias Clasen  <maclas@gmx.de>
635
636         * demos/gtk-demo/appwindow.c (about_cb): Adjust to GtkAboutDialog 
637         API changes.
638
639         * gtk/gtkaboutdialog.h: 
640         * gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook): 
641         (gtk_about_dialog_set_url_hook): Add callback data and destroy notify 
642         for language bindings.  (#149999, Olivier Andrieu)
643
644 2004-08-12  Matthias Clasen  <mclasen@redhat.com>
645
646         * gtk/gtkfilesystem.c: Underscore-prefix gtk_file_system_module_get_type().
647         * gtk/gtkfilechooserdefault.c: Underscore-prefix shortcuts_model_filter_get_type().
648
649         * gtk/gtkimmodule.c: Make gtk_im_module_get_type() static.
650         * gtk/gtk.symbols:
651         * gtk/gtkinternals.h: Remove the no longer exported get_type functions.
652
653 Thu Aug 12 01:35:46 2004  Matthias Clasen  <maclas@gmx.de>
654
655         * gtk/gtkiconview.c: Make the icon view accessible by
656         implementing the necessary ATK interfaces.  (#149728,
657         Padraig O'Briain)
658
659 Thu Aug 12 00:02:29 2004  Matthias Clasen  <maclas@gmx.de
660
661         * gtk/gtkaction.c (gtk_action_new): Link to information about
662         allowed action names.  (#149620, David Malcolm)
663
664 Wed Aug 11 23:14:25 2004  Matthias Clasen  <maclas@gmx.de>
665
666         * gtk/gtk.symbols: 
667         * gtk/gtkaction.h:
668         * gtk/gtkaction.c (gtk_action_set_sensitive): 
669         (gtk_action_set_visible): Add setters for the ::sensitive
670         and ::visible properties of GtkAction.  (#149622, David Malcolm)
671
672 2004-08-11  Federico Mena Quintero  <federico@ximian.com>
673
674         Fix #149422, #143457:
675
676         * gtk/gtkfilechooserdefault.c
677         (gtk_file_chooser_default_should_respond): Rewrite to take the
678         current focus into account, the contents of the save entry, and
679         the last focus for the shortcuts list.
680         (switch_to_selected_folder): We don't need an assertion on the
681         action here.
682
683 Wed Aug 11 20:56:00 2004  Matthias Clasen  <maclas@gmx.de>
684
685         * gtk/gtkinternals.h: 
686         * gtk/gtk.symbols: Add shortcuts_model_filter_get_type.
687
688         * gtk/abicheck.sh: Check all symbols.
689
690 Wed Aug 11 19:20:34 2004  Matthias Clasen  <maclas@gmx.de>
691
692         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
693         Don't start a drag if the treeview is only a 
694         drag destination.  (#149836, Pawel Salek)
695
696 2004-08-11  Matthias Clasen  <mclasen@redhat.com>
697
698         * gtk/gtktreedatalist.[hc]: 
699         * gtk/gtkliststore.c:
700         * gtk/gtktreestore.c: Underscore-prefix 
701         gtk_tree_data_list_compare_func. 
702
703         * gtk/gtk.symbols: Remove gtk_tree_data_list_compare_func.
704
705         * gtk/makegtkalias.pl: No need to include gtktreedatalist.h 
706         any more.
707
708 2004-08-10  Matthias Clasen  <mclasen@redhat.com>
709
710         * gdk/Makefile.am: 
711         * gtk/Makefile.am: Define TESTS, not TEST, so that make check
712         actually triggers abicheck.sh.
713
714         * gdk/makegdkalias.pl: 
715         * gtk/makegtkalias.pl: Include glib.h before using glib symbols. D'oh.
716
717         * gdk/makegdkalias.pl: 
718         * gtk/makegtkalias.pl: Protect gtkalias.h by G_HAVE_GNUC_VISIBILITY.
719         
720         * gtk/Makefile.am: Include gtkalias.h in the generated
721         sources gtkmarhalers.c and gtkmarshal.c.
722
723         * gtk/makegtkalias.pl: Cosmetic fix.
724
725         * gdk/Makefile.am: Remove the . which was accidentally added
726         to SUBDIRS. Include gdkalias.h in the generated sources 
727         gdkenumtypes.c and gdkmarshalers.c.
728
729         * gdk/makegdkalias.pl: Cosmetic fix.
730
731         * gdk/Makefile.am: Add gdkalias.h to BUILT_SOURCES.
732
733 2004-08-09  Hans Breuer  <hans@breuer.org>
734
735         * gtk/makefile.msc.in : autogenerate gtk.def, cleanup
736
737         * gdk/win32/gdkwindow-win32.c gdk/win32/gdkevents-win32.c : 
738         removed long time unused ifdef/ed code (WITHOUT_WM_CREATE), 
739         removed duplicated call to gdk_window_set_cursor()
740
741 Mon Aug  9 15:41:17 2004  Matthias Clasen  <maclas@gmx.de>
742
743         Add hidden aliases for exported symbols which are
744         used internally in order to get rid of many PLT 
745         entries.  (#145519, Arjan van de Ven)
746         
747         * gdk/Makefile.am: Add rules to generate gdk.def and 
748         gdkalias.h from gdk.symbols, and make make check check 
749         the abi with abicheck.sh.
750
751         * gdk/gdk.symbols: New file. Definition of the GDK ABI.
752         The file can be processed by cpp to filter out certain 
753         subsets of symbols.
754
755         * gdk/abicheck.sh: New file. Script to check the actually 
756         symbols exported from libgdk-x11.2.0.so against the symbols
757         found in gdk.symbols.
758
759         * gdk/makegdkalias.pl: New file. Perl script to generate the 
760         header containing the alias definitions for internally used 
761         exported symbols from a list of symbols.
762
763         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h
764         
765 2004-08-09  Morten Welinder  <terra@gnome.org>
766
767         * gdk/x11/gdkdnd-x11.c (gdk_drag_drop_succeeded): Fix C99ism.
768
769 Mon Aug  9 15:27:01 2004  Matthias Clasen  <maclas@gmx.de>
770
771         * gtk/makegtkalias.pl: Also revert 
772         GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API to its old status.
773
774 Mon Aug  9 15:19:34 2004  Matthias Clasen  <maclas@gmx.de>
775
776         * gdk/gdk.h: 
777         * gdk/gdkrgb.h: Add the exported functions 
778         gdk_rgb_colormap_ditherable(), gdk_pointer_grab_info_libgtk_only(),
779         gdk_keyboard_grab_info_libgtk_only() to the appropriate
780         headers.
781
782 Mon Aug  9 14:24:46 2004  Matthias Clasen  <maclas@gmx.de>
783
784         * gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse): 
785         Make static.
786
787 Mon Aug  9 12:48:04 2004  Matthias Clasen  <maclas@gmx.de>
788
789         Add hidden aliases for exported symbols which are
790         used internally in order to get rid of many PLT 
791         entries.  (#145519, Arjan van de Ven)
792         
793         * gtk/Makefile.am: Add rules to generate gtk.def and 
794         gtkalias.h from gtk.symbols, and make make check check 
795         the abi with abicheck.sh.
796         (gtk_private_h_sources): Add gtkinternals.h
797         (gtk_built_private_headers): Add gtkalias.h
798         (gtk_extra_sources): Add gtk.symbols
799         (EXTRA_DIST): Add makegtkalias.pl and abicheck.sh
800
801         * gtk/gtk.symbols: New file. Definition of the GTK+ ABI.
802         The file can be processed by cpp to filter out certain 
803         subsets of symbols.
804
805         * gtk/abicheck.sh: New file. Script to check the actually 
806         symbols exported from libgtk-x11.2.0.so against the symbols
807         found in gtk.symbols.
808
809         * gtk/makegtkalias.pl: New file. Perl script to generate the 
810         header containing the alias definitions for internally used 
811         exported symbols from a list of symbols.
812
813         * gtk/gtkinternals.h: New file. An uninstalled header listing
814         symbols which must be exported for some reason and do not appear
815         in any other header.
816
817         * gtk/*.c: Include gtkalias.h
818         
819 Mon Aug  9 11:49:46 2004  Matthias Clasen  <maclas@gmx.de>
820
821         * gtk/gtkmain.c: Only undef gtk_init_check and gtk_init on win32.
822
823 Mon Aug  9 10:50:05 2004  Matthias Clasen  <maclas@gmx.de>
824
825         * gtk/gtkentry.h: Add gtk_entry_layout_index_to_text_index() 
826         and its inverse. The have always been exported and are meant
827         to be public.
828         
829 Mon Aug  9 00:28:34 2004  Matthias Clasen  <maclas@gmx.de>
830
831         * gtk/gtkicontheme.c (load_svg_at_size): Don't leak the 
832         file contents.
833
834 Mon Aug  9 00:13:03 2004  Matthias Clasen  <maclas@gmx.de>
835
836         * gtk/gtkaboutdialog.c (icon_set_new_from_pixbufs): Don't
837         leak the icon source.
838
839 Sun Aug  8 23:46:20 2004  Matthias Clasen  <maclas@gmx.de>
840
841         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): Don't
842         leak a reference to the pixbufs.
843
844 Sun Aug  8 23:36:55 2004  Matthias Clasen  <maclas@gmx.de>
845
846         * gtk/gtkcombobox.c (gtk_combo_box_menu_setup): Ref
847         and sink the column.
848         (gtk_combo_box_menu_destroy): Unref the column.
849
850 Sun Aug  8 23:35:00 2004  Matthias Clasen  <maclas@gmx.de>
851
852         * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): 
853         (gtk_drag_dest_add_text_targets): Don't leak a reference 
854         to the target list.
855
856 Sun Aug  8 22:52:26 2004  Matthias Clasen  <maclas@gmx.de>
857
858         * gtk/gtkcombobox.c (find_menu_by_path): Don't stumble over
859         separators which are not backed by model rows.
860
861 Sun Aug  8 11:01:23 2004  Matthias Clasen  <maclas@gmx.de>
862
863         * gtk/gtkcombobox.c (gtk_combo_box_set_active): Don't leak
864         the path.
865
866 2004-08-08  Hans Breuer  <hans@breuer.org>
867
868         * gtk/gtkdnd.c (gtk_drag_dest_set) : take targets into
869         account again to allow dnd of other things than text
870
871         * gdk/win32/gdkselection-win32.c : offer windows bitmap to
872         be pasted from clipboard (makes The GIMP 2.1's 
873         "File/Acquire/Paste as New" work, only using gtk+ API) 
874
875 Sun Aug  8 01:32:36 2004  Matthias Clasen  <maclas@gmx.de>
876
877         * gtk/gtk.def: Add gtk_cell_renderer_progress_get_type.
878
879 Sun Aug  8 01:29:08 2004  Matthias Clasen  <maclas@gmx.de>
880
881         * gtk/gtk.def: Replace duplicate gtk_tree_view_get_hover_expand
882         by gtk_tree_view_set_hover_expand.
883
884 Sun Aug  8 01:23:08 2004  Matthias Clasen  <maclas@gmx.de>
885
886         * gtk/gtk.def: Remove the static function gtk_menu_get_private.
887
888 2004-08-07  Tor Lillqvist  <tml@iki.fi>
889
890         * gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
891         mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
892         map it to what's printed on the keypad decimal key for the current
893         input locale (keyboard layout). (#149404)
894
895 Sat Aug  7 18:19:03 2004  Matthias Clasen  <maclas@gmx.de>
896
897         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
898         (shortcuts_list_create): Use GtkTreeViewRowSeparatorFunc 
899         instead of GtkCellRendererSepText.  (#147864)
900
901         * gtk/gtkcellrendererseptext.[hc]: Removed.
902
903         * gtk/Makefile.am: Remove gtkcellrendererseptext.[hc]
904         
905 Sat Aug  7 18:15:15 2004  Matthias Clasen  <maclas@gmx.de>
906
907         * gtk/gtkcombobox.c (gtk_combo_box_menu_row_deleted): 
908         (gtk_combo_box_menu_row_inserted): 
909         (gtk_combo_box_menu_row_changed): Correctly handle
910         insertion and deletion of separators in menu mode.
911
912 2004-08-07  Tor Lillqvist  <tml@iki.fi>
913
914         * gdk/win32/gdkevents-win32.c (handle_configure_event,
915         gdk_event_translate:WM_WINDOWPOSCHANGED): Add _gdk_offset_{x,y} to
916         top-level window coordinates, not just in generated
917         events. (#148526, Robert Ögren)
918
919 Sat Aug  7 01:26:08 2004  Matthias Clasen  <maclas@gmx.de>
920
921         Make the column drag code a bit more robust (still scary, 
922         though).  (#106992, Christian Biere)
923         
924         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): Assert
925         that cur_reorder is NULL here.
926
927         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column): 
928         Reset cur_reorder to NULL, and only hide drag_highlight_window 
929         if it exists.  
930
931 2004-08-06  Federico Mena Quintero  <federico@ximian.com>
932
933         Fix #144232:
934
935         * gtk/gtkfilechooserdefault.c (save_widgets_create): Use a
936         GtkFileChooserEntry for the file name, rather than a GtkEntry.
937         (update_chooser_entry): Set the contents of the file chooser entry
938         rather than the plain entry's.
939         (gtk_file_chooser_default_set_current_folder): Set the new folder
940         on the save entry.
941         (gtk_file_chooser_default_set_current_name): Set the name on the
942         file chooser entry.
943         (check_save_entry): Use the file chooser entry rather than the
944         plain entry.
945
946         * gtk/gtkfilechooserentry.c
947         (_gtk_file_chooser_entry_set_base_folder): Call
948         gtk_file_chooser_entry_changed() so that we recompute the current
949         folder based on the new base folder.
950
951 2004-08-06  Hans Breuer  <hans@breuer.org>
952
953         * gdk/win32/gdkwindow-win32.c : make it compile and more
954         similar to the X11 implementation [backward compatibility
955         for GDK_WINDOW_TEMP, GDK_INPUT_ONLY (fixes bug #148702), 
956         use the *screen* function variants, dont reparent already 
957         destroyed]
958         (get_visible_region) : take the win32 part into account
959         (_gdk_windowing_window_destroy) : remove from handle table
960
961         * gdk/win32/gdkdisplay-win32.c : added 
962         gdk_display_(request|supports)_selection_notification ()
963         with a currently mostly pointless implementation ;-)
964
965         * gtk/gtkfilesystemwin32.c (*_to_path) : same changes as on *NIX,
966         plugs memory leak
967         (gtk_file_system_win32_render_icon) : use new GTK_STOCK_DIRECTORY
968
969         * gtk/makefile.msc.in demos/gtk-demo/makefile.msc.in 
970           gtk/stock-icons/makefile.msc tests/makefile.msc : updated
971
972         * gdk/gdk.def gtk/gtk.def : updated externals
973
974         * tests/testiconview.c : remove unneeded dirent.h inclusion
975
976 2004-08-06  Matthias Clasen  <mclasen@redhat.com>
977
978         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): Fix
979         an off-by-one error.  (#141809, Markku Vire)
980
981         * gtk/gtkdnd.c (gtk_drag_dest_set, gtk_drag_source_set): Really
982         fix the initialization of the target list.
983
984         Support XDND v5. (#10220, Owen Taylor)
985         
986         * gdk/x11/gdkdnd-x11.c: Record the XDND version and whether the
987         drop was successful in the GdkDragContextPrivateX11 struct.
988         (xdnd_finished_filter): Store the success status of the drop
989         for an XDND version 5 interaction. For other versions, always
990         assume the drop was successful.
991         (xdnd_check_dest): Return the protocol version.
992         (_gdk_drag_get_protocol_for_display): Return the protocol version.
993         (gdk_drag_find_window_for_screen): Store the used protocol version
994         in the GdkDragContext.
995         (xdnd_send_enter): Send the used protocol version from the context,
996         instead of hardwiring 3.
997         (xdnd_enter_filter): Accept protocol versions >= 3 and store the
998         used protocol version in the context.
999
1000         * gdk/gdkdnd.h: 
1001         * gdk/x11/gdkdnd-x11.c (gdk_drag_drop_succeeded): New function
1002         to find out whether a drop was successful.
1003
1004 2004-07-28  Robert Ögren  <gtk@roboros.com>
1005
1006         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Set x_root
1007         and y_root in button and motion events from the tablet. (#148715)
1008
1009 Thu Aug  5 19:58:08 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1010
1011         * gtk/gtkplug.c (gtk_plug_realize): Call
1012         gdk_window_enable_synchronized_configure()
1013
1014         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Make
1015         noop if gdk_window_enable_synchronized_configure() has not been
1016         called.
1017
1018 2004-08-04  Matthias Clasen  <mclasen@redhat.com>
1019
1020         * gtk/gtkfilechooser.[hc]: Add setter and getter for the 
1021         ::show-hidden property.  (#145610, Jeff Franks)
1022
1023         * tests/testiconview.c: Add buttons to select and unselect all
1024         nodes, make the popup menu actually work.
1025
1026         * gtk/gtkiconview.c: Make GTK_SELECTION_BROWSE work as intended,
1027         let button 3 presses through to the app, to make popup menus
1028         work.
1029
1030         * tests/Makefile.am: Add testiconview.
1031         * tests/testiconview.c: A test for GtkIconView
1032         * tests/gnome-textfile.png: ...which uses this image.
1033
1034 Wed Aug  4 01:37:57 2004  Matthias Clasen  <maclas@gmx.de>
1035
1036         * gtk/gtktreeview.c: 
1037         * gtk/gtktreestore.c: 
1038         * gtk/gtktreemodelfilter.c: 
1039         * gtk/gtknotebook.c: s/childs/children/g.
1040
1041 Wed Aug  4 01:04:48 2004  Matthias Clasen  <maclas@gmx.de>
1042
1043         Fix #133446, noticed by Christian Persch:
1044         
1045         * gtk/gtkaction.c (gtk_action_class_init): Add a new boolean 
1046         property ::visible-overflown. 
1047         * gtk/gtkaction.c (gtk_action_create_menu_proxy): Don't create 
1048         a menu proxy if visible_overflown is FALSE.  
1049
1050 Tue Aug  3 20:16:26 2004  Matthias Clasen  <maclas@gmx.de>
1051
1052         * gtk/gtkactiongroup.[hc]: Make the the GtkAction{Toggle,Radio,}Entry*
1053         arguments to the gtk_action_group_add_..._actions() functions const, 
1054         since the most common use case is to use a static array.  (142334, 
1055         Mariano Suarez-Alvarez)
1056
1057 Tue Aug  3 20:03:33 2004  Matthias Clasen  <maclas@gmx.de>
1058
1059         * gtk/gtkuimanager.c (get_node): Make gtk_ui_manager_add_ui()
1060         accept paths with a leading "/ui".  (#149077, David Malcolm)
1061
1062 Tue Aug  3 19:59:29 2004  Matthias Clasen  <maclas@gmx.de>
1063
1064         * gtk/gtkiconview.c: Fix some warnings.
1065
1066 Tue Aug  3 18:38:40 2004  Matthias Clasen  <maclas@gmx.de>
1067
1068         * gtk/gtktreemodelfilter.c: Correct the return type
1069         of gtk_tree_model_filter_get_flags().  (#149195, Morten Welinder)
1070
1071 Tue Aug  3 18:16:55 2004  Matthias Clasen  <maclas@gmx.de>
1072
1073         Fix #149191, reported by Morten Welinder:
1074         
1075         * gtk/gtkmain.c: Include gtkclipboard.h,
1076         * gtk/gtkwidget.h: Declare _gtk_widget_grab_notify, not
1077         _gtk_widget_emit_grab_notify.  
1078
1079 Tue Aug  3 14:50:14 2004  Matthias Clasen  <maclas@gmx.de>
1080
1081         * gtk/gtkicontheme.c (add_size): Add missing parens.
1082         (#149190, Morten Welinder)
1083
1084 Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>
1085
1086         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove 
1087         accidentally committed debug code.
1088
1089 Tue Aug  3 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>
1090
1091         * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize 
1092         for the case that row_column and col_column are unset.  
1093         (#148868, Lorenzo Gil Sánchez)
1094
1095 Mon Aug  2 21:52:45 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1096
1097         * gdk/x11/gdkwindow-x11.c (ensure_sync_counter): New
1098         function. Make sure the sync counter is recreated when a window is
1099         reparented to become a toplevel. (#148358)
1100
1101 2004-08-02  Matthias Clasen  <mclasen@redhat.com>
1102
1103         * tests/testcombo.c: Some trees in combo boxes.
1104
1105         * gtk/gtkcombobox.c: Rework the combo box to handle 
1106         tree models.  (#139582, Matt Walton)
1107         
1108         * gtk/gtktreeview.h: 
1109         * gtk/gtktreeview.c: 
1110         * gtk/gtktreeprivate.h: Add a new boolean property 
1111         ::hover-expand and make the treeview expand/collapse rows
1112         on mouseover if it is set.
1113
1114         * gtk/gtkiconview.h: Remove some erroneous declarations.
1115
1116         * gtk/gtkcellview.c (gtk_cell_view_set_cell_data): Don't
1117         crash if the displayed row is gone.
1118
1119 2004-08-02  Morten Welinder  <terra@gnome.org>
1120
1121         * gtk/gtkentry.c (gtk_entry_motion_notify): C99ism.
1122
1123 Mon Aug  2 01:30:03 2004  Matthias Clasen  <maclas@gmx.de>
1124
1125         * gtk/gtktextview.[hc]: 
1126         * gtk/gtkentry.[hc]: Add a new binding signal ::backspace,
1127         bind it to the backspace key, and make it pay attention 
1128         to the Pango backspace_deletes_character 
1129         attribute.  (#119891, Noah Levitt, patch by Theppitak 
1130         Karoonboonyanan)
1131
1132 Mon Aug  2 01:02:57 2004  Matthias Clasen  <maclas@gmx.de>
1133
1134         * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed): 
1135         (gdk_check_wm_desktop_changed): Add missing error 
1136         traps.  (#149011, Thomas Leonard)
1137
1138 Mon Aug  2 00:21:26 2004  Matthias Clasen  <maclas@gmx.de>
1139
1140         * gtk/gtktextview.c (blink_cb): Add the same warning
1141         that the blink_cb() in GtkEntry already has.  (#148733)
1142
1143 Mon Aug  2 00:12:16 2004  Matthias Clasen  <maclas@gmx.de>
1144
1145         * gtk/gtkentry.c (gtk_entry_class_init):
1146         (gtk_entry_get_alignment): 
1147         (gtk_entry_set_alignment): Document the xalign property
1148         and its getter and setter as 2.4 additions.  (#148978,
1149         Axel Simon)
1150
1151 Mon Aug  2 00:11:31 2004  Matthias Clasen  <maclas@gmx.de>
1152
1153         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
1154         * gtk/gtkactiongroup.c (gtk_action_group_class_init): Use
1155         canonical signal names in doc comments, since gtk-doc won't
1156         pick up signal docs with underscores.  
1157
1158 2004-08-01  Matthias Clasen  <mclasen@redhat.com>
1159         
1160         * configure.in: Post-release version bump
1161
1162         * === Released 2.5.1 ===
1163  
1164 Thu Jul 29 16:36:42 2004  Jonathan Blandford  <jrb@redhat.com>
1165
1166         * gtk/gtktreeprivate.h: New arguments
1167
1168         * gtk/gtktreeview.c:
1169         (gtk_tree_view_class_init): Add key_release callback
1170         (gtk_tree_view_init): Initialize timeout handler
1171         (gtk_tree_view_unrealize): clear timeout if needed
1172         (gtk_tree_view_key_press): Typeahead support
1173         (gtk_tree_view_key_release): Not used yet -- will be needed for
1174         typeahead.
1175         (gtk_tree_view_search_entry_flush_timeout): Remove typeahead entry
1176         in a timeout.
1177         (gtk_tree_view_ensure_interactive_directory):
1178         (gtk_tree_view_real_start_interactive_search):
1179         (gtk_tree_view_search_init):
1180         (gtk_tree_view_start_interactive_search): Typeahead support added.
1181         (gtk_tree_view_search_dialog_hide): Clear timeout and text when we
1182         hide.
1183
1184 Sat Jul 31 23:17:44 2004  Matthias Clasen  <maclas@gmx.de>
1185
1186         * NEWS: Updates
1187
1188 Sat Jul 31 01:13:01 2004  Matthias Clasen  <maclas@gmx.de>
1189
1190         * gtk/gtkwindow.c: 
1191         * gtk/gtkentry.c: 
1192         * gtk/gtkaction.c: Use the canonical form of signal names 
1193         after "notify::". Otherwise, no notification arrives. 
1194         GObject should have a warning for that, really.  (#148879, 
1195         Lorenzo Gil Sánchez)
1196
1197 Sat Jul 31 00:42:08 2004  Matthias Clasen  <maclas@gmx.de>
1198
1199         * gdk/x11/gdkwindow-x11.c (gdk_window_set_keep_below): 
1200         * gdk/x11/gdkwindow-x11.c (gdk_window_set_keep_above): Don't
1201         set both states at once.  (#148789, Matthew Garrett)
1202
1203 2004-07-30  Matthias Clasen  <mclasen@redhat.com>
1204
1205         * gtk/gtkcombobox.c: Don't forget to destroy the row separator
1206         function user data when the combo box is destroyed.
1207
1208 2004-07-30  Matthias Clasen  <mclasen@redhat.com>
1209
1210         * gtk/gtkcombobox.h: 
1211         * gtk/gtkcombobox.c: Change the api for separators to use a 
1212         separator function instead of a boolean column.
1213
1214         * tests/testcombo.c: Update to match the api change.
1215
1216 Fri Jul 30 02:21:41 2004  Matthias Clasen  <maclas@gmx.de>
1217
1218         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
1219         Fix the positioning of the popup. 
1220
1221 Fri Jul 30 00:56:31 2004  Matthias Clasen  <maclas@gmx.de>
1222
1223         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_active_changed): 
1224         Implement this in terms of gtk_combo_box_get_active_iter(),
1225         instead of gtk_combo_box_get_active().
1226
1227 2004-07-29  Federico Mena Quintero  <federico@ximian.com>
1228
1229         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): Add
1230         a field for an "add to shortcuts" menu item.
1231         (popup_menu_detach_cb): Clear out the field.
1232         (file_list_build_popup_menu): Only build the menu here.
1233         (file_list_update_popup_menu): Build the menu, then update the
1234         sensitivity of its items.
1235         (file_list_popup_menu): Use file_list_update_popup_menu().
1236         (bookmarks_check_add_sensitivity): Also set the sensitivity of the
1237         popup menu item.  Correctly handle the case for a *single* file.
1238         Simplify a bit.
1239         (bookmarks_add_selected_folder): New helper function; code moved
1240         over from add_bookmark_button_clicked_cb().
1241         (add_bookmark_button_clicked_cb): Use the function above.
1242         (selection_check): Rather than returning a boolean value for
1243         emptiness, actually return the number of selected rows.  Also,
1244         simplify a bit.
1245         (get_selected_path): New helper function.
1246
1247 2004-07-29  Anders Carlsson  <andersca@gnome.org>
1248
1249         * demos/gtk-demo/Makefile.am:
1250         * demos/gtk-demo/clipboard.c: (copy_button_clicked),
1251         (paste_received), (paste_button_clicked), (do_clipboard):
1252         Add clipboard demo.
1253         
1254 2004-07-28  Federico Mena Quintero  <federico@ximian.com>
1255
1256         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
1257         Store signal IDs in gulongs, not guints!
1258         (gtk_file_chooser_default_hierarchy_changed): We now monitor the
1259         focus widget on our toplevel to know which widget was last focused
1260         at the time our "should_respond" method gets called.
1261         (shortcuts_activate_selected): New helper function.
1262         (shortcuts_get_selected): New helper function.
1263         (remove_selected_bookmarks): Use shortcuts_get_selected().
1264         (bookmarks_check_remove_sensitivity): Likewise.
1265         (shortcuts_reorder): Likewise.
1266         (shortcuts_activate_iter): Renamed from shortcuts_activate_item().
1267         Activate by iter, not by item number.
1268         (save_folder_combo_changed_cb): Use shortcuts_activate_iter().
1269         (shortcuts_row_activated_cb): Likewise.
1270         (gtk_file_chooser_default_should_respond): If the last focused
1271         widget on the toplevel was the shortcuts list, activate the
1272         selected shortcut.
1273
1274 2004-07-28  Matthias Clasen  <mclasen@redhat.com>
1275
1276         * gdk/linux-fb/gdkprivate-fb.h: Make the fb backend compile against
1277         current freetype.  (#148558, Nicolas Deves)
1278
1279         * gtk/gtktreeview.c: Replace the EXPANDER_MAX macro by 
1280         ROW_HEIGHT.  (#145528)
1281
1282         * gtk/gtkuimanager.c: Warning fixes.
1283
1284         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Fix
1285         prototype mismatch.  (#148589, Nicolas Deves)
1286
1287 2004-07-28  Anders Carlsson  <andersca@gnome.org>
1288
1289         * gdk/x11/gdkdrawable-x11.c (gdk_draw_rectangle_alpha_libgtk_only): 
1290         Cast to 32-bit integers when premultiplying, suggested by Keith Packard.
1291
1292 2004-07-27  Anders Carlsson  <andersca@gnome.org>
1293
1294         * demos/gtk-demo/iconview.c: (do_iconview):
1295         Change selection mode to multiple.
1296         
1297         * gdk/gdkdrawable.h:
1298         * gdk/linux-fb/gdkdrawable-fb2.c:
1299         (gdk_draw_rectangle_alpha_libgtk_only):
1300         * gdk/win32/gdkdrawable-win32.c:
1301         (gdk_draw_rectangle_alpha_libgtk_only):
1302         * gdk/x11/gdkdrawable-x11.c: (gdk_x11_draw_image),
1303         (get_impl_drawable), (gdk_x11_draw_pixbuf),
1304         (gdk_draw_rectangle_alpha_libgtk_only):
1305         Add gdk_draw_rectangle_alpha_libgtk_only which uses 
1306         XRenderFillRectangle on X11. It's stubbed out on the 
1307         Win32 and fb backends.
1308         
1309         * gtk/gtkiconview.c: 
1310         (gtk_icon_view_paint_rubberband):
1311         Use gdk_draw_rectangle_alpha_libgtk_only here.
1312
1313 2004-07-27  Anders Carlsson  <andersca@gnome.org>
1314
1315         * gtk/gtkaboutdialog.c: (gtk_about_dialog_init),
1316         (text_view_style_set), (add_credits_page),
1317         (display_credits_dialog), (display_license_dialog):
1318         Remove dialog separators, fix text view background setting,
1319         use Close buttons instead of OK buttons.
1320         
1321 2004-07-27  Matthias Clasen  <mclasen@redhat.com>
1322
1323         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory): 
1324         Add a frame around the C-f popup to stop it from merging visually
1325         in whatever is underneath.
1326
1327         * gtk/gtkcombobox.h: 
1328         * gtk/gtkcombobox.c (gtk_combo_box_get_popup_accessible): New 
1329         function necessary to make GtkComboBox accessible.  (#132847, 
1330         Padraig O'Briain)
1331
1332 Tue Jul 27 02:34:06 2004  Matthias Clasen  <maclas@gmx.de>
1333
1334         * gtk/gtkwidget.c (gtk_widget_dispose): Hide parentless
1335         windows when disposing them.  (#133231, Michael Natterer)
1336
1337 2004-07-26  Matthias Clasen  <mclasen@redhat.com>
1338
1339         * gtk/gtklabel.c (gtk_label_class_init): Expand the documentation
1340         for GtkLabel::ellipsize.
1341
1342 Mon Jul 26 00:38:27 2004  Matthias Clasen  <maclas@gmx.de>
1343
1344         Make the GtkComboBox in list mode scroll if the list is too
1345         large to fit in the popup.  (#135543)
1346
1347         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add a 
1348 o       scrolled window to the popup in list mode.
1349         (gtk_combo_box_list_position): Calculate the height of the
1350         popup so that it fits on the screen, set the scrollbar policy
1351         of the scrolled window appropriately.
1352         (gtk_combo_box_popup): Use the height calculated by 
1353         gtk_combo_box_list_position().
1354         (gtk_combo_box_remeasure): Don't add unnecessary padding.
1355         (gtk_combo_box_size_request): But add the focus with here.
1356         (gtk_combo_box_list_setup): Connect to enter notify on the 
1357         popup window to activate auto scrolling.
1358         (gtk_combo_box_list_enter_notify): Activate auto scrolling.
1359         (gtk_combo_box_list_button_pressed): Setup a timeout for
1360         auto scrolling. 
1361         (gtk_combo_box_list_scroll_timeout): Timeout function for
1362         auto scrolling.
1363         (gtk_combo_box_list_auto_scroll): Scroll the list when the 
1364         pointer leaves the window.
1365         
1366 Sun Jul 25 19:51:17 2004  Matthias Clasen  <maclas@gmx.de>
1367
1368         * gtk/gtknotebook.c (gtk_notebook_scroll): Ignore scroll
1369         events from the content of the page.  (#148409, Gabriel 
1370         de Perthuis)
1371
1372 Sat Jul 24 21:38:12 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1373
1374         * gtk/gtktoolbar.c (internal_insert_element): Warn if you try to
1375         add a tool item to a toolbar using the deprecated API.
1376
1377 Fri Jul 23 13:04:10 2004  Matthias Clasen  <maclas@gmx.de>
1378
1379         * gtk/gtkdnd.c (gtk_drag_dest_set): Revert the change to
1380         initialize target_list to an empty list instead of NULL,
1381         since it broke tree dnd.  (#148215, Ernst Persson)
1382
1383         * gtk/gtkdnd.c (gtk_drag_dest_add_text_targets): 
1384         * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): Instead 
1385         handle target list being NULL here.
1386
1387 2004-07-23  Dafydd Harries  <daf@muse.19inch.net>
1388
1389         * gtk/gtkradioaction.c:
1390         * gtk/gtkradiobutton.c:
1391         * gtk/gtkentry.c:
1392         * gtk/gtkmisc.c:
1393         Improve various translatable messages. (#137616)
1394
1395 Fri Jul 23 11:11:10 2004  Matthias Clasen  <maclas@gmx.de>
1396
1397         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_start_editing): 
1398         Align the entry in the same way as the cell.  (#136749)
1399
1400 Fri Jul 23 11:01:00 2004  Matthias Clasen  <maclas@gmx.de>
1401
1402         * gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag): 
1403         Don't iterate too far up. (#147965, Olivier Sessink)
1404
1405 Fri Jul 23 10:28:43 2004  Matthias Clasen  <maclas@gmx.de>
1406
1407         * gtk/gtktreeview.c (gtk_tree_view_finalize): 
1408         * gtk/gtkradioaction.c (gtk_radio_action_finalize): 
1409         * gtk/gtkfontsel.c (gtk_font_selection_finalize): 
1410         * gtk/gtkcellview.c (gtk_cell_view_finalize): 
1411         * gtk/gtkcalendar.c (gtk_calendar_finalize): 
1412         * gtk/gtkactiongroup.c (gtk_action_group_finalize): Remove
1413         unnecessary checks.  (#148175, Morten Welinder)
1414
1415 Thu Jul 22 01:42:16 2004  Matthias Clasen  <maclas@gmx.de>
1416
1417         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
1418         Add a new :ellipsize property which controls ellipsization of the 
1419         rendered text.  (#144835, Vincent Untz, patch by Jonathan Blandford
1420         and Anders Carlsson)
1421         
1422         * gtk/gtkfilechooserdefault.c (create_file_list): Use ellipsization
1423         for the name column.
1424
1425 Thu Jul 22 01:21:28 2004  Matthias Clasen  <maclas@gmx.de>
1426
1427         * gtk/gtkfontsel.c (gtk_font_selection_init): Add additional
1428         accessability relations.  (#141804,  Padraig O'Briain)
1429
1430 Thu Jul 22 01:16:23 2004  Matthias Clasen  <maclas@gmx.de>
1431
1432         * gtk/gtkcombobox.c: Avoid some warnings.
1433
1434 Thu Jul 22 01:05:16 2004  Matthias Clasen  <maclas@gmx.de>
1435
1436         * configure.in: Require Pango 1.5.1 (for ellipsisation).
1437
1438         * gtk/gtklabel.h: 
1439         * gtk/gtklabel.c (gtk_label_class_init): Add a new :ellipsize
1440         property which controls ellipsization of the label.  (#125250, 
1441         Tim Van Wassenhove, patch by James M. Cape)
1442
1443         * tests/testellipsise.c: Simple test for ellipsizsation.
1444
1445 Wed Jul 21 22:46:27 2004  Matthias Clasen  <maclas@gmx.de>
1446
1447         * gtk/gtkcombobox.c (gtk_combo_box_new_text): Don't leak the
1448         list store.  (#148134, Crispin Flowerday)
1449
1450 Wed Jul 21 22:35:47 2004  Matthias Clasen  <maclas@gmx.de>
1451
1452         * gtk/gtkcombobox.c (gtk_combo_box_destroy): Don't leak the
1453         menu.  (#148110, Tommi Komulainen)
1454
1455 Wed Jul 21 22:24:10 2004  Matthias Clasen  <maclas@gmx.de>
1456
1457         * gtk/gtkcellview.c (gtk_cell_view_finalize): Don't leak
1458         tree model and tree row reference.  (#148125, Crispin Flowerday)
1459
1460 Wed Jul 21 22:17:06 2004  Matthias Clasen  <maclas@gmx.de>
1461
1462         * tests/testcombo.c (main): Don't leak models.  (#148128,
1463         Tommi Komulainen)
1464
1465 Wed Jul 21 21:26:08 2004  Matthias Clasen  <maclas@gmx.de>
1466
1467         * gtk/gtkviewport.c (viewport_set_adjustment): Don't leak
1468         the adjustments.  (#148089, Tommi Komulainen)
1469
1470 Wed Jul 21 21:20:21 2004  Matthias Clasen  <maclas@gmx.de>
1471
1472         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't leak
1473         the adjustments.  (#148073, Tommi Komulainen)
1474
1475 Wed Jul 21 21:04:50 2004  Matthias Clasen  <maclas@gmx.de>
1476
1477         * gtk/gtktoolbar.c (gtk_toolbar_finalize): Don't leak the 
1478         arrow.  (#148064, Tommi Komulainen)
1479
1480 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
1481
1482         * gtk/gtkcalendar.c: Use the new text target functionality
1483         in GtkTargetList instead of hardcoding a subset of text targets.
1484
1485 Tue Jul 20 23:11:23 2004  Matthias Clasen  <maclas@gmx.de>
1486
1487         * gdk/x11/gdkevents-x11.c: Hook up gtk-menu-bar-accel to
1488         an XSetting, Gtk/MenuBarAccel.  (#120859, Scott James Remnant)
1489
1490 Tue Jul 20 22:26:29 2004  Matthias Clasen  <maclas@gmx.de>
1491
1492         * gtk/gtkfilechooserutils.h: 
1493         * gtk/gtktoolbutton.c: 
1494         * gtk/gtktoolbar.c: 
1495         * gtk/gtkicontheme.c: 
1496         * gtk/gtkcalendar.c: 
1497         * demos/gtk-demo/ui_manager.c: 
1498         * demos/gtk-demo/appwindow.c: Remove trailing commas
1499         from enumerations.  (#148035)
1500
1501 2004-07-20  Federico Mena Quintero  <federico@ximian.com>
1502
1503         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): Fix the
1504         documentation comment for the editing-started signal.
1505
1506         * gtk/gtkmarshalers.list: Added VOID:OBJECT,STRING for
1507         GtkCellRenderer::editing-started.
1508
1509 2004-07-20  Matthias Clasen  <mclasen@redhat.com>
1510
1511         * tests/testactions.c (main): 
1512         * tests/testmerge.c (main): Add some refcount debugging.
1513
1514         * gtk/gtkuimanager.c (update_node, free_node): Ref an sink
1515         all proxies, so that we can properly clean up floating proxies
1516         which the app didn't adopt.  (#147926, Tommi Komulainen)
1517
1518 2004-07-20  Matthias Clasen  <mclasen@redhat.com>
1519
1520         Allow custom initialization of cell editables.  (#147221)
1521         
1522         * gtk/gtkcellrenderer.h (struct _GtkCellRendererClass): 
1523         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): Add a 
1524         ::editing-started signal as a hook for setting up the 
1525         GtkCellEditable.
1526         (gtk_cell_renderer_start_editing): ...and emit it here.
1527
1528 Mon Jul 19 23:51:50 2004  Matthias Clasen  <maclas@gmx.de>
1529
1530         * gtk/gtktreeview.c (gtk_tree_view_button_press): Set drag_pos
1531         before grabbing the focus, since we may reenter into 
1532         gtk_tree_view_motion_resize_column() which requires drag_pos
1533         to be set.  (#147913, Guilherme Salgado, patch by John Finlay) 
1534
1535 Mon Jul 19 23:51:50 2004  Matthias Clasen  <maclas@gmx.de>
1536
1537         * gtk/gtktreeview.c (gtk_tree_view_enter_notify): Don't
1538         use uninitialized node pointer.  (#147911, Peter Zelezny)
1539
1540 Tue Jul 20 04:34:56 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1541
1542         * configure.in: Bump version number
1543
1544 Sun Jul 18 17:21:10 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1545
1546         * === Released 2.5.0 ===
1547
1548         * NEWS: updates
1549
1550         * tests/testcombo.c: Fix compilation
1551
1552 2004-07-19  Matthias Clasen  <mclasen@redhat.com>
1553
1554         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_popup_completion):
1555         Fix doc comment.
1556         
1557 2004-07-19  Matthias Clasen  <mclasen@redhat.com>
1558
1559         Make GtkCellView public, since people seem to have uses for it, 
1560         it is clean API and we were just conservative in not making it 
1561         public initially. At the same time, get rid of GtkCellViewMenuItem,
1562         which doesn't have any function which can't be served by a
1563         GtkMenuItem with a GtkCellView child.  (#136637, Padraig O'Briain)
1564
1565         * gtk/gtk.h: Include gtkcellview.h
1566
1567         * gtk/Makefile.am (gtk_public_h_sources): 
1568
1569         * gtk/Makefile.am (gtk_private_h_sources): 
1570         (gtk_c_sources): Remove gtkcellviewmenuitem.[hc]
1571         * gtk/gtkcombobox.c: Replace all uses of GtkCellViewMenuItem by
1572         GtkMenuItem with a GtkCellView child.
1573
1574         * gtk/gtkcellviewmenuitem.[hc]: Removed.
1575
1576 2004-07-19  Matthias Clasen  <mclasen@redhat.com>
1577
1578         Support inline autocompletion in entries  (#135953)
1579         
1580         * gtk/gtkentryprivate.h: 
1581         * gtk/gtkentrycompletion.h: 
1582         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
1583         Add a new signal ::insert-prefix which can be used to override 
1584         the default inline-completion behaviour. Add two new boolean
1585         properties, :popup_completion and :inline_completion which
1586         determine how the possible completions should be presented.
1587         (gtk_entry_completion_insert_prefix): New function to request
1588         a prefix insertion. 
1589
1590         * gtk/gtkentry.c: Add the necessary glue for inline completion. 
1591
1592 Sun Jul 18 15:28:24 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1593
1594         * gtk/gtkdnd.c (gtk_drag_source_set, gtk_drag_dest_set): Create an
1595         empty target list if targets is NULL.
1596
1597         * configure.in: Add check for X11/extensions/sync.h. (#147416,
1598         Morten Welinder)
1599
1600 Sun Jul 18 01:24:31 2004  Matthias Clasen  <maclas@gmx.de>
1601
1602         * NEWS: Updates for 2.5.0
1603
1604 Sat Jul 17 23:11:04 2004  Matthias Clasen  <maclas@gmx.de>
1605
1606         * gtk/gtkiconview.h:
1607         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
1608         * gtk/gtkiconview.c (gtk_icon_view_set_orientation): 
1609         * gtk/gtkiconview.c (gtk_icon_view_get_orientation): 
1610         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size): 
1611         * gtk/gtkiconview.c (gtk_icon_view_layout_single_row): 
1612         Add a new :orientation property to determine whether text
1613         is positioned below or beside icons.  (#147463)
1614
1615 Sat Jul 17 23:03:30 2004  Matthias Clasen  <maclas@gmx.de>
1616
1617         * gtk/gtkiconview.c (gtk_icon_view_paint_item): 
1618         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size): 
1619         * gtk/gtkiconview.c (gtk_icon_view_layout_single_row): Draw 
1620         focus indicator outside the selection, respect focus 
1621         line width.  (#147460) 
1622
1623 Sat Jul 17 01:17:33 2004  Matthias Clasen  <maclas@gmx.de>
1624
1625         * gdk/x11/gdkdnd-x11.c (xdnd_check_dest): Fix a warning
1626         message.
1627
1628 Sat Jul 17 00:48:27 2004  Matthias Clasen  <maclas@gmx.de>
1629
1630         Support text/plain selection target  (#55117, Owen Taylor)
1631         
1632         * gtk/gtkselection.h: 
1633         * gtk/gtkdnd.h: 
1634         * gtk/gtkselection.c (gtk_target_list_add_text_targets): 
1635         * gtk/gtkdnd.c (gtk_drag_dest_add_text_targets): 
1636         * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): New
1637         functions to facilitate handling of text targets.
1638
1639         * gtk/gtkentry.c: 
1640         * gtk/gtktextview.c: Use the new text target handling 
1641         functions instead of hardwiring the list of supported
1642         text targets everywhere.
1643
1644         * gtk/gtkselection.c (gtk_selection_data_get_text): 
1645         (gtk_selection_data_set_text): 
1646         Support the targets text/plain, text/plain?charset=utf-8
1647         and text/plain?charset=<LOCALE-CHARSET> as outlined in
1648         #55117: 
1649         For text/plain send only ASCII, but accept 8-bit text 
1650         and treat it as ISO-8859-1 as specified by the Xdnd spec.
1651         Always send CRLF terminators. Accept either and convert
1652         into the native terminator for the platform.
1653         
1654 Fri Jul 16 23:20:34 2004  Matthias Clasen  <maclas@gmx.de>
1655
1656         Support themed window icons.  (#92346, Calum Benson)
1657         
1658         * gtk/gtkicontheme.c (gtk_icon_theme_get_icon_sizes): New 
1659         function to obtain information about the sizes in which an
1660         icon is available.  
1661
1662         * gtk/gtkwindow.h: 
1663         * gtk/gtkwindow.c (gtk_window_class_init): 
1664         (gtk_window_set_icon_name): 
1665         (gtk_window_get_icon_name): Add an "icon_name" property
1666         (gtk_window_set_default_icon_name): ...and a default icon name. 
1667         (icon_list_from_theme): 
1668         (update_themed_icon): New auxiliary functions to create a 
1669         list of all available sizes of a themed icon and update the
1670         window icon list from it.
1671
1672 2004-07-16  Matthias Clasen  <mclasen@redhat.com>
1673
1674         * gtk/gtkcombobox.c (gtk_combo_box_scroll_event): Make 
1675         scrolling work if no item is selected.
1676         (gtk_cell_editable_key_press): Don't eat space.
1677
1678         Add a combo box cell renderer (#139347, Lorenzo Gil Sanchez)
1679         
1680         * gtk/gtkcellrenderercombo.[hc]: New Files.
1681
1682         * gtk/gtk.h: 
1683         * gtk/Makefile.am (gtk_public_h_sources, gtk_c_sources): 
1684         Add the new files.
1685
1686         * gtk/gtkcombobox.[hc]: Implement GtkCellEditable, add a 
1687         :has-frame property for suppressing the frame around 
1688         the child and redo the size allocation logic to take 
1689         focus width into account.
1690
1691         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): 
1692         Acknowledge the GtkComboBox:has-frame property and make
1693         the entry fill its allocation vertically.
1694
1695         * gtk/gtkmarshalers.list: Add BOOLEAN:STRING.
1696                 
1697         * gtk/gtktreeview.c (gtk_tree_view_remove_widget): Queue
1698         a draw here to keep non-widget windows from leaving 
1699         shadows behind.
1700
1701 2004-07-16  Matthias Clasen  <mclasen@redhat.com>
1702
1703         * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
1704         multiple times over some of the children. 
1705
1706 Thu Jul 15 22:19:40 2004  Matthias Clasen  <maclas@gmx.de>
1707
1708         Fix #60128, #58307, #144706:
1709         
1710         * gtk/gtkstyle.c (gtk_style_real_copy): Handle references
1711         to bg_pixmaps properly.
1712         (gtk_style_real_unrealize): Don't keep dangling references
1713         to the bg_pixmaps.  
1714         (gtk_style_attach): Split the loop into two loops, first 
1715         looking for a matching style, then for an empty one.
1716         (gtk_style_finalize): 
1717         (gtk_style_duplicate): Add comments explaining the handling
1718         of style->styles.
1719
1720 Thu Jul 15 20:31:28 2004  Matthias Clasen  <maclas@gmx.de>
1721
1722         * gtk/gtkspinbutton.c (start_spinning): Install the timeout
1723         before changing the value, so that a ::value_changed handler
1724         has a chance to remove it.  (#122427, Elke Meier)
1725
1726 Thu Jul 15 19:20:05 2004  Matthias Clasen  <maclas@gmx.de>
1727
1728         * gdk/x11/gdkgtk+/im-x11.c (_gdk_x11_initialize_locale): 
1729         * gtk/gtkcalendar.c (gtk_calendar_class_init): Use 'cannot'
1730         instead of 'can not' in messages.  (#144226, Morten Welinder)
1731
1732 2004-07-15  Matthias Clasen  <mclasen@redhat.com>
1733
1734         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
1735         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
1736         Correct the declared default values of several properties
1737         to be in sync with the actual initial values.
1738
1739         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
1740         Make spacing a property, correct the declared default values 
1741         of several properties to be in sync with the actual initial 
1742         values.  (#147654, Matthias Clasen)
1743
1744         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Don't reparent
1745         back to menu->toplevel if it is already gone because we're
1746         shutting down.  (#147656, John Cupitt)
1747
1748 2004-07-14  Federico Mena Quintero  <federico@ximian.com>
1749
1750         Fix #126295:
1751
1752         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw a focus
1753         indicator along the edge of the bin_window when the tree is empty.
1754         (grab_focus_and_unset_draw_keyfocus): New helper function.
1755         (gtk_tree_view_button_press): Remove a bit of superfluous code.
1756         Use the helper function to save on duplicated code.
1757         (gtk_tree_view_button_press): Grab the focus if the tree is empty.
1758         (gtk_tree_view_focus): Allow focusing into an empty tree.
1759
1760 2004-07-14  Matthias Clasen  <mclasen@redhat.com>
1761
1762         * gtk/gtkaboutdialog.c (add_credits_page): Don't use
1763         gcc extensions for the ternary ?: operator.  (#147590,
1764         Damien Carbery)
1765
1766 2004-07-14  Federico Mena Quintero  <federico@ximian.com>
1767
1768         Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
1769
1770         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the
1771         accessible object name for the tree view.
1772         (create_file_list): Likewise.
1773
1774 Tue Jul 13 21:53:08 2004  Matthias Clasen  <maclas@gmx.de>
1775
1776         * gtk/gtkicontheme.c (free_unthemed_icon): Don't leak
1777         no_svg_filename.  (#147399, Kjartan Maraas)
1778
1779 2004-07-13  Matthias Clasen  <mclasen@redhat.com>
1780
1781         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_get_neighbor_sizes): 
1782         Make this work in RTL context.
1783
1784 2004-07-13  Federico Mena Quintero  <federico@ximian.com>
1785
1786         * gtk/gtkfilechooserdefault.c (shortcuts_activate_volume): Set a
1787         busy cursor while mounting the volume.  Also, ref the chooser
1788         while mounting, as we may re-enter.  Fixes #139376.
1789
1790 2004-07-13  Matthias Clasen  <mclasen@redhat.com>
1791
1792         * gtk/gtktreeview.c (gtk_tree_view_adjustment_changed): 
1793         Prepare to handle composite implementations of
1794         GtkCellEditable, but recursively poking at
1795         allocation->y (hack stolen from GtkCList).
1796         (check_expander_max): Tweak the warning.
1797
1798         * gtk/gtkmain.h: Add gtk_parse_args(), its a public 
1799         function.  (#147476, Owen Taylor)
1800
1801         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Don't
1802         crash if unrealized.
1803
1804 Tue Jul 13 01:50:06 2004  Matthias Clasen  <maclas@gmx.de>
1805
1806         * gtk/gtkaboutdialog.c (display_credits_dialog): Don't
1807         display untranslated translator credits. 
1808
1809 Tue Jul 13 01:15:05 2004  Matthias Clasen  <maclas@gmx.de>
1810
1811         * gtk/gtkiconview.c: Some documentation updates.
1812
1813 Tue Jul 13 00:40:29 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1814
1815         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Do an
1816         empty begin_paint_region()/end_paint() for windows without
1817         EXPOSURE_MASK.
1818
1819         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_tmp_unset_bg,
1820         _gdk_x11_window_tmp_reset_bg): Remove checks for EXPOSURE_MASK.
1821
1822 2004-07-12  Matthias Clasen  <mclasen@redhat.com>
1823
1824         * demos/gtk-demo/appwindow.c: Use a GtkAboutDialog.
1825
1826         * gtk/gtkaboutdialog.h: 
1827         * gtk/gtkaboutdialog.c: New widget: GtkAboutDialog.
1828
1829         * gtk/Makefile.am (gtk_public_h_sources, gtk_c_sources): 
1830         * gtk/gtk.h: Add GtkAboutDialog. (#109435, Paolo Borelli,
1831         patch by Matthias Clasen)
1832
1833         * gtk/gtkrc.c (_gtk_rc_init): Apply the gtk-default-menu-item-style 
1834         to cell view menu items as well.  (#147405, John Cupitt)
1835
1836         * gtk/gtkentrycompletion.c: Warning fixes.  (#147420,
1837         Morten Welinder)
1838
1839         * gtk/gtkcombobox.c (gtk_combo_box_destroy): Pop down 
1840         first. (#147399, John Cupitt)
1841
1842 Mon Jul 12 01:56:26 2004  Matthias Clasen  <maclas@gmx.de>
1843
1844         * gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents): 
1845         Include the update_counter check in the HAVE_XSYNC condition,
1846         since update_counter isn't present in the !HAVE_XSYNC case.
1847
1848 Mon Jul 12 00:52:04 2004  Matthias Clasen  <maclas@gmx.de>
1849
1850         * gtk/stock-icons/Makefile.am: 
1851         * gtk/stock-icons/stock_about_{16,24}.png: 
1852         * gtk/stock-icons/stock_connect_{16,24}.png: 
1853         * gtk/stock-icons/stock_disconnect_{16,24}.png: 
1854         * gtk/stock-icons/stock_edit_{16,24}.png: 
1855         * gtk/stock-icons/stock_media_forward_{16,24}.png: 
1856         * gtk/stock-icons/stock_media_next_{16,24}.png: 
1857         * gtk/stock-icons/stock_media_pause_{16,24}.png: 
1858         * gtk/stock-icons/stock_media_play_{16,24}.png: 
1859         * gtk/stock-icons/stock_media_previous_{16,24}.png: 
1860         * gtk/stock-icons/stock_media_record_{16,24}.png: 
1861         * gtk/stock-icons/stock_media_rewind_{16,24}.png: 
1862         * gtk/stock-icons/stock_media_stop_{16,24}.png: 
1863         * gtk/gtkstock.h (GTK_STOCK_ABOUT): 
1864         * gtk/gtkstock.h (GTK_STOCK_CONNECT): 
1865         * gtk/gtkstock.h (GTK_STOCK_DISCONNECT): 
1866         * gtk/gtkstock.h (GTK_STOCK_EDIT): 
1867         * gtk/gtkstock.h (GTK_STOCK_MEDIA_FORWARD): 
1868         * gtk/gtkstock.h (GTK_STOCK_MEDIA_NEXT): 
1869         * gtk/gtkstock.h (GTK_STOCK_MEDIA_PAUSE): 
1870         * gtk/gtkstock.h (GTK_STOCK_MEDIA_PLAY): 
1871         * gtk/gtkstock.h (GTK_STOCK_MEDIA_PREVIOUS): 
1872         * gtk/gtkstock.h (GTK_STOCK_MEDIA_RECORD): 
1873         * gtk/gtkstock.h (GTK_STOCK_MEDIA_REWIND): 
1874         * gtk/gtkstock.h (GTK_STOCK_MEDIA_STOP): 
1875         * gtk/gtkiconfactory.c (get_default_icons): 
1876         * gtk/gtkstock.c (builtin_items): Add a number of new stock 
1877         items.  (#102530, #68015, #109811, Jordi Mallach, Benjamin Otte,
1878         Michael Opdenacker)
1879
1880 Sun Jul 11 15:24:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1881
1882         Bug 143330, support update counter spec.
1883         
1884         * configure.in: Add check for the Sync extension
1885
1886         * gdk/gdkwindow.h: gdk_window_enable_synchronized_configure() and
1887         gdk_window_configure_finished()
1888
1889         * gtk/gtkwindow.c (gtk_window_move_resize): Call gdk_window_finish_configure().
1890         * gtk/gtkwindow.c (gtk_window_realize): Automatically enable
1891         synchronized configures.
1892
1893         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store current
1894         and pending counter values. 
1895
1896         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): New function.
1897         * gdk/x11/gdkwindow-x11.c
1898         (gdk_window_enable_synchronized_configure): New function.
1899         * gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents):
1900         Delete update counter.
1901         * gdk/x11/gdkwindow-x11.c (set_wm_protocols): Advertise
1902         _NET_WM_SYNC_REQUEST when Sync is available
1903
1904         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Handle
1905         _NET_WM_SYNC_REQUEST messages
1906         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Save counter
1907         value for use by gdk_window_configure_finished() when receiving
1908         ConfigureNotifies.
1909
1910         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add use_sync flag
1911         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Check if the XSync
1912         extension is available
1913         * gdk/x11/gdkdisplay-x11.c: Add _NET_WM_SYNC_REQUEST and
1914         _NET_WM_SYNC_REQUEST_COUNTER to list of supported atoms.
1915
1916         * gdk/linux-fb/gdkwindow-fb.c, gdk/win32/gdkwindow-win32.c: Add
1917         stubs for enable_synchronized_configure() and configure_finished()
1918
1919 Sat Jul 10 23:35:13 2004  Matthias Clasen  <maclas@gmx.de>
1920
1921         * gtk/gtkentry.c (paste_received): Make middle-button pasting
1922         work as expected inside the entry.  (#116789, Scott Bronson)
1923
1924 Sat Jul 10 22:13:53 2004  Matthias Clasen  <maclas@gmx.de>
1925
1926         * gtk/gtktextbuffer.c (gtk_text_buffer_select_range): Update 
1927         clipboards.  (#142805, Mikael Hallendal)
1928
1929 Sun Jul 11 01:38:48 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1930
1931         * gtk/gtkpaned.c (gtk_paned_expose): Remove clip-region computing
1932         code. Just use &paned->handle_pos.
1933
1934 Sun Jul 11 01:12:50 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1935
1936         Bug 144271
1937         
1938         * gtk/gtknotebook.c (gtk_notebook_size_allocate): Remove an
1939         unnecessary redraw..
1940
1941         * gtk/gtknotebook.c (gtk_notebook_page_allocate): Remove some
1942         incorrect redraws.
1943
1944 Sat Jul 10 01:33:25 2004  Matthias Clasen  <maclas@gmx.de>
1945
1946         * docs/RELEASE-HOWTO: Updates.
1947
1948 Sat Jul 10 01:55:29 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1949
1950         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_tmp_{re|un}set_bg):
1951         Insert checks for root window. The root window is never mapped.
1952
1953 Sat Jul 10 01:06:05 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1954
1955         * gdk/x11/gdkwindow-x11.c (post_unmap): Fix a warning
1956         * gdk/x11/gdkwindow-x11.c (show_window_internal): Actually unset
1957         bg.
1958
1959 Sat Jul 10 00:37:45 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1960
1961         Bug 113310.
1962         
1963         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_tmp_{un|re}set_bg):
1964         New functions that can do a recursive unset/reset bg.
1965
1966         * gdk/x11/gdkgeometry-x11.c: Remove
1967         gdk_window_tmp_{un|re}set_bg().
1968
1969         * gdk/x11/gdkwindow-x11.c (pre_unmap, post_unmap): New functions
1970         called before and after unmapping a window. They unset the
1971         background of all other windows to prevent flicker from the X
1972         server repainting the background. post_unmap() also invalidates
1973         the parent of the unmapped window to draw it without roundtrips.
1974
1975         * gdk/x11/gdkwindow-x11.c (show_window_internal): Unset
1976         background of newly mapped windows and all desendants to prevent
1977         flicker.
1978         
1979 Fri Jul  9 15:33:55 2004  Manish Singh  <yosh@gimp.org>
1980
1981         * gdk/gdkevents.c: have a dummy case GDK_OWNER_CHANGE in switch
1982         statements to avoid gcc warnings about not all enum values handled.
1983
1984         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): ignore should live in 
1985         #ifdef HAVE_XFIXES.
1986
1987 Fri Jul  9 23:26:09 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1988
1989         (Bug 113340)
1990
1991         * gdk/x11/gdkwindow-x11.h (struct _GdkWindowImplX11): Add an
1992         "override_redirect" bit.
1993
1994         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set it here.
1995         
1996         * gdk/x11/gdkwindow-x11.c (gdk_window_move, gdk_window_resize,
1997         gdk_window_move_resize): 
1998         Update the local size/position cache
1999         immediately for override redirect windows.
2000
2001         * gdk/x11/gdkwindow-x11.c (show_window_internal): Invalidate
2002         newly mapped child and override redirect windows.
2003
2004 2004-07-09  Federico Mena Quintero  <federico@ximian.com>
2005
2006         Fixes #137031:
2007
2008         * gtk/gtkfilesystemunix.c (get_fallback_icon): New helper
2009         function, fetches a stock icon as a fallback.
2010         (gtk_file_system_unix_volume_render_icon): Fall back to a stock
2011         icon.
2012         (gtk_file_system_unix_render_icon): Fall back to a stock icon.
2013         Use helper functions rather than being a mega-function.
2014         (get_icon_name_for_directory): Renamed from
2015         get_icon_for_directory().
2016         (get_icon_type_from_path): New helper function; code pulled out
2017         from gtk_file_system_unix_render_icon().
2018         (get_special_icon): Likewise.
2019         (get_icon_for_mime_type): Likewise.
2020
2021 2004-07-09  Federico Mena Quintero  <federico@ximian.com>
2022
2023         * gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Fix typo; tmp_event ->
2024         temp_event.
2025
2026 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
2027
2028         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Use the 
2029         requisition of the widget instead of relying on the style
2030         drawing function to supply the size of the drawable.  (#146531) 
2031
2032 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
2033
2034         Make GtkEntry work harder to protect passwords:  (#143955,
2035         Morten Welinder)
2036         
2037         * gtk/gtkentry.c (gtk_entry_destroy): Add a destroy handler
2038         to clear the password even if the widget is leaked.
2039
2040         * gtk/gtkentry.c (gtk_entry_real_delete_text): 
2041         * gtk/gtkentry.c (gtk_entry_finalize): Zero out the memory
2042         before freeing it.
2043         
2044         * gtk/gtkentry.c (gtk_entry_real_insert_text): Zero and free
2045         the old memory instead of just reallocating it.
2046
2047         * gtk/gtkentry.c (gtk_entry_create_layout): Don't leak text
2048         direction information for passwords.
2049
2050 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
2051
2052         * gtk/gtkstyle.c: Fix some cases where style functions were 
2053         not handling widget == NULL properly.  (#146282)
2054
2055 Thu Jul  8 22:38:58 2004  Matthias Clasen  <maclas@gmx.de>
2056
2057         * gtk/gtktreeview.c: Improve the EXPANDER_MAX warning.
2058
2059 2004-07-08  Federico Mena Quintero  <federico@ximian.com>
2060
2061         Fix #139290:
2062
2063         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_new): Add a
2064         GError argument.  Do check for errors when getting the
2065         GtkFileFolder:  get the folder and read the children before
2066         actually creating the model.  Removed obsolete code that handled
2067         roots-changed on the file system.
2068         (file_model_node_get_info): Assert that we don't reach the old
2069         case to display file system roots.
2070         (roots_changed_callback): Removed.
2071
2072         * gtk/gtkfilechooserdefault.c (set_list_model): Add a GError
2073         argument, and a boolean return value.  Return an error if we
2074         cannot create the file system model.  On error, set a NULL model
2075         on the tree.
2076         (gtk_file_chooser_default_set_current_folder): Use the error value
2077         from set_list_model().
2078         (gtk_file_chooser_default_set_property): Set the show_hidden
2079         property only if the browse_files_model exists.
2080         (gtk_file_chooser_default_unselect_path): Only operate if the
2081         browse_files_model exists.
2082         (check_preview_change): Check whether we have the sort_model.
2083         (change_folder_and_display_error): Copy the path we get passed
2084         before using it.  There's a comment in there that explains why we
2085         need to copy it; basically, if the passed path belongs to the
2086         model, the model may go away in the middle of this function and
2087         we'll be left with a dangling pointer.
2088         (install_list_model_filter): Assert that the model is not NULL.
2089         (set_current_filter): Check whether the model exists.
2090
2091         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected): Don't
2092         g_return_if_fail if the model is NULL.
2093         (gtk_tree_selection_get_selected_rows): Likewise.
2094         (gtk_tree_selection_count_selected_rows): Likewise.
2095         (gtk_tree_selection_selected_foreach): Likewise.
2096         (gtk_tree_selection_path_is_selected): Likewise; rather just
2097         return FALSE.
2098         (gtk_tree_selection_select_all): Likewise.
2099         (gtk_tree_selection_unselect_all): Likewise.
2100         (gtk_tree_selection_select_range): Do g_return_if_fail() if the
2101         model is NULL.
2102         (gtk_tree_selection_unselect_range): Likewise.
2103
2104         * gtk/gtkfilesystemunix.c (fill_in_names): Return immediately if
2105         g_dir_open() fails:  there is no need to set the error ourselves,
2106         as g_dir_open() already does it.
2107
2108 2004-07-08  Matthias Clasen  <mclasen@redhat.com>
2109
2110         * gtk/gtktreeview.c (gtk_tree_view_set_search_equal_func): Allow
2111         to restore the default search function.  (#145365, John Finlay) 
2112
2113         * gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Don't leak 
2114         references to the drag context.  (#144324, Alex Larsson)
2115
2116 Thu Jul  8 00:31:34 2004  Matthias Clasen  <maclas@gmx.de>
2117
2118         * gtk/gtktreeview.c (gtk_tree_view_set_model): Stop editing
2119         when a new model is set.  (#145566, Dmitry M. Shatrov)
2120
2121 Wed Jul  7 23:44:32 2004  Matthias Clasen  <maclas@gmx.de>
2122
2123         * gtk/gtkimage.c (gtk_image_expose): Make sure that subpixbufs
2124         are properly aligned for gdk_pixbuf_saturate_and_pixelate(),
2125         in order to avoid rendering artifacts from misaligned 
2126         pixelation patterns.  (#145585, Felipe Heidrich, Billy Biggs)
2127
2128 2004-07-07  Matthias Clasen  <mclasen@redhat.com>
2129
2130         * gtk/gtktreeview.c: 
2131         * gtk/gtktreeview.h: Small documentation fixes.
2132
2133 2004-07-07  Matthias Clasen  <mclasen@redhat.com>
2134
2135         Support separators in combo boxes and more generally in tree 
2136         views  (#135873):
2137         
2138         * gtk/gtkcombobox.h: 
2139         * gtk/gtkcombobox.c (gtk_combo_box_get_row_separator_column):
2140         * gtk/gtkcombobox.c (gtk_combo_box_set_row_separator_column):
2141         Add a ::row-separator-column property with getter and setter, 
2142         which can indicate a boolean model column to determine which
2143         rows are separators. 
2144
2145         * gtk/gtkcombobox.c: Display separator rows as separator menu 
2146         items in menu mode, and by using the new treeview separator 
2147         functionality in list mode.
2148
2149         * gtk/gtktreeview.h: 
2150         * gtk/gtktreeprivate.h:
2151         * gtk/gtktreeview.c (gtk_tree_view_get_row_separator_func): 
2152         * gtk/gtktreeview.c (gtk_tree_view_set_row_separator_func): 
2153         Add a callback to determine whether a row is a separator.
2154         
2155         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): 
2156         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): 
2157         * gtk/gtktreeview.c (validate_row): Use the new callback
2158         to determine whether a row is a separator, and draw it
2159         as a separator then. Since separators should take up less
2160         vertical space than regular rows, this requires removing
2161         the redundant MAX(...,expander_size) calls which appear in
2162         many places. Instead, the MAX() is now only done in 
2163         validate_row(), and only if the row is not a separator.
2164         To catch possible side effects of this intrusive change,
2165         I have left EXPANDER_MAX() calls in place of the MAX() calls
2166         which will emit a warning if something breaks. They should
2167         be removed before 2.6.
2168
2169         * gtk/gtktreeselection.c (row_is_selectable): Don't let 
2170         separator rows be selected.
2171         
2172         * tests/testcombo.c (create_blaat): Add a separator column.
2173
2174 Tue Jul  6 22:58:00 2004  Matthias Clasen  <maclas@gmx.de>
2175
2176         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): Fix
2177         a 64bit alignment issue.  (#144302, Sunil)
2178
2179 2004-07-07  Tor Lillqvist  <tml@iki.fi>
2180
2181         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text)
2182         * gdk/win32/gdkfont-win32.c (gdk_text_extents)
2183         * gdk/win32/gdkproperty-win32.c (find_common_locale,
2184         gdk_property_change)
2185         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Use
2186         g_utf8_to_utf16() instead of the removed _gdk_utf8_to_ucs2() (see
2187         below).
2188
2189         * gdk/win32/gdkglobals-win32.c
2190         * gdk/win32/gdkmain-win32.c (_gdk_windowing_init)
2191         * gdk/win3/gdkprivate-win32.h: Add a variable for the TARGETS
2192         atom. Initialize it. Declare it. Drop the variable for the
2193         COMPOUND_TEXT atom.
2194
2195         * gdk/win32/gdkim-win32.c (gdk_wcstombs): Don't return UTF-8. This
2196         function is supposed to return the string in the locale's charset
2197         and encoding. Use g_convert().
2198
2199         (gdk_mbstowcs): Similarily, don't take an UTF-8 string, but a
2200         string in the locale's charset. Use g_convert().
2201
2202         (_gdk_ucs2_to_utf8, _gdk_utf8_to_wcs, _gdk_utf8_to_ucs2):
2203         Delete. The UCS-2 functions didn't handle surrogates anyway. Use
2204         GLib's UTF-16 functions instead. Windows uses UTF-16.
2205
2206         * gdk/win32/gdkprivate-win32.h: Remove declarations of the deleted
2207         functions mentioned above.
2208
2209         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Use CF_TEXT
2210         also if the string is of type STRING, i.e. ISO-8859-1, and the
2211         current codepage is 1252, and contains no C1 chars. Accept
2212         also UTF8_STRING.
2213
2214         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
2215         Mark as static. When storing STRING data, convert to
2216         Latin-1. (#140537)
2217         (gdk_selection_owner_set_for_display): Now that STRING is always
2218         ISO-8859-1, use UTF8_STRING when sending the selection request
2219         to ourselves.
2220
2221         (gdk_selection_convert): Handle also UTF8_STRING. (#140537, John
2222         Ehresman)
2223
2224         (gdk_text_property_to_text_list_for_display): Make work more like
2225         X11 version. Do obey the encoding parameter.
2226
2227         (gdk_string_to_compound_text_for_display,
2228         gdk_utf8_to_compound_text_for_display): Don't even pretend
2229         supporting COMPOUND_TEXT.
2230
2231         (gdk_utf8_to_string_target): Convert to ISO-8859-1, like on X11.
2232
2233         (sanitize_utf8): Zero-terminate string.
2234
2235 2004-07-06  Matthias Clasen  <mclasen@redhat.com>
2236
2237         * gtk/stock-icons/Makefile.am: Add stock_file_16.png, 
2238         stock_file_24.png, stock_directory_16.png and stock_directory_24.png.
2239
2240         * gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY): 
2241         * gtk/gtkiconfactory.c (get_default_icons): New stock icons as 
2242         fallbacks for gtkfilechooser. Currently these are the same images
2243         as the "new" and "open" items...
2244
2245 Tue Jul  6 10:00:22 2004  Jonathan Blandford  <jrb@redhat.com>
2246
2247         Fix for #136496, Pawel Salek:
2248         
2249         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Queue a redraw on
2250         a node when it changes in fixed_height mode.
2251
2252         (gtk_tree_view_node_queue_redraw): new function to queue a redraw
2253         on a node.
2254
2255 2004-07-06  Matthias Clasen  <mclasen@redhat.com>
2256
2257         * gtk/gtkmenu.c (gtk_menu_position): Make sure 
2258         private->monitor_num is a valid monitor number before 
2259         using it.  (#139187, Michael Natterer)
2260
2261 Tue Jul  6 02:00:28 2004  Matthias Clasen  <maclas@gmx.de>
2262
2263         * gtk/gtkfilechooserdefault.c (popup_position_func): 
2264         * gtk/gtkentry.c (popup_position_func): 
2265         * gtk/gtktextview.c (popup_position_func): Improve positioning
2266         of keyboard-activated menus with Xinerama.
2267
2268 Tue Jul  6 00:29:03 2004  Matthias Clasen  <maclas@gmx.de>
2269
2270         * gtk/gtkuimanager.c (do_updates): 
2271         (do_updates_idle): Only call GDK_THREADS_ENTER() / _LEAVE() 
2272         when called from an idle handler.  (#145429, Jan-Marek Glogowski)
2273
2274 Mon Jul  5 23:47:38 2004  Matthias Clasen  <maclas@gmx.de>
2275
2276         * gtk/gtkfilechooserutils.c (delegate_notify): Use
2277         the less efficient g_object_interface_find_property () instead
2278         of the param_id range check, since the GParamSpecs we're 
2279         dealing with are the overridden onces on the interface, whose
2280         param_id is always zero.  (#145312, Alex Roitman, fix proposed
2281         by Owen Taylor)
2282
2283 2004-07-05  Lorenzo Gil Sanchez  <lgs@sicem.biz>
2284
2285         * gtk/gtklayout.c (gtk_layout_add): added a default method for the add
2286         virtual method of GtkContainer.
2287         (gtk_layout_class_init): assign gtk_layout_add to the 'add' virtual
2288         method slot of the container class.
2289
2290 2004-07-05  Anders Carlsson  <andersca@gnome.org>
2291
2292         * gtk/gtkiconview.c: (gtk_icon_view_set_markup_column):
2293         * gtk/gtkiconview.h:
2294         Use gint, not int in gtk_icon_view_set_markup_column,
2295         (Paolo Maggi)
2296         
2297 2004-07-05  Anders Carlsson  <andersca@gnome.org>
2298
2299         * gtk/gtkiconview.c: (gtk_icon_view_class_init),
2300         (gtk_icon_view_real_select_cursor_item),
2301         (gtk_icon_view_real_activate_cursor_item):
2302         * gtk/gtkiconview.h:
2303         Add an "activate_cursor_item" action signal
2304         and bind it to the return key.
2305         
2306 2004-07-04  Anders Carlsson  <andersca@gnome.org>
2307
2308         * demos/gtk-demo/Makefile.am:
2309         * demos/gtk-demo/gnome-fs-directory.png:
2310         * demos/gtk-demo/gnome-fs-regular.png:
2311         * demos/gtk-demo/iconview.c: (load_pixbufs), (fill_store),
2312         (sort_func), (create_store), (item_activated), (up_clicked),
2313         (home_clicked), (do_iconview):
2314         Add a simple file browser based on the icon view.
2315         
2316         * gtk/gtk.h:
2317         Add gtk/gtkiconview.h
2318         
2319         * gtk/gtkiconview.c: (gtk_icon_view_layout),
2320         (gtk_icon_view_item_new), (gtk_icon_view_item_activated):
2321         Fix a few bugs discovered while writing the demo.
2322         
2323 2004-07-04  Anders Carlsson  <andersca@gnome.org>
2324
2325         * gtk/Makefile.am:
2326         * gtk/gtkiconview.c
2327         * gtk/gtkiconview.h:
2328         Add GtkIconView to the build, remove debugging output.
2329         
2330 Sun Jul  4 01:29:35 2004  Matthias Clasen  <maclas@gmx.de>
2331
2332         * gtk/gtkcalendar.c (gtk_calendar_drag_data_get): 
2333         (gtk_calendar_drag_data_received): Fix off-by-one error.  
2334         GDate month is one-based and GtkCalendar month is zero-based.  
2335         (#145134, William Jon McCann)
2336
2337 Sun Jul  4 01:11:07 2004  Matthias Clasen  <maclas@gmx.de>
2338
2339         * gtk/gtktreestore.c (gtk_tree_store_move): Don't crash if
2340         somebody tries to move a node after itself in a list of 
2341         length 1.  (#145291, Sampo Nurmentaus)
2342
2343 Sat Jul  3 23:43:23 2004  Matthias Clasen  <maclas@gmx.de>
2344
2345         * docs/faq/gtk-faq.sgml: 
2346         * gtk/gtkwindow.c: Fix links to www.freedesktop.org.  (#145210,
2347         Billy Biggs)
2348
2349 Sat Jul  3 02:09:51 2004  Matthias Clasen  <maclas@gmx.de>
2350
2351         * gtk/gtksocket.c (gtk_socket_end_embedding): Reset current_width
2352         and current_height to 0 when ending the embedding.  (#143675,
2353         Nickolay V. Shmyrev)
2354
2355 Sat Jul  3 01:48:19 2004  Matthias Clasen  <maclas@gmx.de>
2356
2357         * gtk/gtkentry.c (gtk_entry_move_visually): Let the cursor move
2358         to the right end of the entry text, even if it ends in combining
2359         marks.  (#141728, Theppitak Karoonboonyanan)
2360
2361 Fri Jul  2 23:34:33 2004  Matthias Clasen  <maclas@gmx.de>
2362
2363         * gtk/gtkcombobox.c (gtk_combo_box_unset_model): Unset the displayed
2364         row when unsetting the model.  (#138560, Christian Persch)
2365
2366 Fri Jul  2 23:01:07 2004  Matthias Clasen  <maclas@gmx.de>
2367
2368         * gtk/gtkcombobox.c (update_menu_sensitivity): Don't crash if there
2369         are no items.
2370
2371 Fri Jul  2 22:41:27 2004  Matthias Clasen  <maclas@gmx.de>
2372
2373         * gtk/gtkimage.c (gtk_image_expose): Properly align mask and
2374         pixbuf if a subarea is exposed.  (#135423, fix by John Ehresman)
2375
2376 Fri Jul  2 21:40:21 2004  Matthias Clasen  <maclas@gmx.de>
2377
2378         * gtk/gtknotebook.c (gtk_notebook_realize): Add scroll events
2379         to the event mask, set a scroll_event handler.
2380         * gtk/gtknotebook.c (gtk_notebook_scroll): Handle scroll events
2381         by switching tabs.  (#145244, Gabriel de Perthuis)
2382
2383 2004-07-02  Anders Carlsson  <andersca@gnome.org>
2384
2385         * gtk/gtktreeview.c (gtk_tree_view_set_model): 
2386         Make sure we check for a NULL model first.
2387
2388 2004-07-01  J. Ali Harlow  <ali@juiblex.co.uk>
2389
2390         * gdk/win32/gdkinput-win32.c (_gdk_input_ungrab_pointer): Fix
2391         win32 build problem w/o wintab.  Fixed #145242
2392
2393 2004-06-30  Anders Carlsson  <andersca@gnome.org>
2394
2395         * gtk/gtktreeview.c (gtk_tree_view_set_model): Use
2396         g_return_if_fail to make sure that the model is a GtkTreeModel.
2397
2398 Sat Jun 26 17:41:10 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2399
2400         * gtk/gtk[hv]separator.c (gtk_[hv]separator_expose): Draw line with the
2401         current state, not GTK_STATE_NORMAL
2402
2403         * gtk/gtkframe.c (gtk_frame_paint): Fix a rounding error
2404
2405 Sat Jun 26 15:07:25 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2406
2407         * gtk/gtkstyle.c, gtk/gtkrc.c: small color tweak. (#141173)
2408
2409 Sat Jun 26 01:15:40 2004  Matthias Clasen  <maclas@gmx.de>
2410
2411         * gdk/x11/gdkwindow-x11.c (set_initial_hints): Handle
2412         _NET_WM_STATE_ABOVE and _NET_WM_STATE_BELOW.  (#144851, 
2413         Billy Biggs)
2414
2415 Sat Jun 26 01:04:31 2004  Matthias Clasen  <maclas@gmx.de>
2416
2417         * gtk/gtkiconfactory.c (clear_cache): Prevent unwanted 
2418         recursion by resetting icon_set->cache before freeing
2419         the cache.  (#144947, Tim Janik)
2420
2421 Sat Jun 26 00:40:02 2004  Matthias Clasen  <maclas@gmx.de>
2422
2423         * gtk/gtkiconfactory.c (render_icon_name_pixbuf): 
2424         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): 
2425         * gtk/gtkstyle.c (gtk_default_render_icon): Accept a NULL 
2426         style.
2427
2428 Sat Jun 26 00:04:36 2004  Matthias Clasen  <maclas@gmx.de>
2429
2430         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_model): 
2431         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Reflect the 
2432         last change in the docs.
2433
2434 Fri Jun 25 23:35:42 2004  Matthias Clasen  <maclas@gmx.de>
2435
2436         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_model):
2437         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Allow passing
2438         NULL to unset the model.  (#137211, patch by  Mariano Suárez-Alvarez)
2439
2440 Fri Jun 25 23:33:05 2004  Matthias Clasen  <maclas@gmx.de>
2441
2442         * gtk/gtkcombobox.c (gtk_combo_box_menu_position_below): Fix the
2443         placement policy for GtkComboBoxEntry to be: if it fits below, 
2444         place below, if it fits above place above, else place in the 
2445         larger space and scroll so that the scroll arrow appear at the
2446         far end.  (#144362, David A. Knight)
2447
2448 Fri Jun 25 22:49:58 2004  Matthias Clasen  <maclas@gmx.de>
2449
2450         * gtk/gtktreestore.c (gtk_tree_store_move): Avoid uninitialized
2451         use of &parent_iter. (#145007, John Finlay)
2452
2453 2004-06-25  Bastien Nocera  <hadess@hadess.net>
2454
2455         reviewed by: Matthias Clasen  <maclas@gmx.de>
2456
2457         * gdk/x11/gdkkeys-x11.c: (get_symbol), (update_keymaps),
2458         (gdk_keymap_lookup_key), (translate_keysym): fix keys parsing when
2459         the number of keysyms per keycode is odd. Fixes #144808.
2460
2461 2004-06-25  Matthias Clasen  <mclasen@redhat.com>
2462
2463         * gtk/gtkfontbutton.c (gtk_font_button_update_font_info): Avoid
2464         a crash if the font doesn't exist.  (#144967, Yevgen Muntyan) 
2465
2466 Fri Jun 25 00:32:15 2004  Matthias Clasen  <maclas@gmx.de>
2467
2468         * gtk/gtktreestore.c (gtk_tree_store_swap): Commit the change
2469         which was mentioned below.
2470
2471 Thu Jun 24 23:35:09 2004  Matthias Clasen  <maclas@gmx.de>
2472
2473         * gtk/gtknotebook.c (gtk_notebook_class_init): Fix a typo,
2474         string change.  (#139503, Baris Cicek)
2475
2476 2004-06-22  Federico Mena Quintero  <federico@ximian.com>
2477
2478         * gtk/gtkfilechooserdefault.c (location_popup_handler): Use a Save
2479         or an Open stock button for the C-l dialog depending on the action
2480         in which the file chooser operates.  Fixes #141753.
2481
2482 2004-06-22  Federico Mena Quintero  <federico@ximian.com>
2483
2484         Fixes the GTK+ part of #142308:
2485
2486         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_filename_to_path):
2487         Use filename_to_path().
2488         (gtk_file_system_unix_uri_to_path): Likewise.
2489         (filename_to_path): Use remove_trailing_slash().
2490
2491 2004-06-22  Matthias Clasen  <mclasen@redhat.com>
2492
2493         * gtk/gtktextview.c (gtk_text_view_class_init): Improve docs
2494         for the ::move_cursor signal.
2495
2496         * gtk/gtkaccelmap.c (_gtk_accel_path_is_valid): Accept
2497         "<WINDOWTYPE>" as a valid accel path.  (#144427, Philip 
2498         Kendall)        
2499
2500         * gtk/gtkselection.c (GTK_SELECTION_MAX_SIZE): Make sure 
2501         this gets defined for all backends, so linux-fb has a 
2502         chance of compiling.
2503
2504         * gdk/x11/gdkgc-x11.c: 
2505         * gdk/gdkgc.c: Move function docs inline, add hints about 
2506         obtaining rgb colors from gcs.  (#144688, Steve Chaplin)
2507
2508         * gtk/gtktreestore.c (gtk_tree_store_swap): Make this work
2509         for children of the root.  (#139785, Jean-François Wauthy,
2510         patch by John Finlay)
2511
2512         * gtk/gtkicontheme.h (GTK_ICON_THEME_GET_CLASS): Typo
2513         fix.  (#144750, Jeff Franks) 
2514
2515 2004-06-21  Michael Natterer  <mitch@gimp.org>
2516         Merge from stable:
2517
2518         * gdk/x11/gdkdrawable-x11.[ch]: made convert_format() utility
2519         function public as _gdk_x11_convert_to_format().
2520
2521         * gdk/x11/gdkcursor-x11.c (create_cursor_image): premultiply
2522         the pixels from the GdkPixbuf when putting them in the
2523         Xcursor image. Fixes bug #144350.
2524
2525 2004-06-16  Federico Mena Quintero  <federico@ximian.com>
2526
2527         * gtk/gtkfilesystemmodel.c (do_files_added): When inserting a
2528         visible node, free the old path before creating the new one.
2529         Fixes #144356.
2530
2531 Tue Jun 15 01:10:32 2004  Matthias Clasen  <maclas@gmx.de>
2532
2533         * gtk/gtkcombobox.c: Make GtkComboBox work without model.  
2534         (#144198, Mariano Suárez-Alvarez)
2535         
2536 Fri Jun 11 22:05:56 2004  Matthias Clasen  <maclas@gmx.de>
2537
2538         * gtk/gtkfilechooserdefault.c: Don't use
2539         contractions like "don't" or "isn't" in error messages.
2540         It isn't nice to use them in log entries either...
2541         (#137774, Morten Welinder, patch by Alexander Winston)
2542
2543 2004-06-11  Federico Mena Quintero  <federico@ximian.com>
2544
2545         Fixes #143578:
2546
2547         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_add_editable):
2548         Don't ref the editable node.
2549         (_gtk_file_system_model_remove_editable): Don't unref the editable node.
2550         (_gtk_file_system_model_remove_editable): Ahem, free the node.
2551
2552         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
2553         Added fields for edited_idle and edited_new_text.
2554         (renderer_edited_cb): Queue the
2555         creation of the folder in an idle handler.
2556         (renderer_editing_canceled_cb): Likewise for the cancellation.
2557         (gtk_file_chooser_default_finalize): Free the impl->edited_new_text.
2558
2559 Thu Jun 10 22:12:26 2004  Matthias Clasen  <maclas@gmx.de>
2560
2561         * gtk/gtkmain.c (gtk_parse_args): Typo fix.
2562
2563 2004-06-10  Federico Mena Quintero  <federico@ximian.com>
2564
2565         Fixes #144110, patch by Bastien Nocera <hadess@hadess.net>.
2566
2567         * gtk/gtkfilechooser.c (gtk_file_chooser_list_shortcut_folders):
2568         Refer to gtk_file_chooser_add_shortcut_folder().
2569         (gtk_file_chooser_list_shortcut_folder_uris): Refer to
2570         gtk_file_chooser_add_shortcut_folder_uri().
2571
2572 Thu Jun 10 00:36:15 2004  Matthias Clasen  <maclas@gmx.de>
2573
2574         * gtk/gtkcalendar.c (gtk_calendar_main_button): Start 
2575         the drag before focusing the selected.day.
2576         * gtk/gtkcalendar.c (gtk_calendar_state_changed): Stop
2577         a beginning drag if the widget becomes insensitive.
2578
2579 Thu Jun 10 00:09:06 2004  Matthias Clasen  <maclas@gmx.de>
2580
2581         * gtk/gtkcalendar.c (gtk_calendar_button_press): Start 
2582         spinning before calling arrow_action(), so that a signal
2583         handler triggered from arrow_action() has a chance to 
2584         stop the spinning.  (#143966, Davyd Madeley)
2585
2586 Wed Jun  9 23:11:23 2004  Matthias Clasen  <maclas@gmx.de>
2587
2588         * gtk/gtkstyle.c (_gtk_style_init_for_settings): Fix a 
2589         typo.  (#144070, Kent Sandvik)
2590
2591 Thu Jun 10 00:22:51 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2592
2593         * gtk/gtkmenu.c: Revert the "drag select" part of
2594         #141169. (#144011).
2595
2596 Mon Jun  7 23:07:40 2004  Matthias Clasen  <maclas@gmx.de>
2597
2598         * gtk/gtkcombobox.c (gtk_combo_box_remeasure): Handle
2599         priv->model being NULL.  (#143856, Mariano Suárez-Alvarez)
2600
2601 2004-06-07  Federico Mena Quintero  <federico@ximian.com>
2602
2603         * gtk/gtktreeview.c (gtk_tree_view_button_press): Revert the patch
2604         from 2003/Sep/12.  This kept DnD in tree views within modal
2605         dialogs from working, which is especially bad for the file
2606         chooser.  Fixes #135168.
2607
2608 Sun Jun  6 23:57:21 2004  Matthias Clasen  <maclas@gmx.de>
2609
2610         Make the entry context menu work in editable text cells. The changes
2611         are based on a patch by Kristian Rietveld, which implemented an 
2612         approach outlined by Owen Taylor.  (#50075)
2613         
2614         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_focus_out_event): 
2615         Ignore focus out if the entry menu is posted.
2616         (gtk_cell_renderer_text_populate_popup): Mark the entry menu as 
2617         posted, and set up a signal handler to clear the flag if the menu 
2618         is unmapped.
2619         (gtk_cell_renderer_text_popup_unmap): Clear the in_entry_menu flag, 
2620         set up a timeout to stop editing if the focus is lost.
2621         (popdown_timeout): Stop editing if the entry doesn't have focus anymore.
2622         (gtk_cell_renderer_text_start_editing): Connect to the populate_popup 
2623         signal on the entry and keep a pointer to the entry.
2624         (gtk_cell_renderer_text_editing_done): Disconnect from popuplate_popup, 
2625         clear the pointer to the entry.
2626
2627 Sun Jun  6 23:24:43 2004  Matthias Clasen  <maclas@gmx.de>
2628
2629         * gtk/gtktexttag.c (gtk_text_tag_class_init): Improve the description
2630         of the ::language property.  (#143802, Owen Taylor)
2631
2632 Sat Jun  5 23:07:30 2004  Matthias Clasen  <maclas@gmx.de>
2633
2634         * gtk/gtkentrycompletion.c: (gtk_entry_completion_init),
2635         (gtk_entry_completion_list_enter_notify),
2636         (gtk_entry_completion_list_motion_notify),
2637         (_gtk_entry_completion_popup), (_gtk_entry_completion_popdown):
2638         * gtk/gtkentryprivate.h: Add an ignore_enter flag and
2639         use it as in the menu code to avoid the initial selection if
2640         the window pops up under the pointer.  (Anders Carlsson)
2641
2642 Sat Jun  5 20:05:39 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2643
2644         * tests/testmerge.c: Add a checkbox to queue an
2645         merge/unmerge. Patch from Matthias Clasen.
2646
2647         * gtk/gtktoolbar.c (struct _GtkToolbarPrivate): Add a new flag
2648         "need_rebuild"
2649         (rebuild_menu): New function that rebuilds the overflow menu and
2650         makes sure it doesn't start or end with a separator.
2651         (toolbar_content_new_tool_item)
2652         (toolbar_content_remove)
2653         (toolbar_content_new_compatibility): Set the rebuild_needed flag
2654         (gtk_toolbar_size_allocate): Only show the overflow arrow when we
2655         have actually overflown an item with a proxy menu item. Also make
2656         sure we rebuild the menu if needed.
2657
2658         Fix #125504, #142377, #143463
2659         
2660         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_expose):
2661         Obey the "priv->draw" flag. (#143692)
2662
2663 2004-06-04  Matthias Clasen  <mclasen@redhat.com>
2664
2665         * docs/widget_geometry.txt: Add a note about the !CAN_FOCUS
2666         quirk in the button size allocation code.
2667
2668         * gtk/gtkbutton.c (gtk_button_size_allocate): Give the space
2669         requested for drawing the focus indicator to the child in the
2670         !CAN_FOCUS case. This should fix issues which the Gimp has with 
2671         the button allocation changes in 2.4.2.
2672
2673 Thu Jun  3 21:17:29 2004  Matthias Clasen  <maclas@gmx.de>
2674
2675         * gtk/gtkentry.c (gtk_entry_completion_timeout): Calculate the
2676         length of the entry contents in characters, not in bytes.
2677
2678         * gtk/gtkentry.c (paste_received): Don't pop up the completion
2679         window on paste, noticed by Anders Carlsson.
2680
2681 Thu Jun  3 20:56:19 2004  Matthias Clasen  <maclas@gmx.de>
2682
2683         * gtk/gtkcombobox.c (gtk_combo_box_class_init): Fix the allowed
2684         values and default value for the ::active property.  (#143669,
2685         Olivier Andrieu)
2686
2687 2004-06-03  Michael Natterer  <mitch@gimp.org>
2688
2689         * gtk/gtkimagemenuitem.c: use gtk_widget_get_child_requisition()
2690         instead of accessing item->image->allocation.width/height
2691         directly. Makes widgets which only have a requisition set using
2692         gtk_widget_set_size_request() work and fixes bug #142789.
2693
2694 Thu Jun  3 08:07:59 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2695
2696         * gtk/gtkmenu.c: Revert previous commit. It caused the problem
2697         of sticky right click menus to return.
2698
2699 Wed Jun  2 01:56:02 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2700
2701         * gtk/gtkmenu.c: Fix the stay up algorithm for combo boxes to
2702         better handle the "click" case. bug  Better fix for #141169.
2703
2704 2004-06-02  Federico Mena Quintero  <federico@ximian.com>
2705
2706         * gtk/gtktreeview.c (gtk_tree_view_search_init): Bail out if the
2707         model is empty.  Fixes #143536.
2708
2709 2004-06-02  Matthias Clasen  <mclasen@redhat.com>
2710
2711         * gtk/gtkfontsel.c (gtk_font_selection_size_focus_out): Don't
2712         close the dialog on focus out of the size entry.  (#143505, 
2713         David Hawthorne)
2714
2715 2004-06-02  Federico Mena Quintero  <federico@ximian.com>
2716
2717         Fix #138807.
2718
2719         * gtk/fnmatch.c (_gtk_fnmatch): Take a no_leading_period argument.
2720         (gtk_fnmatch_intern): Likewise; also implement this option.
2721
2722         * gtk/gtkprivate.h (_gtk_fnmatch): Updated prototype.
2723
2724         * gtk/gtkfilesel.c (find_completion_dir): Pass TRUE for the
2725         no_leading_period argument of _gtk_fnmatch().
2726         (attempt_file_completion): Likewise.
2727
2728         * gtk/gtkfilefilter.c (gtk_file_filter_filter): Pass FALSE for the
2729         no_leading_period argument of _gtk_fnmatch().
2730
2731 Wed Jun  2 00:47:11 2004  Matthias Clasen  <maclas@gmx.de>
2732
2733         * gtk/gtkselection.c (_gtk_selection_request): Remove leftover
2734         debug code.
2735
2736 Wed Jun  2 00:13:57 2004  Matthias Clasen  <maclas@gmx.de>
2737
2738         * gtk/gtktreeselection.c (gtk_tree_selection_select_range): Don't
2739         allow unless selection mode is multiple.  (#142634, John Finlay)
2740
2741 Tue Jun  1 23:00:20 2004  Matthias Clasen  <maclas@gmx.de>
2742
2743         * gtk/gtktoolbar.h: 
2744         * gtk/gtktoolbar.c: 
2745         * gtk/gtkentrycompletion.h: 
2746         * gtk/gtkentrycompletion.c: 
2747         * gtk/gtkcombobox.h: 
2748         * gtk/gtkcombobox.c: Rename function parameters from
2749         index to index_ to prevent clash with BSD index().  (#143001)
2750
2751 Tue Jun  1 22:45:42 2004  Matthias Clasen  <maclas@gmx.de>
2752
2753         * gtk/gtkmenu.c (get_accel_path): Handle accel_closure being
2754         NULL on an accel label. (#139641, Sam Stephenson, patch by 
2755         Michael Natterer)
2756
2757 Tue Jun  1 22:19:55 2004  Matthias Clasen  <maclas@gmx.de>
2758
2759         * gtk/gtkicontheme.c (theme_subdir_load):  Prevent icon 
2760         lookup finding icons in the wrong prefix.  (#143328,
2761         Mark McLoughlin)
2762
2763 Wed Jun  2 00:39:58 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2764
2765         Bug #141169.
2766
2767         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Make menus
2768         only stay up if you release within 500 milliseconds.
2769         (gtk_menu_shell_button_press): Set the activate_time to the event
2770         time when a button is pressed.
2771
2772         * gtk/gtkmenu.c (gtk_menu_motion_notify, gtk_menu_enter_notify):
2773         Interprete button releases as activate when we have seen both an
2774         enter an a motion event.
2775
2776 2004-06-01  Federico Mena Quintero  <federico@ximian.com>
2777
2778         * gtk/gtkfilesystemmodel.c (do_files_removed): Don't insert a
2779         dummy node if there is no parent node.  Fixes #143362.
2780
2781 2004-05-31  Federico Mena Quintero  <federico@ximian.com>
2782
2783         * gtk/gtkfilechooserdefault.c (renderer_edited_cb): Change to the
2784         newly-created folder.  Fixes #138932.
2785         (trap_activate_cb): Only return TRUE if we did handle the event.
2786         Fixes #143359; patch by jylefort@brutele.be.
2787
2788 Mon May 31 02:39:32 2004  Matthias Clasen  <maclas@gmx.de>
2789
2790         * gtk/gtkimage.c (gtk_image_new_from_pixmap): Fix typo in 
2791         docs.  (#142892, Tommi Komulainen)
2792
2793 Mon May 31 02:16:37 2004  Matthias Clasen  <maclas@gmx.de>
2794
2795         * gtk/gtkhandlebox.c: Make detached handleboxes work when their
2796         parent is minimized, porting the fix from 1.2.  (#1923, #57182)
2797
2798 Mon May 31 02:03:17 2004  Matthias Clasen  <maclas@gmx.de>
2799
2800         * gtk/gtkwindow.c (gtk_window_show): Make moving realized, 
2801         unmapped windows work. 
2802
2803 Mon May 31 00:27:33 2004  Matthias Clasen  <maclas@gmx.de>
2804
2805         * gtk/gtkfilechooserutils.c (_gtk_file_chooser_set_delegate): Fix
2806         a typo.
2807
2808 Mon May 31 00:23:55 2004  Matthias Clasen  <maclas@gmx.de>
2809
2810         * gtk/gtkfilechooser.c (gtk_file_chooser_set_preview_widget): 
2811         Refer to ::update-preview, not ::selection-changed.
2812
2813 2004-05-29  Christian Rose  <menthos@menthos.com>
2814  
2815         * configure.in: Added "tk" to ALL_LINGUAS.
2816  
2817 Fri May 28 15:00:01 2004  Matthias Clasen  <maclas@gmx.de>
2818
2819         * gtk/gtkwidget.c (gtk_widget_set_parent): Add informative
2820         messages for common problems.  (#137974, Owen Taylor)
2821
2822 Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>
2823
2824         * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation 
2825         errors. (#143337, Billy Biggs) 
2826
2827 Thu May 27 16:36:22 2004  Owen Taylor  <otaylor@redhat.com>
2828
2829         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): Set
2830         bits within visual->depth that aren't used for color to
2831         1s, in case they are alpha.
2832
2833 2004-05-27  Anders Carlsson  <andersca@gnome.org>
2834
2835         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
2836         Make separator rows insensitive.
2837
2838 Thu May 27 00:48:16 2004  Matthias Clasen  <maclas@gmx.de>
2839
2840         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_text_column): 
2841         Add more docs.
2842
2843 Thu May 27 00:45:07 2004  Matthias Clasen  <maclas@gmx.de>
2844
2845         * gtk/gtkentrycompletion.h:
2846         * gtk/gtkentrycompletion.c (gtk_entry_completion_get_text_column): 
2847         Getter for text_column. Also make ::text_column a property.
2848
2849 Thu May 27 00:11:01 2004  Matthias Clasen  <maclas@gmx.de>
2850
2851         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): Fix a typo.
2852
2853 Thu May 27 00:07:47 2004  Jonathan Blandford  <jrb@gnome.org>
2854
2855         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): only remove the
2856         signal if the box exists.
2857
2858 Wed May 26 23:26:51 2004  Matthias Clasen  <maclas@gmx.de>
2859
2860         Support insensitive cells in tree views and combo boxes:
2861         
2862         * gtk/gtkcellrenderer.h: 
2863         * gtk/gtkcellrenderer.c: Add a ::sensitive property.
2864
2865         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
2866         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
2867         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render): 
2868         Support drawing insensitive.
2869
2870         * gtk/gtkcellview.h: 
2871         * gtk/gtkcellview.c (gtk_cell_view_get_cell_renderers): New 
2872         function to obtain the cell renderers from a cell view. Also
2873         export gtk_cell_view_set_cell_data().
2874
2875         * gtk/gtktreeselection.c (tree_column_is_sensitive):
2876         * gtk/gtktreeselection.c (row_is_selectable): Helper functions
2877         to determine whether all visible cells in a row are insensitive
2878         and whether a row is selectable. A row is not selectable if the 
2879         user function says so or if all visible cells are insensitive.
2880         * gtk/gtktreeselection.c (_gtk_tree_selection_internal_select_node): 
2881         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node): 
2882         Use row_is_selectable().
2883         
2884         * gtk/gtkcombobox.c (row_is_sensitive): 
2885         * gtk/gtkcombobox.c (tree_column_row_is_sensitive): 
2886         * gtk/gtkcombobox.c (menu_row_is_sensitive): Helper functions
2887         to determine row sensitivity in menu or list mode.
2888
2889         * gtk/gtkcombobox.c (update_menu_sensitivity): Helper function
2890         to set up sensitivity menu items from the underlying rows.
2891
2892         * gtk/gtkcombobox.c (gtk_combo_box_popup): 
2893         * gtk/gtkcombobox.c (gtk_combo_box_menu_button_press): Use
2894         update_menu_sensitivity().
2895                 
2896         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Setup the cell
2897         data funcs.
2898
2899         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Skip insensitive
2900         rows.
2901
2902         * tests/testcombo.c (main): Make some rows insensitive.
2903
2904 2004-05-26  Robert Ögren  <gtk@roboros.com>
2905
2906         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Send key
2907         modifiers (shift, ctrl etc) in button and motion events from the
2908         tablet. (#143240)
2909
2910 2004-05-26  Robert Ögren  <gtk@roboros.com>
2911
2912         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): Simple
2913         implementation for extended input devices using last known 
2914         device state (#143237)
2915
2916 Tue May 25 21:54:00 2004  Matthias Clasen  <maclas@gmx.de>
2917
2918         * gtk/gtkframe.c: Move docs inline, fixing them on the
2919         way.  (#143029, Steve Chaplin)
2920
2921 2004-05-11  Robert Ögren  <gtk@roboros.com>
2922
2923         * gdk/win32/gdkevents-win32.c (propagate): Don't propagate mouse
2924         events to windows that want extended input events. (#142943)
2925         (gdk_event_translate): Move check for extended input devices to
2926         propagate, new parameter to propagate.
2927         (gdk_pointer_grab, gdk_display_pointer_ungrab): Enable calls to
2928         _gdk_input_(un)grab_pointer. (#142943)
2929
2930         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Check for
2931         input grab. [Fix missing update of impl in "dijkstra" event
2932         propagation loop] Drop the parallel "impl" pointer, just use a
2933         cast. Don't propagate beyond windows that want normal input
2934         events. (#142943)
2935         (gdk_input_grab_pointer, gdk_input_ungrab_pointer): Limited
2936         implementation of input grab. (#142943)
2937
2938 2004-05-22  Tor Lillqvist  <tml@iki.fi>
2939
2940         * gdk/win32/gdkinput-win32.c (print_lc): Remove duplicated
2941         line. (Spotted by Benoît Carpentier.)
2942
2943 2004-05-18  Matthias Clasen  <mclasen@redhat.com>
2944
2945         * configure.in: Check for XFIXES extension.
2946
2947         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add 
2948         a gboolean have_xfixes member.
2949
2950         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Register
2951         XFIXES events and set have_xfixes.
2952
2953         * gdk/gdkevents.h (GdkEventType): Add GDK_OWNER_CHANGE.
2954         (GdkEventOwnerChange): New event struct for owner change events.
2955         (GdkOwnerChange): New enum for the reason field of GdkEventOwnerChange.
2956         
2957         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Translate 
2958         XFixesSelectionNotify events into GdkEventOwnerChange events.
2959         
2960         * gdk/gdkdisplay.h:
2961         * gdk/x11/gdkdisplay-x11.c (gdk_display_supports_selection_notification):
2962         (gdk_display_request_selection_notification): New api 
2963         to support selection ownership notification.
2964
2965         * gtk/gtkclipboard.h:
2966         * gtk/gtkclipboard.c (_gtk_clipboard_handle_event): New private
2967         api to handle owner change events.
2968         (clipboard_peek): Refactored out the body of 
2969         gtk_clipboard_get_for_display() for use in _gtk_clipboard_handle_event().
2970
2971         * gtk/gtkmain.c (gtk_main_do_event): Handle GDK_OWNER_CHANGE events
2972         by calling _gtk_clipboard_handle_event().
2973
2974 2004-05-18  Matthias Clasen  <mclasen@redhat.com>
2975
2976         * gtk/gtkintl.h: Include glib/gi18n-lib.h and only define
2977         the P_() macros ourselves.
2978
2979         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
2980         Restrict the width of the popup to be no larger than the
2981         monitor.  (#142678, DmD Ljungmark)
2982
2983         * gtk/gtkbutton.c: Go back to the initial fix for the 
2984         focus-overdrawing problem, which was actually correct 
2985         according to docs/widget_geometry.txt.
2986
2987         * gtk/gtkarrow.c (gtk_arrow_class_init): Bump the initial
2988         arrow size from 11 to 15 to compensate for that.
2989
2990         * gtk/gtktextview.c (gtk_text_view_class_init): Document the
2991         arguments of the ::move-cursor signal.  (#142725)
2992
2993 2004-05-17  Matthias Clasen  <mclasen@redhat.com>
2994
2995         Merged from 2.4:
2996         
2997         * gtk/gtkbutton.c (gtk_button_size_request) 
2998         (gtk_button_size_allocate, _gtk_button_paint): Allocate
2999         space for the focus rectangle only if necessary.  (#142668,
3000         Michael Natterer)
3001
3002 Sun May 16 23:11:47 2004  Matthias Clasen  <maclas@gmx.de>
3003
3004         Merged from 2.4:
3005         
3006         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Remove two useless 
3007         lines.  (#142479, Morten Welinder)
3008
3009 Sun May 16 22:27:17 2004  Matthias Clasen  <maclas@gmx.de>
3010
3011         * gtk/gtkintl.h (Q_): Add a Q_() macro. 
3012
3013         * gtk/gtkcellrendererprogress.h: Remove GTK_PROGRESS_CELL_UNKNOWN
3014         and GTK_PROGRESS_CELL_FAILED. With the ability the set the label,
3015         they are not really needed.
3016
3017         * gtk/gtkcellrendererprogress.c: Use the xpad and ypad properties
3018         instead of hardwired padding, use Q_() for the default label, 
3019         compute a reasonable minimal size.  (#142571, #142572, #142573,
3020         Tommi Komulainen, Christian Persch)
3021         
3022 2004-05-15  Tor Lillqvist  <tml@iki.fi>
3023
3024         * gdk/win32/gdkdnd-win32.c: Put back the ref_count field in the
3025         GdkDragContextPrivateWin32 struct (but inside ifdef OLE2_DND this
3026         time). It is used by the OLE2_DND code, which is unfinished and
3027         presumably horribly broken, but still, let's not make it not
3028         compile on purpose. Silence some gcc warnings in the OLE2_DND
3029         code.
3030
3031 2004-05-14  Matthias Clasen  <mclasen@redhat.com>
3032
3033         * gtk/gtktreeview.c (gtk_tree_view_tree_window_to_tree_coords): 
3034         New function to go from tree window to tree coordinates, kept
3035         static for now until we figure out the multiple coordinate
3036         system mess in GtkTreeView API-wise.
3037         (gtk_tree_view_scroll_to_cell): Transform the coordinates 
3038         from tree window to tree coordinates, using the new function.
3039         Previously, the x coordinate was wrongly transformed. (#142494)
3040
3041         * gdk/gdktypes.h (GdkModifierType): Add a comment about unused
3042         bits.
3043
3044         * gtk/gtkstock.c (real_add, gtk_stock_lookup): Use an unused
3045         modifier bit to mark stock item which need to be freed 
3046         eventually.  (#140654, Michal Pasternak, Scott Tsai)
3047
3048 2004-05-11  Robert Ögren  <gtk@roboros.com>
3049
3050         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Add missing
3051         call to g_object_ref in Wintab code. (#138341)
3052
3053         * gdk/win32/gdkinput-win32.c: Fix numerous Wintab problems
3054         including unallocated buffers for event->motion.axes and
3055         event->button.axes, unsigned wraparound problem in the code for
3056         detecting missing press/release events and assigning min instead
3057         of max when setting up axes.
3058
3059 2004-05-12  Matthias Clasen  <mclasen@redhat.com>
3060
3061         * tests/testtreeedit.c: Add a progress column.
3062
3063         * gtk/Makefile.am: Add gtkcellrendererprogress.[hc] in the right
3064         places.
3065
3066         * gtk/gtk.h: Include gtkcellrendererprogress.h.
3067
3068         * gtk/gtkcellrendererprogress.[hc]: A progress cell renderer,
3069         based on the one found in Epiphany.
3070
3071 2004-05-11  Michael Natterer  <mitch@gimp.org>
3072
3073         * gtk/gtkcombobox.c (gtk_combo_box_popup)
3074         (gtk_combo_box_menu_button_press): don't allocate the popup
3075         smaller than the combobox. Fixes bug #59660.
3076
3077 2004-05-11  Matthias Clasen  <mclasen@redhat.com>
3078
3079         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Revert the
3080         previous change to this function, clarify the docs instead.
3081
3082         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Use
3083         GTK_SELECTION_BROWSE.
3084
3085         * gtk/gtktreeview.c: Make hover selection work for 
3086         GTK_SELECTION_BROWSE as well.
3087
3088 Tue May 11 00:38:25 2004  Matthias Clasen  <maclas@gmx.de>
3089
3090         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_class_init): 
3091         Document the ::toggled signal.
3092
3093 Mon May 10 23:04:25 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3094
3095         * gtk/gtkwidget.h: Add prototype for _gtk_widget_grab_notify()
3096
3097 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
3098
3099         * gtk/gtkwindow.c (get_screen_icon_info): Make static.
3100
3101         * gdk/gdkdisplay.c (singlehead_...): 
3102         * gdk/x11/gdkkeys-x11.c (get_effective_keymap): 
3103         * gdk/x11/gdkgeometry-x11.c (expose_serial_predicate): 
3104         * gdk/x11/gdkdisplay-x11.c (escape_for_xmessage): Make static.
3105
3106         * gtk/gtktreeview.c (gtk_tree_view_set_fixed_height_mode): Add a 
3107         note about COLUMN_FIXED restriction.
3108
3109         * gtk/gtkentrycompletion.c (gtk_entry_completion_list_button_press): 
3110         Set the entry in the default handler of the ::match-selected signal.
3111         (#137226)
3112
3113         * gtk/gtkcombobox.c (gtk_combo_box_menu_position_below): If we don't
3114         do the move-selected-item below pointer thingie, do the 
3115         place-below-or-above one.
3116
3117         * tests/testentrycompletion.c: Make the second example use the 
3118         ::match-selected signal to make it actually work.
3119
3120         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): 
3121         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Use hover selection
3122         mode.  (#127648, Dave Bordoley)
3123
3124         * gtk/gtktreeview.h:
3125         * gtk/gtktreeview.c: Add a new property "hover_selection", which 
3126         when TRUE makes the selection follow the mouse. Also add setter
3127         and getter for the fixed_height property.
3128
3129 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
3130
3131         * gtk/gtkcombobox.c (gtk_combo_box_popup) 
3132         (gtk_combo_box_menu_button_press): Make sure the menu pops up
3133         as wide as the combobox.  (#59660, Havoc Pennington)
3134
3135 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
3136
3137         * gtk/gtkcombobox.h: 
3138         * gtk/gtkcombobox.c: Support tearoffable combo boxes (in menu 
3139         mode). Add a new property, add-tearoffs, for this.  (#135956)
3140
3141         * gtk/gtkfontsel.c (list_row_activated): Make Return activate the
3142         default button.  (#118921)
3143
3144 Mon May 10 15:03:50 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3145
3146         * gtk/gtkwidget.c (_gtk_widget_grab_notify): New internal function
3147         that emits the grab notify signal.
3148         
3149         * gtk/gtkmain.c (gtk_grab_notify_foreach): Use it here.
3150
3151 Mon May 10 00:48:08 2004  Matthias Clasen  <maclas@gmx.de>
3152
3153         * gtk/gtkmenu.c: Make destruction of a torn off menu work 
3154         like un-tearing off.
3155
3156 Sun May  9 21:05:38 2004  Matthias Clasen  <maclas@gmx.de>
3157
3158         Merge from 2.4:
3159
3160         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
3161         Allow to suppress the stock accelerator by using "".  (#142196,
3162         David A Knight)
3163         
3164 Sun May  9 02:01:13 2004  Matthias Clasen  <maclas@gmx.de>
3165
3166         Merge from 2.4:
3167         
3168         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): 
3169         In list mode, accept the same mouse/wheel bindings on 
3170         the cellview as on the button.  (#136967)
3171
3172 Sun May  9 01:25:37 2004  Matthias Clasen  <maclas@gmx.de>
3173
3174         * gtk/gtkiconfactory.c (add_to_cache): Actually count the
3175         cached icons.  (#135888, Crispin Flowerday)
3176
3177 Sun May  9 00:03:03 2004  Matthias Clasen  <maclas@gmx.de>
3178
3179         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Make sure
3180         that we actually return menus for nodes of type menu, not the
3181         menuitems they're attached to.
3182
3183 Sat May  8 22:50:55 2004  Matthias Clasen  <maclas@gmx.de>
3184
3185         * gtk/gtkactiongroup.c (gtk_action_group_set_translation_domain): 
3186         Add a note regarding UTF-8 requirements, proposed by 
3187         Mariano Suárez-Alvarez.
3188
3189 Sat May  8 22:43:11 2004  Matthias Clasen  <maclas@gmx.de>
3190
3191         * gtk/gtktearoffmenuitem.h: 
3192         * gtk/gtktearoffmenuitem.c: Put the torn_off flag back
3193         into the GtkTearoffMenuItem struct, since it is used
3194         by the Gimp, and keep it synchronized with the 
3195         tearoff_state property of the parent menu.
3196
3197 2004-05-08  Hans Breuer  <hans@breuer.org>
3198
3199         * gtk/gtkfilesystemwin32.c (extract_icon) : finally also
3200         create the correct mask for 'pseudo mime' icons
3201
3202         * gdk/win32/gdkwindow-win32.c(show_window_internal) : also
3203         take focus_on_map into account
3204
3205         * gtk/gtkselection.c : g_message() only with DEBUG_SELECTION
3206
3207         * gtk/gtkactiongroup.c gtk/gtkcombobox.c : 
3208         ... must return a value
3209
3210         * gdk/gdk.def gtk/gtk.def demos/gtk-demo/makefile.msc.in : updated
3211
3212 2004-05-07  Matthias Clasen  <mclasen@redhat.com>
3213
3214         * gtk/gtkbutton.c (gtk_button_size_allocate): Don't let the child
3215         draw over the focus rectangle.
3216
3217         * gtk/gtkhsv.c: Draw focus indication in the color wheel using
3218         standard focus style.  (#63071, Bill Haneman, idea for new
3219         style by Owen Taylor)
3220
3221         * gtk/gtkstyle.c (gtk_default_draw_focus): Support drawing on
3222         focus on the colorwheel via details.
3223
3224 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
3225
3226         Merge from 2.4:
3227         
3228         * gtk/gtkcombobox.c (gtk_combo_box_menu_state_changed): Remove
3229         this no longer needed signal handler.  (#141817, Paul Pogonyshev)
3230
3231 Fri May  7 00:41:46 2004  Matthias Clasen  <maclas@gmx.de>
3232
3233         * gtk/gtktearoffmenuitem.h: 
3234         * gtk/gtktearoffmenuitem.c: Make the tearoff 
3235         functionality model/view, the tearoffmenuitem being
3236         the view and the tearoff_state property of the menu
3237         being the model.  (#101185, Owen Taylor)
3238
3239         * gtk/gtkmenu.c: Add a tearoff_state property.
3240
3241 Thu May  6 23:52:13 2004  Matthias Clasen  <maclas@gmx.de>
3242
3243         Merge from 2.4:
3244
3245         * gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also 
3246         popup the submenu for items in torn off menus.  (#122051)
3247
3248 2004-05-06  Sven Neumann  <sven@gimp.org>
3249
3250         * gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
3251         position the title lable next to the arrow just as we do for LTR
3252         rendering. Fixes bug #141825.
3253
3254 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
3255
3256         * docs/RELEASE-HOWTO: Document the new policy of
3257         bumping version numbers after release.
3258
3259         * configure.in: Bump version number to 2.5.0.
3260
3261 2004-05-06  Padraig O'Briain  <padraig.obriain@sun.com>
3262
3263         * gtk/gtkmenu.h:
3264         * gtk/gtkmenu.c: Add new function gtk_menu_get_for_attach_widget.
3265         (bug #113112).
3266
3267 Thu May  6 00:24:11 2004  Matthias Clasen  <maclas@gmx.de>
3268
3269         * gtk/gtkactiongroup.h: 
3270         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): 
3271         New function to translate a string with translate_func.
3272         (#135740)
3273
3274 Thu May  6 00:02:21 2004  Matthias Clasen  <maclas@gmx.de>
3275
3276         * gtk/gtkcombobox.c (gtk_combo_box_get_wrap_width): 
3277         (gtk_combo_box_get_row_span_column): 
3278         (gtk_combo_box_get_column_span_column): Add missing getters
3279         for readwrite properies. (#135649)
3280
3281 Wed May  5 23:42:42 2004  Matthias Clasen  <maclas@gmx.de>
3282
3283         * gtk/gtkcombobox.h: 
3284         * gtk/gtkcombobox.c (gtk_combo_box_get_active_text): 
3285         Add gtk_combo_box_get_active_text() convenience 
3286         function. (#136372, Christian Neumeir, patch by Olivier Andrieu) 
3287
3288 2004-05-05  Elijah Newren  <newren@math.utah.edu>
3289
3290         Changes to support do-not-focus-on-map hint in conjunction with
3291         _NET_WM_USER_TIME (#115650):
3292
3293         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a new boolean
3294         field focus_on_map
3295         
3296         * gdk/gdkwindow.h (gdk_window_set_accept_focus): New function to
3297         set it.
3298
3299         * gtk/gtkwindow.[hc]: Add a boolean property "focus_on_map"
3300         and gtk_window_get_focus_on_map() and gtk_window_set_focus_on_map().
3301
3302         * gdk/win32/gdkwindow-win32.c (gdk_window_new): 
3303         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new): 
3304         * gdk/x11/gdkwindow-x11.c (gdk_window_new):
3305         Initialize the focus_on_map field to TRUE.
3306
3307         * gdk/win32/gdkwindow-win32.c (gdk_window_set_focus_on_map): 
3308         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_focus_on_map): 
3309         * gdk/x11/gdkwindow-x11.c (gdk_window_set_focus_on_map): 
3310         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window):
3311         Implementations for the various backends. The Win32 and linux-fb
3312         implementations set the focus_on_map field, but don't use it yet
3313         to actually implement noinput windows. The X implementation sets
3314         _NET_WM_USER_TIME to 0 if focus_on_map is FALSE (see the EWMH).
3315
3316         * gdk/x11/gdkwindow-x11.h: 
3317         * gdk/x11/gdkevents-x11.c (set_user_time): 
3318         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
3319         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): 
3320         s/_gdk_x11_window_set_user_time/gdk_x11_window_set_user_time/,
3321         since we want that function to be part of the public API.
3322
3323 Wed May  5 22:20:21 2004  Matthias Clasen  <maclas@gmx.de>
3324
3325         Merge from 2.4:
3326         
3327         * gtk/gtkiconfactory.c (icon_source_clear): Don't
3328         call g_free() on a pixbuf.  (#141961, Crispin Flowerday) 
3329
3330 2004-05-05  Matthias Clasen  <mclasen@redhat.com>
3331    
3332         Merge from 2.4:
3333         
3334         * gtk/gtkuimanager.c (print_node): Make the output 
3335         parseable.  (#141929, Sven Neumann)
3336
3337 2004-05-05  Tor Lillqvist  <tml@iki.fi>
3338
3339         * gdk/win32/gdkdnd-win32.c (gdk_drag_find_window_for_screen): Add
3340         multi-monitor offset. (#141842, John Ehresman)
3341
3342 2004-05-04  Federico Mena Quintero  <federico@ximian.com>
3343
3344         Fixes #139562, based on a patch by Christian Neumair.
3345
3346         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): Add
3347         a filter_combo_hbox field to contain the filter combo.
3348         (show_filters): Show/hide the filter_combo_hbox.
3349         (create_filename_entry_and_filter_combo): Removed.
3350         (file_pane_create): Create the filter_combo_hbox here.
3351
3352 2004-05-04  Matthias Clasen  <mclasen@redhat.com>
3353
3354         * modules/input/gtkimcontextxim.c: Fix the recent
3355         string_conversion_callback change to work on 
3356         Solaris.  (#141190, Padraig O'Briain)
3357
3358         * gtk/gtkselection.c: Disable debug logging again.
3359
3360 2004-05-03  Matthias Clasen  <mclasen@redhat.com>
3361
3362         * gtk/gtkselection.c: Make the chunk size for 
3363         incremental transfers depend on the maximal request 
3364         size, capped at 256k. This should allow most selections
3365         to be transferred nonincrementally, avoiding many
3366         roundtrips and protocol overhead.
3367
3368 2004-05-03  Federico Mena Quintero  <federico@ximian.com>
3369
3370         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Call
3371         g_signal_new() correctly and initialize the signal fields.  Fixes
3372         #141749; patch based on Michael Natterer's.
3373
3374 u2004-05-03  Matthias Clasen  <mclasen@redhat.com>
3375
3376         * gtk/gtkselection.c (_gtk_selection_request): Fix
3377         a debug message to show correct information.
3378         (_gtk_selection_incr_event): Make INCRemental transfer
3379         of MULTIPLE targets work. This was broken since 1997!
3380
3381 2004-05-02  Hans Breuer  <hans@breuer.org>
3382
3383         * gdk/win32/gdkdrawable-win32.c (draw_segments) : don't
3384         modify the passed in GdkSegment(s) in place, we may get
3385         them again to draw at the same place. Fixes bug #129095, 
3386         bug #137177, ...
3387         (draw_segments) draw the end pixel again to get the 
3388         pixmap mask right, fixes bug #126710, #130202
3389
3390         * gdk/win32/gdkwindow-win32.c : use SetForegroundWindow,
3391         fixes bug #106013, John Ehresman
3392
3393         * gtk/makefile.msc.in : don't try to link gtk.res but
3394         use gtk-win32.res (as supposed to be fixed below :)
3395
3396 2004-05-01  Hans Breuer  <hans@breuer.org>
3397
3398         * tests/Makefile.am : tests/makefile.msc is in CVS for
3399         a long time, finally added to EXTRA_DIST : fixes bug 
3400         #141334, John Ehresman
3401
3402 2004-04-30  Matthias Clasen  <mclasen@redhat.com>
3403
3404         * === Released 2.4.1 ===
3405
3406         * configure.in: Version 2.4.1, interface age 1. 
3407
3408         * NEWS: Updates
3409
3410 2004-04-29  Federico Mena Quintero  <federico@ximian.com>
3411
3412         Fixes #140412.
3413
3414         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): New
3415         function; moved the code over from
3416         remove_bookmark_button_clicked_cb().
3417         (remove_selected_bookmarks): Now, getting a non-removable bookmark
3418         is not an error, as we may be called as a result of hitting the
3419         Delete key.
3420         (shortcuts_key_press_event_cb): New handler; delete the bookmark
3421         if the user presses Backspace, Delete, or KP_Delete.
3422
3423 2004-04-29  Matthias Clasen  <mclasen@redhat.com>
3424
3425         * gtk/gtkaction.c (closure_accel_activate): Use
3426         _gtk_action_emit_activate() instead of directly
3427         emitting the activate signal.  (#141429, Jody Goldberg)
3428
3429         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
3430         Warn people when the accelerator can not be 
3431         parsed.  (#141429, Jody Goldberg)
3432
3433 2004-04-29  Matthias Clasen  <mclasen@redhat.com>
3434
3435         * tests/testentrycompletion.c (main): Add a missing 
3436         cat.  (#141070, Chris Sherlock)  
3437
3438         * gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
3439         variable.  (#141022, Chris Sherlock)
3440         
3441         * gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
3442         cast.  (#141013, Chris Sherlock)
3443
3444         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
3445         unused variable.  (#141011, Chris Sherlock)
3446
3447 2004-04-29  Tor Lillqvist  <tml@iki.fi>
3448
3449         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory
3450         leak. (#140775, John Ehresman)
3451
3452 Thu Apr 29 01:09:50 2004  Matthias Clasen  <maclas@gmx.de>
3453
3454         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): Use depth - 1
3455         to index the cached gcs, not depth.  (#139494)
3456
3457 2004-04-28  Matthias Clasen  <mclasen@redhat.com>
3458
3459         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): Docs typo fix.
3460
3461 Sun Apr 25 15:36:02 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3462
3463         * gtk/gtktoolbutton.c (gtk_tool_button_set_label_widget): Fix
3464         cut'n'paste-o from previous commit. (#141046, Torsten Schoenfeld).
3465
3466 2004-04-24  Theppitak Karoonboonyanan  <thep@linux.thai.net>
3467
3468         Patch to add support for string conversion callbacks to
3469         GtkIMContextXIM (#101814)
3470
3471         * modules/input/gtkimcontextxim.c: Set the string conversion callback
3472         if supported by the XIC.
3473
3474         (struct _GtkIMContextXIM): Add string_conversion_callback member.
3475
3476         (struct _GtkXIMInfo, setup_im): Check and keep flag inidicating
3477         whether string conversion callback is supported.
3478
3479         (gtk_im_context_get_ic, +set_string_conversion_callback,
3480         +string_conversion_callback): Also initialize string conversion
3481         callback, if supported, along with the IC initialization.
3482
3483         * modules/input/imxim.c: Make "xim" module default for Thai as well.
3484
3485 2004-04-23  Matthias Clasen  <mclasen@redhat.com>
3486
3487         * gtk/gtkclipboard.c (gtk_clipboard_wait_for_targets): Correctly
3488         initialize targets.  (#139883, John Finlay)
3489
3490         * gdk/gdkdraw.c (gdk_draw_drawable): Small doc improvement. 
3491
3492         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected_rows): 
3493         Don't recommend gtk_tree_row_reference_new_proxy().  (#138309,
3494         Tim-Philipp Müller)
3495
3496         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_set_cell_data): 
3497         Remove an excessive g_return_if_fail().
3498
3499         * gdk/x11/gdkevents-x11.c (set_user_time): Make set_user_time()
3500         static.
3501         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
3502         _-prefix calls of gdk_x11_window_set_user_time().
3503
3504 2004-04-22  Matthias Clasen  <mclasen@redhat.com>
3505
3506         * gtk/gtkuimanager.c (update_node): Make sure the separators 
3507         used to demarkate placeholder ends don't show up on 
3508         show_all().  (#140496, Murray Cumming)
3509
3510         * gtk/gtkspinbutton.c (spin_button_at_limit): Make spinbuttons
3511         work with negative increments.  (#137975, Tim Gerla)
3512
3513 Wed Apr 21 21:38:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3514
3515         * gtk/gtktoolbutton.c (gtk_tool_button_set_label_widget,
3516         gtk_tool_button_set_icon_widget): Remove the old widget from the
3517         tool button before overwriting it with the new widget.
3518
3519         (#140508, Todd Goyen)
3520         
3521 2004-04-22  Tor Lillqvist  <tml@iki.fi>
3522
3523         Fix the file chooser on Windows. I can't make it misbehave or
3524         crash any more now. But presumably there are still corner cases
3525         not handled. I haven't really checked behaviour of UNC paths, for
3526         instance.
3527
3528         * gtk/gtkfilesystemwin32.c: Accept both backslash and slash in
3529         several places. Use G_IS_DIR_SEPARATOR macro (which could be added
3530         to GLib in 2.6).
3531
3532         (gtk_file_system_win32_get_parent): Like the Unix version, assert
3533         filename is absolute, and avoid one unnecessary string allocation
3534         and freeing.
3535         
3536         (canonicalize_filename,gtk_file_system_win32_parse): Handle drive
3537         letters more correctly.
3538
3539         (gtk_file_system_win32_render_icon): Assure correct syntax is used
3540         for root folder of a drive. (#137962, Morten Welinder)
3541
3542         (filename_is_some_root): New function that accepts also root
3543         without any drive specified.
3544
3545         (filename_is_drive_root): Rename from filename_is_root.
3546
3547         * gtk/gtkfilechooserentry.c (completion_match_func): Casefold on
3548         Windows.
3549
3550 2004-04-21  Matthias Clasen  <mclasen@redhat.com>
3551
3552         * gtk/gtkentry.c (gtk_entry_completion_timeout): Pop down the 
3553         completion window if there are no completions anymore.
3554
3555         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
3556         Don't call gtk_tree_view_scroll_to_cell() on an empty tree view. 
3557         It doesn't like that.  (#140642, Christian Persch)
3558
3559         * demos/gtk-demo/expander.c (do_expander): A new demo.
3560
3561         * demos/gtk-demo/Makefile.am (demos): Add expander.c.
3562
3563 2004-04-20  Matthias Clasen  <mclasen@redhat.com>
3564
3565         * gtk/gtktextview.c (gtk_text_view_allocate_children): Make
3566         sure anchored children get size allocated, even if the layout
3567         is valid.  (#122323, Andrew E. Makeev)
3568         (gtk_text_view_scroll_pages): 
3569         (gtk_text_view_scroll_hpages): Don't scroll to cursor position
3570         if we already have pending scrolls. Bandaid fix for #78513.
3571
3572 Mon Apr 19 17:59:17 2004  Owen Taylor  <otaylor@redhat.com>
3573
3574         * INSTALL.in: Update libpng and libjpeg URLs, remove
3575         note about building without since that's not the normal
3576         case.
3577
3578 Sun Apr 11 09:45:11 2004  Owen Taylor  <otaylor@redhat.com>
3579
3580         * gtk/gtkicontheme.c (load_themes): Fix a couple of typos in
3581         handling of SVG/non-SVG unthemed icons.
3582
3583 2004-04-19  Morten Welinder  <terra@gnome.org>
3584
3585         * gtk/gtktoolbar.c (gtk_toolbar_focus): Don't leak list of
3586         children.  (#140523)
3587
3588 2004-04-19  Matthias Clasen  <mclasen@redhat.com>
3589
3590         * gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag): 
3591         Don't stop the iteration up to the tag_root too 
3592         early.  (#109945, Dongho Shin)
3593
3594 Sun Apr 18 17:06:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3595
3596         * gdk/x11/gdkkeys-x11.c (get_effective_keymap): Make
3597         gdk_keymap_translate_keyboard_state() handle NULL
3598         keymaps. (#139715, Torsten Schoenfeld).
3599
3600 Sun Apr 18 16:59:21 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3601
3602         * configure.in: Don't erase GDK_EXTRA_CFLAGS. Fixes bug 139586,
3603         reported by Pedro RODRIGUEZ, about compilation problems when
3604         Xcursor is installed in a non-standard location.
3605
3606 Sun Apr 18 16:15:15 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3607
3608         Support for _NET_WM_USER_TIME (bug 115650). Patch by Elijah
3609         Newren.
3610         
3611         * gdk/x11/gdkwindow-x11.[ch]: Add new internal function
3612         _gdk_x11_set_user_time() to set the _NET_WM_USER_TIME property.
3613
3614         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add user_time field
3615
3616         * gdk/x11/gdkdisplay-x11.c: Add _NET_WM_USER_TIME to list of
3617         precached atoms.
3618         
3619         * gdk/x11/gdkinput-x11.c, gdk/x11/gdkevents-x11.c: Set the
3620         property on user interaction.
3621
3622 2004-04-15  Federico Mena Quintero  <federico@ximian.com>
3623
3624         * gtk/gtkfilesel.c (open_new_dir): Tell the user to use
3625         G_FILENAME_ENCODING, not G_BROKEN_FILENAMES.  Fixes #114065.
3626
3627         * gtk/gtkfilechooserdefault.c (split_uris): Use a variant of the
3628         code from gtkfilesel.c to parse a "text/uri-list" blob.  Fixes
3629         #140126.
3630
3631 2004-04-15  Matthias Clasen  <mclasen@redhat.com>
3632
3633         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
3634         * gtk/gtkbutton.c (gtk_button_class_init): Doc fixes.
3635
3636 2004-04-14  Matthias Clasen  <mclasen@redhat.com>
3637
3638         * gtk/gtkcombobox.c: 
3639         * gtk/gtkwidget.c: 
3640         Make all style properties readonly.
3641
3642 2004-04-14  Matthias Clasen  <mclasen@redhat.com>
3643
3644         * gtk/gtkcolorsel.c: Add a11y relations between the color
3645         wheel and the spin buttons.  (#132745, Padraig O'Briain)
3646
3647         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
3648         the meaning of size == -1.
3649
3650         * gtk/gtkwidget.c (gtk_widget_render_icon): Explicitly accept  
3651         a size of -1.  (#137436, Brian Cameron)
3652
3653         * gtk/gtkcombobox.c: Make the arrow and separator regular
3654         children of an hbox inside the button, and propagate state
3655         changes from the button to the cell view.  (part of the fix
3656         for #138650, should also fix #137535)
3657
3658         * gtk/gtkcellview.c (gtk_cell_view_expose): Pass the PRELIT
3659         state to gtk_cell_renderer_render() when prelighted. (part 
3660         of the fix for #138650)
3661
3662         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
3663         Use PRELIGHT state when appropriate.  (part of the fix for 
3664         #138650)
3665
3666         * gtk/gtkcombobox.c (gtk_combo_box_relayout): Don't spit 
3667         out warnings if called before the combo box is 
3668         realized.  (#139742, Philip Langdale)
3669
3670 Wed Apr 14 03:45:39 2004  Jonathan Blandford  <jrb@gnome.org>
3671
3672         * gtk/gtktreeview.c (gtk_tree_view_expose): propagate expose
3673         events to children.
3674
3675 Wed Apr 14 03:32:58 2004  Jonathan Blandford  <jrb@gnome.org>
3676
3677         * gtk/gtkpathbar.c (make_directory_button): remove spurious
3678         gtk_box_pack_start.
3679
3680 Tue Apr 13 16:19:23 2004  Jonathan Blandford  <jrb@redhat.com>
3681
3682         * gtk/gtkpathbar.c (make_directory_button): patch from Owen to
3683         make the buttons sized by a bold label.  This makes the text
3684         'swim' a little, but stops the buttons from resizing, #137210
3685
3686 2004-04-13  Matthias Clasen  <mclasen@redhat.com>
3687
3688         * gtk/gtkuimanager.c (get_child_node): Don't crash if a node 
3689         has no name.
3690         (start_element_handler): Accept separators without unique 
3691         names.  (#133302, Anders Carlsson)
3692
3693         * gtk/gtkactiongroup.c (gtk_action_group_add_action): Document
3694         possible accelerator gotcha when using this function.  (#139641, 
3695         Christian Persch)
3696
3697         * gtk/gtkuimanager.c (node_remove_ui_reference): Don't leak
3698         list nodes.  (#138862, Morten Welinder)
3699
3700 Tue Apr 13 12:24:49 2004  Jonathan Blandford  <jrb@redhat.com>
3701
3702         * gtk/gtktreeview.c (gtk_tree_view_destroy): remove unused
3703         variable.
3704         (gtk_tree_view_button_press): If we activated the row we don't
3705         want to grab focus back, as moving focus to another widget is
3706         pretty common, #138458
3707
3708 2004-04-12  Federico Mena Quintero  <federico@ximian.com>
3709
3710         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Added
3711         documentation to all the signals.
3712
3713 2004-04-12  Matthias Clasen  <mclasen@dhcp64-228.boston.redhat.com>
3714
3715         * gtk/gtkcombobox.c (gtk_combo_box_unset_model): Don't unref
3716         model if it is NULL. (#139770)
3717
3718         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Typo fix.
3719
3720         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): Don't add
3721         a shadow inside the scrolled window, add it around the vbox.
3722
3723         * gtk/gtkentryprivate.h: 
3724         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
3725         Return a boolean indicating whether the popup is positioned above 
3726         or below. Scroll the completions to the beginning or the end, 
3727         depending on the positioning.
3728
3729         * gtk/gtkentry.c (gtk_entry_completion_key_press): Make keynav
3730         wrap around in the entry completion popup, and allow GDK_UP to 
3731         enter the popup.  (#137440)
3732
3733 2004-04-12  Matthias Clasen  <mclasen@redhat.com>
3734
3735         * gtk/gtkentry.c (gtk_entry_size_request): Make sure the style is 
3736         there before using it.
3737
3738 Sun Apr 11 15:08:45 2004  Jonathan Blandford  <jrb@gnome.org>
3739
3740         * gtk/gtktreeprivate.h: Moved search entries into priv data.
3741
3742         * gtk/gtktreeview.c: Prep for type-ahead support.
3743
3744         (gtk_tree_view_destroy): Destroy the search window explicitly.
3745         (gtk_tree_view_key_press): Minor change; prep for type-ahead
3746         (gtk_tree_view_ensure_interactive_directory): New function
3747         (gtk_tree_view_focus_out): Rework to handle new entry life-cycle.
3748         (gtk_tree_view_real_start_interactive_search): rework
3749         (gtk_tree_view_search_dialog_hide): ditto
3750         (gtk_tree_view_search_delete_event): ditto
3751         (gtk_tree_view_search_button_press_event): ditto
3752         (gtk_tree_view_search_key_press_event): ditto
3753         (gtk_tree_view_search_move): ditto
3754         (gtk_tree_view_search_init): ditto
3755
3756         * gtk/gtktreeviewcolumn.c:
3757         (gtk_tree_view_column_cell_layout_clear): remove unused variable.
3758
3759         * tests/testfilechooser.c: (main): change
3760
3761 2004-04-11  Hans Breuer  <hans@breuer.org>
3762
3763         * gdk/win32/gdkspawn-win32.c : workaround for bug #137496,
3764         the real fix would involve just another small API breakage,
3765         i.e. gdk_spawn_* using GPid not just gint.
3766
3767         * gtk/makefile.msc.in : build gtk-win32.res, not gtk.res
3768
3769 2004-04-10  Tor Lillqvist  <tml@iki.fi>
3770
3771         * gdk/win32/gdkkeys-win32.c (gdk_keymap_translate_keyboard_state):
3772         If both Shift and CapsLock pressed, ignore the shift only for
3773         letters (that would have been affected by the CapsLock). (#139095)
3774
3775         * gdk/win32/gdkglobals-win32.c: Disable tablet support by default,
3776         seems to be even buggier now than it used to be. (#138341)
3777         Initialize _gdk_input_ignore_wintab to TRUE.
3778
3779         * gdk/win32/gdkmain-win32.c: Add --use-wintab switch and
3780         GDK_USE_WINTAB environment variable to turn on tablet support.
3781
3782 2004-04-09  Christian Persch  <chpe@cvs.gnome.org>
3783
3784         * gtk/gtkuimanager.c: (gtk_ui_manager_insert_action_group),
3785         (gtk_ui_manager_remove_action_group): Terminate
3786         g_object_[dis]connect() calls with NULL instead of 0.
3787         Fixes #138997.
3788
3789 2004-04-09  Guntupalli Karunakar  <karunakar@freedomink.org>
3790
3791         * configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
3792
3793 2004-04-07  Federico Mena Quintero  <federico@ximian.com>
3794
3795         Fix #132500.
3796
3797         * gtk/gtkfilesystem.c (gtk_file_system_parse): Ensure that the
3798         passed-in 'str' is not NULL.
3799
3800         * gtk/gtkfilesystemunix.c (expand_tilde): New helper function;
3801         expands "~/" or "~foo/" at the beginning of a filename.
3802         (gtk_file_system_unix_parse): Use expand_tilde() before doing
3803         anything else.
3804
3805         * gtk/gtkfilechooserentry.c
3806         (gtk_file_chooser_entry_maybe_update_directory): Take in a
3807         force_reload argument.
3808         (gtk_file_chooser_entry_changed): If gtk_file_system_parse()
3809         returns an error, set the file_part_pos to -1.
3810         (load_directory_callback): Only populate the model if the
3811         file_part_pos is not -1.
3812
3813 2004-04-06  Pablo Saratxaga  <pablo@mandrakesoft.com>
3814
3815         * configure.in: Added Icelandic (is) to ALL_LINGUAS
3816
3817 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
3818
3819         * gtk/gtkfilechooserdefault.c (location_popup_handler): Use a
3820         title for SAVE and CREATE_FOLDER modes.  Fixes #137272.
3821
3822         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_make_path): Look
3823         for G_DIR_SEPARATOR in the display_name, and err out if it is
3824         present; use the same error message as Nautilus.  Fixes #136467.
3825
3826         * gtk/gtkfilechooserdefault.c (file_pane_create): Make the
3827         new-folder button say "Create Fo_lder" rather than "Create
3828         _Folder", so that the mnemonic doesn't conflict with the "Save in
3829         _folder" label.  Fixes #136975.
3830
3831 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
3832
3833         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Ref/sink the
3834         buttons.  Also, free them correctly upon failure.  Based on a
3835         patch by Morten Welinder, fixes #137956.
3836
3837 2004-04-05  Anders Carlsson  <andersca@gnome.org>
3838
3839         * gdk/gdk.c (gdk_arg_context_parse): Handle '--' correctly.
3840
3841 Fri Apr  2 17:57:33 2004  Jonathan Blandford  <jrb@redhat.com>
3842
3843         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set the height
3844         correctly for fixed height when inserting a node, #138082
3845
3846 2004-04-01  Federico Mena Quintero  <federico@ximian.com>
3847
3848         Fix #136077.
3849
3850         * gtk/gtkpathbar.h (struct _GtkPathBarClass): Add a
3851         "child_is_hidden" boolean argument to the "path-clicked" signal.
3852
3853         * gtk/gtkpathbar.c (struct _ButtonData): Added a file_is_hidden
3854         field.
3855         (make_directory_button): Take a file_is_hidden argument; put it in
3856         the ButtonData.
3857         (_gtk_path_bar_set_path): See whether each path component path is
3858         a hidden file.
3859         (gtk_path_bar_class_init): Add the file_is_hidden argument to the
3860         "path-clicked" signal.
3861         (button_clicked_cb): See if the downwards button represents a
3862         hidden file for the file_is_hidden argument in the signal
3863         emission.
3864
3865         * gtk/gtkmarshalers.list: Added a signal type VOID:POINTER,BOOLEAN.
3866
3867         * gtk/gtkfilechooserdefault.c
3868         (gtk_file_chooser_default_select_path): If we fail to switch
3869         folders, don't try to select the path in the file system model.
3870         Also, return the result from _gtk_file_system_model_path_do().
3871         (gtk_file_chooser_default_select_path): Turn on show_hidden in the
3872         file system model if we are asked to select a hidden file.
3873         (path_bar_clicked): Show hidden files based on whether the
3874         immediate downwards folder in the path bar is a hidden file
3875         itself.
3876         (struct _GtkFileChooserDefault): Added fields
3877         browse_files_popup_menu and browse_files_popup_menu_hidden_files_item.
3878         (create_file_list): Set an object data key of
3879         "GtkFileChooserDefault" on the tree view so that we can find the
3880         impl from the popup menu callbacks.  Also, hook up to the
3881         "button-press-event" and "popup-menu" signals in the file list to
3882         bring up a popup menu.
3883         (list_popup_menu_cb): New callback.
3884         (list_button_press_event_cb): New callback.
3885
3886         Fix #138763:
3887
3888         * gtk/gtkfilesystemmodel.c
3889         (_gtk_file_system_model_new): Oops, connect_object to
3890         "finished-loading".
3891
3892 2004-03-31  Tor Lillqvist  <tml@iki.fi>
3893
3894         * configure.in: Move AC_CANONICAL_HOST earlier, before the check
3895         for native Win32. (#136559, J. Ali Harlow)
3896
3897         * gdk/win32/gdkdrawable-win32.c (draw_arc): Use X11 semantics for
3898         angles. Thanks to Tim Newsham.
3899
3900 2004-03-29  Federico Mena Quintero  <federico@ximian.com>
3901
3902         Fix #137520.
3903
3904         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
3905         for an ::is_finished_loading() method and a ::finished_loading()
3906         signal at the end of the struct.
3907
3908         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
3909         "finished-loading" signal.
3910         (gtk_file_folder_is_finished_loading): New function.
3911
3912         * gtk/gtkfilesystemunix.c
3913         (gtk_file_folder_unix_is_finished_loading): Implement.
3914
3915         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
3916         slot for a "finished-loading" signal.
3917         (gtk_file_system_model_class_init): Create the "finished-loading"
3918         signal.
3919         (struct _GtkFileSystemModel): New field
3920         idle_finished_loading_source.  We emit the "finished-loading"
3921         signal in an idle if the root folder was done loading right in
3922         _gtk_file_system_model_new(), so that the caller has a chance to
3923         connect to the signal.
3924         (_gtk_file_system_model_new): Connect to the normal signals of the
3925         folder even if the initial _list_children() fails.  Also, see if
3926         the folder is finished loading; connect to the "finished-loading"
3927         signal otherwise.
3928         (gtk_file_system_model_finalize): Remove the idle handler.
3929
3930         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
3931         and connect to the model's "finished-loading" signal.
3932         (get_toplevel): New helper function.
3933         (error_message): Use get_toplevel().
3934         (trap_activate_cb): Likewise.
3935         (location_popup_handler): Likewise.
3936         (set_busy_cursor): New function.
3937         (browse_files_model_finished_loading_cb): New callback.
3938
3939 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
3940
3941         * gtk/gtkfilechooserdefault.c (check_preview_change): Just use the
3942         file under the cursor; we don't need the logic from
3943         GtkFileSelection after all.  Fixes #132255.
3944
3945 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
3946
3947         * gtk/gtkfilechooserdefault.c (location_entry_create): Fill the
3948         location entry with the display name of the file under the cursor
3949         for Open mode, or the typed filename in Save mode.
3950
3951 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
3952
3953         * gtk/gtkfilesystemwin32.c
3954         (filename_is_root): Bare drive designators (eg., "c:") are
3955         no longer considered as root filenames.  Fixed #137942
3956
3957 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
3958
3959         * gtk/gtkfilesystemwin32.c
3960         (gtk_file_system_win32_create_folder): Invert test for error in
3961         mkdir.  Fixes #137945
3962
3963 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
3964
3965         Fixed #138004 using Federico's code from #132327.
3966
3967         * gtk/gtkfilesystemwin32.c (struct _GtkFileSystemWin32): Add a
3968         folder_hash field to keep a list of live folder objects.
3969         (gtk_file_system_win32_init): Create the folder_hash.
3970         (gtk_file_system_win32_finalize): Destroy the folder_hash.
3971         (gtk_file_system_win32_get_folder): Ref and return an existing
3972         folder if we have it around, otherwise return a new folder object.
3973         (struct _GtkFileFolderWin32): Add a field for the parent file system.
3974         (gtk_file_folder_win32_finalize): Remove the folder from the file
3975         system's hash table.
3976         (gtk_file_system_win32_create_folder):  Emit "files-added" on the
3977         newly-created folder's parent.  Fixes #138004.
3978
3979 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
3980
3981         * gtk/gtkfilesystemwin32.c
3982         (gtk_file_system_win32_get_folder): Test that path is actually
3983         a directory and throw error if not. Fixed bug #137950
3984
3985 2004-03-22  J. Ali Harlow  <ali@juiblex.co.uk>
3986
3987         * gtk/gtkfilesystemwin32.c
3988         (gtk_file_system_win32_volume_get_display_name): Ignore empty
3989         volume labels; assume that GetVolumeInformation would fail if
3990         GetVolumeInformationW does; catches a small memory leak;
3991         pass the buffer size to GetVolumeInformationW in wide
3992         characters instead of bytes. Fixes bug #137543
3993         (list_volumes): Cope with the theoretical possibility of
3994         more than 26 logical drives. Fixes bug #137940
3995         (bookmarks_serialize): Now actually removes bookmarks.
3996         Fixes bug #137943
3997
3998 2004-03-22  Guntupalli Karunakar  <karunakar@freedomink.org>
3999
4000         * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.
4001
4002 2004-03-21  Tor Lillqvist  <tml@iki.fi>
4003
4004         * gtk/gtkfilesystemwin32.c
4005         (gtk_file_system_win32_volume_get_base_path): Include the
4006         backslash. Otherwise gtk_file_system_win32_path_to_uri() returns
4007         NULL for a volume base path, as g_filename_to_uri() requires an
4008         absolute path, and just a drive letter and colon isn't. (#137543)
4009
4010 2004-03-20  Hans Breuer  <hans@breuer.org>
4011
4012         * gtk/gtkfilesystemwin32.c : applied the undisputable and
4013         required [due to recent gtkfilesystem internal api semantic 
4014         changes] part of patches to fix bug #137543 (Tor Lillqvist,
4015         J. Ali Harlow)
4016
4017         * gdk/gdkevents-win32.c (handle_configure_event) :
4018              (gdk_event_translate), WM_WINDOWPOSCHANGED : initialize
4019         GdkWindowObject::x, y with screen coords to make 
4020         gdk_window_get_position () return the right thing and thus fix
4021         drag and drop positioning (e.g. Gimp tabs, fixes bug #137192)
4022
4023 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
4024
4025         * Revert the patch to #137520, as 2.4.1 is for conservative bug
4026         fixes only.  The patch is attached to the bug report, for
4027         reference.
4028
4029 2004-03-19  Morten Welinder  <terra@gnome.org>
4030
4031         * gtk/gtkfilechooserdefault.c
4032         (gtk_file_chooser_default_set_current_folder): Test existance of
4033         the path after checking for locality, if needed.
4034
4035 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
4036
4037         Fix #137520.
4038
4039         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
4040         for an ::is_finished_loading() method and a ::finished_loading()
4041         signal at the end of the struct.
4042
4043         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
4044         "finished-loading" signal.
4045         (gtk_file_folder_is_finished_loading): New function.
4046
4047         * gtk/gtkfilesystemunix.c
4048         (gtk_file_folder_unix_is_finished_loading): Implement.
4049
4050         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
4051         slot for a "finished-loading" signal.
4052         (gtk_file_system_model_class_init): Create the "finished-loading"
4053         signal.
4054         (struct _GtkFileSystemModel): New field
4055         idle_finished_loading_source.  We emit the "finished-loading"
4056         signal in an idle if the root folder was done loading right in
4057         _gtk_file_system_model_new(), so that the caller has a chance to
4058         connect to the signal.
4059         (_gtk_file_system_model_new): Connect to the normal signals of the
4060         folder even if the initial _list_children() fails.  Also, see if
4061         the folder is finished loading; connect to the "finished-loading"
4062         signal otherwise.
4063         (gtk_file_system_model_finalize): Remove the idle handler.
4064
4065         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
4066         and connect to the model's "finished-loading" signal.
4067         (get_toplevel): New helper function.
4068         (error_message): Use get_toplevel().
4069         (trap_activate_cb): Likewise.
4070         (location_popup_handler): Likewise.
4071         (set_busy_cursor): New function.
4072         (browse_files_model_finished_loading_cb): New callback.
4073
4074 Thu Mar 18 12:10:45 2004  Owen Taylor  <otaylor@redhat.com>
4075
4076         * gtk/gtktreeitem.c (gtk_tree_item_forall): Include 
4077         eventbox for expander. (#137564, reported by
4078         Jacques Garrigue)
4079
4080 2004-03-18  Guntupalli Karunakar  <karunakar@freedomink.org>
4081
4082         * mr.po: Added "mr" for Marathi to ALL_LINGUAS.
4083
4084 2004-03-17  Morten Welinder  <terra@gnome.org>
4085
4086         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Free
4087         volumes not actually put into the shortcut list.
4088
4089         * tests/prop-editor.c (object_changed): Plug leak.
4090
4091         * tests/testfilechooser.c (main): Plug some leaks and expose
4092         others.
4093
4094         * tests/prop-editor.c (create_prop_editor): Don't leak the tooltip
4095         object.  Fixed #136652.
4096
4097         * gtk/gtkfilechooserdefault.c (check_icon_theme): Do nothing if we
4098         have no screen.  Fixes #137260.
4099         (shortcuts_add_bookmark_from_path): Simplify using check_is_folder
4100         thereby fixing leak.  Fixes #137259.
4101
4102         * gtk/gtkpathbar.c (gtk_path_bar_forall): Make this work when the
4103         slider buttons have been destroyed.
4104         (gtk_path_bar_remove): Make this work for slider buttons too.
4105         Fixes #137257
4106
4107 2004-03-15  Morten Welinder  <terra@gnome.org>
4108
4109         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmark_from_path):
4110         Sanitize and plug leak.
4111         (check_icon_theme): Only do something if the widget has a screen.
4112
4113 Wed Mar 17 01:20:28 2004  Matthias Clasen  <maclas@gmx.de>
4114
4115         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
4116         Move the repositioning logic from _gtk_entry_completion() popup
4117         over here. Fixes #137355, reported by Niklas Knutsson.
4118