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