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