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