]> Pileus Git - ~andy/gtk/blob - ChangeLog
Fix double-click activation.
[~andy/gtk] / ChangeLog
1 2004-11-09  Matthias Clasen  <mclasen@redhat.com>
2
3         * tests/testiconview.c: Fix double-click activation.
4
5         * gtk/gtkstatusbar.c (gtk_statusbar_init): Raise the grip
6         window when appropriate.
7         (gtk_statusbar_init): Instead of cutting the text of, make
8         ellipsize the label.
9         (gtk_statusbar_size_allocate): Don't let the label extend
10         under the resize grip.
11
12         * gtk/gtkcombobox.c (find_menu_by_path) 
13         (gtk_combo_box_menu_fill_level, gtk_combo_box_menu_row_inserted): 
14         Use a row reference, not a path, to associate separators
15         with their tree row.  
16         
17         * gtk/gtkstatusbar.c (gtk_statusbar_set_has_resize_grip): 
18         Show the grip_window if necessary.  
19
20         * gtk/gtkstyle.c (gtk_default_draw_resize_grip): Only
21         clear the triangle below the grip to the background,
22         not the full area. 
23
24         * gtk/gtklabel.c (draw_insertion_cursor, gtk_label_expose): 
25         Clip when drawing the cursor. This prevents bits of a
26         selectable label leaking out from underneath the resize
27         grip in a statusbar.  (#73359)
28
29         * gtk/gtkstatusbar.c: Apply a patch by Owen Taylor to
30         get reasonable allocations for the statusbar and its
31         children.  (#73359)
32
33         * tests/testgtk.c: Apply a patch by Soeren Sandmann to 
34         test long statusbar texts.
35
36         * gtk/gtk.symbols: Add new symbols.
37
38         Avoid resizing GtkStatusbar if the text of the label 
39         changes  (#90955, He Qiangqiang, fix proposed by 
40         Owen Taylor, patch by Christian Persch)
41         
42         * gtk/gtklabel.[hc]: Add a boolean single-line-mode property 
43         which causes the label height not to depend on the actual
44         text, but only on the font.
45
46         * gtk/gtkstatusbar.c (gtk_statusbar_init): Turn on
47         single-line-mode for the label.
48
49 2004-11-08  Matthias Clasen  <mclasen@redhat.com>
50
51         * gtk/gtkfilefilter.c (gtk_file_filter_filter): Use 
52         xdg_mime_mime_type_subclass() to match mime types. This
53         also gives use wildcard matching. (#143760, #141224, 
54         Tommi Komulainen, David A Knight)
55
56         * gtk/gtkaction.c (_gtk_action_sync_menu_visible): Use 
57         gtk_widget_{hide,show} instead of g_object_set (..."visible"...).
58
59         * tests/testfilechooserbutton.c (main): Disable the SAVE 
60         and CREATE_FOLDER modes.  (#157675, Christian Persch)
61
62         * gtk/gtkaboutdialog.c (gtk_about_dialog_set_website): Hide the
63         website button if the url is unset.  (#157630, John Finlay)
64
65         * gtk/gtkaboutdialog.[hc]: Change the return types of the 
66         gchar ** getters to be more const correct.  (#157566, Mariano 
67         Suárez-Alvarez)
68
69         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_init): Add
70         uri targets before text targets, to make file dnd work 
71         better.  (#157651, Christian Persch)
72
73         * gtk/gtktreedatalist.c: Support columns whose declared type is
74         an interface better, by treating them like G_TYPE_OBJECT if
75         the interface types requires G_TYPE_OBJECT.
76
77 2004-11-08  Bastien Nocera  <hadess@hadess.net>
78
79         * gtk/stock-icons/stock_media_play_rtl_16.png:
80         * gtk/stock-icons/stock_media_play_rtl_24.png: add the icons again
81         with the binary flag (Closes: #157665)
82
83 2004-11-07  Matthias Clasen  <mclasen@redhat.com>
84
85         * gtk/gtkfilefilter.h:
86         * gtk/gtkfilefilter.c (gtk_file_filter_add_pixbuf_formats): 
87         New convenience function to add a filter for image files
88         which can be loaded by GdkPixbuf. (#145388, Anders Carlsson)
89
90         * tests/testfilechooser.c: Test the image filter.
91         
92         * gtk/gtkmenu.c (menu_change_screen): Remove some warnings.
93
94         Show files in folder modes. (#157013, Nickolay V. Shmyrev)
95         
96         * gtk/gtkfilechooserdefault.c (create_file_list): Use a selection
97         function to determine which rows can be selected.
98         (update_appearance): Always show files. Also queue a redraw.
99         (set_list_model): Always show files.
100         (list_select_func): The selection function used for the file list.
101         Don't allow to select files when in select/create folder mode.
102         (list_row_activated): Don't activate files in folder modes.
103         (list_icon_data_func, list_mtime_data_func, list_size_data_func): 
104         Render files insensitive in folder modes.
105
106 2004-11-06  Matthias Clasen  <mclasen@redhat.com>
107
108         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_set_property): 
109         Don't support CREATE_FOLDER and SAVE for now. UI authorities
110         object to it.  (#157384, Seth Nickell)
111
112         * gtk/gtkfilechooserdefault.c (file_pane_create): Jump through
113         a few hoops to make the tooltip on the filter combo box work
114         a bit better. This fixes #157273 and #157074.
115
116         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): 
117         Add the ComboCellInfo to the list.  (#157528, Carlos Garnacho
118         Parro)
119
120 2004-11-05  Matthias Clasen  <mclasen@redhat.com>
121
122         * gtk/gtkcombobox.c (gtk_combo_box_menu_button_state_changed):
123         Remove this unneeded function, as it breaks state propagation.
124
125         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_activate): 
126         Queue the resize before setting the tearoff state, to 
127         make sure the torn-off menu picks up the size increase due
128         to the arrow in the torn off menu item.  (#157286, Adam
129         Hooper, fix proposed by Owen Taylor)
130
131         * gtk/gtkmenu.c (menu_change_screen): Don't unnecessarily
132         call gtk_menu_position(), since that function has issues
133         when called on a menu whose parent is unrealized.  (#157354,
134         Adam Hooper)
135
136         * gtk/gtkmain.c: Document new functions.
137
138 2004-11-04  Matthias Clasen  <mclasen@redhat.com>
139
140         * gtk/stock-icons/Makefile.am: Typo fix.
141
142         * gtk/gtkaboutdialog.c: Documentation updates.
143
144 2004-11-04  Bastien Nocera  <hadess@hadess.net>
145
146         * gtk/gtkiconfactory.c: (get_default_icons): Make sure the RTL
147         variants are used for media icons
148         * gtk/stock-icons/Makefile.am: update following the addition of
149         the 2 Play icon RTL variants
150         * gtk/stock-icons/stock_media_play_rtl_16.png: added
151         * gtk/stock-icons/stock_media_play_rtl_24.png: added
152
153 2004-11-03  Matthias Clasen  <mclasen@redhat.com>
154
155         * gtk/gtkfilechooserdefault.c (new_folder_button_clicked): 
156         Don't leak the path.  (#157301, Carlos Garnacho Parro)
157
158         * gdk/x11/gdkdnd-x11.c (gdk_drag_motion): Handle the 
159         case that the protocol version in the context is not 
160         set yet.  (#157123, James Henstridge)
161
162         * gtk/gtktreeview.c (gtk_tree_view_search_activate): Don't
163         try to activate a node if the cursor is not valid.  
164
165 2004-11-03  James M. Cape  <jcape@ignore-your.tv>
166
167         * gtk/gtkfilechooserbutton.c (update_dialog), (dialog_response_cb):
168         Don't mysteriously go to the parent dir when hitting "Cancel" in
169         folder mode (fixes #156971).
170
171 2004-11-03  Matthias Clasen  <mclasen@redhat.com>
172
173         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): Don't
174         access label->layout directly.  (#157080, Adam Hooper)
175
176         * gtk/gtklabel.c (gtk_label_set_pattern_internal): Allow
177         unsetting a pattern by passing NULL.  (#156720, Tristan Van Berkom)
178
179         * gtk/gtkcombobox.c (gtk_combo_box_get_active): Don't crash 
180         if the active_row reference has become invalid.  (#157156,
181         Christophe Fergeau)
182         
183 2004-11-02  Matthias Clasen  <mclasen@redhat.com>
184
185         * gtk/gtkwindow.c (gtk_window_activate_key_after): As
186         a last stage in GtkWindow key press handing, try adding
187         window->mnemonic_modifier to event->state and see if it
188         matches a mnemonic. (#53709, based on a patch by
189         Pasupathi Duraisamy, patch by Owen Taylor)
190
191         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
192         Doc additions.
193
194         * gtk/gtkfilechooserbutton.h: Fix trigraphs in private markers.
195
196         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_class_init): 
197         Fix a doc comment.
198
199 2004-11-01  Matthias Clasen  <mclasen@redhat.com>
200
201         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
202         Remove a debug printf().  (#157087, Christian Persch)
203
204         * gtk/gtkicontheme.c: Actually commit the "stat less" patch
205         which appeared in the ChangeLog a few days ago.
206
207         * gtk/gtkfilechooserbutton.c: Move some docs inline.
208
209         * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Doc update.
210
211         * gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Revalidate the
212         iter.  (#156924, Murray Cumming)
213
214         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Don't crash on
215         broken ClientMessage events.  (#157056, Owen Taylor)
216
217         * gtk/gtkactiongroup.c (gtk_action_group_get_visible): Fix a typo in
218         the docs.  (#157044, Masao Mutoh)
219
220 2004-10-31  Matthias Clasen  <mclasen@redhat.com>
221
222         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Update the
223         state of the cell view when the state of the button changes (to 
224         get prelighted drawing right).  (#138650, Frances Keenan, 
225         Christian Persch)
226
227         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
228         Don't force the height of the action area, we don't scroll 
229         it anyway, and the current way of calculating the height can lead
230         to broken display.  (#156573, Christian Persch)
231
232         * tests/testentrycompletion.c (animation_timer): Don't try to
233         remove stuff from an empty model.  (#156575, Christian Persch)
234
235         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
236         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
237         Update doc comments.
238
239 2004-10-31  Tor Lillqvist  <tml@iki.fi>
240
241         * gdk/win32/gdkprivate-win32.h
242         * gdk/win32/gdkglobals-win32.c
243         * gdk/win32/gdkmain-win32.c: Remove _windows_version and the
244         IS_WIN_NT() macro.
245
246         * gdk/win32/*.c: Use G_WIN32_IS_NT_BASED() from GLib instead.
247
248 2004-10-31  Matthias Clasen  <mclasen@redhat.com>
249
250         Add api for image transfer via copy-and-paste (#156408)
251         
252         * gtk/gtkclipboard.c (gtk_clipboard_set_image) 
253         (gtk_clipboard_request_image, gtk_clipboard_wait_for_image) 
254         (gtk_clipboard_wait_is_image_available): New functions for image
255         transfer.
256
257         * gtk/gtkselection.h:
258         * gtk/gtkselection.c (gtk_selection_data_targets_include_image): 
259         New function, similar to gtk_selection_data_targets_include_text().
260
261         * gtk/gtkprogressbar.[hc]: Add an ellipsize property with 
262         getter and setter.  (#156845, Morten Welinder)
263
264 2004-10-29  Robert Ögren  <gtk@roboros.com>
265
266         * gdk/win32/gdkwindow-win32.c (gdk_window_begin_resize_drag),
267         (gdk_window_begin_move_drag): Implement these on win32, currently
268         only for button 1. Fixes the resize grip of GtkStatusbar on 
269         win32. (#143285)
270
271 2004-10-30  Matthias Clasen  <mclasen@redhat.com>
272
273         * gtk/gtktextbtree.c (_gtk_text_btree_select_range): Redisplay
274         the new selection.
275
276         * gtk/gtktextview.c (gtk_text_view_select_all): Use 
277         gtk_text_buffer_select_range().
278
279         * tests/testtext.c: Add a "Select All" menuitem.  (#156792,
280         Paolo Borelli)
281
282         * gtk/gtkicontheme.c (insert_theme): Sort the dir_mtimes 
283         list in the same way as the search path.
284         (theme_subdir_load): Avoid stat()ing subdirs if the theme 
285         directory doesn't exist.  (#156866)
286
287 2004-10-29  Matthias Clasen  <mclasen@redhat.com>
288
289         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_finalize): 
290         Drop the reference to the pixbuf, regardless whether it is
291         a stock pixbuf.  (#156863, Philip Langdale)
292
293 2004-10-29  Hans Breuer  <hans@breuer.org>
294
295         * gdk/makefile.msc gtk/makefile.msc.in : updated
296
297         * gdk/win32/gdkdisplay-win32.c : dummy implementations for
298         gdk_display_supports_clipboard_persistence, gdk_display_store_clipboard
299
300         * gtk/gtkmodules.c : #include "gtkprivate.h" for GTK_LIBDIR
301
302 2004-10-29  Matthias Clasen  <mclasen@redhat.com>
303
304         * gtk/gtkclipboard.c (gtk_clipboard_set_text): Don't hardwire
305         the supported text targets here, use 
306         gtk_target_list_add_text_targets().  (#156404)
307
308         * gtk/gtkliststore.c (gtk_list_store_reorder): Don't
309         loop over the sentinel node.  (#156298, Torsten Schoenfeld)
310
311 2004-10-28  Matthias Clasen  <mclasen@redhat.com>
312
313         * gtk/gtkcombobox.c (gtk_combo_box_start_editing): Use
314         g_signal_connect_object() to prevent premature finalization
315         of the cell_editable while the key_press_event signal is
316         handled.  (#156325, Olivier Andrieu)
317
318         * *: Clean up many sparse warnings.  (#156698, Kjartan Maraas)
319         
320         * gtk/gtktreeview.c (gtk_tree_view_remove_widget): Disconnect
321         from the remove-widget signal after removing the signal.
322
323         * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Destroy
324         the dialog with the parent.  (#156557, Paolo Borelli)
325
326 2004-10-27  Matthias Clasen  <mclasen@redhat.com>
327
328         * Bump version
329
330         * === Released 2.5.4 ===
331
332         * Makefile.am (EXTRA_DIST): Remove po/makefile.mingw
333
334 2004-10-28  Anders Carlsson  <andersca@gnome.org>
335
336         * gtk/gtkclipboard.c: (gtk_clipboard_set_can_store):
337         * gtk/gtkclipboard.h:
338         Make targets const.
339
340 2004-10-27  Matthias Clasen  <mclasen@redhat.com>
341
342         * gtk/Makefile.am (gtkalias.h): 
343         * gdk/Makefile.am (gdkalias.h): Fix srcdir != builddir build.
344         (#156547, Thomas Fitzsimmons)
345         
346         * NEWS: Updates.
347
348         * gtk/gtkclipboard.c (gtk_clipboard_set_can_store): Silently
349         ignore non-CLIPBOARD clipboards.  (#156610, Christian Persch)
350
351         * gtk/gtksettings.c: Make it build on windows. (#156618,
352         Kazuki IWAMOTO)
353
354 2004-10-26  Matthias Clasen  <mclasen@redhat.com>
355
356         * gtk/gtkimcontextsimple.c (check_hex): Stop preediting if strtoul 
357         couldn't parse the complete preedit string.  (#156434)
358
359         * gtk/gtkmessagedialog.c: 
360         * gtk/gtkfilechooserbutton.c: Add missing includes.  (#156503, 
361         Kazuki IWAMOTO)
362
363         * gtk/gtkimage.h: 
364         * gtk/gtkimage.c (gtk_image_get_icon_name): Make the icon_name 
365         parameter G_CONST_RETURN.
366         
367         * gtk/gtkimage.c: It is enough to listen for screen changes and 
368         style-set to catch all icon theme changes.
369         (gtk_image_set_property): Reset the image size if the pixel size 
370         property is changed.
371
372         * gtk/gtk.symbols: Add new symbols.
373
374         * gdk/x11/gdkdisplay-x11.c (gdk_display_store_clipboard): Fix the 
375         doc comment.
376
377 2004-10-26  Anders Carlsson  <andersca@imendio.com>
378
379         * gtk/gtktextbuffer.c: (gtk_text_buffer_finalize),
380         (create_clipboard_contents_buffer), (clipboard_get_contents_cb),
381         (clipboard_clear_contents_cb), (cut_or_copy):
382         Rewrite clipboard handling so that the clipboard contents 
383         won't be freed when the text buffer is finalized. Also add 
384         clipboard manager support. Fixes #95496.
385
386 2004-10-25  Anders Carlsson  <andersca@gnome.org>
387
388         * gtk/gtkentry.c: (gtk_entry_completion_timeout):
389         * gtk/gtkentrycompletion.c: (gtk_entry_completion_set_model),
390         (gtk_entry_completion_get_model), (gtk_entry_completion_complete):
391         Really handle a NULL model, fixes #137211 for real.
392
393         * gtk/gtkfilechooserentry.c:
394         (gtk_file_chooser_entry_maybe_update_directory):
395         Remove _clear, #137211 is fixed.
396
397         * tests/testentrycompletion.c: (main):
398         Add completion with an empty model.
399         
400 2004-10-25  Carlos Garnacho Parro  <carlosg@gnome.org>
401
402         Fix for #118764, David Bordoley:
403         
404         * gtk/gtkmessagedialog.[ch]
405         (gtk_message_dialog_format_secondary_text),
406         (gtk_message_dialog_format_secondary_format): API additions to
407         create HIG-like dialogs
408
409         * demos/gtk-demo/dialog.c: Use the new API in the example
410
411         * docs/reference/gtk/gtk-sections.txt:
412         * docs/reference/gtk/tmpl/gtkmessagedialog.sgml: documented API
413         additions
414
415 2004-10-25  James M. Cape  <jcape@ignore-your.tv>
416
417         Rework of GtkFileChooserButton, some cleanups. Fixes #154388,
418         #154390, #154390, #156272.
419
420         * docs/reference/gtk/gtk-docs.sgml: Moved GtkFileChooserButton
421         below GtkFileChooser.
422         * docs/reference/gtk/gtk-sections.txt: Added
423         gtk_file_chooser_button_get_width_chars(),
424         gtk_file_chooser_button_set_width_chars(),
425         gtk_label_set_width_chars(), gtk_label_get_width_chars().
426         * docs/reference/gtk/gtk.types: Added
427         gtk_cell_renderer_combo_get_type,
428         gtk_cell_view_get_type,
429         gtk_text_iter_get_type.
430         * docs/reference/gtk/tmpl/gtkaboutdialog.sgml: Add
431         "logo-icon-name" property.
432         * docs/reference/gtk/tmpl/gtkcellview.sgml: Updates for properties
433         (b/c of get_type() inclusion above).
434         * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml:
435         * docs/reference/gtk/tmpl/gtklabel.sgml: Add "width-chars" property,
436         getters/setters.
437         * docs/reference/gtk/tmpl/gtkcellrenderercombo.sgml: Added.
438         * gtk/gtkentrycompletion.c:
439         (_gtk_entry_completion_popdown): Don't show if the entry isn't
440         mapped.
441         * gtk/gtkfilechooserbutton.[c,h]: (*): About 45%
442         rewritten, adds "width-chars" property, icons, working save modes,
443         volume/Home/Desktop friendly-naming support.
444         * gtk/gtklabel.[c,h]:
445         (gtk_label_class_init), (gtk_label_init),
446         (gtk_label_get_property), (gtk_label_set_property),
447         (gtk_label_get_width_chars), (gtk_label_set_width_chars),
448         (gtk_label_size_request): Add "width-chars" property.
449         * tests/testfilechooserbutton.c: Update, use 4 different buttons for
450         the different ACTIONs.
451         * gtk/.cvsignore: Ignore gtk-update-icon-cache.
452         * tests/.cvsignore: Ignore testimage.
453
454 2004-10-25  Matthias Clasen  <mclasen@redhat.com>
455
456         * gtk/gtkcellrenderercombo.c (find_text): Don't leak text. (#156325,
457         Olivier Andrieu)
458
459 2004-10-25  Anders Carlsson  <andersca@imendio.com>
460
461         * gdk/gdk.symbols: 
462         * gdk/gdkdisplay.h:
463         * gdk/x11/gdkdisplay-x11.c:
464         (gdk_display_supports_clipboard_persistence), 
465         (gdk_display_store_clipboard):
466         New API to handle the clipboard manager.
467
468         * gtk/gtk.symbols:
469         * gtk/gtkclipboard.c: (gtk_clipboard_class_init),
470         (gtk_clipboard_finalize), (selection_clear_event_cb),
471         (clipboard_unset), (gtk_clipboard_set_text),
472         (gtk_clipboard_request_targets), (gtk_clipboard_wait_for_targets),
473         (clipboard_peek), (gtk_clipboard_owner_change),
474         (gtk_clipboard_wait_is_target_available),
475         (gtk_clipboard_store_timeout), (gtk_clipboard_set_can_store),
476         (gtk_clipboard_selection_notify), (gtk_clipboard_store),
477         (_gtk_clipboard_store_all):
478         * gtk/gtkclipboard.h:
479         Add API for clipboard persistence and implement it, also add
480         gtk_clipboard_wait_is_target_available.
481         
482         * gtk/gtkmain.c: (gtk_main):
483         Call _gtk_clipboard_store_all before exiting.
484         
485 2004-10-25  Matthias Clasen  <mclasen@redhat.com>
486
487         * gtk/gtkaboutdialog.h: 
488         * gtk/gtkaboutdialog.c (gtk_about_dialog_set_logo_icon_name)
489         (gtk_about_dialog_get_logo_icon_name): Support named icons as 
490         logos.  (#156378, James Henstridge)
491
492         * gtk/gtkdialog.c (gtk_dialog_set_alternative_button_order): Fix the 
493         doc formatting.
494
495         * gtk/gtkcellview.[hc]: Make function parameter names consistent.
496
497         * tests/Makefile.am (noinst_PROGRAMS): Add testimage.
498
499         * tests/testicontheme.c (main): Use gtk_image_new_from_icon_name().
500
501 2004-10-25  Matthias Clasen  <mclasen@redhat.com>
502
503         Add a public setting for button ordering (#74669, Owen Taylor)
504         
505         * gtk/gtksettings.c (gtk_settings_class_init): Add a 
506         gtk-alternative-button-order setting.
507
508         * gtk/gtkdialog.h: 
509         * gtk/gtkdialog.c (gtk_alternative_dialog_button_order): A 
510         getter for the alternative button order setting.
511         * gtk/gtkdialog.c (gtk_dialog_set_alternative_button_order): 
512         New function to install an alternative button order for a 
513         dialog.
514
515         * gtk/gtkfilesel.c (gtk_file_selection_init): 
516         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): 
517         * gtk/gtkmessagedialog.c (gtk_message_dialog_add_buttons): 
518         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
519         * gtk/gtkfilechooserdefault.c (location_popup_handler): 
520         Set up an alternative button order.
521         
522 2004-10-25  Matthias Clasen  <mclasen@redhat.com>
523
524         * gtk/gtkimage.h: 
525         * gtk/gtkimage.c (gtk_image_new_from_icon_name)
526         (gtk_image_set_from_icon_name, gtk_image_get_icon_name)
527         (gtk_image_set_pixel_size, gtk_image_get_pixel_size):  Add a
528         new type GTK_IMAGE_ICON_NAME for named icons, update the size
529         and content of stock, icon set and named icon images upon style
530         changes, and allow to set a fixed pixel size for named icon
531         images.  (#155688, James Henstridge)
532
533         * tests/testimage.c: Test application for theming behaviour of
534         different image types and for image dnd.
535
536 2004-10-24  Matthias Clasen  <mclasen@redhat.com>
537
538         * gtk/gtkcellrenderercombo.c: Use G_DEFINE_TYPE, initialize the
539         has_entry property, ref the model and add a finalizer.  (#156325,
540         Olivier Andrieu)
541         
542 Sun Oct 24 02:56:43 2004  Jonathan Blandford  <jrb@redhat.com>
543
544         * docs/tools/widgets.c: Update GtkFileChooserButton doc shot.
545
546 2004-10-24  Matthias Clasen  <mclasen@redhat.com>
547
548         * gtk/gtkicontheme.c: Use the new g_key_file api in GLib.
549
550         * gtk/Makefile.am (gtk_c_sources): Remove gtkiconthemeparser.[hc]
551
552         * gtk/gtkiconthemeparser.[hc]: Removed.
553
554         * gtk/gtkfilechooserdefault.c (location_popup_handler): If the
555         location dialog is brought up by typing '/', insert the slash
556         in the entry.  (#155370, Warren Togami)
557
558 2004-10-23  Matthias Clasen  <mclasen@redhat.com>
559
560         * gtk/gtkfilechooserdefault.c (tree_view_keybinding_cb) 
561         (trap_activate_cb): Accept shift-/ for bringing up the location
562         popup, since German and French keyboards generate such 
563         events.  (#154163, Frederic Crozat)
564
565         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): Invalidate 
566         the window if the tree is empty, to avoid resizing artifacts
567         from the focus rectangle.  (#155881, Vincent Noel, patch by
568         Billy Biggs)    
569
570 Sat Oct 23 16:14:37 2004  Søren Sandmann  <sandmann@redhat.com>
571
572         * gtk/gtksequence.c (_gtk_sequence_node_insert_sorted): Remove
573         assertion that can get triggered by broken sort functions.
574
575 Sat Oct 23 16:07:46 2004  Søren Sandmann  <sandmann@redhat.com>
576
577         * gtk/gtksequence.c (_gtk_sequence_swap): Replace broken, overly
578         clever implementation with one that works.
579         
580         * gtk/gtkliststore.c (gtk_list_store_swap): emit "rows_reordered"
581         instead of "changed" twice.
582
583         Bug 153479
584
585 Sat Oct 23 15:17:55 2004  Søren Sandmann  <sandmann@redhat.com>
586
587         * gtk/gtkmenutoolbutton.c (button_state_changed_cb): Remove check
588         for previous state being ACTIVE. Bug 153876.
589
590 2004-10-22  Matthias Clasen  <mclasen@redhat.com>
591
592         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_drag_data_received) 
593         (gtk_file_chooser_button_init): Use the new file DND api.
594
595         * gtk/gtkdnd.h:
596         * gtk/gtkdnd.c (gtk_drag_dest_add_uri_targets) 
597         (gtk_drag_source_add_uri_targets): 
598
599         * gtk/gtkselection.h:
600         * gtk/gtkselection.c (gtk_target_list_add_uri_targets):
601         (gtk_selection_data_set_uris):  
602         (gtk_selection_data_get_uris): New functions to allow
603         handling file DND "without knowing jack shit".
604
605         * configure.in: Bump glib requirement to 2.5.4.
606
607         * gtk/gtkfilechooserdefault.c (shortcuts_drop_uris): Use
608         g_uri_list_extract_uris().
609
610 Fri Oct 22 13:25:25 2004  Owen Taylor  <otaylor@redhat.com>
611
612         * gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Fix 
613         backspacing on the empty last line of a buffer 
614         (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=136840,
615         Dan Williams)
616
617 2004-10-22  Matthias Clasen  <mclasen@redhat.com>
618
619         * gtk/gtkdnd.c: Document how to use info with text/image 
620         targets.
621
622         * gtk/gtkselection.h: 
623         * gtk/gtkselection.c (gtk_target_list_add_text_targets): 
624         (gtk_target_list_add_image_targets): Add info argument.
625         
626         * gtk/gtkcalendar.c (gtk_calendar_motion_notify): 
627         * gtk/gtkentry.c (gtk_entry_init): 
628         * gtk/gtktextview.c (gtk_text_view_init): Adjust all callers.
629
630 2004-10-22  Anders Carlsson  <andersca@gnome.org>
631
632         * gtk/gtktexttag.c: (gtk_text_tag_get_property):
633         GdkBitmap is a GObject, not a boxed type.
634         
635 Thu Oct 21 15:01:09 2004  Owen Taylor  <otaylor@redhat.com>
636
637         #155952
638
639         * gtk/gtkentry.c: Fix checking the wrong position for
640         the backspace_deletes_character PangoLogAttr.
641
642         * gtk/gtktextbuffer.[ch] gtk/gtk.symbols (gtk_text_buffer_backspace): 
643         Move backspace logic from GtkTextView to here, check 
644         backspace_deletes_char. 
645
646         * gtk/gtktextview.c: Use gtk_text_buffer_backspace().
647
648 2004-10-21  Matthias Clasen  <mclasen@redhat.com>
649
650         * gtk/gtkiconcache.c: Include io.h on windows.  (#156075,
651         Kazuki IWAMOTO)
652         (_gtk_icon_cache_new_for_path): Don't use MAP_FAILED if we don't
653         have mmap.
654
655         * gtk/gtkicontheme.c (gtk_icon_theme_has_icon): Implement for
656         cached themes.
657
658         * gtk/gtkiconcache.h: 
659         * gtk/gtkiconcache.c (_gtk_icon_cache_has_icon): New function.
660
661         * gtk/updateiconcache.c (scan_directory): Don't skip .icon 
662         files which are listed before their images.
663         (foreach_remove_func): Instead filter lonely .icon files out
664         here.
665
666         * gtk/gtkicontheme.c (theme_dir_get_icon_suffix): Filter out
667         the HAS_ICON_FILE flag.
668
669 2004-10-21  Matthias Clasen  <mclasen@redhat.com>
670
671         * gtk/gtkiconcache.c: Make it compile without mmap() and
672         add some more checks.  (#155973, Morten Welinder)
673
674         Add convenience api for image dnd (#150165):
675         
676         * gtk/gtkselection.h: 
677         * gtk/gtkselection.c (gtk_target_list_add_image_targets) 
678         (gtk_selection_data_set_pixbuf, gtk_selection_data_get_pixbuf): 
679         New functions to handle the image formats readable/writable 
680         by gdk-pixbuf. 
681         
682         * gtk/gtkdnd.h: 
683         * gtk/gtkdnd.c (gtk_drag_dest_add_image_targets) 
684         (gtk_drag_source_add_text_targets): New functions to handle
685         the image formats readable/writable by gdk-pixbuf. 
686
687 2004-10-20  Matthias Clasen  <mclasen@redhat.com>
688
689         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_new): Make
690         the code clearer.  (#155239, Murray Cumming)
691
692         * gtk/gtkicontheme.c: Small fixes.
693
694         * gtk/gtkrc.c: Include gtkmodules.h.  (#155885, Kazuki IWAMOTO)
695
696         * gtk/gtktoolbar.h: Add _gtk_toolbar_rebuild_menu(). (#155885)
697
698         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
699         Fix a wrong blurb.  (#155838, Morten Welinder)
700
701 2004-10-19  Matthias Clasen  <mclasen@redhat.com>
702
703         Implement icon theme caching.  (#154034, Martijn Vernooij,
704         caching schema proposed by Owen Taylor, initial implementation
705         by Anders Carlsson)
706         
707         * gtk/gtkdebug.h: 
708         * gtk/gtkmain.c: Add a "icontheme" debug flag.
709
710         * gtk/Makefile.am (gtk_c_sources): Add gtkiconcache.c
711         (gtk_private_h_sources): Add gtkiconcache.h
712         (bin_PROGRAMS): Add gtk-update-icon-cache
713
714         * gtk/gtkicontheme.c: Use icon caches if they are available.
715         Currently, GTK+ uses the cache to get information about the
716         available sizes, image file formats and .icon files. The
717         actual image data, and the .icon file contents are not 
718         cached yet.
719
720         * gtk/updateiconcache.c: A cmdline utility for generating
721         icon cache files.
722
723         * gtk/gtkiconcache.h: 
724         * gtk/gtkiconcache.c: The glue code to mmap an icon cache
725         file and manage the information it contains.
726
727         * tests/testicontheme.c: Add a "display" option.
728
729 2004-10-19  Matthias Clasen  <mclasen@redhat.com>
730
731         * tests/testicontheme.c: Set the locale, tidy up output.
732
733 2004-10-18  Matthias Clasen  <mclasen@redhat.com>
734
735         Fix #155658, Sebastien Bacher:
736         
737         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Add a new 
738         is_leader flag.
739
740         * gdk/x11/gdkwindow-x11.c (update_wm_hints): Set wm hints on
741         leader windows even if they are withdrawn.
742         (gdk_window_set_group): Mark the new leader window as such. We 
743         never remove the flag again, but that should a) be vanishingly
744         rare and b) not a problem, since the flag just turns off an
745         optimization.
746
747         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Mark the default
748         leader window as such.
749
750 2004-10-17  Matthias Clasen  <mclasen@redhat.com>
751
752         * gtk/gtkaboutdialog.c (gtk_about_dialog_new): Destroy secondary
753         dialogs if the main dialog is hidden. (#155084, Paolo Borelli)
754
755 2004-10-16  Matthias Clasen  <mclasen@redhat.com>
756
757         * gtk/gtkaboutdialog.c (gtk_about_dialog_destroy): Don't leak
758         the secondary dialogs.  (#155084, Paolo Borelli)
759
760         * gtk/gtkhsv.c (gtk_hsv_expose): Fix redraw issues with the
761         focus on the ring. 
762
763 2004-10-15  Matthias Clasen  <mclasen@redhat.com>
764
765         * gdk/makegdkalias.pl: Include linux-fb/gdkfb.h when building
766         the framebuffer backend.  (#155486, Olexiy Avramchenko)
767
768 2004-10-15  Matthias Clasen  <mclasen@redhat.com>
769
770         * gtk/gtksizegroup.c (do_size_request): Unset GTK_REQUEST_NEEDED
771         before emitting ::size-request, following this weeks discussion
772         on gtk-devel-list@gnome.org.
773
774         * gtk/gtkcellview.c (gtk_cell_view_get_size_of_row): Restore 
775         the size info for the current row after measuring another 
776         row.  (#154945, William Jon McCann)
777
778 2004-10-14  Matthias Clasen  <mclasen@redhat.com>
779
780         * gtk/gtkfilechooserdefault.c (shortcuts_remove_rows): Don't
781         get text unnecessarily.  (#155384, Morten Welinder)
782         (gtk_file_chooser_default_finalize): Don't forget to
783         unref the tooltips.  (#155412, Morten Welinder)
784         (shortcuts_add_current_folder): Don't leak volume. (#155400,
785         Morten Welinder)
786
787 2004-10-12  Matthias Clasen  <mclasen@redhat.com>
788
789         * gtk/gtkcontainer.c (_gtk_container_queue_resize): Acknowledge 
790         the fact that invariants are broken and loop all the way up to 
791         the resize container.
792
793 Tue Oct 12 17:11:02 2004    <timj@birnet.org>
794
795         * gtk/gtkwidget.c (gtk_widget_set_usize_internal): don't queue the
796         widget for resize or emit change notification if the usize didn't
797         change. this works around a buggy signal connection in #155139.
798
799 2004-10-11  Matthias Clasen  <matthias@localhost.localdomain>
800
801         * docs/tools/widgets.c: Create scrolledwindow, statusbar, 
802         scale and image images. 
803
804 2004-10-10  Matthias Clasen  <matthias@localhost.localdomain>
805
806         * docs/tools/widgets.c: Create a toolbar, menubar, progressbar,
807         notebook and messagedialog images.
808
809         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_all): 
810         Avoid a warning.
811
812 Sun Oct 10 11:24:56 2004  Jonathan Blandford  <jrb@redhat.com>
813
814         * gtk/gtkcontainer.h (struct _GtkContainer): add /*< private >*/
815         markings.
816
817 2004-10-09  Matthias Clasen  <mclasen@redhat.com>
818
819         * docs/tools/widgets.c: Shrink panes and separators images to MEDIUM.
820
821         * gtk/gtkcellview.c: Add docs.
822
823         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_get_menu): Fix
824         doc comment.
825
826         * gtk/gtkactiongroup.h: 
827         * gtk/gtkactiongroup.c: Reinstate the accidentally lost addition 
828         of gtk_action_group_translate_string().
829
830         * gtk/gtkaccelgroup.h: Declare gtk_accelerator_get_label.
831
832 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
833
834         * gdk/x11/gdkx.h: Declare gdk_x11_window_set_user_time here.
835
836         * gtk/gtktreeview.c (gtk_tree_view_grab_notify): Don't start a 
837         drag if we loose the grab.
838
839         * gtk/gtkfilechooserdefault.c (renderer_edited_cb): Set the cell 
840         renderer to inert mode to avoid bug #154921.  This fixes a crash
841         which would otherwise occur if the editing is stopped for the second
842         time.  (#154767, Manuel Baena García)
843
844         * gtk/gtkdebug.h: 
845         * gtk/gtkwidget.c (gtk_widget_size_allocate): Add a new debug
846         flag, geometry, to debug size allocation.
847
848         * gtk/gtktreeview.c (gtk_tree_view_button_press): Set cell data
849         unconditionally.  (#152562, Federico Mena Quintero)
850
851 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
852
853         * gtk/gtkuimanager.c (update_node): Also update smart separators 
854         if the visibility of a  menuitem with a submenu changes.  (#153791,
855         Christian Persch)
856
857 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
858
859         * gtk/gtkentry.h:
860         * gtk/gtkentry.c: 
861         * gtk/gtkentrycompletion.c: 
862         * gtk/gtkspinbutton.c: Share the three copies of get_borders()
863         under the name _gtk_entry_get_borders().  (#116368, Owen Taylor)
864
865 2004-10-07  Matthias Clasen  <mclasen@redhat.com>
866
867         * gtk/gtkfilechooserdefault.c (check_is_folder): Don't free 
868         info too early.  (#154703, Morten Welinder)
869
870         * gtk/gtkfilechooserdefault.c: Include gtkeventbox.h.
871         (#154798, Morten Welinder)
872
873 2004-10-06  Matthias Clasen  <mclasen@redhat.com>
874
875         * gtk/gtkpaned.c (gtk_paned_compute_position): Reduce rounding 
876         error.  (#154658, John Cupitt)
877
878         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected): Clear
879         the iter instead of returning it unmodified. (#154186, Jonathan Blandford)
880
881         * gtk/gtkfilechooserentry.c (gtk_file_chooser_entry_focus): Pop up
882         the completions again after tab.  (#147700, Jens Bech Madsen)
883
884         * gtk/gtktreeview.c (gtk_tree_view_search_iter): Set the cursor
885         before changing the selection to make the file chooser preview
886         update work better.  (#143826, Tommi Komulainen)
887
888 2004-10-06  Matthias Clasen  <mclasen@redhat.com>
889
890         * gtk/gtkrange.c (gtk_range_real_change_value): Replace a really
891         gross way of rounding to a specified number of digits.  (#145232,
892         Peter Zelezny, patch by Soeren Sandmann)
893
894 Wed Oct  6 00:45:04 2004    <timj@birnet.org>
895
896         * gdk/gdkwindow.c (gdk_window_is_viewable): check the iteration window
897         variable, not just the window passed in. fixes #145270.
898
899 Tue Oct  5 21:00:54 2004  Tim Janik  <timj@gtk.org>
900
901         * gtk/gtkwidget.c (gtk_widget_size_allocate): reverted my last change 
902         and applied owen's leaner conditional flag update which should be good
903         enough to preserve resizing flag invariants.
904
905 2004-10-05  Matthias Clasen  <mclasen@redhat.com>
906
907         * NEWS: Updates
908
909 Tue Oct  5 19:29:06 2004  Tim Janik  <timj@gtk.org>
910
911         * gtk/gtkentry.h: removed redundant gtk_entry_get_layout() decl.
912
913 2004-10-05  Matthias Clasen  <mclasen@redhat.com>
914
915         * gtk/gtkicontheme.c (icon_info_ensure_scale_and_pixbuf): Go back to
916         not scaling up at all. Less magic.
917
918 Tue Oct  5 17:06:26 2004  Tim Janik  <timj@gtk.org>
919
920         * gtk/gtkwidget.c (gtk_widget_size_allocate): if REQUEST_NEEDED is still
921         set on ::size-allocate, another size-request has been queued since
922         ::size-request and needs to be requeued.
923
924 2004-10-05  Paolo Borelli  <pborelli@katamail.com>
925
926         * gtk/gtkmenutoolbutton.c: rename the activate-menu signal to
927         show-menu as discussed in bug #153873.
928
929 2004-10-05  Matthias Clasen  <mclasen@redhat.com>
930
931         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Set 
932         action_name.  (#154526, John Finlay)
933
934         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new_for_display): 
935         Return a new reference to an existing GdkWindow if one already
936         exists.  (#151378, Gustavo Carneiro)
937
938 2004-10-05  Matthias Clasen  <mclasen@redhat.com>
939
940         Provide access to the string representation of accelerators used
941         in GtkAccelLabel.  (#154068, John Spray)
942
943         * gtk/gtkaccelgroup.h:
944         * gtk/gtkaccelgroup.c (gtk_accelerator_get_label): New function
945         to return the accelerator label used in GtkAccelLabel. 
946         (gtk_accelerator_name): Update docs to point to 
947         gtk_accelerator_get_label().
948         * gtk/gtkaccellabel.h:
949         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
950         New auxiliary function which creates the string representing the
951         accelerator.
952         
953 2004-10-05  Matthias Clasen  <mclasen@redhat.com>
954
955         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Resize the
956         popup if a new model is set.  (#154129, Bernd Demian)
957
958 2004-10-04  Matthias Clasen  <mclasen@redhat.com>
959
960         * gtk/gtkicontheme.c (icon_info_ensure_scale_and_pixbuf): 
961         Make the code work as intended for unthemed icons; don't scale
962         them up too much. Allow to scale them down, and do so 
963         exactly.  (#154142, Ross Burton)
964         (gtk_icon_info_load_icon): Amend docs.
965
966         * gtk/gtkcelllayout.c (gtk_cell_layout_clear): Improve 
967         docs.  (#154504, Dave Cook)
968
969         * gtk/gtkwindow.c (gtk_window_set_icon_list): 
970         (gtk_window_set_default_icon_list): Ref the new icons
971         before unreffing the old ones.  (#154468, Morten Welinder)
972         (gtk_window_realize_icon): Only set using_themed_icon if
973         we actually got an icon list from the theme.  (#154472, Morten
974         Welinder)
975
976 2004-10-03  Matthias Clasen  <mclasen@redhat.com>
977
978         * gtk/gtkiconview.c (gtk_icon_view_set_model): Reset pointers
979         pointing to the old model.  (#154350)
980
981         * gtk/gtkwindow.c (icon_list_from_theme): Don't leak the
982         sizes array.  (#154310, Christian Persch)
983
984         * gtk/gtktreeviewcolumn.c 
985         (gtk_tree_view_column_setup_sort_column_id_callback): 
986         Set sort_indicator to FALSE when appropriate.  (#153714, 
987         Reinout van Schouwen)
988
989         * gtk/gtktreeview.c (gtk_tree_view_search_position_func): 
990         Fix positioning near the monitor boundaries.  (#154341,
991         Ken Harris)
992
993 2004-10-01  Paolo Borelli  <pborelli@katamail.com>
994
995         * gtk/gtkmenutoolbutton.c: deactivate the menu before setting it
996         to something else. Bug #153887.
997
998 2004-10-01  Matthias Clasen  <mclasen@redhat.com>
999
1000         Fix bug #150790:
1001         
1002         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_size): Fix the
1003         calculation of x_offset when ellipsized and in RTL mode.
1004         (gtk_cell_renderer_text_render): Fix the calculation of the layout
1005         width when ellipsized.  
1006
1007 2004-10-01  Tor Lillqvist  <tml@iki.fi>
1008
1009         * gdk/win32/gdkglobals-win32.c: Set _gdk_input_ignore_wintab to
1010         FALSE, thus enabling tablet input by default.
1011
1012         * gdk/win32/gdkmain-win32.c (_gdk_windowing_args): Accept the
1013         --use-wintab option again (but without effect, as this is now the
1014         default, see above). (#153788)
1015
1016         * modules/input/gtkimcontextime.c: Numerous changes.
1017
1018         Remove the ifdef UNICODE conditionals. Always use the
1019         wide-character Imm* API. It is present also in Windows 98 and
1020         Me. (Not Windows 95, but I think we don't care about that.) Using
1021         the multibyte API wouldn't work anyway on systems where the system
1022         codepage doesn't support the language the user uses an IME for, so
1023         for instance I wouldn't be able to test this module on my English
1024         Windows 2000 although I do have C, J and K IMEs available.
1025
1026         Guard against IMM not being active, always check ImmGetContext()
1027         returning NULL. Work to some extent even without any IME. Fixes
1028         #153800 at least partially.
1029
1030         * modules/input/imime.c (ime_info): Rename to "ime" to match the
1031         naming pattern of other input modules. Make it default for
1032         ja:ko:zh only.
1033
1034 2004-10-01  Matthias Clasen  <mclasen@redhat.com>
1035
1036         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Add a comment regarding
1037         cell renderers to the docs.
1038
1039         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
1040         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_clear_attributes): 
1041         Silently ignore info being NULL. This is unavoidable with the 
1042         current design where we have every implementation of layout_clear
1043         call layout_clear_attributes, and also delegate calls to dependent
1044         cell layouts.  (#154191, Martyn Russell)
1045
1046 2004-10-01  Matthias Clasen  <mclasen@redhat.com>
1047
1048         * modules/input/iminuktitut.c: Fix the spelling of Inuktitut
1049         in several places.  (#154176, John Austin)
1050
1051 2004-09-30  Paolo Borelli  <pborelli@katamail.com>
1052
1053         * tests/testellipsize.c: exit on close.
1054
1055 2004-09-29  Matthias Clasen  <mclasen@redhat.com>
1056
1057         * gtk/gtkmain.c: Make --g-fatal-warnings a G_OPTION_ARG_NONE,
1058         since it doesn't take an argument.
1059
1060 2004-09-29  Christopher Blizzard  <blizzard@redhat.com>
1061
1062         * gtk/gtkmenutoolbutton.h: Remove trailing semicolon on
1063         G_END_DECLS
1064
1065 2004-09-29  Paolo Borelli  <pborelli@katamail.com>
1066
1067         * tests/testtoolbar.c: add a GtkMenuToolButton.
1068
1069 2004-09-29  Matthias Clasen  <mclasen@redhat.com>
1070
1071         * gtk/gtkiconview.c (gtk_icon_view_move_cursor_left_right) 
1072         (gtk_icon_view_move_cursor_start_end) 
1073         (gtk_icon_view_move_cursor_page_up_down) 
1074         (gtk_icon_view_move_cursor_up_down): Handle an empty icon
1075         view gracefully.  (#152486)
1076
1077         Allow keynav to selectable labels (#138085, David Hawthorne):
1078         
1079         * gtk/gtkdialog.c (gtk_dialog_map): Skip selectable labels when
1080         looking for the initial focus widget.
1081
1082         * gtk/gtklabel.c (gtk_label_focus): Remove to put selectable labels 
1083         in the regular focus chain again.
1084
1085 2004-09-28  Matthias Clasen  <mclasen@redhat.com>
1086
1087         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Don't
1088         reuse insensitive pixbufs across multiple rows.  (#153984, Milosz
1089         Derezynski)
1090
1091         * gtk/gtkmain.c (gtk_parse_args): Use gtk_get_option_group() 
1092         to obtain an option group with correctly set pre- and post-
1093         parse hooks, instead of manually calling the hooks. This fixes
1094         a problem with setting the program class in the gdk preparse
1095         hook.  (#153788, Robert Ögren)
1096
1097 2004-09-27  Matthias Clasen  <mclasen@redhat.com>
1098
1099         Fix #153082:
1100         
1101         * gtk/gtkmain.c (do_pre_parse_initialization): Don't call gdk_parse_args()
1102         here, we don't want to parse args twice.
1103         (gtk_init_with_args): Add the ugid check here as well.
1104         (gtk_parse_args): Add the gdk options to the main option group as well.
1105
1106 2004-09-27  Paolo Borelli  <pborelli@katamail.com>
1107
1108         * gtk/Makefile.am:
1109         * gtk/gtk.h:
1110         * gtk/gtkmenutoolbutton.[ch]: add the GtkMenuToolButton widget
1111         discussed in bug #151441.
1112
1113         * docs/reference/gtk/gtk-docs.sgml:
1114         * docs/reference/gtk/gtk-sections.txt:
1115         * docs/reference/gtk/gtk.types:
1116         * docs/reference/gtk/tmpl/gtkmenutoolbutton.sgml: docs for the
1117         new widget.
1118
1119 2004-09-27  Matthias Clasen  <mclasen@redhat.com>
1120
1121         * gtk/gtkfilesystemunix.c (gtk_file_folder_unix_list_children): 
1122         Emit ::finished-loading.
1123
1124 2004-09-27  Roozbeh Pournader  <roozbeh@farsiweb.info>
1125  
1126         * configure.in: Added Iranian Azerbaijani (az_IR) to ALL_LINUGAS.
1127
1128 2004-09-27  Matthias Clasen  <mclasen@redhat.com>
1129
1130         * gtk/gtktreeview.c (gtk_tree_view_append_column): Fix typo in
1131         docs.  (#153811, Billy Biggs)
1132
1133         * gtk/gtkpathbar.h (struct _GtkPathBar): Only need a bit for
1134         need_timer.
1135
1136 2004-09-26  Matthias Clasen  <mclasen@redhat.com>
1137
1138         * gtk/gtknotebook.c (gtk_notebook_class_init): Add a missing _
1139         to the name of the has_secondary_backward_stepper property.
1140         Noticed by Michèle Garoche.
1141
1142 Sun Sep 26 02:06:43 2004  Jonathan Blandford  <jrb@gnome.org>
1143
1144         * gtk/gtkpathbar.h (struct _GtkPathBar): add missing structures.
1145
1146 2004-09-26  Matthias Clasen  <mclasen@redhat.com>
1147
1148         * gtk/gtkpathbar.c (gtk_path_bar_check_parent_path): Scroll
1149         to make the current folder visible.  (#152921)
1150
1151         * gtk/gtkbutton.c: Revert the button state to !button_down,
1152         if we're missing the release event due to grab shadowing
1153         or insensitivation.
1154
1155         * gtk/gtkpathbar.c: Make the slider buttons scroll.
1156
1157         * gtk/gtkfilechooserdefault.c (shortcuts_remove_rows): Remove 
1158         debug spew.
1159         (bookmarks_check_remove_sensitivity): Don't free an uninitialized
1160         pointer.
1161
1162         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): 
1163         cursor_pos is in characters, not bytes.  (#153332, Owen Taylor)
1164
1165 2004-09-25  Robert Ögren  <gtk@roboros.com>
1166
1167         * gdk/win32/gdkinput-win32.c (gdk_input_wintab_init): Set
1168         lcSysOrgX and lcSysOrgY from device instead of hardcoding to 0,
1169         a further fix for bug #145467.
1170
1171 2004-09-25  Matthias Clasen  <mclasen@redhat.com>
1172
1173         * gtk/gtktextiter.c (inside_word_func): Don't access 
1174         attr[-1].  (#153628, Padraig O'Briain)
1175
1176 2004-09-23  Matthias Clasen  <mclasen@redhat.com>
1177
1178         * gtk/gtkfilechooserdefault.c: Add some tooltips.
1179
1180 2004-09-22  Matthias Clasen  <mclasen@redhat.com>
1181
1182         * gtk/gtkrange.c (gtk_range_map, gtk_range_unmap): 
1183         * gtk/gtkbutton.c (gtk_button_map, gtk_button_unmap): Remove
1184         unnecessary g_return_if_fail()s from virtual functions.  (#153469,
1185         (Tristan Van Berkom) 
1186
1187         * gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't leak
1188         cursors.  (#153468, Christian Persch)
1189
1190         * gtk/gtktreeview.c (gtk_tree_view_key_press): Don't leak old_text.
1191         (#153467, Christian Persch)
1192
1193         * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): Don't use
1194         bitops on booleans.
1195         (gtk_file_chooser_default_should_respond): Make it easier to 
1196         select folders in SELECT_FOLDER mode.
1197
1198 Wed Sep 22 00:54:34 2004  Matthias Clasen  <mclasen@redhat.com>
1199
1200         * demos/gtk-demo/pixbufs.c (do_pixbufs): Don't leak the frame
1201         pixbuf.
1202
1203 Tue Sep 21 16:55:38 2004  Manish Singh  <yosh@gimp.org>
1204
1205         * tests/testtreemodel.c: #include <config.h> for HAVE_MALLINFO define,
1206         other minor cleanups.
1207
1208 Tue Sep 21 16:27:19 2004  Manish Singh  <yosh@gimp.org>
1209
1210         * gdk/gdk.c: remove now unused arg variables.
1211
1212         * gdk/gdkinternals.h: declare _gdk_windowing_init ().
1213
1214         * gtk/gtkmain.c (do_pre_parse_initialization): call gdk_parse_args ()
1215         here instead of gdk_pre_parse_libgtk_only (). Should fix #153082.
1216
1217 2004-09-21  Matthias Clasen  <mclasen@redhat.com>
1218
1219         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond): 
1220         Don't assert that current_focus != NULL, just return FALSE.
1221
1222         * gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path
1223         bar arrows some more space.
1224
1225         * configure.in: Check for mallinfo.
1226
1227         * tests/testtreemodel.c: Only include malloc.h if HAVE_MALLINFO
1228         is defined.  (#153168, Darren Creutz)
1229
1230         * gtk/gtkactiongroup.c: Fix typos in signal docs.  (#153224,
1231         John Finlay)
1232
1233 Mon Sep 20 19:44:58 2004  Matthias Clasen  <mclasen@redhat.com>
1234
1235         * gtk/gtkfilechooserdefault.c (shortcuts_activate_iter): Don't
1236         return FALSE from a void function.  (#153185, Joel Fredrikson)
1237
1238 2004-09-20  Matthias Clasen  <mclasen@redhat.com>
1239
1240         * gtk/gtkbutton.c (gtk_button_class_init): Add a boolean ::displace-focus
1241         style property and apply child displacement to the focus rectangle 
1242         if it is TRUE.  (#141170, Soeren Sandmann)
1243
1244 Sun Sep 19 23:56:18 2004  Søren Sandmann  <sandmann@redhat.com>
1245
1246         * gtk/gtkmenu.c (MENU_SCROLL_TIMEOUT2): Change from 50 to 20 to
1247         make the menus scroll faster.
1248
1249 2004-09-19  Matthias Clasen  <mclasen@redhat.com>
1250
1251         * configure.in: Bump version
1252
1253         * === Released 2.5.3 ===
1254
1255 2004-09-18  Matthias Clasen  <mclasen@redhat.com>
1256
1257         Make GtkFileChooserButton activatable via mnemonics.
1258         (#152925, Dennis Cranston, patch by James M. Cape)
1259
1260         * gtk/gtkfilechooserbutton.c: Add a ::mnemonic-activate signal
1261         and a suitable default handler.
1262
1263         * tests/testfilechooserbutton.c: Add a mnemonic.
1264
1265 2004-09-18  Matthias Clasen  <mclasen@redhat.com>
1266
1267         Fix win32 build errors.  (#153032, #153028, Robert Ögren)
1268
1269         * gdk/win32/gdkmain-win32.c: Make it compile.  
1270
1271         * gtk/gtkmain.c: Include glib.h.  
1272
1273 2004-09-18  Federico Mena Quintero  <federico@ximian.com>
1274
1275         Merged from 2.4:
1276
1277         * gtk/gtkfilesystem.h: Removed the GTK_FILE_PATH() and
1278         GTK_IS_FILE_PATH() macros.  They are not supposed to exist, as
1279         GtkFilePath is not an object.  And they never worked, anyway.
1280
1281 2004-09-18  Marco Pesenti Gritti  <marco@gnome.org>
1282
1283         * gtk/gtkentry.c: (gtk_entry_completion_key_press):
1284
1285         Make numeric pad enter activate the selected completion
1286         entry. Fix bug 143486 reported by Edd Dumbill.
1287
1288 2004-09-17  Matthias Clasen  <mclasen@redhat.com>
1289
1290         * NEWS: Updates
1291
1292         * gtk/gtkfilechooserdefault.c (select_func): Scroll to the selected
1293         row.  (#143868, Christian Persch)
1294
1295 2004-09-17  Matthias Clasen  <mclasen@redhat.com>
1296
1297         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): Remove
1298         leftover debug code.
1299
1300         Improve the behaviour of the file chooser in save mode. Fixes bugs
1301         #151031, #151608, #151994 reported by Owen Taylor and Alexander 
1302         Larsson.
1303         
1304         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_set_property): 
1305         (location_entry_create): Propagate the action to the file 
1306         chooser entries.
1307         (gtk_file_chooser_default_should_respond): Switch folders if 
1308         the user enters a directory name in the entry and clear the entry
1309         after switching folders.
1310         (gtk_file_chooser_default_should_respond, shortcuts_row_activated_cb): 
1311         Move focus to the file list when activating a shortcut.
1312         (gtk_file_chooser_default_should_respond): Handle the case where the
1313         user clicks on "Save" after selecting a folder in the file list.
1314
1315         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_set_property): 
1316         Propagate the action to the file chooser entries.
1317         
1318         * gtk/gtkfilechooserentry.h: 
1319         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_set_action): 
1320         (_gtk_file_chooser_entry_get_action): New functions to propagate
1321         the GtkFileChooserAction of the file chooser to the file chooser 
1322         entry.
1323         (check_completion_callback): If we are in save mode, only do 
1324         inline completion for directories. 
1325
1326 Fri Sep 17 11:20:03 2004  Jonathan Blandford  <jrb@gnome.org>
1327
1328         * gtk/gtklabel.c (gtk_label_set_markup): Add an example to the
1329         docs.
1330
1331 Thu Sep 16 23:20:05 2004  Matthias Clasen  <maclas@gmx.de>
1332
1333         * gtk/gtkselection.c (selection_get_text_plain): 
1334         * gdk/x11/gdkselection-x11.c (make_list): Warn if a UTF8_STRING
1335         or text/plain;charset=utf-8 roperty contains invalid 
1336         UTF-8.  (#152845, Owen Taylor)
1337
1338 2004-09-16  Matthias Clasen  <mclasen@redhat.com>
1339
1340         Fix #152760, Christian Persch:
1341         
1342         * gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't free
1343         private data.
1344         (gtk_about_dialog_set_translator_credits): Recommend the msg
1345         id translator-credits.
1346         (display_credits_dialog): Show translator credits if they're
1347         translated, not if they're untranslated.
1348
1349 Thu Sep 16 02:07:56 2004  Jonathan Blandford  <jrb@gnome.org>
1350
1351         * docs/tools/widgets.c (create_icon_view): load images at normal
1352         size.
1353
1354         * docs/reference/gtk/images/*png: Update shots.
1355
1356 Thu Sep 16 00:33:11 2004  Jonathan Blandford  <jrb@gnome.org>
1357
1358         * docs/tools/widgets.c (new_widget_info): Add constrained sizing
1359         to the widgets.  This gives us all images running the same size,
1360         which will make the table layout look better.
1361
1362 2004-09-15  Tor Lillqvist  <tml@iki.fi>
1363
1364         * gdk/win32/gdkwindow-win32.c (gdk_window_get_frame_extents):
1365         Remove bogus code that tried to do what the X11 backend does in
1366         its version of this function. There are no "frame windows" (for
1367         toplevel window decoration) on Windows. The desktop ("root")
1368         window is not the parent of a toplevel window. (#152481)
1369
1370 2004-09-15  Matthias Clasen  <mclasen@redhat.com>
1371
1372         * NEWS: Update.
1373
1374 Wed Sep 15 00:57:37 2004  Matthias Clasen  <maclas@gmx.de>
1375
1376         * docs/tools/widgets.c: Add accel label, file button
1377         and icon view.
1378
1379 Tue Sep 14 22:01:49 2004  Matthias Clasen  <maclas@gmx.de>
1380
1381         * configure.in: New option --disable-visibility to disable
1382         the use of ELF visibility attributes for PLT reduction.
1383
1384         * gtk/makegtkalias.pl: 
1385         * gdk/makegdkalias.pl: Respect the DISABLE_VISIBILITY
1386         define.
1387
1388 Tue Sep 14 23:20:56 2004  Søren Sandmann  <sandmann@redhat.com>
1389
1390         * gtk/gtkaction.c (connect_proxy): Call
1391         gtk_tool_item_rebuild_menu().
1392
1393         * gtk/gtktoolitem.c (gtk_tool_item_class_init): Update
1394         documentation for GtkToolItem::create_menu_proxy.
1395
1396         * gtk/gtktoolitem.c (gtk_tool_item_rebuild_menu): New
1397         API to make the toolbar update itself when the proxy menu item
1398         for a tool item changes.
1399
1400         * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents): Call
1401         gtk_tool_item_rebuild_menu here()
1402
1403         * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents):
1404         Remove redundant check for need_label.
1405
1406 2004-09-14  Matthias Clasen  <mclasen@redhat.com>
1407
1408         * gtk/gtkmain.c (do_post_parse_initialization): Remove an unused 
1409         variable, spotted by Morten Welinder.
1410
1411         * gtk/queryimmodules.c (escape_string): Copy code from queryloaders.c
1412         which turns backslashes in slashes on win32.  (#152608, Kazuki IWAMOTO)
1413
1414         * gtk/gtktreeview.c (gtk_tree_view_focus_to_cursor): Set the cursor
1415         to the first selected row instead of always to the first row if there
1416         is no cursor.  (#143270, Jean Bréfort)
1417
1418         * tests/testfilechooser.c (main): Fix a few typos.
1419
1420 2004-09-13  Matthias Clasen  <mclasen@redhat.com>
1421
1422         * gtk/gtkexpander.c: 
1423         * gtk/gtktreeview.c: Change the default expander size to 12 to compensate 
1424         for the recent change to gtk_default_draw_expander().
1425
1426         * gtk/gtkstyle.c (gtk_default_draw_expander): Use a linewidth of one
1427         for expander sizes up to 16
1428
1429         * gtk/gtkentrycompletion.c (gtk_entry_completion_get_model): Resize the
1430         popup if the model is replaced.  (#152333)
1431
1432 Mon Sep 13 09:11:53 2004  Manish Singh  <yosh@gimp.org>
1433
1434         * gtk/gtkrange.c: fix gtk_range_real_change_value args. Addresses part
1435         of #152518.
1436
1437 2004-09-13  Matthias Clasen  <mclasen@redhat.com>
1438
1439         Fix some problems reported by Morten Welinder:
1440         
1441         * gtk/gtkfilesystem.c: Include gtkmodules.h, not gtkmain.h, since
1442         the modules stuff moved.
1443
1444         * gtk/gtkmain.c (gtk_arg_no_debug_cb): Add a missing return
1445
1446         * gtk/gtksettings.c: Add missing include. 
1447         (settings_update_modules): Remove an unused variable.
1448
1449 2004-09-13  Matthias Clasen  <mclasen@redhat.com>
1450
1451         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
1452         Improve positioning of entry completion popup.
1453
1454 2004-09-09  Matthias Clasen  <mclasen@redhat.com>
1455
1456         * gtk/makegtkalias.pl: 
1457         * gdk/makegdkalias.pl: Use the short prefix "IA__" for 
1458         aliases instead of the long suffix "__internal_alias". 
1459
1460         * tests/testfilechooser.c (main): Update sensitivity of the "Select all"
1461         button.
1462
1463 Wed Sep  8 18:38:08 2004  Soeren Sandmann  <sandmann@redhat.com>
1464
1465         Make dropping of expandable items look nicer.
1466         
1467         * gtk/gtktoolbar.c (gtk_toolbar_set_drop_highlight_item): Make
1468         placeholder expand if highlight item is expanding.
1469
1470         * gtk/gtktoolbar.c (toolbar_content_set_expand): New function.
1471
1472         * gtk/gtktoolbar.c (toolbar_content_get_expand): Return TRUE only
1473         if the item is not disappering.
1474
1475 2004-09-07  Matthias Clasen  <mclasen@redhat.com>
1476
1477         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Use the proper node type
1478         for placeholders in toolbars.  (#151963, Olivier Andrieu)
1479
1480         * gtk/gtkstyle.c (gtk_default_draw_expander): Draw expanders a bit 
1481         better.
1482
1483 Sun Sep  5 17:14:16 2004  Matthias Clasen  <maclas@gmx.de>
1484
1485         * gtk/gtkmain.c: 
1486         * gdk/gdk.c: 
1487         * gdk/x11/gdkmain-x11.c: 
1488         * gdk/win32/gdkmain-win32.c: Add descriptions for the 
1489         commandline arguments. The actual descriptions are mostly 
1490         taken from libbonoboui, so translators should be able to 
1491         copy existing translations from there.
1492
1493 2004-09-05  Anders Carlsson  <andersca@gnome.org>
1494
1495         * gdk/gdk.symbols:
1496         * gtk/gtk.symbols:
1497         Add new functions
1498
1499 2004-09-05  Anders Carlsson  <andersca@gnome.org>
1500
1501         * gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
1502         (gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
1503         (gdk_parse_args):
1504         * gdk/gdk.h:
1505         * gdk/gdkinternals.h:
1506         * gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
1507         * gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
1508         * gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
1509         * gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
1510         * gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
1511         (gtk_arg_module_cb), (gtk_arg_warnings_cb),
1512         (do_pre_parse_initialization), (do_post_parse_initialization),
1513         (pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
1514         (gtk_init_with_args), (gtk_parse_args):
1515         * gtk/gtkmain.h:
1516         Make gtk argument parsing use goption. Add gtk_get_option_group and
1517         gtk_init_with_args. 
1518         
1519         * tests/testtreemodel.c: (main):
1520         Use gtk_init_with_args.
1521         
1522 Sun Sep  5 01:04:01 2004  Matthias Clasen  <maclas@gmx.de>
1523
1524         Allow sorting of tree models to be turned off 
1525         again.  (#151139, Torsten Schoenfeld)
1526         
1527         * gtk/gtktreesortable.h: 
1528         Add GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID.
1529
1530         * gtk/gtktreestore.c (gtk_tree_store_sort): 
1531         * gtk/gtkliststore.c (gtk_list_store_sort): Don't sort if
1532         the list store is not sorted.
1533
1534 Sat Sep  4 23:37:56 2004  Matthias Clasen  <maclas@gmx.de>
1535
1536         * configure.in: Fix the Solaris Xinerama checks.  (#151754)
1537
1538 Sat Sep  4 22:45:49 2004  Matthias Clasen  <maclas@gmx.de>
1539
1540         * gtk/gtkentry.c (gtk_entry_backspace): Don't refuse to delete
1541         text in passwords.  (#151723, Owen Taylor)
1542
1543 Sat Sep  4 16:51:00 2004  Søren Sandmann  <sandmann@redhat.com>
1544
1545         * gdk/x11/gdkevents-x11.c (gdk_event_prepare): Revert accidental
1546         change from Aug 02 that removed a flush of the X connection from
1547         gdk_event_prepare() causing applications to get stuck. (#151732,
1548         Richard Hoelscher).
1549
1550 Fri Sep  3 22:45:03 2004  Matthias Clasen  <maclas@gmx.de>
1551
1552         * gtk/gtkuimanager.c (print_node): Don't print out attributes
1553         for the <ui> root node.  (#151752, Lorenzo Gil Sánchez)
1554
1555 Sat Sep  4 02:38:57 2004  Søren Sandmann  <sandmann@redhat.com>
1556
1557         * gtk/gtktoolbar.c (position): Accelerate the animation when it
1558         has been running for a while. (#143647).
1559
1560 2004-09-03  Tor Lillqvist  <tml@iki.fi>
1561
1562         * gtk-zip.sh.in: List the three theme gtkrc files separately, zip
1563         doesn't do anything if one of the files on its command line
1564         doesn't exist.
1565
1566         Handle changes of screen resolution on Win32. (#151581, reported by
1567         Arjohn Kampman)
1568         
1569         * gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_init,
1570         _gdk_root_window_size_init): Factor out setting the root window's
1571         size (as the size of the union of all monitors) to a new function.
1572
1573         * gdk/win32/gdkdisplay-win32.c (gdk_display_open,
1574         _gdk_monitor_init): Factor out the monitor query to a new
1575         function.
1576
1577         * gdk/win32/gdkprivate-win32.h: Declare above new functions.
1578
1579         * gdk/win32/gdkevents-win32.c (gdk_event_translate,
1580         handle_display_change): Handle WM_DISPLAYCHANGE by calling the
1581         above two functions, and emitting the "size_changed" signal on our
1582         (only) GdkScreen.
1583
1584 2004-09-01  Matthias Clasen  <mclasen@redhat.com>
1585
1586         * gtk/gtkcombobox.c (gtk_combo_box_get_popup_accessible): 
1587         Document the return value.
1588
1589 2004-09-01  Matthias Clasen  <mclasen@redhat.com>
1590
1591         Make it possible to specify additional modules to load
1592         via a setting.  (#117236, Alex Graveley)
1593         
1594         * gtk/gtkmodules.h: 
1595         * gtk/gtkmodules.c: New files which contain the module
1596         handling code which was previously in gtkmain.[hc]. 
1597         Additionally, the code now looks for the gtk-modules 
1598         setting, which can specify additional modules to load.
1599
1600         * gtk/gtkmain.c: 
1601         * gtk/gtkmain.h: Remove all the module handling code.
1602
1603         * gtk/gtkdebug.h: Add a debug flag for modules.
1604
1605         * gtk/gtk.h: Include gtkmodules.h
1606
1607         * gtk/Makefile.am (gtk_public_h_sources): Add gtkmodules.h
1608         (gtk_c_sources): Add gtkmodules.c
1609
1610         * gtk/gtksettings.c: Add the gtk-modules setting.
1611
1612         * gdk/x11/gdkevents-x11.c: Add the Gtk/Modules XSetting.
1613
1614 Wed Sep  1 19:11:44 2004  Søren Sandmann  <sandmann@redhat.com>
1615
1616         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Make sure
1617         children of the toolbar are given positive dimensions. (149540,
1618         Felipe Heidrich).
1619
1620 2004-09-01  Matthias Clasen  <mclasen@redhat.com>
1621
1622         * gtk/gtkfilesystemunix.c: 
1623         * gtk/gtkfilechooserbutton.c: Protect the unistd.h include
1624         by HAVE_UNISTD_H.
1625
1626 Wed Sep  1 02:38:48 2004  Matthias Clasen  <maclas@gmx.de>
1627
1628         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): Make
1629         accel labels ellipsize correctly.  (#151559, Christian Persch)
1630
1631 Wed Sep  1 00:55:56 2004  Matthias Clasen  <maclas@gmx.de>
1632
1633         * gtk/gtkimage.c (gtk_image_clear): Don't leak the iter
1634         of a running animation.  (#151542)
1635
1636 Tue Aug 31 23:40:29 2004  Matthias Clasen  <maclas@gmx.de>
1637
1638         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Make
1639         "ms-windows" the default theme on Win32.  
1640
1641 Tue Aug 31 23:24:49 2004  Matthias Clasen  <maclas@gmx.de>
1642
1643         * gtk/gtkcalendar.c (gtk_calendar_main_button): Only start  
1644         a drag if the left button is pressed.  (#151490, Frederic Croszat)
1645
1646 Tue Aug 31 23:20:58 2004  Matthias Clasen  <maclas@gmx.de>
1647
1648         * gdk/x11/gdkdnd-x11.c (gdk_drop_finish): Remove debug spew.
1649
1650 Tue Aug 31 17:07:41 2004  Jonathan Blandford  <jrb@redhat.com>
1651
1652         * gtk/gtktreeviewcolumn.c
1653         (gtk_tree_view_column_cell_process_action): constrain cell area to
1654         passed in cell_area, #147867
1655
1656         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_size): if
1657         ellipsizing, get_size is only 3 chars wide.
1658
1659         * docs/tree-column-sizing.png: Add Matthias's excellent image.
1660
1661 2004-08-28  Robert Ögren  <gtk@roboros.com>
1662
1663         On Win32, do not produce tablet motion or button events while a
1664         window is being moved or resized. (#151090, reported by Shaneyfelt)
1665
1666         * gdk/win32/gdkprivate-win32.h
1667         * gdk/win32/gdkglobals-win32.c
1668         * gdk/win32/gdkevents-win32.c: Rename the variable resizing to
1669         _sizemove_in_progress and make it extern.
1670
1671         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Ignore
1672         motion and button events if _sizemove_in_progress is true.
1673
1674 2004-08-30  Tor Lillqvist  <tml@iki.fi>
1675
1676         Make the ms-windows theme engine build with mingw.
1677
1678         * configure.in: Expand also modules/engines/ms-windows/Theme/
1679         Makefile and .../Theme/gtk-2.0/Makefile.
1680
1681         * modules/engines/ms-windows/Makefile.am: Adapt for building
1682         inside the GTK sources.
1683
1684         * modules/engines/ms-windows/*.c: Use "foo.h" style includes for
1685         GTK and GDK headers. Use correct path for gdkwin32.h header.
1686
1687         * modules/engines/ms-windows/msw_style.c: Don't use deprecated GDK
1688         API.
1689
1690         * modules/engines/ms-windows/xp_theme_defs.h
1691         * modules/engines/ms-windows/xp_theme.c: Move definitions of TMT_*
1692         to xp_theme.c, as they are neither in mingw's nor Platform
1693         SDK's tmschema.h.
1694
1695         * modules/engines/ms-windows/xp_theme.c: Define _WIN32_WINNT as
1696         0x0501 to get the necesssary stuff from mingw's uxtheme.h.
1697
1698 2004-08-30  Matthias Clasen  <mclasen@redhat.com>
1699
1700         Integrate the ms-windows theme engine (better known as Wimp)
1701         into the autotools build. Wimp (http://gtk-wimp.sourceforge.net/) 
1702         was written by Raymond Penners and Dom Lachowicz. The Wimp 0.6.2
1703         sources have been added to the GTK+ source tree in 
1704         modules/engines/ms-windows, and there is a ChangeLog detailing 
1705         the history of Wimp. (#109615, Havoc Pennington)
1706         
1707         * configure.in: Generate modules/engines/Makefile and 
1708         modules/engines/ms-windows/Makefile.
1709
1710         * modules/Makefile.am (SUBDIRS): Add engines.
1711
1712         * modules/engines/Makefile.am: Compile ms-windows for win32.
1713
1714 2004-08-30  Matthias Clasen  <mclasen@redhat.com>
1715
1716         * gtk/gtktextview.c (gtk_text_view_delete_surrounding_handler):
1717         Make it compile.
1718
1719 2004-08-27  Matthias Clasen  <mclasen@redhat.com>
1720
1721         Fix #151112, Olexiy Avramchenko:
1722         
1723         * gtk/gtktreeview.c (gtk_tree_view_search_entry_flush_timeout): 
1724         * gtk/gtkiconview.c (scroll_timeout, layout_callback) 
1725         (gtk_icon_view_item_accessible_idle_do_action): 
1726         * gtk/gtkcombobox.c (list_popup_resize_idle, popdown_idle) 
1727         (popup_idle): Protect idle callbacks and timeouts with 
1728         GDK_THREADS_ENTER/_LEAVE.
1729
1730         * gtk/gtkfilechooserbutton.c (update_dialog_idle): New function to
1731         call update_dialog() from an idle with the necessary protection.
1732
1733 Mon Aug 30 01:34:42 2004  Matthias Clasen  <maclas@gmx.de>
1734
1735         Changes to make sure input methods respect the editability
1736         of entries and text views. #114173, Noah Levitt.
1737         
1738         * gtk/gtkentry.c (popup_targets_received): Make the Input 
1739         Methods menuitem insensitive if we're not editable.
1740
1741         * gtk/gtkentry.c (gtk_entry_delete_surrounding_cb): 
1742         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): 
1743         * gtk/gtkentry.c (gtk_entry_commit_cb): Don't change anything 
1744         if we're not editable.
1745
1746         * gtk/gtkentry.c (gtk_entry_focus_out): 
1747         * gtk/gtkentry.c (gtk_entry_focus_in): Only send focus_in and
1748         focus_out to the im context if we're editable.
1749
1750         * gtk/gtkentry.c (gtk_entry_set_property): Reset the im context
1751         if the entry just became non-editable.
1752
1753         * gtk/gtktextview.c (gtk_text_view_delete_surrounding_handler): 
1754         Use gtk_text_buffer_delete_interactive() to not delete
1755         non-editable portions of text.
1756
1757 2004-08-30  Tor Lillqvist  <tml@iki.fi>
1758
1759         * modules/input/Makefile.am (im_ime_la_LIBADD): Link with -limm32.
1760
1761         * modules/input/gtkimcontextime.c: Use quotes in #includes, to
1762         find headers when building inside GTK+ sources.
1763
1764 2004-08-27  Tor Lillqvist  <tml@iki.fi>
1765
1766         * gdk/win32/gdkdnd-win32.c (GdkDragContextPrivateWin32): Add
1767         drop_failed, like in the X11 backend. Nothing sets it, though.
1768         (gdk_drag_drop_succeeded): Copy from X11 backend.
1769
1770 Thu Aug 26 23:58:11 2004  Matthias Clasen  <maclas@gmx.de>
1771
1772         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Don't crash
1773         if model is not set. Noted by Mariano Suarez-Alvarez.
1774
1775 Thu Aug 26 22:44:12 2004  Matthias Clasen  <maclas@gmx.de>
1776
1777         Provide information about how an adjustment change in a range 
1778         widget happened. Add a "change-value" signal which reports how 
1779         a user is interacting with the range, whether they are clicking 
1780         on a stepper or the trough, or dragging the slider.  (#133263,
1781         Thomas Fitzsimmons)
1782
1783         * gtk/gtkmarshalers.list: Add signal type BOOLEAN:ENUM,DOUBLE.
1784         * gtk/gtkrange.c (gtk_range_class_init): Add "change-value"
1785         signal.
1786         (gtk_range_internal_set_value): Rename to
1787         gtk_range_real_change_value.  Add GtkScrollType parameter.  Emit
1788         the change-value signal when the range's value changes.
1789         (update_slider_position, gtk_range_scroll_event, step_back,
1790         step_forward, page_back, page_forward, scroll_begin,
1791         scroll_end): Change gtk_range_internal_set_value to
1792         gtk_range_real_change_value.
1793         * gtk/gtkrange.h (struct _GtkRangeClass): Declare change_value
1794         function.
1795
1796 2004-08-26  Matthias Clasen  <mclasen@redhat.com>
1797
1798         * modules/input/Makefile.am: Build imime.la on Windows.
1799
1800         * modules/input/gtkimcontextime.h: 
1801         * modules/input/gtkimcontextime.c: 
1802         * modules/input/imime.c: 
1803         * modules/input/imm-extra.h: Add the IME input method for Win32
1804         written by Takuro Ashie and Kazuki IWAMOTO. The code was previously
1805         hosted at http://sourceforge.jp/projects/imime.  (#135195)
1806
1807 2004-08-26  Bill Haneman <billh@gnome.org>
1808
1809         * gtk/gtktreeview:
1810         (gtk_tree_view_move_cursor_up_down):
1811         If a multi-selection list contains only one item,
1812         select it on cursor_up or cursor_down.
1813         Fixes bug #131226.
1814         [patch from Padraig O'Briain]
1815
1816 2004-08-26  Matthias Clasen  <mclasen@redhat.com>
1817
1818         Make gdk_window_process_[all]_updates() respect 
1819         update_freeze_counter  (#144272, Soeren Sandmann)
1820         
1821         * gdk/gdkwindow.c (gdk_window_schedule_update): New function to
1822         install an idle for gdk_window_update_idle() if one isn't there
1823         already.
1824         (gdk_window_process_all_updates): 
1825         (gdk_window_process_updates): Only process the updates if the
1826         window isn't frozen.
1827         (gdk_window_invalidate_maybe_recurse): Schedule an update when
1828         necessary.
1829         (gdk_window_thaw_updates): Use gdk_window_schedule_update() instead
1830         of directly installing the idle.
1831
1832 2004-08-22  Robert Ögren  <gtk@roboros.com>
1833
1834         On Win32, make graphical tablets work on multi-monitor systems.
1835         (#145467, reported by buttknock1@ya...)
1836
1837         * gdk/win32/gdkinput-win32.c (gdk_input_translate_coordinates):
1838         Use dimensions of _gdk_parent_root as screen size.
1839         (gdk_input_get_root_relative_geometry): Get coordinates relative
1840         to GDK root window instead of Win32 coordinates.
1841         (_gdk_input_other_event): Updated accordingly.
1842
1843 Wed Aug 25 17:24:17 2004  Manish Singh  <yosh@gimp.org>
1844
1845         * gdk/x11/gdkfont-x11.c: remove unused gdk_font_charset_for_locale()
1846         function.
1847
1848         * gdk/x11/gdkinput-x11.c (_gdk_input_common_init): remove unused
1849         variables num_extensions and extensions.
1850
1851         * gtk/gtkhsv.c: remove unused gtk_hsv_get_focus_gc() function.
1852
1853 Wed Aug 25 17:14:58 2004  Manish Singh  <yosh@gimp.org>
1854
1855         * gtk/gtktreeview.c (gtk_tree_view_search_activate): initialize
1856         path so we don't potentially use an undefined pointer.
1857
1858         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): add G_CALLBACK
1859         cast for tree_view_keybinding_cb.
1860
1861         * gtk/gtkfilechooserdefault.c (location_entry_create): cast to
1862         GTK_FILE_CHOOSER_ENTRY for _gtk_file_chooser_entry_set_file_part()
1863         calls.
1864
1865         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_start_editing):
1866         cast to GTK_COMBO_BOX for gtk_combo_box_set_active_iter() call.
1867
1868         * gtk/gtkselection.c (selection_get_text_plain): make len a gsize,
1869         since that's what g_convert_with_fallback() expects.
1870
1871 Wed Aug 25 16:14:34 2004  Jonathan Blandford  <jrb@redhat.com>
1872
1873         * gtk/gtktreeview.c (gtk_tree_view_search_activate): activate the
1874         typeahead entry on enter.
1875
1876 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
1877
1878         * gtk/gtkmenu.c (gtk_menu_attach_to_widget): Steal ATTACHED_MENUS
1879         list so its tail isn't freed when we re-set it, noticed
1880         by Hans Petter Jansson.
1881
1882         * gtk/gtksizegroup.c (gtk_size_group_add_widget): Fix
1883         a typo, noticed by Tim Janik.
1884
1885 Wed Aug 25 15:15:56 2004  Jonathan Blandford  <jrb@redhat.com>
1886
1887         * gtk/gtkpathbar.c (gtk_path_bar_size_allocate): Change the Down
1888         button to be end-justified, so that clicking on it is a stable
1889         operation.
1890
1891 Tue Aug 24 02:06:37 2004  Jonathan Blandford  <jrb@gnome.org>
1892
1893         * gtk/gtktreeview.c
1894         (gtk_tree_view_real_expand_collapse_cursor_row): Don't handle the
1895         event if we have no children.
1896
1897         * gtk/gtkfilechooserdefault.c (trap_activate_cb):
1898         (tree_view_keybinding_cb):Since GtkTreeView has a keybinding
1899          attached to '/', we need to catch keypresses before the TreeView
1900          gets them.
1901         (gtk_file_chooser_default_class_init): add '/' to be a keybinding
1902         to the C-l dialog.
1903         (location_entry_create): Clear the text to "" when loading a file.
1904         This has a much better feel than putting the currently selected
1905         in.
1906         * #include <errno.h>
1907
1908 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
1909
1910         * gtk/gtkfilechooserdefault.c (check_is_folder): Use get_file_info() rather 
1911         than trying get_folder() and checking for an error directly because older 
1912         versions of the gnome-vfs backend don't return an error 
1913         immediately.  (#150852, Zack Cerza )
1914
1915 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
1916
1917         * configure.in: Post-release version bump.
1918
1919         * === Released 2.5.2 ===
1920
1921         * gdk/abicheck.sh:
1922         * gtk/abicheck.sh: Make work during make distcheck.
1923         
1924         * docs/RELEASE-HOWTO: Add hint about doing make check 
1925         before make distcheck.
1926         
1927         * gtk/gtk.symbols: Add some missing symbols.
1928
1929         * gtk/gtkiconview.c: Add some missing statics.
1930
1931 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
1932
1933         * NEWS: Updates for 2.5.2
1934
1935 Wed Aug 25 00:22:48 2004  Søren Sandmann  <sandmann@redhat.com>
1936
1937         * gtk/gtksequence.c: Remove debug spew
1938
1939 Wed Aug 25 00:09:07 2004  Søren Sandmann  <sandmann@redhat.com>
1940
1941         * gtk/gtkliststore.c (gtk_list_store_move_after): Fix logical
1942         errors in gtk_list_store_move_before/after(). (#150983, patch by
1943         Robert Ögren).
1944
1945 Tue Aug 24 21:46:42 2004  Søren Sandmann  <sandmann@redhat.com>
1946
1947         * gtk/gtksequence.c (_gtk_sequence_move): Just return if the
1948         parameters are identical. (#150159, Robert Ögren)
1949
1950 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
1951
1952         * gtk/gtkaction.c (connect_proxy, disconnect_proxy): Handle 
1953         action_group being NULL.  (#150869,  Tommi Komulainen)
1954
1955 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
1956
1957         * gdk/gdkimage.c (allocate_scratch_images): Use the correct 
1958         index variable.  (#150941, Tommi Komulainen)
1959
1960 2004-08-24  Matthias Clasen  <mclasen@redhat.com>
1961
1962         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Take header
1963         height and adjustment into account.  (#136496, Pawek Salek)
1964
1965 Mon Aug 23 17:19:19 2004  Jonathan Blandford  <jrb@redhat.com>
1966
1967         * configure.in:
1968         * docs/tools/Makefile.am (clean-local): add the doc shooter to the
1969         docs dir as an uninstalled helper tool.
1970
1971 2004-08-23  Matthias Clasen  <mclasen@redhat.com>
1972
1973         * gdk/x11/gdkwindow-x11.c (show_window_internal): Make it compile.
1974
1975         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Add a 
1976         user_time field.
1977
1978         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): Update
1979         toplevel->user_time.
1980         (show_window_internal): Update the user time when re-mapping a
1981         toplevel window.  (#150502, Elijah Newren)
1982
1983 2004-08-23  Matthias Clasen  <mclasen@redhat.com>
1984
1985         Fix #150822, reported by Christian Persch
1986         
1987         * gtk/gtklabel.c (gtk_label_ensure_layout): Set the layout width
1988         appropriately when ellipsized.
1989         (gtk_label_size_allocate): Only set the layout width if there
1990         is a layout.
1991
1992 2004-08-23  Matthias Clasen  <mclasen@redhat.com>
1993
1994         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): Support the latest
1995         EWMH additions to the _NET_ACTIVE_WINDOW client message 
1996         format.  (#150668, Elijah Newren)
1997
1998 Mon Aug 23 01:17:59 2004  Matthias Clasen  <maclas@gmx.de>
1999
2000         * gdk/gdkrgb.c (gdk_rgb_xpixel_from_rgb_internal): Set unused
2001         bits in pixel to 1s in case they are used as alpha; copying
2002         code from gdk_colormap_alloc_colors().  (#150466, Rich Wareham)
2003
2004 2004-08-22  Philip Langdale  <plangdale@vmware.com>
2005
2006         * gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals
2007         (gtk_action_sync_property and gtk_action_sync_sensitive) were
2008         not being correctly disconnected, leading to actions continuing
2009         to affect disconnected proxies. (#150607)
2010
2011 2004-08-22  Tor Lillqvist  <tml@iki.fi>
2012
2013         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal,
2014         gdk_window_new, gdk_window_set_skip_taskbar_hint): Don't show TEMP
2015         windows in the Task Manager. Implement by calling
2016         gdk_window_set_skip_taskbar_hint(TRUE) on them. (#145481, Tim
2017         Evans)
2018
2019         * gdk/win32/gdkdisplay-win32.c (enum_monitor, gdk_display_open):
2020         Report whole of (primary) monitor, including any taskbars.
2021         Excluding the taskbar area from the "root window" reported to GDK
2022         doesn't seem to be that useful although gdk/win32 had been doing it
2023         for a very long time. (#149013, see also #145467 and #148526)
2024
2025 Sun Aug 22 16:55:15 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2026
2027         * gtk/gtkexpander.c
2028         * gtk/gtkalignment.c: 
2029         * gtk/gtktexttag.c
2030         Make enums match property names. Found by a script by Tommi
2031         Komulainen.
2032
2033         * gtk/gtkpaned.c (gtk_paned_class_init): fix min/max mixup.
2034
2035 Sun Aug 22 16:09:49 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2036
2037         * gtk/gtkliststore.h (struct _GtkListStore): 
2038         * gtk/gtkliststore.c (gtk_list_store_init): 
2039         * gtk/gtkliststore.c (gtk_list_store_insert): 
2040         * gtk/gtkliststore.c (gtk_list_store_remove): 
2041         Restore length field; PyGTK and maybe others use it directly.
2042
2043 Sun Aug 22 15:46:56 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2044
2045         * gtk/gtkpaned.c (gtk_paned_class_init):
2046         s/CYCLE_HANDLE_FOCUS/CYCLE_CHILD_FOCUS/
2047
2048         * gtk/gtkfontbutton.c (gtk_font_button_class_init):
2049         s/PROP_SHOW_SIZE/PROP_SHOW_STYLE/
2050
2051         Both pointed out by Tommi Komulainen.
2052
2053 Sun Aug 22 13:44:53 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2054
2055         * gtk/gtkpaned.c (gtk_paned_class_init): Use PROP_MAX_POSITION,
2056         not PROP_MIN_POSITION for the max_position property. Fix pointed
2057         out by Tommi Komulainen.
2058
2059 Sun Aug 22 13:32:33 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2060
2061         * gtk/gtkliststore.c (gtk_list_store_insert): Normalize the
2062         position so we don't create paths with off-list
2063         indices. (#150320).
2064
2065 Sun Aug 22 12:04:59 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2066
2067         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Use the
2068         correct tree path (#150289, Morten Welinder).
2069
2070 Sun Aug 22 00:08:44 2004  Matthias Clasen  <maclas@gmx.de>
2071
2072         Fix #150406, reported by Fernando San Martín Woerner, patch
2073         by Gustavo Carneiro.
2074         
2075         * gtk/gtkentrycompletion.c 
2076         (gtk_entry_completion_default_completion_func): Check that 
2077         column is of type G_TYPE_STRING before proceeding.
2078
2079 Sat Aug 21 23:52:13 2004  Matthias Clasen  <maclas@gmx.de>
2080
2081         * gtk/gtktreestore.c (gtk_tree_store_swap): Don't use an 
2082         uninitialized tree iter.  (#150414, Torsten Schoenfeld)
2083
2084 Sat Aug 21 23:29:54 2004  Matthias Clasen  <maclas@gmx.de>
2085
2086         Fix #150738, Tomislav Jonjic.
2087         
2088         * gtk/gtktoolitem.h (GTK_IS_TOOL_ITEM_CLASS): 
2089         * gtk/gtktoolbutton.h (GTK_IS_TOOL_BUTTON_CLASS): 
2090         * gtk/gtktoggleaction.h (GTK_IS_TOGGLE_ACTION_CLASS): 
2091         * gtk/gtkseparatortoolitem.h (GTK_IS_SEPARATOR_TOOL_ITEM_CLASS): 
2092         * gtk/gtkradiotoolbutton.h (GTK_IS_RADIO_TOOL_BUTTON_CLASS): 
2093         * gtk/gtkradioaction.h (GTK_IS_RADIO_ACTION_CLASS): 
2094         * gtk/gtkuimanager.h (GTK_IS_UI_MANAGER_CLASS): 
2095         * gtk/gtkaction.h (GTK_IS_ACTION_CLASS): Fix macro definitions.
2096
2097 Wed Aug 18 17:25:26 2004  Manish Singh  <yosh@gimp.org>
2098
2099         * demos/testpixbuf-save.c
2100         * demos/gtk-demo/hypertext.c: Get rid of some unnecessary casts.
2101
2102         * demos/gtk-demo/appwindow.c: Make activate_email and activate_url
2103         match the arguments for GtkAboutDialogActivateLinkFunc.
2104
2105 Wed Aug 18 16:18:00 2004  Manish Singh  <yosh@gimp.org>
2106
2107         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): Initialize height
2108         from fixed_height before we do anything, so it always has a valid
2109         value.
2110
2111         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): Fix call
2112         to gtk_tree_model_get (missing "," in param list).
2113
2114 2004-08-18  Federico Mena Quintero  <federico@ximian.com>
2115
2116         Merged from 2.4:
2117
2118         Fixes #149251:
2119
2120         * gtk/gtkfilechooserdefault.c: Renamed SHORTCUTS_COL_PATH to
2121         SHORTCUTS_COL_DATA.  Add SHORTCUTS_COL_IS_VOLUME, to determine
2122         easily whether the SHORTCUTS_COL_DATA points to a GtkFilePath or a
2123         GtkFileSystemVolume.
2124         (shortcuts_model_create): Create a boolean column for
2125         SHORTCUTS_COL_IS_VOLUME.
2126         (shortcuts_reload_icons): Simplify with the use of the
2127         SHORTCUTS_COL_IS_VOLUME column.  Don't leak the pixbuf.
2128         (shortcuts_insert_path): Add the SHORTCUTS_COL_IS_VOLUME data.
2129         (shortcuts_free_row_data): New helper function; frees the data
2130         columns for an iter.
2131         (shortcuts_remove_rows): Don't take a callback for freeing the
2132         data; free everything here instead.  Use
2133         shortcuts_free_row_data().
2134         (volume_remove_cb): Removed.
2135         (remove_bookmark_cb): Removed.
2136         (remove_row_cb): Make this a single generic function to delete
2137         rows.
2138         (shortcuts_add_volumes): Use remove_row_cb().
2139         (shortcuts_add_bookmarks): Likewise.
2140         (struct _GtkFileChooserDefault): Removed the
2141         shortcuts_current_folder_is_volume field.
2142         (shortcuts_add_current_folder): Oops, don't free the volume.
2143         (remove_current_folder_cb): Removed.
2144         (shortcut_find_position): Simplify through the use of the
2145         SHORTCUTS_COL_IS_VOLUME column.
2146         (remove_selected_bookmarks): Assert that we don't get a volume.
2147         (shortcuts_reorder): Likewise; also, plug a leak.
2148         (gtk_file_chooser_default_remove_shortcut_folder): Simplify
2149         through the use of shortcuts_remove_rows().
2150         (gtk_file_chooser_default_list_shortcut_folders): Assert that we
2151         don't get a volume.
2152         (shortcuts_activate_iter): Simplify.
2153         (home_folder_handler): Simplify by using
2154         shortcuts_activate_iter().
2155         (shortcuts_free): New function; frees all the data columns.
2156         (gtk_file_chooser_default_finalize): Unref the
2157         shortcuts_filter_model and the shortcuts model data first.
2158
2159 Wed Aug 18 08:31:17 2004  Manish Singh  <yosh@gimp.org>
2160
2161         * gtk/gtkiconview.c: Applied patch from Olivier Andrieu to fix
2162         bug #150440.
2163
2164         * gtk/gtkicontheme.c (gtk_icon_theme_init): xdg_data_dirs should
2165         match constness attributes of g_get_system_data_dirs ().
2166
2167 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
2168
2169         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look up icon themes in the 
2170         directories specified in the icon theme spec: $HOME/.icons, 
2171         $XDG_DATA_DIRS/icons, /usr/share/pixmaps. Note that GTK+ used to also look 
2172         in $GTK_DATA_DIR/icons, $GTK_DATA_DIR/pixmaps and /usr/share/icons.  (#148694)
2173         
2174
2175         * gtk/gtkframe.c (gtk_frame_paint): Take widget->state into account when
2176         painting the shadows.  (#150351, Tim Janik)
2177
2178 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
2179
2180         * gtk/abicheck.sh: No need for INCLUDE_INTERNAL_SYMBOLS anymore.
2181
2182         * gdk/gdk.symbols: Don't use #if defined().
2183
2184         * gdk/Makefile.am (gdkalias.h): 
2185         * gtk/Makefile.am (gtkalias.h): Don't use cpp to filter gtk.symbols.
2186
2187         * gdk/makegdkalias.pl: 
2188         * gtk/makegtkalias.pl: Move the #ifdef processing into the perl script, and
2189         keep the #ifdefs which differentiate between platforms.
2190
2191         * gtk/Makefile.am (gtk_private_h_sources): Remove gtkinternals.h, it is no 
2192         longer needed.
2193
2194 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
2195
2196         * tests/testfilechooserbutton.c: Use g_message() throughout, add RTL envar for
2197         rtl testing.
2198
2199         * gtk/gtkfilechooserbutton.c: Get rid of HAVE_CONFIG_H.
2200         (gtk_file_chooser_button_init): Use gtk_drag_dest_add_text_targets().
2201         (gtk_file_chooser_button_drag_data_received): Use gtk_selection_data_get_text().
2202         (gtk_file_chooser_button_set_dialog): _gtk_file_chooser_entry_set_base_folder()
2203         seems to expect a path, not an uri.
2204         (update_dialog): Handle g_filename_from_uri() returning NULL, don't free
2205         info if it is NULL. 
2206
2207         * gtk/gtkfilechooserbutton.h: Minor stylistic changes.
2208
2209 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
2210
2211         * gtk/gtkfilechooserbutton.[hc]: New widget to go along with 
2212         GtkFontButton and GtkColorButton for use in preference dialogs.
2213         Replaces GnomeFileEntry.  (#148108, James M. Cape)
2214
2215         * gtk/gtk.h: Include gtkfilechooserbutton.h
2216
2217         * gtk/Makefile.am (gtk_public_h_sources): Add gtkfilechooserbutton.h
2218         (gtk_c_sources): Add gtkfilechooserbutton.c
2219
2220         * gtk/gtk.symbols: Add the GtkFileChooserButton symbols.
2221
2222         * gtk/gtkfilechooserutils.[hc]: Make the delegate quark available. 
2223
2224         * gtk/gtkfilechooserentry.[hc] (_gtk_file_chooser_entry_new): Allow
2225         to suppress tab-eating using the new eat_tabs argument. Adjust all
2226         callers.
2227
2228         * tests/testfilechooserbutton.c: Test for GtkFileChooserButton.
2229
2230         * tests/Makefile.am (noinst_PROGRAMS): Add testfilechooserbutton
2231
2232 2004-08-16  Matthias Clasen  <mclasen@redhat.com>
2233
2234         * gtk/gtkwidget.c (gtk_widget_render_icon): Doc update.
2235
2236         * gtk/gtkiconfactory.c (render_icon_name_pixbuf): When the size is -1,
2237         use the available size closest to 48.  (#150147)
2238
2239         * gtk/gtkicontheme.c (gtk_icon_theme_get_icon_sizes): Actually return
2240         a pointer to the beginning of the sizes array, not the end.
2241
2242 2004-08-16  Morten Welinder  <terra@gnome.org>
2243
2244         * tests/testtreemodel.c (test_run): Comment out mallinfo stuff.
2245         Fix g_print %-strings.
2246
2247         * gtk/gtksequence.c (_gtk_sequence_set): Fix C99ism.
2248
2249 2004-08-16  Christian Rose  <menthos@menthos.com>
2250
2251         * configure.in: Added "bs" to ALL_LINGUAS.
2252
2253 Mon Aug 16 01:35:25 2004  Matthias Clasen  <maclas@gmx.de>
2254
2255         
2256         * gtk/gtkcombobox.[hc]: Add a ::focus-on-click property and
2257         change the default behaviour to focus on click.
2258
2259         * gtk/gtkbutton.c (gtk_button_set_focus_on_click): Typo fix.
2260
2261 Mon Aug 16 01:03:08 2004  Matthias Clasen  <maclas@gmx.de>
2262
2263         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset): 
2264         (gtk_text_iter_set_visible_line_index): Count from the 
2265         beginning of the line, not from the current position.  (#150101,
2266         Torsten Schoenfeld)
2267
2268 2004-08-15  Tor Lillqvist  <tml@iki.fi>
2269
2270         * gtk-zip.sh.in: Fix typo. The gtk.immodules file had never been
2271         included in my zipfiles...!
2272
2273         * gtk/gtkfilesystemwin32.c (extract_icon): Improve handling of
2274         icon alpha channel (on Windows XP) and mask (older Windows
2275         versions). (#148641, Tim Evans)
2276
2277 Sun Aug 15 02:31:55 2004  Matthias Clasen  <maclas@gmx.de>
2278
2279         * gtk/gtkfilesystemunix.c (get_icon_type_from_stat): Make 
2280         the use of S_ISFIFO and S_ISSOCK conditional.  (#150146,
2281         Gustavo Carneiro)
2282
2283 2004-08-14  Tor Lillqvist  <tml@iki.fi>
2284
2285         * gtk/gtkfilechooserdefault.c (shortcuts_append_home,
2286         shortcuts_append_desktop, set_local_only)
2287         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_render_icon)
2288         * gtk/gtkpathbar.c (find_button_type, _gtk_path_bar_set_file_system): 
2289         Guard against g_get_home_dir() returning NULL. (#150007)
2290
2291 Sat Aug 14 17:56:33 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2292
2293         * gtk/gtkentry.c (gtk_entry_get_pixel_ranges): New function. 
2294
2295         * gtk/gtkentry.c (in_selection): New function using
2296         gtk_entry_get_pixel_ranges() to determine whether a click is in
2297         the selection. Improve entry behavior wrt. dragging and
2298         selecting. Bug #143249.
2299
2300 Sat Aug 14 17:53:46 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2301
2302         * configure.in: Require glib 2.5.2
2303         
2304         * gtk/gtksequence.[ch]: New internal data structure.
2305
2306         * gtk/gtkliststore.[hc]: Reimplement in terms of new data
2307         structure
2308         
2309         * tests/Makefile.am (testtreemodel_SOURCES):
2310         * tests/testtreemodel.c: New test program written by Matthias.
2311
2312 2004-08-13  Matthias Clasen  <mclasen@redhat.com>
2313
2314         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set): 
2315         Don't install the settings_notify_cb from here, since it
2316         may be called before the first screen_changed signal, 
2317         confusing the logic in gtk_file_chooser_screen_changed().
2318         (#148803, Abel Daniel)
2319
2320         * gtk/gtkcombobox.c: Make re-sensitivation work
2321         in menu mode.
2322
2323         * gtk/gtkaction.c (gtk_action_new): Fix the docs.
2324
2325 Fri Aug 13 01:06:56 2004  Matthias Clasen  <maclas@gmx.de>
2326
2327         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): 
2328         Make fixed height mode handle insertions.  (#135955, 
2329         Michael Vogt, testcase by Tim-Philipp Müller, fix by
2330         Pawel Salek)
2331
2332 Fri Aug 13 00:40:18 2004  Matthias Clasen  <maclas@gmx.de>
2333
2334         * gtk/gtkhandlebox.c: Add missing include.
2335
2336 Thu Aug 12 23:52:12 2004  Matthias Clasen  <maclas@gmx.de>
2337
2338         Fix #149547, Markus Lausser:
2339         
2340         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate): 
2341         * gtk/gtkcombobox.c (gtk_combo_box_size_request): Don't 
2342         crash if size_request or size_allocate are called early.
2343
2344         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate): Protect
2345         against being allocated too small.
2346
2347 Thu Aug 12 21:02:57 2004  Matthias Clasen  <maclas@gmx.de>
2348
2349         * demos/gtk-demo/appwindow.c (about_cb): Adjust to GtkAboutDialog 
2350         API changes.
2351
2352         * gtk/gtkaboutdialog.h: 
2353         * gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook): 
2354         (gtk_about_dialog_set_url_hook): Add callback data and destroy notify 
2355         for language bindings.  (#149999, Olivier Andrieu)
2356
2357 2004-08-12  Matthias Clasen  <mclasen@redhat.com>
2358
2359         * gtk/gtkfilesystem.c: Underscore-prefix gtk_file_system_module_get_type().
2360         * gtk/gtkfilechooserdefault.c: Underscore-prefix shortcuts_model_filter_get_type().
2361
2362         * gtk/gtkimmodule.c: Make gtk_im_module_get_type() static.
2363         * gtk/gtk.symbols:
2364         * gtk/gtkinternals.h: Remove the no longer exported get_type functions.
2365
2366 Thu Aug 12 01:35:46 2004  Matthias Clasen  <maclas@gmx.de>
2367
2368         * gtk/gtkiconview.c: Make the icon view accessible by
2369         implementing the necessary ATK interfaces.  (#149728,
2370         Padraig O'Briain)
2371
2372 Thu Aug 12 00:02:29 2004  Matthias Clasen  <maclas@gmx.de
2373
2374         * gtk/gtkaction.c (gtk_action_new): Link to information about
2375         allowed action names.  (#149620, David Malcolm)
2376
2377 Wed Aug 11 23:14:25 2004  Matthias Clasen  <maclas@gmx.de>
2378
2379         * gtk/gtk.symbols: 
2380         * gtk/gtkaction.h:
2381         * gtk/gtkaction.c (gtk_action_set_sensitive): 
2382         (gtk_action_set_visible): Add setters for the ::sensitive
2383         and ::visible properties of GtkAction.  (#149622, David Malcolm)
2384
2385 2004-08-11  Federico Mena Quintero  <federico@ximian.com>
2386
2387         Fix #149422, #143457:
2388
2389         * gtk/gtkfilechooserdefault.c
2390         (gtk_file_chooser_default_should_respond): Rewrite to take the
2391         current focus into account, the contents of the save entry, and
2392         the last focus for the shortcuts list.
2393         (switch_to_selected_folder): We don't need an assertion on the
2394         action here.
2395
2396 Wed Aug 11 20:56:00 2004  Matthias Clasen  <maclas@gmx.de>
2397
2398         * gtk/gtkinternals.h: 
2399         * gtk/gtk.symbols: Add shortcuts_model_filter_get_type.
2400
2401         * gtk/abicheck.sh: Check all symbols.
2402
2403 Wed Aug 11 19:20:34 2004  Matthias Clasen  <maclas@gmx.de>
2404
2405         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
2406         Don't start a drag if the treeview is only a 
2407         drag destination.  (#149836, Pawel Salek)
2408
2409 2004-08-11  Matthias Clasen  <mclasen@redhat.com>
2410
2411         * gtk/gtktreedatalist.[hc]: 
2412         * gtk/gtkliststore.c:
2413         * gtk/gtktreestore.c: Underscore-prefix 
2414         gtk_tree_data_list_compare_func. 
2415
2416         * gtk/gtk.symbols: Remove gtk_tree_data_list_compare_func.
2417
2418         * gtk/makegtkalias.pl: No need to include gtktreedatalist.h 
2419         any more.
2420
2421 2004-08-10  Matthias Clasen  <mclasen@redhat.com>
2422
2423         * gdk/Makefile.am: 
2424         * gtk/Makefile.am: Define TESTS, not TEST, so that make check
2425         actually triggers abicheck.sh.
2426
2427         * gdk/makegdkalias.pl: 
2428         * gtk/makegtkalias.pl: Include glib.h before using glib symbols. D'oh.
2429
2430         * gdk/makegdkalias.pl: 
2431         * gtk/makegtkalias.pl: Protect gtkalias.h by G_HAVE_GNUC_VISIBILITY.
2432         
2433         * gtk/Makefile.am: Include gtkalias.h in the generated
2434         sources gtkmarhalers.c and gtkmarshal.c.
2435
2436         * gtk/makegtkalias.pl: Cosmetic fix.
2437
2438         * gdk/Makefile.am: Remove the . which was accidentally added
2439         to SUBDIRS. Include gdkalias.h in the generated sources 
2440         gdkenumtypes.c and gdkmarshalers.c.
2441
2442         * gdk/makegdkalias.pl: Cosmetic fix.
2443
2444         * gdk/Makefile.am: Add gdkalias.h to BUILT_SOURCES.
2445
2446 2004-08-09  Hans Breuer  <hans@breuer.org>
2447
2448         * gtk/makefile.msc.in : autogenerate gtk.def, cleanup
2449
2450         * gdk/win32/gdkwindow-win32.c gdk/win32/gdkevents-win32.c : 
2451         removed long time unused ifdef/ed code (WITHOUT_WM_CREATE), 
2452         removed duplicated call to gdk_window_set_cursor()
2453
2454 Mon Aug  9 15:41:17 2004  Matthias Clasen  <maclas@gmx.de>
2455
2456         Add hidden aliases for exported symbols which are
2457         used internally in order to get rid of many PLT 
2458         entries.  (#145519, Arjan van de Ven)
2459         
2460         * gdk/Makefile.am: Add rules to generate gdk.def and 
2461         gdkalias.h from gdk.symbols, and make make check check 
2462         the abi with abicheck.sh.
2463
2464         * gdk/gdk.symbols: New file. Definition of the GDK ABI.
2465         The file can be processed by cpp to filter out certain 
2466         subsets of symbols.
2467
2468         * gdk/abicheck.sh: New file. Script to check the actually 
2469         symbols exported from libgdk-x11.2.0.so against the symbols
2470         found in gdk.symbols.
2471
2472         * gdk/makegdkalias.pl: New file. Perl script to generate the 
2473         header containing the alias definitions for internally used 
2474         exported symbols from a list of symbols.
2475
2476         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h
2477         
2478 2004-08-09  Morten Welinder  <terra@gnome.org>
2479
2480         * gdk/x11/gdkdnd-x11.c (gdk_drag_drop_succeeded): Fix C99ism.
2481
2482 Mon Aug  9 15:27:01 2004  Matthias Clasen  <maclas@gmx.de>
2483
2484         * gtk/makegtkalias.pl: Also revert 
2485         GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API to its old status.
2486
2487 Mon Aug  9 15:19:34 2004  Matthias Clasen  <maclas@gmx.de>
2488
2489         * gdk/gdk.h: 
2490         * gdk/gdkrgb.h: Add the exported functions 
2491         gdk_rgb_colormap_ditherable(), gdk_pointer_grab_info_libgtk_only(),
2492         gdk_keyboard_grab_info_libgtk_only() to the appropriate
2493         headers.
2494
2495 Mon Aug  9 14:24:46 2004  Matthias Clasen  <maclas@gmx.de>
2496
2497         * gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse): 
2498         Make static.
2499
2500 Mon Aug  9 12:48:04 2004  Matthias Clasen  <maclas@gmx.de>
2501
2502         Add hidden aliases for exported symbols which are
2503         used internally in order to get rid of many PLT 
2504         entries.  (#145519, Arjan van de Ven)
2505         
2506         * gtk/Makefile.am: Add rules to generate gtk.def and 
2507         gtkalias.h from gtk.symbols, and make make check check 
2508         the abi with abicheck.sh.
2509         (gtk_private_h_sources): Add gtkinternals.h
2510         (gtk_built_private_headers): Add gtkalias.h
2511         (gtk_extra_sources): Add gtk.symbols
2512         (EXTRA_DIST): Add makegtkalias.pl and abicheck.sh
2513
2514         * gtk/gtk.symbols: New file. Definition of the GTK+ ABI.
2515         The file can be processed by cpp to filter out certain 
2516         subsets of symbols.
2517
2518         * gtk/abicheck.sh: New file. Script to check the actually 
2519         symbols exported from libgtk-x11.2.0.so against the symbols
2520         found in gtk.symbols.
2521
2522         * gtk/makegtkalias.pl: New file. Perl script to generate the 
2523         header containing the alias definitions for internally used 
2524         exported symbols from a list of symbols.
2525
2526         * gtk/gtkinternals.h: New file. An uninstalled header listing
2527         symbols which must be exported for some reason and do not appear
2528         in any other header.
2529
2530         * gtk/*.c: Include gtkalias.h
2531         
2532 Mon Aug  9 11:49:46 2004  Matthias Clasen  <maclas@gmx.de>
2533
2534         * gtk/gtkmain.c: Only undef gtk_init_check and gtk_init on win32.
2535
2536 Mon Aug  9 10:50:05 2004  Matthias Clasen  <maclas@gmx.de>
2537
2538         * gtk/gtkentry.h: Add gtk_entry_layout_index_to_text_index() 
2539         and its inverse. The have always been exported and are meant
2540         to be public.
2541         
2542 Mon Aug  9 00:28:34 2004  Matthias Clasen  <maclas@gmx.de>
2543
2544         * gtk/gtkicontheme.c (load_svg_at_size): Don't leak the 
2545         file contents.
2546
2547 Mon Aug  9 00:13:03 2004  Matthias Clasen  <maclas@gmx.de>
2548
2549         * gtk/gtkaboutdialog.c (icon_set_new_from_pixbufs): Don't
2550         leak the icon source.
2551
2552 Sun Aug  8 23:46:20 2004  Matthias Clasen  <maclas@gmx.de>
2553
2554         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): Don't
2555         leak a reference to the pixbufs.
2556
2557 Sun Aug  8 23:36:55 2004  Matthias Clasen  <maclas@gmx.de>
2558
2559         * gtk/gtkcombobox.c (gtk_combo_box_menu_setup): Ref
2560         and sink the column.
2561         (gtk_combo_box_menu_destroy): Unref the column.
2562
2563 Sun Aug  8 23:35:00 2004  Matthias Clasen  <maclas@gmx.de>
2564
2565         * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): 
2566         (gtk_drag_dest_add_text_targets): Don't leak a reference 
2567         to the target list.
2568
2569 Sun Aug  8 22:52:26 2004  Matthias Clasen  <maclas@gmx.de>
2570
2571         * gtk/gtkcombobox.c (find_menu_by_path): Don't stumble over
2572         separators which are not backed by model rows.
2573
2574 Sun Aug  8 11:01:23 2004  Matthias Clasen  <maclas@gmx.de>
2575
2576         * gtk/gtkcombobox.c (gtk_combo_box_set_active): Don't leak
2577         the path.
2578
2579 2004-08-08  Hans Breuer  <hans@breuer.org>
2580
2581         * gtk/gtkdnd.c (gtk_drag_dest_set) : take targets into
2582         account again to allow dnd of other things than text
2583
2584         * gdk/win32/gdkselection-win32.c : offer windows bitmap to
2585         be pasted from clipboard (makes The GIMP 2.1's 
2586         "File/Acquire/Paste as New" work, only using gtk+ API) 
2587
2588 Sun Aug  8 01:32:36 2004  Matthias Clasen  <maclas@gmx.de>
2589
2590         * gtk/gtk.def: Add gtk_cell_renderer_progress_get_type.
2591
2592 Sun Aug  8 01:29:08 2004  Matthias Clasen  <maclas@gmx.de>
2593
2594         * gtk/gtk.def: Replace duplicate gtk_tree_view_get_hover_expand
2595         by gtk_tree_view_set_hover_expand.
2596
2597 Sun Aug  8 01:23:08 2004  Matthias Clasen  <maclas@gmx.de>
2598
2599         * gtk/gtk.def: Remove the static function gtk_menu_get_private.
2600
2601 2004-08-07  Tor Lillqvist  <tml@iki.fi>
2602
2603         * gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
2604         mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
2605         map it to what's printed on the keypad decimal key for the current
2606         input locale (keyboard layout). (#149404)
2607
2608 Sat Aug  7 18:19:03 2004  Matthias Clasen  <maclas@gmx.de>
2609
2610         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
2611         (shortcuts_list_create): Use GtkTreeViewRowSeparatorFunc 
2612         instead of GtkCellRendererSepText.  (#147864)
2613
2614         * gtk/gtkcellrendererseptext.[hc]: Removed.
2615
2616         * gtk/Makefile.am: Remove gtkcellrendererseptext.[hc]
2617         
2618 Sat Aug  7 18:15:15 2004  Matthias Clasen  <maclas@gmx.de>
2619
2620         * gtk/gtkcombobox.c (gtk_combo_box_menu_row_deleted): 
2621         (gtk_combo_box_menu_row_inserted): 
2622         (gtk_combo_box_menu_row_changed): Correctly handle
2623         insertion and deletion of separators in menu mode.
2624
2625 2004-08-07  Tor Lillqvist  <tml@iki.fi>
2626
2627         * gdk/win32/gdkevents-win32.c (handle_configure_event,
2628         gdk_event_translate:WM_WINDOWPOSCHANGED): Add _gdk_offset_{x,y} to
2629         top-level window coordinates, not just in generated
2630         events. (#148526, Robert Ögren)
2631
2632 Sat Aug  7 01:26:08 2004  Matthias Clasen  <maclas@gmx.de>
2633
2634         Make the column drag code a bit more robust (still scary, 
2635         though).  (#106992, Christian Biere)
2636         
2637         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): Assert
2638         that cur_reorder is NULL here.
2639
2640         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column): 
2641         Reset cur_reorder to NULL, and only hide drag_highlight_window 
2642         if it exists.  
2643
2644 2004-08-06  Federico Mena Quintero  <federico@ximian.com>
2645
2646         Fix #144232:
2647
2648         * gtk/gtkfilechooserdefault.c (save_widgets_create): Use a
2649         GtkFileChooserEntry for the file name, rather than a GtkEntry.
2650         (update_chooser_entry): Set the contents of the file chooser entry
2651         rather than the plain entry's.
2652         (gtk_file_chooser_default_set_current_folder): Set the new folder
2653         on the save entry.
2654         (gtk_file_chooser_default_set_current_name): Set the name on the
2655         file chooser entry.
2656         (check_save_entry): Use the file chooser entry rather than the
2657         plain entry.
2658
2659         * gtk/gtkfilechooserentry.c
2660         (_gtk_file_chooser_entry_set_base_folder): Call
2661         gtk_file_chooser_entry_changed() so that we recompute the current
2662         folder based on the new base folder.
2663
2664 2004-08-06  Hans Breuer  <hans@breuer.org>
2665
2666         * gdk/win32/gdkwindow-win32.c : make it compile and more
2667         similar to the X11 implementation [backward compatibility
2668         for GDK_WINDOW_TEMP, GDK_INPUT_ONLY (fixes bug #148702), 
2669         use the *screen* function variants, dont reparent already 
2670         destroyed]
2671         (get_visible_region) : take the win32 part into account
2672         (_gdk_windowing_window_destroy) : remove from handle table
2673
2674         * gdk/win32/gdkdisplay-win32.c : added 
2675         gdk_display_(request|supports)_selection_notification ()
2676         with a currently mostly pointless implementation ;-)
2677
2678         * gtk/gtkfilesystemwin32.c (*_to_path) : same changes as on *NIX,
2679         plugs memory leak
2680         (gtk_file_system_win32_render_icon) : use new GTK_STOCK_DIRECTORY
2681
2682         * gtk/makefile.msc.in demos/gtk-demo/makefile.msc.in 
2683           gtk/stock-icons/makefile.msc tests/makefile.msc : updated
2684
2685         * gdk/gdk.def gtk/gtk.def : updated externals
2686
2687         * tests/testiconview.c : remove unneeded dirent.h inclusion
2688
2689 2004-08-06  Matthias Clasen  <mclasen@redhat.com>
2690
2691         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): Fix
2692         an off-by-one error.  (#141809, Markku Vire)
2693
2694         * gtk/gtkdnd.c (gtk_drag_dest_set, gtk_drag_source_set): Really
2695         fix the initialization of the target list.
2696
2697         Support XDND v5. (#10220, Owen Taylor)
2698         
2699         * gdk/x11/gdkdnd-x11.c: Record the XDND version and whether the
2700         drop was successful in the GdkDragContextPrivateX11 struct.
2701         (xdnd_finished_filter): Store the success status of the drop
2702         for an XDND version 5 interaction. For other versions, always
2703         assume the drop was successful.
2704         (xdnd_check_dest): Return the protocol version.
2705         (_gdk_drag_get_protocol_for_display): Return the protocol version.
2706         (gdk_drag_find_window_for_screen): Store the used protocol version
2707         in the GdkDragContext.
2708         (xdnd_send_enter): Send the used protocol version from the context,
2709         instead of hardwiring 3.
2710         (xdnd_enter_filter): Accept protocol versions >= 3 and store the
2711         used protocol version in the context.
2712
2713         * gdk/gdkdnd.h: 
2714         * gdk/x11/gdkdnd-x11.c (gdk_drag_drop_succeeded): New function
2715         to find out whether a drop was successful.
2716
2717 2004-07-28  Robert Ögren  <gtk@roboros.com>
2718
2719         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Set x_root
2720         and y_root in button and motion events from the tablet. (#148715)
2721
2722 Thu Aug  5 19:58:08 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2723
2724         * gtk/gtkplug.c (gtk_plug_realize): Call
2725         gdk_window_enable_synchronized_configure()
2726
2727         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Make
2728         noop if gdk_window_enable_synchronized_configure() has not been
2729         called.
2730
2731 2004-08-04  Matthias Clasen  <mclasen@redhat.com>
2732
2733         * gtk/gtkfilechooser.[hc]: Add setter and getter for the 
2734         ::show-hidden property.  (#145610, Jeff Franks)
2735
2736         * tests/testiconview.c: Add buttons to select and unselect all
2737         nodes, make the popup menu actually work.
2738
2739         * gtk/gtkiconview.c: Make GTK_SELECTION_BROWSE work as intended,
2740         let button 3 presses through to the app, to make popup menus
2741         work.
2742
2743         * tests/Makefile.am: Add testiconview.
2744         * tests/testiconview.c: A test for GtkIconView
2745         * tests/gnome-textfile.png: ...which uses this image.
2746
2747 Wed Aug  4 01:37:57 2004  Matthias Clasen  <maclas@gmx.de>
2748
2749         * gtk/gtktreeview.c: 
2750         * gtk/gtktreestore.c: 
2751         * gtk/gtktreemodelfilter.c: 
2752         * gtk/gtknotebook.c: s/childs/children/g.
2753
2754 Wed Aug  4 01:04:48 2004  Matthias Clasen  <maclas@gmx.de>
2755
2756         Fix #133446, noticed by Christian Persch:
2757         
2758         * gtk/gtkaction.c (gtk_action_class_init): Add a new boolean 
2759         property ::visible-overflown. 
2760         * gtk/gtkaction.c (gtk_action_create_menu_proxy): Don't create 
2761         a menu proxy if visible_overflown is FALSE.  
2762
2763 Tue Aug  3 20:16:26 2004  Matthias Clasen  <maclas@gmx.de>
2764
2765         * gtk/gtkactiongroup.[hc]: Make the the GtkAction{Toggle,Radio,}Entry*
2766         arguments to the gtk_action_group_add_..._actions() functions const, 
2767         since the most common use case is to use a static array.  (142334, 
2768         Mariano Suarez-Alvarez)
2769
2770 Tue Aug  3 20:03:33 2004  Matthias Clasen  <maclas@gmx.de>
2771
2772         * gtk/gtkuimanager.c (get_node): Make gtk_ui_manager_add_ui()
2773         accept paths with a leading "/ui".  (#149077, David Malcolm)
2774
2775 Tue Aug  3 19:59:29 2004  Matthias Clasen  <maclas@gmx.de>
2776
2777         * gtk/gtkiconview.c: Fix some warnings.
2778
2779 Tue Aug  3 18:38:40 2004  Matthias Clasen  <maclas@gmx.de>
2780
2781         * gtk/gtktreemodelfilter.c: Correct the return type
2782         of gtk_tree_model_filter_get_flags().  (#149195, Morten Welinder)
2783
2784 Tue Aug  3 18:16:55 2004  Matthias Clasen  <maclas@gmx.de>
2785
2786         Fix #149191, reported by Morten Welinder:
2787         
2788         * gtk/gtkmain.c: Include gtkclipboard.h,
2789         * gtk/gtkwidget.h: Declare _gtk_widget_grab_notify, not
2790         _gtk_widget_emit_grab_notify.  
2791
2792 Tue Aug  3 14:50:14 2004  Matthias Clasen  <maclas@gmx.de>
2793
2794         * gtk/gtkicontheme.c (add_size): Add missing parens.
2795         (#149190, Morten Welinder)
2796
2797 Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>
2798
2799         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove 
2800         accidentally committed debug code.
2801
2802 Tue Aug  3 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>
2803
2804         * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize 
2805         for the case that row_column and col_column are unset.  
2806         (#148868, Lorenzo Gil Sánchez)
2807
2808 Mon Aug  2 21:52:45 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2809
2810         * gdk/x11/gdkwindow-x11.c (ensure_sync_counter): New
2811         function. Make sure the sync counter is recreated when a window is
2812         reparented to become a toplevel. (#148358)
2813
2814 2004-08-02  Matthias Clasen  <mclasen@redhat.com>
2815
2816         * tests/testcombo.c: Some trees in combo boxes.
2817
2818         * gtk/gtkcombobox.c: Rework the combo box to handle 
2819         tree models.  (#139582, Matt Walton)
2820         
2821         * gtk/gtktreeview.h: 
2822         * gtk/gtktreeview.c: 
2823         * gtk/gtktreeprivate.h: Add a new boolean property 
2824         ::hover-expand and make the treeview expand/collapse rows
2825         on mouseover if it is set.
2826
2827         * gtk/gtkiconview.h: Remove some erroneous declarations.
2828
2829         * gtk/gtkcellview.c (gtk_cell_view_set_cell_data): Don't
2830         crash if the displayed row is gone.
2831
2832 2004-08-02  Morten Welinder  <terra@gnome.org>
2833
2834         * gtk/gtkentry.c (gtk_entry_motion_notify): C99ism.
2835
2836 Mon Aug  2 01:30:03 2004  Matthias Clasen  <maclas@gmx.de>
2837
2838         * gtk/gtktextview.[hc]: 
2839         * gtk/gtkentry.[hc]: Add a new binding signal ::backspace,
2840         bind it to the backspace key, and make it pay attention 
2841         to the Pango backspace_deletes_character 
2842         attribute.  (#119891, Noah Levitt, patch by Theppitak 
2843         Karoonboonyanan)
2844
2845 Mon Aug  2 01:02:57 2004  Matthias Clasen  <maclas@gmx.de>
2846
2847         * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed): 
2848         (gdk_check_wm_desktop_changed): Add missing error 
2849         traps.  (#149011, Thomas Leonard)
2850
2851 Mon Aug  2 00:21:26 2004  Matthias Clasen  <maclas@gmx.de>
2852
2853         * gtk/gtktextview.c (blink_cb): Add the same warning
2854         that the blink_cb() in GtkEntry already has.  (#148733)
2855
2856 Mon Aug  2 00:12:16 2004  Matthias Clasen  <maclas@gmx.de>
2857
2858         * gtk/gtkentry.c (gtk_entry_class_init):
2859         (gtk_entry_get_alignment): 
2860         (gtk_entry_set_alignment): Document the xalign property
2861         and its getter and setter as 2.4 additions.  (#148978,
2862         Axel Simon)
2863
2864 Mon Aug  2 00:11:31 2004  Matthias Clasen  <maclas@gmx.de>
2865
2866         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
2867         * gtk/gtkactiongroup.c (gtk_action_group_class_init): Use
2868         canonical signal names in doc comments, since gtk-doc won't
2869         pick up signal docs with underscores.  
2870
2871 2004-08-01  Matthias Clasen  <mclasen@redhat.com>
2872         
2873         * configure.in: Post-release version bump
2874
2875         * === Released 2.5.1 ===
2876  
2877 Thu Jul 29 16:36:42 2004  Jonathan Blandford  <jrb@redhat.com>
2878
2879         * gtk/gtktreeprivate.h: New arguments
2880
2881         * gtk/gtktreeview.c:
2882         (gtk_tree_view_class_init): Add key_release callback
2883         (gtk_tree_view_init): Initialize timeout handler
2884         (gtk_tree_view_unrealize): clear timeout if needed
2885         (gtk_tree_view_key_press): Typeahead support
2886         (gtk_tree_view_key_release): Not used yet -- will be needed for
2887         typeahead.
2888         (gtk_tree_view_search_entry_flush_timeout): Remove typeahead entry
2889         in a timeout.
2890         (gtk_tree_view_ensure_interactive_directory):
2891         (gtk_tree_view_real_start_interactive_search):
2892         (gtk_tree_view_search_init):
2893         (gtk_tree_view_start_interactive_search): Typeahead support added.
2894         (gtk_tree_view_search_dialog_hide): Clear timeout and text when we
2895         hide.
2896
2897 Sat Jul 31 23:17:44 2004  Matthias Clasen  <maclas@gmx.de>
2898
2899         * NEWS: Updates
2900
2901 Sat Jul 31 01:13:01 2004  Matthias Clasen  <maclas@gmx.de>
2902
2903         * gtk/gtkwindow.c: 
2904         * gtk/gtkentry.c: 
2905         * gtk/gtkaction.c: Use the canonical form of signal names 
2906         after "notify::". Otherwise, no notification arrives. 
2907         GObject should have a warning for that, really.  (#148879, 
2908         Lorenzo Gil Sánchez)
2909
2910 Sat Jul 31 00:42:08 2004  Matthias Clasen  <maclas@gmx.de>
2911
2912         * gdk/x11/gdkwindow-x11.c (gdk_window_set_keep_below): 
2913         * gdk/x11/gdkwindow-x11.c (gdk_window_set_keep_above): Don't
2914         set both states at once.  (#148789, Matthew Garrett)
2915
2916 2004-07-30  Matthias Clasen  <mclasen@redhat.com>
2917
2918         * gtk/gtkcombobox.c: Don't forget to destroy the row separator
2919         function user data when the combo box is destroyed.
2920
2921 2004-07-30  Matthias Clasen  <mclasen@redhat.com>
2922
2923         * gtk/gtkcombobox.h: 
2924         * gtk/gtkcombobox.c: Change the api for separators to use a 
2925         separator function instead of a boolean column.
2926
2927         * tests/testcombo.c: Update to match the api change.
2928
2929 Fri Jul 30 02:21:41 2004  Matthias Clasen  <maclas@gmx.de>
2930
2931         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
2932         Fix the positioning of the popup. 
2933
2934 Fri Jul 30 00:56:31 2004  Matthias Clasen  <maclas@gmx.de>
2935
2936         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_active_changed): 
2937         Implement this in terms of gtk_combo_box_get_active_iter(),
2938         instead of gtk_combo_box_get_active().
2939
2940 2004-07-29  Federico Mena Quintero  <federico@ximian.com>
2941
2942         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): Add
2943         a field for an "add to shortcuts" menu item.
2944         (popup_menu_detach_cb): Clear out the field.
2945         (file_list_build_popup_menu): Only build the menu here.
2946         (file_list_update_popup_menu): Build the menu, then update the
2947         sensitivity of its items.
2948         (file_list_popup_menu): Use file_list_update_popup_menu().
2949         (bookmarks_check_add_sensitivity): Also set the sensitivity of the
2950         popup menu item.  Correctly handle the case for a *single* file.
2951         Simplify a bit.
2952         (bookmarks_add_selected_folder): New helper function; code moved
2953         over from add_bookmark_button_clicked_cb().
2954         (add_bookmark_button_clicked_cb): Use the function above.
2955         (selection_check): Rather than returning a boolean value for
2956         emptiness, actually return the number of selected rows.  Also,
2957         simplify a bit.
2958         (get_selected_path): New helper function.
2959
2960 2004-07-29  Anders Carlsson  <andersca@gnome.org>
2961
2962         * demos/gtk-demo/Makefile.am:
2963         * demos/gtk-demo/clipboard.c: (copy_button_clicked),
2964         (paste_received), (paste_button_clicked), (do_clipboard):
2965         Add clipboard demo.
2966         
2967 2004-07-28  Federico Mena Quintero  <federico@ximian.com>
2968
2969         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
2970         Store signal IDs in gulongs, not guints!
2971         (gtk_file_chooser_default_hierarchy_changed): We now monitor the
2972         focus widget on our toplevel to know which widget was last focused
2973         at the time our "should_respond" method gets called.
2974         (shortcuts_activate_selected): New helper function.
2975         (shortcuts_get_selected): New helper function.
2976         (remove_selected_bookmarks): Use shortcuts_get_selected().
2977         (bookmarks_check_remove_sensitivity): Likewise.
2978         (shortcuts_reorder): Likewise.
2979         (shortcuts_activate_iter): Renamed from shortcuts_activate_item().
2980         Activate by iter, not by item number.
2981         (save_folder_combo_changed_cb): Use shortcuts_activate_iter().
2982         (shortcuts_row_activated_cb): Likewise.
2983         (gtk_file_chooser_default_should_respond): If the last focused
2984         widget on the toplevel was the shortcuts list, activate the
2985         selected shortcut.
2986
2987 2004-07-28  Matthias Clasen  <mclasen@redhat.com>
2988
2989         * gdk/linux-fb/gdkprivate-fb.h: Make the fb backend compile against
2990         current freetype.  (#148558, Nicolas Deves)
2991
2992         * gtk/gtktreeview.c: Replace the EXPANDER_MAX macro by 
2993         ROW_HEIGHT.  (#145528)
2994
2995         * gtk/gtkuimanager.c: Warning fixes.
2996
2997         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Fix
2998         prototype mismatch.  (#148589, Nicolas Deves)
2999
3000 2004-07-28  Anders Carlsson  <andersca@gnome.org>
3001
3002         * gdk/x11/gdkdrawable-x11.c (gdk_draw_rectangle_alpha_libgtk_only): 
3003         Cast to 32-bit integers when premultiplying, suggested by Keith Packard.
3004
3005 2004-07-27  Anders Carlsson  <andersca@gnome.org>
3006
3007         * demos/gtk-demo/iconview.c: (do_iconview):
3008         Change selection mode to multiple.
3009         
3010         * gdk/gdkdrawable.h:
3011         * gdk/linux-fb/gdkdrawable-fb2.c:
3012         (gdk_draw_rectangle_alpha_libgtk_only):
3013         * gdk/win32/gdkdrawable-win32.c:
3014         (gdk_draw_rectangle_alpha_libgtk_only):
3015         * gdk/x11/gdkdrawable-x11.c: (gdk_x11_draw_image),
3016         (get_impl_drawable), (gdk_x11_draw_pixbuf),
3017         (gdk_draw_rectangle_alpha_libgtk_only):
3018         Add gdk_draw_rectangle_alpha_libgtk_only which uses 
3019         XRenderFillRectangle on X11. It's stubbed out on the 
3020         Win32 and fb backends.
3021         
3022         * gtk/gtkiconview.c: 
3023         (gtk_icon_view_paint_rubberband):
3024         Use gdk_draw_rectangle_alpha_libgtk_only here.
3025
3026 2004-07-27  Anders Carlsson  <andersca@gnome.org>
3027
3028         * gtk/gtkaboutdialog.c: (gtk_about_dialog_init),
3029         (text_view_style_set), (add_credits_page),
3030         (display_credits_dialog), (display_license_dialog):
3031         Remove dialog separators, fix text view background setting,
3032         use Close buttons instead of OK buttons.
3033         
3034 2004-07-27  Matthias Clasen  <mclasen@redhat.com>
3035
3036         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory): 
3037         Add a frame around the C-f popup to stop it from merging visually
3038         in whatever is underneath.
3039
3040         * gtk/gtkcombobox.h: 
3041         * gtk/gtkcombobox.c (gtk_combo_box_get_popup_accessible): New 
3042         function necessary to make GtkComboBox accessible.  (#132847, 
3043         Padraig O'Briain)
3044
3045 Tue Jul 27 02:34:06 2004  Matthias Clasen  <maclas@gmx.de>
3046
3047         * gtk/gtkwidget.c (gtk_widget_dispose): Hide parentless
3048         windows when disposing them.  (#133231, Michael Natterer)
3049
3050 2004-07-26  Matthias Clasen  <mclasen@redhat.com>
3051
3052         * gtk/gtklabel.c (gtk_label_class_init): Expand the documentation
3053         for GtkLabel::ellipsize.
3054
3055 Mon Jul 26 00:38:27 2004  Matthias Clasen  <maclas@gmx.de>
3056
3057         Make the GtkComboBox in list mode scroll if the list is too
3058         large to fit in the popup.  (#135543)
3059
3060         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add a 
3061 o       scrolled window to the popup in list mode.
3062         (gtk_combo_box_list_position): Calculate the height of the
3063         popup so that it fits on the screen, set the scrollbar policy
3064         of the scrolled window appropriately.
3065         (gtk_combo_box_popup): Use the height calculated by 
3066         gtk_combo_box_list_position().
3067         (gtk_combo_box_remeasure): Don't add unnecessary padding.
3068         (gtk_combo_box_size_request): But add the focus with here.
3069         (gtk_combo_box_list_setup): Connect to enter notify on the 
3070         popup window to activate auto scrolling.
3071         (gtk_combo_box_list_enter_notify): Activate auto scrolling.
3072         (gtk_combo_box_list_button_pressed): Setup a timeout for
3073         auto scrolling. 
3074         (gtk_combo_box_list_scroll_timeout): Timeout function for
3075         auto scrolling.
3076         (gtk_combo_box_list_auto_scroll): Scroll the list when the 
3077         pointer leaves the window.
3078         
3079 Sun Jul 25 19:51:17 2004  Matthias Clasen  <maclas@gmx.de>
3080
3081         * gtk/gtknotebook.c (gtk_notebook_scroll): Ignore scroll
3082         events from the content of the page.  (#148409, Gabriel 
3083         de Perthuis)
3084
3085 Sat Jul 24 21:38:12 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3086
3087         * gtk/gtktoolbar.c (internal_insert_element): Warn if you try to
3088         add a tool item to a toolbar using the deprecated API.
3089
3090 Fri Jul 23 13:04:10 2004  Matthias Clasen  <maclas@gmx.de>
3091
3092         * gtk/gtkdnd.c (gtk_drag_dest_set): Revert the change to
3093         initialize target_list to an empty list instead of NULL,
3094         since it broke tree dnd.  (#148215, Ernst Persson)
3095
3096         * gtk/gtkdnd.c (gtk_drag_dest_add_text_targets): 
3097         * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): Instead 
3098         handle target list being NULL here.
3099
3100 2004-07-23  Dafydd Harries  <daf@muse.19inch.net>
3101
3102         * gtk/gtkradioaction.c:
3103         * gtk/gtkradiobutton.c:
3104         * gtk/gtkentry.c:
3105         * gtk/gtkmisc.c:
3106         Improve various translatable messages. (#137616)
3107
3108 Fri Jul 23 11:11:10 2004  Matthias Clasen  <maclas@gmx.de>
3109
3110         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_start_editing): 
3111         Align the entry in the same way as the cell.  (#136749)
3112
3113 Fri Jul 23 11:01:00 2004  Matthias Clasen  <maclas@gmx.de>
3114
3115         * gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag): 
3116         Don't iterate too far up. (#147965, Olivier Sessink)
3117
3118 Fri Jul 23 10:28:43 2004  Matthias Clasen  <maclas@gmx.de>
3119
3120         * gtk/gtktreeview.c (gtk_tree_view_finalize): 
3121         * gtk/gtkradioaction.c (gtk_radio_action_finalize): 
3122         * gtk/gtkfontsel.c (gtk_font_selection_finalize): 
3123         * gtk/gtkcellview.c (gtk_cell_view_finalize): 
3124         * gtk/gtkcalendar.c (gtk_calendar_finalize): 
3125         * gtk/gtkactiongroup.c (gtk_action_group_finalize): Remove
3126         unnecessary checks.  (#148175, Morten Welinder)
3127
3128 Thu Jul 22 01:42:16 2004  Matthias Clasen  <maclas@gmx.de>
3129
3130         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
3131         Add a new :ellipsize property which controls ellipsization of the 
3132         rendered text.  (#144835, Vincent Untz, patch by Jonathan Blandford
3133         and Anders Carlsson)
3134         
3135         * gtk/gtkfilechooserdefault.c (create_file_list): Use ellipsization
3136         for the name column.
3137
3138 Thu Jul 22 01:21:28 2004  Matthias Clasen  <maclas@gmx.de>
3139
3140         * gtk/gtkfontsel.c (gtk_font_selection_init): Add additional
3141         accessability relations.  (#141804,  Padraig O'Briain)
3142
3143 Thu Jul 22 01:16:23 2004  Matthias Clasen  <maclas@gmx.de>
3144
3145         * gtk/gtkcombobox.c: Avoid some warnings.
3146
3147 Thu Jul 22 01:05:16 2004  Matthias Clasen  <maclas@gmx.de>
3148
3149         * configure.in: Require Pango 1.5.1 (for ellipsisation).
3150
3151         * gtk/gtklabel.h: 
3152         * gtk/gtklabel.c (gtk_label_class_init): Add a new :ellipsize
3153         property which controls ellipsization of the label.  (#125250, 
3154         Tim Van Wassenhove, patch by James M. Cape)
3155
3156         * tests/testellipsise.c: Simple test for ellipsizsation.
3157
3158 Wed Jul 21 22:46:27 2004  Matthias Clasen  <maclas@gmx.de>
3159
3160         * gtk/gtkcombobox.c (gtk_combo_box_new_text): Don't leak the
3161         list store.  (#148134, Crispin Flowerday)
3162
3163 Wed Jul 21 22:35:47 2004  Matthias Clasen  <maclas@gmx.de>
3164
3165         * gtk/gtkcombobox.c (gtk_combo_box_destroy): Don't leak the
3166         menu.  (#148110, Tommi Komulainen)
3167
3168 Wed Jul 21 22:24:10 2004  Matthias Clasen  <maclas@gmx.de>
3169
3170         * gtk/gtkcellview.c (gtk_cell_view_finalize): Don't leak
3171         tree model and tree row reference.  (#148125, Crispin Flowerday)
3172
3173 Wed Jul 21 22:17:06 2004  Matthias Clasen  <maclas@gmx.de>
3174
3175         * tests/testcombo.c (main): Don't leak models.  (#148128,
3176         Tommi Komulainen)
3177
3178 Wed Jul 21 21:26:08 2004  Matthias Clasen  <maclas@gmx.de>
3179
3180         * gtk/gtkviewport.c (viewport_set_adjustment): Don't leak
3181         the adjustments.  (#148089, Tommi Komulainen)
3182
3183 Wed Jul 21 21:20:21 2004  Matthias Clasen  <maclas@gmx.de>
3184
3185         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't leak
3186         the adjustments.  (#148073, Tommi Komulainen)
3187
3188 Wed Jul 21 21:04:50 2004  Matthias Clasen  <maclas@gmx.de>
3189
3190         * gtk/gtktoolbar.c (gtk_toolbar_finalize): Don't leak the 
3191         arrow.  (#148064, Tommi Komulainen)
3192
3193 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
3194
3195         * gtk/gtkcalendar.c: Use the new text target functionality
3196         in GtkTargetList instead of hardcoding a subset of text targets.
3197
3198 Tue Jul 20 23:11:23 2004  Matthias Clasen  <maclas@gmx.de>
3199
3200         * gdk/x11/gdkevents-x11.c: Hook up gtk-menu-bar-accel to
3201         an XSetting, Gtk/MenuBarAccel.  (#120859, Scott James Remnant)
3202
3203 Tue Jul 20 22:26:29 2004  Matthias Clasen  <maclas@gmx.de>
3204
3205         * gtk/gtkfilechooserutils.h: 
3206         * gtk/gtktoolbutton.c: 
3207         * gtk/gtktoolbar.c: 
3208         * gtk/gtkicontheme.c: 
3209         * gtk/gtkcalendar.c: 
3210         * demos/gtk-demo/ui_manager.c: 
3211         * demos/gtk-demo/appwindow.c: Remove trailing commas
3212         from enumerations.  (#148035)
3213
3214 2004-07-20  Federico Mena Quintero  <federico@ximian.com>
3215
3216         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): Fix the
3217         documentation comment for the editing-started signal.
3218
3219         * gtk/gtkmarshalers.list: Added VOID:OBJECT,STRING for
3220         GtkCellRenderer::editing-started.
3221
3222 2004-07-20  Matthias Clasen  <mclasen@redhat.com>
3223
3224         * tests/testactions.c (main): 
3225         * tests/testmerge.c (main): Add some refcount debugging.
3226
3227         * gtk/gtkuimanager.c (update_node, free_node): Ref an sink
3228         all proxies, so that we can properly clean up floating proxies
3229         which the app didn't adopt.  (#147926, Tommi Komulainen)
3230
3231 2004-07-20  Matthias Clasen  <mclasen@redhat.com>
3232
3233         Allow custom initialization of cell editables.  (#147221)
3234         
3235         * gtk/gtkcellrenderer.h (struct _GtkCellRendererClass): 
3236         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): Add a 
3237         ::editing-started signal as a hook for setting up the 
3238         GtkCellEditable.
3239         (gtk_cell_renderer_start_editing): ...and emit it here.
3240
3241 Mon Jul 19 23:51:50 2004  Matthias Clasen  <maclas@gmx.de>
3242
3243         * gtk/gtktreeview.c (gtk_tree_view_button_press): Set drag_pos
3244         before grabbing the focus, since we may reenter into 
3245         gtk_tree_view_motion_resize_column() which requires drag_pos
3246         to be set.  (#147913, Guilherme Salgado, patch by John Finlay) 
3247
3248 Mon Jul 19 23:51:50 2004  Matthias Clasen  <maclas@gmx.de>
3249
3250         * gtk/gtktreeview.c (gtk_tree_view_enter_notify): Don't
3251         use uninitialized node pointer.  (#147911, Peter Zelezny)
3252
3253 Tue Jul 20 04:34:56 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3254
3255         * configure.in: Bump version number
3256
3257 Sun Jul 18 17:21:10 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3258
3259         * === Released 2.5.0 ===
3260
3261         * NEWS: updates
3262
3263         * tests/testcombo.c: Fix compilation
3264
3265 2004-07-19  Matthias Clasen  <mclasen@redhat.com>
3266
3267         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_popup_completion):
3268         Fix doc comment.
3269         
3270 2004-07-19  Matthias Clasen  <mclasen@redhat.com>
3271
3272         Make GtkCellView public, since people seem to have uses for it, 
3273         it is clean API and we were just conservative in not making it 
3274         public initially. At the same time, get rid of GtkCellViewMenuItem,
3275         which doesn't have any function which can't be served by a
3276         GtkMenuItem with a GtkCellView child.  (#136637, Padraig O'Briain)
3277
3278         * gtk/gtk.h: Include gtkcellview.h
3279
3280         * gtk/Makefile.am (gtk_public_h_sources): 
3281
3282         * gtk/Makefile.am (gtk_private_h_sources): 
3283         (gtk_c_sources): Remove gtkcellviewmenuitem.[hc]
3284         * gtk/gtkcombobox.c: Replace all uses of GtkCellViewMenuItem by
3285         GtkMenuItem with a GtkCellView child.
3286
3287         * gtk/gtkcellviewmenuitem.[hc]: Removed.
3288
3289 2004-07-19  Matthias Clasen  <mclasen@redhat.com>
3290
3291         Support inline autocompletion in entries  (#135953)
3292         
3293         * gtk/gtkentryprivate.h: 
3294         * gtk/gtkentrycompletion.h: 
3295         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3296         Add a new signal ::insert-prefix which can be used to override 
3297         the default inline-completion behaviour. Add two new boolean
3298         properties, :popup_completion and :inline_completion which
3299         determine how the possible completions should be presented.
3300         (gtk_entry_completion_insert_prefix): New function to request
3301         a prefix insertion. 
3302
3303         * gtk/gtkentry.c: Add the necessary glue for inline completion. 
3304
3305 Sun Jul 18 15:28:24 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3306
3307         * gtk/gtkdnd.c (gtk_drag_source_set, gtk_drag_dest_set): Create an
3308         empty target list if targets is NULL.
3309
3310         * configure.in: Add check for X11/extensions/sync.h. (#147416,
3311         Morten Welinder)
3312
3313 Sun Jul 18 01:24:31 2004  Matthias Clasen  <maclas@gmx.de>
3314
3315         * NEWS: Updates for 2.5.0
3316
3317 Sat Jul 17 23:11:04 2004  Matthias Clasen  <maclas@gmx.de>
3318
3319         * gtk/gtkiconview.h:
3320         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
3321         * gtk/gtkiconview.c (gtk_icon_view_set_orientation): 
3322         * gtk/gtkiconview.c (gtk_icon_view_get_orientation): 
3323         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size): 
3324         * gtk/gtkiconview.c (gtk_icon_view_layout_single_row): 
3325         Add a new :orientation property to determine whether text
3326         is positioned below or beside icons.  (#147463)
3327
3328 Sat Jul 17 23:03:30 2004  Matthias Clasen  <maclas@gmx.de>
3329
3330         * gtk/gtkiconview.c (gtk_icon_view_paint_item): 
3331         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size): 
3332         * gtk/gtkiconview.c (gtk_icon_view_layout_single_row): Draw 
3333         focus indicator outside the selection, respect focus 
3334         line width.  (#147460) 
3335
3336 Sat Jul 17 01:17:33 2004  Matthias Clasen  <maclas@gmx.de>
3337
3338         * gdk/x11/gdkdnd-x11.c (xdnd_check_dest): Fix a warning
3339         message.
3340
3341 Sat Jul 17 00:48:27 2004  Matthias Clasen  <maclas@gmx.de>
3342
3343         Support text/plain selection target  (#55117, Owen Taylor)
3344         
3345         * gtk/gtkselection.h: 
3346         * gtk/gtkdnd.h: 
3347         * gtk/gtkselection.c (gtk_target_list_add_text_targets): 
3348         * gtk/gtkdnd.c (gtk_drag_dest_add_text_targets): 
3349         * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): New
3350         functions to facilitate handling of text targets.
3351
3352         * gtk/gtkentry.c: 
3353         * gtk/gtktextview.c: Use the new text target handling 
3354         functions instead of hardwiring the list of supported
3355         text targets everywhere.
3356
3357         * gtk/gtkselection.c (gtk_selection_data_get_text): 
3358         (gtk_selection_data_set_text): 
3359         Support the targets text/plain, text/plain?charset=utf-8
3360         and text/plain?charset=<LOCALE-CHARSET> as outlined in
3361         #55117: 
3362         For text/plain send only ASCII, but accept 8-bit text 
3363         and treat it as ISO-8859-1 as specified by the Xdnd spec.
3364         Always send CRLF terminators. Accept either and convert
3365         into the native terminator for the platform.
3366         
3367 Fri Jul 16 23:20:34 2004  Matthias Clasen  <maclas@gmx.de>
3368
3369         Support themed window icons.  (#92346, Calum Benson)
3370         
3371         * gtk/gtkicontheme.c (gtk_icon_theme_get_icon_sizes): New 
3372         function to obtain information about the sizes in which an
3373         icon is available.  
3374
3375         * gtk/gtkwindow.h: 
3376         * gtk/gtkwindow.c (gtk_window_class_init): 
3377         (gtk_window_set_icon_name): 
3378         (gtk_window_get_icon_name): Add an "icon_name" property
3379         (gtk_window_set_default_icon_name): ...and a default icon name. 
3380         (icon_list_from_theme): 
3381         (update_themed_icon): New auxiliary functions to create a 
3382         list of all available sizes of a themed icon and update the
3383         window icon list from it.
3384
3385 2004-07-16  Matthias Clasen  <mclasen@redhat.com>
3386
3387         * gtk/gtkcombobox.c (gtk_combo_box_scroll_event): Make 
3388         scrolling work if no item is selected.
3389         (gtk_cell_editable_key_press): Don't eat space.
3390
3391         Add a combo box cell renderer (#139347, Lorenzo Gil Sanchez)
3392         
3393         * gtk/gtkcellrenderercombo.[hc]: New Files.
3394
3395         * gtk/gtk.h: 
3396         * gtk/Makefile.am (gtk_public_h_sources, gtk_c_sources): 
3397         Add the new files.
3398
3399         * gtk/gtkcombobox.[hc]: Implement GtkCellEditable, add a 
3400         :has-frame property for suppressing the frame around 
3401         the child and redo the size allocation logic to take 
3402         focus width into account.
3403
3404         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): 
3405         Acknowledge the GtkComboBox:has-frame property and make
3406         the entry fill its allocation vertically.
3407
3408         * gtk/gtkmarshalers.list: Add BOOLEAN:STRING.
3409                 
3410         * gtk/gtktreeview.c (gtk_tree_view_remove_widget): Queue
3411         a draw here to keep non-widget windows from leaving 
3412         shadows behind.
3413
3414 2004-07-16  Matthias Clasen  <mclasen@redhat.com>
3415
3416         * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
3417         multiple times over some of the children. 
3418
3419 Thu Jul 15 22:19:40 2004  Matthias Clasen  <maclas@gmx.de>
3420
3421         Fix #60128, #58307, #144706:
3422         
3423         * gtk/gtkstyle.c (gtk_style_real_copy): Handle references
3424         to bg_pixmaps properly.
3425         (gtk_style_real_unrealize): Don't keep dangling references
3426         to the bg_pixmaps.  
3427         (gtk_style_attach): Split the loop into two loops, first 
3428         looking for a matching style, then for an empty one.
3429         (gtk_style_finalize): 
3430         (gtk_style_duplicate): Add comments explaining the handling
3431         of style->styles.
3432
3433 Thu Jul 15 20:31:28 2004  Matthias Clasen  <maclas@gmx.de>
3434
3435         * gtk/gtkspinbutton.c (start_spinning): Install the timeout
3436         before changing the value, so that a ::value_changed handler
3437         has a chance to remove it.  (#122427, Elke Meier)
3438
3439 Thu Jul 15 19:20:05 2004  Matthias Clasen  <maclas@gmx.de>
3440
3441         * gdk/x11/gdkgtk+/im-x11.c (_gdk_x11_initialize_locale): 
3442         * gtk/gtkcalendar.c (gtk_calendar_class_init): Use 'cannot'
3443         instead of 'can not' in messages.  (#144226, Morten Welinder)
3444
3445 2004-07-15  Matthias Clasen  <mclasen@redhat.com>
3446
3447         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
3448         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
3449         Correct the declared default values of several properties
3450         to be in sync with the actual initial values.
3451
3452         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
3453         Make spacing a property, correct the declared default values 
3454         of several properties to be in sync with the actual initial 
3455         values.  (#147654, Matthias Clasen)
3456
3457         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Don't reparent
3458         back to menu->toplevel if it is already gone because we're
3459         shutting down.  (#147656, John Cupitt)
3460
3461 2004-07-14  Federico Mena Quintero  <federico@ximian.com>
3462
3463         Fix #126295:
3464
3465         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw a focus
3466         indicator along the edge of the bin_window when the tree is empty.
3467         (grab_focus_and_unset_draw_keyfocus): New helper function.
3468         (gtk_tree_view_button_press): Remove a bit of superfluous code.
3469         Use the helper function to save on duplicated code.
3470         (gtk_tree_view_button_press): Grab the focus if the tree is empty.
3471         (gtk_tree_view_focus): Allow focusing into an empty tree.
3472
3473 2004-07-14  Matthias Clasen  <mclasen@redhat.com>
3474
3475         * gtk/gtkaboutdialog.c (add_credits_page): Don't use
3476         gcc extensions for the ternary ?: operator.  (#147590,
3477         Damien Carbery)
3478
3479 2004-07-14  Federico Mena Quintero  <federico@ximian.com>
3480
3481         Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
3482
3483         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the
3484         accessible object name for the tree view.
3485         (create_file_list): Likewise.
3486
3487 Tue Jul 13 21:53:08 2004  Matthias Clasen  <maclas@gmx.de>
3488
3489         * gtk/gtkicontheme.c (free_unthemed_icon): Don't leak
3490         no_svg_filename.  (#147399, Kjartan Maraas)
3491
3492 2004-07-13  Matthias Clasen  <mclasen@redhat.com>
3493
3494         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_get_neighbor_sizes): 
3495         Make this work in RTL context.
3496
3497 2004-07-13  Federico Mena Quintero  <federico@ximian.com>
3498
3499         * gtk/gtkfilechooserdefault.c (shortcuts_activate_volume): Set a
3500         busy cursor while mounting the volume.  Also, ref the chooser
3501         while mounting, as we may re-enter.  Fixes #139376.
3502
3503 2004-07-13  Matthias Clasen  <mclasen@redhat.com>
3504
3505         * gtk/gtktreeview.c (gtk_tree_view_adjustment_changed): 
3506         Prepare to handle composite implementations of
3507         GtkCellEditable, but recursively poking at
3508         allocation->y (hack stolen from GtkCList).
3509         (check_expander_max): Tweak the warning.
3510
3511         * gtk/gtkmain.h: Add gtk_parse_args(), its a public 
3512         function.  (#147476, Owen Taylor)
3513
3514         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Don't
3515         crash if unrealized.
3516
3517 Tue Jul 13 01:50:06 2004  Matthias Clasen  <maclas@gmx.de>
3518
3519         * gtk/gtkaboutdialog.c (display_credits_dialog): Don't
3520         display untranslated translator credits. 
3521
3522 Tue Jul 13 01:15:05 2004  Matthias Clasen  <maclas@gmx.de>
3523
3524         * gtk/gtkiconview.c: Some documentation updates.
3525
3526 Tue Jul 13 00:40:29 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3527
3528         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Do an
3529         empty begin_paint_region()/end_paint() for windows without
3530         EXPOSURE_MASK.
3531
3532         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_tmp_unset_bg,
3533         _gdk_x11_window_tmp_reset_bg): Remove checks for EXPOSURE_MASK.
3534
3535 2004-07-12  Matthias Clasen  <mclasen@redhat.com>
3536
3537         * demos/gtk-demo/appwindow.c: Use a GtkAboutDialog.
3538
3539         * gtk/gtkaboutdialog.h: 
3540         * gtk/gtkaboutdialog.c: New widget: GtkAboutDialog.
3541
3542         * gtk/Makefile.am (gtk_public_h_sources, gtk_c_sources): 
3543         * gtk/gtk.h: Add GtkAboutDialog. (#109435, Paolo Borelli,
3544         patch by Matthias Clasen)
3545
3546         * gtk/gtkrc.c (_gtk_rc_init): Apply the gtk-default-menu-item-style 
3547         to cell view menu items as well.  (#147405, John Cupitt)
3548
3549         * gtk/gtkentrycompletion.c: Warning fixes.  (#147420,
3550         Morten Welinder)
3551
3552         * gtk/gtkcombobox.c (gtk_combo_box_destroy): Pop down 
3553         first. (#147399, John Cupitt)
3554
3555 Mon Jul 12 01:56:26 2004  Matthias Clasen  <maclas@gmx.de>
3556
3557         * gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents): 
3558         Include the update_counter check in the HAVE_XSYNC condition,
3559         since update_counter isn't present in the !HAVE_XSYNC case.
3560
3561 Mon Jul 12 00:52:04 2004  Matthias Clasen  <maclas@gmx.de>
3562
3563         * gtk/stock-icons/Makefile.am: 
3564         * gtk/stock-icons/stock_about_{16,24}.png: 
3565         * gtk/stock-icons/stock_connect_{16,24}.png: 
3566         * gtk/stock-icons/stock_disconnect_{16,24}.png: 
3567         * gtk/stock-icons/stock_edit_{16,24}.png: 
3568         * gtk/stock-icons/stock_media_forward_{16,24}.png: 
3569         * gtk/stock-icons/stock_media_next_{16,24}.png: 
3570         * gtk/stock-icons/stock_media_pause_{16,24}.png: 
3571         * gtk/stock-icons/stock_media_play_{16,24}.png: 
3572         * gtk/stock-icons/stock_media_previous_{16,24}.png: 
3573         * gtk/stock-icons/stock_media_record_{16,24}.png: 
3574         * gtk/stock-icons/stock_media_rewind_{16,24}.png: 
3575         * gtk/stock-icons/stock_media_stop_{16,24}.png: 
3576         * gtk/gtkstock.h (GTK_STOCK_ABOUT): 
3577         * gtk/gtkstock.h (GTK_STOCK_CONNECT): 
3578         * gtk/gtkstock.h (GTK_STOCK_DISCONNECT): 
3579         * gtk/gtkstock.h (GTK_STOCK_EDIT): 
3580         * gtk/gtkstock.h (GTK_STOCK_MEDIA_FORWARD): 
3581         * gtk/gtkstock.h (GTK_STOCK_MEDIA_NEXT): 
3582         * gtk/gtkstock.h (GTK_STOCK_MEDIA_PAUSE): 
3583         * gtk/gtkstock.h (GTK_STOCK_MEDIA_PLAY): 
3584         * gtk/gtkstock.h (GTK_STOCK_MEDIA_PREVIOUS): 
3585         * gtk/gtkstock.h (GTK_STOCK_MEDIA_RECORD): 
3586         * gtk/gtkstock.h (GTK_STOCK_MEDIA_REWIND): 
3587         * gtk/gtkstock.h (GTK_STOCK_MEDIA_STOP): 
3588         * gtk/gtkiconfactory.c (get_default_icons): 
3589         * gtk/gtkstock.c (builtin_items): Add a number of new stock 
3590         items.  (#102530, #68015, #109811, Jordi Mallach, Benjamin Otte,
3591         Michael Opdenacker)
3592
3593 Sun Jul 11 15:24:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3594
3595         Bug 143330, support update counter spec.
3596         
3597         * configure.in: Add check for the Sync extension
3598
3599         * gdk/gdkwindow.h: gdk_window_enable_synchronized_configure() and
3600         gdk_window_configure_finished()
3601
3602         * gtk/gtkwindow.c (gtk_window_move_resize): Call gdk_window_finish_configure().
3603         * gtk/gtkwindow.c (gtk_window_realize): Automatically enable
3604         synchronized configures.
3605
3606         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store current
3607         and pending counter values. 
3608
3609         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): New function.
3610         * gdk/x11/gdkwindow-x11.c
3611         (gdk_window_enable_synchronized_configure): New function.
3612         * gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents):
3613         Delete update counter.
3614         * gdk/x11/gdkwindow-x11.c (set_wm_protocols): Advertise
3615         _NET_WM_SYNC_REQUEST when Sync is available
3616
3617         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Handle
3618         _NET_WM_SYNC_REQUEST messages
3619         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Save counter
3620         value for use by gdk_window_configure_finished() when receiving
3621         ConfigureNotifies.
3622
3623         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add use_sync flag
3624         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Check if the XSync
3625         extension is available
3626         * gdk/x11/gdkdisplay-x11.c: Add _NET_WM_SYNC_REQUEST and
3627         _NET_WM_SYNC_REQUEST_COUNTER to list of supported atoms.
3628
3629         * gdk/linux-fb/gdkwindow-fb.c, gdk/win32/gdkwindow-win32.c: Add
3630         stubs for enable_synchronized_configure() and configure_finished()
3631
3632 Sat Jul 10 23:35:13 2004  Matthias Clasen  <maclas@gmx.de>
3633
3634         * gtk/gtkentry.c (paste_received): Make middle-button pasting
3635         work as expected inside the entry.  (#116789, Scott Bronson)
3636
3637 Sat Jul 10 22:13:53 2004  Matthias Clasen  <maclas@gmx.de>
3638
3639         * gtk/gtktextbuffer.c (gtk_text_buffer_select_range): Update 
3640         clipboards.  (#142805, Mikael Hallendal)
3641
3642 Sun Jul 11 01:38:48 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3643
3644         * gtk/gtkpaned.c (gtk_paned_expose): Remove clip-region computing
3645         code. Just use &paned->handle_pos.
3646
3647 Sun Jul 11 01:12:50 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3648
3649         Bug 144271
3650         
3651         * gtk/gtknotebook.c (gtk_notebook_size_allocate): Remove an
3652         unnecessary redraw..
3653
3654         * gtk/gtknotebook.c (gtk_notebook_page_allocate): Remove some
3655         incorrect redraws.
3656
3657 Sat Jul 10 01:33:25 2004  Matthias Clasen  <maclas@gmx.de>
3658
3659         * docs/RELEASE-HOWTO: Updates.
3660
3661 Sat Jul 10 01:55:29 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3662
3663         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_tmp_{re|un}set_bg):
3664         Insert checks for root window. The root window is never mapped.
3665
3666 Sat Jul 10 01:06:05 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3667
3668         * gdk/x11/gdkwindow-x11.c (post_unmap): Fix a warning
3669         * gdk/x11/gdkwindow-x11.c (show_window_internal): Actually unset
3670         bg.
3671
3672 Sat Jul 10 00:37:45 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3673
3674         Bug 113310.
3675         
3676         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_tmp_{un|re}set_bg):
3677         New functions that can do a recursive unset/reset bg.
3678
3679         * gdk/x11/gdkgeometry-x11.c: Remove
3680         gdk_window_tmp_{un|re}set_bg().
3681
3682         * gdk/x11/gdkwindow-x11.c (pre_unmap, post_unmap): New functions
3683         called before and after unmapping a window. They unset the
3684         background of all other windows to prevent flicker from the X
3685         server repainting the background. post_unmap() also invalidates
3686         the parent of the unmapped window to draw it without roundtrips.
3687
3688         * gdk/x11/gdkwindow-x11.c (show_window_internal): Unset
3689         background of newly mapped windows and all desendants to prevent
3690         flicker.
3691         
3692 Fri Jul  9 15:33:55 2004  Manish Singh  <yosh@gimp.org>
3693
3694         * gdk/gdkevents.c: have a dummy case GDK_OWNER_CHANGE in switch
3695         statements to avoid gcc warnings about not all enum values handled.
3696
3697         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): ignore should live in 
3698         #ifdef HAVE_XFIXES.
3699
3700 Fri Jul  9 23:26:09 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3701
3702         (Bug 113340)
3703
3704         * gdk/x11/gdkwindow-x11.h (struct _GdkWindowImplX11): Add an
3705         "override_redirect" bit.
3706
3707         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set it here.
3708         
3709         * gdk/x11/gdkwindow-x11.c (gdk_window_move, gdk_window_resize,
3710         gdk_window_move_resize): 
3711         Update the local size/position cache
3712         immediately for override redirect windows.
3713
3714         * gdk/x11/gdkwindow-x11.c (show_window_internal): Invalidate
3715         newly mapped child and override redirect windows.
3716
3717 2004-07-09  Federico Mena Quintero  <federico@ximian.com>
3718
3719         Fixes #137031:
3720
3721         * gtk/gtkfilesystemunix.c (get_fallback_icon): New helper
3722         function, fetches a stock icon as a fallback.
3723         (gtk_file_system_unix_volume_render_icon): Fall back to a stock
3724         icon.
3725         (gtk_file_system_unix_render_icon): Fall back to a stock icon.
3726         Use helper functions rather than being a mega-function.
3727         (get_icon_name_for_directory): Renamed from
3728         get_icon_for_directory().
3729         (get_icon_type_from_path): New helper function; code pulled out
3730         from gtk_file_system_unix_render_icon().
3731         (get_special_icon): Likewise.
3732         (get_icon_for_mime_type): Likewise.
3733
3734 2004-07-09  Federico Mena Quintero  <federico@ximian.com>
3735
3736         * gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Fix typo; tmp_event ->
3737         temp_event.
3738
3739 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
3740
3741         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Use the 
3742         requisition of the widget instead of relying on the style
3743         drawing function to supply the size of the drawable.  (#146531) 
3744
3745 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
3746
3747         Make GtkEntry work harder to protect passwords:  (#143955,
3748         Morten Welinder)
3749         
3750         * gtk/gtkentry.c (gtk_entry_destroy): Add a destroy handler
3751         to clear the password even if the widget is leaked.
3752
3753         * gtk/gtkentry.c (gtk_entry_real_delete_text): 
3754         * gtk/gtkentry.c (gtk_entry_finalize): Zero out the memory
3755         before freeing it.
3756         
3757         * gtk/gtkentry.c (gtk_entry_real_insert_text): Zero and free
3758         the old memory instead of just reallocating it.
3759
3760         * gtk/gtkentry.c (gtk_entry_create_layout): Don't leak text
3761         direction information for passwords.
3762
3763 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
3764
3765         * gtk/gtkstyle.c: Fix some cases where style functions were 
3766         not handling widget == NULL properly.  (#146282)
3767
3768 Thu Jul  8 22:38:58 2004  Matthias Clasen  <maclas@gmx.de>
3769
3770         * gtk/gtktreeview.c: Improve the EXPANDER_MAX warning.
3771
3772 2004-07-08  Federico Mena Quintero  <federico@ximian.com>
3773
3774         Fix #139290:
3775
3776         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_new): Add a
3777         GError argument.  Do check for errors when getting the
3778         GtkFileFolder:  get the folder and read the children before
3779         actually creating the model.  Removed obsolete code that handled
3780         roots-changed on the file system.
3781         (file_model_node_get_info): Assert that we don't reach the old
3782         case to display file system roots.
3783         (roots_changed_callback): Removed.
3784
3785         * gtk/gtkfilechooserdefault.c (set_list_model): Add a GError
3786         argument, and a boolean return value.  Return an error if we
3787         cannot create the file system model.  On error, set a NULL model
3788         on the tree.
3789         (gtk_file_chooser_default_set_current_folder): Use the error value
3790         from set_list_model().
3791         (gtk_file_chooser_default_set_property): Set the show_hidden
3792         property only if the browse_files_model exists.
3793         (gtk_file_chooser_default_unselect_path): Only operate if the
3794         browse_files_model exists.
3795         (check_preview_change): Check whether we have the sort_model.
3796         (change_folder_and_display_error): Copy the path we get passed
3797         before using it.  There's a comment in there that explains why we
3798         need to copy it; basically, if the passed path belongs to the
3799         model, the model may go away in the middle of this function and
3800         we'll be left with a dangling pointer.
3801         (install_list_model_filter): Assert that the model is not NULL.
3802         (set_current_filter): Check whether the model exists.
3803
3804         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected): Don't
3805         g_return_if_fail if the model is NULL.
3806         (gtk_tree_selection_get_selected_rows): Likewise.
3807         (gtk_tree_selection_count_selected_rows): Likewise.
3808         (gtk_tree_selection_selected_foreach): Likewise.
3809         (gtk_tree_selection_path_is_selected): Likewise; rather just
3810         return FALSE.
3811         (gtk_tree_selection_select_all): Likewise.
3812         (gtk_tree_selection_unselect_all): Likewise.
3813         (gtk_tree_selection_select_range): Do g_return_if_fail() if the
3814         model is NULL.
3815         (gtk_tree_selection_unselect_range): Likewise.
3816
3817         * gtk/gtkfilesystemunix.c (fill_in_names): Return immediately if
3818         g_dir_open() fails:  there is no need to set the error ourselves,
3819         as g_dir_open() already does it.
3820
3821 2004-07-08  Matthias Clasen  <mclasen@redhat.com>
3822
3823         * gtk/gtktreeview.c (gtk_tree_view_set_search_equal_func): Allow
3824         to restore the default search function.  (#145365, John Finlay) 
3825
3826         * gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Don't leak 
3827         references to the drag context.  (#144324, Alex Larsson)
3828
3829 Thu Jul  8 00:31:34 2004  Matthias Clasen  <maclas@gmx.de>
3830
3831         * gtk/gtktreeview.c (gtk_tree_view_set_model): Stop editing
3832         when a new model is set.  (#145566, Dmitry M. Shatrov)
3833
3834 Wed Jul  7 23:44:32 2004  Matthias Clasen  <maclas@gmx.de>
3835
3836         * gtk/gtkimage.c (gtk_image_expose): Make sure that subpixbufs
3837         are properly aligned for gdk_pixbuf_saturate_and_pixelate(),
3838         in order to avoid rendering artifacts from misaligned 
3839         pixelation patterns.  (#145585, Felipe Heidrich, Billy Biggs)
3840
3841 2004-07-07  Matthias Clasen  <mclasen@redhat.com>
3842
3843         * gtk/gtktreeview.c: 
3844         * gtk/gtktreeview.h: Small documentation fixes.
3845
3846 2004-07-07  Matthias Clasen  <mclasen@redhat.com>
3847
3848         Support separators in combo boxes and more generally in tree 
3849         views  (#135873):
3850         
3851         * gtk/gtkcombobox.h: 
3852         * gtk/gtkcombobox.c (gtk_combo_box_get_row_separator_column):
3853         * gtk/gtkcombobox.c (gtk_combo_box_set_row_separator_column):
3854         Add a ::row-separator-column property with getter and setter, 
3855         which can indicate a boolean model column to determine which
3856         rows are separators. 
3857
3858         * gtk/gtkcombobox.c: Display separator rows as separator menu 
3859         items in menu mode, and by using the new treeview separator 
3860         functionality in list mode.
3861
3862         * gtk/gtktreeview.h: 
3863         * gtk/gtktreeprivate.h:
3864         * gtk/gtktreeview.c (gtk_tree_view_get_row_separator_func): 
3865         * gtk/gtktreeview.c (gtk_tree_view_set_row_separator_func): 
3866         Add a callback to determine whether a row is a separator.
3867         
3868         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): 
3869         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): 
3870         * gtk/gtktreeview.c (validate_row): Use the new callback
3871         to determine whether a row is a separator, and draw it
3872         as a separator then. Since separators should take up less
3873         vertical space than regular rows, this requires removing
3874         the redundant MAX(...,expander_size) calls which appear in
3875         many places. Instead, the MAX() is now only done in 
3876         validate_row(), and only if the row is not a separator.
3877         To catch possible side effects of this intrusive change,
3878         I have left EXPANDER_MAX() calls in place of the MAX() calls
3879         which will emit a warning if something breaks. They should
3880         be removed before 2.6.
3881
3882         * gtk/gtktreeselection.c (row_is_selectable): Don't let 
3883         separator rows be selected.
3884         
3885         * tests/testcombo.c (create_blaat): Add a separator column.
3886
3887 Tue Jul  6 22:58:00 2004  Matthias Clasen  <maclas@gmx.de>
3888
3889         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): Fix
3890         a 64bit alignment issue.  (#144302, Sunil)
3891
3892 2004-07-07  Tor Lillqvist  <tml@iki.fi>
3893
3894         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text)
3895         * gdk/win32/gdkfont-win32.c (gdk_text_extents)
3896         * gdk/win32/gdkproperty-win32.c (find_common_locale,
3897         gdk_property_change)
3898         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Use
3899         g_utf8_to_utf16() instead of the removed _gdk_utf8_to_ucs2() (see
3900         below).
3901
3902         * gdk/win32/gdkglobals-win32.c
3903         * gdk/win32/gdkmain-win32.c (_gdk_windowing_init)
3904         * gdk/win3/gdkprivate-win32.h: Add a variable for the TARGETS
3905         atom. Initialize it. Declare it. Drop the variable for the
3906         COMPOUND_TEXT atom.
3907
3908         * gdk/win32/gdkim-win32.c (gdk_wcstombs): Don't return UTF-8. This
3909         function is supposed to return the string in the locale's charset
3910         and encoding. Use g_convert().
3911
3912         (gdk_mbstowcs): Similarily, don't take an UTF-8 string, but a
3913         string in the locale's charset. Use g_convert().
3914
3915         (_gdk_ucs2_to_utf8, _gdk_utf8_to_wcs, _gdk_utf8_to_ucs2):
3916         Delete. The UCS-2 functions didn't handle surrogates anyway. Use
3917         GLib's UTF-16 functions instead. Windows uses UTF-16.
3918
3919         * gdk/win32/gdkprivate-win32.h: Remove declarations of the deleted
3920         functions mentioned above.
3921
3922         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Use CF_TEXT
3923         also if the string is of type STRING, i.e. ISO-8859-1, and the
3924         current codepage is 1252, and contains no C1 chars. Accept
3925         also UTF8_STRING.
3926
3927         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
3928         Mark as static. When storing STRING data, convert to
3929         Latin-1. (#140537)
3930         (gdk_selection_owner_set_for_display): Now that STRING is always
3931         ISO-8859-1, use UTF8_STRING when sending the selection request
3932         to ourselves.
3933
3934         (gdk_selection_convert): Handle also UTF8_STRING. (#140537, John
3935         Ehresman)
3936
3937         (gdk_text_property_to_text_list_for_display): Make work more like
3938         X11 version. Do obey the encoding parameter.
3939
3940         (gdk_string_to_compound_text_for_display,
3941         gdk_utf8_to_compound_text_for_display): Don't even pretend
3942         supporting COMPOUND_TEXT.
3943
3944         (gdk_utf8_to_string_target): Convert to ISO-8859-1, like on X11.
3945
3946         (sanitize_utf8): Zero-terminate string.
3947
3948 2004-07-06  Matthias Clasen  <mclasen@redhat.com>
3949
3950         * gtk/stock-icons/Makefile.am: Add stock_file_16.png, 
3951         stock_file_24.png, stock_directory_16.png and stock_directory_24.png.
3952
3953         * gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY): 
3954         * gtk/gtkiconfactory.c (get_default_icons): New stock icons as 
3955         fallbacks for gtkfilechooser. Currently these are the same images
3956         as the "new" and "open" items...
3957
3958 Tue Jul  6 10:00:22 2004  Jonathan Blandford  <jrb@redhat.com>
3959
3960         Fix for #136496, Pawel Salek:
3961         
3962         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Queue a redraw on
3963         a node when it changes in fixed_height mode.
3964
3965         (gtk_tree_view_node_queue_redraw): new function to queue a redraw
3966         on a node.
3967
3968 2004-07-06  Matthias Clasen  <mclasen@redhat.com>
3969
3970         * gtk/gtkmenu.c (gtk_menu_position): Make sure 
3971         private->monitor_num is a valid monitor number before 
3972         using it.  (#139187, Michael Natterer)
3973
3974 Tue Jul  6 02:00:28 2004  Matthias Clasen  <maclas@gmx.de>
3975
3976         * gtk/gtkfilechooserdefault.c (popup_position_func): 
3977         * gtk/gtkentry.c (popup_position_func): 
3978         * gtk/gtktextview.c (popup_position_func): Improve positioning
3979         of keyboard-activated menus with Xinerama.
3980
3981 Tue Jul  6 00:29:03 2004  Matthias Clasen  <maclas@gmx.de>
3982
3983         * gtk/gtkuimanager.c (do_updates): 
3984         (do_updates_idle): Only call GDK_THREADS_ENTER() / _LEAVE() 
3985         when called from an idle handler.  (#145429, Jan-Marek Glogowski)
3986
3987 Mon Jul  5 23:47:38 2004  Matthias Clasen  <maclas@gmx.de>
3988
3989         * gtk/gtkfilechooserutils.c (delegate_notify): Use
3990         the less efficient g_object_interface_find_property () instead
3991         of the param_id range check, since the GParamSpecs we're 
3992         dealing with are the overridden onces on the interface, whose
3993         param_id is always zero.  (#145312, Alex Roitman, fix proposed
3994         by Owen Taylor)
3995
3996 2004-07-05  Lorenzo Gil Sanchez  <lgs@sicem.biz>
3997
3998         * gtk/gtklayout.c (gtk_layout_add): added a default method for the add
3999         virtual method of GtkContainer.
4000         (gtk_layout_class_init): assign gtk_layout_add to the 'add' virtual
4001         method slot of the container class.
4002
4003 2004-07-05  Anders Carlsson  <andersca@gnome.org>
4004
4005         * gtk/gtkiconview.c: (gtk_icon_view_set_markup_column):
4006         * gtk/gtkiconview.h:
4007         Use gint, not int in gtk_icon_view_set_markup_column,
4008         (Paolo Maggi)
4009         
4010 2004-07-05  Anders Carlsson  <andersca@gnome.org>
4011
4012         * gtk/gtkiconview.c: (gtk_icon_view_class_init),
4013         (gtk_icon_view_real_select_cursor_item),
4014         (gtk_icon_view_real_activate_cursor_item):
4015         * gtk/gtkiconview.h:
4016         Add an "activate_cursor_item" action signal
4017         and bind it to the return key.
4018         
4019 2004-07-04  Anders Carlsson  <andersca@gnome.org>
4020
4021         * demos/gtk-demo/Makefile.am:
4022         * demos/gtk-demo/gnome-fs-directory.png:
4023         * demos/gtk-demo/gnome-fs-regular.png:
4024         * demos/gtk-demo/iconview.c: (load_pixbufs), (fill_store),
4025         (sort_func), (create_store), (item_activated), (up_clicked),
4026         (home_clicked), (do_iconview):
4027         Add a simple file browser based on the icon view.
4028         
4029         * gtk/gtk.h:
4030         Add gtk/gtkiconview.h
4031         
4032         * gtk/gtkiconview.c: (gtk_icon_view_layout),
4033         (gtk_icon_view_item_new), (gtk_icon_view_item_activated):
4034         Fix a few bugs discovered while writing the demo.
4035         
4036 2004-07-04  Anders Carlsson  <andersca@gnome.org>
4037
4038         * gtk/Makefile.am:
4039         * gtk/gtkiconview.c
4040         * gtk/gtkiconview.h:
4041         Add GtkIconView to the build, remove debugging output.
4042         
4043 Sun Jul  4 01:29:35 2004  Matthias Clasen  <maclas@gmx.de>
4044
4045         * gtk/gtkcalendar.c (gtk_calendar_drag_data_get): 
4046         (gtk_calendar_drag_data_received): Fix off-by-one error.  
4047         GDate month is one-based and GtkCalendar month is zero-based.  
4048         (#145134, William Jon McCann)
4049
4050 Sun Jul  4 01:11:07 2004  Matthias Clasen  <maclas@gmx.de>
4051
4052         * gtk/gtktreestore.c (gtk_tree_store_move): Don't crash if
4053         somebody tries to move a node after itself in a list of 
4054         length 1.  (#145291, Sampo Nurmentaus)
4055
4056 Sat Jul  3 23:43:23 2004  Matthias Clasen  <maclas@gmx.de>
4057
4058         * docs/faq/gtk-faq.sgml: 
4059         * gtk/gtkwindow.c: Fix links to www.freedesktop.org.  (#145210,
4060         Billy Biggs)
4061
4062 Sat Jul  3 02:09:51 2004  Matthias Clasen  <maclas@gmx.de>
4063
4064         * gtk/gtksocket.c (gtk_socket_end_embedding): Reset current_width
4065         and current_height to 0 when ending the embedding.  (#143675,
4066         Nickolay V. Shmyrev)
4067
4068 Sat Jul  3 01:48:19 2004  Matthias Clasen  <maclas@gmx.de>
4069
4070         * gtk/gtkentry.c (gtk_entry_move_visually): Let the cursor move
4071         to the right end of the entry text, even if it ends in combining
4072         marks.  (#141728, Theppitak Karoonboonyanan)
4073
4074 Fri Jul  2 23:34:33 2004  Matthias Clasen  <maclas@gmx.de>
4075
4076         * gtk/gtkcombobox.c (gtk_combo_box_unset_model): Unset the displayed
4077         row when unsetting the model.  (#138560, Christian Persch)
4078
4079 Fri Jul  2 23:01:07 2004  Matthias Clasen  <maclas@gmx.de>
4080
4081         * gtk/gtkcombobox.c (update_menu_sensitivity): Don't crash if there
4082         are no items.
4083
4084 Fri Jul  2 22:41:27 2004  Matthias Clasen  <maclas@gmx.de>
4085
4086         * gtk/gtkimage.c (gtk_image_expose): Properly align mask and
4087         pixbuf if a subarea is exposed.  (#135423, fix by John Ehresman)
4088
4089 Fri Jul  2 21:40:21 2004  Matthias Clasen  <maclas@gmx.de>
4090
4091         * gtk/gtknotebook.c (gtk_notebook_realize): Add scroll events
4092         to the event mask, set a scroll_event handler.
4093         * gtk/gtknotebook.c (gtk_notebook_scroll): Handle scroll events
4094         by switching tabs.  (#145244, Gabriel de Perthuis)
4095
4096 2004-07-02  Anders Carlsson  <andersca@gnome.org>
4097
4098         * gtk/gtktreeview.c (gtk_tree_view_set_model): 
4099         Make sure we check for a NULL model first.
4100
4101 2004-07-01  J. Ali Harlow  <ali@juiblex.co.uk>
4102
4103         * gdk/win32/gdkinput-win32.c (_gdk_input_ungrab_pointer): Fix
4104         win32 build problem w/o wintab.  Fixed #145242
4105
4106 2004-06-30  Anders Carlsson  <andersca@gnome.org>
4107
4108         * gtk/gtktreeview.c (gtk_tree_view_set_model): Use
4109         g_return_if_fail to make sure that the model is a GtkTreeModel.
4110
4111 Sat Jun 26 17:41:10 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4112
4113         * gtk/gtk[hv]separator.c (gtk_[hv]separator_expose): Draw line with the
4114         current state, not GTK_STATE_NORMAL
4115
4116         * gtk/gtkframe.c (gtk_frame_paint): Fix a rounding error
4117
4118 Sat Jun 26 15:07:25 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4119
4120         * gtk/gtkstyle.c, gtk/gtkrc.c: small color tweak. (#141173)
4121
4122 Sat Jun 26 01:15:40 2004  Matthias Clasen  <maclas@gmx.de>
4123
4124         * gdk/x11/gdkwindow-x11.c (set_initial_hints): Handle
4125         _NET_WM_STATE_ABOVE and _NET_WM_STATE_BELOW.  (#144851, 
4126         Billy Biggs)
4127
4128 Sat Jun 26 01:04:31 2004  Matthias Clasen  <maclas@gmx.de>
4129
4130         * gtk/gtkiconfactory.c (clear_cache): Prevent unwanted 
4131         recursion by resetting icon_set->cache before freeing
4132         the cache.  (#144947, Tim Janik)
4133
4134 Sat Jun 26 00:40:02 2004  Matthias Clasen  <maclas@gmx.de>
4135
4136         * gtk/gtkiconfactory.c (render_icon_name_pixbuf): 
4137         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): 
4138         * gtk/gtkstyle.c (gtk_default_render_icon): Accept a NULL 
4139         style.
4140
4141 Sat Jun 26 00:04:36 2004  Matthias Clasen  <maclas@gmx.de>
4142
4143         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_model): 
4144         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Reflect the 
4145         last change in the docs.
4146
4147 Fri Jun 25 23:35:42 2004  Matthias Clasen  <maclas@gmx.de>
4148
4149         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_model):
4150         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Allow passing
4151         NULL to unset the model.  (#137211, patch by  Mariano Suárez-Alvarez)
4152
4153 Fri Jun 25 23:33:05 2004  Matthias Clasen  <maclas@gmx.de>
4154
4155         * gtk/gtkcombobox.c (gtk_combo_box_menu_position_below): Fix the
4156         placement policy for GtkComboBoxEntry to be: if it fits below, 
4157         place below, if it fits above place above, else place in the 
4158         larger space and scroll so that the scroll arrow appear at the
4159         far end.  (#144362, David A. Knight)
4160
4161 Fri Jun 25 22:49:58 2004  Matthias Clasen  <maclas@gmx.de>
4162
4163         * gtk/gtktreestore.c (gtk_tree_store_move): Avoid uninitialized
4164         use of &parent_iter. (#145007, John Finlay)
4165
4166 2004-06-25  Bastien Nocera  <hadess@hadess.net>
4167
4168         reviewed by: Matthias Clasen  <maclas@gmx.de>
4169
4170         * gdk/x11/gdkkeys-x11.c: (get_symbol), (update_keymaps),
4171         (gdk_keymap_lookup_key), (translate_keysym): fix keys parsing when
4172         the number of keysyms per keycode is odd. Fixes #144808.
4173
4174 2004-06-25  Matthias Clasen  <mclasen@redhat.com>
4175
4176         * gtk/gtkfontbutton.c (gtk_font_button_update_font_info): Avoid
4177         a crash if the font doesn't exist.  (#144967, Yevgen Muntyan) 
4178
4179 Fri Jun 25 00:32:15 2004  Matthias Clasen  <maclas@gmx.de>
4180
4181         * gtk/gtktreestore.c (gtk_tree_store_swap): Commit the change
4182         which was mentioned below.
4183
4184 Thu Jun 24 23:35:09 2004  Matthias Clasen  <maclas@gmx.de>
4185
4186         * gtk/gtknotebook.c (gtk_notebook_class_init): Fix a typo,
4187         string change.  (#139503, Baris Cicek)
4188
4189 2004-06-22  Federico Mena Quintero  <federico@ximian.com>
4190
4191         * gtk/gtkfilechooserdefault.c (location_popup_handler): Use a Save
4192         or an Open stock button for the C-l dialog depending on the action
4193         in which the file chooser operates.  Fixes #141753.
4194
4195 2004-06-22  Federico Mena Quintero  <federico@ximian.com>
4196
4197         Fixes the GTK+ part of #142308:
4198
4199         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_filename_to_path):
4200         Use filename_to_path().
4201         (gtk_file_system_unix_uri_to_path): Likewise.
4202         (filename_to_path): Use remove_trailing_slash().
4203
4204 2004-06-22  Matthias Clasen  <mclasen@redhat.com>
4205
4206         * gtk/gtktextview.c (gtk_text_view_class_init): Improve docs
4207         for the ::move_cursor signal.
4208
4209         * gtk/gtkaccelmap.c (_gtk_accel_path_is_valid): Accept
4210         "<WINDOWTYPE>" as a valid accel path.  (#144427, Philip 
4211         Kendall)        
4212
4213         * gtk/gtkselection.c (GTK_SELECTION_MAX_SIZE): Make sure 
4214         this gets defined for all backends, so linux-fb has a 
4215         chance of compiling.
4216
4217         * gdk/x11/gdkgc-x11.c: 
4218         * gdk/gdkgc.c: Move function docs inline, add hints about 
4219         obtaining rgb colors from gcs.  (#144688, Steve Chaplin)
4220
4221         * gtk/gtktreestore.c (gtk_tree_store_swap): Make this work
4222         for children of the root.  (#139785, Jean-François Wauthy,
4223         patch by John Finlay)
4224
4225         * gtk/gtkicontheme.h (GTK_ICON_THEME_GET_CLASS): Typo
4226         fix.  (#144750, Jeff Franks) 
4227
4228 2004-06-21  Michael Natterer  <mitch@gimp.org>
4229         Merge from stable:
4230
4231         * gdk/x11/gdkdrawable-x11.[ch]: made convert_format() utility
4232         function public as _gdk_x11_convert_to_format().
4233
4234         * gdk/x11/gdkcursor-x11.c (create_cursor_image): premultiply
4235         the pixels from the GdkPixbuf when putting them in the
4236         Xcursor image. Fixes bug #144350.
4237
4238 2004-06-16  Federico Mena Quintero  <federico@ximian.com>
4239
4240         * gtk/gtkfilesystemmodel.c (do_files_added): When inserting a
4241         visible node, free the old path before creating the new one.
4242         Fixes #144356.
4243
4244 Tue Jun 15 01:10:32 2004  Matthias Clasen  <maclas@gmx.de>
4245
4246         * gtk/gtkcombobox.c: Make GtkComboBox work without model.  
4247         (#144198, Mariano Suárez-Alvarez)
4248         
4249 Fri Jun 11 22:05:56 2004  Matthias Clasen  <maclas@gmx.de>
4250
4251         * gtk/gtkfilechooserdefault.c: Don't use
4252         contractions like "don't" or "isn't" in error messages.
4253         It isn't nice to use them in log entries either...
4254         (#137774, Morten Welinder, patch by Alexander Winston)
4255
4256 2004-06-11  Federico Mena Quintero  <federico@ximian.com>
4257
4258         Fixes #143578:
4259
4260         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_add_editable):
4261         Don't ref the editable node.
4262         (_gtk_file_system_model_remove_editable): Don't unref the editable node.
4263         (_gtk_file_system_model_remove_editable): Ahem, free the node.
4264
4265         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
4266         Added fields for edited_idle and edited_new_text.
4267         (renderer_edited_cb): Queue the
4268         creation of the folder in an idle handler.
4269         (renderer_editing_canceled_cb): Likewise for the cancellation.
4270         (gtk_file_chooser_default_finalize): Free the impl->edited_new_text.
4271
4272 Thu Jun 10 22:12:26 2004  Matthias Clasen  <maclas@gmx.de>
4273
4274         * gtk/gtkmain.c (gtk_parse_args): Typo fix.
4275
4276 2004-06-10  Federico Mena Quintero  <federico@ximian.com>
4277
4278         Fixes #144110, patch by Bastien Nocera <hadess@hadess.net>.
4279
4280         * gtk/gtkfilechooser.c (gtk_file_chooser_list_shortcut_folders):
4281         Refer to gtk_file_chooser_add_shortcut_folder().
4282         (gtk_file_chooser_list_shortcut_folder_uris): Refer to
4283         gtk_file_chooser_add_shortcut_folder_uri().
4284
4285 Thu Jun 10 00:36:15 2004  Matthias Clasen  <maclas@gmx.de>
4286
4287         * gtk/gtkcalendar.c (gtk_calendar_main_button): Start 
4288         the drag before focusing the selected.day.
4289         * gtk/gtkcalendar.c (gtk_calendar_state_changed): Stop
4290         a beginning drag if the widget becomes insensitive.
4291
4292 Thu Jun 10 00:09:06 2004  Matthias Clasen  <maclas@gmx.de>
4293
4294         * gtk/gtkcalendar.c (gtk_calendar_button_press): Start 
4295         spinning before calling arrow_action(), so that a signal
4296         handler triggered from arrow_action() has a chance to 
4297         stop the spinning.  (#143966, Davyd Madeley)
4298
4299 Wed Jun  9 23:11:23 2004  Matthias Clasen  <maclas@gmx.de>
4300
4301         * gtk/gtkstyle.c (_gtk_style_init_for_settings): Fix a 
4302         typo.  (#144070, Kent Sandvik)
4303
4304 Thu Jun 10 00:22:51 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4305
4306         * gtk/gtkmenu.c: Revert the "drag select" part of
4307         #141169. (#144011).
4308
4309 Mon Jun  7 23:07:40 2004  Matthias Clasen  <maclas@gmx.de>
4310
4311         * gtk/gtkcombobox.c (gtk_combo_box_remeasure): Handle
4312         priv->model being NULL.  (#143856, Mariano Suárez-Alvarez)
4313
4314 2004-06-07  Federico Mena Quintero  <federico@ximian.com>
4315
4316         * gtk/gtktreeview.c (gtk_tree_view_button_press): Revert the patch
4317         from 2003/Sep/12.  This kept DnD in tree views within modal
4318         dialogs from working, which is especially bad for the file
4319         chooser.  Fixes #135168.
4320
4321 Sun Jun  6 23:57:21 2004  Matthias Clasen  <maclas@gmx.de>
4322
4323         Make the entry context menu work in editable text cells. The changes
4324         are based on a patch by Kristian Rietveld, which implemented an 
4325         approach outlined by Owen Taylor.  (#50075)
4326         
4327         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_focus_out_event): 
4328         Ignore focus out if the entry menu is posted.
4329         (gtk_cell_renderer_text_populate_popup): Mark the entry menu as 
4330         posted, and set up a signal handler to clear the flag if the menu 
4331         is unmapped.
4332         (gtk_cell_renderer_text_popup_unmap): Clear the in_entry_menu flag, 
4333         set up a timeout to stop editing if the focus is lost.
4334         (popdown_timeout): Stop editing if the entry doesn't have focus anymore.
4335         (gtk_cell_renderer_text_start_editing): Connect to the populate_popup 
4336         signal on the entry and keep a pointer to the entry.
4337         (gtk_cell_renderer_text_editing_done): Disconnect from popuplate_popup, 
4338         clear the pointer to the entry.
4339
4340 Sun Jun  6 23:24:43 2004  Matthias Clasen  <maclas@gmx.de>
4341
4342         * gtk/gtktexttag.c (gtk_text_tag_class_init): Improve the description
4343         of the ::language property.  (#143802, Owen Taylor)
4344
4345 Sat Jun  5 23:07:30 2004  Matthias Clasen  <maclas@gmx.de>
4346
4347         * gtk/gtkentrycompletion.c: (gtk_entry_completion_init),
4348         (gtk_entry_completion_list_enter_notify),
4349         (gtk_entry_completion_list_motion_notify),
4350         (_gtk_entry_completion_popup), (_gtk_entry_completion_popdown):
4351         * gtk/gtkentryprivate.h: Add an ignore_enter flag and
4352         use it as in the menu code to avoid the initial selection if
4353         the window pops up under the pointer.  (Anders Carlsson)
4354
4355 Sat Jun  5 20:05:39 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4356
4357         * tests/testmerge.c: Add a checkbox to queue an
4358         merge/unmerge. Patch from Matthias Clasen.
4359
4360         * gtk/gtktoolbar.c (struct _GtkToolbarPrivate): Add a new flag
4361         "need_rebuild"
4362         (rebuild_menu): New function that rebuilds the overflow menu and
4363         makes sure it doesn't start or end with a separator.
4364         (toolbar_content_new_tool_item)
4365         (toolbar_content_remove)
4366         (toolbar_content_new_compatibility): Set the rebuild_needed flag
4367         (gtk_toolbar_size_allocate): Only show the overflow arrow when we
4368         have actually overflown an item with a proxy menu item. Also make
4369         sure we rebuild the menu if needed.
4370
4371         Fix #125504, #142377, #143463
4372         
4373         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_expose):
4374         Obey the "priv->draw" flag. (#143692)
4375
4376 2004-06-04  Matthias Clasen  <mclasen@redhat.com>
4377
4378         * docs/widget_geometry.txt: Add a note about the !CAN_FOCUS
4379         quirk in the button size allocation code.
4380
4381         * gtk/gtkbutton.c (gtk_button_size_allocate): Give the space
4382         requested for drawing the focus indicator to the child in the
4383         !CAN_FOCUS case. This should fix issues which the Gimp has with 
4384         the button allocation changes in 2.4.2.
4385
4386 Thu Jun  3 21:17:29 2004  Matthias Clasen  <maclas@gmx.de>
4387
4388         * gtk/gtkentry.c (gtk_entry_completion_timeout): Calculate the
4389         length of the entry contents in characters, not in bytes.
4390
4391         * gtk/gtkentry.c (paste_received): Don't pop up the completion
4392         window on paste, noticed by Anders Carlsson.
4393
4394 Thu Jun  3 20:56:19 2004  Matthias Clasen  <maclas@gmx.de>
4395
4396         * gtk/gtkcombobox.c (gtk_combo_box_class_init): Fix the allowed
4397         values and default value for the ::active property.  (#143669,
4398         Olivier Andrieu)
4399
4400 2004-06-03  Michael Natterer  <mitch@gimp.org>
4401
4402         * gtk/gtkimagemenuitem.c: use gtk_widget_get_child_requisition()
4403         instead of accessing item->image->allocation.width/height
4404         directly. Makes widgets which only have a requisition set using
4405         gtk_widget_set_size_request() work and fixes bug #142789.
4406
4407 Thu Jun  3 08:07:59 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4408
4409         * gtk/gtkmenu.c: Revert previous commit. It caused the problem
4410         of sticky right click menus to return.
4411
4412 Wed Jun  2 01:56:02 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4413
4414         * gtk/gtkmenu.c: Fix the stay up algorithm for combo boxes to
4415         better handle the "click" case. bug  Better fix for #141169.
4416
4417 2004-06-02  Federico Mena Quintero  <federico@ximian.com>
4418
4419         * gtk/gtktreeview.c (gtk_tree_view_search_init): Bail out if the
4420         model is empty.  Fixes #143536.
4421
4422 2004-06-02  Matthias Clasen  <mclasen@redhat.com>
4423
4424         * gtk/gtkfontsel.c (gtk_font_selection_size_focus_out): Don't
4425         close the dialog on focus out of the size entry.  (#143505, 
4426         David Hawthorne)
4427
4428 2004-06-02  Federico Mena Quintero  <federico@ximian.com>
4429
4430         Fix #138807.
4431
4432         * gtk/fnmatch.c (_gtk_fnmatch): Take a no_leading_period argument.
4433         (gtk_fnmatch_intern): Likewise; also implement this option.
4434
4435         * gtk/gtkprivate.h (_gtk_fnmatch): Updated prototype.
4436
4437         * gtk/gtkfilesel.c (find_completion_dir): Pass TRUE for the
4438         no_leading_period argument of _gtk_fnmatch().
4439         (attempt_file_completion): Likewise.
4440
4441         * gtk/gtkfilefilter.c (gtk_file_filter_filter): Pass FALSE for the
4442         no_leading_period argument of _gtk_fnmatch().
4443
4444 Wed Jun  2 00:47:11 2004  Matthias Clasen  <maclas@gmx.de>
4445
4446         * gtk/gtkselection.c (_gtk_selection_request): Remove leftover
4447         debug code.
4448
4449 Wed Jun  2 00:13:57 2004  Matthias Clasen  <maclas@gmx.de>
4450
4451         * gtk/gtktreeselection.c (gtk_tree_selection_select_range): Don't
4452         allow unless selection mode is multiple.  (#142634, John Finlay)
4453
4454 Tue Jun  1 23:00:20 2004  Matthias Clasen  <maclas@gmx.de>
4455
4456         * gtk/gtktoolbar.h: 
4457         * gtk/gtktoolbar.c: 
4458         * gtk/gtkentrycompletion.h: 
4459         * gtk/gtkentrycompletion.c: 
4460         * gtk/gtkcombobox.h: 
4461         * gtk/gtkcombobox.c: Rename function parameters from
4462         index to index_ to prevent clash with BSD index().  (#143001)
4463
4464 Tue Jun  1 22:45:42 2004  Matthias Clasen  <maclas@gmx.de>
4465
4466         * gtk/gtkmenu.c (get_accel_path): Handle accel_closure being
4467         NULL on an accel label. (#139641, Sam Stephenson, patch by 
4468         Michael Natterer)
4469
4470 Tue Jun  1 22:19:55 2004  Matthias Clasen  <maclas@gmx.de>
4471
4472         * gtk/gtkicontheme.c (theme_subdir_load):  Prevent icon 
4473         lookup finding icons in the wrong prefix.  (#143328,
4474         Mark McLoughlin)
4475
4476 Wed Jun  2 00:39:58 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4477
4478         Bug #141169.
4479
4480         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Make menus
4481         only stay up if you release within 500 milliseconds.
4482         (gtk_menu_shell_button_press): Set the activate_time to the event
4483         time when a button is pressed.
4484
4485         * gtk/gtkmenu.c (gtk_menu_motion_notify, gtk_menu_enter_notify):
4486         Interprete button releases as activate when we have seen both an
4487         enter an a motion event.
4488
4489 2004-06-01  Federico Mena Quintero  <federico@ximian.com>
4490
4491         * gtk/gtkfilesystemmodel.c (do_files_removed): Don't insert a
4492         dummy node if there is no parent node.  Fixes #143362.
4493
4494 2004-05-31  Federico Mena Quintero  <federico@ximian.com>
4495
4496         * gtk/gtkfilechooserdefault.c (renderer_edited_cb): Change to the
4497         newly-created folder.  Fixes #138932.
4498         (trap_activate_cb): Only return TRUE if we did handle the event.
4499         Fixes #143359; patch by jylefort@brutele.be.
4500
4501 Mon May 31 02:39:32 2004  Matthias Clasen  <maclas@gmx.de>
4502
4503         * gtk/gtkimage.c (gtk_image_new_from_pixmap): Fix typo in 
4504         docs.  (#142892, Tommi Komulainen)
4505
4506 Mon May 31 02:16:37 2004  Matthias Clasen  <maclas@gmx.de>
4507
4508         * gtk/gtkhandlebox.c: Make detached handleboxes work when their
4509         parent is minimized, porting the fix from 1.2.  (#1923, #57182)
4510
4511 Mon May 31 02:03:17 2004  Matthias Clasen  <maclas@gmx.de>
4512
4513         * gtk/gtkwindow.c (gtk_window_show): Make moving realized, 
4514         unmapped windows work. 
4515
4516 Mon May 31 00:27:33 2004  Matthias Clasen  <maclas@gmx.de>
4517
4518         * gtk/gtkfilechooserutils.c (_gtk_file_chooser_set_delegate): Fix
4519         a typo.
4520
4521 Mon May 31 00:23:55 2004  Matthias Clasen  <maclas@gmx.de>
4522
4523         * gtk/gtkfilechooser.c (gtk_file_chooser_set_preview_widget): 
4524         Refer to ::update-preview, not ::selection-changed.
4525
4526 2004-05-29  Christian Rose  <menthos@menthos.com>
4527  
4528         * configure.in: Added "tk" to ALL_LINGUAS.
4529  
4530 Fri May 28 15:00:01 2004  Matthias Clasen  <maclas@gmx.de>
4531
4532         * gtk/gtkwidget.c (gtk_widget_set_parent): Add informative
4533         messages for common problems.  (#137974, Owen Taylor)
4534
4535 Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>
4536
4537         * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation 
4538         errors. (#143337, Billy Biggs) 
4539
4540 Thu May 27 16:36:22 2004  Owen Taylor  <otaylor@redhat.com>
4541
4542         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): Set
4543         bits within visual->depth that aren't used for color to
4544         1s, in case they are alpha.
4545
4546 2004-05-27  Anders Carlsson  <andersca@gnome.org>
4547
4548         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
4549         Make separator rows insensitive.
4550
4551 Thu May 27 00:48:16 2004  Matthias Clasen  <maclas@gmx.de>
4552
4553         * gtk/gtkentrycompletion.c (gtk_entry_completion_set_text_column): 
4554         Add more docs.
4555
4556 Thu May 27 00:45:07 2004  Matthias Clasen  <maclas@gmx.de>
4557
4558         * gtk/gtkentrycompletion.h:
4559         * gtk/gtkentrycompletion.c (gtk_entry_completion_get_text_column): 
4560         Getter for text_column. Also make ::text_column a property.
4561
4562 Thu May 27 00:11:01 2004  Matthias Clasen  <maclas@gmx.de>
4563
4564         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): Fix a typo.
4565
4566 Thu May 27 00:07:47 2004  Jonathan Blandford  <jrb@gnome.org>
4567
4568         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): only remove the
4569         signal if the box exists.
4570
4571 Wed May 26 23:26:51 2004  Matthias Clasen  <maclas@gmx.de>
4572
4573         Support insensitive cells in tree views and combo boxes:
4574         
4575         * gtk/gtkcellrenderer.h: 
4576         * gtk/gtkcellrenderer.c: Add a ::sensitive property.
4577
4578         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
4579         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
4580         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render): 
4581         Support drawing insensitive.
4582
4583         * gtk/gtkcellview.h: 
4584         * gtk/gtkcellview.c (gtk_cell_view_get_cell_renderers): New 
4585         function to obtain the cell renderers from a cell view. Also
4586         export gtk_cell_view_set_cell_data().
4587
4588         * gtk/gtktreeselection.c (tree_column_is_sensitive):
4589         * gtk/gtktreeselection.c (row_is_selectable): Helper functions
4590         to determine whether all visible cells in a row are insensitive
4591         and whether a row is selectable. A row is not selectable if the 
4592         user function says so or if all visible cells are insensitive.
4593         * gtk/gtktreeselection.c (_gtk_tree_selection_internal_select_node): 
4594         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node): 
4595         Use row_is_selectable().
4596         
4597         * gtk/gtkcombobox.c (row_is_sensitive): 
4598         * gtk/gtkcombobox.c (tree_column_row_is_sensitive): 
4599         * gtk/gtkcombobox.c (menu_row_is_sensitive): Helper functions
4600         to determine row sensitivity in menu or list mode.
4601
4602         * gtk/gtkcombobox.c (update_menu_sensitivity): Helper function
4603         to set up sensitivity menu items from the underlying rows.
4604
4605         * gtk/gtkcombobox.c (gtk_combo_box_popup): 
4606         * gtk/gtkcombobox.c (gtk_combo_box_menu_button_press): Use
4607         update_menu_sensitivity().
4608                 
4609         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Setup the cell
4610         data funcs.
4611
4612         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Skip insensitive
4613         rows.
4614
4615         * tests/testcombo.c (main): Make some rows insensitive.
4616
4617 2004-05-26  Robert Ögren  <gtk@roboros.com>
4618
4619         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Send key
4620         modifiers (shift, ctrl etc) in button and motion events from the
4621         tablet. (#143240)
4622
4623 2004-05-26  Robert Ögren  <gtk@roboros.com>
4624
4625         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): Simple
4626         implementation for extended input devices using last known 
4627         device state (#143237)
4628
4629 Tue May 25 21:54:00 2004  Matthias Clasen  <maclas@gmx.de>
4630
4631         * gtk/gtkframe.c: Move docs inline, fixing them on the
4632         way.  (#143029, Steve Chaplin)
4633
4634 2004-05-11  Robert Ögren  <gtk@roboros.com>
4635
4636         * gdk/win32/gdkevents-win32.c (propagate): Don't propagate mouse
4637         events to windows that want extended input events. (#142943)
4638         (gdk_event_translate): Move check for extended input devices to
4639         propagate, new parameter to propagate.
4640         (gdk_pointer_grab, gdk_display_pointer_ungrab): Enable calls to
4641         _gdk_input_(un)grab_pointer. (#142943)
4642
4643         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Check for
4644         input grab. [Fix missing update of impl in "dijkstra" event
4645         propagation loop] Drop the parallel "impl" pointer, just use a
4646         cast. Don't propagate beyond windows that want normal input
4647         events. (#142943)
4648         (gdk_input_grab_pointer, gdk_input_ungrab_pointer): Limited
4649         implementation of input grab. (#142943)
4650
4651 2004-05-22  Tor Lillqvist  <tml@iki.fi>
4652
4653         * gdk/win32/gdkinput-win32.c (print_lc): Remove duplicated
4654         line. (Spotted by Benoît Carpentier.)
4655
4656 2004-05-18  Matthias Clasen  <mclasen@redhat.com>
4657
4658         * configure.in: Check for XFIXES extension.
4659
4660         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add 
4661         a gboolean have_xfixes member.
4662
4663         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Register
4664         XFIXES events and set have_xfixes.
4665
4666         * gdk/gdkevents.h (GdkEventType): Add GDK_OWNER_CHANGE.
4667         (GdkEventOwnerChange): New event struct for owner change events.
4668         (GdkOwnerChange): New enum for the reason field of GdkEventOwnerChange.
4669         
4670         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Translate 
4671         XFixesSelectionNotify events into GdkEventOwnerChange events.
4672         
4673         * gdk/gdkdisplay.h:
4674         * gdk/x11/gdkdisplay-x11.c (gdk_display_supports_selection_notification):
4675         (gdk_display_request_selection_notification): New api 
4676         to support selection ownership notification.
4677
4678         * gtk/gtkclipboard.h:
4679         * gtk/gtkclipboard.c (_gtk_clipboard_handle_event): New private
4680         api to handle owner change events.
4681         (clipboard_peek): Refactored out the body of 
4682         gtk_clipboard_get_for_display() for use in _gtk_clipboard_handle_event().
4683
4684         * gtk/gtkmain.c (gtk_main_do_event): Handle GDK_OWNER_CHANGE events
4685         by calling _gtk_clipboard_handle_event().
4686
4687 2004-05-18  Matthias Clasen  <mclasen@redhat.com>
4688
4689         * gtk/gtkintl.h: Include glib/gi18n-lib.h and only define
4690         the P_() macros ourselves.
4691
4692         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
4693         Restrict the width of the popup to be no larger than the
4694         monitor.  (#142678, DmD Ljungmark)
4695
4696         * gtk/gtkbutton.c: Go back to the initial fix for the 
4697         focus-overdrawing problem, which was actually correct 
4698         according to docs/widget_geometry.txt.
4699
4700         * gtk/gtkarrow.c (gtk_arrow_class_init): Bump the initial
4701         arrow size from 11 to 15 to compensate for that.
4702
4703         * gtk/gtktextview.c (gtk_text_view_class_init): Document the
4704         arguments of the ::move-cursor signal.  (#142725)
4705
4706 2004-05-17  Matthias Clasen  <mclasen@redhat.com>
4707
4708         Merged from 2.4:
4709         
4710         * gtk/gtkbutton.c (gtk_button_size_request) 
4711         (gtk_button_size_allocate, _gtk_button_paint): Allocate
4712         space for the focus rectangle only if necessary.  (#142668,
4713         Michael Natterer)
4714
4715 Sun May 16 23:11:47 2004  Matthias Clasen  <maclas@gmx.de>
4716
4717         Merged from 2.4:
4718         
4719         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Remove two useless 
4720         lines.  (#142479, Morten Welinder)
4721
4722 Sun May 16 22:27:17 2004  Matthias Clasen  <maclas@gmx.de>
4723
4724         * gtk/gtkintl.h (Q_): Add a Q_() macro. 
4725
4726         * gtk/gtkcellrendererprogress.h: Remove GTK_PROGRESS_CELL_UNKNOWN
4727         and GTK_PROGRESS_CELL_FAILED. With the ability the set the label,
4728         they are not really needed.
4729
4730         * gtk/gtkcellrendererprogress.c: Use the xpad and ypad properties
4731         instead of hardwired padding, use Q_() for the default label, 
4732         compute a reasonable minimal size.  (#142571, #142572, #142573,
4733         Tommi Komulainen, Christian Persch)
4734         
4735 2004-05-15  Tor Lillqvist  <tml@iki.fi>
4736
4737         * gdk/win32/gdkdnd-win32.c: Put back the ref_count field in the
4738         GdkDragContextPrivateWin32 struct (but inside ifdef OLE2_DND this
4739         time). It is used by the OLE2_DND code, which is unfinished and
4740         presumably horribly broken, but still, let's not make it not
4741         compile on purpose. Silence some gcc warnings in the OLE2_DND
4742         code.
4743
4744 2004-05-14  Matthias Clasen  <mclasen@redhat.com>
4745
4746         * gtk/gtktreeview.c (gtk_tree_view_tree_window_to_tree_coords): 
4747         New function to go from tree window to tree coordinates, kept
4748         static for now until we figure out the multiple coordinate
4749         system mess in GtkTreeView API-wise.
4750         (gtk_tree_view_scroll_to_cell): Transform the coordinates 
4751         from tree window to tree coordinates, using the new function.
4752         Previously, the x coordinate was wrongly transformed. (#142494)
4753
4754         * gdk/gdktypes.h (GdkModifierType): Add a comment about unused
4755         bits.
4756
4757         * gtk/gtkstock.c (real_add, gtk_stock_lookup): Use an unused
4758         modifier bit to mark stock item which need to be freed 
4759         eventually.  (#140654, Michal Pasternak, Scott Tsai)
4760
4761 2004-05-11  Robert Ögren  <gtk@roboros.com>
4762
4763         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Add missing
4764         call to g_object_ref in Wintab code. (#138341)
4765
4766         * gdk/win32/gdkinput-win32.c: Fix numerous Wintab problems
4767         including unallocated buffers for event->motion.axes and
4768         event->button.axes, unsigned wraparound problem in the code for
4769         detecting missing press/release events and assigning min instead
4770         of max when setting up axes.
4771
4772 2004-05-12  Matthias Clasen  <mclasen@redhat.com>
4773
4774         * tests/testtreeedit.c: Add a progress column.
4775
4776         * gtk/Makefile.am: Add gtkcellrendererprogress.[hc] in the right
4777         places.
4778
4779         * gtk/gtk.h: Include gtkcellrendererprogress.h.
4780
4781         * gtk/gtkcellrendererprogress.[hc]: A progress cell renderer,
4782         based on the one found in Epiphany.
4783
4784 2004-05-11  Michael Natterer  <mitch@gimp.org>
4785
4786         * gtk/gtkcombobox.c (gtk_combo_box_popup)
4787         (gtk_combo_box_menu_button_press): don't allocate the popup
4788         smaller than the combobox. Fixes bug #59660.
4789
4790 2004-05-11  Matthias Clasen  <mclasen@redhat.com>
4791
4792         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Revert the
4793         previous change to this function, clarify the docs instead.
4794
4795         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Use
4796         GTK_SELECTION_BROWSE.
4797
4798         * gtk/gtktreeview.c: Make hover selection work for 
4799         GTK_SELECTION_BROWSE as well.
4800
4801 Tue May 11 00:38:25 2004  Matthias Clasen  <maclas@gmx.de>
4802
4803         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_class_init): 
4804         Document the ::toggled signal.
4805
4806 Mon May 10 23:04:25 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4807
4808         * gtk/gtkwidget.h: Add prototype for _gtk_widget_grab_notify()
4809
4810 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
4811
4812         * gtk/gtkwindow.c (get_screen_icon_info): Make static.
4813
4814         * gdk/gdkdisplay.c (singlehead_...): 
4815         * gdk/x11/gdkkeys-x11.c (get_effective_keymap): 
4816         * gdk/x11/gdkgeometry-x11.c (expose_serial_predicate): 
4817         * gdk/x11/gdkdisplay-x11.c (escape_for_xmessage): Make static.
4818
4819         * gtk/gtktreeview.c (gtk_tree_view_set_fixed_height_mode): Add a 
4820         note about COLUMN_FIXED restriction.
4821
4822         * gtk/gtkentrycompletion.c (gtk_entry_completion_list_button_press): 
4823         Set the entry in the default handler of the ::match-selected signal.
4824         (#137226)
4825
4826         * gtk/gtkcombobox.c (gtk_combo_box_menu_position_below): If we don't
4827         do the move-selected-item below pointer thingie, do the 
4828         place-below-or-above one.
4829
4830         * tests/testentrycompletion.c: Make the second example use the 
4831         ::match-selected signal to make it actually work.
4832
4833         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): 
4834         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Use hover selection
4835         mode.  (#127648, Dave Bordoley)
4836
4837         * gtk/gtktreeview.h:
4838         * gtk/gtktreeview.c: Add a new property "hover_selection", which 
4839         when TRUE makes the selection follow the mouse. Also add setter
4840         and getter for the fixed_height property.
4841
4842 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
4843
4844         * gtk/gtkcombobox.c (gtk_combo_box_popup) 
4845         (gtk_combo_box_menu_button_press): Make sure the menu pops up
4846         as wide as the combobox.  (#59660, Havoc Pennington)
4847
4848 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
4849
4850         * gtk/gtkcombobox.h: 
4851         * gtk/gtkcombobox.c: Support tearoffable combo boxes (in menu 
4852         mode). Add a new property, add-tearoffs, for this.  (#135956)
4853
4854         * gtk/gtkfontsel.c (list_row_activated): Make Return activate the
4855         default button.  (#118921)
4856
4857 Mon May 10 15:03:50 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4858
4859         * gtk/gtkwidget.c (_gtk_widget_grab_notify): New internal function
4860         that emits the grab notify signal.
4861         
4862         * gtk/gtkmain.c (gtk_grab_notify_foreach): Use it here.
4863
4864 Mon May 10 00:48:08 2004  Matthias Clasen  <maclas@gmx.de>
4865
4866         * gtk/gtkmenu.c: Make destruction of a torn off menu work 
4867         like un-tearing off.
4868
4869 Sun May  9 21:05:38 2004  Matthias Clasen  <maclas@gmx.de>
4870
4871         Merge from 2.4:
4872
4873         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
4874         Allow to suppress the stock accelerator by using "".  (#142196,
4875         David A Knight)
4876         
4877 Sun May  9 02:01:13 2004  Matthias Clasen  <maclas@gmx.de>
4878
4879         Merge from 2.4:
4880         
4881         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): 
4882         In list mode, accept the same mouse/wheel bindings on 
4883         the cellview as on the button.  (#136967)
4884
4885 Sun May  9 01:25:37 2004  Matthias Clasen  <maclas@gmx.de>
4886
4887         * gtk/gtkiconfactory.c (add_to_cache): Actually count the
4888         cached icons.  (#135888, Crispin Flowerday)
4889
4890 Sun May  9 00:03:03 2004  Matthias Clasen  <maclas@gmx.de>
4891
4892         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Make sure
4893         that we actually return menus for nodes of type menu, not the
4894         menuitems they're attached to.
4895
4896 Sat May  8 22:50:55 2004  Matthias Clasen  <maclas@gmx.de>
4897
4898         * gtk/gtkactiongroup.c (gtk_action_group_set_translation_domain): 
4899         Add a note regarding UTF-8 requirements, proposed by 
4900         Mariano Suárez-Alvarez.
4901
4902 Sat May  8 22:43:11 2004  Matthias Clasen  <maclas@gmx.de>
4903
4904         * gtk/gtktearoffmenuitem.h: 
4905         * gtk/gtktearoffmenuitem.c: Put the torn_off flag back
4906         into the GtkTearoffMenuItem struct, since it is used
4907         by the Gimp, and keep it synchronized with the 
4908         tearoff_state property of the parent menu.
4909
4910 2004-05-08  Hans Breuer  <hans@breuer.org>
4911
4912         * gtk/gtkfilesystemwin32.c (extract_icon) : finally also
4913         create the correct mask for 'pseudo mime' icons
4914
4915         * gdk/win32/gdkwindow-win32.c(show_window_internal) : also
4916         take focus_on_map into account
4917
4918         * gtk/gtkselection.c : g_message() only with DEBUG_SELECTION
4919
4920         * gtk/gtkactiongroup.c gtk/gtkcombobox.c : 
4921         ... must return a value
4922
4923         * gdk/gdk.def gtk/gtk.def demos/gtk-demo/makefile.msc.in : updated
4924
4925 2004-05-07  Matthias Clasen  <mclasen@redhat.com>
4926
4927         * gtk/gtkbutton.c (gtk_button_size_allocate): Don't let the child
4928         draw over the focus rectangle.
4929
4930         * gtk/gtkhsv.c: Draw focus indication in the color wheel using
4931         standard focus style.  (#63071, Bill Haneman, idea for new
4932         style by Owen Taylor)
4933
4934         * gtk/gtkstyle.c (gtk_default_draw_focus): Support drawing on
4935         focus on the colorwheel via details.
4936
4937 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
4938
4939         Merge from 2.4:
4940         
4941         * gtk/gtkcombobox.c (gtk_combo_box_menu_state_changed): Remove
4942         this no longer needed signal handler.  (#141817, Paul Pogonyshev)
4943
4944 Fri May  7 00:41:46 2004  Matthias Clasen  <maclas@gmx.de>
4945
4946         * gtk/gtktearoffmenuitem.h: 
4947         * gtk/gtktearoffmenuitem.c: Make the tearoff 
4948         functionality model/view, the tearoffmenuitem being
4949         the view and the tearoff_state property of the menu
4950         being the model.  (#101185, Owen Taylor)
4951
4952         * gtk/gtkmenu.c: Add a tearoff_state property.
4953
4954 Thu May  6 23:52:13 2004  Matthias Clasen  <maclas@gmx.de>
4955
4956         Merge from 2.4:
4957
4958         * gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also 
4959         popup the submenu for items in torn off menus.  (#122051)
4960
4961 2004-05-06  Sven Neumann  <sven@gimp.org>
4962
4963         * gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
4964         position the title lable next to the arrow just as we do for LTR
4965         rendering. Fixes bug #141825.
4966
4967 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
4968
4969         * docs/RELEASE-HOWTO: Document the new policy of
4970         bumping version numbers after release.
4971
4972         * configure.in: Bump version number to 2.5.0.
4973
4974 2004-05-06  Padraig O'Briain  <padraig.obriain@sun.com>
4975
4976         * gtk/gtkmenu.h:
4977         * gtk/gtkmenu.c: Add new function gtk_menu_get_for_attach_widget.
4978         (bug #113112).
4979
4980 Thu May  6 00:24:11 2004  Matthias Clasen  <maclas@gmx.de>
4981
4982         * gtk/gtkactiongroup.h: 
4983         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): 
4984         New function to translate a string with translate_func.
4985         (#135740)
4986
4987 Thu May  6 00:02:21 2004  Matthias Clasen  <maclas@gmx.de>
4988
4989         * gtk/gtkcombobox.c (gtk_combo_box_get_wrap_width): 
4990         (gtk_combo_box_get_row_span_column): 
4991         (gtk_combo_box_get_column_span_column): Add missing getters
4992         for readwrite properies. (#135649)
4993
4994 Wed May  5 23:42:42 2004  Matthias Clasen  <maclas@gmx.de>
4995
4996         * gtk/gtkcombobox.h: 
4997         * gtk/gtkcombobox.c (gtk_combo_box_get_active_text): 
4998         Add gtk_combo_box_get_active_text() convenience 
4999         function. (#136372, Christian Neumeir, patch by Olivier Andrieu) 
5000
5001 2004-05-05  Elijah Newren  <newren@math.utah.edu>
5002
5003         Changes to support do-not-focus-on-map hint in conjunction with
5004         _NET_WM_USER_TIME (#115650):
5005
5006         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a new boolean
5007         field focus_on_map
5008         
5009         * gdk/gdkwindow.h (gdk_window_set_accept_focus): New function to
5010         set it.
5011
5012         * gtk/gtkwindow.[hc]: Add a boolean property "focus_on_map"
5013         and gtk_window_get_focus_on_map() and gtk_window_set_focus_on_map().
5014
5015         * gdk/win32/gdkwindow-win32.c (gdk_window_new): 
5016         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new): 
5017         * gdk/x11/gdkwindow-x11.c (gdk_window_new):
5018         Initialize the focus_on_map field to TRUE.
5019
5020         * gdk/win32/gdkwindow-win32.c (gdk_window_set_focus_on_map): 
5021         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_focus_on_map): 
5022         * gdk/x11/gdkwindow-x11.c (gdk_window_set_focus_on_map): 
5023         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window):
5024         Implementations for the various backends. The Win32 and linux-fb
5025         implementations set the focus_on_map field, but don't use it yet
5026         to actually implement noinput windows. The X implementation sets
5027         _NET_WM_USER_TIME to 0 if focus_on_map is FALSE (see the EWMH).
5028
5029         * gdk/x11/gdkwindow-x11.h: 
5030         * gdk/x11/gdkevents-x11.c (set_user_time): 
5031         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
5032         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): 
5033         s/_gdk_x11_window_set_user_time/gdk_x11_window_set_user_time/,
5034         since we want that function to be part of the public API.
5035
5036 Wed May  5 22:20:21 2004  Matthias Clasen  <maclas@gmx.de>
5037
5038         Merge from 2.4:
5039         
5040         * gtk/gtkiconfactory.c (icon_source_clear): Don't
5041         call g_free() on a pixbuf.  (#141961, Crispin Flowerday) 
5042
5043 2004-05-05  Matthias Clasen  <mclasen@redhat.com>
5044    
5045         Merge from 2.4:
5046         
5047         * gtk/gtkuimanager.c (print_node): Make the output 
5048         parseable.  (#141929, Sven Neumann)
5049
5050 2004-05-05  Tor Lillqvist  <tml@iki.fi>
5051
5052         * gdk/win32/gdkdnd-win32.c (gdk_drag_find_window_for_screen): Add
5053         multi-monitor offset. (#141842, John Ehresman)
5054
5055 2004-05-04  Federico Mena Quintero  <federico@ximian.com>
5056
5057         Fixes #139562, based on a patch by Christian Neumair.
5058
5059         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): Add
5060         a filter_combo_hbox field to contain the filter combo.
5061         (show_filters): Show/hide the filter_combo_hbox.
5062         (create_filename_entry_and_filter_combo): Removed.
5063         (file_pane_create): Create the filter_combo_hbox here.
5064
5065 2004-05-04  Matthias Clasen  <mclasen@redhat.com>
5066
5067         * modules/input/gtkimcontextxim.c: Fix the recent
5068         string_conversion_callback change to work on 
5069         Solaris.  (#141190, Padraig O'Briain)
5070
5071         * gtk/gtkselection.c: Disable debug logging again.
5072
5073 2004-05-03  Matthias Clasen  <mclasen@redhat.com>
5074
5075         * gtk/gtkselection.c: Make the chunk size for 
5076         incremental transfers depend on the maximal request 
5077         size, capped at 256k. This should allow most selections
5078         to be transferred nonincrementally, avoiding many
5079         roundtrips and protocol overhead.
5080
5081 2004-05-03  Federico Mena Quintero  <federico@ximian.com>
5082
5083         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Call
5084         g_signal_new() correctly and initialize the signal fields.  Fixes
5085         #141749; patch based on Michael Natterer's.
5086
5087 u2004-05-03  Matthias Clasen  <mclasen@redhat.com>
5088
5089         * gtk/gtkselection.c (_gtk_selection_request): Fix
5090         a debug message to show correct information.
5091         (_gtk_selection_incr_event): Make INCRemental transfer
5092         of MULTIPLE targets work. This was broken since 1997!
5093
5094 2004-05-02  Hans Breuer  <hans@breuer.org>
5095
5096         * gdk/win32/gdkdrawable-win32.c (draw_segments) : don't
5097         modify the passed in GdkSegment(s) in place, we may get
5098         them again to draw at the same place. Fixes bug #129095, 
5099         bug #137177, ...
5100         (draw_segments) draw the end pixel again to get the 
5101         pixmap mask right, fixes bug #126710, #130202
5102
5103         * gdk/win32/gdkwindow-win32.c : use SetForegroundWindow,
5104         fixes bug #106013, John Ehresman
5105
5106         * gtk/makefile.msc.in : don't try to link gtk.res but
5107         use gtk-win32.res (as supposed to be fixed below :)
5108
5109 2004-05-01  Hans Breuer  <hans@breuer.org>
5110
5111         * tests/Makefile.am : tests/makefile.msc is in CVS for
5112         a long time, finally added to EXTRA_DIST : fixes bug 
5113         #141334, John Ehresman
5114
5115 2004-04-30  Matthias Clasen  <mclasen@redhat.com>
5116
5117         * === Released 2.4.1 ===
5118
5119         * configure.in: Version 2.4.1, interface age 1. 
5120
5121         * NEWS: Updates
5122
5123 2004-04-29  Federico Mena Quintero  <federico@ximian.com>
5124
5125         Fixes #140412.
5126
5127         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): New
5128         function; moved the code over from
5129         remove_bookmark_button_clicked_cb().
5130         (remove_selected_bookmarks): Now, getting a non-removable bookmark
5131         is not an error, as we may be called as a result of hitting the
5132         Delete key.
5133         (shortcuts_key_press_event_cb): New handler; delete the bookmark
5134         if the user presses Backspace, Delete, or KP_Delete.
5135
5136 2004-04-29  Matthias Clasen  <mclasen@redhat.com>
5137
5138         * gtk/gtkaction.c (closure_accel_activate): Use
5139         _gtk_action_emit_activate() instead of directly
5140         emitting the activate signal.  (#141429, Jody Goldberg)
5141
5142         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
5143         Warn people when the accelerator can not be 
5144         parsed.  (#141429, Jody Goldberg)
5145
5146 2004-04-29  Matthias Clasen  <mclasen@redhat.com>
5147
5148         * tests/testentrycompletion.c (main): Add a missing 
5149         cat.  (#141070, Chris Sherlock)  
5150
5151         * gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
5152         variable.  (#141022, Chris Sherlock)
5153         
5154         * gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
5155         cast.  (#141013, Chris Sherlock)
5156
5157         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
5158         unused variable.  (#141011, Chris Sherlock)
5159
5160 2004-04-29  Tor Lillqvist  <tml@iki.fi>
5161
5162         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory
5163         leak. (#140775, John Ehresman)
5164
5165 Thu Apr 29 01:09:50 2004  Matthias Clasen  <maclas@gmx.de>
5166
5167         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): Use depth - 1
5168         to index the cached gcs, not depth.  (#139494)
5169
5170 2004-04-28  Matthias Clasen  <mclasen@redhat.com>
5171
5172         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): Docs typo fix.
5173
5174 Sun Apr 25 15:36:02 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
5175
5176         * gtk/gtktoolbutton.c (gtk_tool_button_set_label_widget): Fix
5177         cut'n'paste-o from previous commit. (#141046, Torsten Schoenfeld).
5178
5179 2004-04-24  Theppitak Karoonboonyanan  <thep@linux.thai.net>
5180
5181         Patch to add support for string conversion callbacks to
5182         GtkIMContextXIM (#101814)
5183
5184         * modules/input/gtkimcontextxim.c: Set the string conversion callback
5185         if supported by the XIC.
5186
5187         (struct _GtkIMContextXIM): Add string_conversion_callback member.
5188
5189         (struct _GtkXIMInfo, setup_im): Check and keep flag inidicating
5190         whether string conversion callback is supported.
5191
5192         (gtk_im_context_get_ic, +set_string_conversion_callback,
5193         +string_conversion_callback): Also initialize string conversion
5194         callback, if supported, along with the IC initialization.
5195
5196         * modules/input/imxim.c: Make "xim" module default for Thai as well.
5197
5198 2004-04-23  Matthias Clasen  <mclasen@redhat.com>
5199
5200         * gtk/gtkclipboard.c (gtk_clipboard_wait_for_targets): Correctly
5201         initialize targets.  (#139883, John Finlay)
5202
5203         * gdk/gdkdraw.c (gdk_draw_drawable): Small doc improvement. 
5204
5205         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected_rows): 
5206         Don't recommend gtk_tree_row_reference_new_proxy().  (#138309,
5207         Tim-Philipp Müller)
5208
5209         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_set_cell_data): 
5210         Remove an excessive g_return_if_fail().
5211
5212         * gdk/x11/gdkevents-x11.c (set_user_time): Make set_user_time()
5213         static.
5214         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
5215         _-prefix calls of gdk_x11_window_set_user_time().
5216
5217 2004-04-22  Matthias Clasen  <mclasen@redhat.com>
5218
5219         * gtk/gtkuimanager.c (update_node): Make sure the separators 
5220         used to demarkate placeholder ends don't show up on 
5221         show_all().  (#140496, Murray Cumming)
5222
5223         * gtk/gtkspinbutton.c (spin_button_at_limit): Make spinbuttons
5224         work with negative increments.  (#137975, Tim Gerla)
5225
5226 Wed Apr 21 21:38:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
5227
5228         * gtk/gtktoolbutton.c (gtk_tool_button_set_label_widget,
5229         gtk_tool_button_set_icon_widget): Remove the old widget from the
5230         tool button before overwriting it with the new widget.
5231
5232         (#140508, Todd Goyen)
5233         
5234 2004-04-22  Tor Lillqvist  <tml@iki.fi>
5235
5236         Fix the file chooser on Windows. I can't make it misbehave or
5237         crash any more now. But presumably there are still corner cases
5238         not handled. I haven't really checked behaviour of UNC paths, for
5239         instance.
5240
5241         * gtk/gtkfilesystemwin32.c: Accept both backslash and slash in
5242         several places. Use G_IS_DIR_SEPARATOR macro (which could be added
5243         to GLib in 2.6).
5244
5245         (gtk_file_system_win32_get_parent): Like the Unix version, assert
5246         filename is absolute, and avoid one unnecessary string allocation
5247         and freeing.
5248         
5249         (canonicalize_filename,gtk_file_system_win32_parse): Handle drive
5250         letters more correctly.
5251
5252         (gtk_file_system_win32_render_icon): Assure correct syntax is used
5253         for root folder of a drive. (#137962, Morten Welinder)
5254
5255         (filename_is_some_root): New function that accepts also root
5256         without any drive specified.
5257
5258         (filename_is_drive_root): Rename from filename_is_root.
5259
5260         * gtk/gtkfilechooserentry.c (completion_match_func): Casefold on
5261         Windows.
5262
5263 2004-04-21  Matthias Clasen  <mclasen@redhat.com>
5264
5265         * gtk/gtkentry.c (gtk_entry_completion_timeout): Pop down the 
5266         completion window if there are no completions anymore.
5267
5268         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
5269         Don't call gtk_tree_view_scroll_to_cell() on an empty tree view. 
5270         It doesn't like that.  (#140642, Christian Persch)
5271
5272         * demos/gtk-demo/expander.c (do_expander): A new demo.
5273
5274         * demos/gtk-demo/Makefile.am (demos): Add expander.c.
5275
5276 2004-04-20  Matthias Clasen  <mclasen@redhat.com>
5277
5278         * gtk/gtktextview.c (gtk_text_view_allocate_children): Make
5279         sure anchored children get size allocated, even if the layout
5280         is valid.  (#122323, Andrew E. Makeev)
5281         (gtk_text_view_scroll_pages): 
5282         (gtk_text_view_scroll_hpages): Don't scroll to cursor position
5283         if we already have pending scrolls. Bandaid fix for #78513.
5284
5285 Mon Apr 19 17:59:17 2004  Owen Taylor  <otaylor@redhat.com>
5286
5287         * INSTALL.in: Update libpng and libjpeg URLs, remove
5288         note about building without since that's not the normal
5289         case.
5290
5291 Sun Apr 11 09:45:11 2004  Owen Taylor  <otaylor@redhat.com>
5292
5293         * gtk/gtkicontheme.c (load_themes): Fix a couple of typos in
5294         handling of SVG/non-SVG unthemed icons.
5295
5296 2004-04-19  Morten Welinder  <terra@gnome.org>
5297
5298         * gtk/gtktoolbar.c (gtk_toolbar_focus): Don't leak list of
5299         children.  (#140523)
5300
5301 2004-04-19  Matthias Clasen  <mclasen@redhat.com>
5302
5303         * gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag): 
5304         Don't stop the iteration up to the tag_root too 
5305         early.  (#109945, Dongho Shin)
5306
5307 Sun Apr 18 17:06:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
5308
5309         * gdk/x11/gdkkeys-x11.c (get_effective_keymap): Make
5310         gdk_keymap_translate_keyboard_state() handle NULL
5311         keymaps. (#139715, Torsten Schoenfeld).
5312
5313 Sun Apr 18 16:59:21 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
5314
5315         * configure.in: Don't erase GDK_EXTRA_CFLAGS. Fixes bug 139586,
5316         reported by Pedro RODRIGUEZ, about compilation problems when
5317         Xcursor is installed in a non-standard location.
5318
5319 Sun Apr 18 16:15:15 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
5320
5321         Support for _NET_WM_USER_TIME (bug 115650). Patch by Elijah
5322         Newren.
5323         
5324         * gdk/x11/gdkwindow-x11.[ch]: Add new internal function
5325         _gdk_x11_set_user_time() to set the _NET_WM_USER_TIME property.
5326
5327         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add user_time field
5328
5329         * gdk/x11/gdkdisplay-x11.c: Add _NET_WM_USER_TIME to list of
5330         precached atoms.
5331         
5332         * gdk/x11/gdkinput-x11.c, gdk/x11/gdkevents-x11.c: Set the
5333         property on user interaction.
5334
5335 2004-04-15  Federico Mena Quintero  <federico@ximian.com>
5336
5337         * gtk/gtkfilesel.c (open_new_dir): Tell the user to use
5338         G_FILENAME_ENCODING, not G_BROKEN_FILENAMES.  Fixes #114065.
5339
5340         * gtk/gtkfilechooserdefault.c (split_uris): Use a variant of the
5341         code from gtkfilesel.c to parse a "text/uri-list" blob.  Fixes
5342         #140126.
5343
5344 2004-04-15  Matthias Clasen  <mclasen@redhat.com>
5345
5346         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
5347         * gtk/gtkbutton.c (gtk_button_class_init): Doc fixes.
5348
5349 2004-04-14  Matthias Clasen  <mclasen@redhat.com>
5350
5351         * gtk/gtkcombobox.c: 
5352         * gtk/gtkwidget.c: 
5353         Make all style properties readonly.
5354
5355 2004-04-14  Matthias Clasen  <mclasen@redhat.com>
5356
5357         * gtk/gtkcolorsel.c: Add a11y relations between the color
5358         wheel and the spin buttons.  (#132745, Padraig O'Briain)
5359
5360         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
5361         the meaning of size == -1.
5362
5363         * gtk/gtkwidget.c (gtk_widget_render_icon): Explicitly accept  
5364         a size of -1.  (#137436, Brian Cameron)
5365
5366         * gtk/gtkcombobox.c: Make the arrow and separator regular
5367         children of an hbox inside the button, and propagate state
5368         changes from the button to the cell view.  (part of the fix
5369         for #138650, should also fix #137535)
5370
5371         * gtk/gtkcellview.c (gtk_cell_view_expose): Pass the PRELIT
5372         state to gtk_cell_renderer_render() when prelighted. (part 
5373         of the fix for #138650)
5374
5375         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
5376         Use PRELIGHT state when appropriate.  (part of the fix for 
5377         #138650)
5378
5379         * gtk/gtkcombobox.c (gtk_combo_box_relayout): Don't spit 
5380         out warnings if called before the combo box is 
5381         realized.  (#139742, Philip Langdale)
5382
5383 Wed Apr 14 03:45:39 2004  Jonathan Blandford  <jrb@gnome.org>
5384
5385         * gtk/gtktreeview.c (gtk_tree_view_expose): propagate expose
5386         events to children.
5387
5388 Wed Apr 14 03:32:58 2004  Jonathan Blandford  <jrb@gnome.org>
5389
5390         * gtk/gtkpathbar.c (make_directory_button): remove spurious
5391         gtk_box_pack_start.
5392
5393 Tue Apr 13 16:19:23 2004  Jonathan Blandford  <jrb@redhat.com>
5394
5395         * gtk/gtkpathbar.c (make_directory_button): patch from Owen to
5396         make the buttons sized by a bold label.  This makes the text
5397         'swim' a little, but stops the buttons from resizing, #137210
5398
5399 2004-04-13  Matthias Clasen  <mclasen@redhat.com>
5400
5401         * gtk/gtkuimanager.c (get_child_node): Don't crash if a node 
5402         has no name.
5403         (start_element_handler): Accept separators without unique 
5404         names.  (#133302, Anders Carlsson)
5405
5406         * gtk/gtkactiongroup.c (gtk_action_group_add_action): Document
5407         possible accelerator gotcha when using this function.  (#139641, 
5408         Christian Persch)
5409
5410         * gtk/gtkuimanager.c (node_remove_ui_reference): Don't leak
5411         list nodes.  (#138862, Morten Welinder)
5412
5413 Tue Apr 13 12:24:49 2004  Jonathan Blandford  <jrb@redhat.com>
5414
5415         * gtk/gtktreeview.c (gtk_tree_view_destroy): remove unused
5416         variable.
5417         (gtk_tree_view_button_press): If we activated the row we don't
5418         want to grab focus back, as moving focus to another widget is
5419         pretty common, #138458
5420
5421 2004-04-12  Federico Mena Quintero  <federico@ximian.com>
5422
5423         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Added
5424         documentation to all the signals.
5425
5426 2004-04-12  Matthias Clasen  <mclasen@dhcp64-228.boston.redhat.com>
5427
5428         * gtk/gtkcombobox.c (gtk_combo_box_unset_model): Don't unref
5429         model if it is NULL. (#139770)
5430
5431         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Typo fix.
5432
5433         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): Don't add
5434         a shadow inside the scrolled window, add it around the vbox.
5435
5436         * gtk/gtkentryprivate.h: 
5437         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
5438         Return a boolean indicating whether the popup is positioned above 
5439         or below. Scroll the completions to the beginning or the end, 
5440         depending on the positioning.
5441
5442         * gtk/gtkentry.c (gtk_entry_completion_key_press): Make keynav
5443         wrap around in the entry completion popup, and allow GDK_UP to 
5444         enter the popup.  (#137440)
5445
5446 2004-04-12  Matthias Clasen  <mclasen@redhat.com>
5447
5448         * gtk/gtkentry.c (gtk_entry_size_request): Make sure the style is 
5449         there before using it.
5450
5451 Sun Apr 11 15:08:45 2004  Jonathan Blandford  <jrb@gnome.org>
5452
5453         * gtk/gtktreeprivate.h: Moved search entries into priv data.
5454
5455         * gtk/gtktreeview.c: Prep for type-ahead support.
5456
5457         (gtk_tree_view_destroy): Destroy the search window explicitly.
5458         (gtk_tree_view_key_press): Minor change; prep for type-ahead
5459         (gtk_tree_view_ensure_interactive_directory): New function
5460         (gtk_tree_view_focus_out): Rework to handle new entry life-cycle.
5461         (gtk_tree_view_real_start_interactive_search): rework
5462         (gtk_tree_view_search_dialog_hide): ditto
5463         (gtk_tree_view_search_delete_event): ditto
5464         (gtk_tree_view_search_button_press_event): ditto
5465         (gtk_tree_view_search_key_press_event): ditto
5466         (gtk_tree_view_search_move): ditto
5467         (gtk_tree_view_search_init): ditto
5468
5469         * gtk/gtktreeviewcolumn.c:
5470         (gtk_tree_view_column_cell_layout_clear): remove unused variable.
5471
5472         * tests/testfilechooser.c: (main): change
5473
5474 2004-04-11  Hans Breuer  <hans@breuer.org>
5475
5476         * gdk/win32/gdkspawn-win32.c : workaround for bug #137496,
5477         the real fix would involve just another small API breakage,
5478         i.e. gdk_spawn_* using GPid not just gint.
5479
5480         * gtk/makefile.msc.in : build gtk-win32.res, not gtk.res
5481
5482 2004-04-10  Tor Lillqvist  <tml@iki.fi>
5483
5484         * gdk/win32/gdkkeys-win32.c (gdk_keymap_translate_keyboard_state):
5485         If both Shift and CapsLock pressed, ignore the shift only for
5486         letters (that would have been affected by the CapsLock). (#139095)
5487
5488         * gdk/win32/gdkglobals-win32.c: Disable tablet support by default,
5489         seems to be even buggier now than it used to be. (#138341)
5490         Initialize _gdk_input_ignore_wintab to TRUE.
5491
5492         * gdk/win32/gdkmain-win32.c: Add --use-wintab switch and
5493         GDK_USE_WINTAB environment variable to turn on tablet support.
5494
5495 2004-04-09  Christian Persch  <chpe@cvs.gnome.org>
5496
5497         * gtk/gtkuimanager.c: (gtk_ui_manager_insert_action_group),
5498         (gtk_ui_manager_remove_action_group): Terminate
5499         g_object_[dis]connect() calls with NULL instead of 0.
5500         Fixes #138997.
5501
5502 2004-04-09  Guntupalli Karunakar  <karunakar@freedomink.org>
5503
5504         * configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
5505
5506 2004-04-07  Federico Mena Quintero  <federico@ximian.com>
5507
5508         Fix #132500.
5509
5510         * gtk/gtkfilesystem.c (gtk_file_system_parse): Ensure that the
5511         passed-in 'str' is not NULL.
5512
5513         * gtk/gtkfilesystemunix.c (expand_tilde): New helper function;
5514         expands "~/" or "~foo/" at the beginning of a filename.
5515         (gtk_file_system_unix_parse): Use expand_tilde() before doing
5516         anything else.
5517
5518         * gtk/gtkfilechooserentry.c
5519         (gtk_file_chooser_entry_maybe_update_directory): Take in a
5520         force_reload argument.
5521         (gtk_file_chooser_entry_changed): If gtk_file_system_parse()
5522         returns an error, set the file_part_pos to -1.
5523         (load_directory_callback): Only populate the model if the
5524         file_part_pos is not -1.
5525
5526 2004-04-06  Pablo Saratxaga  <pablo@mandrakesoft.com>
5527
5528         * configure.in: Added Icelandic (is) to ALL_LINGUAS
5529
5530 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
5531
5532         * gtk/gtkfilechooserdefault.c (location_popup_handler): Use a
5533         title for SAVE and CREATE_FOLDER modes.  Fixes #137272.
5534
5535         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_make_path): Look
5536         for G_DIR_SEPARATOR in the display_name, and err out if it is
5537         present; use the same error message as Nautilus.  Fixes #136467.
5538
5539         * gtk/gtkfilechooserdefault.c (file_pane_create): Make the
5540         new-folder button say "Create Fo_lder" rather than "Create
5541         _Folder", so that the mnemonic doesn't conflict with the "Save in
5542         _folder" label.  Fixes #136975.
5543
5544 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
5545
5546         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Ref/sink the
5547         buttons.  Also, free them correctly upon failure.  Based on a
5548         patch by Morten Welinder, fixes #137956.
5549
5550 2004-04-05  Anders Carlsson  <andersca@gnome.org>
5551
5552         * gdk/gdk.c (gdk_arg_context_parse): Handle '--' correctly.
5553
5554 Fri Apr  2 17:57:33 2004  Jonathan Blandford  <jrb@redhat.com>
5555
5556         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set the height
5557         correctly for fixed height when inserting a node, #138082
5558
5559 2004-04-01  Federico Mena Quintero  <federico@ximian.com>
5560
5561         Fix #136077.
5562
5563         * gtk/gtkpathbar.h (struct _GtkPathBarClass): Add a
5564         "child_is_hidden" boolean argument to the "path-clicked" signal.
5565
5566         * gtk/gtkpathbar.c (struct _ButtonData): Added a file_is_hidden
5567         field.
5568         (make_directory_button): Take a file_is_hidden argument; put it in
5569         the ButtonData.
5570         (_gtk_path_bar_set_path): See whether each path component path is
5571         a hidden file.
5572         (gtk_path_bar_class_init): Add the file_is_hidden argument to the
5573         "path-clicked" signal.
5574         (button_clicked_cb): See if the downwards button represents a
5575         hidden file for the file_is_hidden argument in the signal
5576         emission.
5577
5578         * gtk/gtkmarshalers.list: Added a signal type VOID:POINTER,BOOLEAN.
5579
5580         * gtk/gtkfilechooserdefault.c
5581         (gtk_file_chooser_default_select_path): If we fail to switch
5582         folders, don't try to select the path in the file system model.
5583         Also, return the result from _gtk_file_system_model_path_do().
5584         (gtk_file_chooser_default_select_path): Turn on show_hidden in the
5585         file system model if we are asked to select a hidden file.
5586         (path_bar_clicked): Show hidden files based on whether the
5587         immediate downwards folder in the path bar is a hidden file
5588         itself.
5589         (struct _GtkFileChooserDefault): Added fields
5590         browse_files_popup_menu and browse_files_popup_menu_hidden_files_item.
5591         (create_file_list): Set an object data key of
5592         "GtkFileChooserDefault" on the tree view so that we can find the
5593         impl from the popup menu callbacks.  Also, hook up to the
5594         "button-press-event" and "popup-menu" signals in the file list to
5595         bring up a popup menu.
5596         (list_popup_menu_cb): New callback.
5597         (list_button_press_event_cb): New callback.
5598
5599         Fix #138763:
5600
5601         * gtk/gtkfilesystemmodel.c
5602         (_gtk_file_system_model_new): Oops, connect_object to
5603         "finished-loading".
5604
5605 2004-03-31  Tor Lillqvist  <tml@iki.fi>
5606
5607         * configure.in: Move AC_CANONICAL_HOST earlier, before the check
5608         for native Win32. (#136559, J. Ali Harlow)
5609
5610         * gdk/win32/gdkdrawable-win32.c (draw_arc): Use X11 semantics for
5611         angles. Thanks to Tim Newsham.
5612
5613 2004-03-29  Federico Mena Quintero  <federico@ximian.com>
5614
5615         Fix #137520.
5616
5617         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
5618         for an ::is_finished_loading() method and a ::finished_loading()
5619         signal at the end of the struct.
5620
5621         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
5622         "finished-loading" signal.
5623         (gtk_file_folder_is_finished_loading): New function.
5624
5625         * gtk/gtkfilesystemunix.c
5626         (gtk_file_folder_unix_is_finished_loading): Implement.
5627
5628         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
5629         slot for a "finished-loading" signal.
5630         (gtk_file_system_model_class_init): Create the "finished-loading"
5631         signal.
5632         (struct _GtkFileSystemModel): New field
5633         idle_finished_loading_source.  We emit the "finished-loading"
5634         signal in an idle if the root folder was done loading right in
5635         _gtk_file_system_model_new(), so that the caller has a chance to
5636         connect to the signal.
5637         (_gtk_file_system_model_new): Connect to the normal signals of the
5638         folder even if the initial _list_children() fails.  Also, see if
5639         the folder is finished loading; connect to the "finished-loading"
5640         signal otherwise.
5641         (gtk_file_system_model_finalize): Remove the idle handler.
5642
5643         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
5644         and connect to the model's "finished-loading" signal.
5645         (get_toplevel): New helper function.
5646         (error_message): Use get_toplevel().
5647         (trap_activate_cb): Likewise.
5648         (location_popup_handler): Likewise.
5649         (set_busy_cursor): New function.
5650         (browse_files_model_finished_loading_cb): New callback.
5651
5652 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
5653
5654         * gtk/gtkfilechooserdefault.c (check_preview_change): Just use the
5655         file under the cursor; we don't need the logic from
5656         GtkFileSelection after all.  Fixes #132255.
5657
5658 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
5659
5660         * gtk/gtkfilechooserdefault.c (location_entry_create): Fill the
5661         location entry with the display name of the file under the cursor
5662         for Open mode, or the typed filename in Save mode.
5663
5664 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
5665
5666         * gtk/gtkfilesystemwin32.c
5667         (filename_is_root): Bare drive designators (eg., "c:") are
5668         no longer considered as root filenames.  Fixed #137942
5669
5670 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
5671
5672         * gtk/gtkfilesystemwin32.c
5673         (gtk_file_system_win32_create_folder): Invert test for error in
5674         mkdir.  Fixes #137945
5675
5676 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
5677
5678         Fixed #138004 using Federico's code from #132327.
5679
5680         * gtk/gtkfilesystemwin32.c (struct _GtkFileSystemWin32): Add a
5681         folder_hash field to keep a list of live folder objects.
5682         (gtk_file_system_win32_init): Create the folder_hash.
5683         (gtk_file_system_win32_finalize): Destroy the folder_hash.
5684         (gtk_file_system_win32_get_folder): Ref and return an existing
5685         folder if we have it around, otherwise return a new folder object.
5686         (struct _GtkFileFolderWin32): Add a field for the parent file system.
5687         (gtk_file_folder_win32_finalize): Remove the folder from the file
5688         system's hash table.
5689         (gtk_file_system_win32_create_folder):  Emit "files-added" on the
5690         newly-created folder's parent.  Fixes #138004.
5691
5692 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
5693
5694         * gtk/gtkfilesystemwin32.c
5695         (gtk_file_system_win32_get_folder): Test that path is actually
5696         a directory and throw error if not. Fixed bug #137950
5697
5698 2004-03-22  J. Ali Harlow  <ali@juiblex.co.uk>
5699
5700         * gtk/gtkfilesystemwin32.c
5701         (gtk_file_system_win32_volume_get_display_name): Ignore empty
5702         volume labels; assume that GetVolumeInformation would fail if
5703         GetVolumeInformationW does; catches a small memory leak;
5704         pass the buffer size to GetVolumeInformationW in wide
5705         characters instead of bytes. Fixes bug #137543
5706         (list_volumes): Cope with the theoretical possibility of
5707         more than 26 logical drives. Fixes bug #137940
5708         (bookmarks_serialize): Now actually removes bookmarks.
5709         Fixes bug #137943
5710
5711 2004-03-22  Guntupalli Karunakar  <karunakar@freedomink.org>
5712
5713         * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.
5714
5715 2004-03-21  Tor Lillqvist  <tml@iki.fi>
5716
5717         * gtk/gtkfilesystemwin32.c
5718         (gtk_file_system_win32_volume_get_base_path): Include the
5719         backslash. Otherwise gtk_file_system_win32_path_to_uri() returns
5720         NULL for a volume base path, as g_filename_to_uri() requires an
5721         absolute path, and just a drive letter and colon isn't. (#137543)
5722
5723 2004-03-20  Hans Breuer  <hans@breuer.org>
5724
5725         * gtk/gtkfilesystemwin32.c : applied the undisputable and
5726         required [due to recent gtkfilesystem internal api semantic 
5727         changes] part of patches to fix bug #137543 (Tor Lillqvist,
5728         J. Ali Harlow)
5729
5730         * gdk/gdkevents-win32.c (handle_configure_event) :
5731              (gdk_event_translate), WM_WINDOWPOSCHANGED : initialize
5732         GdkWindowObject::x, y with screen coords to make 
5733         gdk_window_get_position () return the right thing and thus fix
5734         drag and drop positioning (e.g. Gimp tabs, fixes bug #137192)
5735
5736 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
5737
5738         * Revert the patch to #137520, as 2.4.1 is for conservative bug
5739         fixes only.  The patch is attached to the bug report, for
5740         reference.
5741
5742 2004-03-19  Morten Welinder  <terra@gnome.org>
5743
5744         * gtk/gtkfilechooserdefault.c
5745         (gtk_file_chooser_default_set_current_folder): Test existance of
5746         the path after checking for locality, if needed.
5747
5748 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
5749
5750         Fix #137520.
5751
5752         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
5753         for an ::is_finished_loading() method and a ::finished_loading()
5754         signal at the end of the struct.
5755
5756         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
5757         "finished-loading" signal.
5758         (gtk_file_folder_is_finished_loading): New function.
5759
5760         * gtk/gtkfilesystemunix.c
5761         (gtk_file_folder_unix_is_finished_loading): Implement.
5762
5763         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
5764         slot for a "finished-loading" signal.
5765         (gtk_file_system_model_class_init): Create the "finished-loading"
5766         signal.
5767         (struct _GtkFileSystemModel): New field
5768         idle_finished_loading_source.  We emit the "finished-loading"
5769         signal in an idle if the root folder was done loading right in
5770         _gtk_file_system_model_new(), so that the caller has a chance to
5771         connect to the signal.
5772         (_gtk_file_system_model_new): Connect to the normal signals of the
5773         folder even if the initial _list_children() fails.  Also, see if
5774         the folder is finished loading; connect to the "finished-loading"
5775         signal otherwise.
5776         (gtk_file_system_model_finalize): Remove the idle handler.
5777
5778         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
5779         and connect to the model's "finished-loading" signal.
5780         (get_toplevel): New helper function.
5781         (error_message): Use get_toplevel().
5782         (trap_activate_cb): Likewise.
5783         (location_popup_handler): Likewise.
5784         (set_busy_cursor): New function.
5785         (browse_files_model_finished_loading_cb): New callback.
5786
5787 Thu Mar 18 12:10:45 2004  Owen Taylor  <otaylor@redhat.com>
5788
5789         * gtk/gtktreeitem.c (gtk_tree_item_forall): Include 
5790         eventbox for expander. (#137564, reported by
5791         Jacques Garrigue)
5792
5793 2004-03-18  Guntupalli Karunakar  <karunakar@freedomink.org>
5794
5795         * mr.po: Added "mr" for Marathi to ALL_LINGUAS.
5796
5797 2004-03-17  Morten Welinder  <terra@gnome.org>
5798
5799         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Free
5800         volumes not actually put into the shortcut list.
5801
5802         * tests/prop-editor.c (object_changed): Plug leak.
5803
5804         * tests/testfilechooser.c (main): Plug some leaks and expose
5805         others.
5806
5807         * tests/prop-editor.c (create_prop_editor): Don't leak the tooltip
5808         object.  Fixed #136652.
5809
5810         * gtk/gtkfilechooserdefault.c (check_icon_theme): Do nothing if we
5811         have no screen.  Fixes #137260.
5812         (shortcuts_add_bookmark_from_path): Simplify using check_is_folder
5813         thereby fixing leak.  Fixes #137259.
5814
5815         * gtk/gtkpathbar.c (gtk_path_bar_forall): Make this work when the
5816         slider buttons have been destroyed.
5817         (gtk_path_bar_remove): Make this work for slider buttons too.
5818         Fixes #137257
5819
5820 2004-03-15  Morten Welinder  <terra@gnome.org>
5821
5822         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmark_from_path):
5823         Sanitize and plug leak.
5824         (check_icon_theme): Only do something if the widget has a screen.
5825
5826 Wed Mar 17 01:20:28 2004  Matthias Clasen  <maclas@gmx.de>
5827
5828         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
5829         Move the repositioning logic from _gtk_entry_completion() popup
5830         over here. Fixes #137355, reported by Niklas Knutsson.
5831