]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-10
877b9a591af9cbc79024c6332a0d3d2624747ed2
[~andy/gtk] / ChangeLog.pre-2-10
1 2005-06-28  Matthias Clasen  <mclasen@redhat.com>
2
3         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size2): 
4         Make sure that cell boxes are always completely inside
5         the item area. 
6
7 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
8
9         * demos/gtk-demo/main.c (create_tree): Make the list of
10         demos scrollable.
11
12         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
13         Fix positioning at the end of the line for lines ending
14         in invisible characters.
15         (gtk_text_layout_get_line_display): Set display->layout 
16         to a PangoLayout, even for totally invisible lines. 
17
18         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Ignore
19         GrabBroken events which are caused by overgrabbing inside
20         the application; menus rely on these for their operation.
21         
22         * gdk/gdkevents.h (struct _GdkEventGrabBroken): Add a 
23         grab_window field.
24
25         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Set
26         grab_window to NULL when generating GrabBroken events for
27         WM_KILLFOCUS messages.
28
29         * gdk/x11/gdkmain-x11.c (_gdk_xgrab_check_unmap) 
30         (_gdk_xgrab_check_destroy): Set grab_window to NULL when
31         generating GrabBroken events when the grab window becomes
32         unviewable or is destroyed.
33
34         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab, gdk_keyboard_grab): 
35         Generate GrabBroken events when overriding a grab inside
36         the application. In this case, set grab_window to the new
37         grab_window.
38         
39 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
40
41         * gtk/gtkbutton.c (gtk_real_button_activate): Continue
42         to activate even if we can't grab the keyboard.
43         (gtk_button_finish_activate): Only ungrab when we have
44         a keyboard grab.  (#172998, William Jon McCann)
45
46 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
47
48         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): 
49         Avoid a segfault. (#309054)
50
51 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
52
53         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add
54         fields for grab timestamps.
55
56         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab, gdk_keyboard_grab): 
57         Store grab timestamps when grabbing.
58         
59         * gdk/x11/gdkdisplay-x11.c (gdk_display_keyboard_ungrab) 
60         (gdk_display_pointer_ungrab): Don't unset the grab_window
61         if the timestamps indicate that the ungrab will fails.
62
63         * gtk/gtkmenu.c (gtk_menu_grab_notify): Cancel menus when 
64         they are grab-shadowed by something thats not a 
65         submenu.  (#145416, Euan MacGregor)
66
67 2005-06-27  Owen Taylor  <otaylor@redhat.com>
68
69         * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks): 
70         Fix indentation.
71
72 2005-06-27  Kjartan Maraas  <kmaraas@gnome.org>
73
74         * gtk/gtkhruler.c: (gtk_hruler_draw_ticks): Fix leaks
75         * gtk/gtkvruler.c: (gtk_vruler_draw_ticks): Same
76         Closes bug #308953.
77
78 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
79
80         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Use
81         GMappedFile.
82
83         * configure.in: Require GLib 2.7.1
84
85 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
86
87         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): 
88         Unregister XIM callbacks here.  (#309054)
89
90         * modules/input/gtkimcontextxim.h: Small cleanup.
91
92         * gtk/gtkmenu.c (gtk_menu_paint): Pay attention to the
93         scroll offset when drawing the box.  (#308834, Tom von 
94         Schwerdtner)
95
96 2005-06-26  Tor Lillqvist  <tml@novell.com>
97
98         * gdk/Makefile.am
99         * gtk/Makefile.am: Current GNU tools do understand the PRIVATE
100         keyword, so no need to remove those entries from the import
101         library. libtool installs the .dll.a import library itself, so no
102         need to do it here. Install the .def file.
103
104 Sun Jun 26 00:04:36 2005  Manish Singh  <yosh@gimp.org>
105
106         * gdk/gdkevents.c (gdk_event_get_time, gdk_event_get_state): add
107         GDK_GRAB_BROKEN to the switch cases.
108
109         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): remove unused
110         variables.
111
112         * gtk/gtkpaned.c (gtk_paned_grab_broken): return TRUE.
113
114 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
115
116         * gtk/gtktreeview.c (gtk_tree_view_grab_broken): Stop column
117         header drag operations if the grab is broken.
118
119         * gtk/gtkhsv.c (gtk_hsv_grab_broken): Stop the drag if
120         the grab is broken.
121
122         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Don't do 
123         explicitly ungrab pointer and keyboard. We're unmapping
124         the grab window anyway. 
125         (gtk_combo_box_popup): Handle grab failures.
126
127 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
128
129         * gdk/x11/gdkmain-x11.c (gdk_keyboard_grab, gdk_pointer_grab):
130         Don't emit grab-broken for overgrabbing, until we figure
131         out how to do that without breaking the menu code.
132
133 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
134
135         Add a GrabBroken event to GDK, and a grab-broken-event
136         signal to GtkWidget.  (#107320, Simon Cooke, initial patch 
137         by John Ehresman)
138
139         * gdk/gdkevents.h: Add a GDK_GRAB_BROKEN event type,
140         define a GdkEventGrabBroken event struct.
141
142         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
143         Generate GrabBroken events in response to WM_KILLFOCUS.
144
145         * gdk/x11/gdkmain-x11.c: Generate GrabBroken events
146         when a grab is broken by the window becoming unviewable,
147         or by another grab from the same client.
148         
149         * gtk/gtkwidget.h (GtkWidgetClass): Add grab_broken_event.
150
151         * gtk/gtkwidget.c (gtk_widget_event_internal): Translate
152         GrabBroken events into grab_broken_event signals.
153
154         * gtk/gtkmain.c (gtk_main_do_event): Propagate GrabBroken
155         events.
156
157         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Deactivate
158         the menu when the grab is broken.
159
160         * gtk/gtkcolorsel.c (gtk_color_selection_grab_broken): Stop 
161         the color picker if the grab is broken.
162
163         * gtk/gtkpaned.c (gtk_paned_grab_broken): Stop the drag if
164         the grab is broken.
165
166 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
167
168         Add some new stock items.  (#166480, Kristof Vansant)
169         
170         * gtk/stock-icons/stock_fullscreen_16.png: 
171         * gtk/stock-icons/stock_fullscreen_24.png: 
172         * gtk/stock-icons/stock_leave_fullscreen_16.png: 
173         * gtk/stock-icons/stock_leave_fullscreen_24.png: 
174         * gtk/stock-icons/stock_info_16.png: 
175         * gtk/stock-icons/stock_info_24.png: New icons.
176
177         * gtk/stock-icons/Makefile.am: Add new icons.
178
179         * gtk/gtkstock.h: Define names for the new icons.
180
181         * gtk/gtkstock.c (builtin_items): Register new stock items.
182         
183         * gtk/gtkiconfactory.c (get_default_icons): Register new 
184         stock icons.
185
186 2005-06-24  Owen Taylor  <otaylor@redhat.com>
187
188         * gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
189         conversion functions for MSB machines: convert_0888[_br]
190         now work on bytes so are endian independent. 
191         (Reported by David Zeuthen)
192
193 2005-06-24  Matthias Clasen  <mclasen@redhat.com>
194
195         * gtk/gtktextview.c (gtk_text_view_scroll_hpages): Don't
196         jump to the next line if we are at the end of the line.  
197         (gtk_text_view_move_cursor_internal): Make movement by
198         paragraphs up/down symmetric.  (#307055, Behnam Esfahbod)
199
200 2005-06-23  Tor Lillqvist  <tml@novell.com>
201
202         Improve and simplify line segment rendering on Win32, especially
203         the implementation of GDK_CAP_NOT_LAST, and dashed lines. Fixes
204         bugs #306396 and #308413.
205
206         * gdk/win32/gdkprivate-win32.h (GdkGCWin32): Save the GdkGC's
207         line_style, cap_style and join_style as such in the
208         GdkGCWin32. Don't need to keep the pen_double_dash flag, we can
209         check the line_style.
210
211         * gdk/win32/gdkgc-win32.c (fixup_pen): New internal function. Sets
212         up the GDI pen type, style, end cap and join attributes to use
213         based on the pen width, GDK line style, end cap style, and join
214         style.
215
216         For a narrow (zero-width) GDK pen with the GDK_CAP_NOT_LAST end
217         cap style, which typically are used for XOR drawing where it is
218         essential that the last pixel is not drawn, use a GDI cosmetic
219         pen. Only for a cosmetic pen does GDI not draw the last pixel. I
220         deduced this by experimetation, the documentation is rather vague.
221
222         For other GDK pens use a geometric GDI pen. If the width is 0 or 1
223         and the GDK end cap style is GDK_CAP_BUTT, and the line style is
224         GDK_LINE_SOLID, use PS_ENDCAP_ROUND. This ensures that also
225         single-pixel length lines are drawn. (For sngle-pixel width lines
226         roundness as such is of course irrelevant.) For dashed lines, use
227         PS_ENDCAP_FLAT.
228
229         For wide lines use PS_ENDCAP_FLAT, _ROUND or _SQUARE,
230         respectively, for GDK_CAP_BUTT, GDK_CAP_ROUND and GDK_CAP_PROJECTING.
231
232         For one pixel on-off dashed lines, use PS_ALTERNATE, it seems to
233         work better than PS_USERSTYLE. For other dashed lines, use
234         PS_USERSTYLE and the dashes as set by the user (or the default
235         four-pixel on-off style).
236
237         (gdk_win32_gc_values_to_win32values, gdk_win32_gc_set_dashes):
238         Call fixup_pen() to do the pen settings after modifying some of
239         the GDK GC attributes that affect pens.
240
241         * gdk/win32/gdkdrawable-win32.c (render_line_horizontal,
242         render_line_vertical, draw_segments): Check GdkGCWin32::line_style
243         instead of the the removed pen_double_dash member. Don't use
244         PATCOPY unconditionally in the PatBlt() call, use a raster op
245         code that depends on the GC function in use.
246
247         (draw_rectangle, draw_segments, draw_lines): Be more careful in
248         deciding when to do the manual dash rendering.
249
250         (draw_segments): Don't do any manual "last point" drawing at
251         all. The above changes takes care of narrow line segments being
252         drawn correctly in most cases, at least on NT-based Windows.
253
254 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
255
256         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): 
257         Fix an error in the cache timeout logic.  (#166601, Morten
258         Welinder)
259
260         * gtk/gtktreeview.c (gtk_tree_view_key_press): Change the
261         keynav for header reordering and resizing to Alt-arrows and
262         Shift-Alt-arrows, following a proposal by the keynav 
263         authority. (#308666, Calum Benson)
264
265         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Remove
266         a leftover debugging envvar.  
267
268 2005-06-23  Owen Taylor  <otaylor@redhat.com>
269
270         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
271         big endian case for 3-channel source. (Reported by
272         David Zeuthen)
273
274 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
275
276         * gtk/gtkbutton.c (gtk_button_construct_child): Don't
277         trigger warnings if there are extra references to the
278         hbox.  (#308677, Dan Winship)
279
280         * gtk/gtkfilesystemunix.c (bookmark_list_write): Use
281         g_file_set_contents().  (#308722, Morten Welinder)
282
283 2005-06-22  Matthias Clasen  <mclasen@redhat.com>
284
285         * gdk/x11/gdkdnd-x11.c (xdnd_finished_filter): Set the
286         time field in the event.  (#308573, Morten Welinder)
287
288         * gtk/gtkfilesystemunix.c: Remove gratitious differences
289         between the stable branch and HEAD, which sneaked in with
290         the bookmark renaming.  
291
292 2005-06-22  Kjartan Maraas  <kmaraas@gnome.org>
293
294         * gtk/gtkhsv.c: (gtk_hsv_expose): Don't leak the cairo context
295         Closes bug #308581.
296
297 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
298
299         * gtk/gtkarrow.c:
300         * gtk/gtkimage.c:
301         * gtk/gtklabel.c:
302         * gtk/gtkpixmap.c: Modify all of the GtkMisc widgets to round down
303         on centering calculations to match the behaviour of other parts
304         of GTK+. (#307419, Ryan Lortie)
305
306 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
307
308         * gtk/gtkdnd.c (gtk_drag_source_set): Connect to 
309         button-release-event as well, to handle touchscreen 
310         scenarios better.  (#171490, Markku Vire)
311
312         * gtk/*.h: Trivial cleanups. (#169647, #303455, 
313         Fabricio Barros Cabral, Benoit Carpentier)
314
315         * gdk/gdk.symbols: 
316         * gdk/gdkwindow.h: 
317         * gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
318         function which can be used to implement scrolling in 
319         non-window widgets.  (#135165, Søren Sandmann)
320
321 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
322
323         * gtk/gtkiconcache.c: Handle MAP_FAILED.  (#308449, Georg
324         Schwarz)
325
326 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
327
328         * configure.in: Bump version number.
329
330         * === Released 2.7.0 ===
331
332 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
333
334         * gtk/gtk.symbols:
335         * gtk/gtkwindow.h:
336         * gtk/gtkwindow.c (gtk_window_present_with_time): Variant of
337         gtk_window_present which takes a timestamp.  (#166379, Elijah Newren)
338
339 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
340         
341         * gtk/gtk.symbols: Add a forgotten symbol
342
343         * NEWS: Updates
344
345 2005-06-19  Kristian Rietveld  <kris@gtk.org>
346
347         * gtk/gtktreeview.c (gtk_tree_view_clamp_node_visible): added a
348         check which avoids processing updates on bin_window and scrolling
349         if the node is already visible. (#170600, Billy Biggs).
350
351 2005-06-19  Kristian Rietveld  <kris@gtk.org>
352
353         * gtk/gtktreeview.c (validate_visible_area): only keep the
354         row at the same position if the full row is visible. (#304623,
355         Jorn Baayen).
356
357 2005-06-19  Kristian Rietveld  <kris@gtk.org>
358
359         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set dy to zero
360         if treeview's height is smaller than the current page_size (just
361         like we do elsewhere).
362
363 2005-06-19  Kristian Rietveld  <kris@gtk.org>
364
365         Make mousewheel scrolling possible in typeahead mode, suggestion
366         from Reinout van Schouwen (#307898).
367
368         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
369         connect treeview search window to scroll_event signal,
370         (gtk_tree_view_search_scroll_event): implement.
371
372 2005-06-19  Kristian Rietveld  <kris@gtk.org>
373
374         * gtk/gtktreeview.c (gtk_tree_view_search_button_press_event): pass
375         the event on to treeview, so it has a change of selecting a row, etc.
376         (#169677, Kirk Bridger).
377
378 2005-06-19  Kristian Rietveld  <kris@gtk.org>
379
380         This commit includes a fix for #169463, Stefan Kost.
381
382         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_get_size):
383         when cell_area is set, return cell_area width/height as width/height,
384         so the focus rectangle will be drawn correctly.
385
386         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): drop unneeded get
387         of focus-line-width property,
388         (validate_row): take focus_line_width into account.
389
390         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
391         also take focus_line_width into account when calculating the cell_area
392         y and height (before, we only took it into account when calculating
393         x and width).
394
395 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
396
397         * gtk/gtk.symbols:
398         * gtk/gtksizegroup.[hc]: Add an ignore-hidden property
399         with getter and setter.  (#171612, Christian Neumair)
400
401 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
402
403         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Make this 
404         work for inserting before/after an existing menuitem or
405         toolitem.  (#155946, Christian Persch)
406
407         * tests/testmerge.c (delayed_toggle_dynamic): Test the 
408         "insert after" functionality of gtk_ui_manager_add_ui.
409
410         * gtk/gtkuimanager.c: Allow to construct menu tool buttons.
411         (#300678, Sven Neumann)
412         
413         * demos/gtk-demo/appwindow.c: Demonstrate menu tool buttons
414         constructed with GtkUIManager.
415
416         * gtk/gtk.symbols: 
417         * gtk/gtkimage.h: 
418         * gtk/gtkimage.c (gtk_image_clear): Make this function
419         public.  (#64792, Havoc Pennington)
420
421 2005-06-18  Kristian Rietveld  <kris@gtk.org>
422
423         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): undo merging
424         of the separate loop setting cell data with cell drawing loop
425         (introduced in revision 1.280), since this breaks focus handling
426         wrt special cells.
427
428 Sat Jun 18 04:22:51 2005  Manish Singh  <yosh@gimp.org>
429
430         * gdk/gdkcursor.h: remove GDK_CURSOR and GDK_IS_CURSOR, instance
431         checks don't work on boxed types.
432
433         * gdk/x11/gdkcursor-x11.c: 
434         * gdk/gdkcursor.c: make return_if_fail checks != NULL instead of
435         GDK_IS_CURSOR.
436         
437 Sat Jun 18 04:21:58 2005  Manish Singh  <yosh@gimp.org>
438
439         * gtk/gtktreeview.c (do_presize_handler): remove unused variable
440         height_old.
441
442 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
443
444         * gtk/gtkcellrenderertoggle.c:
445         * gtk/gtktextview.c:
446         * gtk/gtktreeview.c: Typo fixes in comments.
447
448         * gtk/gtkpaned.c (gtk_paned_add): Barf if more than
449         2 children are added.  (#308111, Morten Welinder)
450
451         * gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
452         1-based.  (#163842, Pierre Ossman)
453
454 2005-06-17  Kristian Rietveld  <kris@gtk.org>
455
456         Fix #160281, testcase from Peter Bloomfield.
457
458         * gtk/gtktreeview.c (do_presize_handler): always size request
459         and update adjustments in fixed height mode,
460         (gtk_tree_view_build_tree): if a fixed height is set, set this
461         height on newly added nodes.
462
463 2005-06-17  Tor Lillqvist  <tml@novell.com>
464
465         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Set the actions
466         and suggested_action fields in the GdkDragContext to
467         GDK_ACTION_COPY. Otherwise apps that check the suggested_action
468         field, like eog, won't accept dropped files.
469
470 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
471
472         Support the ICCCM urgency hint.  (#61858, Havoc Pennington)
473         
474         * gtk/gtk.symbols: 
475         * gtk/gtkwindow.[hc]: Add a GtkWindow::urgency-hint property
476         with getter and setter.
477
478         * gdk/gdk.symbols: 
479         * gdk/gdkwindow.h: 
480         * gdk/x11/gdkwindow-x11.c (gdk_window_set_urgency_hint): 
481         Add a setter for the urgency hint.
482
483         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store
484         urgency hint here.
485
486         * gdk/x11/gdkwindow-x11.c (update_wm_hints): Set the urgency
487         hint in the WM_HINTS property when appropriate.
488
489 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
490
491         * gdk/gdkcursor.h: Define GDK_IS_CURSOR() and GDK_CURSOR().
492
493         * gdk/x11/gdkcursor-x11.c: 
494         * gdk/gdkcursor.c: Improve some return_if_fail checks,
495         and add the missing non-Xcursor fallback for 
496         _gdk_x11_cursor_update_theme(), noticed by Jeroen 
497         Zwartepoorte.
498
499         * gtk/gtkbutton.c (gtk_button_class_init): Document
500         several button signals as not useful.
501
502         * gtk/gtkentrycompletion.c (gtk_entry_completion_complete): 
503         Resize the popup if necessary.  (#308076, Vincent Noel)
504
505         * gtk/gtkwindow.c (gtk_window_real_set_focus): Queue a
506         draw on the old and new focus widgets, if their defaultness
507         changes.  (#305607, Billy Biggs)
508
509 2005-06-17  Kristian Rietveld  <kris@gtk.org>
510
511         * gtk/gtktreeview.c (validate_visible_area): make sure the row
512         above 'above_path' is always in a validated state, so it does
513         not mess up scrolling. (#303319, testcase from Billy Biggs).
514
515 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
516
517         * gdk/x11/gdkprivate-x11.h: 
518         * gdk/x11/gdkcursor-x11.c: Handle cursor theme changes
519         for cached cursors which are not associated with a window
520         at the time of the theme change, by storing a serial
521         number in each cursor, and updating the theme_serial 
522         counter whenever the cursor theme changes.
523         
524         * gdk/x11/gdkcursor-x11.c (_gdk_x11_cursor_update_theme): 
525         Private function to update a cursor to the current
526         cursor theme if necessary.
527
528         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
529         * gdk/x11/gdkwindow-x11.c (gdk_window_set_cursor): Call
530         _gdk_x11_cursor_update_theme() here.
531
532 2005-06-17  Owen Taylor  <otaylor@redhat.com>
533
534         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix
535         #if G_BYTE_ORDER == GDK_LSB_FIRST.
536
537 2005-06-17  Kristian Rietveld  <kris@gtk.org>
538
539         * gtk/gtktreeview.c (validate_visible_area): don't try to update
540         the top_row rowref ourselves here, but just have _dy_to_top_row()
541         do it,
542         (gtk_tree_view_scroll_to_cell): handle scrolling via
543         validate_visible_area() if the treeview is not visible or needs
544         reallocation. (#165246, Nickolay V. Shmyrev).
545
546 2005-06-17  Kristian Rietveld  <kris@gtk.org>
547
548         Fixes #307914 (Alexander Larsson), fixing some breakage caused
549         by my previous commit.
550
551         * gtk/gtktreeview.c (validate_visible_area): force dy to be zero
552         when it fits on a single page,
553         (scroll_sync_handler): same here.
554
555 Thu Jun 16 15:33:42 2005  Manish Singh  <yosh@gimp.org>
556
557         * gdk/x11/gdkcursor-x11.c (update_cursor): remove unused variable.
558
559         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_get_cursor): use
560         g_return_val_if_fail.
561
562         * gtk/gtkdnd.c (gtk_drag_get_cursor): initialize hot_x and hot_y
563         for all cases.
564
565         * gtk/gtkfilechooserdefault.c (button_new): gtk_button_set_image
566         takes a GtkWidget, not a GtkImage.
567
568 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
569
570         * gtk/gtkfilechooserdefault.c (button_new): Simplify
571         the code and respect the show-button-images setting.
572         (#307941, Vincent Noel)
573
574         * gtk/gtkdnd.c: Update the RGBA cursor if an
575         icon is set after the cursor has been constructed.
576         Also handle repeated setting of icons correctly.
577
578 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
579
580         * gtk/gtkbutton.c (gtk_button_set_image): Add some more
581         docs.  (#307818, Christian Persch)
582
583 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
584
585         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
586         Initialize all fields of the expose event.  (#151693,
587         Jim Evins)
588
589 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
590
591         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image): Get
592         red and blue in place.
593
594         * gtk/gtkwindow.c (gtk_window_parse_geometry): Fox doc
595         formatting, pointed out by Kjartan Maraas.
596
597         * gtk/gtksettings.c: Add two new settings, 
598         gtk-cursor-theme-name and gtk-cursor-theme-size to
599         control the cursor theme.
600
601         * gdk/x11/gdkevents-x11.c: Add two new X settings,
602         Gtk/CursorThemeName and Gtk/CursorThemeSize, and map
603         these to the gtk settings.
604
605         * tests/testgtk.c (create_cursors): Add a cursor theme
606         testcase.
607
608         * gdk/x11/gdkwindow-x11.[hc]: Keep a reference to the 
609         GdkCursor and add a private getter for it, so that we can 
610         update the cursor when the cursor theme changes.
611         
612         * gdk/gdk.symbols: 
613         * gdk/x11/gdkx.h: 
614         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
615         New function to change the cursor theme.
616
617         * gdk/x11/gdkwindow-x11.c: Remove a lot of pointless
618         g_return_if_fail() non-NULL checks.
619
620 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
621
622         * gdk/abicheck.sh: Use uniq to filter out duplicates.
623         * gdk/gdk.symbols: Fix a define.
624
625 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
626
627         * gtk/gtkwindow.c (gtk_window_parse_geometry):
628         Fix up the example.  (#307699, Michal Suchanek)
629
630 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
631
632         * gtk/gtkcalendar.c: Update num_marked_dates as we
633         used to do.  (#307689, Thorsten Schoenfeld)
634  
635 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
636
637         Merged from gtk-2-6:
638
639         Fix #302087:
640
641         * gtk/gtkfilechooserdefault.c (list_selection_changed): Emit
642         "selection-changed" and do the normal housekeeping even if we are
643         in SAVE mode and there is nothing selected.  We didn't emit that
644         signal if we were in SAVE mode and unselect_all() got called.
645         (gtk_file_chooser_default_unselect_all): Call
646         pending_select_paths_free() so that we cancel any asynchronous
647         selections.
648         (gtk_file_chooser_default_set_current_name): Likewise.
649
650 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
651
652         Merged from gtk-2-6:
653
654         Fixes #307640:
655
656         * gtk/gtkfilechooserdefault.c
657         (gtk_file_chooser_default_should_respond): Oops, I broke SAVE
658         mode.  If the parent path is a folder, only create a subfolder if
659         we are in CREATE_FOLDER mode; if we are in SAVE mode, just return
660         and respond.  Also, pick up the case where the user types
661         "dirname/" instead of "dirname".
662         (check_save_entry): Make the return type void.  Add some return
663         parameters so that we can do more thorough checking.
664         (gtk_file_chooser_default_get_paths): If the file part is empty
665         and we are in SAVE mode, return an empty selection.
666
667 2005-06-15  Kristian Rietveld  <kris@gtk.org>
668
669         Patch for #163214 (reported by Tommi Komulainen) and fixes some
670         other scrolling/validation related bugs along the why.
671
672         * gtk/gtktreeview.c (gtk_tree_view_size_request): run
673         do_validate_rows once and don't queue a size request there,
674         (gtk_tree_view_size_allocate): don't update vadj value without
675         reason, sync top_row/dy after the window sizes and adjustments
676         are in sync again,
677         (validate_visible_area): always update dy when scrolling,
678         manually set top_row here after changing the vadj (don't depend
679         on _adjustment_changed and top_row/dy sync to do this), since we
680         now always set top_row here correctly, we can always free
681         scroll_to_path at the end which avoids infinite expose loops,
682         (do_validate_rows): add queue_resize boolean, remove top_row/dy
683         sync here, we cannot do it safely at this place since the
684         window sizes and adjustments are out of sync,
685         (validate_rows), (validate_rows_handler): update call to
686         do_validate_rows().
687
688 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
689
690         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_name): Add a 
691         stub for the no-Xcursor case. (noticed by Luis Villa)
692
693         Use named cursors for the DND cursors, the names are "dnd-none",
694         "dnd-copy", "dnd-link", "dnd-move" and "dnd-ask". Also use an RGBA 
695         cursor instead of cursor+window when possible. This saves 
696         roundtrips during the drag operation, and makes translucent icons 
697         possible.
698         
699         * gtk/gtkdndcursors.h: New file, containing inlined pixbufs
700         for the default dnd cursors.
701
702         * gtk/gtkdnd.c (struct _GtkDragSourceInfo): Store the cursors
703         used during the drag here, also store the icon pixbuf here. 
704
705         * gtk/gtkdnd.c (drag_cursors): Store the cursor names here. Also
706         switch the default cursors from xbm to inlined pixbufs. 
707
708         * gtk/gtkdnd.c (gtk_drag_get_cursor): This function now takes the
709         GtkDragSourceInfo as well, since it has to composite the 
710         drag-specific cursors. The cursors combined from the image of
711         the themed cursor and the icon_pixbuf stored in the info.
712
713         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't set the default
714         icon if there is an icon_pixbuf, which will be composited into
715         the cursor later.
716
717         * gtk/gtkdnd.c (set_icon_stock_pixbuf): If appropriate, store
718         the pixbuf in the info struct for later compositing into the
719         cursor instead of creating an icon window.
720         
721         * gtk/gtkdnd.c (gtk_drag_drop_finished): If we used an
722         RGBA cursor for the drag, and need to display the cancel
723         animation, construct the icon window here.
724
725         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Unref the 
726         drag-specific cursors and the icon_pixbuf when done with
727         the drag.
728
729 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
730
731         * gtk/gtkcolorsel.c (make_picker_cursor): Use a named cursor
732         with the name "color-picker", when available.
733
734         * gdk/gdk.symbols: 
735         * gdk/gdkcursor.h: 
736         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image) 
737         (gdk_cursor_new_from_name): New functions to construct named
738         cursors and to get the image used for a cursor.  
739
740 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
741
742         * gtk/gtkpathbar.[hc]: Rework the way in which rerooting of the
743         path bar is done, implementing the following principles:
744         (#137289, patch by Benjamin Otte)
745         
746         1. Re-root only if $HOME is an ancestor of the current path.
747
748         2. When re-rooting, make sure the Left arrow appears in the path 
749         bar, so that you can navigate up from $HOME to /.  In that case, 
750         make sure the Right arrow doesn't appear if the sub-hierarchy from 
751         $HOME to the cwd fits in the window.
752
753         3. Make sure that hitting Alt-Up takes you always one folder up, 
754         even when the path bar is re-rooted.
755
756         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
757         Try harder not to modify readonly strings. (#307541, Torsten Schoenfeld)
758
759         * gtk/gtkfilechooserbutton.c (model_update_current_folder): 
760         Free the data of the row before overwriting it.  (#307490,
761         Kjartan Maraas)
762
763 2005-06-13  Kjartan Maraas  <kmaraas@gnome.org>
764
765         * gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
766         leak the cairo context. Closes bug #307426.
767
768 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
769
770         Make invisible text work a bit better (#66194, patch by
771         Jeroen Zwartepoorte)
772         
773         * gtk/gtk.symbols:
774         * gtk/gtktextiter.[hc]: Add function to move by
775         visible lines.
776
777         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): 
778         Skip invisible text when moving by paragraphs.
779
780         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually): 
781         Skip invisible lines here too.
782
783 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
784
785         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
786         Don't leak the format names.  (#307190, Morten Welinder)
787
788 2005-06-12  Kjartan Maraas  <kmaraas@gnome.org>
789
790         * gdk/x11/gdkasync.c: (send_event_handler): Plug
791         a leak. Closes bug #307281.
792
793 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
794
795         * gtk/gtkcalendar.c (calendar_paint_header): 
796         (gtk_calendar_size_request): Allow localization of the
797         format in which the year is displayed.  (#135451, Paisa 
798         Seeluangsawat)
799
800         * gdk/*.h: Cleanup.  (#169648, Fabricio Barros Cabral)
801
802         * gdk/gdkcairo.c: Small doc additions.
803
804         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
805         Check start_button_mask before starting a drag.  (#149058, 
806         Andreas Volz)
807
808         * gtk/gtkfilesystemunix.c: Support .hidden files.  (#129170,
809         Sayamindu Dasgupta, patch by Jan Arne Petersen)
810
811 2005-06-11  Matthias Clasen  <mclasen@redhat.com>
812
813         * NEWS: Updates.
814
815         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
816         provided by Owen Taylor.
817
818         * gtk/gtk.symbols: 
819         * gtk/gtkiconview.h: 
820         * gtk/gtkiconview.c (gtk_icon_view_get_visible_range): 
821         Add a function to determine what parts of the model are
822         visible.  (#306726, Jonathan Blandford)
823
824         * gtk/gtkfilesystemunix.c (create_file_info): Treat backup
825         files the same way as hidden files, to be closer to what
826         Nautilus does.  (#136196, Sean Middleditch)
827
828 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
829
830         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
831         Don't modify strings returned from gettext().
832
833 Fri Jun 10 19:06:03 2005  Manish Singh  <yosh@gimp.org>
834
835         * gtk/gtktextdisplay.c (render_para): don't use deprecated
836         gdk_gc_unref function.
837
838 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
839
840         Allow setting paragraph background.  (#81045, Gustavo
841         Carneiro, patch by Jeroen Zwartepoorte)
842         
843         * gtk/gtktextlayout.c (set_para_values): Propagate 
844         pg_bg_color to the display struct.
845         (gtk_text_layout_free_line_display): Free it here.
846
847         * gtk/gtktextdisplay.c (render_para): If pg_bg_color
848         is set, draw a rectangle in that color behind
849         the paragraph.
850
851         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add 
852         paragraph-background, paragraph-background-gdk and
853         paragraph-background-set properties.
854         (set_pg_bg_color): A setter for paragraph-background.
855
856         * gtk/gtktextlayout.h (struct _GtkTextLineDisplay): Add
857         pg_bg_color.
858
859         * gtk/gtktexttag.h (struct _GtkTextAttributes): Add
860         pg_bg_color.
861         (struct _GtkTextTag): Add pg_bg_color_set.
862
863 2005-06-10  Kjartan Maraas  <kmaraas@gnome.org>
864
865         * gdk/gdkcairo.c: (gdk_cairo_set_source_pixbuf): Destroy the
866         cairo surface when done with it. Plugs a fairly large leak in
867         some cases.
868         ==6014== 1999824 (115640 direct, 1884184 indirect) bytes in
869         826 blocks are definitely lost in loss record 25239 of 25250
870         Like this from nautilus.
871
872 2005-06-10  Michael Natterer  <mitch@imendio.com>
873
874         * gtk/gtk.symbols
875         * gtk/gtkaction.[ch] (gtk_action_get_accel_closure): new function
876         to get an action's accel_closure (Fixes #141750 and #148106).
877
878 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
879
880         * gdk/gen-keyname-table.pl: Generate N_() calls for
881         translatable key names.
882
883         * gdk/keynames.txt: Mark some key names as translatable.
884         
885         * gdk/keyname-table.h: Regenerated.
886
887         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): Add
888         some context to the msg ids for keyboard modifiers and
889         key names.
890         (_gtk_accel_label_class_get_accelerator_label): Try to
891         translate key names.  (#300224, Christian Rose)
892
893 2005-06-10  Federico Mena Quintero  <federico@ximian.com>
894
895         Merged from gtk-2-6:
896
897         Fixes #162358:
898
899         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't return
900         immediately if we are in CREATE_FOLDER mode, so that we can fill
901         the entry with the newly-selected folder.
902         (gtk_file_chooser_default_set_property): Warn against turning on
903         multiple selection for CREATE_FOLDER mode, or about setting that
904         action while multiple selection is on.
905         (update_chooser_entry): Change the entry's contents as well if we
906         are in CREATE_FOLDER mode.  If nothing is selected, clear the
907         chooser entry.
908         (trap_activate_cb): Don't trap enter/space if modifiers are
909         pressed.  This lets one use Ctrl-space to toggle rows in multiple
910         selection mode.
911         (gtk_file_chooser_default_should_respond): Clean up the if-chain
912         mess of special cases by using an array to determine what to do.
913         Also, for the save-entry case in CREATE_FOLDER mode, actually fix
914         the bug where the file chooser would switch to an existing folder
915         rather than confirming with it, and create the folder ourselves.
916         (error_creating_folder_over_existing_file_dialog): New function.
917
918         * gtk/gtkfilechooserentry.c (check_completion_callback): Only
919         insert the common prefix if we are in an "open" mode.  Use a
920         helper function.
921         (append_common_prefix): New helper function; code moved over from
922         check_completion_callback().
923         (find_common_prefix): New helper function.
924         (gtk_file_chooser_entry_focus): Append the common prefix if the
925         user requests it explicitly.
926
927 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
928
929         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_expand): 
930         * gtk/gtktoolbar.c (gtk_toolbar_get_show_arrow): 
931         * gtk/gtktextview.c (gtk_text_view_get_iter_at_position): 
932         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
933         * gtk/gtkspinbutton.c (gtk_spin_button_get_adjustment): 
934         * gtk/gtkscrolledwindow.h: 
935         * gtk/gtkmenushell.c (gtk_menu_shell_get_take_focus): 
936
937         * gtk/gtkiconview.c (gtk_icon_view_set_margin): 
938         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): 
939         * gtk/gtkcalendar.c (gtk_calendar_thaw): Doc fixes.
940
941 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
942
943         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
944
945         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add docs.
946         (#306212, Steve Chaplin, docs provided by Billy Biggs)
947
948         * gtk/gtktextbtree.c (_gtk_text_btree_char_is_invisible): Small 
949         cleanup.  (#305539, Paolo Borelli)
950
951 2005-06-09  Rodrigo Moya <rodrigo@novell.com>
952
953         * configure.in: added cairo to list of $GTK_PACKAGES.
954
955 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
956
957         * gdk/x11/gdkdnd-x11.c (motif_drop_start, xdnd_drop_filter): Update
958         the user time on the window when a drop happens.  (#169364, Alexander
959         Hunziker, patch by Elijah Newren)
960
961         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
962
963         * gtk/gtk.symbols: 
964         * gtk/gtkiconview.h: 
965         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_path): New function
966         to scroll to a path.  (#306838, Jonathan Blandford)
967
968 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
969
970         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Scroll to the
971         item.  (#306839, Jonathan Blandford)
972
973         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): Check for
974         negative before appending the index, to avoid double error
975         message.  (#306393, Morten Welinder)
976
977         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
978         Don't crash if search_window is NULL.  (#304914, Victor Osadci,
979         testcase by Olaf Vitters)
980
981         * gtk/gtkimage.c: Make the file property readable.  
982         (#170674, Lorenzo Gil Sanchez)
983
984         
985 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
986
987         * gtk/gtkfilesystem.c (gtk_file_info_get_display_key): Use
988         g_utf8_collate_key_for_filename().
989
990 2005-06-07  Kjartan Maraas  <kmaraas@gnome.org>
991
992         * gtk/gtkfilechooserbutton.c: (update_label_and_image):
993         Merge leak fix from stable. Bug 306754.
994
995 2005-06-05  Tor Lillqvist  <tml@novell.com>
996
997         * gdk/win32/gdkscreen-win32.c
998         (_gdk_windowing_substitute_screen_number): Return NULL unless
999         screen number is zero. We have only one screen on Win32.
1000         (gdk_screen_make_display_name): Call gdk_display_get_name() and
1001         return that.
1002         
1003         * modules/engines/Makefile.am
1004         * modules/input/Makefile.am: Decide whether to build the
1005         ms-windows theme engine based on the GDK backend, not based on
1006         platform. (I.e., if building for Cygwin with the X11 backend, we
1007         shouldn't build the ms-windows engine, but if building for Cygwin
1008         but with the Win32 backend, we should.) Ditto for the IME
1009         (Windows) input module. (#305832)
1010
1011 2005-06-04  Tor Lillqvist  <tml@novell.com>
1012
1013         * gdk/win32/gdkcursor-win32.c
1014         * gdk/win32/gdkwindow-win32.c
1015         * gdk/win32/gdkprivate-win32.h: Support full-colour cursors.
1016         Support cursors with alpha on XP. Use code in common with the
1017         support for alpha icons that already was present. (#306101, Tim
1018         Evans)
1019
1020         * modules/engines/ms-windows/msw_style.c: Render insensitive icons
1021         in a way that more closely matches Windows. (#305986, Tim Evans).
1022
1023         * modules/engines/ms-windows/Makefile.am (LDADDS): Link with
1024         gdk-pixbuf.
1025
1026 2005-06-03  Dom Lachowicz <cinamod@hotmail.com>
1027
1028         * modules/engines/ms-windows/msw_style.c: Re-sync with gtk-wimp
1029         * modules/engines/ms-windows/xp_theme.c: Ditto
1030         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
1031
1032 Thu May 26 16:43:27 2005 Manish Singh  <yosh@gimp.org>
1033
1034         * gtk/gtkentrycompletion.h: Add declarations for
1035         gtk_entry_completion_{get,set}_popup_single_match.
1036
1037 2005-05-26  Matthias Clasen  <mclasen@redhat.com>
1038
1039         * gtk/gtk.symbols: 
1040         * gtk/gtkentrycompletion.c: Add a property to suppress the
1041         popup for single matches.  (#154711)
1042
1043         * gtk/gtkentry.c (gtk_entry_completion_timeout): Respect it here.
1044
1045         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_set_action): 
1046         Use it here.
1047
1048         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Queue the 
1049         redisplay after modifying the tag in the btree, otherwise 
1050         we end up showing the old tags until the next redraw comes 
1051         around.   (#143537, Gary Kramlich, Peter Wainwright)
1052
1053         * gtk/gtkcombobox.c (gtk_combo_box_list_auto_scroll): Make 
1054         autoscrolling work at the bottom of the screen.
1055
1056 2005-05-26  Maciej Katafiasz  <email@mathrick.org>
1057
1058         * docs/reference/gtk/tmpl/gtkentry.sgml:
1059         Point to GtkTextView instead of GtkText. Fixes bug #305535
1060
1061 2005-05-26  Sven Neumann  <sven@gimp.org>
1062
1063         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): use a less
1064         aggressive PNG compression level (bug #305340).
1065
1066 2005-05-26  Tor Lillqvist  <tml@novell.com>
1067
1068         * gdk/win32/gdkdrawable-win32.c (_gdk_win32_blit): If blitting
1069         from the root window, take the multi-monitor offset into
1070         account. (#305511)
1071
1072 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
1073
1074         * demos/gtk-demo/appwindow.c (do_appwindow): Set the window
1075         icon by name.
1076
1077         * gtk/gtkfilesystem.c (gtk_file_folder_is_finished_loading): 
1078         Remove another C99ism.
1079
1080         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the 
1081         background of rows insensitive when the treeview is insensitive.
1082         (pointed out by Billy Biggs)
1083
1084         * demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
1085         and DND, and clipboard persistency.
1086
1087         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
1088         Make sure png comes first, otherwise dnd may use bmp by
1089         default, loosing transparency.
1090
1091 2005-05-25  Michael Natterer  <mitch@imendio.com>
1092
1093         * gtk/gtktextview.c (blink_cb): block the text_layout's "changed"
1094         handler when changing cursor visibility because it would expose
1095         the whole paragraph where the cursor is. Instead, expose the
1096         cursors' areas manually. (#173047).
1097
1098         (text_window_invalidate_cursors): new function which exposes the
1099         cursors.
1100
1101         * gtk/gtkstyle.c (draw_insertion_cursor): added comment that the
1102         same cursor size calculation is in text_window_invalidate_cursors().
1103
1104 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
1105
1106         * demos/gtk-demo/editable_cells.c (create_items_model): Also
1107         demonstrate GtkCellRendererProgress.
1108
1109         * demos/gtk-demo/Makefile.am (demos): 
1110         * demos/gtk-demo/combobox.c: Add a demo showing combo box 
1111         variations.
1112
1113         * demos/gtk-demo/Makefile.am (demos): 
1114         * demos/gtk-demo/pickers.c: Add a demo showing all picker widgets.
1115
1116 2005-05-24  Matthias Clasen  <mclasen@redhat.com>
1117
1118         * demos/gtk-demo/iconview.c (do_iconview): Fix a typo.
1119
1120 2005-05-24  Tor Lillqvist  <tml@novell.com>
1121
1122         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Handle
1123         gtk-alternative-button-order (setting it to TRUE).
1124
1125 2005-05-23  Matthias Clasen  <mclasen@redhat.com>
1126
1127         * gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
1128         an unused variable.  (#305130, Jaap A. Haitsma)
1129
1130         * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
1131         the focus away from the file list when operating the filter
1132         combo with the pointer.  (#304844, Sven Neumann)
1133
1134 2005-05-23  Tor Lillqvist  <tml@novell.com>
1135
1136         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
1137         GDK_Menu. (#172383, Ivan Wong)
1138
1139         * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
1140         of the special cases this function takes care of, use it as
1141         such. This takes care of for instance the Bengali Virama, see bug
1142         #165723.
1143
1144 2005-05-20  Matthias Clasen  <mclasen@redhat.com>
1145
1146         * gtk/gtkimcontextsimple.c (check_table): Avoid a possible
1147         buffer overrun.  (#142444, Leonard Michlmayr)
1148
1149         * gtk/gtkfilesystem.c: Remove C99-isms (#304879, 
1150         Kazuki IWAMOTO)
1151
1152 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
1153
1154         * gtk/gtkfilechooser.c (gtk_file_chooser_remove_shortcut_folder_uri): 
1155         Use the correct function to conver the uri to a path.  (#304565,
1156         Ismael Juma)
1157
1158         * gtk/gtkfilechooserbutton.c (dialog_response_cb): Handle the
1159         Cancel button properly.  (#304234, Sven Neumann)
1160
1161 2005-05-18  Anders Carlsson  <andersca@imendio.com>
1162
1163         * gtk/gtktextview.c: (gtk_text_view_flush_scroll),
1164         (gtk_text_view_update_adjustments), (gtk_text_view_value_changed):
1165         * gtk/gtktextview.h:
1166         If the horizontal adjustment changes because of a change in the
1167         layout width, then do a complete redraw. This is because there
1168         might be right-aligned or centered text that needs to be redrawn.
1169
1170 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
1171         
1172         * gtk/gtkwidget.c (gtk_widget_add_events): Try harder to set
1173         the event masks of descendent windows.  (#169821, Tommi Komulainen)
1174
1175         * gtk/gtktreeview.c (gtk_tree_view_get_drop_column) 
1176         (gtk_tree_view_set_column_drag_info): Fix some errors in the
1177         handling of drop columns.  (#143355, John Finlay)
1178
1179         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
1180         Remove the no longer needed workaround.
1181
1182         * gtk/gtkwidget.c (widget_add_child_draw_rectangle): Only collect
1183         allocations of mapped children.
1184
1185         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
1186         Add a bug reference.
1187
1188 2005-05-18  Tor Lillqvist  <tml@novell.com>
1189
1190         * gdk/win32/gdkevents-win32.c
1191         * gdk/win32/gdkkeys-win32.c
1192         * gdk/win32/gdkprivate-win32.h: Check the KF_EXTENDED bit in
1193         lParam of WM_KEY* messages to distinguish between left and right
1194         Control and Alt keys. Unfortunately, the right Shift key doesnt
1195         set KF_EXTENDED, so to distinguish between left and right Shift
1196         keys, check the scan code. (#304584)
1197
1198 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
1199
1200         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Warn if
1201         length overflows.  (#161520, Ian Wienand)
1202
1203         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name): Fix
1204         parameter names to make gtk-doc happy.
1205
1206         * gtk/gtkscale.c (gtk_scale_class_init): Fix the default
1207         values of draw-value and value-pos to be the values we
1208         actually use in _init. (#304547, Mikael Hallendal)
1209
1210         * gtk/gtkcellrendererpixbuf.c: Support named icons in
1211         cells by adding a icon-name property. (#165777, Anders
1212         Carlsson)
1213
1214         * gtk/gtk.symbols:
1215         * gtk/gtktoolbutton.h: 
1216         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name) 
1217         (gtk_tool_button_get_icon_name): Support named icons in 
1218         tool buttons by adding a icon-name property. (#116577, 
1219         Christian Neumair)
1220
1221         * gtk/gtk.symbols: 
1222         * gtk/gtkdnd.h: 
1223         * gtk/gtkdnd.c (gtk_drag_source_set_icon_name) 
1224         (gtk_drag_set_icon_name): New functions to support themed 
1225         drag icons.  (#116577, Christian Neumair)
1226
1227 2005-05-17  Owen Taylor  <otaylor@redhat.com>
1228
1229         * gdk/x11/gdkdrawable-x11.c (gdk_x11_ref_cairo_surface): 
1230         Update to changed cairo interface.
1231
1232         * gdk/x11/gdkdrawable-x11.[ch]:
1233         Add _gdk_x11_drawable_update_size()
1234         
1235         * gdk/x11/gdkwindow-x11.c (gdk_window_resize) 
1236         (gdk_window_move_resize)
1237         * gdk/x11/gdkevents-x11.c (gdk_event_translate): 
1238         Call _gdk_x11_drawable_update_size().
1239
1240 2005-05-17  Matthias Clasen  <mclasen@redhat.com>
1241
1242         * gtk/gtktextview.c (cursor_blinks): Don't blink the cursor
1243         if the text view is not editable.  
1244
1245         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
1246         the popup posted if the button is released over the cellview.
1247         This matches the behaviour of other combo box implementations.  
1248         (#171378)
1249         
1250         * gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
1251         when recursing.  (#153682, Felipe Heidrich)
1252
1253 2005-05-16  Matthias Clasen  <mclasen@redhat.com>
1254
1255         * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up 
1256         and GDK_Page_Down twice.  (#168333, Hazael Maldonado Torres)
1257
1258         * gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if 
1259         the entry is not editable.  (#304171, Nikos Kouremenos)
1260         
1261         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor): 
1262         Make sure the action of the button and the dialog are in sync,
1263         when the dialog is provided by the app.  (#303987, David A Knight)
1264
1265         * gdk/gdkpango.c (gdk_pango_renderer_get_default): Fix a typo
1266         in the docs.  (#303940, Masao Mutoh)
1267
1268         * configure.in (GTK_DOC_CHECK): Check for gtk-doc 1.4.
1269
1270         * gtk/gtktoggleaction.c (connect_proxy): Be more careful when
1271         casting.  (#304089, Philip Langdale)
1272
1273         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only shrink
1274         the label if we need to.  (#169390, Felix Riemann)
1275
1276 Sat May 14 00:07:46 2005  Manish Singh  <yosh@gimp.org>
1277
1278         * gdk/gdkdraw.c
1279         * gdk/gdkpango.c: #include gdkcairo.h for gdk_cairo_create()
1280         declaration.
1281
1282         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): actually
1283         call gdk_cairo_set_source_color() with a color.
1284
1285         * gtk/gtkimage.c (gtk_image_expose): remove unused stock_id variable.
1286
1287         * tests/testiconview.c (main): cast args of drag functions to the
1288         appropriate type.
1289
1290 2005-05-13  Owen Taylor  <otaylor@redhat.com>
1291
1292         * gdk/x11/gdkdrawable-x11.c: Update for cairo-xlib API change.
1293
1294         * gdk/x11/gdkpixmap-x11.[ch] gdk/gdk.symbols: Export 
1295         gdk_pixmap_impl_x11_get_type(), needed in gdkdrawable-x11.c.
1296         
1297 2005-05-11  Owen Taylor  <otaylor@redhat.com>
1298
1299         * tests/testgtk.c (on_alpha_window_expose): Fix to use
1300         gdk_cairo_create(). (create_alpha_window): Hook up "response"
1301         to close the window.
1302
1303 2005-05-11  Owen Taylor  <otaylor@redhat.com>
1304
1305         * gtk/gtkcolorbutton.c: Use a GtkAlignment rather than a GtkDrawingArea
1306         to draw the swatch in to avoid having an extraneous window.
1307         
1308         * gtk/gtkcolorsel.c (color_sample_draw_sample): Actually se tthe
1309         color when !has_opacity.
1310
1311 2005-05-10  Owen Taylor  <otaylor@redhat.com>
1312
1313         * gdk/gdkcairo.[ch] gdk/gdkcolor.[ch] gdk/Makefile.am: Add source
1314         files for Cairo convenience functionality.
1315
1316         * gdk/gdkcairo.h (gdk_cairo_rectangle, gdk_cairo_region): Add a
1317         convenience functions to add GdkRectangle, GdkRegion to a cairo path.
1318
1319         * gdk/gdkwindow.c gdk/gdkgc.c gtk/gtkcolorsel.c gtk/gtkiconview.c 
1320         gtk/gtkstyle.c: Use gdk_cairo_rectangle/region().
1321
1322         * gdk/gdkcairo.[ch] gdk/gdkdrawable.h gdk/gdkdraw.c: Rename
1323         gdk_drawable_create_cairo_context() to gdk_cairo_create().
1324
1325         * gdk/gdkcairo.c gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c:
1326         Rename gdk_pixbuf_set_as_cairo_source() to 
1327         gdk_cairo_set_source_pixbuf().
1328
1329         * gdk/gdkdraw.c gdk/gdkpango.c gtk/gtkcolorsel.c gtk/gtkhruler.c
1330         gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkstyle.c gtk/gtkvruler.c:
1331         Adjust for renames.
1332
1333         * gdk/gdk.symbols: Update.
1334
1335         * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): Fix 
1336         coordinate system problem that was causing the wrong portions
1337         to be invalidated.
1338
1339         * gtk/gtkcellrenderer.c (gtk_cell_renderer_render)
1340         gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render)
1341         gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render)
1342         gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render)
1343         gtk/gtkcellview.c (gtk_cell_view_expose)
1344         gtk/gtkdnd.c (gtk_drag_highlight_expose)
1345         gtk/gtkentry.c (gtk_entry_draw_text) 
1346         gtk/gtktextview.c (text_window_invalidate_rect): Some cairoization.
1347
1348         * gtk/gtkcalendar.[ch]: Beat into something roughly resembling
1349         GTK+ style ... use instance-private data and standard names for
1350         private structure, etc. Move function docs inline.
1351
1352         * gtk/gtkcalendar.[ch]: Switch to drawing everything in
1353         expose. Switch drawing to Cairo.
1354
1355         * gtk/gtkcalendar.c (gtk_calendar_freeze): Deprecate
1356         gtk_calendar_freeze/thaw
1357
1358 2005-05-10  Tor Lillqvist  <tml@novell.com>
1359
1360         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Check
1361         that GDK_IS_SCREEN(screen) (like the X11 backend does), not screen
1362         == gdk_screen_get_default(), as that might return NULL when this
1363         function is called.
1364
1365 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
1366
1367         * gtk/gtkalignment.c (gtk_alignment_size_allocate): Flip the
1368         padding in RTL mode.  (#303572, Maciej Katafiasz)
1369
1370 2005-05-09  Owen Taylor  <otaylor@redhat.com>
1371
1372         * gdk/gdkrgb.c (gdk_rgb_convert_0888_br, gdk_rgb_convert_8880_br): 
1373         Fill in unused bits so they can be used for the depth-32 target case.
1374         Rewrite so that that gives a marginal speedup rather than a
1375         marginal slowdown. (on x86)
1376
1377         * gdk/gdkscreen.h gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkvisual-x11.c:
1378         Add gdk_screen_get_rgba_colormap/visual to get a visual for
1379         windows with an alpha channel, if one exists.
1380
1381         * gdk/win32/gdkscreen-win32.c gdk/linux-fb/gdkscreen-fb.c:
1382         Stub out gdk_screen_get_rgba_colormap/visual.
1383
1384         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): computation of
1385         "unused" wasn't right for depth == 32, since it depended on
1386         shifting by 32.
1387
1388         * gdk/gdkrgb.c: Fill in alpha bits with 1s. (Based on patch from
1389         Keith Packard,
1390         http://mail.gnome.org/archives/gtk-devel-list/2004-June/msg00080.html)
1391
1392         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
1393         Implement again, without using Xft.
1394
1395         * tests/testgtk.c: Add a test for windows with an alpha channel.
1396
1397 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
1398
1399         * autogen.sh: Revert accidental commit.
1400
1401 2005-05-08  Matthias Clasen  <mclasen@redhat.com>
1402
1403         * gdk/gdkcolor.c (gdk_cairo_set_source_color): 
1404         * gdk/gdkimage.h: 
1405         * gdk/gdkdraw.c: 
1406         * gdk/gdkcolor.h: 
1407         * gdk/gdkcursor.h: 
1408         * gdk/x11/gdkcolor-x11.c: Small documentation additions.
1409
1410 2005-05-07  Matthias Clasen  <mclasen@redhat.com>
1411
1412         * gtk/gtkscrolledwindow.h: 
1413         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_hscrollbar): 
1414         (gtk_scrolled_window_get_cscrollbar): Change the return 
1415         type to GtkWidget*, proposed by Owen Taylor. 
1416
1417         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_width_mm) 
1418         (gdk_screen_get_height_mm): Fix typos in the docs.  (#303389,
1419         Masao Mutoh)
1420
1421 2005-05-07  Matthias Clasen <mclasen@redhat.com>
1422
1423         * gtk/gtkiconview.c: Fix a copy-and-paste accident, spotted
1424         by Owen Taylor.
1425
1426 2005-05-07  Owen Taylor  <otaylor@redhat.com>
1427
1428         * gdk/gdkgc.c (gc_get_foreground): Get the foreground color, not
1429         the background color.
1430
1431 2005-05-07  Owen Taylor  <otaylor@redhat.com>
1432
1433         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h (gdk_pixbuf_set_as_cairo_source): 
1434         Change prototype to match cairo_set_source_surface().
1435
1436         * gdk/gdkdraw.c gdk/gdkgc.c gdk/gdkpixbuf-render.c gdk/gdkwindow.c
1437         gtk/gtkhsv.c tests/testcairo.c.
1438
1439 2005-05-06  Federico Mena Quintero  <federico@ximian.com>
1440
1441         Merged from gtk-2-6:
1442
1443         * gtk/gtkfilesystemunix.c (fill_in_mime_type): Don't fill the mime
1444         types if this is an AFS directory.
1445         (fill_in_names): If we are in an AFS directory, set the MIME type
1446         blindly to "x-directory/normal".
1447
1448 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
1449
1450         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Always
1451         initialize child-visible to FALSE, otherwise we may end up
1452         with the wrong page visible initially.  (#302283, Patrik Fimml)
1453
1454         * gtk/gtktreeview.c (gtk_tree_view_draw_arrow): Make expanders
1455         appear insensitive in insensitive treeviews. 
1456
1457 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
1458
1459         * gtk/gtktoolbar.c: Fix a typo in the docs.  (#303024, 
1460         Morten Welinder)
1461
1462 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
1463
1464         * gtk/gtk.symbols:
1465         * gtk/gtkiconview.[hc]: Add DND support similar to the DND
1466         support in the tree view.  (#150270)
1467
1468 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
1469
1470         * gtk/gtktreednd.h: 
1471         * gtk/gtkwidget.h: Small cleanups.
1472
1473         * gtk/gtktreeview.c (gtk_tree_view_get_dest_row_at_pos): Fix
1474         a typo.
1475
1476 2005-05-04  Owen Taylor  <otaylor@redhat.com>
1477
1478         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.h: Fix a bug
1479         in focus tracking when we move between has_pointer_focus and 
1480         has_focus_window directly. (#109246, Billy Biggs, Niko Tyni 
1481         and others)
1482
1483         * gdk/x11/gdkevents-x11.c: Also fix some confusion that could
1484         happen in the case of no window manager + keyboard grabs, by
1485         moving to a more consistent model of when we pay attention to
1486         mode=NotifyGrab/NotifyUngrab events.
1487         
1488         * docs/focus_tracking.txt: Extensive writeup about how to track
1489         focus under X11.
1490
1491 Wed May  4 13:21:41 2005  Søren Sandmann  <sandmann@redhat.com>
1492
1493         * tests/testcairo.c (draw): Replace cairo_show_surface() uses with
1494         cairo_set_source_surface()/cairo_paint();
1495
1496 2005-05-04  Tor Lillqvist  <tml@novell.com>
1497
1498         * gdk/win32/gdkdrawable-win32.c (generic_draw, blit_from_pixmap)
1499         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values,
1500         _gdk_win32_gc_new, _gdk_windowing_gc_set_clip_region,
1501         gdk_win32_hdc_get): Minor fixes to make Win32 backend compile
1502         again.
1503
1504 2005-05-03  Matthias Clasen  <mclasen@redhat.com>
1505
1506         * gtk/gtkfilesystem.c: 
1507         * gtk/gtkcelleditable.c: 
1508         * gtk/gtktreemodel.c: Avoid getting the interface struct
1509         twice in the same function.  (#300513, Billy Biggs)
1510
1511         * gtk/gtkscrolledwindow.h:
1512         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_vscrollbar): 
1513         * gtk/gtk.symbols: Add getters for the scrollbars.  (#167181,
1514         Billy Biggs)    
1515
1516         * gtk/gtkdialog.h: 
1517         * gtk/gtkdialog.c (gtk_dialog_get_response_for_widget): 
1518         Make this function public.  (#170748, Morten Welinder)
1519
1520 2005-05-02  Federico Mena Quintero  <federico@ximian.com>
1521
1522         Merged from gtk-2-6:
1523
1524         Fixes #301068:
1525
1526         * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add fields
1527         to store struct stat for /afs and /net, and boolean fields to say
1528         whether these are valid.
1529         (struct _GtkFileFolderUnix): Added a boolean is_network_dir field.
1530         (gtk_file_system_unix_get_folder): Fill in the is_network_dir
1531         field of the folder structure.
1532         (fill_in_names): If the folder is a network directory, create a
1533         fake struct stat for its entries.
1534         (fill_in_stats): Don't stat() the children of network directories.
1535
1536         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): If the mtime
1537         is 0, use "Unknown" for the cell's displayed text.
1538
1539 2005-04-28  Owen Taylor  <otaylor@redhat.com>
1540
1541         * gtk/gtkwidget.c: Add a draw-border style property to allow
1542         themes to draw outside the widget's allocation.
1543
1544         * gdk/gdkwindow.c gtk/gtkstyle.c: Remove some save/restore pairs
1545         that were working around the clip-leakage bug in Cairo.
1546
1547         * gtk/gtkstyle.c: Use cairo_fill_preserve() rathe than
1548         save/fill/restore.
1549
1550         * gdk/gdkgc.c gdk/gdkinternals.h: Add _gdk_gc_update_context()
1551         That updates a Cairo context to match a GC.
1552
1553         * gdk/gdkdraw.c: Use _gdk_gc_update_context() to add support
1554         for tiles/stipples/clipping to gdk_draw_glyphs(), 
1555         gdk_draw_trapezoids().
1556
1557         * gdk/gdkpango.c: Use _gdk_gc_update_context() instead of internal
1558         implementation of stipples. Use one cairo_t across the entire
1559         drawing operation. Replace cairo_matrix_create() with 
1560         stack-allocated matrices.
1561
1562         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c 
1563         gdk/win32/gdkgc-win32.c: Save various aspects of the 
1564         GC state (fill, tile, stipple, foreground, background, clip region)
1565         in instance-private-data for future use. Add getters.
1566         Get rid of _gdk_windowing_gc_get_foreground() function implemented 
1567         by the backends.
1568
1569         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
1570         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Add
1571         _gdk_gc_init() to do initial setup of the GC from values;
1572         fixes some problems from drawable redirection.
1573
1574         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
1575         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Move 
1576         gdk_gc_copy() and gdk_gc_set_clip_{region,rectangle}() into 
1577         the generic code, add _gdk_windowing_gc_copy(), 
1578         _gdk_windowing_gc_set_clip_region() to do backend specific
1579         stuff.
1580
1581         * gdk/x11/{gdkprivate-x11.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
1582         gdk/win32/{gdkprivate-win32.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
1583         gdk/linux-fb/{gdkprivate-fb.h,gdkgc-fb.c.c,gdkdrawable-fb.c}:
1584         Don't duplicate state that now is stored by the generic code.
1585
1586         * gdk/gdk.symbols Update
1587
1588 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
1589
1590         * tests/testiconview.c: Test cell renderers.
1591
1592         * gtk/gtk.symbols: Add new functions.
1593
1594         * gtk/gtkiconview.[hc]: Implement GtkCellLayout and use
1595         cell renderers for drawing and editing. (#148144, #160242)
1596
1597 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
1598
1599         * gtk/gtkcellrenderertext.c (get_size): Return a sufficient
1600         width for cases where pango_layout_get_pixel_extents() returns
1601         a rectangle with nonzero x. 
1602
1603         * gtk/gtkselection.c: Small doc fixes.
1604
1605         * gtk/gtkmenushell.c (gtk_menu_shell_set_take_focus): 
1606         (gtk_menu_shell_get_take_focus): Fix up the docs a bit.
1607
1608 2005-05-02  Michael Natterer  <mitch@imendio.com>
1609
1610         * gtk/gtkmain.c (do_post_parse_initialization): return silently if
1611         "gtk_initialized" is TRUE. Re-enables calling GTK's init functions
1612         multiple times when using gtk_get_option_group(), just as one can
1613         call gtk_init() multiple times without doing any harm.
1614
1615 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
1616
1617         * gtk/gtktextview.c (gtk_text_view_expose_event): Propagate
1618         the event to unanchored children in the text window.  
1619         (#302494, Stephen Kennedy)
1620
1621 2005-04-30  Tor Lillqvist  <tml@novell.com>
1622
1623         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Take
1624         multi-monitor offset into account. (#302525)
1625
1626 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
1627
1628         * gtk/gtkradioaction.c: Make the docs build.  (#302230,
1629         Ali Akcaagac)
1630
1631         * gtk/gtkiconview.c (gtk_icon_view_map): Get rid of this
1632         function, instead show the bin_window when it is created.
1633
1634         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
1635         grab focus to unrealized widgets.  (#302240, Philip Langdale)
1636
1637         * gtk/gtktreeview.c (gtk_tree_view_state_changed): Set
1638         background upon state changes.  (#301651, Billy Biggs)
1639         (gtk_tree_view_get_path_at_pos): Take RTL into account
1640         when iterating over the columns.  (#302163)
1641         
1642         * configure.in: Check for nm.
1643
1644         * gtk/Makefile.am: Use $(NM), not nm directly. (#301299, 
1645         Nguyen Thai Ngoc Duy)
1646
1647         * gtk/gtkiconview.c (gtk_icon_view_move_cursor_start_end): Use
1648         the internal unselect_all function, since we need the unselection
1649         to happen even in browse mode.  (#300995, Mathias Hasselmann)
1650
1651         * gtk/gtkuimanager.c (update_node): Use g_object_notify() instead
1652         of triggering a ::notify by re-setting the property.  (#300982,
1653         Sven Neumann)
1654
1655         * gtk/gtkaction.c (connect_proxy): Use gtk_action_sync_tooltip().
1656
1657         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_item): Also
1658         scroll horizontally when necessary, and keep the northwest
1659         corner of the item visible.  (#300913, Mathias Hasselmann)
1660
1661         * tests/testiconview.c: Add some more tests.
1662
1663         * gtk/gtkiconview.c (gtk_icon_view_select_path): Don't crash
1664         if the path does not point to a row in the model.  (#300909,
1665         Mathias Hasselmann)
1666         (gtk_icon_view_rows_reordered): Re-layout here.  (#301009, 
1667         Mathias Hasselmann)
1668
1669         * tests/testtext.c: Add some more attribute tests.
1670
1671         * gtk/gtktexttag.c (gtk_text_tag_class_init): Correct the documentation
1672         of the rise property. String change, but it is more important to
1673         be correct than to be translated.  (#301740)
1674
1675 2005-04-25  Tor Lillqvist  <tml@novell.com>
1676
1677         * gtk/gtkfilesystemwin32.c
1678         (gtk_file_system_win32_volume_get_display_name): Get volume name
1679         also on Win9x. (#301798, Daniel Atallah)
1680         (canonicalize_filename): Add explicit braces to silence compiler
1681         warning.
1682
1683 2005-04-22  Tor Lillqvist  <tml@novell.com>
1684
1685         * gtk/gtkmain.c: Initailize gettext before use. Calling
1686         bindtextdomain() and bind_textdomain_codeset() in
1687         do_post_parse_initialization() is too late. Put the calls in a new
1688         function gettext_initialization(), and call that from
1689         gtk_init_with_args() and gtk_parse_args(). Fixes #170948 for
1690         GTK+'s part, but the same problem occurs also at least in
1691         atk. Thanks to Robert Ögren, Daniel Atallah and Kevin Stange.
1692
1693 2005-04-19  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1694
1695         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Match
1696         character height instead of cell height. Fix #301228.
1697
1698 2005-04-18  Federico Mena Quintero  <federico@ximian.com>
1699
1700         Merged from gtk-2-6:
1701
1702         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): Remove
1703         obsolete assertion that the selected row can't be a volume; this
1704         is handled by the "removable" column now.  Fixes #301017.
1705
1706 2005-04-18  Owen Taylor  <otaylor@redhat.com>
1707
1708         * gtk/gtkstyle.c gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c
1709         * gdk/gdkcolor.c gdk/gdkwindow.c gdk/gdkpixbuf-render.c
1710         gdk/gdkpango.c tests/testcairo.c: Update to new Cairo API for
1711         setting color and opacity. (#301066, Vincent Noel)
1712  
1713 2005-04-15  Federico Mena Quintero  <federico@ximian.com>
1714
1715         Merged from gtk-2-6:
1716
1717         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
1718         Patch from Christian Neumair <chris@gnome-de.org>; only select the
1719         first row if we are in OPEN mode.  The only other case we were
1720         letting pass through was SELECT_FOLDER, but selecting the first
1721         row when changing folders confuses people when folders are
1722         actually being selected.  Fixes #171885.
1723
1724 2005-04-13  Matthias Clasen  <mclasen@redhat.com>
1725
1726         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
1727         Revert the fix for #169870, adjust the documentation instead. 
1728
1729         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
1730         Revert the fix for #170727.     
1731
1732 2005-04-11  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1733
1734         Fix #300218:
1735
1736         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
1737         C99ism.
1738
1739         * gtk/updateiconcache.c: Guard inclusion of unistd.h and
1740         utime.h.
1741
1742 2005-04-09  Matthias Clasen  <mclasen@redhat.com>
1743
1744         * gdk/x11/gdkinput-xfree.c:
1745         * gdk/x11/gdkinput-none.c:
1746         * gdk/gtk.symbols: Some more fixes necessary to 
1747         make building with gcc 4 work.
1748
1749         Add 16x16 versions of the zoom icons and of 
1750         GTK_STOCK_INDEX. Some of the images were taken from 
1751         the hicolor icon theme, and were originally created 
1752         by Jakub Steiner and Tuomas Kuosmanen.  (#167515, 
1753         Vincent Noel)
1754         
1755         * gtk/stock-icons/stock_index_16.png:
1756         * gtk/stock-icons/stock_zoom_1_16.png:
1757         * gtk/stock-icons/stock_zoom_fit_16.png:
1758         * gtk/stock-icons/stock_zoom_in_16.png:
1759         * gtk/stock-icons/stock_zoom_out_16.png: New images.
1760         
1761         * gtk/stock-icons/Makefile.am: Add the new images. 
1762
1763         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
1764         Don't display too many broken images.  (#169870, Roman
1765         Kagan, patch by Ivan Wong)
1766
1767         * gtk/gtkwidget.c (gtk_widget_unparent): Remove debugging
1768         output.  (#300013, Tommi Komulainen)
1769
1770 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1771
1772         * gtk/gtkimage.c (gtk_image_expose, gtk_image_calc_size): 
1773         If a stock_id is unknown, display the missing image. (#169870,
1774         Steven Walter)
1775
1776         * gtk/gtkiconcache.c (icon_name_hash): Use the same function 
1777         as in updateiconcache.c.  (spotted by Morten Welinder)
1778
1779 2005-04-08  Carl Worth  <cworth@cworth.org>
1780
1781         * gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
1782         now that cairo exposes the cairo_matrix_t structure.
1783         
1784         * gdk/gdkpixbuf-render.c: (gdk_pixbuf_set_as_cairo_source): Track
1785         cairo API change in signedness of data argument.
1786
1787 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1788
1789         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Make this
1790         work when called from gtk_combo_box_destroy().  (#172999,
1791         Christian Persch)
1792
1793 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1794
1795         Fix double-click to autosize treeview columns. This was
1796         probably broken since 2.2 ! (#169675)
1797         
1798         * gtk/gtktreeview.c (gtk_tree_view_button_press): Leave the
1799         "user-resized" state of the column on a double-click to
1800         autosize.
1801         (gtk_tree_view_button_press, gtk_tree_view_motion_resize_column): 
1802         Enter the "user-resized" state of the column only if a drag
1803         actually changes the column width, not on any click.
1804
1805 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
1806
1807         * gtk/gtkmenu.c (gtk_menu_paint): Allow setting background
1808         images on menus.  (#169532, Benjamin Otte)
1809         
1810         * gtk/updateiconcache.c (write_card16, write_card32): Avoid
1811         unaligned access.  (#172947)
1812
1813         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): 
1814         Consistently use the term "Bookmarks" in the UI.  (#166906,
1815         Sebastian Bacher)
1816
1817         Some fixes from Morten Welinder (#172947):
1818         
1819         * gtk/updateiconcache.c (icon_name_hash): Make this compiler- 
1820         and platform-independent.
1821         (is_cache_up_to_date): Don't compare mtimes is a stat call failed.
1822         (build_cache): Error out if a stat fails.  
1823
1824 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
1825
1826         * gtk/gtktreeview.c (gtk_tree_view_set_expander_column): Add 
1827         a hint about hiding expanders.
1828
1829         * gtk/updateiconcache.c (is_cache_up_to_date): Return 
1830         TRUE if the cache is newer than the directory.  (#172852,
1831         Jacob Kroon)
1832
1833         * configure.in: Replace an explicit pkg-config by 
1834         $PKG_CONFIG.  (#168074, Hans-Wolfgang Loidl)
1835         
1836         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
1837         Ignore regions which fall completely outside the line.  
1838         (#165862, Felipe Heidrich)
1839
1840 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
1841
1842         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
1843         -1 as possible value.  
1844         (gtk_tree_view_enable_model_drag_source) 
1845         (gtk_tree_view_enable_model_drag_dest): Pass the target list 
1846         to the underlying dnd implementation, otherwise we miss the 
1847         target info in the drag-data-received signal.  (#164085, Jorn
1848         Baayen)
1849
1850 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
1851
1852         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column) 
1853         (gtk_tree_view_bin_expose): Avoid a few unnecessary calls
1854         to gdk_window_get_pointer(). (#168015, Billy Biggs)
1855
1856         * po/.cvsignore, po-properties/.cvsignore: Remove
1857         Makefile.in.in.  (#171092, Stepan Kasal)
1858
1859         * gtk/gtkrc.c (gtk_rc_parse_style): Don't modify 
1860         scanner->value, copy it first.  (#165693, Tommi Komulainen)
1861
1862 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1863
1864         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_grab_focus): 
1865         * gtk/gtkcombobox.c (gtk_combo_box_grab_focus): Implement
1866         grab_focus for GtkComboBox and GtkComboBoxEntry.  (#171912,
1867         Gustavo Carneiro)
1868
1869         * gtk/gtkicontheme.c: Store icon caches along with the
1870         mtimes of the toplevel directories. The previous
1871         mechanism of a hashtable-per-theme caused duplicate icon
1872         caches for the same toplevel directory to be created.  
1873         (#170030)
1874
1875 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1876
1877         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): 
1878         Fix a typo in a warning.
1879
1880         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Protect
1881         the license and credits buttons from being affected by 
1882         gtk_widget_show_all().  (#172724)
1883
1884 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1885
1886         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): Keep a 
1887         reference to the item.  (#167920, Hazael Maldonado Torres)
1888
1889         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Add some
1890         more docs on interactive search.
1891
1892 2005-04-05  Tor Lillqvist  <tml@novell.com>
1893
1894         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Handle 16 colour
1895         display mode. For some reason, in this mode GetDeviceCaps(BITSPIXEL)
1896         returns 1 (but GetDeviceCaps(NUMCOLORS) does return 16). (#143415)
1897
1898         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Don't force
1899         24bpp GdkVisual on 32bpp displays. (#140706)
1900
1901 Mon Apr  4 19:13:23 2005  Jonathan Blandford  <jrb@redhat.com>
1902
1903         Fix for #172319, Tristan Van Berkom:
1904         
1905         * gtk/gtktreeview.c (gtk_tree_view_expand_all): change to use
1906         gtk_tree_view_real_expand_row() instead of doing this by hand.
1907
1908 2005-04-04  Johan Dahlin  <johan@gnome.org>
1909
1910         * gtk/gtktextbuffer.c: (gtk_text_buffer_class_init),
1911         (gtk_text_buffer_set_property), (gtk_text_buffer_get_property),
1912         (gtk_text_buffer_set_text): Add GtkTextBuffer::text (#172631)
1913
1914 Mon Apr  4 14:33:55 2005  Manish Singh  <yosh@gimp.org>
1915
1916         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text):
1917         cast combo->priv->entry to GTK_ENTRY()
1918
1919         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
1920         cast completion->priv->tree_view to GTK_TREE_VIEW()
1921
1922 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1923
1924         * gtk/gtktextbuffer.c: Some trivial doc fixes.
1925
1926         * gtk/gtkwidget.c (gtk_widget_set_redraw_on_allocate): Improve 
1927         the wording of the doc comment.  (#172422, Vincent Untz)
1928
1929 2005-04-04  Owen Taylor  <otaylor@redhat.com>
1930
1931         * gtk/gtkstyle.c (gtk_default_draw_expander): Covert expander
1932         drawing to Cairo. Also always draw the entire triangle instead
1933         of just drawing the center for prelight. (Fixes inconsistent
1934         drawing in GtkTreeView.)
1935
1936 2005-04-04  Johan Dahlin  <johan@gnome.org>
1937
1938         * gtk/gtk.symbols: Remove symbols accidentally added.
1939         * gtk/gtkentryprivate.h: Add boolean property popup_set_width
1940         * gtk/gtktoggletoolbutton.c: (gtk_toggle_tool_button_class_init):
1941         Use object_class instead of gobject_class
1942
1943 Mon Apr  4 12:14:35 2005  Søren Sandmann  <sandmann@redhat.com>
1944
1945         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Translate x, y into
1946         widget coordinates instead of root coordinates. Patch from Jorn
1947         Baayen. (#172236)
1948
1949 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1950
1951         * gtk/gtktoolbar.c: Add a tooltips property.
1952
1953         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_class_init): 
1954         * gtk/gtkruler.c (gtk_ruler_class_init): Add docs.
1955
1956         * gtk/gtktoggletoolbutton.c: Add an active property.
1957
1958 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1959
1960         Allow completion popups to be wider than the entry. (#131916, 
1961         Ross Burton)
1962         
1963         * gtk/gtkentrycompletion.[hc]: Add a boolean popup-set-width property.
1964
1965         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
1966         Don't force the popup to have the same width as the entry if 
1967         popup-set-width is FALSE.
1968
1969         * gtk/gtk.symbols: Add new functions.
1970
1971 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1972
1973         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
1974         Use gtk_accel_map_change_entry(), so that reusing the same
1975         action name works.  (#170727, Paolo Borelli)
1976
1977 2005-04-04  Tor Lillqvist  <tml@novell.com>
1978
1979         * gdk/win32/gdkmain.c (_gdk_win32_cf_to_string): New debugging
1980         function, to log a clipboard format name symbolically.
1981         (_gdk_win32_data_to_string): Also new, to log random data bytes.
1982
1983         Implement delayed rendering on Win32, specifically for transfering
1984         images through the clipboard from GTK+ apps to other
1985         apps (#168173, implementation by Ivan Wong):
1986
1987         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
1988         Handle WM_RENDERFORMAT.
1989
1990         * gdk/win32/gdkprivate-win32.h
1991         * gdk/win32/gdkglobals-win32.c: Add _format_atom_table,
1992         _delayed_rendering_data and _image_bmp.
1993
1994         * gdk/win32/gdkmain-win32.c: Initialize _image_bmp.
1995
1996         * gdk/win32/gdkproperty-win32.c (gdk_property_change):
1997         Accept formats other than GDK_TARGET_STRING or _utf8_string, and
1998         assume they are handled through delayed rendering.
1999
2000         * gdk/win32/gdkselection-win32.c (gdk_selection_convert):
2001         Return all available formats (including those registered by GTK+
2002         apps) on request_targets.
2003         (gdk_selection_property_get): We should append a zero byte like
2004         X11 does.
2005         (gdk_win32_selection_add_targets): New function, for
2006         gtkselection's use. Win32 requires that the clipboard owner
2007         registers all valid formats even if the owner wants delayed
2008         rendering.
2009         (_gdk_win32_selection_convert_to_dib): New function. Convert
2010         images to DIB using gdk-pixbuf.
2011
2012         * gdk/win32/gdkwin32.h: Declare gdk_win32_selection_add_targets().
2013
2014         * gtk/gtkselection.c (gtk_selection_add_target,
2015         gtk_selection_add_targets): Call gdk_win32_selection_add_targets()
2016         to register target formats.
2017
2018         * gdk/gdk.symbols: Add gdk_win32_selection_add_targets().
2019
2020 2005-04-03  Hans Breuer  <hans@breuer.org>
2021
2022         [merged from gtk-2-6 branch]
2023         * gdk/win32/gdkdrawable-win32.c : let dash_offset shift the start of
2024         the line pattern not the start of the line. Fixes bug #171641.
2025
2026         * gtk/makefile.msc.in : follow .symbols changes
2027
2028         * gdk/win32/gdkwindow-win32.c : declare and resolve GetAncestor()
2029         dynamically. (It is not available in _WIN_VER <= 0x0400)
2030
2031         * gdk/win32/makefile.msc : removed gdkpango-win32.obj
2032
2033         * gtk/gtkhsv.c gtk/gtkstyle.c : use G_PI instead of M_PI
2034
2035         [also applied to gtk-2-6 branch]
2036         * gdk/makefile.msc gdk-pixbuf/makefile.msc : handle gdk*alias.def
2037
2038         * gdk/makefile.msc.in : add gtkmnemonichash.obj
2039
2040         * test/testgtk.c(set_parent_signal) : use g_message instead of
2041         g_print to keep the 'testgtk --bench=all' output clean
2042
2043 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
2044
2045         * gtk/gtkruler.c: Add a "metric" property.
2046
2047         * gtk/gtkradiomenuitem.c: Add a "group" property like
2048         the one found in radio buttons.
2049
2050         * gtk/gtkradiobutton.c (gtk_radio_button_class_init): Fix
2051         a typo in the docs.
2052         (gtk_radio_button_set_group): Add change notification.
2053         
2054 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
2055
2056         * gtk/gtkselection.c: Move documentation inline, document
2057         if add_target functions append or prepend.  (#172350, 
2058         Jon-Kare Hellan)
2059
2060 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
2061
2062         Make gtk_combo_box_get_active_text do the right thing for
2063         GtkComboBoxEntry (#171373, Robert Staudinger)
2064         
2065         * gtk/gtkcombobox.h: Add a get_active_text vfunc.
2066         
2067         * gtk/gtkcombobox.c (gtk_combo_box_real_get_active_text): And
2068         implement it here.
2069
2070         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text): 
2071         Implement get_active_text by always returning the content of 
2072         the entry.
2073
2074 2005-03-31  Sven Neumann  <sven@gimp.org>
2075
2076         Merged from gtk-2-6:
2077
2078         * gtk/gtkbutton.c
2079         * gtk/gtkiconview.c: fixed gtk-doc comments.
2080
2081 2005-03-31  Michael Natterer  <mitch@gimp.org>
2082
2083         Allow to pop up menus without grabbing the keyboard. Useful for
2084         stuff like virtual keyboards. Fixes bug #159890
2085
2086         * gtk/gtk.symbols
2087         * gtk/gtkmenushell.[ch]: added boolean property "take-focus"
2088         and public API gtk_menu_shell_set/get_take_focus().
2089
2090         * gtk/gtkmenu.c (gtk_menu_popup)
2091         (popup_grab_on_window): don't grab the keyboard if take_focus
2092         is FALSE.
2093
2094         * gtk/gtkmenuitem.c (_gtk_menu_item_popup_submen): propagate the
2095         parent menu_shell's take_focus property to the submenu which is
2096         about to be popped up.
2097
2098 2005-03-30  Federico Mena Quintero  <federico@ximian.com>
2099
2100         Merged from gtk-2-6:
2101
2102         Fix #170755:
2103
2104         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Only stop editing
2105         if the row which changed is the same as the row being edited.
2106
2107 2005-03-30  Matthias Clasen  <mclasen@redhat.com>
2108
2109         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
2110         Make enable_search control only typeahead, not C-f.  (#170435,
2111         Sven Neumann)
2112         (gtk_tree_view_start_interactive_search): Pass keybinding == TRUE.
2113
2114         * gdk/gdkpixbuf.h: Include cairo.h
2115
2116         * gtk/gtkclipboard.c (gtk_clipboard_set_can_store): 
2117         Don't accept n_targets == -1.
2118         (clipboard_unset): unref the old_data, not the
2119         user_data which we have just cleared.  (#172038, Sven
2120         Neumann)
2121
2122         * gtk/gtkcombobox.c (gtk_combo_box_popup): Don't 
2123         segfault if somebody tries to popup an unrealized
2124         combo box.  (#172031, Felipe Heidrich)
2125
2126 2005-03-30  Tor Lillqvist  <tml@novell.com>
2127
2128         * gdk/win32/gdkevents-win32.c (build_pointer_event_state): The
2129         state field should represent the state before the event, like on
2130         X11. (#169753)
2131         (gdk_event_translate): Fix event filter handling. If an event
2132         filter (global, client message filter, of window-specific) returns
2133         GDK_FILTER_CONTINUE, continue as if nothing happened. If it
2134         returns GDK_FILTER_REMOVE or GDK_FILTER_TRANSLATE, return TRUE
2135         from gdk_event_translate() which means that DefWindowProc() will
2136         not be called.
2137         (gdk_event_translate): Fix client message handling. Append a
2138         GDK_CLIENT_EVENT unless there is a filter that matches and returns
2139         something other than GDK_FILTER_CONTINUE. (#135552)
2140
2141 2005-03-29  Matthias Clasen  <mclasen@redhat.com>
2142
2143         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_visible_func): 
2144         Document the need to refilter if parameters of the visibility function
2145         change.  (#169516, Olivier Sessink)     
2146
2147 Mon Mar 28 15:13:42 2005  Søren Sandmann  <sandmann@redhat.com>
2148
2149         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
2150         invalidate areas that are covered by mapped input-output child
2151         windows. Bug 141380.
2152
2153 2005-03-28  Jeroen Zwartepoorte  <jeroen.zwartepoorte@gmail.com>
2154
2155         * gtk/gtkfilechooserdefault.c: (update_preview_widget_visibility): Make
2156         the preview label ellipsize so the dialog layout stays constant.
2157         (#171398)
2158
2159 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
2160
2161         * gtk/gtktreeview.c (gtk_tree_view_key_press): Don't pop up
2162         the context menu of the search entry if it is not visible.
2163         (#169534, Billy Biggs)
2164
2165 2005-03-27  Tor Lillqvist  <tml@novell.com>
2166
2167         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
2168         after all, and in fact necessary with HEAD libtool.
2169
2170 2005-03-26  Matthias Clasen  <mclasen@redhat.com>
2171
2172         * gtk/*.c: 
2173         * gdk/gdkdisplaymanager.c: 
2174         Use canonical names for g_object_notify() as well. 
2175
2176 2005-03-24  Tor Lillqvist  <tml@novell.com>
2177
2178         * configure.in (GTK_EXTRA_CFLAGS): Include the -mms-bitfields flag
2179         in GTK_EXTRA_CFLAGS on Win32, so that it gets included in the
2180         gtk+-2.0.pc file and automatically used by dependents. MSVC users
2181         who use pkg-config will have to manually edit it out from
2182         gtk+-2.0.pc, sorry. Maybe pkg-config should be enhanced to support
2183         some kind of conditionals in .pc files?
2184
2185 2005-03-23  Matthias Clasen  <mclasen@redhat.com>
2186
2187         * gtk/gtkfilechooserbutton.c (update_combo_box): Remove
2188         a call whose result was unused and leaked.  (#170776,
2189         Kjartan Maraas)
2190
2191         Some cleanups to the GtkDialog code:  (#170746, 
2192         Morten Welinder)
2193         * gtk/gtkdialog.c (action_widget_activated): Simplify,
2194         use _gtk_dialog_get_response_for_widget.
2195         (gtk_dialog_add_action_widget): Use the correct signal
2196         id for non-buttons.
2197         (gtk_dialog_set_response_sensitive): 
2198         (gtk_dialog_set_default_response): Use get_response_data.
2199         (gtk_dialog_run): Don't disconnect the signals if the
2200         dialog was destroyed while running.
2201
2202 Tue Mar 22 14:16:31 2005  Manish Singh  <yosh@gimp.org>
2203
2204         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
2205         Use g_return_if_fail, not g_return_val_if_fail.
2206
2207 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
2208
2209         Implement bookmark renaming  (#136216, Sean Middleditch)
2210         
2211         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Add 
2212         get_bookmark_label and set_bookmark_label vfuncs.
2213
2214         * gtk/gtkfilesystem.h:
2215         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label): 
2216         (gtk_file_system_get_bookmark_label): Wrappers for the
2217         vfuncs.
2218
2219         * gtk/gtk.symbols: Add new exported symbols.
2220
2221         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_set_bookmark_label): 
2222         (gtk_file_system_unix_get_bookmark_label): Implementations
2223         for the Unix backend.
2224
2225         * gtk/gtkfilechooserdefault.c: Add a context menu to
2226         the bookmarks pane, and allow to rename bookmarks.
2227
2228 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
2229
2230         * gtk/gtkpathbar.c (gtk_path_bar_unmap): 
2231         * gtk/gtkspinbutton.c (gtk_spin_button_unmap): 
2232         * gtk/gtknotebook.c (gtk_notebook_unmap): 
2233         * gtk/gtkrange.c (gtk_range_unmap): Stop scrolling when
2234         the widget is unmapped.  (#168791, Ryan Lortie)
2235
2236 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
2237
2238         * gtk/gtkprivate.h: Define macros GTK_PARAM_READABLE,
2239         GTK_PARAM_WRITABLE, GTK_PARAM_READWRITE which are like
2240         their G_ counterparts, but also mark the name, nick
2241         and blurb as static.
2242
2243         * gtk/*.c: Mark param spec strings as static, using
2244         the new macros.
2245
2246         * gtk/gtkspinbutton.h: Fix a typo.
2247
2248 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
2249
2250         * gtk/gtkcellrendererprogress.c: 
2251         * gtk/gtkcellrendererpixbuf.c: 
2252         * gtk/gtkcellrenderercombo.c: 
2253         * gtk/gtkcellrenderer.c: 
2254         * gtk/gtkcalendar.c: 
2255         * gtk/gtkbutton.c: 
2256         * gtk/gtkbox.c: 
2257         * gtk/gtkbbox.c: 
2258         * gtk/gtkaspectframe.c: 
2259         * gtk/gtkarrow.c: 
2260         * gtk/gtkalignment.c: 
2261         * gtk/gtkactiongroup.c: 
2262         * gtk/gtkaction.c:
2263         * gtk/gtkaccellabel.c: 
2264         * gtk/gtkaboutdialog.c: Mark param spec strings as static.
2265
2266         * gdk/gdkpango.c (gdk_pango_renderer_class_init): 
2267         * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
2268         param spec strings as static.
2269
2270 2005-03-21  Tor Lillqvist  <tml@novell.com>
2271
2272         * modules/engines/ms-windows/*.c: Silence gcc warnings (unused
2273         variables, unhandled enum value in switch). Use g_object_unref()
2274         instead of deprecated gdk_gc_unref() and gdk_drawable_unref().
2275
2276         * modules/engines/ms-windows/xp_theme.c (xp_theme_map_gtk_state): 
2277         Add missing "case" keyword.
2278
2279         * modules/engines/ms-windows/Makefile.am: Link with -lgdi32
2280         explicitly.
2281
2282 2005-03-20  Tor Lillqvist  <tml@novell.com>
2283
2284         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Return the
2285         Terminal Services session number, window station name (always
2286         "WinSta0" in interactive processes), and desktop name (typically
2287         "Default"), concatenated with backslash separators.
2288         (gdk_display_open): Accept only NULL or the string
2289         gdk_display_get_name() returns as display name.
2290
2291 2005-03-20  Matthias Clasen  <mclasen@redhat.com>
2292
2293         Make PLT-reduction work with gcc4, and don't include
2294         everything in gdkalias.h:
2295         
2296         * gtk/grk.symbols: Group symbols by header and source file.
2297         * gtk/makegtkalias.pl: Protect definitions by the same 
2298         preprocessor symbols used to guard the headers. Move
2299         the alias declarations to a separate file which is 
2300         produced when calling makegtkalias.pl -def
2301         * gdk/Makefile.am (gtkaliasdef.c): Add a rule to generate 
2302         this file.
2303         * gtk/*.c: Include gtkalias.h after the other headers, 
2304         include gtkaliasdef.c at the bottom.
2305         * gtk/*.h: Small cleanups.
2306
2307 Fri Mar 18 23:59:49 2005  Soeren Sandmann  <sandmann@redhat.com>
2308
2309         * gtk/gtkmenutoolbutton.c (arrow_button_button_press_event_cb):
2310         Make right-clicks not pop up the menu.
2311
2312 2005-03-18  Owen Taylor  <otaylor@redhat.com>
2313
2314         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_drawable_finish): 
2315         Call cairo_surface_finish()
2316
2317         * gdk/gdkinternals.c gdk/x11/gdkdrawable-x11.c: Remoev
2318         _gdk_windowing_set_surface_device_offset().
2319
2320 2005-03-18  Tor Lillqvist  <tml@novell.com>
2321
2322         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
2323         WM_MOUSEMOVE, don't check if this process owns the active
2324         window. This makes cross-application widget embedding work better.
2325         On WM_MOVE, don't bother checking for window visibility.
2326
2327         * gdk/win32/gdkim-win32.c: Remove bogus empty doc comment. Remove
2328         unused variables. Add some casts to silence gcc.
2329
2330 2005-02-24  Owen Taylor  <otaylor@redhat.com>
2331
2332         * gdk/gdkwindow.c: Use cairo_set_device_offset().
2333
2334         * gdk/win32/gdkdrawable-win32.[ch] gdk/win32/gdkwindow-win32.c
2335         gdk/win32/gdkpixmap-win32.c: 
2336         Add_gdk_win32_drawable_acquire/release_dc() to get a DC for the 
2337         drawable. Add _gdk_drawable_win32_finish() to clean up resources
2338         when a drawable is destroyed.
2339
2340         * gdk/win32/gdkgc-win32.c gdk/win32/gdkdrawable-win32.c
2341         (blit_from_pixmap) gdk/win32/gdkprivate-win32.h : Use 
2342         acquire/release_dc when getting a DC to use with a GC or for 
2343         blitting from a pixmap.
2344
2345         * gdk/win32/gdkdrawable-win32.[ch]: Implement ref_cairo_surface()
2346
2347         * gdk/win32/gdkpango-win32.c gdk/win32/gdkdrawable-win32.c Makefile.am:
2348         Remove gdk_screen_get_pango_context(), draw_glyph[_transformed]
2349         implementations.
2350
2351         * gdk/win32/gdkdrawable-win32.c: Remove 
2352         gdk_draw_rectangle_alpha_libgtk_only()
2353
2354 2005-03-17  Owen Taylor  <otaylor@redhat.com>
2355
2356         * gdk/gdkpango.c: Fix get_stipple_surface to actually work, set
2357         EXTEND_REPEAT on the stipple pattern.
2358
2359 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
2360
2361         * gtk/gtklabel.c (gtk_label_set_markup): Fix formatting
2362         in example in the docs.  (#170611, Jianfei Wang)
2363
2364         * gtk/gtkiconview.c (gtk_icon_view_size_allocate): Clamp
2365         adjustment values on resize.  (#170567, Tomislav Jonjic)
2366
2367         * gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
2368         if there is no cache.  (#170652, Diego Gonzalez)
2369         
2370         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
2371         Make inline completion insert the prefix at the
2372         right spot.  (#170146, Doug Quale)
2373
2374 2005-03-17  Tor Lillqvist  <tml@novell.com>
2375
2376         * gdk/gdkkeynames.c: gdk_key is a typedef, not a struct tag.
2377
2378 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
2379
2380         * gtk/gtkprogressbar.c (gtk_progress_bar_get_ellipsize): 
2381         Typo fix in the docs.
2382         
2383         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_set_arrow_tooltip): 
2384         Typo fix in the docs.
2385
2386         * gtk/gtkiconview.c (gtk_icon_view_set_columns) 
2387         (gtk_icon_view_get_columns, gtk_icon_view_set_item_width) 
2388         (gtk_icon_view_get_item_width, gtk_icon_view_set_spacing) 
2389         (gtk_icon_view_get_spacing, gtk_icon_view_set_row_spacing) 
2390         (gtk_icon_view_set_column_spacing) 
2391         (gtk_icon_view_get_row_spacing, gtk_icon_view_get_margin) 
2392         (gtk_icon_view_set_margin): Add docs.
2393         
2394         * gtk/gtkcellview.c (gtk_cell_view_get_displayed_row): 
2395         Add docs.
2396
2397 2005-03-15  Owen Taylor  <otaylor@redhat.com>
2398
2399         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkpixmap.c gdk/gdkwindow.c 
2400         gdk/x11/gdkdrawable-x11.c gdk/x11/gdkpixmap-x11.c gdk/x11/gdkwindow-x11.c
2401         gdk/gdkinternals.h: Switch set_cairo_target() virtual function to
2402         ref_cairo_surface()
2403
2404         * gdk/gdkdrawable.h gdk/gdkdraw.h: Switch set_cairo_target() virtual
2405         function to create_cairo_context()
2406
2407         * gdk/gdkwindow.c: Clear double buffer pixmaps with Cairo.
2408
2409         * gdk/x11/gdkwindow-x11.c: Keep all components in GdkWindowObject.bg_color,
2410         not just the pixel.
2411
2412         * tests/testcairo.c: Update for create_cairo_context()
2413
2414         * gdk/gdkdraw.c (gdk_draw_trapezoids, gdk_draw_glyphs[_transformed]):
2415         Reimplement in terms of Cairo, bypass the vtable entries.
2416
2417         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
2418         gdk/x11/gdkgc-x11.c gdk/x11/gdkpango-x11.c
2419         gdk/x11/gdkprivate-x11.h gdk/x11/Makefile.am: Remove
2420         implementation of draw_trapezoids / draw_glyphs[_transformed].
2421
2422         * gdk/gdkpango.c: Switch GdkPangoRenderer to use Cairo
2423
2424         * gdk/gdkpango.c gdk/x11/gdkpango-x11.c: Move
2425         gdk_pango_context_get_for_screen() into the backend independent code.
2426
2427         * gdk/x11/gdkdrawable-x11.[ch]: Remove Xft use, use RENDER directly
2428         for drawing images.
2429
2430         * gdk/gdkdrawable.h gdk/x11/gdkdrawable-x11.c: Remove
2431         gdk_draw_rectangle_alpha_libgtk_only.
2432
2433         * gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c: Add 
2434         gdk_pixbuf_set_as_cairo_source()
2435
2436         * gdk/gdk.symbols: Update
2437
2438         * gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkruler.[ch]
2439         gtk/gtk[hv]ruler.c: Convert to Cairo rendering.
2440
2441         * gtk/gtkstyle.c (gtk_default_draw_check, gtk_default_draw_focus,
2442         gtk_default_draw_option): Switch to Cairo. Simplify the checkbutton,
2443         radio button style for now to get something more scalable.
2444
2445         *  gtk/gtksettings.c: #if 0 out the code to use PangoXft for hinting/
2446         antialiasing/dpi settings.
2447
2448 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
2449
2450         * demos/gtk-demo/editable_cells.c: Also demonstrate
2451         GtkCellRenderer::editing-started and separators.
2452
2453 Tue Mar 15 20:34:33 2005  Manish Singh  <yosh@gimp.org>
2454
2455         * gdk/x11/gdkinput-xfree.c: #include gdkaliasdef.c here too.
2456
2457 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
2458
2459         Make PLT-reduction work with gcc4, and don't include
2460         everything in gdkalias.h:
2461
2462         * gdk/gdk.symbols: Group symbols by header and source file.
2463         * gdk/makegdkalias.pl: Protect definitions by the same
2464         preprocessor symbols used to guard the headers. Move
2465         the alias declarations to a separate file which is
2466         produced when calling makegdkalias.pl -def
2467         * gdk/Makefile.am (gdkaliasdef.c): Add a rule to generate this
2468         file.
2469         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h after the other
2470         headers, include gdkaliasdef.c at the bottom.
2471
2472 2005-03-16  Tor Lillqvist  <tml@novell.com>
2473
2474         * gdk/win32/gdkdisplay-win32.c (_win32_on_clipboard_change): Print
2475         debugging output only if asked for, not always.
2476
2477         * gdk/win32/*.c: Use the %+d%+d format for coordinate pairs in
2478         debugging printout instead of +%d+%d. Misc other additions and
2479         cosmetic improvements to debugging printouts. Use API_CALL() and
2480         GDI_CALL() macros in more places.
2481
2482         * gdk/win32/gdkwindow-win32.c (gdk_window_move, gdk_window_resize,
2483         gdk_window_move_resize): To detect child windows, check whether
2484         the real parent is not the desktop window, instead of relying on
2485         the GDK window type being GDK_WINDOW_CHILD. Foreign GtkPlug
2486         windows have a GDK window type GDK_WINDOW_FOREIGN, but are still
2487         de facto child windows.
2488
2489         * gdk/win32/gdkprivate-win32.h
2490         * gdk/win32/*.c: Drop global variable _gdk_root_window, just call
2491         GetDesktopWindow(). Rename the GdkWindow* _gdk_parent_root to
2492         _gdk_root.
2493
2494         * gdk/win32/gdkwindow-win32.h (GdkWindowImplWin32): Add
2495         toplevel_window_type field.
2496
2497         * gdk/win32/gdkwindow-win32.c: As there is only one root window in
2498         GDK on Win32, we can compare directly to _gdk_root instead of
2499         checking the window type.
2500         (gdk_window_reparent): When reparenting a child of the desktop
2501         clear out the window decorations. Correspondingly, when
2502         reparenting to the desktop, add decorations. As in the X11
2503         backend, save the window type of a toplevel window when
2504         reparenting, in case it is reparented back to toplevel.
2505
2506 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
2507
2508         * gtk/gtkradioaction.c (gtk_radio_action_get_group): Add an
2509         example for manually setting up a group of actions.
2510
2511         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
2512         Document that inline completion requires text-column to be set.
2513         (gtk_entry_completion_compute_prefix): Return NULL if text-column
2514         is not set.
2515
2516         * gtk/gtkentry.c (check_completion_callback): Call 
2517         gtk_entry_completion_complete() before inserting the prefix,
2518         otherwise the prefix may depend on (random) state of the
2519         filter model.  
2520
2521 2005-03-15  Anders Carlsson  <andersca@imendio.com>
2522
2523         * docs/iconcache.txt:
2524         Update spec.
2525         
2526         * gtk/gtkiconcache.c: (find_image_offset),
2527         (_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
2528         (_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
2529         * gtk/gtkiconcache.h:
2530         Update to be able to fetch pixbuf data and icon metadata.
2531         
2532         * gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
2533         (icon_info_ensure_scale_and_pixbuf):
2534         Use new cache functions.
2535         
2536         * gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
2537         (maybe_cache_image_data), (scan_directory), (write_pixdata),
2538         (get_image_meta_data_size), (get_image_pixel_data_size),
2539         (get_image_data_size), (get_single_node_size), (get_bucket_size),
2540         (write_bucket), (main):
2541         Update to write pixbuf data as well as information from .icon
2542         files.
2543         
2544 2005-03-15  Tor Lillqvist  <tml@novell.com>
2545
2546         * gdk/win32/gdkmain-win32.c (_gdk_win32_key_to_string): New
2547         debugging function. As GetKeyNameText() returns a localized key
2548         name we need to convert it to UTF-8.
2549
2550         * gdk/win32/gdkprivate-win32.h: Declare it.
2551
2552         * gdk/win32/gdkevents-win32.c: Use it.
2553
2554         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal): Fix
2555         handling of children of foreign windows. They should be child
2556         windows from Windows's perspective, even if they are toplevel GDK
2557         windows.
2558
2559 2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2560
2561         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
2562         for big window support. Now also the test in testgtk works.
2563
2564 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
2565
2566         * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
2567         style changes.  (#169334, Yury Puzis)
2568
2569         * gtk/gtkicontheme.c (gtk_icon_theme_set_custom_theme): Fix
2570         the doc comments.  (#169967, Masao Mutoh)
2571
2572 2005-03-12  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2573
2574         Big window fix for Win32. Big windows are still emulated within
2575         16-bit coordinate limits, though. Big windows now work on NT-based
2576         Windows. (#169989)
2577
2578         * gdk/win32/gdkgc-win32.c (_gdk_win32_gdkregion_to_hrgn): Use
2579         32-bit coordinates.
2580
2581         * gdk/win32/gdkgeometry-win32.c: Largely rewrite.
2582
2583         * gdk/win32/gdkwindow-win32.c: Minor related changes.
2584         
2585 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
2586
2587         * gtk/gtkliststore.c (gtk_list_store_insert_with_valuesv): 
2588         Fix a doc typo.  (#169873, Johan Dahlin)
2589
2590         * gtk/gtkdialog.c (gtk_dialog_map): Don't
2591         try to focus the default_widget if there is 
2592         none.  (#169881, Thomas Leonard)
2593
2594 Wed Mar  9 19:20:44 2005  Manish Singh  <yosh@gimp.org>
2595
2596         * configure.in: Remove inadvertent gail references, require
2597         Pango 1.9.0
2598
2599 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
2600
2601         * configure.in: Require GLib 2.7.0
2602
2603 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
2604
2605         * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
2606         (#169728, Morten Welinder, Owen Taylor)
2607
2608         * gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
2609         in the docs.  (#169729, Morten Welinder)
2610
2611         * gtk/gtkimage.c (gtk_image_class_init): Fix a typo.
2612
2613         * gtk/gtkiconview.c (gtk_icon_view_set_model): Queue a resize 
2614         when the model is unset.  (#169528, Tomislav Jonjic)
2615
2616 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
2617
2618         * gtk/gtkviewport.c (gtk_viewport_class_init): 
2619         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
2620         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_class_init): 
2621         * gtk/gtktipsquery.c (gtk_tips_query_class_init): 
2622         * gtk/gtktext.c (gtk_text_class_init): 
2623         * gtk/gtkstatusbar.c (gtk_statusbar_class_init): 
2624         * gtk/gtkspinbutton.c (gtk_spin_button_class_init): 
2625         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): 
2626         * gtk/gtkoptionmenu.c (gtk_option_menu_class_init): 
2627         * gtk/gtkoldeditable.c (gtk_old_editable_class_init): 
2628         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): 
2629         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): 
2630         * gtk/gtktoolitem.c (gtk_tool_item_class_init): 
2631         * gtk/gtkimage.c (gtk_image_class_init): 
2632         * gtk/gtkruler.c (gtk_ruler_class_init): 
2633         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
2634         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): 
2635         * gtk/gtkprogress.c (gtk_progress_class_init): 
2636         * gtk/gtkmenu.c (gtk_menu_class_init): 
2637         * gtk/gtkscale.c (gtk_scale_class_init): 
2638         * gtk/gtkpaned.c (gtk_paned_class_init): 
2639         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
2640         * gtk/gtkfontbutton.c (gtk_font_button_class_init): 
2641         * gtk/gtkfontsel.c (gtk_font_selection_class_init): 
2642         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
2643         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
2644         * gtk/gtkcurve.c (gtk_curve_class_init): 
2645         * gtk/gtkcombo.c (gtk_combo_class_init): 
2646         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
2647         * gtk/gtkcolorbutton.c (gtk_color_button_class_init): 
2648         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): 
2649         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): 
2650         * gtk/gtkcheckbutton.c (gtk_check_button_class_init): 
2651         * gtk/gtktogglebutton.c (gtk_toggle_button_class_init): 
2652         * gtk/gtkcellview.c (gtk_cell_view_class_init): 
2653         * gtk/gtktoolbar.c (gtk_toolbar_class_init): 
2654         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): 
2655         * gtk/gtkclist.c (gtk_clist_class_init): 
2656         * gtk/gtkctree.c (gtk_ctree_class_init): 
2657         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): 
2658         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init): 
2659         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
2660         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_class_init): 
2661         * gtk/gtkcalendar.c (gtk_calendar_class_init): 
2662         * gtk/gtkbbox.c (gtk_button_box_class_init): 
2663         * gtk/gtktable.c (gtk_table_class_init): 
2664         * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): 
2665         * gtk/gtkframe.c (gtk_frame_class_init): 
2666         * gtk/gtkaction.c (gtk_action_class_init): 
2667         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): 
2668         * gtk/gtkaboutdialog.c (gtk_about_dialog_class_init): 
2669         * gtk/gtkdialog.c (gtk_dialog_class_init): More of the same.
2670
2671 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
2672
2673         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): 
2674         * gtk/gtkrange.c (gtk_range_class_init): 
2675         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): 
2676         * gtk/gtktexttag.c (gtk_text_tag_class_init): 
2677         * gtk/gtktextview.c (gtk_text_view_class_init): 
2678         * gtk/gtkscrollbar.c (gtk_scrollbar_class_init): 
2679         * gtk/gtknotebook.c (gtk_notebook_class_init): 
2680         * gtk/gtkentry.c (gtk_entry_class_init): 
2681         * gtk/gtkexpander.c (gtk_expander_class_init): 
2682         * gtk/gtkarrow.c (gtk_arrow_class_init): 
2683         * gtk/gtkalignment.c (gtk_alignment_class_init): 
2684         * gtk/gtkbutton.c (gtk_button_class_init): 
2685         * gtk/gtklabel.c (gtk_label_class_init): 
2686         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
2687         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
2688         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
2689         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
2690         * gtk/gtkbox.c (gtk_box_class_init): 
2691         * gtk/gtkwindow.c (gtk_window_class_init, gtk_window_class_init): 
2692         * gtk/gtkcontainer.c (gtk_container_class_init): 
2693         * gtk/gtkwidget.c (gtk_widget_class_init): 
2694         * gtk/gtkobject.c (gtk_object_class_init): Use canonical names
2695         when registering param specs.
2696
2697         * demos/gtk-demo/editable_cells.c: Use GtkCellRendererCombo
2698         (#169607, Mark McLoughlin)
2699         
2700         * gtk/gtk.symbols: Add the new attributes here, too.
2701
2702         * gtk/gtkwidget.h: 
2703         * gtk/gtktreeview.h: 
2704         * gtk/gtktreeviewcolumn.h: 
2705         * gtk/gtktextbuffer.h: 
2706         * gtk/gtkobject.h: 
2707         * gtk/gtkfilechooserdialog.h: 
2708         * gtk/gtkdialog.h: 
2709         * gtk/gtkcontainer.h: 
2710         * gtk/gtkcelllayout.h: 
2711         * gtk/gtkaboutdialog.h: Use G_GNUC_NULL_TERMINATED where
2712         appropriate.  (#165682, Marc Meissner)
2713
2714 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2715
2716         Convert the gdk keyval-keyname tables to a big string
2717         + offsets. (#168901)
2718         
2719         * gdk/gen-keyname-table.pl: Perl script inspired by
2720         pango/tools/gen-color-table.pl to create the 
2721         gdk_keys_by_keyval and gdk_keys_by_name tables as lists
2722         of offsets pointing into a big const string.
2723         
2724         * gdk/keynames.txt: List of keyval-keyname pairs.
2725         * gdk/keyname-table.h: Generated tables.
2726
2727         * gdk/gdkkeynames.c: Include keyname-table.h and don't
2728         generate the inverse table at runtime.
2729
2730 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2731
2732         * gtk/gtkstyle.c: Document which parameters may be NULL.  
2733         (#166855, Frank Naumann)
2734
2735 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2736
2737         * AUTHORS: Add original authors of incorporated software.
2738
2739 Thu Mar  3 16:59:44 2005  Manish Singh  <yosh@gimp.org>
2740
2741         * configure.in: URL escape the '+' in gtk+ in the bugzilla URL.
2742
2743 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
2744
2745         * gtk/gtksettings.c (gtk_settings_get_property): 
2746         * gtk/gtkrc.c (gtk_rc_parse_assignment): Don't leak 
2747         the values here.  (#169047, Philip Langdale)
2748
2749         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
2750         Don't warn if a stock icon cannot be found.  (#168830,
2751         Sven Neumann)
2752
2753 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
2754
2755         * gtk/gtkwidget.c (gtk_widget_reparent_subwindows): 
2756         Avoid warnings if gtk_widget_reparent() is called at
2757         unusual times.  (#168966, Christian Persch)
2758
2759 Tue Mar  1 14:04:08 2005  Manish Singh  <yosh@gimp.org>
2760
2761         * gdk/x11/gdkproperty-x11.c (virtual_atom_check_init): Cast to avoid
2762         const warnings on data structure seeding.
2763
2764 Tue Mar  1 13:53:56 2005  Manish Singh  <yosh@gimp.org>
2765
2766         * gtk/xdgmime/xdgmime.[ch]: revert previous change, maintain ABI.
2767
2768 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
2769
2770         * gtk/gtkmenutoolbutton.c (button_state_changed_cb): 
2771         Fix prelighting.  (#157392, Vincent Noel, patch by
2772         Christian Persch)
2773
2774         * gtk/gtkicontheme.c (theme_lookup_icon): Make 
2775         icon data caching work again.  (#168851, Alexander Larsson)
2776
2777         * gdk-pixbuf/gdk-pixbuf.c:
2778         * gdk-pixbuf/gdk-pixbuf-features.h.in:
2779         Revert the previous change, since it breaks
2780         bin compat.
2781
2782 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
2783
2784         * gdk/gdkkeyuni.c
2785         * gdk/gdkpixbuf-drawable.c
2786         * gdk/gdkrgb.c
2787         * gdk/x11/gdkdnd-x11.c
2788         * gdk/x11/gdkevents-x11.c
2789         * gdk/x11/gdkproperty-x11.c
2790         * gdk/x11/gdkvisual-x11.c
2791         * gdk-pixbuf/gdk-pixbuf.c
2792         * gdk-pixbuf/gdk-pixbuf-features.h.in
2793         * gtk/gtkaction.c
2794         * gtk/gtkbindings.c
2795         * gtk/gtkcolorbutton.c
2796         * gtk/gtkcombo.c
2797         * gtk/gtkcontainer.c
2798         * gtk/gtkfilechooserdefault.c
2799         * gtk/gtkfilesel.c
2800         * gtk/gtkgamma.c
2801         * gtk/gtkiconview.c
2802         * gtk/gtkinputdialog.c
2803         * gtk/gtkitemfactory.c
2804         * gtk/gtkmenu.c
2805         * gtk/gtktextview.c
2806         * gtk/gtktooltips.c
2807         * gtk/gtktreedatalist.c
2808         * gtk/gtkuimanager.c
2809         * gtk/tree_minus.xpm
2810         * gtk/tree_plus.xpm
2811         * gtk/xdgmime/xdgmime.c
2812         * gtk/xdgmime/xdgmime.h: 
2813         Move constant data to .rodata.
2814
2815 2005-02-27  Matthias Clasen  <mclasen@redhat.com>
2816
2817         * gtk/gtkaction.c (connect_proxy): Improve the handling
2818         of buttons as action proxys.  (#165534, Milosz Derezynski)
2819
2820         * gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
2821         (#168646, Vincent Untz)
2822
2823         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
2824         Unset "focus-on-click" for the save folder combo.  (#168688,
2825         Sven Neumann)
2826
2827 2005-02-25  Matthias Clasen  <mclasen@redhat.com>
2828
2829         * demos/testpixbuf.c (main): Remove a C++ comment.  (#168531, 
2830         Paul Cornett)
2831
2832         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Don't leak a 
2833         path here.  (#168443, Morten Welinder)
2834
2835 2005-02-24  Robert Ögren  <gtk@roboros.com>
2836
2837         Implement better handling of Wintab tablet context overlap on
2838         Win32. (#167298)
2839
2840         * gdk/win32/gdkinput-win32.c (_gdk_input_set_tablet_active): New
2841         function that brings any tablet contexts to the top of the overlap
2842         order.
2843         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_set_tablet_active ()
2844         * gdk/win32/gdkevents-win32.c (gdk_event_translate):
2845         Call _gdk_input_set_tablet_active when a window is activated (on
2846         WM_ACTIVATE)
2847
2848 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2849
2850         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
2851         Don't leak parent_path.  (#168435, Morten Welinder)
2852
2853 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
2854
2855         * gtk/gtkstyle.c: Add
2856
2857         g_return_if_fail (style->depth == gdk_drawable_get_depth(window));
2858
2859         all over the place.
2860
2861 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2862
2863         * gtk/gtkcombobox.c: Consistently use gtk_tree_row_reference_valid().
2864         (gtk_combo_box_model_row_deleted): Update the displayed row in 
2865         the cell_view.  (#167842, Gustavo Carneiro)
2866
2867 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2868
2869         Fix #167259, reported by  Christian Persch:
2870         
2871         * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
2872         widget, even if we avoid the unrealizing. 
2873         (gtk_widget_reparent_subwindows): Make reparenting work for
2874         !NO_WINDOW widgets which have other windows which are siblings
2875         of widget->window (as e.g. GtkSpinButton).
2876
2877 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2878
2879         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_changed): 
2880         Don't emit a warning if a parent node is filtered out. (#164726,
2881         Olivier Sessink)
2882
2883 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
2884
2885         * gtk/gtklabel.c (gtk_label_style_set): Revert the last 
2886         change, since gtk_widget_set_style_internal() already
2887         queues a resize.
2888
2889 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
2890
2891         * gtk/gtklabel.c (gtk_label_style_set): Queue a resize, since
2892         fonts may have changed.  (#164128, Phil Blundell)
2893
2894         * gtk/gtkaboutdialog.c (gtk_about_dialog_init) 
2895         (gtk_about_dialog_new): Move initialization code from _new to 
2896         _init.  (#168249, Murray Cumming) 
2897
2898 Wed Feb 23 17:34:01 2005  Jonathan Blandford  <jrb@redhat.com>
2899
2900         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Patch from
2901         jorn@nl.linux.org (Jorn Baayen) to notice changes to fixed-height
2902         widgets.
2903
2904 2005-02-23  Tor Lillqvist  <tml@novell.com>
2905
2906         * gdk/win32/gdkkeys-win32.c (update_keymap): Workaround for bug in
2907         MapVirtualKey(VK_DIVIDE, 0) in some Windows versions. (#142998)
2908
2909 Tue Feb 22 13:49:09 2005  Manish Singh  <yosh@gimp.org>
2910
2911         * gtk/updateiconcache.c: #include <config.h>
2912
2913 2005-02-22  Federico Mena Quintero  <federico@ximian.com>
2914
2915         Merged from gtk-2-6:
2916
2917         Fix #164940, patch by Ben Maurer and Tommi Komulainen.
2918
2919         * gdk/gdkrgb.c (gdk_rgb_convert_565_d): Constify the "dmp" variable.
2920         (gdk_rgb_convert_565_d): Likewise.
2921         (DM_565): Made a static const precomputed array to avoid
2922         allocating it at runtime.
2923         (gdk_rgb_preprocess_dm_565): #ifdef out.
2924
2925 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
2926
2927         * gtk/gtkwindow.c: 
2928         * gtk/gtkclipboard.c: Fix links to freedesktop.org specs
2929         in the documentation.
2930
2931         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
2932         Set have_render_with_trapezoids to GDK_YES when we have 
2933         a new enough Render extension.  (#167965,Billy Biggs) 
2934
2935         * gtk/gtkwindow.c (gtk_window_present): Use the timestamp of
2936         the last user interaction when focusing the window.  (#166379, 
2937         Elijah Newren)
2938
2939 Thu Feb 17 14:58:16 2005  Manish Singh  <yosh@gimp.org>
2940
2941         * gtk/gtkuimanager.c (start_element_handler): make sure expand
2942         is initialized, cast to GTK_SEPARATOR_TOOL_ITEM.
2943
2944 Thu Feb 17 14:52:57 2005  Manish Singh  <yosh@gimp.org>
2945
2946         * gtk/gtkcombobox.c: Pass gtk_widget_get_toplevel() a GTK_WIDGET.
2947
2948 2005-02-16  Matthias Clasen  <mclasen@redhat.com>
2949
2950         * docs/iconcache.txt: Add some information about the
2951         icon cache format (since I can't locate it at freedesktop.org)
2952
2953         Fixes for #143829, Tommi Komulainen, Christian Persch:
2954         
2955         * gtk/gtktreeview.c (gtk_tree_view_destroy): Remove the
2956         typeselect_flush_timeout when destroying the widgets
2957         it is operating on.  
2958         (gtk_tree_view_ensure_interactive_directory): Add the 
2959         popup to the window group of the toplevel it belongs to.
2960
2961         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget) 
2962         (gtk_combo_box_popup): Do the same here. 
2963
2964 2005-02-14  Matthias Clasen  <mclasen@redhat.com>
2965
2966         * configure.in: Kill --enable-ansi  (#164394)
2967
2968 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2969
2970         * gtk/gtkpathbar.c (gtk_path_bar_finalize): Stop scrolling 
2971         when the pathbar goes away.  (#167094, Rodney Dawes)
2972         (change_icon_theme): Use GTK_ICON_SIZE_MENU here as 
2973         well  (Vincent Noel)
2974
2975 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2976
2977         Support vertical menubars  (#166632): 
2978         
2979         * gtk/gtkenums.h (GtkPackDirection): New enumeration for pack 
2980         directions, with values for left-to-right, right-to-left, 
2981         top-to-bottom and bottom-to-top.
2982
2983         * gtk/gtk.symbols: 
2984         * gtk/gtkmenubar.h: 
2985         * gtk/gtkmenubar.c: Add two properties, pack-direction and
2986         child-pack-direction, which specify how children and 
2987         grandchildren of a menubar are packed, with getters and setters. 
2988
2989         * gtk/gtkmenubar.c (gtk_menu_bar_set_property): 
2990         (gtk_menu_bar_get_property): Implement set_property and get_property.
2991
2992         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): 
2993         (gtk_menu_bar_size_allocate): Take pack direction into account.
2994
2995         * gtk/gtkmenubar.c (gtk_menu_bar_move_current): Implement 
2996         move_current here move all the menubar-specific direction 
2997         tweaking from the generic menushell implementation here.
2998
2999         * gtk/gtkmenu.c (gtk_menu_move_current): Move  menu-specific 
3000         direction tweaking from the generic menushell implementation here.
3001
3002         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): 
3003         (gtk_menu_bar_size_allocate): Take pack direction into account.
3004
3005         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_size_request) 
3006         (gtk_image_menu_item_size_allocate): 
3007         (gtk_image_menu_item_toggle_size_request): Take child pack 
3008         direction into account and pack the image vertically if
3009         necessary.
3010
3011         * gtk/gtkmenushell.c (gtk_menu_shell_real_select_item):
3012         Set the submenu direction to left-right for menuitems in 
3013         vertical menubars.
3014         (gtk_real_menu_shell_move_current): Simplify by moving
3015         direction tweaking to menu- and menubar-specific 
3016         implementations. Take pack direction into account when
3017         doing fallbacks.
3018
3019         * tests/testmenubars.c: Test menubars in various packing
3020         direction combinations.
3021
3022         * tests/Makefile.am (noinst_PROGRAMS): Add testmenubars.
3023
3024 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
3025
3026         Complete the fix for #165770, Vincent Noel:
3027         
3028         * gtk/gtkfilechooserbutton.c (FALLBACK_ICON_SIZE): Make the
3029         fallback size be 16, to be equal to the default for
3030         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
3031         (gtk_file_chooser_button_init):
3032         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
3033         GTK_ICON_SIZE_SMALL_TOOLBAR. 
3034
3035 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
3036
3037         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): Fix RTL
3038         keynav for going from menubar to menu.
3039
3040 2005-02-08  Christian Rose  <menthos@menthos.com>
3041
3042         * configure.in: Added "xh" to ALL_LINGUAS.
3043
3044 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
3045
3046         * gtk/gtkuimanager.c (start_element_handler): Accept 
3047         the "expand" attribute and set a flag in the node if it
3048         is set to "true".
3049         (update_node): If the expand flag is set, make separator
3050         toolitems non-drawn and expanding.  (#166489, Christian Persch)
3051
3052 2005-02-05  Hans Breuer  <hans@breuer.org>
3053
3054         * gdk/makefile.msc gdk/win32/makefile.msc gtk/makefile.msc.in :
3055         build with Cairo dependency. The patch to acually use Cairo
3056         on win32 will be on gtk-devel-list soon.
3057         * tests/makefile.msc : add testcairo building
3058
3059         * gtk/stock-icons/makefile.msc : split command line into two to
3060         work with the shells default
3061
3062 Fri Feb  4 14:16:31 2005  Manish Singh  <yosh@gimp.org>
3063
3064         * gtk/gtkaccelgroup.c (substitute_underscores): remove unused
3065         function.
3066
3067         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
3068         Add some extra parens for bitop order of operations disambiguiation.
3069
3070         * gtk/gtkstock.c: Fix const confusion, make our own copy of the 
3071         domain when setting a translate function.
3072
3073         * tests/testcombo.c: removed unused variable.
3074
3075 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
3076
3077         * gtk/gtkstock.c (gtk_stock_lookup): Handle item->translation_domain
3078         being NULL.  (#166179, Diego Gonzalez)
3079
3080 2005-02-04  Owen Taylor  <otaylor@redhat.com>
3081
3082         * configure.in: Revert gtk_binary_version to 2.4.0. Fix
3083         up comment to talk only about backwards compat, not
3084         forward/backwards compat. (#166293, reported by Vincent Noel)
3085
3086 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
3087
3088         * gtk/gtkpaned.c (gtk_paned_compute_position): Work better
3089         when there is not enough space. This avoids a nasty size
3090         allocation loop in the file chooser.  (#154007, reported 
3091         by Milosz Derezynski, patch by Robert Ögren)
3092
3093 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
3094
3095         * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious
3096         selection of RTL direction if the widget does not have 
3097         focus.  (#164125, Frederic Crozat)
3098
3099 Thu Feb  3 19:15:55 2005  Manish Singh  <yosh@gimp.org>
3100
3101         * gdk/x11/gdkdrawable-x11.c: #include cairo-xlib.h
3102
3103 2005-02-03  Owen Taylor  <otaylor@redhat.com>
3104
3105         * gdk/gdkdrawable.[ch] gdkpixmap.c gdkwindow.c: Add
3106         gdk_drawable_set_cairo_target().
3107
3108         * tests/testtreeflow.c (enum): Use grand not rand as a variable
3109         name because one of the cairo headers is pulling in stdlib.h.
3110
3111         * tests/testcairo.c tests/Makefile.am: Add a simple cairo based
3112         example.
3113
3114         * configure.in: Bump release to 2.7.0, gtk_binary_version to 2.7.0.
3115
3116         * Require libpangocairo for all backends.
3117
3118 2005-02-03  Tor Lillqvist  <tml@novell.com>
3119
3120         * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the
3121         wide character version of ImmGetCompositionString() here,
3122         too. (#165278, Takuro Ashie)
3123
3124 2005-02-03  Matthias Clasen  <mclasen@redhat.com>
3125
3126         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Don't do
3127         one roundtrip per motion event.  (#166173, pointed out
3128         by Chris Lee, patch by Søren Sandmann)
3129
3130         * gtk/gtk.symbols: 
3131         * gtk/gtkstock.h: 
3132         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
3133         New function which allows to change the function used for
3134         translation stock labels, on a per-domain basis. Use this
3135         functionality to switch the GTK+ stock items to use Q_()
3136         prefixed msgids.  (#166179, Funda Wang)
3137         
3138         * gdk/gdkkeynames.c: Make the gdk_key array const (#166075,
3139         Tommi Komulainen)
3140
3141 2005-02-02  Federico Mena Quintero  <federico@ximian.com>
3142
3143         Merged from gtk-2-6:
3144
3145         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
3146         Don't select the first row if the chooser is not mapped.  This
3147         happens when it's acting on behalf of GtkFileChooserButton.  Also,
3148         don't select the first row if we are in SAVE or CREATE_FOLDER
3149         modes --- I had missed that (see the ChangeLog entry from
3150         2005-01-18).  Fixes #165264.
3151
3152 2005-02-02  Tor Lillqvist  <tml@novell.com>
3153
3154         Implement lazy extended input initialization on Win32, by Robert
3155         Ögren. Fixes #163163, possibly #162334. Lazy initialization would
3156         be a good idea in any case even if it didn't fix any visible
3157         problems, though.
3158
3159         The Wacom tablet driver seems to get confused if Wintab is
3160         initialized but no window is shown before the process exits. This
3161         is the case for some GIMP plug-ins, for instance. 
3162
3163         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Made
3164         non-static (and renamed).
3165         (_gdk_input_init): Don't call _gdk_input_wintab_init_check().
3166
3167         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_wintab_init_check().
3168
3169         * gdk/win32/gdkinput.c (gdk_devices_list,
3170         gdk_display_list_devices, gdk_input_set_extension_events): Call
3171         _gdk_input_wintab_init_check() here instead.
3172
3173 2005-02-02  Ivan, Wong Yat Cheung  <email@ivanwong.info>
3174
3175         * gdk/win32/gdkselection.c: Use a FIFO list for storing GdkSelProp
3176         of a single window so that gtk_clipboard_request_contents() can be
3177         called inside a GtkClipboardReceivedFunc(). (#163844)
3178
3179 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
3180
3181         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look for icons
3182         in XDG_DATA_DIRS/pixmaps.  (#165950, Thomas Zajic)
3183
3184         * gtk/gtkwindow.c (gtk_window_set_icon_name): Set info->icon_list
3185         to NULL after freeing it.  (#165800, Damon Chaplin)
3186
3187 2005-02-01  Michael Natterer  <mitch@gimp.org>
3188
3189         * configure.in: depend on stable pango-1.8, not unstable 1.7
3190
3191 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
3192
3193         Merged from gtk-2-6:
3194
3195         * gtk/gtkfilechooserdefault.c
3196         (browse_files_model_finished_loading_cb): Don't
3197         g_assert_not_reached() if we are in any other state.  Another code
3198         path may have triggered a folder reload.  Fixes #165556.
3199
3200 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
3201
3202         Merged from gtk-2-6:
3203
3204         Fix #165770:
3205
3206         * gtk/gtkfilechooserdefault.c (FALLBACK_ICON_SIZE): Make the
3207         fallback size be 16, to be equal to the default for
3208         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
3209         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
3210         GTK_ICON_SIZE_SMALL_TOOLBAR.
3211
3212 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
3213
3214         * */*.c: Fix many instances of "the the" in docs and
3215         comments.  (#165815, Masao Mutoh)
3216
3217         * gtk/updateiconcache.c (main): Add a --quiet option.
3218
3219 2005-02-01  Tor Lillqvist  <tml@novell.com>
3220
3221         * gdk/win32/gdkkeys-win32.c (handle_special, set_shift_vks,
3222         reset_after_dead, handle_dead): New functions, code blocks
3223         refactored out of update_keymap(). No functionality change.
3224
3225         (update_keymap): Use ToUnicodeEx() when available (on NT-based
3226         Windows) instead of ToAsciiEx(). Makes keyboard input work in
3227         Unicode-only input locales that don't have any ANSI codepage, for
3228         instance Hindi and Bengali. Use _gdk_input_codepage only on
3229         Win9x. (#165723)
3230
3231         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
3232         WM_INPUTLANGCHANGE, use GetLocaleInfo() instead of
3233         TranslateCharsetInfo() to get the input locale's corresponding
3234         codepage, if any.
3235
3236 2005-01-31  Matthias Clasen  <mclasen@redhat.com>
3237
3238         * modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate 
3239         NULL-terminated va lists.  (#165683)
3240
3241 2005-01-29  Matthias Clasen  <mclasen@redhat.com>
3242
3243         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw): 
3244         Typo fix.  (#165581, Masao Mutoh)
3245
3246 Thu Jan 27 14:25:45 2005  Manish Singh  <yosh@gimp.org>
3247
3248         * README.cvs-commits: update ancient IRC info.
3249
3250 2005-01-27  Federico Mena Quintero  <federico@ximian.com>
3251
3252         Merged from gtk-2-6:
3253
3254         * gtk/gtkfilechooserdefault.c
3255         (gtk_file_chooser_default_select_path): Oops, don't assert that we
3256         can't reach the end of the function; this happens if we are still
3257         loading but don't need a path change.  Fixes #165213.
3258
3259 2005-01-27  Matthias Clasen  <mclasen@redhat.com>
3260
3261         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
3262         Make wrapping work in RTL mode.  
3263
3264         * gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
3265         obey HIG spacing a bit more, add a hand cursor when over the
3266         link button.  (#163979, Jorn Baayen)
3267
3268 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
3269
3270         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3271         Don't allow -1 as minimum-key-length.
3272         (gtk_entry_completion_set_model): Add missing notification.
3273         (gtk_entry_completion_set_minimum_key_length): Add missing
3274         notification, allow setting minimum-key-length to 0.  (#165194,
3275         Vincent Ladeuil)
3276
3277 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
3278
3279         * gtk/gtkaboutdialog.c (display_license_dialog): Make sure
3280         the license dialog is initially displayed without a horizontal
3281         scrollbar.  
3282         (gtk_about_dialog_class_init): Document the fact that the 
3283         license text is not wrapped.  (#165012, Christian Rose)
3284
3285 2005-01-25  Matthias Clasen  <mclasen@redhat.com>
3286
3287         * gtk/gtkbutton.c (gtk_button_set_image): Fix docs.  (#165180,
3288         Jeff Franks)
3289
3290         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Fix 
3291         docs.  (#165163, Jeff Franks)
3292         
3293         * gtk/gtkimage.c (gtk_image_get_property): Use the correct setter
3294         for a string GValue.  (#165203, Damon Chaplin)
3295
3296 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
3297
3298         * gdk/x11/gdkdisplay-x11.c (_gdk_windowing_set_default_display): 
3299         Initialize user_time from DESKTOP_STARTUP_ID.  (#165131,
3300         Elijah Newren)
3301
3302 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
3303
3304         * gtk/gtkfilechooserdefault.c: Removed leftover comments.
3305
3306 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
3307
3308         Merged from gtk-2-6:
3309
3310         Fix #147785 and clean up the loading code:
3311
3312         * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states
3313         be EMPTY, PRELOAD, LOADING, FINISHED.
3314         (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state.
3315         (struct _GtkFileChooserDefault): Added a pending_select_paths
3316         field.
3317         (load_remove_timer): Add the new states.
3318         (load_setup_timer): Likewise.
3319         (load_timeout_cb): Likewise.  Switch to the LOAD_LOADING state.
3320         (browse_files_model_finished_loading_cb): Switch to the
3321         LOAD_FINISHED state.
3322         (enum PendingOp): Removed.
3323         (struct _GtkFileChooserDefault): Removed the pending_op and
3324         pending_select_path fields.
3325         (pending_select_paths_free): New utility function.
3326         (pending_select_paths_add): New utility function.
3327         (gtk_file_chooser_default_finalize): Call
3328         pending_select_paths_free().
3329         (pending_op_queue): Removed.
3330         (pending_op_process): Removed.
3331         (pending_select_paths_process): New function.
3332         (browse_files_model_finished_loading_cb): Call
3333         pending_select_paths_process().
3334         (center_selected_row_foreach_cb): Handle multiple selection by
3335         only centering the first row.
3336         (get_is_file_filtered): Constify.
3337         (gtk_file_chooser_default_select_path): Queue into a list of paths
3338         to select if we are not finished loading.
3339         (show_and_select_paths): New utility function.
3340         (up_folder_handler): Use pending_select_paths_add().
3341         (gtk_file_chooser_default_should_respond): Do not call
3342         pending_op_queue(); free the pending_selected_paths instead.
3343         (gtk_file_chooser_default_initial_focus): Don't queue a pending
3344         operation, and don't select the first row unconditionally --- this
3345         will happen when the folder is done loading.
3346         (shortcuts_row_activated_cb): Free the pending_select_paths.
3347         (pending_select_paths_store_selection): New utility function.
3348         (gtk_file_chooser_default_map): Call
3349         pending_select_paths_store_selection() to save the selection
3350         before reloading the folder.
3351         (select_func): Umm?  Call gtk_tree_selection_select_iter().  Don't
3352         move the cursor here; it will be done when processing the pending paths.
3353
3354         * tests/testfilechooser.c (main): Add a button to the command
3355         window to unmap and remap the file chooser.
3356
3357 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
3358
3359         * docs/tutorial/gtk-tut.sgml:
3360         * docs/tutorial/gtk_tut.sgml:
3361         * docs/reference/gtk/tmpl/gtkliststore.sgml:
3362         * gtk/gtkactiongroup.c:
3363         * gtk/gtksizegroup.c:
3364         * gtk/gtksizegroup.h:
3365         * gtk/gtktogglebutton.c: Replace "effect" by "affect" where
3366         appropriate.  (#165108, Dan Winship)
3367
3368 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
3369
3370         * gtk/gtkwidget.c (gtk_widget_class_init): Document 
3371         GtkWidget::style-set.  (#164222, Alex Graveley)
3372         
3373 2005-01-22  Matthias Clasen  <mclasen@redhat.com>
3374
3375         * gdk/gdkdisplay.h (gdk_display_add_client_message_filter_full): 
3376         Remove the accidentally added prototype for this unimplemented 
3377         function.  (#164893, Jeff Franks)
3378
3379         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): Avoid spurious
3380         drags.  (#164884)
3381
3382 2005-01-23  Tor Lillqvist  <tml@novell.com>
3383
3384         * gdk/win32/gdkkeys-win32.c (update_keymap): Handle Greek tonos
3385         dead accent key. (#164859, reported and fix verified by Daniel
3386         Atallah.)
3387
3388         * gtk/gtkimcontextsimple.c (gtk_compose_seqs): Handle
3389         GDK_Greek_accentdieresis (tonos and dialytika) combining with iota
3390         and upsilon.
3391
3392         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_volume_get_display_name): 
3393         Don't call GetVolumeInformation() for network drives. They might
3394         be disconnected, and calling GetVolumeInformation() will then
3395         cause long delays. (#164448, reported by Dave Neary.) It seems to
3396         be very hard to reliably find out whether a network drive is
3397         connected or not, so it's easier to just not try getting the
3398         volume name for them. See the bug report for discussion.
3399
3400         Make volume name display formats translatable.
3401
3402         Fix for #163702, from Ivan Wong: 
3403         
3404         * gdk/win32/gdkprivate-win32.h 
3405         * gdk/win32/gdkglobals-win32.c: New flag _ignore_destroy_clipboard.
3406         
3407         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle
3408         WM_DESTROYCLIPBOARD. Unless _ignore_destroy_clipboard, generate a
3409         GDK_SELECTION_CLEAR event.
3410
3411         * gdk/win32/gdkselection-win32.c
3412         (gdk_selection_owner_set_for_display): Set _ignore_destroy_clipboard
3413         when emptying the clipboard ourselves.
3414
3415         (gdk_selection_send_notify_for_display): Remove the artifical
3416         GDK_SELECTION_CLEAR event generation.
3417
3418 2005-01-21  Matthias Clasen  <mclasen@redhat.com>
3419
3420         * gtk/gtkwidget.c (gtk_widget_get_accessible): More details
3421         provided by Bill Haneman.
3422
3423 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3424
3425         * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
3426         George Kraft IV)
3427
3428         * gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
3429         here, even if the only focusable widgets are labels.
3430
3431 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3432
3433         Support tinting in GtkCellRendererPixbuf (#162903, Jorn Baayen):
3434         
3435         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init) 
3436         Add a follow-state property which when TRUE causes the pixbuf
3437         to be tinted according to state.
3438
3439         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
3440         Use follow-state and colorize the pixbuf when appropriate.      
3441         
3442 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3443
3444         Support wrapping in GtkCellRendererText  (#163608):
3445         
3446         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
3447         Add wrap-mode and wrap-width properties which cause a 
3448         text cell to break to a specified width when set.
3449
3450         * gtk/gtkcellrenderertext.c (get_layout): Use wrap-mode
3451         and wrap-width when they are set.
3452
3453 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3454
3455         * gtk/gtkmodules.c (load_module): Don't reverse the order
3456         of modules when putting them in gtk_modules.  (#162676, Dennis
3457         Cranston, patch by Remus Draica)
3458
3459         * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
3460         if the tree is empty.  (#164669, Priit Laes)
3461
3462 Wed Jan 19 18:57:02 2005  Manish Singh  <yosh@gimp.org>
3463
3464         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Call
3465         GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
3466         function a bit too.
3467
3468 Wed Jan 19 17:17:31 2005  Manish Singh  <yosh@gimp.org>
3469
3470         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Squash
3471         strict aliasing warning in _NET_VIRTUAL_ROOTS code.
3472
3473 2005-01-19  Tor Lillqvist  <tml@novell.com>
3474
3475         * gdk/win32/gdkkeys-win32.c (update_keymap,
3476         gdk_keymap_translate_keyboard_state): Handle keyboards with
3477         ShiftLock (and not CapsLock) correctly. (#161814)
3478
3479 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
3480
3481         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond):
3482         In save mode, don't return paths containing nonexisting 
3483         directories.  (#162443, Jean Marie Favreau)
3484
3485         * gtk/gtkobject.c (gtk_object_add_arg_type): Use GLib limit 
3486         macros to avoid sparse warnings. Pointed out by Kjartan Maraas.
3487
3488         * gdk/x11/gdkdisplay-x11.c: Precache the _NET_VIRTUAL_ROOTS
3489         atom.
3490
3491         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): 
3492         Support _NET_VIRTUAL_ROOTS.  (#163910, Carsten Haitzler)
3493         
3494         * gdk/gdk.symbols: 
3495         * gdk/x11/gdkx.h: 
3496         * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_get_user_time): 
3497         Add a function to obtain the last user interaction 
3498         time.  (#163119, Elijah Newren)
3499
3500 Tue Jan 18 13:56:09 2005  Manish Singh  <yosh@gimp.org>
3501
3502         * gtk/gtkfilechooserdefault.c (pending_op_queue): Actually assign
3503         PENDING_OP_NONE.
3504
3505 Tue Jan 18 13:46:46 2005  Manish Singh  <yosh@gimp.org>
3506
3507         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids):
3508         disambiguate nested if/else.
3509
3510 2005-01-18  Federico Mena Quintero  <federico@ximian.com>
3511
3512         Merged from gtk-2-6:
3513
3514         * gtk/gtkfilechooserdefault.c (pending_op_queue): Don't queue an
3515         operation to select the first file if we are in SAVE or
3516         CREATE_FOLDER modes.  Executing that operation would overwrite the
3517         contents of the save-name entry.
3518
3519 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
3520
3521         * gdk/gdkdisplay.h: 
3522         * gdk/x11/gdkwindow-x11.c (gdk_display_warp_pointer): 
3523         * gdk/win32/gdkwindow-win32.c (gdk_display_warp_pointer): Add
3524         pointer warping to GDK.  (#160437)
3525
3526         * gtk/gtkcolorsel.c (key_press): Use gdk_display_warp_pointer.
3527
3528 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
3529
3530         * gtk/gtkstyle.c (gtk_default_draw_check) 
3531         (gtk_default_draw_option, gtk_default_draw_handle): Add some
3532         more NULL checks, patch by Michael Natterer.
3533
3534 Tue Jan 18 10:55:47 2005  Søren Sandmann  <sandmann@redhat.com>
3535
3536         * gtk/gtkstyle.c (gtk_default_draw_handle): Check for NULL detail
3537         and NULL widget.
3538
3539         * gtk/gtkstyle.c (gtk_default_draw_box): Check for NULL detail and
3540         NULL widget.  (#164477, Michael Natterer)
3541
3542 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
3543
3544         Avoid X errors when running against servers which
3545         implement XRender < 0.4.  (#164427, Albert Chin)
3546         
3547         * gdk/x11/gdkprivate-x11.h:
3548         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
3549         New function to check for trapezoid support in XRender.
3550         (gdk_x11_draw_trapezoids, _gdk_x11_drawable_draw_xtrapezoids): 
3551         Use it here.
3552         
3553         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a 
3554         separate have_render_with_trapezoids field.
3555
3556         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize it.
3557
3558 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
3559
3560         * gtk/gtkiconview.c: Remove debug output. (#164376, Jens Finke)
3561
3562 Mon Jan 17 16:44:36 2005  Jonathan Blandford  <jrb@redhat.com>
3563
3564         * docs/Makefile.am (EXTRA_DIST): add tree-column-sizing.png to
3565         dist.
3566
3567 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
3568
3569         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmarks): Save
3570         and restore the selected row in the bookmark list and the
3571         save folder combo.  (#164290)
3572
3573 2005-01-16  Matthias Clasen  <mclasen@redhat.com>
3574
3575         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new_with_backend):
3576         Fix argument order in docs.  
3577
3578 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
3579
3580         * gtk/gtktextview.c (gtk_text_view_check_keymap_direction): 
3581         * gtk/gtkentry.c (gtk_entry_create_layout): Prefer LTR over RTL 
3582         if the keymap is neutral.  (#164125, Phil Blundell)
3583
3584 2005-01-14  Matthias Clasen  <mclasen@redhat.com>
3585
3586         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Allow to
3587         reset the property to its default value -1. 
3588         (gtk_tree_view_get_search_column): Return the default value in
3589         the g_return_val_if_fail() check.  (#163864, Richard Hult)
3590
3591         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_value): 
3592         Add a translator hint.  (#163889)
3593
3594         * configure.in: Check for _NL_TIME_FIRST_WEEKDAY too, since it
3595         is an enum value, not a define. Pointed out by Tommi Komulainen.
3596         * gtk/gtkcalendar.c (gtk_calendar_init): Adapt.
3597
3598 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
3599
3600         * configure.in: Check for nl_langinfo()
3601         * gtk/gtkcalendar.c (gtk_calendar_init): Use nl_langinfo() when it's
3602         available to determine first day of week   (#163842, Vincent Untz)
3603
3604         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Add hints about 
3605         the lifecycle of widgets.  (#159503, Christian Persch)
3606
3607         * demos/gtk-demo/main.c (create_text): Use monospace for the 
3608         source code view.  (#163526, Theerud Lawtrakul)
3609
3610         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
3611         for the Credits button to avoid duplicate.  (#163465, Tim-Philipp 
3612         Müller)
3613         
3614         * configure.in: Add an OS_LINUX conditional.
3615
3616         * gdk/Makefile.am (TESTS):
3617         * gdk-pixbuf/Makefile.am (TESTS):
3618         * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
3619         Roger Leigh)
3620
3621 2005-01-13  Matthias Clasen <mclasen@redhat.com>
3622
3623         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
3624         (gtk_tree_view_set_headers_clickable): Make the headers-visible
3625         property readwrite instead of just writable, and remove the
3626         g_return_if_fail check that there is a model when setting this
3627         property. Also improve the blurb.  (#163851, Richard Hult)
3628
3629 2005-01-12  Owen Taylor <otaylor@redhat.com>
3630
3631         * configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
3632         initialization of gdktarget, that was causing it to be
3633         evaluated before host was set. Simplify --with-gdktarget help
3634         message.
3635
3636         * gtk/Makefile.am: Use grep | head -n 1 instead of grep -m 1 
3637         which doesn't work with slightly older versions of GNU grep 
3638         in install-libtool-import-lib rule.
3639         
3640 2005-01-12  Tor Lillqvist  <tlillqvist@novell.com>
3641
3642         Fix for #162790, by Iwan Wong:
3643         
3644         * gdk/win32/gdkdrawable-win32.c: Implement dashed lines
3645         correctly. Simplify the interface to render_line_horizontal() and
3646         render_line_vertical(). Need to draw lines "manually" also on
3647         NT-based Windowses if we have a dash offset or are drawing
3648         double-dashed lines.
3649
3650         * gdk/win32/gdkprivate-win32.h: Keep also the dash offset,
3651         double-dash flag, and a brush for the background colour (used by
3652         the odd dashes in the double-dash line style) in the GdkGCWin32
3653         struct.
3654
3655         * gdk/win32/gdkgc-win32.c: Set up above new fields.
3656
3657 2005-01-10  Federico Mena Quintero  <federico@ximian.com>
3658
3659         Fix #162617.
3660
3661         * gtk/gtkfilesystemunix.c (STAT_NEEDED_MASK): Take out
3662         GTK_FILE_INFO_IS_HIDDEN; we don't need to stat() to know this.
3663         (gtk_file_system_unix_get_folder): Make error reporting more
3664         accurate.  Don't bail out if we can't read the directory.
3665         (fill_in_stats): Don't return an error; just assume we don't have
3666         stat info for this folder's files.
3667         (fill_in_names): Don't create the hash table for the names if we
3668         can't open the directory.
3669         (gtk_file_folder_unix_list_children): Don't emit the
3670         "finished-loading" signal --- we don't do asynchronous loads, so
3671         we are always finished loading.
3672         (gtk_file_folder_unix_get_info): Use helper functions; handle the
3673         case where we can't stat '/'.
3674         (get_icon_type_from_path): Don't call fill_in_stats() here; only
3675         use the info we have.
3676         (fill_in_mime_type): Don't return an error.  Don't do anything if
3677         we don't have the stat info.
3678
3679 2005-01-10  Owen Taylor  <otaylor@redhat.com>
3680
3681         * Makefile.am (EXTRA_DIST): Adding missing ChangeLog.pre*
3682         to EXTRA_DIST.
3683
3684 2005-01-10  Matthias Clasen  <mclasen@redhat.com>
3685
3686         * gtk/gtkaccelgroup.c (gtk_accel_group_class_init): Document
3687         signals.  (#163319, Murray Cumming)
3688
3689 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
3690
3691         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Set current
3692         cursor also when changing the cursor of a window that is the first
3693         ancestor of the window containing the pointer that has a cursor
3694         defined. (#163035, Ivan Wong)
3695
3696 2005-01-09  Anders Carlsson <andersca@gnome.org>
3697
3698         * gtk/gtkcellrenderertext.c: (get_size):
3699         * gtk/gtklabel.c: (gtk_label_size_request):
3700         * gtk/gtkprogressbar.c: (gtk_progress_bar_size_request):
3701         Don't pass NULL to pango_context_get_metrics. Use 
3702         pango_context_get_language instead, which is way faster.
3703         
3704 2005-01-08  Matthias Clasen  <mclasen@redhat.com>
3705
3706         * configure.in: Bump version
3707
3708         * === Released 2.6.1 ===
3709         
3710         * gdk-pixbuf-2.0.pc.in: Require gmodule-no-export-2.0
3711
3712 2005-01-07  Tor Lillqvist  <tml@iki.fi>
3713
3714         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
3715         Fix braino. (#163232, Arnaud Charlet)
3716
3717 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
3718
3719         * gtk/gtkiconview.c: Make markup_column work, and fix some
3720         layout issues when either icon or text is missing.  (#163065)
3721
3722 2005-01-06  Federico Mena Quintero  <federico@ximian.com>
3723
3724         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): Add an
3725         "Open _Location" item.  Fixes #148839.
3726
3727 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
3728
3729         * README.in: Fix a typo.  (#163128, kentaro fukuchi)
3730
3731 2005-01-06  James M. Cape  <jcape@ignore-your.tv>
3732
3733         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new)
3734         (gtk_file_chooser_button_new_with_backend): Use default title if
3735         NULL is passed.
3736
3737         * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml: Make examples
3738         match API.
3739
3740 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
3741
3742         Fix #161409:
3743
3744         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Queue
3745         a pending operation to select the first row.
3746
3747 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
3748
3749         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Don't call
3750         button_data_free() explicitly; the button is weak-reffed and the
3751         callback will free the button data.  Fixes #163010.
3752         (_gtk_path_bar_set_path): Don't ref/sink the button.  And for the
3753         failure case, call gtk_widget_destroy() on it.
3754
3755         * gtk/gtkfilechooserdefault.c (check_is_folder): Use
3756         gtk_file_system_get_folder() again (see the ChangeLog entry from
3757         2004-08-25).  We can't first get the parent folder and then
3758         request the info for the path in question, as the parent folder
3759         may not be readable.  See bug #162617.
3760         (gtk_file_chooser_default_set_current_folder): Assert that the
3761         passed-in path is not null.
3762         (shortcuts_find_current_folder): Likewise.
3763         (shortcuts_add_current_folder): Likewise.
3764         (set_list_model): Likewise.
3765         (gtk_file_chooser_default_map): Only reload the current folder if
3766         it exists.
3767         (bookmarks_check_add_sensitivity): Check for the current folder
3768         being NULL.
3769         (browse_files_select_first_row): Don't set the cursor if there is
3770         no model loaded.
3771
3772 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
3773
3774         * gtk/gtkfilechooserdefault.c: Don't construct errors from 
3775         the GTK_FILE_SYSTEM_ERROR domain. Partial fix for #162911.
3776         (get_file_info, check_is_folder): Translate errors from
3777         the filesystem into the GTK_FILE_CHOOSER_ERROR domain. Rest
3778         of the fix for #162911, noticed by Murray Cumming.
3779
3780 Wed Jan  5 11:42:49 2005  Søren Sandmann  <sandmann@redhat.com>
3781
3782         * gtk/gtkviewport.c (gtk_viewport_realize):
3783         * gtk/gtktextview.c ((text_window_realize): Set the background of
3784         the windows to None instead of adding EXPOSURE_MASK, as suggested
3785         by Owen in #162112.
3786
3787         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Update 
3788         the user time when receiving a WM_DELETE message.  (#162980, 
3789         Elijah Newren)
3790         
3791 Tue Jan  4 16:52:14 2005  Jonathan Blandford  <jrb@redhat.com>
3792
3793         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event):
3794         only reorder on button 1, part of #141937
3795
3796 Tue Jan  4 11:36:43 2005  Søren Sandmann  <sandmann@redhat.com>
3797
3798         Bug 162112.
3799         
3800         * gtk/gtktextview.c (text_window_realize): Add GDK_EXPOSURE_MASK
3801         to win->window's event_mask
3802
3803         * gtk/gtkviewport.c (gtk_viewport_realize): Add GDK_EXPOSURE_MASK
3804         to viewport->view_window.
3805
3806 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
3807
3808         * demos/testpixbuf.c (main): Remove the size_prepared callback,
3809         to test incremental display.
3810         (new_testrgb_window): Return the drawing area, not the window,
3811         since we want to queue draws on the drawing area.
3812
3813 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
3814
3815         * examples/*: Re-extract.
3816
3817         * docs/tutorial/gtk-tut.sgml: Small corrections.
3818         
3819         * docs/tutorial/gtk-tut.sgml: Some updates for the drawing
3820         section.  (#161414, Robert Ancell)
3821
3822         * docs/tutorial/gtk-tut.sgml: Make it build.
3823
3824         * gtk/gtkdialog.c (gtk_dialog_run): Some clarification
3825         regarding modality.  (#112903, Dave Bordoley)
3826
3827         * gtk/gtkfixed.c (gtk_fixed_set_has_window): 
3828         Add a little motivation.  (#145556, Tommi Komulainen)
3829
3830         * docs/tutorial/gtk-tut.sgml: Clarify section on 
3831         g_signal_connect_swapped.   (#120543, David Bourguignon)
3832
3833         Make gtk_icon_theme_load_icon() work independent of
3834         icon factory initialization.  (#162791, Tristan Van Berkom)
3835         
3836         * gtk/gtkiconfactory.[hc]: Rename ensure_default_icons to
3837         _gtk_icon_factory_ensure_default_icons, and make it non-static.
3838
3839         * gtk/gtkicontheme.c (find_builtin_icon): ..and call it here.
3840
3841 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
3842
3843         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_remove_shortcut_folder): 
3844         Don't add a shortcut here.  (#162752, Tor Lillqvist)
3845
3846 2005-01-02  Tor Lillqvist  <tml@iki.fi>
3847
3848         * gtk/Makefile.am (libgtk_target_ldflags): Add -lole32, needed for
3849         CoTaskMemFree in get_special_folder() below.
3850
3851         * gtk/gtkfilesystem.h: Implement case-insensitive path compare on
3852         Win32 using _gtk_file_system_win32_path_compare().
3853
3854         * gtk/gtk.symbols: Add _gtk_file_system_win32_path_compare.
3855
3856         * gtk/gtkfilechooserbutton.c (model_add_special)
3857         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Use
3858         _gtk_file_system_win32_get_desktop() to get correct Desktop folder
3859         on Win32. (#144003)
3860
3861         * gtk/gtkfilesystemwin32.c: Remove unnecessary includes. Do
3862         consider all drives "mounted", including floppies. Trying to
3863         inspect the contents of a nonexistent floppy will cause errors
3864         later that are handled normally, no need to avoid them
3865         completely. Keep the drive type in the GtkFileSystemVolume.
3866         Support UNC paths. (#161797, #137874) Fix error message
3867         capitalizations as in gtkfilesystemunix.c.
3868
3869         (gtk_file_system_win32_init): Start one timeout per
3870         GtkFileSystemWin32.
3871
3872         (gtk_file_system_win32_finalize): Remove the timeout.
3873
3874         (get_special_folder): Copied from GLib.
3875
3876         (_gtk_file_system_win32_get_desktop): New function, uses
3877         get_special_folder().
3878
3879         (gtk_file_system_win32_list_volumes): Don't start a timeout at
3880         each call to this function. Don't assume A: and B: are floppies.
3881
3882         (gtk_file_system_win32_get_volume_for_path): Don't assume all
3883         volumes are drive roots, i.e. support share roots of UNC paths
3884         (\\server\share).
3885
3886         (gtk_file_system_win32_get_folder): Don't assume errno is set
3887         after g_file_test() returns FALSE. It isn't on Win32 (and even on
3888         Unix I don't think one should assume anything about errno after
3889         g_file_test()).
3890
3891         (gtk_file_system_win32_volume_get_is_mounted): Always return TRUE.
3892
3893         (gtk_file_system_win32_volume_get_display_name): Don't call
3894         GetVolumeInformation() on drives A: or B: if they are removable,
3895         as they might then be floppies, causing an unnecessary
3896         delay. (#157820)
3897
3898         (gtk_file_system_win32_volume_render_icon): Use network icon for
3899         unrecognized drive types.
3900
3901         (canonicalize_filename, gtk_file_system_win32_parse): Don't get
3902         confused by UNC paths.
3903
3904         (bookmarks_serialize): Use _gtk_file_system_win32_path_compare()
3905         for case-insensitive UTF-8 path comparison.
3906
3907         (extract_icon): Use SHGetFileInfo() which is faster than
3908         ExtractAssociatedIcon(). Icon extraction is still slow, though,
3909         needs work.
3910
3911         (win32_pseudo_mime_lookup): Don't use the same icon for all
3912         shortcuts or executables. Cache only other file type icons.
3913
3914         (gtk_file_system_win32_render_icon): Use network stock icon for
3915         remote drives and UNC server share roots. Compare home directory
3916         case-insensitively. Do lookup icons also for executable files,
3917         after all, it's these files that can have individual icons in the
3918         first place. Yes, it can be slow. Needs work.
3919
3920         (filename_is_drive_root): Require also the slash after the colon.
3921
3922         (filename_is_server_share): New function.
3923
3924         (_gtk_file_system_win32_path_compare): New function, does
3925         case-folded UTF-8 comparison.
3926
3927         * gtk/gtkfilesystemwin32.h: Declare
3928         _gtk_file_system_win32_path_compare().
3929
3930 2005-01-01  Matthias Clasen  <mclasen@redhat.com>
3931
3932         * gtk/gtkbutton.c (gtk_button_set_image): Allow unsetting the
3933         custom image by passing NULL.
3934         (gtk_button_init): Initialize image_is_stock to TRUE, fixing
3935         a problem with changing stock labels.  (#162273, Marcin 
3936         Krzyzanowski)
3937
3938 2005-01-01  Tor Lillqvist  <tml@iki.fi>
3939
3940         * gtk/gtkmodules.c (get_module_path)
3941         * gtk/gtkrc.c (gtk_rc_make_default_dir, gtk_rc_get_im_module_file,
3942         gtk_rc_get_theme_dir, gtk_rc_add_initial_default_files): With
3943         g_getenv() now returning UTF-8 on Win32, no need to call
3944         g_locale_to_utf8().
3945
3946 2004-12-31  Matthias Clasen  <mclasen@redhat.com>
3947
3948         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval) 
3949         (_gtk_key_hash_lookup): Don't sort a list of values as if
3950         it was a list of entries. This fixes crashes during mnemonic
3951         activation in the presence of multiple keymaps. (#162488, 
3952         Christian Persch)
3953
3954 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
3955
3956         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Fix
3957         state propagation when making an insensitive combo box sensitive
3958         again.  (#162524, Carlos Garnacho Parro)
3959
3960         * gtk/gtkfilechooserdefault.c: Use secondary text for error 
3961         dialogs.
3962
3963         * gtk/gtkfilesystemunix.c: Clean up some cases of errno handling
3964         (#162496, noted by Tor Lillqvist), and use g_filename_display_name()
3965         for error messages. Also mark some error messages for translation,
3966         fix capitalization of error messages.
3967
3968         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property): 
3969         Use g_value_get_boolean() for ellipsize_set.  (#162447, 
3970         Brian Tarricone)
3971
3972 2004-12-30  Tor Lillqvist  <tml@iki.fi>
3973
3974         * gtk/gtkicontheme.c (gtk_icon_theme_init): Use /usr/share/pixmaps
3975         only on Unix.
3976
3977 2004-12-28  Matthias Clasen  <mclasen@redhat.com>
3978
3979         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Inherit
3980         submenu direction from the parent menu.
3981
3982         * gtk/gtkmenushell.c (gtk_menu_shell_select_submenu_first): 
3983         Return a boolean indicating whether an item in the submenu
3984         was selected.
3985         (gtk_real_menu_shell_move_current): When going in child 
3986         direction, don't get stuck at completely insensitive 
3987         submenus.  (#162055, Billy Biggs)       
3988
3989 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
3990
3991         Make the clipboard image API more robust (#162357, 
3992         Torsten Schoenfeld):
3993         
3994         * gtk/gtkclipboard.c (clipboard_image_received_func): Don't
3995         ref the pixbuf if it is NULL.
3996
3997         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): 
3998         NULL-terminate the varargs in the call to 
3999         gdk_pixbuf_save_to_buffer(). 
4000         (gtk_selection_data_get_pixbuf): Only use a pixbuf loader 
4001         if there is data to load.
4002
4003 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
4004
4005         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
4006         Set x_root and y_root in button and motion events from 
4007         extended input devices.  (#148715, Robert Ögren)
4008
4009         * gtk/gtktreeview.c (gtk_tree_view_class_init): Fix a 
4010         typo.  (#162339, Alessio Dessi)
4011
4012         * gtk/gtkadjustment.c (gtk_adjustment_class_init): Document
4013         properties as new since 2.4.  (#156101, Billy Biggs)
4014
4015         * configure.in: Add a warning about the linux-fb 
4016         target.  (#155488, Zeeshan Ali)
4017
4018         * gtk/gtkmain.c (gtk_init_with_args): Typo fix.  (#162278,
4019         Torsten Schoenfeld)
4020
4021 2004-12-26  Matthias Clasen  <mclasen@redhat.com>
4022
4023         * gtk/gtkfilechooser.c (gtk_file_chooser_set_action): 
4024         Typo fix.  (#162219, Masao Mutoh)
4025         (gtk_file_chooser_set_preview_widget_active): 
4026         Another typo.  (#162218, Masao Mutoh)
4027
4028 2004-12-23  Matthias Clasen  <mclasen@redhat.com>
4029
4030         * gtk/gtkliststore.c (gtk_list_store_iter_children): 
4031         Return TRUE if there are children.  (#162134, Iñigo Serna,
4032         patch by John Finlay)
4033
4034         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): 
4035         Transfer state from the button to the cell view to get
4036         prelighting right.  (#156327, Ricardo Veguilla)
4037
4038 Wed Dec 22 14:22:19 2004  Søren Sandmann  <sandmann@redhat.com>
4039
4040         * tests/testtoolbar.c (timeout_cb): Add sensitivity-changing
4041         timeout. Written by Christian Persch.
4042
4043 Wed Dec 22 14:14:02 2004  Søren Sandmann  <sandmann@redhat.com>
4044
4045         Bug #161561
4046         
4047         * gdk/x11/gdkwindow-x11.c (tmp_{re,un}set_bg): Only set/reset the
4048         background for windows that get expose events. 
4049
4050         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Remove
4051         hack to repaint !expose windows.
4052
4053 Wed Dec 22 11:35:41 2004  Søren Sandmann  <sandmann@redhat.com>
4054
4055         Bug #147497, make menu items activate immediately when you release
4056         the button.
4057         
4058         * gtk/gtkmenu.c (gtk_menu_enter_notify, menu_motion_notify): Make
4059         items activate immediately.
4060
4061         * gtk/gtkmenu.c (definitely_within_item): New function
4062         * gtk/gtkmenu.c (check_threshold): New function
4063
4064 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
4065
4066         * gtk/gtklabel.c (gtk_label_setup_mnemonic): Don't forget to
4067         null the mnemonic_menu when unsetting a mnemonic, reported
4068         by Owen Taylor.
4069
4070 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
4071
4072         * gtk/gtkliststore.c (generate_order): Generate the order the
4073         way it is supposed to be, order[new_pos] == old_pos.
4074         (gtk_list_store_reorder): Invert the order before using it.
4075
4076 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
4077
4078         Fix sorting of list stores.  (#161886, Marcin Krzyzanowski)
4079
4080         * gtk/gtkliststore.c (generate_order): Generate the order the
4081         way it is supposed to be, order[new_pos] == old_pos.
4082         (gtk_list_store_reorder): Invert the order before using it.
4083
4084         * gtk/gtkiconview.c (gtk_icon_view_rows_reordered): Adapt to the
4085         list store fix.
4086
4087 Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
4088
4089         * gtk/queryimmodules.c (main): print out the version and binary
4090         name in the header comment.  Problem reported by Seth Nickell.
4091
4092 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
4093
4094         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
4095         root path to gtk_tree_model_rows_reordered().  (#161720,
4096         Marcin Krzyzanowski)
4097
4098         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): Don't 
4099         translate NULL messages.  (#161789, Morten Welinder)
4100
4101         * gtk/gtkmessagedialog.c (setup_primary_label_font): Don't show
4102         the secondary label on show_all().  (#161707, Christian Persch)
4103
4104 2004-12-19  Tor Lillqvist  <tml@iki.fi>
4105
4106         * gdk/win32/gdkdnd-win32.c (resolve_link, gdk_dropfiles_filter):
4107         Use wide character API when available. Use UTF-8 for filenames.
4108
4109         * gdk/win32/gdkselection-win32.c (_gdk_dropfiles_store): Include
4110         the string's trailing zero byte in the property's length, just for
4111         safety.
4112
4113 2004-12-18  Matthias Clasen  <mclasen@redhat.com>
4114
4115         * gtk/gtkfilechooserentry.c (check_completion_callback) 
4116         (load_directory_callback): Add missing GDK_THREADS_ENTER/LEAVE.
4117
4118         * gtk/gtkfilechooserdefault.c (edited_idle_cb) 
4119         (shortcuts_drag_outside_idle_cb): Add missing 
4120         GDK_THREADS_ENTER/LEAVE.  (#161604)
4121         
4122         * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): 
4123         (list_select_func): Don't call gtk_file_info_get_is_folder()
4124         on NULL. 
4125
4126         * gtk/gtkaboutdialog.c (gtk_about_dialog_get_logo_icon_name): 
4127         (gtk_about_dialog_init): Add missing initializations.  (#161646,
4128         Torsten Schoenfeld)
4129