]> Pileus Git - ~andy/gtk/blob - ChangeLog
only remove the signal if the box exists.
[~andy/gtk] / ChangeLog
1 Thu May 27 00:07:47 2004  Jonathan Blandford  <jrb@gnome.org>
2
3         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): only remove the
4         signal if the box exists.
5
6 Wed May 26 23:26:51 2004  Matthias Clasen  <maclas@gmx.de>
7
8         Support insensitive cells in tree views and combo boxes:
9         
10         * gtk/gtkcellrenderer.h: 
11         * gtk/gtkcellrenderer.c: Add a ::sensitive property.
12
13         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
14         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
15         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render): 
16         Support drawing insensitive.
17
18         * gtk/gtkcellview.h: 
19         * gtk/gtkcellview.c (gtk_cell_view_get_cell_renderers): New 
20         function to obtain the cell renderers from a cell view. Also
21         export gtk_cell_view_set_cell_data().
22
23         * gtk/gtktreeselection.c (tree_column_is_sensitive):
24         * gtk/gtktreeselection.c (row_is_selectable): Helper functions
25         to determine whether all visible cells in a row are insensitive
26         and whether a row is selectable. A row is not selectable if the 
27         user function says so or if all visible cells are insensitive.
28         * gtk/gtktreeselection.c (_gtk_tree_selection_internal_select_node): 
29         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node): 
30         Use row_is_selectable().
31         
32         * gtk/gtkcombobox.c (row_is_sensitive): 
33         * gtk/gtkcombobox.c (tree_column_row_is_sensitive): 
34         * gtk/gtkcombobox.c (menu_row_is_sensitive): Helper functions
35         to determine row sensitivity in menu or list mode.
36
37         * gtk/gtkcombobox.c (update_menu_sensitivity): Helper function
38         to set up sensitivity menu items from the underlying rows.
39
40         * gtk/gtkcombobox.c (gtk_combo_box_popup): 
41         * gtk/gtkcombobox.c (gtk_combo_box_menu_button_press): Use
42         update_menu_sensitivity().
43                 
44         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Setup the cell
45         data funcs.
46
47         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Skip insensitive
48         rows.
49
50         * tests/testcombo.c (main): Make some rows insensitive.
51
52 2004-05-26  Robert Ögren  <gtk@roboros.com>
53
54         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Send key
55         modifiers (shift, ctrl etc) in button and motion events from the
56         tablet. (#143240)
57
58 2004-05-26  Robert Ögren  <gtk@roboros.com>
59
60         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): Simple
61         implementation for extended input devices using last known 
62         device state (#143237)
63
64 Tue May 25 21:54:00 2004  Matthias Clasen  <maclas@gmx.de>
65
66         * gtk/gtkframe.c: Move docs inline, fixing them on the
67         way.  (#143029, Steve Chaplin)
68
69 2004-05-11  Robert Ögren  <gtk@roboros.com>
70
71         * gdk/win32/gdkevents-win32.c (propagate): Don't propagate mouse
72         events to windows that want extended input events. (#142943)
73         (gdk_event_translate): Move check for extended input devices to
74         propagate, new parameter to propagate.
75         (gdk_pointer_grab, gdk_display_pointer_ungrab): Enable calls to
76         _gdk_input_(un)grab_pointer. (#142943)
77
78         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Check for
79         input grab. [Fix missing update of impl in "dijkstra" event
80         propagation loop] Drop the parallel "impl" pointer, just use a
81         cast. Don't propagate beyond windows that want normal input
82         events. (#142943)
83         (gdk_input_grab_pointer, gdk_input_ungrab_pointer): Limited
84         implementation of input grab. (#142943)
85
86 2004-05-22  Tor Lillqvist  <tml@iki.fi>
87
88         * gdk/win32/gdkinput-win32.c (print_lc): Remove duplicated
89         line. (Spotted by Benoît Carpentier.)
90
91 2004-05-18  Matthias Clasen  <mclasen@redhat.com>
92
93         * configure.in: Check for XFIXES extension.
94
95         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add 
96         a gboolean have_xfixes member.
97
98         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Register
99         XFIXES events and set have_xfixes.
100
101         * gdk/gdkevents.h (GdkEventType): Add GDK_OWNER_CHANGE.
102         (GdkEventOwnerChange): New event struct for owner change events.
103         (GdkOwnerChange): New enum for the reason field of GdkEventOwnerChange.
104         
105         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Translate 
106         XFixesSelectionNotify events into GdkEventOwnerChange events.
107         
108         * gdk/gdkdisplay.h:
109         * gdk/x11/gdkdisplay-x11.c (gdk_display_supports_selection_notification):
110         (gdk_display_request_selection_notification): New api 
111         to support selection ownership notification.
112
113         * gtk/gtkclipboard.h:
114         * gtk/gtkclipboard.c (_gtk_clipboard_handle_event): New private
115         api to handle owner change events.
116         (clipboard_peek): Refactored out the body of 
117         gtk_clipboard_get_for_display() for use in _gtk_clipboard_handle_event().
118
119         * gtk/gtkmain.c (gtk_main_do_event): Handle GDK_OWNER_CHANGE events
120         by calling _gtk_clipboard_handle_event().
121
122 2004-05-18  Matthias Clasen  <mclasen@redhat.com>
123
124         * gtk/gtkintl.h: Include glib/gi18n-lib.h and only define
125         the P_() macros ourselves.
126
127         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
128         Restrict the width of the popup to be no larger than the
129         monitor.  (#142678, DmD Ljungmark)
130
131         * gtk/gtkbutton.c: Go back to the initial fix for the 
132         focus-overdrawing problem, which was actually correct 
133         according to docs/widget_geometry.txt.
134
135         * gtk/gtkarrow.c (gtk_arrow_class_init): Bump the initial
136         arrow size from 11 to 15 to compensate for that.
137
138         * gtk/gtktextview.c (gtk_text_view_class_init): Document the
139         arguments of the ::move-cursor signal.  (#142725)
140
141 2004-05-17  Matthias Clasen  <mclasen@redhat.com>
142
143         Merged from 2.4:
144         
145         * gtk/gtkbutton.c (gtk_button_size_request) 
146         (gtk_button_size_allocate, _gtk_button_paint): Allocate
147         space for the focus rectangle only if necessary.  (#142668,
148         Michael Natterer)
149
150 Sun May 16 23:11:47 2004  Matthias Clasen  <maclas@gmx.de>
151
152         Merged from 2.4:
153         
154         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Remove two useless 
155         lines.  (#142479, Morten Welinder)
156
157 Sun May 16 22:27:17 2004  Matthias Clasen  <maclas@gmx.de>
158
159         * gtk/gtkintl.h (Q_): Add a Q_() macro. 
160
161         * gtk/gtkcellrendererprogress.h: Remove GTK_PROGRESS_CELL_UNKNOWN
162         and GTK_PROGRESS_CELL_FAILED. With the ability the set the label,
163         they are not really needed.
164
165         * gtk/gtkcellrendererprogress.c: Use the xpad and ypad properties
166         instead of hardwired padding, use Q_() for the default label, 
167         compute a reasonable minimal size.  (#142571, #142572, #142573,
168         Tommi Komulainen, Christian Persch)
169         
170 2004-05-15  Tor Lillqvist  <tml@iki.fi>
171
172         * gdk/win32/gdkdnd-win32.c: Put back the ref_count field in the
173         GdkDragContextPrivateWin32 struct (but inside ifdef OLE2_DND this
174         time). It is used by the OLE2_DND code, which is unfinished and
175         presumably horribly broken, but still, let's not make it not
176         compile on purpose. Silence some gcc warnings in the OLE2_DND
177         code.
178
179 2004-05-14  Matthias Clasen  <mclasen@redhat.com>
180
181         * gtk/gtktreeview.c (gtk_tree_view_tree_window_to_tree_coords): 
182         New function to go from tree window to tree coordinates, kept
183         static for now until we figure out the multiple coordinate
184         system mess in GtkTreeView API-wise.
185         (gtk_tree_view_scroll_to_cell): Transform the coordinates 
186         from tree window to tree coordinates, using the new function.
187         Previously, the x coordinate was wrongly transformed. (#142494)
188
189         * gdk/gdktypes.h (GdkModifierType): Add a comment about unused
190         bits.
191
192         * gtk/gtkstock.c (real_add, gtk_stock_lookup): Use an unused
193         modifier bit to mark stock item which need to be freed 
194         eventually.  (#140654, Michal Pasternak, Scott Tsai)
195
196 2004-05-11  Robert Ögren  <gtk@roboros.com>
197
198         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Add missing
199         call to g_object_ref in Wintab code. (#138341)
200
201         * gdk/win32/gdkinput-win32.c: Fix numerous Wintab problems
202         including unallocated buffers for event->motion.axes and
203         event->button.axes, unsigned wraparound problem in the code for
204         detecting missing press/release events and assigning min instead
205         of max when setting up axes.
206
207 2004-05-12  Matthias Clasen  <mclasen@redhat.com>
208
209         * tests/testtreeedit.c: Add a progress column.
210
211         * gtk/Makefile.am: Add gtkcellrendererprogress.[hc] in the right
212         places.
213
214         * gtk/gtk.h: Include gtkcellrendererprogress.h.
215
216         * gtk/gtkcellrendererprogress.[hc]: A progress cell renderer,
217         based on the one found in Epiphany.
218
219 2004-05-11  Michael Natterer  <mitch@gimp.org>
220
221         * gtk/gtkcombobox.c (gtk_combo_box_popup)
222         (gtk_combo_box_menu_button_press): don't allocate the popup
223         smaller than the combobox. Fixes bug #59660.
224
225 2004-05-11  Matthias Clasen  <mclasen@redhat.com>
226
227         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Revert the
228         previous change to this function, clarify the docs instead.
229
230         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Use
231         GTK_SELECTION_BROWSE.
232
233         * gtk/gtktreeview.c: Make hover selection work for 
234         GTK_SELECTION_BROWSE as well.
235
236 Tue May 11 00:38:25 2004  Matthias Clasen  <maclas@gmx.de>
237
238         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_class_init): 
239         Document the ::toggled signal.
240
241 Mon May 10 23:04:25 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
242
243         * gtk/gtkwidget.h: Add prototype for _gtk_widget_grab_notify()
244
245 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
246
247         * gtk/gtkwindow.c (get_screen_icon_info): Make static.
248
249         * gdk/gdkdisplay.c (singlehead_...): 
250         * gdk/x11/gdkkeys-x11.c (get_effective_keymap): 
251         * gdk/x11/gdkgeometry-x11.c (expose_serial_predicate): 
252         * gdk/x11/gdkdisplay-x11.c (escape_for_xmessage): Make static.
253
254         * gtk/gtktreeview.c (gtk_tree_view_set_fixed_height_mode): Add a 
255         note about COLUMN_FIXED restriction.
256
257         * gtk/gtkentrycompletion.c (gtk_entry_completion_list_button_press): 
258         Set the entry in the default handler of the ::match-selected signal.
259         (#137226)
260
261         * gtk/gtkcombobox.c (gtk_combo_box_menu_position_below): If we don't
262         do the move-selected-item below pointer thingie, do the 
263         place-below-or-above one.
264
265         * tests/testentrycompletion.c: Make the second example use the 
266         ::match-selected signal to make it actually work.
267
268         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): 
269         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Use hover selection
270         mode.  (#127648, Dave Bordoley)
271
272         * gtk/gtktreeview.h:
273         * gtk/gtktreeview.c: Add a new property "hover_selection", which 
274         when TRUE makes the selection follow the mouse. Also add setter
275         and getter for the fixed_height property.
276
277 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
278
279         * gtk/gtkcombobox.c (gtk_combo_box_popup) 
280         (gtk_combo_box_menu_button_press): Make sure the menu pops up
281         as wide as the combobox.  (#59660, Havoc Pennington)
282
283 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
284
285         * gtk/gtkcombobox.h: 
286         * gtk/gtkcombobox.c: Support tearoffable combo boxes (in menu 
287         mode). Add a new property, add-tearoffs, for this.  (#135956)
288
289         * gtk/gtkfontsel.c (list_row_activated): Make Return activate the
290         default button.  (#118921)
291
292 Mon May 10 15:03:50 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
293
294         * gtk/gtkwidget.c (_gtk_widget_grab_notify): New internal function
295         that emits the grab notify signal.
296         
297         * gtk/gtkmain.c (gtk_grab_notify_foreach): Use it here.
298
299 Mon May 10 00:48:08 2004  Matthias Clasen  <maclas@gmx.de>
300
301         * gtk/gtkmenu.c: Make destruction of a torn off menu work 
302         like un-tearing off.
303
304 Sun May  9 21:05:38 2004  Matthias Clasen  <maclas@gmx.de>
305
306         Merge from 2.4:
307
308         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
309         Allow to suppress the stock accelerator by using "".  (#142196,
310         David A Knight)
311         
312 Sun May  9 02:01:13 2004  Matthias Clasen  <maclas@gmx.de>
313
314         Merge from 2.4:
315         
316         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): 
317         In list mode, accept the same mouse/wheel bindings on 
318         the cellview as on the button.  (#136967)
319
320 Sun May  9 01:25:37 2004  Matthias Clasen  <maclas@gmx.de>
321
322         * gtk/gtkiconfactory.c (add_to_cache): Actually count the
323         cached icons.  (#135888, Crispin Flowerday)
324
325 Sun May  9 00:03:03 2004  Matthias Clasen  <maclas@gmx.de>
326
327         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Make sure
328         that we actually return menus for nodes of type menu, not the
329         menuitems they're attached to.
330
331 Sat May  8 22:50:55 2004  Matthias Clasen  <maclas@gmx.de>
332
333         * gtk/gtkactiongroup.c (gtk_action_group_set_translation_domain): 
334         Add a note regarding UTF-8 requirements, proposed by 
335         Mariano Suárez-Alvarez.
336
337 Sat May  8 22:43:11 2004  Matthias Clasen  <maclas@gmx.de>
338
339         * gtk/gtktearoffmenuitem.h: 
340         * gtk/gtktearoffmenuitem.c: Put the torn_off flag back
341         into the GtkTearoffMenuItem struct, since it is used
342         by the Gimp, and keep it synchronized with the 
343         tearoff_state property of the parent menu.
344
345 2004-05-08  Hans Breuer  <hans@breuer.org>
346
347         * gtk/gtkfilesystemwin32.c (extract_icon) : finally also
348         create the correct mask for 'pseudo mime' icons
349
350         * gdk/win32/gdkwindow-win32.c(show_window_internal) : also
351         take focus_on_map into account
352
353         * gtk/gtkselection.c : g_message() only with DEBUG_SELECTION
354
355         * gtk/gtkactiongroup.c gtk/gtkcombobox.c : 
356         ... must return a value
357
358         * gdk/gdk.def gtk/gtk.def demos/gtk-demo/makefile.msc.in : updated
359
360 2004-05-07  Matthias Clasen  <mclasen@redhat.com>
361
362         * gtk/gtkbutton.c (gtk_button_size_allocate): Don't let the child
363         draw over the focus rectangle.
364
365         * gtk/gtkhsv.c: Draw focus indication in the color wheel using
366         standard focus style.  (#63071, Bill Haneman, idea for new
367         style by Owen Taylor)
368
369         * gtk/gtkstyle.c (gtk_default_draw_focus): Support drawing on
370         focus on the colorwheel via details.
371
372 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
373
374         Merge from 2.4:
375         
376         * gtk/gtkcombobox.c (gtk_combo_box_menu_state_changed): Remove
377         this no longer needed signal handler.  (#141817, Paul Pogonyshev)
378
379 Fri May  7 00:41:46 2004  Matthias Clasen  <maclas@gmx.de>
380
381         * gtk/gtktearoffmenuitem.h: 
382         * gtk/gtktearoffmenuitem.c: Make the tearoff 
383         functionality model/view, the tearoffmenuitem being
384         the view and the tearoff_state property of the menu
385         being the model.  (#101185, Owen Taylor)
386
387         * gtk/gtkmenu.c: Add a tearoff_state property.
388
389 Thu May  6 23:52:13 2004  Matthias Clasen  <maclas@gmx.de>
390
391         Merge from 2.4:
392
393         * gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also 
394         popup the submenu for items in torn off menus.  (#122051)
395
396 2004-05-06  Sven Neumann  <sven@gimp.org>
397
398         * gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
399         position the title lable next to the arrow just as we do for LTR
400         rendering. Fixes bug #141825.
401
402 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
403
404         * docs/RELEASE-HOWTO: Document the new policy of
405         bumping version numbers after release.
406
407         * configure.in: Bump version number to 2.5.0.
408
409 2004-05-06  Padraig O'Briain  <padraig.obriain@sun.com>
410
411         * gtk/gtkmenu.h:
412         * gtk/gtkmenu.c: Add new function gtk_menu_get_for_attach_widget.
413         (bug #113112).
414
415 Thu May  6 00:24:11 2004  Matthias Clasen  <maclas@gmx.de>
416
417         * gtk/gtkactiongroup.h: 
418         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): 
419         New function to translate a string with translate_func.
420         (#135740)
421
422 Thu May  6 00:02:21 2004  Matthias Clasen  <maclas@gmx.de>
423
424         * gtk/gtkcombobox.c (gtk_combo_box_get_wrap_width): 
425         (gtk_combo_box_get_row_span_column): 
426         (gtk_combo_box_get_column_span_column): Add missing getters
427         for readwrite properies. (#135649)
428
429 Wed May  5 23:42:42 2004  Matthias Clasen  <maclas@gmx.de>
430
431         * gtk/gtkcombobox.h: 
432         * gtk/gtkcombobox.c (gtk_combo_box_get_active_text): 
433         Add gtk_combo_box_get_active_text() convenience 
434         function. (#136372, Christian Neumeir, patch by Olivier Andrieu) 
435
436 2004-05-05  Elijah Newren  <newren@math.utah.edu>
437
438         Changes to support do-not-focus-on-map hint in conjunction with
439         _NET_WM_USER_TIME (#115650):
440
441         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a new boolean
442         field focus_on_map
443         
444         * gdk/gdkwindow.h (gdk_window_set_accept_focus): New function to
445         set it.
446
447         * gtk/gtkwindow.[hc]: Add a boolean property "focus_on_map"
448         and gtk_window_get_focus_on_map() and gtk_window_set_focus_on_map().
449
450         * gdk/win32/gdkwindow-win32.c (gdk_window_new): 
451         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new): 
452         * gdk/x11/gdkwindow-x11.c (gdk_window_new):
453         Initialize the focus_on_map field to TRUE.
454
455         * gdk/win32/gdkwindow-win32.c (gdk_window_set_focus_on_map): 
456         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_focus_on_map): 
457         * gdk/x11/gdkwindow-x11.c (gdk_window_set_focus_on_map): 
458         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window):
459         Implementations for the various backends. The Win32 and linux-fb
460         implementations set the focus_on_map field, but don't use it yet
461         to actually implement noinput windows. The X implementation sets
462         _NET_WM_USER_TIME to 0 if focus_on_map is FALSE (see the EWMH).
463
464         * gdk/x11/gdkwindow-x11.h: 
465         * gdk/x11/gdkevents-x11.c (set_user_time): 
466         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
467         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_set_user_time): 
468         s/_gdk_x11_window_set_user_time/gdk_x11_window_set_user_time/,
469         since we want that function to be part of the public API.
470
471 Wed May  5 22:20:21 2004  Matthias Clasen  <maclas@gmx.de>
472
473         Merge from 2.4:
474         
475         * gtk/gtkiconfactory.c (icon_source_clear): Don't
476         call g_free() on a pixbuf.  (#141961, Crispin Flowerday) 
477
478 2004-05-05  Matthias Clasen  <mclasen@redhat.com>
479    
480         Merge from 2.4:
481         
482         * gtk/gtkuimanager.c (print_node): Make the output 
483         parseable.  (#141929, Sven Neumann)
484
485 2004-05-05  Tor Lillqvist  <tml@iki.fi>
486
487         * gdk/win32/gdkdnd-win32.c (gdk_drag_find_window_for_screen): Add
488         multi-monitor offset. (#141842, John Ehresman)
489
490 2004-05-04  Federico Mena Quintero  <federico@ximian.com>
491
492         Fixes #139562, based on a patch by Christian Neumair.
493
494         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): Add
495         a filter_combo_hbox field to contain the filter combo.
496         (show_filters): Show/hide the filter_combo_hbox.
497         (create_filename_entry_and_filter_combo): Removed.
498         (file_pane_create): Create the filter_combo_hbox here.
499
500 2004-05-04  Matthias Clasen  <mclasen@redhat.com>
501
502         * modules/input/gtkimcontextxim.c: Fix the recent
503         string_conversion_callback change to work on 
504         Solaris.  (#141190, Padraig O'Briain)
505
506         * gtk/gtkselection.c: Disable debug logging again.
507
508 2004-05-03  Matthias Clasen  <mclasen@redhat.com>
509
510         * gtk/gtkselection.c: Make the chunk size for 
511         incremental transfers depend on the maximal request 
512         size, capped at 256k. This should allow most selections
513         to be transferred nonincrementally, avoiding many
514         roundtrips and protocol overhead.
515
516 2004-05-03  Federico Mena Quintero  <federico@ximian.com>
517
518         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Call
519         g_signal_new() correctly and initialize the signal fields.  Fixes
520         #141749; patch based on Michael Natterer's.
521
522 u2004-05-03  Matthias Clasen  <mclasen@redhat.com>
523
524         * gtk/gtkselection.c (_gtk_selection_request): Fix
525         a debug message to show correct information.
526         (_gtk_selection_incr_event): Make INCRemental transfer
527         of MULTIPLE targets work. This was broken since 1997!
528
529 2004-05-02  Hans Breuer  <hans@breuer.org>
530
531         * gdk/win32/gdkdrawable-win32.c (draw_segments) : don't
532         modify the passed in GdkSegment(s) in place, we may get
533         them again to draw at the same place. Fixes bug #129095, 
534         bug #137177, ...
535         (draw_segments) draw the end pixel again to get the 
536         pixmap mask right, fixes bug #126710, #130202
537
538         * gdk/win32/gdkwindow-win32.c : use SetForegroundWindow,
539         fixes bug #106013, John Ehresman
540
541         * gtk/makefile.msc.in : don't try to link gtk.res but
542         use gtk-win32.res (as supposed to be fixed below :)
543
544 2004-05-01  Hans Breuer  <hans@breuer.org>
545
546         * tests/Makefile.am : tests/makefile.msc is in CVS for
547         a long time, finally added to EXTRA_DIST : fixes bug 
548         #141334, John Ehresman
549
550 2004-04-30  Matthias Clasen  <mclasen@redhat.com>
551
552         * === Released 2.4.1 ===
553
554         * configure.in: Version 2.4.1, interface age 1. 
555
556         * NEWS: Updates
557
558 2004-04-29  Federico Mena Quintero  <federico@ximian.com>
559
560         Fixes #140412.
561
562         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): New
563         function; moved the code over from
564         remove_bookmark_button_clicked_cb().
565         (remove_selected_bookmarks): Now, getting a non-removable bookmark
566         is not an error, as we may be called as a result of hitting the
567         Delete key.
568         (shortcuts_key_press_event_cb): New handler; delete the bookmark
569         if the user presses Backspace, Delete, or KP_Delete.
570
571 2004-04-29  Matthias Clasen  <mclasen@redhat.com>
572
573         * gtk/gtkaction.c (closure_accel_activate): Use
574         _gtk_action_emit_activate() instead of directly
575         emitting the activate signal.  (#141429, Jody Goldberg)
576
577         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
578         Warn people when the accelerator can not be 
579         parsed.  (#141429, Jody Goldberg)
580
581 2004-04-29  Matthias Clasen  <mclasen@redhat.com>
582
583         * tests/testentrycompletion.c (main): Add a missing 
584         cat.  (#141070, Chris Sherlock)  
585
586         * gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
587         variable.  (#141022, Chris Sherlock)
588         
589         * gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
590         cast.  (#141013, Chris Sherlock)
591
592         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
593         unused variable.  (#141011, Chris Sherlock)
594
595 2004-04-29  Tor Lillqvist  <tml@iki.fi>
596
597         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory
598         leak. (#140775, John Ehresman)
599
600 Thu Apr 29 01:09:50 2004  Matthias Clasen  <maclas@gmx.de>
601
602         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): Use depth - 1
603         to index the cached gcs, not depth.  (#139494)
604
605 2004-04-28  Matthias Clasen  <mclasen@redhat.com>
606
607         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): Docs typo fix.
608
609 Sun Apr 25 15:36:02 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
610
611         * gtk/gtktoolbutton.c (gtk_tool_button_set_label_widget): Fix
612         cut'n'paste-o from previous commit. (#141046, Torsten Schoenfeld).
613
614 2004-04-24  Theppitak Karoonboonyanan  <thep@linux.thai.net>
615
616         Patch to add support for string conversion callbacks to
617         GtkIMContextXIM (#101814)
618
619         * modules/input/gtkimcontextxim.c: Set the string conversion callback
620         if supported by the XIC.
621
622         (struct _GtkIMContextXIM): Add string_conversion_callback member.
623
624         (struct _GtkXIMInfo, setup_im): Check and keep flag inidicating
625         whether string conversion callback is supported.
626
627         (gtk_im_context_get_ic, +set_string_conversion_callback,
628         +string_conversion_callback): Also initialize string conversion
629         callback, if supported, along with the IC initialization.
630
631         * modules/input/imxim.c: Make "xim" module default for Thai as well.
632
633 2004-04-23  Matthias Clasen  <mclasen@redhat.com>
634
635         * gtk/gtkclipboard.c (gtk_clipboard_wait_for_targets): Correctly
636         initialize targets.  (#139883, John Finlay)
637
638         * gdk/gdkdraw.c (gdk_draw_drawable): Small doc improvement. 
639
640         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected_rows): 
641         Don't recommend gtk_tree_row_reference_new_proxy().  (#138309,
642         Tim-Philipp Müller)
643
644         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_set_cell_data): 
645         Remove an excessive g_return_if_fail().
646
647         * gdk/x11/gdkevents-x11.c (set_user_time): Make set_user_time()
648         static.
649         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
650         _-prefix calls of gdk_x11_window_set_user_time().
651
652 2004-04-22  Matthias Clasen  <mclasen@redhat.com>
653
654         * gtk/gtkuimanager.c (update_node): Make sure the separators 
655         used to demarkate placeholder ends don't show up on 
656         show_all().  (#140496, Murray Cumming)
657
658         * gtk/gtkspinbutton.c (spin_button_at_limit): Make spinbuttons
659         work with negative increments.  (#137975, Tim Gerla)
660
661 Wed Apr 21 21:38:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
662
663         * gtk/gtktoolbutton.c (gtk_tool_button_set_label_widget,
664         gtk_tool_button_set_icon_widget): Remove the old widget from the
665         tool button before overwriting it with the new widget.
666
667         (#140508, Todd Goyen)
668         
669 2004-04-22  Tor Lillqvist  <tml@iki.fi>
670
671         Fix the file chooser on Windows. I can't make it misbehave or
672         crash any more now. But presumably there are still corner cases
673         not handled. I haven't really checked behaviour of UNC paths, for
674         instance.
675
676         * gtk/gtkfilesystemwin32.c: Accept both backslash and slash in
677         several places. Use G_IS_DIR_SEPARATOR macro (which could be added
678         to GLib in 2.6).
679
680         (gtk_file_system_win32_get_parent): Like the Unix version, assert
681         filename is absolute, and avoid one unnecessary string allocation
682         and freeing.
683         
684         (canonicalize_filename,gtk_file_system_win32_parse): Handle drive
685         letters more correctly.
686
687         (gtk_file_system_win32_render_icon): Assure correct syntax is used
688         for root folder of a drive. (#137962, Morten Welinder)
689
690         (filename_is_some_root): New function that accepts also root
691         without any drive specified.
692
693         (filename_is_drive_root): Rename from filename_is_root.
694
695         * gtk/gtkfilechooserentry.c (completion_match_func): Casefold on
696         Windows.
697
698 2004-04-21  Matthias Clasen  <mclasen@redhat.com>
699
700         * gtk/gtkentry.c (gtk_entry_completion_timeout): Pop down the 
701         completion window if there are no completions anymore.
702
703         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
704         Don't call gtk_tree_view_scroll_to_cell() on an empty tree view. 
705         It doesn't like that.  (#140642, Christian Persch)
706
707         * demos/gtk-demo/expander.c (do_expander): A new demo.
708
709         * demos/gtk-demo/Makefile.am (demos): Add expander.c.
710
711 2004-04-20  Matthias Clasen  <mclasen@redhat.com>
712
713         * gtk/gtktextview.c (gtk_text_view_allocate_children): Make
714         sure anchored children get size allocated, even if the layout
715         is valid.  (#122323, Andrew E. Makeev)
716         (gtk_text_view_scroll_pages): 
717         (gtk_text_view_scroll_hpages): Don't scroll to cursor position
718         if we already have pending scrolls. Bandaid fix for #78513.
719
720 Mon Apr 19 17:59:17 2004  Owen Taylor  <otaylor@redhat.com>
721
722         * INSTALL.in: Update libpng and libjpeg URLs, remove
723         note about building without since that's not the normal
724         case.
725
726 Sun Apr 11 09:45:11 2004  Owen Taylor  <otaylor@redhat.com>
727
728         * gtk/gtkicontheme.c (load_themes): Fix a couple of typos in
729         handling of SVG/non-SVG unthemed icons.
730
731 2004-04-19  Morten Welinder  <terra@gnome.org>
732
733         * gtk/gtktoolbar.c (gtk_toolbar_focus): Don't leak list of
734         children.  (#140523)
735
736 2004-04-19  Matthias Clasen  <mclasen@redhat.com>
737
738         * gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag): 
739         Don't stop the iteration up to the tag_root too 
740         early.  (#109945, Dongho Shin)
741
742 Sun Apr 18 17:06:03 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
743
744         * gdk/x11/gdkkeys-x11.c (get_effective_keymap): Make
745         gdk_keymap_translate_keyboard_state() handle NULL
746         keymaps. (#139715, Torsten Schoenfeld).
747
748 Sun Apr 18 16:59:21 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
749
750         * configure.in: Don't erase GDK_EXTRA_CFLAGS. Fixes bug 139586,
751         reported by Pedro RODRIGUEZ, about compilation problems when
752         Xcursor is installed in a non-standard location.
753
754 Sun Apr 18 16:15:15 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
755
756         Support for _NET_WM_USER_TIME (bug 115650). Patch by Elijah
757         Newren.
758         
759         * gdk/x11/gdkwindow-x11.[ch]: Add new internal function
760         _gdk_x11_set_user_time() to set the _NET_WM_USER_TIME property.
761
762         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add user_time field
763
764         * gdk/x11/gdkdisplay-x11.c: Add _NET_WM_USER_TIME to list of
765         precached atoms.
766         
767         * gdk/x11/gdkinput-x11.c, gdk/x11/gdkevents-x11.c: Set the
768         property on user interaction.
769
770 2004-04-15  Federico Mena Quintero  <federico@ximian.com>
771
772         * gtk/gtkfilesel.c (open_new_dir): Tell the user to use
773         G_FILENAME_ENCODING, not G_BROKEN_FILENAMES.  Fixes #114065.
774
775         * gtk/gtkfilechooserdefault.c (split_uris): Use a variant of the
776         code from gtkfilesel.c to parse a "text/uri-list" blob.  Fixes
777         #140126.
778
779 2004-04-15  Matthias Clasen  <mclasen@redhat.com>
780
781         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
782         * gtk/gtkbutton.c (gtk_button_class_init): Doc fixes.
783
784 2004-04-14  Matthias Clasen  <mclasen@redhat.com>
785
786         * gtk/gtkcombobox.c: 
787         * gtk/gtkwidget.c: 
788         Make all style properties readonly.
789
790 2004-04-14  Matthias Clasen  <mclasen@redhat.com>
791
792         * gtk/gtkcolorsel.c: Add a11y relations between the color
793         wheel and the spin buttons.  (#132745, Padraig O'Briain)
794
795         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
796         the meaning of size == -1.
797
798         * gtk/gtkwidget.c (gtk_widget_render_icon): Explicitly accept  
799         a size of -1.  (#137436, Brian Cameron)
800
801         * gtk/gtkcombobox.c: Make the arrow and separator regular
802         children of an hbox inside the button, and propagate state
803         changes from the button to the cell view.  (part of the fix
804         for #138650, should also fix #137535)
805
806         * gtk/gtkcellview.c (gtk_cell_view_expose): Pass the PRELIT
807         state to gtk_cell_renderer_render() when prelighted. (part 
808         of the fix for #138650)
809
810         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
811         Use PRELIGHT state when appropriate.  (part of the fix for 
812         #138650)
813
814         * gtk/gtkcombobox.c (gtk_combo_box_relayout): Don't spit 
815         out warnings if called before the combo box is 
816         realized.  (#139742, Philip Langdale)
817
818 Wed Apr 14 03:45:39 2004  Jonathan Blandford  <jrb@gnome.org>
819
820         * gtk/gtktreeview.c (gtk_tree_view_expose): propagate expose
821         events to children.
822
823 Wed Apr 14 03:32:58 2004  Jonathan Blandford  <jrb@gnome.org>
824
825         * gtk/gtkpathbar.c (make_directory_button): remove spurious
826         gtk_box_pack_start.
827
828 Tue Apr 13 16:19:23 2004  Jonathan Blandford  <jrb@redhat.com>
829
830         * gtk/gtkpathbar.c (make_directory_button): patch from Owen to
831         make the buttons sized by a bold label.  This makes the text
832         'swim' a little, but stops the buttons from resizing, #137210
833
834 2004-04-13  Matthias Clasen  <mclasen@redhat.com>
835
836         * gtk/gtkuimanager.c (get_child_node): Don't crash if a node 
837         has no name.
838         (start_element_handler): Accept separators without unique 
839         names.  (#133302, Anders Carlsson)
840
841         * gtk/gtkactiongroup.c (gtk_action_group_add_action): Document
842         possible accelerator gotcha when using this function.  (#139641, 
843         Christian Persch)
844
845         * gtk/gtkuimanager.c (node_remove_ui_reference): Don't leak
846         list nodes.  (#138862, Morten Welinder)
847
848 Tue Apr 13 12:24:49 2004  Jonathan Blandford  <jrb@redhat.com>
849
850         * gtk/gtktreeview.c (gtk_tree_view_destroy): remove unused
851         variable.
852         (gtk_tree_view_button_press): If we activated the row we don't
853         want to grab focus back, as moving focus to another widget is
854         pretty common, #138458
855
856 2004-04-12  Federico Mena Quintero  <federico@ximian.com>
857
858         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Added
859         documentation to all the signals.
860
861 2004-04-12  Matthias Clasen  <mclasen@dhcp64-228.boston.redhat.com>
862
863         * gtk/gtkcombobox.c (gtk_combo_box_unset_model): Don't unref
864         model if it is NULL. (#139770)
865
866         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Typo fix.
867
868         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): Don't add
869         a shadow inside the scrolled window, add it around the vbox.
870
871         * gtk/gtkentryprivate.h: 
872         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
873         Return a boolean indicating whether the popup is positioned above 
874         or below. Scroll the completions to the beginning or the end, 
875         depending on the positioning.
876
877         * gtk/gtkentry.c (gtk_entry_completion_key_press): Make keynav
878         wrap around in the entry completion popup, and allow GDK_UP to 
879         enter the popup.  (#137440)
880
881 2004-04-12  Matthias Clasen  <mclasen@redhat.com>
882
883         * gtk/gtkentry.c (gtk_entry_size_request): Make sure the style is 
884         there before using it.
885
886 Sun Apr 11 15:08:45 2004  Jonathan Blandford  <jrb@gnome.org>
887
888         * gtk/gtktreeprivate.h: Moved search entries into priv data.
889
890         * gtk/gtktreeview.c: Prep for type-ahead support.
891
892         (gtk_tree_view_destroy): Destroy the search window explicitly.
893         (gtk_tree_view_key_press): Minor change; prep for type-ahead
894         (gtk_tree_view_ensure_interactive_directory): New function
895         (gtk_tree_view_focus_out): Rework to handle new entry life-cycle.
896         (gtk_tree_view_real_start_interactive_search): rework
897         (gtk_tree_view_search_dialog_hide): ditto
898         (gtk_tree_view_search_delete_event): ditto
899         (gtk_tree_view_search_button_press_event): ditto
900         (gtk_tree_view_search_key_press_event): ditto
901         (gtk_tree_view_search_move): ditto
902         (gtk_tree_view_search_init): ditto
903
904         * gtk/gtktreeviewcolumn.c:
905         (gtk_tree_view_column_cell_layout_clear): remove unused variable.
906
907         * tests/testfilechooser.c: (main): change
908
909 2004-04-11  Hans Breuer  <hans@breuer.org>
910
911         * gdk/win32/gdkspawn-win32.c : workaround for bug #137496,
912         the real fix would involve just another small API breakage,
913         i.e. gdk_spawn_* using GPid not just gint.
914
915         * gtk/makefile.msc.in : build gtk-win32.res, not gtk.res
916
917 2004-04-10  Tor Lillqvist  <tml@iki.fi>
918
919         * gdk/win32/gdkkeys-win32.c (gdk_keymap_translate_keyboard_state):
920         If both Shift and CapsLock pressed, ignore the shift only for
921         letters (that would have been affected by the CapsLock). (#139095)
922
923         * gdk/win32/gdkglobals-win32.c: Disable tablet support by default,
924         seems to be even buggier now than it used to be. (#138341)
925         Initialize _gdk_input_ignore_wintab to TRUE.
926
927         * gdk/win32/gdkmain-win32.c: Add --use-wintab switch and
928         GDK_USE_WINTAB environment variable to turn on tablet support.
929
930 2004-04-09  Christian Persch  <chpe@cvs.gnome.org>
931
932         * gtk/gtkuimanager.c: (gtk_ui_manager_insert_action_group),
933         (gtk_ui_manager_remove_action_group): Terminate
934         g_object_[dis]connect() calls with NULL instead of 0.
935         Fixes #138997.
936
937 2004-04-09  Guntupalli Karunakar  <karunakar@freedomink.org>
938
939         * configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
940
941 2004-04-07  Federico Mena Quintero  <federico@ximian.com>
942
943         Fix #132500.
944
945         * gtk/gtkfilesystem.c (gtk_file_system_parse): Ensure that the
946         passed-in 'str' is not NULL.
947
948         * gtk/gtkfilesystemunix.c (expand_tilde): New helper function;
949         expands "~/" or "~foo/" at the beginning of a filename.
950         (gtk_file_system_unix_parse): Use expand_tilde() before doing
951         anything else.
952
953         * gtk/gtkfilechooserentry.c
954         (gtk_file_chooser_entry_maybe_update_directory): Take in a
955         force_reload argument.
956         (gtk_file_chooser_entry_changed): If gtk_file_system_parse()
957         returns an error, set the file_part_pos to -1.
958         (load_directory_callback): Only populate the model if the
959         file_part_pos is not -1.
960
961 2004-04-06  Pablo Saratxaga  <pablo@mandrakesoft.com>
962
963         * configure.in: Added Icelandic (is) to ALL_LINGUAS
964
965 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
966
967         * gtk/gtkfilechooserdefault.c (location_popup_handler): Use a
968         title for SAVE and CREATE_FOLDER modes.  Fixes #137272.
969
970         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_make_path): Look
971         for G_DIR_SEPARATOR in the display_name, and err out if it is
972         present; use the same error message as Nautilus.  Fixes #136467.
973
974         * gtk/gtkfilechooserdefault.c (file_pane_create): Make the
975         new-folder button say "Create Fo_lder" rather than "Create
976         _Folder", so that the mnemonic doesn't conflict with the "Save in
977         _folder" label.  Fixes #136975.
978
979 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
980
981         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Ref/sink the
982         buttons.  Also, free them correctly upon failure.  Based on a
983         patch by Morten Welinder, fixes #137956.
984
985 2004-04-05  Anders Carlsson  <andersca@gnome.org>
986
987         * gdk/gdk.c (gdk_arg_context_parse): Handle '--' correctly.
988
989 Fri Apr  2 17:57:33 2004  Jonathan Blandford  <jrb@redhat.com>
990
991         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set the height
992         correctly for fixed height when inserting a node, #138082
993
994 2004-04-01  Federico Mena Quintero  <federico@ximian.com>
995
996         Fix #136077.
997
998         * gtk/gtkpathbar.h (struct _GtkPathBarClass): Add a
999         "child_is_hidden" boolean argument to the "path-clicked" signal.
1000
1001         * gtk/gtkpathbar.c (struct _ButtonData): Added a file_is_hidden
1002         field.
1003         (make_directory_button): Take a file_is_hidden argument; put it in
1004         the ButtonData.
1005         (_gtk_path_bar_set_path): See whether each path component path is
1006         a hidden file.
1007         (gtk_path_bar_class_init): Add the file_is_hidden argument to the
1008         "path-clicked" signal.
1009         (button_clicked_cb): See if the downwards button represents a
1010         hidden file for the file_is_hidden argument in the signal
1011         emission.
1012
1013         * gtk/gtkmarshalers.list: Added a signal type VOID:POINTER,BOOLEAN.
1014
1015         * gtk/gtkfilechooserdefault.c
1016         (gtk_file_chooser_default_select_path): If we fail to switch
1017         folders, don't try to select the path in the file system model.
1018         Also, return the result from _gtk_file_system_model_path_do().
1019         (gtk_file_chooser_default_select_path): Turn on show_hidden in the
1020         file system model if we are asked to select a hidden file.
1021         (path_bar_clicked): Show hidden files based on whether the
1022         immediate downwards folder in the path bar is a hidden file
1023         itself.
1024         (struct _GtkFileChooserDefault): Added fields
1025         browse_files_popup_menu and browse_files_popup_menu_hidden_files_item.
1026         (create_file_list): Set an object data key of
1027         "GtkFileChooserDefault" on the tree view so that we can find the
1028         impl from the popup menu callbacks.  Also, hook up to the
1029         "button-press-event" and "popup-menu" signals in the file list to
1030         bring up a popup menu.
1031         (list_popup_menu_cb): New callback.
1032         (list_button_press_event_cb): New callback.
1033
1034         Fix #138763:
1035
1036         * gtk/gtkfilesystemmodel.c
1037         (_gtk_file_system_model_new): Oops, connect_object to
1038         "finished-loading".
1039
1040 2004-03-31  Tor Lillqvist  <tml@iki.fi>
1041
1042         * configure.in: Move AC_CANONICAL_HOST earlier, before the check
1043         for native Win32. (#136559, J. Ali Harlow)
1044
1045         * gdk/win32/gdkdrawable-win32.c (draw_arc): Use X11 semantics for
1046         angles. Thanks to Tim Newsham.
1047
1048 2004-03-29  Federico Mena Quintero  <federico@ximian.com>
1049
1050         Fix #137520.
1051
1052         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
1053         for an ::is_finished_loading() method and a ::finished_loading()
1054         signal at the end of the struct.
1055
1056         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
1057         "finished-loading" signal.
1058         (gtk_file_folder_is_finished_loading): New function.
1059
1060         * gtk/gtkfilesystemunix.c
1061         (gtk_file_folder_unix_is_finished_loading): Implement.
1062
1063         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
1064         slot for a "finished-loading" signal.
1065         (gtk_file_system_model_class_init): Create the "finished-loading"
1066         signal.
1067         (struct _GtkFileSystemModel): New field
1068         idle_finished_loading_source.  We emit the "finished-loading"
1069         signal in an idle if the root folder was done loading right in
1070         _gtk_file_system_model_new(), so that the caller has a chance to
1071         connect to the signal.
1072         (_gtk_file_system_model_new): Connect to the normal signals of the
1073         folder even if the initial _list_children() fails.  Also, see if
1074         the folder is finished loading; connect to the "finished-loading"
1075         signal otherwise.
1076         (gtk_file_system_model_finalize): Remove the idle handler.
1077
1078         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
1079         and connect to the model's "finished-loading" signal.
1080         (get_toplevel): New helper function.
1081         (error_message): Use get_toplevel().
1082         (trap_activate_cb): Likewise.
1083         (location_popup_handler): Likewise.
1084         (set_busy_cursor): New function.
1085         (browse_files_model_finished_loading_cb): New callback.
1086
1087 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
1088
1089         * gtk/gtkfilechooserdefault.c (check_preview_change): Just use the
1090         file under the cursor; we don't need the logic from
1091         GtkFileSelection after all.  Fixes #132255.
1092
1093 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
1094
1095         * gtk/gtkfilechooserdefault.c (location_entry_create): Fill the
1096         location entry with the display name of the file under the cursor
1097         for Open mode, or the typed filename in Save mode.
1098
1099 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
1100
1101         * gtk/gtkfilesystemwin32.c
1102         (filename_is_root): Bare drive designators (eg., "c:") are
1103         no longer considered as root filenames.  Fixed #137942
1104
1105 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
1106
1107         * gtk/gtkfilesystemwin32.c
1108         (gtk_file_system_win32_create_folder): Invert test for error in
1109         mkdir.  Fixes #137945
1110
1111 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
1112
1113         Fixed #138004 using Federico's code from #132327.
1114
1115         * gtk/gtkfilesystemwin32.c (struct _GtkFileSystemWin32): Add a
1116         folder_hash field to keep a list of live folder objects.
1117         (gtk_file_system_win32_init): Create the folder_hash.
1118         (gtk_file_system_win32_finalize): Destroy the folder_hash.
1119         (gtk_file_system_win32_get_folder): Ref and return an existing
1120         folder if we have it around, otherwise return a new folder object.
1121         (struct _GtkFileFolderWin32): Add a field for the parent file system.
1122         (gtk_file_folder_win32_finalize): Remove the folder from the file
1123         system's hash table.
1124         (gtk_file_system_win32_create_folder):  Emit "files-added" on the
1125         newly-created folder's parent.  Fixes #138004.
1126
1127 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
1128
1129         * gtk/gtkfilesystemwin32.c
1130         (gtk_file_system_win32_get_folder): Test that path is actually
1131         a directory and throw error if not. Fixed bug #137950
1132
1133 2004-03-22  J. Ali Harlow  <ali@juiblex.co.uk>
1134
1135         * gtk/gtkfilesystemwin32.c
1136         (gtk_file_system_win32_volume_get_display_name): Ignore empty
1137         volume labels; assume that GetVolumeInformation would fail if
1138         GetVolumeInformationW does; catches a small memory leak;
1139         pass the buffer size to GetVolumeInformationW in wide
1140         characters instead of bytes. Fixes bug #137543
1141         (list_volumes): Cope with the theoretical possibility of
1142         more than 26 logical drives. Fixes bug #137940
1143         (bookmarks_serialize): Now actually removes bookmarks.
1144         Fixes bug #137943
1145
1146 2004-03-22  Guntupalli Karunakar  <karunakar@freedomink.org>
1147
1148         * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.
1149
1150 2004-03-21  Tor Lillqvist  <tml@iki.fi>
1151
1152         * gtk/gtkfilesystemwin32.c
1153         (gtk_file_system_win32_volume_get_base_path): Include the
1154         backslash. Otherwise gtk_file_system_win32_path_to_uri() returns
1155         NULL for a volume base path, as g_filename_to_uri() requires an
1156         absolute path, and just a drive letter and colon isn't. (#137543)
1157
1158 2004-03-20  Hans Breuer  <hans@breuer.org>
1159
1160         * gtk/gtkfilesystemwin32.c : applied the undisputable and
1161         required [due to recent gtkfilesystem internal api semantic 
1162         changes] part of patches to fix bug #137543 (Tor Lillqvist,
1163         J. Ali Harlow)
1164
1165         * gdk/gdkevents-win32.c (handle_configure_event) :
1166              (gdk_event_translate), WM_WINDOWPOSCHANGED : initialize
1167         GdkWindowObject::x, y with screen coords to make 
1168         gdk_window_get_position () return the right thing and thus fix
1169         drag and drop positioning (e.g. Gimp tabs, fixes bug #137192)
1170
1171 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
1172
1173         * Revert the patch to #137520, as 2.4.1 is for conservative bug
1174         fixes only.  The patch is attached to the bug report, for
1175         reference.
1176
1177 2004-03-19  Morten Welinder  <terra@gnome.org>
1178
1179         * gtk/gtkfilechooserdefault.c
1180         (gtk_file_chooser_default_set_current_folder): Test existance of
1181         the path after checking for locality, if needed.
1182
1183 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
1184
1185         Fix #137520.
1186
1187         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
1188         for an ::is_finished_loading() method and a ::finished_loading()
1189         signal at the end of the struct.
1190
1191         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
1192         "finished-loading" signal.
1193         (gtk_file_folder_is_finished_loading): New function.
1194
1195         * gtk/gtkfilesystemunix.c
1196         (gtk_file_folder_unix_is_finished_loading): Implement.
1197
1198         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
1199         slot for a "finished-loading" signal.
1200         (gtk_file_system_model_class_init): Create the "finished-loading"
1201         signal.
1202         (struct _GtkFileSystemModel): New field
1203         idle_finished_loading_source.  We emit the "finished-loading"
1204         signal in an idle if the root folder was done loading right in
1205         _gtk_file_system_model_new(), so that the caller has a chance to
1206         connect to the signal.
1207         (_gtk_file_system_model_new): Connect to the normal signals of the
1208         folder even if the initial _list_children() fails.  Also, see if
1209         the folder is finished loading; connect to the "finished-loading"
1210         signal otherwise.
1211         (gtk_file_system_model_finalize): Remove the idle handler.
1212
1213         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
1214         and connect to the model's "finished-loading" signal.
1215         (get_toplevel): New helper function.
1216         (error_message): Use get_toplevel().
1217         (trap_activate_cb): Likewise.
1218         (location_popup_handler): Likewise.
1219         (set_busy_cursor): New function.
1220         (browse_files_model_finished_loading_cb): New callback.
1221
1222 Thu Mar 18 12:10:45 2004  Owen Taylor  <otaylor@redhat.com>
1223
1224         * gtk/gtktreeitem.c (gtk_tree_item_forall): Include 
1225         eventbox for expander. (#137564, reported by
1226         Jacques Garrigue)
1227
1228 2004-03-18  Guntupalli Karunakar  <karunakar@freedomink.org>
1229
1230         * mr.po: Added "mr" for Marathi to ALL_LINGUAS.
1231
1232 2004-03-17  Morten Welinder  <terra@gnome.org>
1233
1234         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Free
1235         volumes not actually put into the shortcut list.
1236
1237         * tests/prop-editor.c (object_changed): Plug leak.
1238
1239         * tests/testfilechooser.c (main): Plug some leaks and expose
1240         others.
1241
1242         * tests/prop-editor.c (create_prop_editor): Don't leak the tooltip
1243         object.  Fixed #136652.
1244
1245         * gtk/gtkfilechooserdefault.c (check_icon_theme): Do nothing if we
1246         have no screen.  Fixes #137260.
1247         (shortcuts_add_bookmark_from_path): Simplify using check_is_folder
1248         thereby fixing leak.  Fixes #137259.
1249
1250         * gtk/gtkpathbar.c (gtk_path_bar_forall): Make this work when the
1251         slider buttons have been destroyed.
1252         (gtk_path_bar_remove): Make this work for slider buttons too.
1253         Fixes #137257
1254
1255 2004-03-15  Morten Welinder  <terra@gnome.org>
1256
1257         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmark_from_path):
1258         Sanitize and plug leak.
1259         (check_icon_theme): Only do something if the widget has a screen.
1260
1261 Wed Mar 17 01:20:28 2004  Matthias Clasen  <maclas@gmx.de>
1262
1263         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
1264         Move the repositioning logic from _gtk_entry_completion() popup
1265         over here. Fixes #137355, reported by Niklas Knutsson.
1266