]> Pileus Git - ~andy/gtk/blob - ChangeLog
Fix #399071, suggestion from Benoit Dejean.
[~andy/gtk] / ChangeLog
1 2007-06-05  Kristian Rietveld  <kris@gtk.org>
2
3         Fix #399071, suggestion from Benoit Dejean.
4
5         * gtk/gtkliststore.[ch] (gtk_list_store_set_vector_internal): new
6         function, factored out code iterating (columns, values) vectors from
7         gtk_list_store_new_with_valuesv to here,
8         (gtk_list_store_set_valuesv): new public function to set list store
9         values using (columns, values) vectors,
10         (gtk_list_store_new_with_valuesv): call new _set_vector_internal
11         instead.
12
13         * gtk/gtktreestore.[ch] (gtk_tree_store_set_vector_internal),
14         (gtk_tree_store_set_valuesv), (gtk_tree_store_new_with_valuesv):
15         likewise.
16
17         * gtk/gtk.symbols: updated.
18
19 2007-06-04  Richard Hult  <richard@imendio.com>
20
21         * gdk/quartz/gdkwindow-quartz.c:
22         (show_window_internal): Don't try to make temp windows key
23         windows, fixes problem introduced below.
24
25 2007-06-04  Richard Hult  <richard@imendio.com>
26
27         * gdk/quartz/GdkQuartzWindow.c: 
28         * gdk/quartz/gdkwindow-quartz.c: Implement simple versions of
29         gdk_window_set_accept_focus and gdk_window_set_focus_on_map.
30
31 2007-06-04  Richard Hult  <richard@imendio.com>
32
33         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_raise),
34         (gdk_window_lower): Implement.
35
36 2007-06-04  Richard Hult  <richard@imendio.com>
37
38         * gdk/quartz/gdkwindow-quartz.c:
39         * gdk/quartz/gdkwindow-quartz.h: Implement 
40         gdk_window_set_transient_for.
41
42 2007-06-04  Cody Russell  <bratsche@gnome.org>
43
44         * gtk/gtklinkbutton.h
45         * gtk/gtkaboutdialog.h: Change function argument "link"
46         to "link_" to fix warnings for applications compiling
47         with -Wshadow. (#379213)
48
49 2007-06-04  Cody Russell  <bratsche@gnome.org>
50
51         * gtk/gtkpathbar.c (gtk_path_bar_scroll_down): Check
52         if down_button is NULL.  This happens when the pathbar button
53         for the current directory is too large to fit in the
54         space, e.g. on Windows for directories named something like
55         "My Documents and Settings".  (#389603)
56
57 2007-06-04  Matthias Clasen  <mclasen@redhat.com>
58
59         * configure.in: Bump version
60
61         * === Released 2.11.1 ===
62
63         * gdk/gdkwindow.c (gdk_window_set_composited): Improve docs.
64
65         * NEWS:
66         * README.in: Updates
67
68 2007-06-04  Michael Natterer  <mitch@imendio.com>
69
70         Move "move-focus" signals from several widgets to GtkWidget to
71         enable more flexible costomization of keyboard navigation via
72         bindings. Fixes bug #414947.
73
74         * gtk/gtkwidget.c: add "move-focus" binding signal, default to
75         calling the toplevel GtkWindow's "move-focus" vfunc.
76
77         * gtk/gtktextview.[ch]
78         * gtk/gtkwindow.[ch]: remove "move-focus" signals and add compat
79         code that makes sure that both emitting the signal on the widget
80         and overriding the virtual functions keeps working as before.
81
82         * gtk/gtktoolbar.c: remove "move-focus" signal here too and use
83         GtkWidget's signal. This change slightly changes keyboard
84         navigation in toolbars. I'll fix the behavior if somebody can
85         explain me if and how exactly the new behavior is broken.
86
87 2007-06-04  Matthias Clasen  <mclasen@redhat.com>
88
89         * gtk/gtkmarshalers.list:
90         * gtk/gtknotebook.[hc]: Add a create-window signal that allows
91         to override the global create-window-hook on a per-notebook
92         basis. The default handler falls back to the global hook.
93         (#386935, Christian Hammond)
94         
95 2007-06-04  Emmanuele Bassi  <ebassi@gnome.org>
96
97         * gtk/gtkradiobutton.[ch]:
98         * gtk/gtk.symbols:
99         * tests/testgtk.c: Revert previous commit; the API is not yet
100         finalized - see bug #166995.
101
102 2007-06-04  Emmanuele Bassi  <ebassi@gnome.org>
103
104         * gtk/gtkradiobutton.h:
105         * gtk/gtkradiobutton.c:
106         * gtk/gtk.symbols: Add gtk_radio_button_set_value(),
107         gtk_radio_button_get_current_value() and gtk_radio_button_get_value().
108         Use these functions to set and get an arbitrary integer associated to
109         a GtkRadioButton in a group, like the value associated to a
110         GtkRadioAction.
111
112         * tests/testgtk.c:
113         (create_radio_buttons), (radio_toggled_cb): Exercise the new API.
114
115 2007-06-03  Torsten Schoenfeld  <kaffeetisch@gmx.de>
116
117         * gtk/gtkicontheme.c (choose_icon): Initialize unthemed_icon to NULL
118         to avoid accessing uninitialized memory when
119         gtk_icon_theme_choose_icon() is called with an empty names list.
120
121 2007-06-03  Richard Hult  <richard@imendio.com>
122
123         * gdk/quartz/gdkevents-quartz.c: (create_crossing_event): Set the key
124         modifier state.
125
126 2007-06-03  Richard Hult  <richard@imendio.com>
127
128         * gdk/quartz/gdkevents-quartz.c: Make pointer grab emulation work a bit
129         better:
130         (gdk_display_pointer_is_grabbed): Do what the docs say and don't
131         consider implicit grabs here.
132         (gdk_pointer_grab): Overriding a grab by the same app should always be
133         succesful.
134         (gdk_event_translate): Implicit grabs should not be owner events.
135
136 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
137
138         * NEWS: Updates
139
140 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
141
142         * docs/tools/widgets.c: Add a volume button
143
144 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
145
146         * gtk/gtkradiobutton.c:
147         * gtk/gtkradiomenuitem.c: Fix doc typos.  
148
149 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
150
151         * configure.in: Allow to disable Xinerama.  (#348065, Diego Pettenò)
152
153 2007-06-03  Xan Lopez  <xan@gnome.org>
154
155         * gtk/gtknotebook.c: remove index parameter in gtk_notebook_switch_page
156         and remove g_return_if checks in private functions. (#443247)
157
158 2007-06-01  Richard Hult  <richard@imendio.com>
159
160         * gdk/quartz/gdkevents-quartz.c:
161         (get_converted_window_coordinates), (create_crossing_event): Fix the
162         coordinates in crossing events so they are relative to the right
163         window.
164
165 2007-06-01  Richard Hult  <richard@imendio.com>
166
167         * gdk/quartz/gdkevents-quartz.[ch]: Make function naming
168         consistent for the various functions that retrieve data from an
169         event.
170
171         * gdk/quartz/gdkprivate-quartz.h: 
172         * gdk/quartz/gdkwindow-quartz.[ch]: Remove the now unused
173         _gdk_quartz_window_find_child_by_point() function.
174
175 2007-06-01  Matthias Clasen  <mclasen@redhat.com>
176
177         Add support for composited child windows.  (#412882, Ryan Lortie)
178
179         * gdk/gdk.symbols:
180         * gdk/gdkdisplay.h:
181         * gdk/gdkinternals.h:
182         * gdk/gdkwindow.[hc]: Add gdk_display_supports_composite() and
183         gdk_window_set_composited().
184
185         * gdk/x11/gdkevents-x11.c:
186         * gdk/x11/gdkdisplay-x11.[hc]:
187         * gdk/x11/gdkwindow-x11.[hc]: X11 implementation.
188
189         * gdk/win32/gdkdisplay-win32.c:
190         * gdk/win32/gdkwindow-win32.c: Dummy win32 implementration.
191
192         * gdk/quartz/gdkdisplay-quartz.c:
193         * gdk/quartz/gdkwindow-quartz.c: Dummy Quartz implementation.
194
195         * gdk/directfb/gdkdisplay-directfb.c:
196         * gdk/directfb/gdkwindow-directfb.c: Dummy DirectFB implementation.
197
198         * tests/testgtk.c: Add a "composited window" test.
199
200 2007-06-01  Michael Natterer  <mitch@imendio.com>
201
202         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): don't switch
203         submenu opening direction for overlapping reasons if there is even
204         less space on the other side (bug #441863, Tommi Komulainen).
205
206 2007-06-01  Michael Natterer  <mitch@imendio.com>
207
208         * gtk/gtkfilechooserdialog.c (response_cb): change fix for #347883
209         to not obfuscate the code.
210
211 2007-06-01  Yevgen Muntyan  <muntyan@tamu.edu>
212
213         Avoid recreating pangolayouts in GtkTextView on cursor movement
214         (#435405, Behdad Esfahbod).
215
216         * gtk/gtktextlayout.c:
217         * gtk/gtktextlayout.h: new GtkTextLayout method invalidate_cursors(),
218         and functions gtk_text_layout_invalidate_cursors() and
219         gtk_text_layout_cursors_changed(), to use when invalidation is due
220         to moved marks or changed selection.
221
222         * gtk/gtktextbtree.c:
223         * gtk/gtktextbtree.h: use what's appropriate when invalidating layout.
224
225         * gtk/gtk.symbols: add new functions.
226
227         * README.in: added a note about changed GtkTextLayout API.
228
229 2007-06-01  Alp Toker  <alp.toker@collabora.co.uk>
230
231         * gdk/gdkcairo.c (gdk_cairo_set_source_pixmap): Fix doc typos.
232
233 2007-05-31  Yevgen Muntyan  <muntyan@tamu.edu>
234
235         * gtk/gtkstyle.c (get_insertion_cursor_gc): use text colors from
236         widget style to draw cursor instead of hardcoded black and grey
237         (#79585, comment #30).
238
239 2007-06-01  Kristian Rietveld  <kris@gtk.org>
240
241         * gtk/gtkcellrenderertext.c (get_size): transform the ink_rect using
242         pango_extents_to_pixels to avoid rounding errors.  (Fixes #430218,
243         Shlomi Israel).
244
245 2007-05-31  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
246
247         * tests/autotestfilechooser.c: Reactivate the other file-chooser
248         tests. Forgot that before commiting revision 17994.
249
250 2007-05-31  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
251
252         * gtk/gtkfilechooserdialog.c, tests/autotestfilechooser.c: Reset
253         the internal response_requested flag, once the response triggered by
254         file_chooser_widget_response_requested has been processed (#347883).
255
256 2007-05-30  Richard Hult  <richard@imendio.com>
257
258         * gdk/quartz/gdkselection-quartz.c (gdk_free_text_list): Add this
259         function, bug #438440.
260
261 2007-05-30  Tor Lillqvist  <tml@novell.com>
262
263         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab): Subtract the
264         multi-monitor offset from x and y before setting up the rectangle
265         for ClipCursor(). Fixes #442326.
266
267 2007-05-30  Matthias Clasen  <mclasen@redhat.com>
268
269         * gtk/gtkiconview.c (gtk_icon_view_layout): Queue a resize
270         if the size changed.  (#418047, Alex Graveley)
271
272 2007-05-30  Simos Xenitellis  <simos@gnome.org>
273
274         * gdk/gdkkeysyms-update.pl: Updated script to new upstream 
275         location of keysymdef.h (#442183)
276
277 2007-05-30  Emmanuele Bassi  <ebassi@gnome.org>
278
279         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Return
280         after setting the file chooser entry with the current selection.
281
282 2007-05-30  Matthias Clasen  <mclasen@redhat.com>
283
284         * gtk/gtkiconcachevalidator.c: Correct the handling
285         of display names.  (#441767, Marcin Bachry)
286
287 2007-05-30  Xan Lopez  <xan@gnome.org>
288
289         * gtk/gtknotebook.c (gtk_notebook_set_current_page): Small cleanup.
290         Fixes #442172.
291
292 2007-05-28  Cody Russell  <bratsche@gnome.org>
293
294         * gdk/win32/xcursors.h: Fix initialization of last item. (#440511)
295
296 2007-05-28  Richard Hult  <richard@imendio.com>
297
298         * gdk/quartz/gdkevents-quartz.c (get_child_coordinates_from_ancestor)
299         (get_ancestor_coordinates_from_child): Break out code that was
300         repeated into separate functions and call them instead.
301         (find_window_for_mouse_nsevent): Break out this from
302         find_window_for_nsevent to make the code clearer.
303         (find_window_for_nsevent): Use the above and fix the returned
304         coordinates in the process so that they are always relative the
305         found window, both for the normal case and during grabs. Still
306         needs fixing for the case where we get nsevents for a window other
307         than than grab window during grabs.
308
309 2007-05-28  Richard Hult  <richard@imendio.com>
310
311         * gdk/quartz/gdkevents-quartz.c (gdk_event_translate): Fix typo,
312         we need both press and release in the mask to trigger implicit
313         grabs.
314
315 2007-05-28  Richard Hult  <richard@imendio.com>
316
317         * gdk/quartz/gdkevents-quartz.c (pointer_ungrab_internal): Reset
318         all the grab state, to help debugging.
319         (gdk_event_translate): Use pointer_ungrab_internal instead of
320         duplicating the code here.
321
322 2007-05-28  Richard Hult  <richard@imendio.com>
323
324         * gdk/quartz/gdkprivate-quartz.h:
325         * gdk/quartz/gdkwindow-quartz.c (find_child_window_helper)
326         (_gdk_quartz_window_find_child): Refactored version of
327         _gdk_quartz_window_find_child_by_point, that doesn't return any
328         coordinates as the users of this function already have the
329         coordinates and need to translate them differently.
330         (_gdk_windowing_window_get_pointer): Fixup coordinate translation.
331         (_gdk_windowing_window_at_pointer): Likewise.
332
333 2007-05-28  Richard Hult  <richard@imendio.com>
334
335         * gdk/quartz/gdkevents-quartz.c
336         (find_window_interested_in_event_mask): Don't traverse beyond the
337         toplevel of the passed in window.
338
339 2007-05-28  Richard Hult  <richard@imendio.com>
340
341         * gdk/quartz/gdkwindow-quartz.c: (_gdk_windowing_window_init): Set
342         a size for the root window.
343
344 2007-05-28  Richard Hult  <richard@imendio.com>
345
346         * gdk/quartz/gdkwindow-quartz.c: Add comments about what various
347         coordinates are relative to.
348
349 2007-05-28  Carlos Garnacho  <carlos@imendio.com>
350
351         * gtk/gtkwidget.c (gtk_widget_propagate_hierarchy_changed_recurse):
352         Add back variable declaration removed in r17958.
353
354 2007-05-28  Carlos Garcia Campos  <carlosgc@gnome.org>
355
356         * gtk/gtkprinter.[ch]: Add new capability
357         GTK_PRINT_CAPABILITY_NUMBER_UP.
358         * docs/reference/gtk/tmpl/gtkprintunixdialog.sgml: 
359         * gtk/gtkprintunixdialog.c: (update_dialog_from_capabilities):
360         * modules/printbackends/file/gtkprintbackendfile.c:
361         (file_printer_get_options), (file_printer_get_settings_from_options):
362         * modules/printbackends/cups/gtkprintbackendcups.c:
363         (cups_printer_get_capabilities): Add a new print capability to specify
364         whether print dialog will offer printing multiple pages per sheet. (#398414)
365         
366 2007-05-28  Matthias Clasen  <mclasen@redhat.com>
367
368         * gtk/gtktoolbar.h: Actually undeprecate 
369         gtk_toolbar_[un]set_icon_size.  (#314172. Yevgen Muntyan)
370
371 2007-05-28  Matthias Clasen  <mclasen@redhat.com>
372
373         * gtk/gtkwidget.c: Document some more signals
374
375         * gtk/gtktextview.c: Improve docs
376
377 2007-05-27  Tor Lillqvist  <tml@novell.com>
378
379         * configure.in (GDK_EXTRA_LISB): Drop bogus -user32 switch. Was
380         supposed to be -luser32, but he "l" was missing. But nobody has
381         noticed, so presumably unnecessary.
382
383 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
384
385         * gtk/gtkprintoperationpreview.c: Improve docs
386
387 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
388
389         * gtk/gtkentry.c: Move docs inline.
390
391 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
392
393         * gdk/directfb/gdkkeys-directfb.c: Remove duplicate doc comments
394         that cause problems when building the docs.
395
396 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
397         
398         * gdk/x11/gdkdisplay-x11.c: Update docs
399         * gdk/gdk.c: Update docs
400         * gdk/directfb/gdkwindow-directfb.c: Remove duplicate doc comments.
401         * gdk/x11/gdkwindow-x11.c: Fix doc formatting
402
403 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
404
405         * gtk/gtktooltip.c:
406         * gtk/gtkstatusicon.c:
407         * gtk/gtkscalebutton.c:
408         * gtk/gtkrecentaction.c:
409         * gtk/gtkrange.c:
410         * gtk/gtkprinter.c:
411         * gtk/gtkprintsettings.c:
412         * gtk/gtkpapersize.c:
413         * gtk/gtkpagesetup.c:
414         * gtk/gtknotebook.c:
415         * gtk/gtkentrycompletion.c: Document new api
416
417 2007-05-26  Richard Hult  <richard@imendio.com>
418
419         * gtk/gtkprinter.c: (gtk_printer_set_location): Fix typo to get the
420         build working.
421
422 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
423
424         * configure.in: Require gtk-doc 1.6, for signal and property links.
425         * gtk/gtkbox.c:
426         * gtk/gtkbutton.c:
427         * gtk/gtkcontainer.c:
428         * gtk/gtkdialog.c:
429         * gtk/gtkentry.c:
430         * gtk/gtkimage.c:
431         * gtk/gtklabel.c:
432         * gtk/gtkmisc.c:
433         * gtk/gtksettings.c:
434         * gtk/gtkwidget.c: Documentation improvements, link signals
435         and properties where it makes sense.
436
437 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
438
439         * gtk/gtktextmark.c:
440         * gtk/gtktextbuffer.c: Formatting fixes.
441
442 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
443
444         Allow to separate GtkTextMark creation from buffer insertion.
445         (#132818, Gustavo Giráldez, patch by Yevgen Muntyan)
446
447         * gtk/gtktextmarkprivate.h:
448         * gtk/gtktextmark.[hc] (gtk_text_mark_new): New function to 
449         create a GtkTextMark.
450
451         * gtk/gtktextbuffer.[hc] (gtk_text_buffer_add_mark): New 
452         function to add an existing mark to a buffer. 
453
454         * gtk/gtktextbtree.c: Allow adding existing marks.
455
456         * gtk/gtk.symbols: Add new functions.
457
458         * tests/testtextbuffer.c: Add some tests for new mark 
459         functionality.
460
461 2007-05-25  Xan Lopez  <xan@gnome.org>
462
463         * gtk/gtkaction.c: (gtk_action_set_short_label):
464         Use private->data->short_label to update the proxies. (#440780)
465
466 2007-05-25  Richard Hult  <richard@imendio.com>
467
468         * gdk/quartz/gdkimage-quartz.c: (_gdk_quartz_image_copy_to_image):
469         Implement copying from a window, part of bug #348493.
470
471 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
472
473         * gtk/gtkprintoperation-unix.c (unix_end_run): Hold a 
474         refence on the print operation until gtk_print_job_send()
475         is done.  (#440040, Chris Vine)
476
477 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
478
479         * gtk/gtkiconview.c (gtk_icon_view_accessible_ref_child):
480         Don't crash and don't leak.  (#439565, Pedro Villavicencio)
481
482 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
483
484         * gtk/gtkiconfactory.c: Improve a warning
485         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): Always
486         set the error when returning NULL.  (#440982, Carlos Garcia
487         Campos)
488
489 2007-05-25  Michael Natterer  <mitch@imendio.com>
490
491         Merge fix from maemo-gtk:
492
493         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): open submenus
494         also if the menu item we're entering is already selected. Also, it
495         makes no sense to forward the event to the parent menu shell if we
496         are entering a menu item of *this* menu shell.
497
498 2007-05-24  Matthias Clasen  <mclasen@redhat.com>
499
500         * gtk/stock-icons/*: Make sure all svg icons are added
501         as pngs.
502
503 2007-05-24  Matthias Clasen  <mclasen@redhat.com>
504
505         * modules/input/Makefile.am: Fix broken DESTDIR support
506
507 2007-05-24  Michael Natterer  <mitch@imendio.com>
508
509         * gtk/gtktooltip.c (find_widget_under_pointer): apply patch from
510         Bogdan Nicula which fixes a crash on GdkWindows which have no
511         GtkWidget as user_data (bug #440890).
512
513 2007-05-24   Matthias Clasen  <mclasen@redhat.com>
514
515         * configure.in: Bump version
516
517         * === Released 2.11.0 ===
518
519         * NEWS: Updates
520
521 2007-05-23   Matthias Clasen  <mclasen@redhat.com>
522
523         * gtk/gtk.symbols: 
524         * gdk/x11/xsettings-common.h: 
525         * gdk/gdk.symbols: Add some missing symbols.
526
527         * gtk/paper_names_offsets.c:
528         * gtk/gen-paper-names.c: Make variables static.
529
530         * gtk/gtktooltip.[hc]:
531         * gtk/gtkvolumebutton.c:
532         * gtk/gtkscalebutton.c:  Fix up symbol aliasing.
533
534 2007-05-23  Yevgen Muntyan  <muntyan@tamu.edu>
535
536         * gtk/gtkprintunixdialog.c: missing #include <ctype.h>.
537
538         * gtk/gtkhandlebox.c (gtk_handle_box_paint):
539         * gtk/gtkpagesetupunixdialog.c (_gtk_load_custom_papers):
540         * gtk/gtkstatusbar.c (gtk_statusbar_get_context_id):
541         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path):
542         * gtk/gtktrayicon-x11.c (gtk_tray_icon_send_dock_request):
543         * gtk/gtkpreview.c (gtk_preview_finalize):
544         * gtk/gtknotebook.c (gtk_notebook_set_group_id):
545         * tests/testnotebookdnd.c (window_creation_function):
546         * tests/testiconview.c (do_popup_menu):
547         Fixed some compiler warnings (#440689).
548
549 2007-05-23  Kristian Rietveld  <kris@imendio.com>
550
551         * gtk/gtktooltip.c (find_widget_under_pointer): translate coordinates
552         from the window they were received on to the event widget's window;
553         correct for no-window widgets after that, bail out on failure.  This
554         makes the coordinates given by GtkWidget::query-tooltip truly relative
555         to widget->window.  (#435188).
556
557         * gtk/gtkwidget.c (gtk_widget_class_init): update docs for
558         GtkWidget::query-tooltip.
559
560 2007-05-22  Behdad Esfahbod  <behdad@gnome.org>
561
562         * gtk/gtkprintcontext.c (gtk_print_context_finalize),
563         (_gtk_print_context_new), (_gtk_print_context_get_fontmap),
564         (gtk_print_context_set_cairo_context),
565         (gtk_print_context_get_pango_fontmap),
566         (gtk_print_context_create_pango_context):
567         Don't create new pango fontmaps.  Use the default pangocairo
568         fontmap and set resolution on PangoContext instead. (#417707)
569
570 2007-05-21  Richard Hult  <richard@imendio.com>
571
572         * gdk/quartz/gdkdisplay-quartz.c: (gdk_display_open): Set the
573         resolution.
574         
575         * gdk/quartz/gdkscreen-quartz.c: Use the autorelease pool macros.
576
577 2007-05-21  Michael Natterer  <mitch@imendio.com>
578
579         * gtk/gtkcombobox.c (gtk_combo_box_set_model): revert last change.
580
581 Mon May 21 13:58:32 2007  Tim Janik  <timj@imendio.com>
582
583         * gtk/gtkcombobox.c (gtk_combo_box_set_model): removed redundant check.
584
585 2007-05-21  Tor Lillqvist  <tml@novell.com>
586
587         * gtk/gtkscalebutton.c (gtk_scale_popup): Make it work better with
588         multiple monitors.
589
590 2007-05-20  Attilio Fiandrotti  <attilio.fiandrotti@gmail.com>
591
592         * gdk/directfb/gdkwindow-directfb.c:
593         * gdk/directfb/gdkdirectfb.h: Updated minimum DirectFB version
594         required to enable gdk_directfb_create_child_window.
595         (Closes: #437379)
596
597 2007-05-20  Bastien Nocera  <hadess@hadess.net>
598
599         * gtk/Makefile.am:
600         * gtk/gtk.h:
601         * gtk/gtk.symbols:
602         * gtk/gtkvolumebutton.[ch]: Add the GtkVolumeButton widget,
603         a button that pops up a scale when clicked (Closes: #415775)
604         * tests/Makefile.am:
605         * tests/testvolumebutton.c: Add a test program for the
606         volume button
607
608 2007-05-19  Bastien Nocera  <hadess@hadess.net>
609
610         reviewed by: Matthias Clasen <mclasen@redhat.com>
611
612         * gtk/Makefile.am:
613         * gtk/gtk.h:
614         * gtk/gtk.symbols:
615         * gtk/gtkscalebutton.[ch]: Add the GtkScaleButton widget,
616         a button that pops up a scale when pressed
617
618 2007-05-19  Matthias Clasen  <mclasen@redhat.com>
619
620         * gtk/gtk.symbols:
621         * gtk/gtknotebook.[hc]: Deprecate gtk_notebook_[gs]et_group_id
622         in favour of new functions gtk_notebook_[gs]et_group, which
623         takes a pointer as group identifier and makes it easier to
624         avoid group id collisions.  (#386930, Christian Hammond)
625                 
626         * tests/testnotebookdnd.c: Use new grouping api.
627
628 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
629
630         * gtk/gtkactiongroup.c: Warn and refuse to add actions with
631         duplicate names.  (#150877, Tommi Komulainen, patch by Kalle
632         Vahlman)
633
634 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
635
636         * gtk/gtk.symbols:
637         * gtk/gtkentry.[hc]: Add gtk_entry_[gs]et_cursor_hadjustment()
638         to allow automatic scrolling in response to cursor movements
639         in the entry.  (#438651, Nate Nielsen)
640
641 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
642
643         * gtk/gtktextview.c: Add a toggle-cursor-visibility keybinding
644         signal, and bind F7 to it.  (#380048, Tim Miao)
645
646 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
647
648         * gtk/gtk.symbols:
649         * gtk/gtkicontheme.h:
650         * gtk/gtkicontheme.c: Add a function to look up an icon from
651         a list of icon names.  (#396901, Luca Ferretti)
652
653 2007-05-18  Emmanuele Bassi  <ebassi@gnome.org>
654
655         * gtk/gtkrecentchooserdefault.c:
656         (gtk_recent_chooser_default_dispose): Reset the state on dispose.
657
658         (cleanup_after_load): load_id != 0 && load_state == LOAD_EMPTY
659         is a valid state, if the main loop never had the chance to
660         properly spin at least once. (#438671)
661
662 2007-05-18  Emmanuele Bassi  <ebassi@gnome.org>
663
664         * gtk/gtkrecentchooserdefault.c (recent_meta_data_func): Mark
665         string for translation. (#439437)
666
667 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
668
669         * gtk/gtkwindow.c (gtk_window_set_transient_for): Fix
670         doc typo.  (#438100, Vincent Untz)
671
672 2007-05-18  Michael J. Chudobiak  <mjc@cvs.gnome.org>
673
674         * INSTALL.in:
675         * README.in:
676         * configure.in: Bump libtiff requirement to 3.6.0, by requiring
677           presence of TIFFReadRGBAImageOriented.
678
679         * gdk-pixbuf-scaled-anim.c: (get_scaled_pixbuf):
680         Preserve pixbuf options when generating a new scaled pixbuf.
681
682         * io-jpeg.c: (get_orientation), (gdk_pixbuf__jpeg_image_load),
683         (gdk_pixbuf__jpeg_image_load_increment): Read the exif
684         orientation tag and associate it with the "orientation" pixbuf
685         option. Renders libexif unnecessary in some applications.
686
687         * io-tiff.c: (tiff_image_parse): Read the tiff orientation tag,
688         compensate for the partial rotations performed by libtiff,
689         and generate an "orientation" option for the pixbuf.
690
691 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
692
693         * gtk/gtkexpander.c: remove c++ style comment.
694
695 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
696
697         Make combobox menu popdown keybindable (#433593)
698
699         * gtk/gtkcombobox.c (gtk_combo_box_class_init): Add "popdown" binding
700         signal and keybindings.
701         (gtk_combo_box_real_popdown): Added, "popdown" keybinding signal
702         handler.
703         (gtk_combo_box_menu_key_press):
704         (gtk_combo_box_list_key_press): forward the event to the combobox if
705         it wasn't handled by the menu.
706
707 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
708
709         * gtk/gtknotebook.c (gtk_notebook_init) (gtk_notebook_drag_motion)
710         (gtk_notebook_drag_drop): Allow widgets up in the hierarchy to run
711         their DnD handlers if the target doesn't match with anything the
712         notebook manages. (#350665, Joakim Lundborg).
713
714 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
715
716         Refactor GtkFileChooserDialog sizing.
717
718         * gtkfilechooserembed.[ch] (delegate_get_resizable_hints)
719         (_gtk_file_chooser_embed_get_resizable_hints):
720         s/resizable_hints/resizable/, return just one boolean value to
721         determine whether the filechooser should be resizable or not.
722
723         * gtkfilechooserprivate.h (struct GtkFileChooserDialogPrivate): remove
724         variables related to the GtkFileChooserEmbed get_default_size() and
725         get_resizable() implementations.
726         (struct GtkFileChooserDefault): Move default size management here.
727
728         * gtkfilechooserdefault.c (gtk_file_chooser_default_size_allocate):
729         Added, store currently allocated size to calculate default size later.
730         (gtk_file_chooser_default_get_resizable_hints):
731         s/resizable_hints/resizable/.
732         (gtk_file_chooser_default_set_property): Reload settings if the file
733         chooser action changes, this way the save expander state will be known
734         before mapping the window, avoiding wrong window positioning and
735         flickering. (#424299, #424309)
736         (find_good_size_from_style): Only get size from style if it wasn't set
737         previously.
738         (gtk_file_chooser_default_get_default_size): return default size based
739         on stored default size and preview/extra widget sizes.
740
741         * gtkfilechooserdialog.c (file_chooser_widget_update_hints)
742         (file_chooser_widget_realized_size_changed)
743         (file_chooser_widget_unrealized_size_changed): simplified to
744         (file_chooser_widget_size_changed): set window size and resizability
745         based on the GtkFileChooserEmbed interface implementation. (Bug
746         #420285, Tomeu Vizoso)
747         (gtk_file_chooser_dialog_map): force a dialog size change, so it's
748         clamped for sure to the 75% of the screen size.
749
750 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
751
752         * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Do not unset
753         the brand new current page if there was none set previously. Fixes
754         #425138 (Reported by Michail Crayson). Some code simplifications.
755         (gtk_notebook_draw_arrow): code style fix.
756
757 2007-05-16  Matthias Clasen  <mclasen@redhat.com>
758
759         * gtk/gtkpathbar.c: Add ATK names to the Up, Down, and Root
760         buttons. Keep the focus from vanishing when Up or Down arrows
761         become insensitive or invisible.  (#357005, Patrick Wade)
762
763 2007-05-16  Brian Cameron  <brian.cameron@sun.com>
764
765         * acconfig.h, configure.in, gdk/Makefile.am, gdkprivate.h, gdkrgb.c,
766           gdkdraw.c, gdk-pixbuf/gdk-pixbuf-scale.c,
767           gdk-pixbuf/pixops/Makefile.am, gdk-pixbuf/pixops/pixops.[ch],
768           gdk-pixbuf/pixops/timescale.c:  Add Sun mediaLib support so that
769           hardware acceleration via mediaLib is enabled if mediaLib is
770           detected via configure.  Enhancement request #344813.  I was given
771           permission to commit in the bug report by Matthias Clasen.
772         * gdk/medialib.[ch]: New files added for mediaLib support.
773         * docs/reference/gdk-pixbuf/tmpl/scaling.sgml,
774           docs/reference/gdk/tmpl/rgb.sgml, gdk/gdkdraw.c:  Add docs for
775           mediaLib support.
776
777 2007-05-15  Torsten Schoenfeld  <kaffeetisch@gmx.de>
778
779         * gtk/gtkprintoperation.c (pdf_end_run): Unset priv->platform_data and
780         priv->free_platform_data to prevent gtk_print_operation_finalize()
781         from freeing the cairo surface a second time.
782
783 2007-05-14  Kristian Rietveld  <kris@gtk.org>
784
785         * gtk/gtkfilechooserdefault.c (recent_column_path_sort_func): remove
786         dangling semicolon, fixes the segfault ebassi was seeing earlier today
787         ;)
788
789 2007-05-14  Tristan Van Berkom  <tvb@gnome.org>
790
791         * gtk/gtkaboutdialog.c: Functions: gtk_about_dialog_get/set_name() 
792         were deprecated in favour of gtk_about_dialog_get/set_program_name(), 
793         the GtkAboutDialog now uses the "program-name" property instead of 
794         the conflicting "name" property (fixes bug 345822).
795
796 2007-05-14  Emmanuele Bassi  <ebassi@gnome.org>
797
798         * configure.in: Add check for GNU extensions to ftw()/nftw().
799
800         * gtk/gtksearchenginesimple.c: Fix compilation on systems with
801         only POSIX-compliant ftw(). (#435797, based on a patch by
802         Richard Hult)
803
804 2007-05-14  Emmanuele Bassi  <ebassi@gnome.org>
805
806         * gtk/gtkfilechooserdefault.c:
807         Convert the GtkTreeIter inside the sorting functions for the
808         search and recent modes. This doesn't yet fix the segfault when
809         clicking the 'Name' column in recent mode, though.
810
811 2007-05-14  Behdad Esfahbod  <behdad@gnome.org>
812
813         * modules/input/gtkimcontextthai.c
814         (gtk_im_context_thai_filter_keypress):
815         Fix check for modifier keys. (#438261, Theppitak Karoonboonyanan)
816
817 2007-05-14  Matthias Clasen  <mclasen@redhat.com>
818
819         * gtk/gtkscrolledwindow.c: Document scrollbars-within-bevel
820         as 2.12 addition.  (#438131, Mart Raudsepp)
821
822 2007-05-14  Matthias Clasen  <mclasen@redhat.com>
823
824         * gtk/gtkvseparator.c (gtk_vseparator_size_request): Fix
825         size requisition for wide vertical separators.  (#438113, 
826         Benjamin Berg)
827
828 2007-05-13  Emmanuele Bassi  <ebassi@gnome.org>
829
830         * gtk/gtksearchenginesimple.c: Include <ftw.h> and use nftw() and
831         all the symbols defined in <ftw.h> conditionally.
832
833 2007-05-13  Cody Russell  <bratsche@gnome.org>
834
835         * gdk/win32/gdkevents-win32.c: Only do the configure event context
836         iteration under WM_WINDOWPOSCHANGED instead of inside
837         handle_configure_event().  This fixes a bug that prevented window
838         contents from being redrawn after gtk_window_resize(). (#436721)
839
840 2007-05-12  Behdad Esfahbod  <behdad@gnome.org>
841
842         * gdk/gdkdraw.c (gdk_draw_trapezoids): Fix wrong cairo path
843         generation.  (#437879, Eddie C. Dost)
844
845 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
846
847         GtkFileChooser search fixes and recent files support.  (#435342)
848         
849         * gtk/gtkfilechooserdefault.c: Support drag and drop for
850         adding shortcuts of folders when in search or recent files
851         mode.
852
853 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
854
855         GtkFileChooser search fixes and recent files support.  (#435342)
856
857         * gtk/gtkfilechooserprivate.h:
858         * gtk/gtkfilechooserdefault.c: Follow the sorting order of
859         the GtkTreeView displaying the files list.
860
861         (shortcuts_get_index), (shortcuts_insert_separator),
862         (shortcuts_model_create), (shortcuts_combo_filter_func): Remove
863         the separator between the Search and the Recently Used shortcuts.
864
865         (list_select_func), (list_icon_data_func), (list_name_data_func),
866         (list_mtime_data_func): Update the sensitivity of the row
867         depending on the GtkFileChooserAction used.
868
869 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
870
871         GtkFileChooser search fixes and recent files support.  (#435342)
872
873         * gtk/gtkfilechooserprivate.h:
874         * gtk/gtkfilechooserdefault.c: Update the contents of the
875         files list when changing the filter of the GtkFileChooserDefault
876         widget.
877
878 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
879
880         GtkFileChooser search fixes and recent files support.  (#435342)
881
882         * gtk/gtkfilechooserdefault.c: Update the add bookmark button
883         sensitivity when in search or recent files mode, and allow
884         adding a bookmark for a folder.
885
886 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
887
888         GtkFileChooser search fixes and recent files support.  (#435342)
889
890         * gtk/gtkfilechooserdefault.c: UI fixes in the Search mode: add
891         a mnemonic to the label, de-boldify the label's text and assign
892         focus to the search entry when switching to the search mode.
893
894         (list_name_data_func): Split the text in both search and recent
895         files mode: on the first line use the short name and on the
896         second line use the full path.
897
898 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
899
900         GtkFileChooser search fixes and recent files support.  (#435342)
901
902         * gtk/gtkfilechooserprivate.h:
903         * gtk/gtkfilechooserdefault.c: Add support for showing the
904         recently used files list as a special shortcut item.
905
906 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
907         
908         GtkFileChooser search fixes and recent files support.  (#435342)
909
910         * gtk/gtkfilechooserdefault.c: Overall whitespace fixes and
911         indentation style consistency.
912
913         (list_row_activated): If the search hit is a folder, follow it
914         when activating the row, and switch back to browse mode.
915
916         (search_clear_model), (search_start_query),
917         (search_entry_activate_cb), (search_setup_widgets): Remember
918         the last query when switching between modes.
919
920 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
921
922         GtkFileChooser search fixes and recent files support.  (#435342)
923
924         * gtk/gtkfilechooserdefault.c:
925         (_gtk_file_chooser_default_class_init): Add key binding for
926         the Search shortcut; default to MOD1+S.
927
928         (search_shortcut_handler): Handle the key binding.
929
930         (search_hit_get_info_cb), (search_add_hit), (search_clear_model),
931         (search_setup_model): Retrieve informations on the search hits
932         when adding them to the model.
933
934         (list_icon_data_func): Show the search hit icon.
935
936 2007-05-11  Michael Natterer  <mitch@imendio.com>
937
938         * gtk/gtktextview.c (selection_motion_event_handler): call
939         gdk_event_request_motions(event) so selecting works with
940         XInput devices too. Spotted by Tommi Komulainen.
941
942 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
943
944         * gtk/gtksearchengine.c (_gtk_search_engine_new): Fall back
945         to GtkSearchEngineSimple only if gthread has already been
946         initialiased; otherwise, disable search support in the file
947         chooser widget.  (#435847)
948
949 2007-05-10  Matthias Clasen <mclasen@redhat.com>
950
951         * gtk/gtkbutton.c (gtk_button_set_image): Unparent the old
952         image before overwriting priv->image.  (#437281, Jochen Baier)
953
954 2007-05-10  Matthias Clasen <mclasen@redhat.com>
955
956         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_child):
957         Correct a confusing warning.  (#437284, Björn Lindqvist)
958
959 2007-05-10  Matthias Clasen <mclasen@redhat.com>
960
961         * gdk/gdkdraw.c (gdk_draw_pixbuf): Don't call into
962         the backend if the region is empty.  (#437081, Sven Neumann)
963
964 2007-05-10  Matthias Clasen <mclasen@redhat.com>
965
966         * gtk/gtksearchenginesimple.c (search_visit_func);
967         Assume Posix nftw behaviour. 
968
969 2007-05-09  Dom Lachowicz <domlachowicz@gmail.com>
970
971         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: GtkTreeView doesn't 
972         expand/collapse with Right/Left cursor keys on Windows
973         (#436269, Daniel Atallah)
974
975 2007-05-09  Cody Russell  <bratsche@gnome.org>
976
977         * gtk/gtkmenu.c:
978         (get_arrows_border): New function to calculate the border sizes needed 
979         for the scroll arrows.
980         (get_arrows_visible_area): New function to calculate the arrows visible 
981         area.
982         (get_arrows_sensitive_area): New function to calculate the arrows
983         sensitive area.
984         (gtk_menu_paint): Refactored code to calculate the border sizes needed
985         for the scroll arrows into get_arrows_border and the code to calculate 
986         the visible area into get_arrows_visible_area.
987         (gtk_menu_handle_scrolling): Refactored arrow sensitive calculations
988         to get_arrows_sensitive_area.
989         (gtk_menu_realize, gtk_menu_size_allocate, gtk_menu_scroll_by,
990         gtk_menu_position, gtk_menu_scroll_to, gtk_menu_scroll_item_visible,
991         get_visible_size, get_menu_height, gtk_menu_real_move_scroll): Update
992         callers.  (From #436533, Tommi Komulainen)
993
994 2007-05-09  Kristian Rietveld  <kris@imendio.com>
995
996         * gtk/gtktreeview.c (gtk_tree_view_key_press),
997         (gtk_tree_view_key_release):
998         * gtk/gtkiconview.c (gtk_icon_view_class_init),
999         (gtk_icon_view_key_press),
1000         (gtk_icon_view_key_release): Disable key bindings during rubber
1001         banding, make pressing Esc stop rubber banding.  (#405027).
1002
1003 2007-05-09  Emmanuele Bassi  <ebassi@gnome.org>
1004
1005         * gtk/gtkrecentmanager.c:
1006         (gtk_recent_info_get_icon): Return GTK_STOCK_DIRECTORY for entries
1007         with MIME type "x-directory/normal", instead of GTK_STOCK_FILE.
1008
1009 2007-05-05  Richard Hult  <richard@imendio.com>
1010
1011         * gdk/quartz/gdkdrawable-quartz.c:
1012         (gdk_quartz_drawable_get_context),
1013         (gdk_quartz_drawable_release_context): Fix bugs #428733 and #433301.
1014         Turns out the lockFocus logic was flawed, now we only lock/unlock 
1015         when called outside a real expose event and never flush manually.
1016
1017 2007-05-03  Behdad Esfahbod  <behdad@gnome.org>
1018
1019         * gtk/gtklabel.c (gtk_label_ensure_layout):
1020         * gtk/gtktextlayout.c (set_para_values): Make GTK_JUSTIFY_FILL work,
1021         using pango_layout_set_justify() that works now. (#435675)
1022
1023 2007-05-03  Emmanuele Bassi  <ebassi@gnome.org>
1024
1025         * gtk/gtksearchenginesimple.c (search_engine_simple_finalize): Remove
1026         spurious g_free() call.
1027
1028 Thu May  3 16:27:34 2007  Tim Janik  <timj@imendio.com>
1029
1030         * tests/testgtk.c (create_handle_box): made handle box test non-modal,
1031         so other test can interact with handle boxes.
1032
1033 2007-05-02  Emmanuele Bassi  <ebassi@gnome.org>
1034
1035         Add search file support in the GtkFileChooser. Original patch
1036         by Federico Mena Quintero; patch updated by Matthias Clasen.
1037         See bug #344785.
1038
1039         * gtk/gtksearchengine.[ch]: Private search engine abstraction
1040         object.
1041
1042         * gtk/gtksearchenginebeagle.[ch]: Private search engine
1043         implementation using libbeagle (via g_module_open()).
1044
1045         * gtk/gtksearchenginesimple.[ch]: Private search engine
1046         implementation using file tree walking.
1047
1048         * gtk/gtksearchenginetracker.[ch]: Private earch engine
1049         implementation using libtracker (via g_module_open()).
1050
1051         * gtk/gtkquery.[ch]: Private query object for the search
1052         engines.
1053
1054         * gtk/gtkfilechooserprivate.h:
1055         * gtk/gtkfilechooserdefault.c: Use the GtkSearchEngine to
1056         query a search engine backend using GtkQuery; create a new
1057         operating mode, OPERATION_MODE_SEARCH, and call the common
1058         operating mode OPERATION_MODE_BROWSE; add support for virtual
1059         shortcuts inside the shortcuts model and create a new "Search"
1060         virtual shortcut.
1061
1062         * gtk/Makefile.am: Update the build with the new files
1063
1064 2007-05-02  Armin Burgmeier  <armin@openismus.com>
1065
1066         * gtk/gtkcombobox.c: Destroy the menu in dispose instead of
1067         finalize, because the menu might unparent itself from its parent and
1068         cause a signal emission on a finalized object. (#430746)
1069
1070 2007-05-02  Dom Lachowicz <domlachowicz@gmail.com>
1071
1072         * modules/engines/ms-windows/msw_style.c: MS-Windows Theme top tabs 
1073         rendered upside down for non-XP theme (#435053, Daniel Atallah)
1074
1075 Wed May  2 11:35:45 2007  Tim Janik  <timj@imendio.com>
1076
1077         * docs/faq/gtkfaq.sgml: removed, since this file is long outdated
1078         and fully replaced by docs/faq/gtk-faq.sgml.
1079
1080 2007-05-02  Kristian Rietveld  <kris@imendio.com>
1081
1082         * gtk/gtktreeview.c (gtk_tree_view_grab_notify): stop the rubber band
1083         if it's active.
1084
1085 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1086
1087         * gtk/gtkiconcachevalidator.c: Don't be too strict when checking
1088         icon flags.  (#435062)
1089
1090 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1091         
1092         * gtk/Makefile.am: When generating gtkbuiltincache.h, only copy
1093         pngs.
1094
1095 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1096
1097         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_path_do):
1098         Don't ignore the fact that gtk_file_system_get_parent() 
1099         may return NULL.  (#424042, Jan Martinek)
1100
1101 2007-05-01  Dan Winship  <danw@novell.com>
1102
1103         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window): Make sure the
1104         leader_window's WM_CLIENT_LEADER points to itself. #435028
1105
1106 2007-05-02  Christian Persch  <chpe@gnome.org>
1107
1108         * gtk/gtktreemodel.c: (gtk_tree_iter_copy), (gtk_tree_iter_free): Use
1109         GSlice for gtk_tree_iter_copy. Bug #434863.
1110
1111 2007-05-02  Christian Persch  <chpe@gnome.org>
1112
1113         * gtk/gtkpapersize.c: (gtk_paper_size_get_paper_sizes): Put only
1114         GtkPaperSizes into the list, don't mix it with GtkPageSetups. Bug
1115         #434861.
1116
1117 2007-05-02  Christian Persch  <chpe@gnome.org>
1118
1119         * gtk/gtkpapersize.c: (gtk_paper_size_new_from_info),
1120         (gtk_paper_size_new), (gtk_paper_size_new_custom),
1121         (gtk_paper_size_copy), (gtk_paper_size_free): Use GSlice to allocate
1122         GtkPaperSize. Bug #434862.
1123
1124 2007-05-02  Christian Persch  <chpe@gnome.org>
1125
1126         * gtk/gtkstatusbar.c: (gtk_statusbar_get_context_id),
1127         (gtk_statusbar_expose_event): No need to allocate a guint; just stuff
1128         the ID into the pointer directly. Bug #434865.
1129
1130 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1131
1132         * gtk/gtkfilechooserdefault.c (struct UpdateCurrentFolderData),
1133         (update_current_folder_get_info_cb): add a new struct field to clear
1134         the file entry after the current folder has been updated.
1135
1136         (gtk_file_chooser_default_update_current_folder),
1137         (change_folder_and_display_error): Add a new function parameter to
1138         trigger file entry clearing.
1139
1140         (edited_idle_create_folder_cb),
1141         (file_list_drag_data_received_get_info_cb),
1142         (gtk_file_chooser_default_map),
1143         (gtk_file_chooser_default_set_current_folder),
1144         (switch_to_selected_folder), (save_entry_get_info_cb),
1145         (shortcuts_activate_volume_mount_cb), (shortcuts_activate_volume),
1146         (shortcuts_activate_get_info_cb), (list_row_activated),
1147         (path_bar_clicked): use new function parameter appropriately.
1148
1149         (gtk_file_chooser_default_should_respond): trigger file entry clearing
1150         after the directory is updated instead of clearing it before, this way 
1151         we avoid reloading the completion model with the soon to be old folder, 
1152         causing a warning and a glitch in the folder where completion happens. 
1153         (#379414, Carlos Garnacho)
1154
1155 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1156
1157         * gtk/gtkiconcachevalidator.[hc]: Add an icon cache validator.
1158
1159         * gtk/updateiconcache.c: Validate the generated cache before
1160         moving it in place. Also add a --validate option to validate
1161         an existing icon cache.
1162
1163         * gtk/gtkiconcache.c: Validate icon caches before using them.
1164
1165         * gtk/Makefile.am: Integrate it.
1166
1167 2007-05-01  Michael Emmel  <mike.emmel@gmail.com>
1168
1169         * gdk/directfb/gdkdisplay-directfb.c:
1170         Added stub gdk_notify_startup_complete_with_id to compile
1171         * gdk/directfb/gdkwindow-directfb.c:
1172         Added gdk_window_set_opacity
1173         * gdk/directfb/gdkkeys-directfb.c:
1174         Fix menu key handling crash Bug #413328
1175
1176 2007-05-01  Christian Persch  <chpe@gnome.org>
1177
1178         * gtk/gtkprinter.h:
1179         * gtk/gtkprintjob.h: Also move gtk_print_capabilities_get_type() to
1180         the new location. Bug #390437.
1181
1182 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1183
1184         * gtk/gtksettings.c (settings_update_color_scheme):
1185         Make sure we always have a color_hash.  (#423916, Jens Granseuer)
1186
1187 2007-04-30  Christian Persch  <chpe@gnome.org>
1188
1189         * docs/reference/gtk/gtk-sections.txt:
1190         * gtk/gtk.symbols:
1191         * gtk/gtkprinter-private.h:
1192         * gtk/gtkprinter.c: (gtk_printer_get_capabilities),
1193         (gtk_print_capabilities_get_type):
1194         * gtk/gtkprinter.h:
1195         * gtk/gtkprintjob.c:
1196         * gtk/gtkprintjob.h:
1197         * gtk/gtkprintunixdialog.c: (selected_printer_changed):
1198         Make gtk_printer_get_capabilities public, and move the
1199         GtkPrintCapabilities definition to gtkprinter.h. Bug #390437.
1200
1201 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1202
1203         * gtk/gtkexpander.c (gtk_expander_realize): A NO_WINDOW widget
1204         must not set the background of its window.  (#433972,
1205         Guilherme Polo)
1206
1207 2007-04-30  Richard Hult  <richard@imendio.com>
1208
1209         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_set_opacity):
1210         Implement.
1211
1212 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1213
1214         * modules/printbackends/cups/gtkprintbackendcups.c: Get all
1215         the printer attributes when getting the list of printers,
1216         not via separate requests.  (#387889, Krishan Purahoo)
1217
1218 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1219
1220         Some more compiler warning fixes.
1221
1222         * gdk/directfb/gdkscreen-directfb.c (gdk_screen_is_composited):
1223         Fix NULL/FALSE confusion.
1224
1225 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1226
1227         Fix some compiler warnings.  (#433642, Kjartan Maraas)
1228
1229         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_get_info):
1230         (gtk_file_system_win32_create_folder):
1231         * gtk/gtkaction.c (gtk_action_create_menu): Fix NULL/FALSE confusion.  
1232
1233         * gtk/gtklinkbutton.c (gtk_link_button_clicked): Pass
1234         the right type to uri_func.  
1235         
1236         * gtk/gtktext.c (gtk_text_key_press):
1237         * gtk/gtkstatusicon.c (gtk_status_icon_get_property): 
1238         * gtk/gtkxembed.c (_gtk_xembed_send_message): Add casts.
1239
1240         * gtk/gtktrayicon-x11.c (gtk_tray_icon_manager_window_destroyed): 
1241         (gtk_tray_icon_delete):
1242         * gtk/gtkprintunixdialog.c (create_main_page):
1243         * gtk/gtkhsv.c (gtk_hsv_motion): Remove unused variables.
1244
1245         * gtk/gtkliststore.c: Adapt callbacks to GSequence types.
1246
1247 2007-04-30  Cody Russell  <bratsche@gnome.org>
1248
1249         * gdk/win32/gdkwindow-win32.c: Reintroduced erase_background(),
1250         but now we're calling it from _gdk_windowing_window_clear_area()
1251         instead of from the WM_ERASEBKGND event.  Also fixes the area
1252         that is cleared so that it is not an extra row and column too
1253         large.  (Neil Roberts, #415681)
1254
1255 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1256
1257         * gtk/gtktextview.c: Allow indents to be negative.  (#Bug 434308)
1258
1259 2007-04-30  Michael Natterer  <mitch@imendio.com>
1260
1261         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): pop up the
1262         submenu explicitely only in touchscreen mode since otherwise
1263         selecting the item already pops up the submenu. Restores the
1264         drag-selection timeout (spotted by Søren Sandmann, #128968).
1265
1266 2007-04-30  Michael Natterer  <mitch@imendio.com>
1267
1268         * gtk/gtkpapersize.h: really rename gtk_paper_size_get_builtins()
1269         to gtk_paper_size_get_paper_sizes().
1270
1271 2007-04-30  Tor Lillqvist  <tml@novell.com>
1272
1273         * gtk/gtkpapersize.c (gtk_paper_size_get_paper_sizes):
1274         _gtk_load_custom_papers() exists only on Unix.
1275
1276 2007-04-30  Tor Lillqvist  <tml@novell.com>
1277
1278         Add functionality to set overall opacity of a top-level
1279         window. (#405316)
1280
1281         * gdk/gdk.symbols: Add gdk_window_set_opacity.
1282
1283         * gdk/x11/gdkwindow-x11.c
1284         * gdk/win32/gdkwindow-win32.c: Implement
1285         gdk_window_set_opacity(). On X11 use the _NET_WM_WINDOW_OPACITY
1286         property. On Win32 use SetLayeredWindowAttributes(LWA_ALPHA).
1287
1288         * gdk/gdkwindow.h: Declare gdk_window_set_opacity().
1289
1290         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_rgba_colormap): Document
1291         that this is not implemented in the Windows backend. Add reference
1292         to gdk_window_set_opacity().
1293
1294         * gtk/gtk.symbols: Add gtk_window_set_opacity and
1295         gtk_window_get_opacity.
1296
1297         * gtk/gtkwindow.c (struct _GtkWindowPrivate)
1298         (gtk_window_class_init): Add opacity property, a double in the
1299         range [0, 1].
1300         (gtk_window_set_opacity, gtk_window_get_opacity): Implement.
1301         (gtk_window_realize): If opacity is set, call
1302         gdk_window_set_opacity().
1303
1304         * gtk/gtkwindow.h: Declare gtk_window_set_opacity() and
1305         gtk_window_get_opacity().
1306
1307 2007-04-30  Matthias Clasen <mclasen@redhat.com>
1308
1309         * gtk/gtk.symbols:
1310         * gtk/gtkpapersize.[hc]: Rename gtk_paper_size_get_builtins()
1311         to gtk_paper_size_get_paper_sizes() and optionally include
1312         custom paper sizes.
1313
1314         * gtk/gtkpagesetupunixdialog.c: Internally export a function
1315         to load custom paper sizes.
1316
1317         * modules/printbackends/file/gtkprintbackendfile.c: Implement
1318         printer_list_papers, returning all paper sizes.  (#434329,
1319         Christian Persch)
1320
1321 2007-04-30  Matthias Clasen <mclasen@redhat.com>
1322         
1323         * gtk/gtkprintoperation.c: Translate the default job
1324         name, and don't utf8-validate the job name in the
1325         setter.  (#421993, Morten Welinder)
1326
1327 2007-04-30  Matthias Clasen <mclasen@redhat.com>
1328
1329         * gtk/gtkprintjob.c (gtk_print_job_get_surface): Use
1330         g_unlink.  (#421990, Morten Welinder)
1331
1332 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1333
1334         Fix some issues with reference handling in the printing
1335         code.  (#429902, Mathias Hasselmann)
1336
1337         * gtk/gtkprintoperation.c (gtk_print_operation_finalize):
1338         Unref the print context, if we have one.
1339         (gtk_print_operation_done): Add a default ::done handler 
1340         that unrefs the print context.
1341         (preview_ready): Take a reference on the print operation
1342         preview here.
1343         (print_pages_idle): ...not here,
1344         (preview_print_idle_done): ...and release it here.
1345
1346         * tests/print-editor.c (preview_cb): Take a reference
1347         on the print operation here.
1348
1349 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1350
1351         * gtk/gtkprintoperation.c (print_pages_idle): Don't get
1352         stuck in a recursive mainloop if a synchronous preview
1353         is cancelled.
1354
1355 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1356
1357         Make the emission of ::end-print and ::done consistent
1358         for previews.  (#347567, Yevgen Muntyan)
1359
1360         * gtk/gtkprintoperation.c (preview_iface_end_preview): Set
1361         the finished status here.
1362         (preview_end_run): ...and not here.
1363         (print_pages_idle_done): Emit ::done for a cancelled preview.
1364         (print_pages_idle): If a preview has been cancelled, don't
1365         emit ::ready, but emit ::end-print. 
1366
1367         * tests/print-editor.c: Use ::end-print to undo allocations
1368         from ::begin-print.
1369
1370 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1371
1372         * gtk/gtkpapersize.c (gtk_paper_size_new): Mark paper sizes
1373         in the PWG "custom" namespace as custom. Add a link to 
1374         the spec in the docs.  (#426416, Andreas Guelzow)
1375
1376 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1377
1378         * gtk/gtkprintoperation.c (gtk_print_operation_run): Document
1379         that a print operation can be run only once, and add a 
1380         corresponding g_return_if_fail().   (#379399, Masao Mutoh)
1381
1382 2007-04-29  Dan Winship  <danw@novell.com>
1383
1384         * gdk/x11/gdkdisplay-x11.c
1385         (gdk_x11_display_broadcast_startup_message): New method to
1386         marshall and send a Startup Notification message. (from #415070)
1387         (gdk_notify_startup_complete_with_id): Use that
1388
1389 2007-04-29  Mattthias Clasen  <mclasen@redhat.com>
1390
1391         * gtk/gtkprintoperation-unix.c 
1392         (_gtk_print_operation_platform_backend_launch_preview):
1393         Don't leak a file descriptor, and don't make the error
1394         dialog modal.  (#421985, Morten Welinder, Christian Persch)
1395
1396 2007-04-29  Xan Lopez  <xan@gnome.org>
1397
1398         * docs/faq/gtk-faq.sgml: Fix typo in FAQ (#373706,
1399         Diego Escalante Urrelo).
1400
1401         I'm fixing gtk-faq.sgml as it seems this is the file
1402         we actually use...
1403
1404 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1405
1406         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): 
1407         Only strip parentheses of the form (_x).  (#434261,
1408         Brian Wellington)
1409
1410 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1411
1412         * gtk/gtkprintoperation-unix.c
1413         (_gtk_print_operation_platform_backend_launch_preview):
1414         Support passing a print settings file to the preview 
1415         command.  (#403717, Christian Persch)
1416
1417         * gtk/gtksettings.c: Document %s in the 
1418         gtk-print-preview-command setting.
1419
1420 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1421
1422         * gtk/gtkprintoperation.c (print_pages_idle): Also check
1423         the default handler when deciding whether to emit the
1424         paginate signal.  (#345345, Yevgen Muntyan)
1425
1426 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1427
1428         * gtk/gtkprintoperation.h: Add a new error code
1429
1430         * gtk/gtk.symbols:
1431         * gtk/gtkpagesetup.[hc]:
1432         * gtk/gtkpapersize.[hc]:
1433         * gtk/gtkprintsettings.[hc]: Add functions to serialize 
1434         and deserialize page setups and print settings to files 
1435         and key files.  (#344515, Christian Persch)
1436
1437         * gtk/gtkpagesetupunixdialog.c: Adapt to the new functions.
1438
1439         * tests/print-editor.c: Use the new functions to persist 
1440         page setup and print settings.
1441
1442 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1443
1444         * gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_finalize):
1445         Free the custom paper list.  (#403267, Felix Riemann)
1446
1447 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1448
1449         * gtk/gtkprintjob.c (gtk_print_job_get_surface): Fix a 
1450         small memory leak.  (#403251, Felix Riemann)
1451
1452 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1453
1454         * modules/printbackends/cups/gtkprintbackendcups.c: Fix a
1455         typo. String change !  (#406160, Stephane Raimbault)
1456
1457 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1458
1459         * gtk/gtk.symbols:
1460         * gtk/gtkpapersize.[hc]: Add a function to list the
1461         builtin paper sizes.  (#382355, Christian Persch)
1462
1463 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1464
1465         * gtk/gtk.symbols:
1466         * gtk/gtkprinter-private.h:
1467         * gtk/gtkprinter.[hc]: Make gtk_printer_has_details() and
1468         gtk_printer_request_details() public.
1469
1470         * gtk/gtkpagesetupunixdialog.c:
1471         * gtk/gtkprintunixdialog.c: Update callers.  (#389203, 
1472         Christian Persch)
1473
1474 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1475
1476         * configure.in: Add --enable-test-print-backend, defaulting
1477         to no.
1478
1479         * modules/printbackends/Makefile.am: Make building the test
1480         print backend conditional.
1481
1482 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1483
1484         * modules/printbackends/lpr/*:
1485         * modules/printbackends/cups/*: Correct some copyright lines.
1486
1487         * configure.in:
1488         * modules/printbackends/Makefile.am:
1489         * modules/printbackends/test/*: Add a test print backend.
1490         (#409089, John Palmieri)
1491
1492 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1493
1494         * gtk/gtktexttag.[hc]: Add a way to specify accumulative
1495         margins.  (#344499, Nate Nielsen)
1496
1497 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1498
1499         * gtk/gtkeventbox.c (gtk_event_box_realize): Fix the offsets
1500         of the input-only window if we also have a visible window. 
1501         (#405089)
1502
1503 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1504
1505         * gtk/gtkliststore.c (gtk_list_store_set_valist_internal):
1506         * gtk/gtktreestore.c (gtk_tree_store_set_valist_internal):
1507         Recognize negative column indices as invalid.  (#415260,
1508         Chris Wilson)
1509
1510 2007-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1511
1512         * gdk/quartz/gdkeventloop-quartz.c: (select_thread_func),
1513         (poll_func): fix two more potential races that could happen when
1514         an application is polling in the mainloop and a separate thread
1515         tries to wake it up using g_idle_add(). Fixes #425271 comment 5.
1516
1517 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1518
1519         * gtk/gtkentry.c (gtk_entry_grab_focus): 
1520         (gtk_entry_real_insert_text): Only call g_object_get() 
1521         when necessary.  (#373137, Morten Welinder, patch by Xan Lopez)
1522
1523 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1524
1525         * gtk/gtkstatusicon.c (gtk_status_icon_get_size): Add
1526         a note about being embedded.  (#340107, Christian Persch)
1527
1528 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1529
1530         * gtk/gtkdnd.[hc]: Add GTK_TARGET_OTHER_{APP,WIDGET} to
1531         restrict drags within an application/widget.  (#163141, 
1532         Jorn Baayen)
1533
1534 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1535
1536         * docs/tools/Makefile.am:
1537         * gtk/Makefile.am: Make make clean clean.  (#410160, Tommi
1538         Komulainen)
1539
1540 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1541
1542         * gdk/win32/bdfcursor.c (compose_cursors_from_fonts):
1543         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_reorder): 
1544         * gtk/gtkfilesystemmodel.c (got_root_folder_cb):
1545         (get_children_folder_cb): Plug memory leaks caused by wrong 
1546         use of g_slist_remove_link().  (#405515, Nicolas Peninguy)
1547
1548 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1549         
1550         * demos/gtk-demo/printing.c: Fix the headers in the print
1551         demo.  (#423722, Yevgen Muntyan)
1552
1553 2007-04-28  Xan Lopez  <xan@gnome.org>
1554
1555         * gtk/gtkentrycompletion.c (gtk_entry_completion_insert_completion_text): 
1556         Use strstr instead of g_strstr with -1 for length.
1557
1558 2007-04-28  Xan Lopez  <xan@gnome.org>
1559
1560         * gtk/gtkentry.c:
1561         * gtk/gtkentrycompletion.c:
1562         * gtk/gtkentrycompletion.h:
1563         * gtk/gtkentryprivate.h:
1564
1565         Remember the user input that triggered the completion, add
1566         API to the retrieve it and reset the entry contents to it
1567         if the user cancels the tentative completion during
1568         the inline-selection.
1569         
1570 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
1571
1572         * gdk/x11/gdkgeometry-x11.c: Factor out window movement
1573         functions. (#63820, Tilman Sauerbeck)
1574
1575 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
1576
1577         * gdk/x11/gdkgeometry-x11.c: Factor out translate_pos().
1578         (#63820, Tilman Sauerbeck)
1579
1580 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
1581
1582         * gdk/x11/gdkgeometry-x11.c: Factor out window mapping
1583         and unmapping functions.  (#63820, Tilman Sauerbeck)
1584
1585 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
1586
1587         * gdk/x11/gdkgeometry-x11.c: Make list handling code
1588         easier to read.  (#63820, Tilman Sauerbeck)
1589
1590 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
1591
1592         * gtkassistant.c:
1593         * gtkiconfactory.c:
1594         * gtkiconview.c:
1595         * gtkpapersize.c:
1596         * gtkrecentmanager.c:
1597         * gtktextiter.c: Internalize some strings, pointed out
1598         by Damon Chaplin.
1599
1600 2007-04-27  Xan Lopez  <xan@gnome.org>
1601
1602         Support inline-selection in entries (#318459)
1603         
1604         * gtk/gtkentry.c:
1605         * gtk/gtkentrycompletion.c:
1606         * gtk/gtkentrycompletion.h:
1607         * gtk/gtkentryprivate.h:
1608
1609         When enabled cursor-match is emited when the cursor is on
1610         a possible completion on the list. The default implementation
1611         will replace the contents on the entry with the contents of
1612         the text column in the completion model.
1613
1614         Review and improvements by Matthias Clasen.
1615
1616 2007-04-27  Michael Natterer  <mitch@imendio.com>
1617
1618         Merged heavily modified patch from maemo-gtk which enables opening
1619         and closing submenus on click, and introduces some usability
1620         changes when gtk-touchscreen-mode is enabled (bug #128968):
1621
1622         * gtk/gtkmenushell.c (struct GtkMenuShellPrivate): added boolean
1623         "activated_submenu" to indicate that the current mouse operation
1624         (click or drag) has opened a submenu.
1625
1626         (gtk_menu_shell_button_press): pop up submenus without delay
1627         and record the fact in "activated_submenu".
1628
1629         (gtk_menu_shell_button_release): if a submenu was explicitely
1630         opened, or not opened by this release's button_press, or enough
1631         time has passed since timeout-opening it, close the submenu here.
1632
1633         (gtk_menu_shell_enter_notify): when entering a menu item with
1634         any mouse button pressed, open its submenu.
1635
1636         (gtk_real_menu_shell_move_current): in touchsreen mode, close the
1637         submenu when moving the focus away from it via keyboard-navigation.
1638
1639         * gtk/gtkmenuitem.[ch] (_gtk_menu_item_popup_submenu): added
1640         parameter "gboolean with_delay" so GtkMenuShell can control this
1641         for the different scenarios of submenu showing.
1642
1643         (_gtk_menu_item_popdown_submenu): new function. also needed by
1644         GtkMenuShell for closing submenus on click.
1645
1646         Renamed internal function gtk_menu_item_select_timeout() to
1647         gtk_menu_item_popup_timeout().
1648
1649         (gtk_menu_item_real_popup_submenu): new utility function which
1650         does the actual popup and records the exact time of the popup when
1651         the menu was timeout-opened (using g_get_current_time()).
1652
1653         (gtk_real_menu_item_select): don't add the popup timeout when in
1654         touchscreen mode.
1655
1656         * gtk/gtkmenu.c (gtk_menu_popup): in touchscreen mode, select the
1657         first item of every opened menu.
1658
1659 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
1660
1661         * gtk/gtkfilechooserentry.c: Append a '/' to directory names
1662         in the completion popup.  (#431323, Maarten Maathuis)
1663
1664 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
1665
1666         * demo/gtk-demo/combobox.c: Add a simple validation demo. 
1667         * gtk/gtkcomboboxentry.c: Make it possible to add arbitrary
1668         children to a GtkComboBoxEntry.  (#426401, Paul Pogonyshev)
1669
1670 2007-04-26  Tor Lillqvist  <tml@novell.com>
1671
1672         * gtk/gtkinputdialog.c (gtk_input_dialog_fill_axes)
1673         (gtk_input_dialog_fill_keys): Remove old child of scrolled window
1674         before adding a new one when switching what input device is being
1675         handled. (#399425)
1676
1677 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
1678
1679         * modules/printbackends/lpr/gtkprintbackendlpr.c
1680         (gtk_print_backend_lpr_init): Mark the printer list as done. 
1681         (#428665, Bogdan Gheorghe)
1682
1683 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
1684
1685         * Makefile.am:
1686         * gtk/Makefile.am: Don't install UNIX-printing headers and
1687         support files on non-UNIX platforms.  (#425655, Vincent Geddes)
1688
1689 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
1690
1691         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Accept
1692         unnamed separators.  (#369112, Christian Persch)
1693
1694 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
1695
1696         * gtk/gtkaccelgroup.c (gtk_accel_group_finalize): Don't access
1697         invalid memory.  (#429732, Armin Burgmeier)
1698
1699 2007-04-26  Cody Russell  <bratsche@gnome.org>
1700
1701         * gdk/win32/xcursors.h:
1702         * gdk/win32/gdkcursor-win32.c:
1703
1704         Use Win32 native cursors instead of the ones built into GTK
1705         where it makes sense. (#128852, Tim Evans)
1706
1707 2007-04-25  Cody Russell  <bratsche@gnome.org>
1708
1709         * gdk/gdkwindow.h:
1710         * gtk/gtkwidget.c:
1711         * gtk/gtkhandlebox.c:
1712         * gdk/directfb/gdkwindow-directfb.c:
1713         * gdk/linux-fb/gdkwindow-fb.c:
1714         * gdk/quartz/gdkwindow-quartz.c:
1715         * gdk/win32/gdkwindow-win32.c:
1716         * gdk/x11/gdkwindow-x11.c:
1717         Added window type hint and implement drop shadows on Win32
1718         for menus, tooltips, etc. (#148535, Tim Evans, Dom Lachowicz)
1719
1720 2007-04-25  Jakub Steiner <jimmac@ximian.com>
1721
1722         * gtk/stock-icons/16/gtk-close.{png,svg}: added 16x16 version of
1723                 gtk-close as per discussion in bug #431740.
1724
1725 2007-04-25  Matthias Clasen  <mclasen@redhat.com>
1726
1727         * gtk/gtktreeview.c (gtk_tree_view_style_set): Set the background
1728         of the header window again.  (#431067, Benjamin Berg)
1729
1730 2007-04-25  Matthias Clasen  <mclasen@redhat.com>
1731
1732         * gtk/gtkicontheme.c (theme_lookup_icon): Set the filename to
1733         NULL for builtin icons, sinc gtk_icon_info_get_builtin_pixbuf()
1734         depends on it. 
1735
1736         * tests/testicontheme.c: Report builtin icons.
1737
1738 2007-04-25  Matthias Clasen  <mclasen@redhat.com>
1739
1740         * gtk/gtkprintoperation.c (preview_iface_end_preview): Don't 
1741         crash if end_run is not set.  (#424168, Matthias Hasselmann)
1742
1743 2007-04-25  Michael Natterer  <mitch@imendio.com>
1744
1745         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): fix ACTIVE state of
1746         scroll buttons (we were setting the state to ACTIVE but
1747         immediately overwriting it with NORMAL or PRELIGHT). Also got rid
1748         of many separate calls to gdk_window_invalidate_rect() by
1749         remembering the old button state and only invalidating the area if
1750         the state has changed (addresses parts of bug #433242, Tommi
1751         Komulainen).
1752
1753         (gtk_menu_scroll_to): change the arrow states only if changing
1754         from or to INSENSITIVE state, so we don't overwrite the ACTIVE
1755         state set by above function.
1756
1757 2007-04-25  Michael Natterer  <mitch@imendio.com>
1758
1759         * gtk/gtkprintoperation.c (preview_iface_is_selected): fix the
1760         build. Dunno if the fix is right, but I think it is.
1761
1762 2007-04-25  Kristian Rietveld  <kris@imendio.com>
1763
1764         * gtk/gtktooltip.c (find_topmost_widget_coords_from_event):
1765         cleanup/refactor some leftover code.
1766
1767 2007-04-24  Matthias Clasen  <mclasen@redhat.com>
1768
1769         * gtk/gtkprintunixdialog.c (dialog_get_page_ranges): Parse
1770         half-open ranges like -2 or 3-, and be a bit more liberal
1771         about whitespace.
1772         (dialog_set_page_ranges): Support half-open ranges.
1773
1774         * gtk/gtkprintoperation.c (print_pages_idle): Substitute the
1775         number of pages in half-open ranges.
1776         (preview_iface_is_selected): Support half-open ranges here, too.
1777
1778 2007-04-24  Chris Wilson  <chris@chris-wilson.co.uk>
1779
1780         * gtk/gtkicontheme.c (scan_directory): Ensure the 
1781         icon_theme->all_icons and dir->icons hash tables use the same string
1782         as their keys. (#418531)
1783
1784 2007-04-23  Cody Russell  <bratsche@gnome.org>
1785         * modules/engines/ms-windows/msw_style.c: Fixed one-pixel drawing error on
1786         left-most tab when notebooks are top-oriented.  Also general cleanup of
1787         notebook tab related code.  (Lieven van der Heide, Cody Russell)
1788
1789 2007-04-23  Matthias Clasen  <mclasen@redhat.com>
1790
1791         * modules/printbackends/cups/gtkprintbackendcups.c: Reduce
1792         the amount of debug spew if we are not debugging.
1793         
1794 2007-04-23  Michael Natterer  <mitch@imendio.com>
1795
1796         * tests/Makefile.am (testtooltips_SOURCES): fix typo:
1797         testtoooltips_SOURCES -> testtooltips_SOURCES.
1798
1799 2007-04-19  Cody Russell <bratsche@gnome.org>
1800
1801         * modules/engines/ms-windows/msw_style.c: Fix menuitem rendering
1802         for Windows Vista.  (#392015, Hiroyuki Yamamoto)
1803
1804 2007-04-19  Dominic Lachowicz <domlachowicz@gmail.com>
1805
1806         * modules/engines/ms-windows/msw_style.c: Fix pixbuf leaks in
1807         non-WinXP rendering paths. From Daniel Atallah (#403470)
1808         
1809 2007-04-19  Matthias Clasen  <mclasen@redhat.com>
1810
1811         * gtk/gtkicontheme.h:
1812         * gtk/gtkicontheme.c: Add GTK_ICON_LOOKUP_GENERIC_FALLBACK
1813         icon lookup flag and implement it.  (#396901, Luca Ferreti)
1814         
1815 2007-04-18  Richard Hult  <richard@imendio.com>
1816
1817         * gdk/quartz/gdkwindow-quartz.c:
1818         (gdk_window_quartz_process_updates_internal),
1819         (gdk_window_quartz_process_all_updates),
1820         (gdk_window_impl_quartz_process_updates): Refactor the process 
1821         updates functions to share code between them. Also fixes bug 
1822         #427660 by not updating larger regions than necessary.
1823
1824 2007-04-18  Matthias Clasen  <mclasen@redhat.com>
1825
1826         * gdk/gdkregion-generic.h (GROWREGION): Handle the case
1827         of nRects == 0 correctly.  
1828         
1829 2007-04-18  Emmanuele Bassi  <ebassi@gnome.org>
1830
1831         * gtk/gtkrecentmanager.c (gtk_recent_manager_lookup_item): Fix
1832         a leak by not increasing the refcount of the GtkRecentInfo
1833         object when returning it (thanks to Matthias Clasen).
1834
1835 2007-04-16  Alexander Larsson  <alexl@redhat.com>
1836
1837         * gtk/gtkprintoperation.c (gtk_print_operation_run):
1838         Make async print preview work by actually starting
1839         the print process in that case (#424168)
1840
1841 2007-04-14  Yevgen Muntyan <muntyan@tamu.edu>
1842
1843         * gtk/gtkselection.c (selection_get_text_plain): fixed
1844         wrong g_convert_with_fallback() call which caused
1845         gtk_selection_data_get_text() return invalid UTF-8 for
1846         non-ASCII text in text/plain selection (#382824).
1847
1848 2007-04-12  Jakub Steiner <jimmac@ximian.com>
1849
1850         * gtk/stock-icons/*: update the stock icons to follow the Tango
1851                 style guidelines
1852
1853 2007-04-11  Chris Wilson  <chris@chris-wilson.co.uk>
1854
1855         * gtk/gtkiconfactory.c (_gtk_icon_factory_list_ids):
1856         * gtk/gtkstock.c (gtk_stock_list_ids):
1857             Switch over to use glib's new g_hash_table_get_keys() rather
1858             than our own static implementation.
1859
1860         * gtk/gtkiconfactory.h: Update to return a GList.
1861
1862         * configure.in: Bump required version to 2.13.1
1863
1864 2007-04-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1865
1866         * gdk/quartz/gdkeventloop-quartz.c: Protect the polling thread
1867           setup and shutdown function by mutexes and read the wakeup
1868           pipe unconditionally and unblocking. This should make the main
1869           loop always be woken up when using g_idle_add() from another
1870           thread in the Quartz backend (#425271).
1871
1872 2007-04-10  Matthias Clasen  <mclasen@redhat.com>
1873
1874         * gdk/x11/xsettings-client.[hc]: Change the XSettingsWatchFunc
1875         to return a Bool to indicate success. Update callers and 
1876         implementors. Based on a patch by Owen Taylor.
1877         
1878         * gdk/x11/gdkevents-x11.c (gdk_xsettings_watch_cb): Don't
1879         leak a reference to gdkwin.
1880
1881 2007-04-07  Xan Lopez  <xan@gnome.org>
1882
1883         * gtk/gtknotebook.c (gtk_notebook_class_init): 
1884         s/arrow-size/arrow-spacing in the arrow-spacing
1885         style property docs.
1886
1887 2007-04-06  Richard Hult  <richard@imendio.com>
1888
1889         * gdk/quartz/: Clean up namespaces to make the code more
1890         maintainable.
1891
1892         * gdk/quartz/gdkdrawable-quartz.c:
1893         * gdk/quartz/gdkgc-quartz.c: Fix bug #418384, alignment of tiled
1894         images, by setting the pattern phase for the CG pattern.
1895
1896 2007-04-04  Kristian Rietveld  <kris@imendio.com>
1897
1898         * gtk/gtktooltip.c (tooltip_browse_mode_expired),
1899         (gtk_tooltip_hide_tooltip), (tooltip_popup_timeout),
1900         (gtk_tooltip_start_delay): use new gdk_threads API.
1901
1902 2007-04-03  Behdad Esfahbod  <behdad@gnome.org>
1903
1904         * gtk/gtksettings.c (settings_update_font_options): Don't set
1905         metrics-hinting font option.  Rely on the default value which is
1906         on for all raster cairo surfaces. (#425985)
1907
1908 2007-04-03  Loïc Minier  <lool@dooz.org>
1909
1910         * gdk/x11/gdkscreen-x11.c: (check_xfree_xinerama): Revert to
1911         non-xinerama mode when XineramaQueryScreens returns NULL; patch from
1912         Simon McVittie; #425786.
1913
1914 2007-04-02  Michael Natterer  <mitch@imendio.com>
1915
1916         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): remove
1917         artifact from the time when type checking casts warned on NULL,
1918         some whitespace cleanup.
1919
1920 2007-04-01  Cody Russell  <bratsche@gnome.org>
1921
1922         * modules/engines/ms-windows/msw_style.c: Fix rendering of
1923         notebook tabs when they are bottom-oriented.  Fixes #399253.
1924
1925 2007-03-31  Elijah Newren  <newren gmail com>
1926
1927         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window,
1928           gdk_x11_window_set_user_time):
1929         Patch from Matthias to add support for the
1930         _NET_WM_USER_TIME_WINDOW EWMH protocol; see #354213.
1931
1932         WARNING: This patch will make metacity <= 2.18.0 freeze on
1933         workspace switch.  This is due to a weird problem that should only
1934         affect window managers using gdk in-process for decoration drawing
1935         and which make an unsafe assumption relating to doing so (i.e. it
1936         should only affect metacity).  Upgrade your version of metacity if
1937         you hit this bug.
1938
1939 2007-03-29  Michael Natterer  <mitch@imendio.com>
1940
1941         Don't close menus on clicks on their border area (bug #423761).
1942         (modified patch from maemo-gtk).
1943
1944         * gtk/gtkmenu.c (gtk_menu_button_press)
1945         (gtk_menu_button_release): bail out early if the click was on the
1946         menu's border (not on any item and not outside the window).
1947
1948         (pointer_in_menu_window): new utility function which checks if
1949         passed root coords are inside the menu_shell or one of its
1950         parent shells.
1951
1952 2007-03-29  Michael Natterer  <mitch@imendio.com>
1953
1954         * gtk/gtkmenu.c: get rid of local GtkSettings variables by moving
1955         gtk_widget_get_settings() into the g_object_get() call. Some small
1956         indentation fixes.
1957
1958 2007-03-28  Matthias Clasen  <mclasen@redhat.com>
1959
1960         * modules/printbackends/cups/gtkcupsutils.[hc]:
1961         * modules/printbackends/cups/gtkprintbackendcups.c: Apply
1962         a patch by John Palmieri to make the cups print backend support
1963         raw printers.  
1964
1965 2007-03-28  Kristian Rietveld  <kris@imendio.com>
1966
1967         * gtk/gtkwidget.c (gtk_widget_set_tooltip_window): don't unref
1968         tooltip_window, since this is handled by set_qdata_full() already.
1969         (#412001, Torsten Schoenfeld).
1970
1971 2007-03-27  Tor Lillqvist  <tml@novell.com>
1972
1973         * modules/input/Makefile.am: Use LDADDS for im-multipress.la, too: 
1974
1975 2007-03-26  Christian Persch  <chpe@gnome.org>
1976
1977         * gtk/gtkrc.c: (gtk_rc_context_get): Initialise variable. Bug #423064.
1978
1979 2007-03-24  Kristian Rietveld  <kris@gtk.org>
1980
1981         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
1982         calculate the depth with the corrected real_cell_area and don't
1983         subtract horizontal_separator/2.
1984
1985 2007-03-24  Andreas Nilsson <andreas@andreasn.se>
1986
1987         * gtk-yes.png
1988         * gtk-no: More Tango love.
1989
1990 2007-03-23  Jakub Steiner <jimmac@ximian.com>
1991
1992         * gtk-dialog-authentication.svg
1993         * gtk-dialog-error.svg
1994         * gtk-dialog-info.svg
1995         * gtk-dialog-question.svg
1996         * gtk-dialog-warning.svg: Start with a Tango face-lift.
1997
1998 2007-03-23  Rodney Dawes  <dobey@novell.com>
1999
2000         * gtk/gtkicontheme.c: Fix a couple of comment typos (#421627)
2001
2002 2007-03-23  Matthias Clasen  <mclasen@redhat.com>
2003
2004         * gtk/gtkfilechooserdefault.c: Add a keybinding (C-h) to
2005         toggle whether to show hidden files.  (#344657, 
2006         Wouter Bolsterlee, Priit Laes, et al)
2007
2008 2007-03-23  Matthias Clasen  <mclasen@redhat.com>
2009
2010         * gtk/gtkfilechooserdefault.c: Add a keybinding (C-l) to
2011         toggle the visibility of the location entry.  (#383354, 
2012         John Pye, patch by Carlos Garnacho)
2013
2014 2007-03-22  Matthias Clasen  <mclasen@redhat.com>
2015
2016         * gtk/gtksettings.c (merge_color_scheme): Freeze property
2017         notification.
2018         * gtk/gtksettings.c (_gtk_settings_handle_event): Handle
2019         the gtk-color-scheme xsetting being unset.
2020
2021         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): Handle
2022         recursion locally.
2023
2024 2007-03-21  Matthias Clasen  <mclasen@redhat.com>
2025
2026         * gtk/gtkprintoperation-unix.c: Remove leftover debug spew.
2027
2028 2007-03-21  Rodney Dawes  <dobey@novell.com>
2029
2030         * gtk/gtk.symbols:
2031         * gtk/gtkicontheme.[ch]:
2032         * docs/reference/gtk/gtk-sections.txt:
2033         * tests/testicontheme.c:
2034         Add a new API call gtk_icon_theme_list_contexts so that one can
2035         choose icons from a theme by context (#420719)
2036         
2037 2007-03-21  Ross Burton  <ross@burtonini.com>
2038
2039         * gtk/gtktexttag.c:
2040         Document the ::event signal (#420703).
2041
2042 2007-03-20  Kristian Rietveld  <kris@gtk.org>
2043
2044         * gtk/gtktreeviewcolumn.c:
2045         * gtk/gtktreeprivate.h: add _gtk_tree_view_column_get_focus_area().
2046
2047         * gtk/gtktreeview.c (gtk_tree_view_clamp_column_visible): add
2048         focus_to_cell parameter, rework to handle clamping columns which
2049         are bigger than the available page size better,
2050         (gtk_tree_view_key_press): remove code handling moving the focus
2051         to other column headers,
2052         (gtk_tree_view_header_focus): add clamp_column_visible parameter,
2053         fix RTL support, don't wrap around when moving focus to other
2054         column headers, call gtk_tree_view_clamp_column_visible() instead
2055         of duplicating code,
2056         (gtk_tree_view_focus): only clamp the column visible when we are
2057         explicitly moving to another column header (fixes #399555, Charles
2058         Kerr),
2059         (gtk_tree_view_move_cursor_left_right): update call to
2060         gtk_tree_view_clamp_column_visible().
2061
2062 2007-03-19  Matthias Clasen <mclasen@redhat.com> 
2063
2064         * demos/gtk-demo/appwindow.c: Explicitly set the title on the
2065         about dialog.
2066
2067 2007-03-18  Matthias Clasen <mclasen@redhat.com> 
2068
2069         * gtk/gtkentrycompletion.c (gtk_entry_completion_compute_prefix):
2070         Ensure that the prefix is valid UTF-8.  (#419568, Nickolay V. Shmyrev)
2071
2072 2007-03-18  Matthias Clasen <mclasen@redhat.com> 
2073
2074         * modules/input/gtkimcontextmultipress.[hc]:
2075         * modules/input/im-multipress.conf:
2076         * modules/input/immultipress.c:
2077         * modules/input/README.multipress: Add the multipress input
2078         method.  (#417446, Johannes Schmid, Murray Cumming)
2079
2080         * modules/input/Makefile.am: Glue
2081
2082 2007-03-17  Chris Wilson  <chris@chris-wilson.co.uk>
2083
2084         * gdk/x11/gdkvisual-x11.c (_gdk_visual_init):
2085         Initialise nxvisuals to 0 in order to handle XGetVisualInfo()
2086         failures gracefully. (#419171)
2087
2088 2007-03-17  Emmanuele Bassi  <ebassi@gnome.org>
2089
2090         * gtk/gtkrecentaction.c (recent_chooser_set_property),
2091         (gtk_recent_action_set_property): Remove useless inlined
2092         function and propagate the properties to the GtkRecentChooser
2093         objects we create, instead of all the proxies.
2094
2095         (set_current_filter): Remove 'inline' marker.
2096
2097 2007-03-16  Emmanuele Bassi  <ebassi@gnome.org>
2098
2099         Apply changes suggested by Michael Natterer. (#338843)
2100
2101         * gtk/gtkaction.h:
2102         * gtk/gtkaction.c: Rename get_submenu() to create_menu();
2103         rename gtk_action_get_submenu() to gtk_action_create_menu().
2104
2105         * gtk/gtkrecentaction.c: Update for GtkAction change.
2106
2107         * gtk/gtkuimanager.c (update_node): Update for GtkAction change;
2108         also, use the menu from the GtkAction for both menuitem and
2109         toolitem nodes.
2110
2111 2007-03-16  Xan Lopez  <xan@gnome.org>
2112
2113         * gtk/gtkwidget.c: Fix documentation error in
2114         gtk_widget_set_redraw_on_allocate.
2115
2116 2007-03-16  Matthias Clasen  <mclasen@redhat.com>
2117
2118         * gtk/gtkprintunixdialog.c (printer_added_cb): Scroll to
2119         make the selected printer visible.  (#418403, Nickolay V. Shmyrev,
2120         patch by Christian Persch)
2121
2122 2007-03-15  Federico Mena Quintero  <federico@novell.com>
2123
2124         Merged from gtk-2-10:
2125
2126         * gtk/gtkfilechooserdefault.c (find_good_size_from_style):
2127         PANGO_PIXELS() gives us device units, which are *points* in
2128         pangocairo's parlance, but we want actual pixels.  So, get the
2129         screen's resolution to compute the actual number of pixels.
2130         Fixes bug #418585.
2131
2132 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2133
2134         * gtk/gtkrecentmanager.c (gtk_recent_manager_add_item): Remove
2135         unused GError; do not allocate GtkRecentData and use a variable
2136         on the stack. (#418673, Morten Welinder)
2137
2138 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2139
2140         * gtk/gtkaction.[ch]: Add GtkActionClass::get_submenu() vfunc:
2141         actions providing a menu item or a menu tool button with already
2142         a submenu should return the GtkMenu widget.
2143
2144         * gtk/gtkuimanager.c (update_node): If an action provides its
2145         own submenu, use it instead of adding an empty one
2146
2147         * gtk/gtkrecentaction.[ch]: Add GtkRecentAction, an action
2148         implementing the GtkRecentChooser interface for displaying the
2149         list of recently used files into menus and toolbars generated
2150         using GtkUIManager. (#338843)
2151
2152         * gtk/Makefile.am:
2153         * gtk/gtk.h:
2154         * gtk/gtk.symbols: Add GtkRecentAction API to the build.
2155
2156         * tests/testactions.c: Exercise the GtkRecentAction API.
2157
2158 2007-03-15  Chris Wilson  <chris@chris-wilson.co.uk>
2159
2160         * gtk/gtkicontheme.c (ensure_valid_themes), (rescan_themes),
2161         (gtk_icon_theme_rescan_if_needed): Protect ensure_valid_themes()
2162         from recursion, which can happen for example if the app tries to
2163         reload an icon from within a theme-changed handler. (#418531)
2164
2165 2007-03-15  Richard Hult  <richard@imendio.com>
2166
2167         * gdk/quartz/gdkmain-quartz.c: Add stubs for
2168         gdk_notify_startup_complete_with_id and gdk_window_set_startup_id
2169         here too.
2170
2171 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2172
2173         * gtk/gtkrecentmanager.c: Fix documentation errors. (Morten
2174         Welinder)
2175
2176 2007-03-15  Tor Lillqvist  <tml@novell.com>
2177
2178         * gdk/gdk.symbols: Add gdk_notify_startup_complete_with_id and
2179         gdk_window_set_startup_id.
2180
2181         * gdk/win32/gdkmain-win32.c: Add dummy implementations of the above.
2182
2183 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2184
2185         * gtk/gtkrecentchooserprivate.h:
2186         * gtk/gtkrecentchooserutils.c: Move filtering of the recent
2187         files list into the shared implementation; do the filtering
2188         before the sorting, so that we always clamp on the desired
2189         size. (#418219)
2190
2191         * gtk/gtkrecentchoosermenu.c: Remove the filtering of the
2192         list, as it's already been done.
2193
2194         * gtk/gtkrecentchooserdefault.c: Ditto; also remove the
2195         GtkTreeModelFilter: just reload the view if the sorting and
2196         filtering properties change.
2197
2198         * gtk/testrecentchoosermenu.c: Exercise the limit property.
2199
2200 2007-03-14  Michael Natterer  <mitch@imendio.com>
2201
2202         Make gtk_widget_set_extension_events() work on already realized
2203         widgets (bug #379550, Tommi Komulainen)
2204
2205         * gdk/x11/gdkinput.c (gdk_input_set_extension_events): allow to be
2206         called multiple times without leaking and work correctly when
2207         already realized (don't rely on a configure event following).
2208
2209         * gtk/gtkwidget.c (gtk_widget_set_extension_events_internal): new
2210         internal function which walks the GdkWindow tree and sets the
2211         extension events on all windows that belong to the widget.
2212
2213         (gtk_widget_realize)
2214         (gtk_widget_set_extension_events): use the new function.
2215
2216 2007-03-14  Emmanuele Bassi  <ebassi@gnome.org>
2217
2218         Various clean ups in the GtkRecent code. (see #338843)
2219
2220         * gtk/gtkrecentchooserdefault.c:
2221         * gtk/gtkrecentchoosermenu.c:
2222         * gtk/gtkrecentchooserprivate.h:
2223         * gtk/gtkrecentchooserutils.c: Move the recent chooser function
2224         for getting the sorted and clamped list of recent files from the
2225         manager outside the implementations.
2226
2227         * gtk/gtkrecentchooserdefault.c (chooser_set_sort_type): Repopulate
2228         the list when the sorting order changes.
2229
2230         (gtk_recent_chooser_default_dispose),
2231         (gtk_recent_chooser_default_finalize): Move object unref and
2232         source removal from finalize to dispose.
2233
2234         * gtk/gtkrecentchooser.c (gtk_recent_chooser_type_init): Relax the
2235         prerequisite for the GtkRecentChooser interface implementations,
2236         from GtkObject to GObject.
2237
2238         (gtk_recent_chooser_class_init): Use GTK_PARAM_* instead of
2239         G_PARAM_*
2240
2241 2007-03-13  Emmanuele Bassi  <ebassi@gnome.org>
2242
2243         Apply patch by Vytautas Liuolia for changing the startup
2244         notification id on a window in the X11 backend. (#347375)
2245
2246         * gdk/gdk.h:
2247         * gdk/gdkx.h:
2248         * gdk/x11/gdkdisplay-x11.c: Add gdk_notify_startup_complete_with_id()
2249         and gdk_x11_display_get_startup_notification_id().
2250
2251         * gdk/gdkwindow.h:
2252         * gdk/x11/gdkwindow-x11.c: Add gdk_window_set_startup_id().
2253
2254         * gtk/gtkwindow.h:
2255         * gtk/gtkwindow.c: Add gtk_window_set_startup_id(), used to
2256         change the startup notification id.
2257         
2258         (gtk_window_class_init), (gtk_window_init),
2259         (gtk_window_set_property): Add write-only "startup-id" property
2260         to GtkWindow.
2261
2262         (gtk_window_realize): Set the startup notification id
2263         on a GtkWindow if it's valid.
2264
2265         (gtk_window_map): If we have another valid startup notification
2266         id then finish the notification process.
2267
2268 2007-03-13  Matthias Clasen  <mclasen@redhat.com>
2269
2270         * gtk/gtknotebook.c (gtk_notebook_real_insert_page):
2271         Fix tabbed browsing in epiphany.  (#413664, Christian Persch)
2272
2273 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2274
2275         * gtk/gtksizegroup.c (gtk_size_group_add_widget): Clarify
2276         docs.  (#345844, Torsten Schoenfeld)
2277
2278         * gdk/x11/gdkevents-x11.c (gdk_display_add_client_message_filter):
2279         * gdk/gdkwindow.c (gdk_window_add_filter): Add
2280         cross-references.  (#351252, Vincent Untz)
2281
2282         * gtk/gtkprintoperation.c: Fix an oversight in an
2283         example.  (#381083, Ian Puleston)
2284
2285         * gtk/gtkcombobox.c: Clean up and clarify docs.  (#412484)
2286
2287 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2288
2289         * gtk/gtkspinbutton.c (gtk_spin_button_style_set): Set
2290         the background of the panel window on style changes. (#402144,
2291         Benjamin Berg)
2292
2293 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2294
2295         * gtk/gtkbindings.c (gtk_binding_entry_add_signal): Remove
2296         an obsolete comment.  (#402169, Xan Lopez)
2297
2298 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2299
2300         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
2301         Don't copy PangoLanguage.  (#340031, Morten Welinder)
2302
2303 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2304
2305         * gtk/gtkfilechooserbutton.c (change_icon_theme_get_info_cb):
2306         Handle the row reference path being NULL.  (#410565, Joe Markus
2307         Clarke, patch by Chris Wilson)
2308
2309 2007-03-11  Matthias Clasen  <mclasen@redhat.com>
2310
2311         * tests/testiconview.c: Handle Menu key presses without
2312         crash.  (#385637, Christian Persch)
2313
2314 2007-03-11  Matthias Clasen  <mclasen@redhat.com>
2315
2316         * gtk/gtktooltips.c (gtk_tooltips_get_info_from_tip_window):
2317         Don't crash if active_tips_data is NULL.  (#382904, Li Yuan)
2318
2319 2007-03-11  Matthias Clasen  <mclasen@redhat.com>
2320
2321         * gtk/gtktextview.c (gtk_text_view_set_buffer): Set first_para_mark
2322         to NULL.  (#396805, Colin Leroy, patch by Mariano Suárez-Alvarez)
2323         
2324 2007-03-12  Kristian Rietveld  <kris@gtk.org>
2325
2326         * gtk/gtkfilechooserdefault.c (check_save_entry): immediately
2327         bail out if current_folder is NULL. (#350988, lots of reporters,
2328         modified patch by Jan Darmochwal).
2329
2330 2007-03-10  Kristian Rietveld  <kris@gtk.org>
2331
2332         * gtk/gtktreeview.c (gtk_tree_view_search_dialog_hide): only
2333         hide the search dialog and send focus events if the search dialog
2334         is currently visible.
2335
2336 2007-03-10  Richard Hult  <richard@imendio.com>
2337
2338         * gdk/quartz/gdkdrawable-quartz.c:
2339         (gdk_quartz_ref_cairo_surface): Reuse the surface during its lifetime.
2340         (gdk_quartz_drawable_get_context): Update for the new quartz cairo 
2341         surface API (#410442). Don't lock focus unless called outside of an 
2342         expose event.
2343         (gdk_quartz_drawable_release_context): Only flush the CG context and 
2344         unlock focus if called outside of expose.
2345         (_gdk_quartz_drawable_finish): New function, used to free the cached
2346         cairo surface.
2347
2348         * gdk/quartz/gdkwindow-quartz.c:
2349         (gdk_window_impl_quartz_begin_paint_region): A few small style changes.
2350         (_gdk_window_impl_quartz_get_type): No need to make the type info
2351         static.
2352         (gdk_window_quartz_process_all_updates): Move the autorelease pool
2353         allocation and freeing outside the loop.
2354         (_gdk_windowing_window_destroy): Finish the drawable.
2355         (move_resize_window_internal): Small cleanup and remove comment.
2356
2357         * gdk/quartz/gdkpixmap-quartz.c: Finish the drawable.
2358
2359 2007-03-10  Richard Hult  <richard@imendio.com>
2360
2361         * gdk/quartz/gdkprivate-quartz.h: Add missing function signature to fix
2362         a build warning.
2363
2364 2007-03-10  Richard Hult  <richard@imendio.com>
2365
2366         * gdk/quartz/gdkdisplay-quartz.c: (gdk_display_get_name): Plug a leak.
2367
2368 2007-03-10  Richard Hult  <richard@imendio.com>
2369
2370         * gdk/quartz/GdkQuartzView.c: Remove unneccesary exposure mask check.
2371
2372 2007-03-10  Richard Hult  <richard@imendio.com>
2373
2374         * gdk/quartz/gdkevents-quartz.c: (gdk_screen_get_setting): Don't set
2375         the font name here, leave that to themes, fixes #387508.
2376
2377 2007-03-10  Kristian Rietveld  <kris@gtk.org>
2378
2379         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_ref_node),
2380         (gtk_tree_model_sort_real_unref_node): when (un)reffing an
2381         element, also (un)ref its parent elements. (Fixes #364946,
2382         reported by many, testcase by Andreas Koehler).
2383
2384 2007-03-10  Matthias Clasen <mclasen@redhat.com>
2385
2386         * gtk/gtkprintoperation-unix.c: Initialize the do_preview
2387         field of PrintResponseData.  (#396703, Christian Persch)
2388
2389         * tests/print-editor.c: Plug some leaks.
2390
2391 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2392
2393         * gtk/gtktextview.c (gtk_text_view_end_selection_drag):
2394         Get rid of the unused event argument. Update all callers.
2395
2396         * gtk/gtktextview.c (gtk_text_view_focus_out): Call
2397         gtk_text_view_end_selection_drag.  (#351671, Boyd Timothy)
2398
2399 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2400
2401         * modules/input/gtkimcontextxim.c 
2402         (gtk_im_context_xim_filter_keypress): Don't commit
2403         modifier-adorned characters.  (#331369, #335796, Lin Ma
2404         and others)
2405
2406 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2407
2408         * Everywhere: Remove unnecessary NULL checks before
2409         g_free().  (#369666, Morten Welinder, Djihed Afifi)
2410
2411         * configure.in: Check for ftw.h
2412
2413 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2414
2415         * gtk/gtkfilesystemwin32.c (get_icon_path): Remove
2416         C99isms.  (#416525, Kazuki Iwamoto)
2417
2418 2007-03-09  Tor Lillqvist  <tml@novell.com>
2419
2420         * README.win32: Update.
2421
2422 2007-03-08  Matthias Clasen <mclasen@redhat.com>
2423
2424         * gdk/x11/gdkasync.c (send_event_handler): Defer the callbacks
2425         to an idle to avoid deadlock with xcb-ified libX11.  (#413032,
2426         Sebastian Dröge)
2427
2428 2007-03-08  Matthias Clasen <mclasen@redhat.com>
2429
2430         * gtk/gtknotebook.c (gtk_notebook_real_insert_page):
2431         Set child visibility to FALSE here; it will be turned
2432         back on in switch_page.  (#413664, Carlos Garnacho)
2433         
2434 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>
2435
2436         * modules/engines/ms-windows/msw_style.c: Use proper border style
2437         when drawing shadow of scrolled windows on Windows XP (#168326)
2438         * modules/engines/ms-windows/xp_theme.c: Explicitly set size of
2439         element_part_map array to ensure it always is large enough.
2440         
2441 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>      
2442
2443         * gtk/gtkcombobox.c: Add shadow-type style property, set shadow-type
2444         property of GtkEntry accordingly, unify size-allocation of toggle
2445         button (#411123, patch from Mathias Hasselmann).
2446         * gtk/gtkentry.c: Add shadow-type property. Query style properties
2447         on style changes only (#411123, patch from Mathias Hasselmann).
2448         * modules/engines/ms-windows/msw_style.c: Drop combo_box_draw_box
2449         hack as GtkComboBox emits drawing requests now (#411123, patch 
2450         from Mathias Hasselmann).
2451         
2452 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>
2453
2454         * gtk/gtkscrolledindow.c: Improve look of GtkScrolledWindow on Windows
2455         by implementing a scrollbars-within-bevel style property. (#168326)
2456         
2457 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>
2458
2459         * gtk/gtkfilesystemwin32.c: Use Windows shell icons. Icons are
2460         stored in the current theme with the name
2461         "gtk-win32-shell-icon;PATH;INDEX". PATH and INDEX reference shell
2462         icons as reported by SHGetFileInfoW. (#412221)
2463
2464 2007-03-07  Matthias Clasen <mclasen@redhat.com>
2465
2466         * gtk/gtkexpander.c (gtk_expander_paint_focus): Draw the
2467         focus around the arrow if there is no label widget.  
2468         (#124045, Cody Russell)
2469
2470 2007-03-07  Matthias Clasen <mclasen@redhat.com>
2471
2472         * gtk/gtkcombo.c: (gtk_combo_init):
2473         * gtk/gtkcombobox.c: (gtk_combo_box_set_popup_widget),
2474         (gtk_combo_box_menu_setup):
2475         Set names on the popup widgets to make them themable. (#414975, 
2476         Benjamin Berg)
2477
2478 2007-03-07  Michael Natterer  <mitch@imendio.com>
2479
2480         * gtk/gtkcellrendereraccel.c: use multihead safe ungrab functions
2481         instead of gdk_keyboard_ungrab() and gdk_pointer_ungrab(), remove
2482         empty finalize() implementation, some cosmetic cleanup
2483         (bug #415645).
2484
2485 2007-03-06  Chris Wilson  <chris@chris-wilson.co.uk>
2486
2487         * gtk/gtkicontheme.c (update_current_theme), (gtk_icon_theme_init),
2488         (do_theme_change), (gtk_icon_theme_set_custom_theme),
2489         (load_themes):
2490         Be careful not to trigger a style reset before we have loaded
2491         the icon theme. (#414875).
2492
2493 2007-03-06  Tor Lillqvist  <tml@novell.com>
2494
2495         * gdk/Makefile.am
2496         * gtk/Makefile.am: Further fixes for building on Win32 outside
2497         srcdir. (#413492, Mathias Hasselmann)
2498
2499 2007-03-04  Ihar Hrachyshka <iharh@gnome.org>
2500
2501         * configure.in: Added be@latin to ALL_LINGUAS. Problems seems to be
2502         fixed.
2503
2504 2007-03-04  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>
2505
2506         * configure.in: Removed be@latin from ALL_LINGUAS, as it's currently
2507         breaking the build.
2508
2509 2007-03-04  Ihar Hrachyshka <iharh@gnome.org>
2510
2511         * configure.in: Added be@latin to ALL_LINGUAS
2512
2513 2007-03-03  Guillaume Savaton <llumeao@gmail.com>
2514
2515         * configure.in: Added Esperanto (eo) to ALL_LINGUAS
2516
2517 2007-03-01  Matthias Clasen <mclasen@redhat.com>
2518
2519         * gtk/gtksettings.c: Always store gtk-color-scheme
2520         values from all sources in the ColorSchemeData struct
2521         and ignore the property_value for gtk-color-scheme.
2522         This fixes #412596, reported by Thomas Wood.
2523
2524 2007-02-28  Matthias Clasen <mclasen@redhat.com>
2525
2526         * gtk/gtksettings.c: Make color scheme update properly
2527         when changing themes.  (#402131, Benjamin Berg)
2528
2529 2007-02-28  Matthias Clasen <mclasen@redhat.com>
2530
2531         * gtk/gtkrc.c: Don't leak references to the color-hash 
2532         gotten from GtkSettings.  (#409357, Benjamin Berg)
2533
2534 2007-02-28  Tristan Van Berkom <tvb@gnome.org>
2535
2536         * gtk/gtkradiobutton.c: Fixed a warning from
2537         g_object_set (radiobutton, "group", NULL, NULL).
2538
2539 2007-02-26  Matthias Clasen <mclasen@redhat.com>
2540
2541         Apply a patch by Carlos Garnacho to fix several problems
2542         with filechooser size handling (#325477, #151169, 143213,
2543         #153785)
2544
2545         * gtk/gtkfilechooserdefault.c: Increase NUM_LINES slightly.
2546         (browse_widgets_create): Don't force the paned position to 200.
2547         (find_good_size_from_style): Take the size of the extra widget
2548         into account.
2549
2550         * gtk/gtkfilechooserdialog.c (file_chooser_widget_update_hints):
2551         Accept a minimal width parameter. Update all callers.
2552
2553 2007-02-26  Matthias Clasen <mclasen@redhat.com>
2554
2555         * gtk/gtkprintunixdialog.c: Change the label to "Pages per side",
2556         which is more accurate, suggested by Tim Waugh. String change! 
2557
2558 2007-02-26  Matthias Clasen <mclasen@redhat.com>
2559
2560         * gtk/gtkprinteroptionwidget.c: Make the folder selection for
2561         print-to-file work. Reported by Ian Collier.
2562
2563 2007-02-26  Chris Wilson  <chris@chris-wilson.co.uk>
2564
2565         Bug 409101 – invalid read to gtkicontheme.c insert_theme(), might cause gnome-panel crash
2566
2567         * gtk/gtkicontheme.c: (scan_directory):
2568                 Reorder the replacement of the shared base_name key, so that we
2569                 avoid dereferencing the string in the icon_theme->all_icon
2570                 hash table after freeing it from the dir->icons hash table.
2571
2572 2007-02-26  Tor Lillqvist  <tml@novell.com>
2573
2574         * gdk/win32/gdkwindow-win32.c (gdk_window_set_icon_name): Add
2575         comment clarifying that "icon name" here is not related to the
2576         freedesktop.org icon naming stuff.
2577
2578 2007-02-23  Dom Lachowicz  <domlachowicz@gmail.com>
2579
2580         * modules/engines/ms-windows/msw_style.c: Bug 411118 - bad bevel for
2581         progress bar on windows classic. Match from Mathias Hasselmann.
2582         
2583 2007-02-19  Tor Lillqvist  <tml@novell.com>
2584
2585         * gdk/win32/gdkinput.c
2586         (gdk_device_finalize, gdk_device_class_init): Remove.
2587         (gdk_device_get_type): Drop class init function. The X11 version
2588         doesn't have one either.
2589         (gdk_devices_list): Call gdk_display_list_devices() on _gdk_display.
2590         (gdk_display_list_devices): Check that the argument is
2591         _gdk_display.
2592
2593         * gdk/win32/gdkinput-win32.h (GdkAxisInfo, GdkDevicePrivate):
2594         Cleanup: remove unused fields.
2595         * gdk/win32/gdkinput-win32.c: Corresponding changes. Fix function
2596         names in a few debugging printouts.
2597
2598 2007-02-18  Matthias Clasen  <mclasen@redhat.com>
2599
2600         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually):
2601         Ignore invisible text when going to end of the previous line.
2602         (#382565)
2603
2604 2007-02-18  Richard Hult  <richard@imendio.com>
2605
2606         * gdk/quartz/gdkwindow-quartz.c:
2607         (gdk_window_quartz_process_all_updates),
2608         (_gdk_windowing_window_destroy): Setup release pools to plug two leaks,
2609         patch from Erik van Pienbroek, fixes bug #396649.
2610
2611 2007-02-18  Richard Hult  <richard@imendio.com>
2612
2613         * gdk/quartz/gdkevents-quartz.c: Add stub for 
2614         gdk_display_add_client_message_filter, patch from Taybin Rutkin. Fixes
2615         bug #405870.
2616
2617         * gdk/quartz/gdkprivate-quartz.h: Add prototypes to fix build warnings.
2618
2619 2007-02-18  Richard Hult  <richard@imendio.com>
2620
2621         * gdk/quartz/GdkQuartzView.h:
2622         * gdk/quartz/GdkQuartzWindow.h:
2623         * gdk/quartz/gdkquartz.h: Import AppKit.h instead of Quartz.h.
2624         * gdk/quartz/gdkscreen-quartz.c: (get_mm_from_pixels): Don't use 
2625         userSpaceScaleFactor for 10.3. Those changes bring us closer to working
2626         on panther, patch from Mathias Hasselmann.
2627         
2628         * gdk/quartz/gdkeventloop-quartz.c: Add includes to fix build warnings.
2629
2630 2007-02-16  Behdad Esfahbod  <behdad@gnome.org>
2631
2632         * gdk/gdkpango.c (gdk_pango_layout_get_clip_region): Use PANGO_PIXELS
2633         instead of division. (#334617)
2634
2635 2007-02-16  Kristian Rietveld  <kris@gtk.org>
2636
2637         * gtk/gtktreeprivate.h: add cursor_offset field.
2638
2639         * gtk/gtktreeview.c (gtk_tree_view_init),
2640         (gtk_tree_view_move_cursor_page_up_down): fix off by one error
2641         in page up/down handling by memorizing the offset into the cursor
2642         row.  (Fixes #399809, reported by Bruce Bowler).
2643
2644 2007-02-16  Kristian Rietveld  <kris@gtk.org>
2645
2646         * gtk/gtktreeview.c (gtk_tree_view_search_dialog_hide): send
2647         a focus-in event to the tree view after hiding the search dialog.
2648         (#356515, Rich Burridge, Peter Parente).
2649
2650 2007-02-16  Kristian Rietveld  <kris@imendio.com>
2651
2652         * tests/testtooltips.c (query_tooltip_text_view_cb): also handle
2653         keyboard tooltips. (#408325, Matthias Clasen).
2654
2655 2007-02-16  Xan Lopez  <xan@gnome.org>
2656
2657         * gtk/gtkcombobox.c (gtk_combo_box_expose_event): Cleanup the logic
2658         in expose event handler. Reviewed by Matthias Clasen, #406112
2659
2660 2007-02-16  Matthias Clasen  <mclasen@redhat.com>
2661
2662         * gtk/gtkmain.c: Run pre_parse_hook only once.  (#403139, Kjartan
2663         Maraas)
2664
2665 2007-02-15  Matthias Clasen  <mclasen@redhat.com>
2666
2667         * gdk/x11/gdmain-x11.c (_gdk_xgrab_check_button_event): Be more
2668         careful when checking for ButtonRelease events that end implicit
2669         grabs.  (#386618, Christof Krüger)
2670
2671 2007-02-15  Matthias Clasen  <mclasen@redhat.com>
2672
2673         * gtk/gtktextbtree.c (_gtk_text_btree_delete): Free the lines
2674         even if there are no views.  (#408018, Albert Huang)
2675
2676 2007-02-15  Cody Russell  <bratsche@gnome.org>
2677
2678         * gdk/win32/gdkevents-win32.c: Make sure we get enough main context 
2679         iterations while we're resizing so that the window contents are resized 
2680         more smoothly (#389765).
2681
2682         * gdk/win32/gdkevents-win32.c: Fix flickering widgets when window contents
2683         are resized (#310522).
2684
2685 2007-02-15  Matthias Clasen  <mclasen@redhat.com>
2686
2687         * gtk/updateiconcache.c: Handle symlinked .icon files 
2688         intelligently; also avoid storing duplicate strings.
2689
2690 2007-02-15  Michael Natterer  <mitch@imendio.com>
2691
2692         * gtk/gtkmenushell.c: remove two antique function typedefs that
2693         are probably obsolete for ages.
2694
2695 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
2696
2697         reviewed by: Matthias Clasen  <mclasen@redhat.com>
2698
2699         * configure.in: determine installation prefixes of dependent libs to
2700         crossreference docs (#407146).
2701
2702 2007-02-14  Kristian Rietveld  <kris@imendio.com>
2703
2704         * gtk/gtktooltip.c (child_location_foreach): check return value
2705         of gtk_widget_translate_coordinates() so we cannot end up
2706         using uninitialized x, y values.  (#407863, patch from Carlos
2707         Garnacho).
2708
2709 2007-02-14  Kristian Rietveld  <kris@imendio.com>
2710
2711         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
2712         use TREE_VIEW_DRAG_WIDTH/2 when calculating the drag window
2713         position instead of a hardcoded value.  (Taken from maemo-gtk).
2714
2715 2007-02-14  Michael Natterer  <mitch@imendio.com>
2716
2717         * gtk/gtkmenu.c (gtk_menu_motion_notify): don't forget to set the
2718         state of the synthesized GDK_ENTER_NOTIFY event. Fix taken from
2719         maemo-gtk.
2720
2721 2007-02-13  Kristian Rietveld  <kris@imendio.com>
2722
2723         * gtk/gtktooltip.c (gtk_tooltip_hide_tooltip): stop any
2724         pending tooltip timeout. (Fixes #406110, Carlos Garnacho).
2725
2726 2007-02-10  Emmanuele Bassi  <ebassi@gnome.org>
2727
2728         * gtk/gtkrecentchoosermenu.c: Fix the english of the comment;
2729         remove some type checking; use better variable naming for the
2730         internal menu item markers.
2731
2732 2007-02-09  Emmanuele Bassi  <ebassi@gnome.org>
2733
2734         * gtk/gtkrecentchoosermenu.c: Add support for both prepending
2735         and appending custom menu items.
2736
2737         (gtk_recent_chooser_menu_constructor): Add a placeholder menu
2738         item for the empty menu case, and for giving us a starting
2739         point for the recent items populating process.
2740
2741         (gtk_recent_chooser_menu_insert_item),
2742         (gtk_recent_chooser_menu_dispose_items): Insert an item at
2743         the position following the placeholder (and find that position
2744         if needed).
2745
2746         (idle_populate_func), (idle_populate_clean_up): Show the
2747         placeholder menu item, instead of creating one each time.
2748
2749         (gtk_recent_chooser_menu_populate): Kill some indirections
2750         and hide the placeholder before populating the menu.
2751
2752         (set_recent_manager): Remember to remove the idle population
2753         source if the manager changes.
2754
2755         * tests/testrecentchoosermenu.c: Test the appending and
2756         prepending of the menu items to the recent chooser menu
2757         widget.
2758
2759 2007-02-08  Emmanuele Bassi  <ebassi@gnome.org>
2760
2761         * gtk/gtkrecentchoosermenu.c (idle_populate_func): Keep count
2762         of the displayed items to build the menu items mnemonic instead
2763         of the overall item count. (#377164)
2764
2765         (idle_populate_clean_up): Append a menu item if all the items
2766         got filtered in the idle populate function. (#405696)
2767
2768         * tests/Makefile.am:
2769         * tests/testrecentchoosermenu.c: Add a test for the
2770         GtkRecentChooserMenu widget.
2771
2772 Thu Feb  8 13:07:08 2007  Tim Janik  <timj@imendio.com>
2773
2774         * applied patch from Xan Lopez which adds GTK_BUTTONBOX_CENTER to
2775         GtkButtonBox (bug #336159).
2776
2777         * gtk/gtkenums.h:
2778         * gtk/gtkvbbox.c, gtk/gtkhbbox.c, gtk/gtkbbox.c:
2779         support GTK_BUTTONBOX_CENTER.
2780
2781         * tests/testbbox.c: new button box test, which allows testing of 
2782         the various button box properties.
2783
2784         * tests/testgtk.c: added GTK_BUTTONBOX_CENTER. to button box test.
2785
2786 2007-02-07  Cody Russell  <bratsche@gnome.org>
2787
2788         * gdk/gdk.symbols: Add gdk_event_request_motions
2789
2790 Wed Feb  7 19:03:28 2007  Tim Janik  <timj@gtk.org>
2791
2792         * gtk/gtkentry.c (gtk_entry_motion_notify): fixed motion request 
2793         condition which was wrongly ported with my last commit.
2794
2795 Tue Feb  6 15:53:59 2007  Tim Janik  <timj@imendio.com>
2796
2797         * gtk/gtktextview.c (gtk_text_view_motion_event):
2798         * gtk/gtkspinbutton.c (gtk_spin_button_motion_notify):
2799         * gtk/gtkaboutdialog.c (credits_motion_notify_event):
2800         * gtk/gtkhruler.c (gtk_hruler_motion_notify):
2801         * gtk/gtkvruler.c (gtk_vruler_motion_notify): 
2802         * gtk/gtkentry.c (gtk_entry_motion_notify):
2803         * gtk/gtktooltip.c (_gtk_tooltip_handle_event):
2804         * gtk/gtkhsv.c (gtk_hsv_motion): call gdk_event_request_motions()
2805         for new motion events after receiving motion hints.
2806
2807         * gdk/gdkevents.[hc]: added gdk_event_request_motions().
2808
2809 2007-02-06  Kristian Rietveld  <kris@imendio.com>
2810
2811         * gtk/gtktooltip.c (find_topmost_widget_coords_from_event):
2812         remove unused get of has_tooltip.
2813
2814         * tests/testtooltips.c (query_tooltip_tree_view_cb): use the
2815         portable g_snprintf instead of snprintf.
2816
2817 2007-02-06  Michael Natterer  <mitch@imendio.com>
2818
2819         * gtk/gtktooltip.c (gtk_tooltip_finalize): chain up.
2820
2821         (gtk_tooltip_show_tooltip): move variables and code to local
2822         scope. Fixes warnings about maybe uninitialized variables.
2823
2824 2007-02-06  Kristian Rietveld  <kris@imendio.com>
2825
2826         New tooltips API.
2827
2828         * gtk/Makefile.am
2829         * gtk/gtk.h
2830         * gtk/gtk.symbols: build system foo.
2831
2832         * gtk/gtkmain.c (gtk_main_do_event): call tooltip event handler
2833         hook for appropriate events.
2834
2835         * gtk/gtkmarshalers.list: add BOOLEAN:INT,INT,BOOLEAN,OBJECT.
2836
2837         * gtk/gtkrc.c: add style for gtk-tooltip.
2838
2839         * gtk/gtksettings.c (gtk_settings_class_init): make the
2840         different tooltip timeouts configurable.
2841
2842         * gtk/gtkwidget.[ch]: add new properties, signals, make sure
2843         tooltips are hidden on unmap, destroy, update window event
2844         mask on realize, hook into focus change and show help
2845         handlers.
2846
2847         * gtk/gtkwindow.h: move GtkWindow typdef to gtkwidget.h ...
2848
2849         * gtk/gtktooltip.[ch]: new files.
2850
2851         * tests/Makefile.am
2852         * tests/testtooltips.c: add test application.
2853
2854 2007-02-05  Dom Lachowicz <domlachowicz@gmail.com>
2855
2856         * modules/engines/ms-windows/msw_style.c: Fix bug 404506, caused
2857         by prematurely releasing a DC. By Hiroyuki Yamamoto
2858         * modules/engines/ms-windows/msw_style.c: Fix bug 403470 - leaking 
2859         pixbufs when drawing rotated tabs. By Daniel Atallah
2860         
2861 2007-02-05  Michael Natterer  <mitch@imendio.com>
2862
2863         * gtk/gtksettings.c: add new boolean settings gtk-enable-accels
2864         and gtk-enable-mnemonics which enable/disable accelerators and
2865         mnemonics (bug #72375, based on a patch from Tommi Komulainen).
2866
2867         * gtk/gtkwindow.c (gtk_window_activate_key)
2868         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): don't invoke them
2869         if the resp. setting is FALSE.
2870
2871         * gtk/gtkaccellabel.c (gtk_accel_label_refetch)
2872         * gtk/gtklabel.c (gtk_label_set_pattern_internal): don't display
2873         them if the setting is FALSE.
2874
2875         * gtk/gtklabel.c: added signal connection to the screen's settings
2876         object and traverse all widgets on the screen when the setting
2877         changes. It's slightly ugly to also update GtkAccelLabels here,
2878         but less ugly than connecting and traversing all widgets twice.
2879
2880 2007-02-05  Michael Natterer  <mitch@imendio.com>
2881
2882         * gtk/gtktextbuffer.h (enum GtkTextBufferTargetInfo): changed
2883         values from G_MAXUINT-0, -1, -2 to -1, -2, -3 so we stay within
2884         ansi C enum value limits. Fixes bug #46757.
2885
2886 2007-02-03  Soren Sandmann <sandmann@daimi.au.dk>
2887
2888         * gtk/gtksequence.[ch]: Remove these files since GSequence has
2889         been moved into GLib.
2890
2891         * gtk/gtkliststore.c: Port to GSequence instead of GtkSequence.
2892
2893         * configure.in: Require glib-2.13.0
2894         
2895 2007-02-04  Tor Lillqvist  <tml@novell.com>
2896
2897         * gdk/win32/gdkcursor-win32.c: Don't define BITMAPV5HEADER on
2898         mingw with w32api >= 3.8, which has it in wingdi.h. (#403896)
2899
2900 2007-02-02  Kristian Rietveld  <kris@gtk.org>
2901
2902         * gtk/gtktreeview.c (gtk_tree_view_row_changed): remove unused
2903         style_get of vertical-separator. (#403165, Chris Wilson).
2904
2905 2007-02-02  Christian Persch  <chpe@svn.gnome.org>
2906
2907         * gtk/gtkfilechoosersettings.c: (get_config_filename),
2908         (ensure_settings_read), (_gtk_file_chooser_settings_init),
2909         (_gtk_file_chooser_settings_set_show_hidden),
2910         (_gtk_file_chooser_settings_set_expand_folders),
2911         (_gtk_file_chooser_settings_save): Use a simple key file instead of a
2912         markup file. Bug #399592.
2913
2914 2007-02-02  Mariano Suárez-Alvarez  <mariano@gnome.org>
2915
2916         * gtk/gtkcellrenderertext.c(gtk_cell_renderer_text_class_init):
2917         be a little more helpful with the docs on GtkCellRendererText:alignment.
2918         Bug #403409.
2919
2920 2007-02-01  Michael Natterer  <mitch@imendio.com>
2921
2922         * gtk/gtkmenu.c (gtk_menu_paint): pass &event->area to
2923         gtk_paint_box() calls.
2924
2925 2007-02-01  Michael Natterer  <mitch@imendio.com>
2926
2927         * gtk/gtkmenu.c (gtk_menu_button_press)
2928         (gtk_menu_button_release)
2929         (gtk_menu_button_scroll): remove redundant and confusing
2930         if (GTK_IS_MENU (widget)) checks because "widget" is always a
2931         GtkMenu here.
2932
2933 Thu Feb  1 12:22:06 2007  Tim Janik  <timj@imendio.com>
2934
2935         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): remove extra reference
2936         that gtkcombobox keeps on priv->popup_widget if it's a tree view.
2937
2938 2007-01-31  Christian Persch  <chpe@svn.gnome.org>
2939
2940         * gtk/gtkaboutdialog.c: (update_credits_button_visibility),
2941         (gtk_about_dialog_set_authors), (gtk_about_dialog_set_documenters),
2942         (gtk_about_dialog_set_artists),
2943         (gtk_about_dialog_set_translator_credits): Hide the Credits button iff
2944         there are no credits to show. Bug #402806.
2945
2946 2007-01-31  Tor Lillqvist  <tml@novell.com>
2947
2948         * gdk/win32/gdkinput-win32.c (print_cursor): New debugging
2949         function.
2950         (_gdk_input_wintab_init_check): Call it when debugging output is
2951         requested.
2952         (_gdk_input_wintab_init_check): Skip duplicated cursors for Wacom
2953         tablets. The Wacom driver reports duplicated cursors with
2954         physid==0. Fix verified by Robert Ögren.
2955
2956 2007-01-30  Felix Riemann  <friemann@svn.gnome.org>
2957
2958         * modules/printbackends/file/gtkprintbackendfile.c:
2959         (file_printer_get_options): Fix leaked string. Fixes bug #402565.
2960
2961 2007-01-30  Matthias Clasen  <mclasen@redhat.com>
2962
2963         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_move_to_current_desktop):
2964         (gdk_x11_window_set_user_time): Be more careful about toplevel
2965         possibly being NULL.  (#402453, Sebastian Bacher)
2966
2967 Tue Jan 30 12:09:56 2007  Tim Janik  <timj@gtk.org>
2968
2969         * gtk/gtksettings.c: cleaned up ::color-hash registration to not abuse
2970         class_n_properties and leave an uninitialized value array behind.
2971
2972 2007-01-29  Michael Natterer  <mitch@imendio.com>
2973
2974         * gtk/gtkmenuitem.c (gtk_menu_item_select)
2975         (gtk_menu_item_deselect): queue a draw on the parent_menu_item of
2976         this menu item's menu, to enable themeing menu items depending on
2977         whether something is selected in their submenu (patch taken from
2978         maemo-gtk).
2979
2980 2007-01-28  Matthias Clasen  <mclasen@redhat.com>
2981
2982         * gtk/gtktoolbar.c: Reinstate gtk_toolbar_content_new_compatibility()
2983         that was mistakenly "cleaned up" a while ago. Also
2984         revert a problematic change to the screen_changed
2985         handler.  (#401598, Søren Sandmann)
2986
2987 2007-01-28  Matthias Clasen  <mclasen@redhat.com>
2988
2989         * gtk/gtkframe.c (gtk_frame_size_allocation): Fix a 
2990         problem with large y thickness.  (#136592, Xan Lopez)
2991
2992 2007-01-28  Matthias Clasen  <mclasen@redhat.com>
2993
2994         * gtk/gtkaction.c (gtk_action_new): Use canonical
2995         property names.  
2996
2997 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
2998
2999         * gtk/gtknotebook.c (gtk_notebook_draw_arrow):
3000         (gtk_notebook_draw_focus): Avoid some unnecessary 
3001         gtk_widget_get_style() calls.
3002
3003 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3004
3005         * gtk/gtktoolbar.c:
3006         * gtk/gtktoolitem.c:
3007         * gtk/gtktoolbutton.c: Rearrange things so that setting
3008         multiple properties causes not more than a single 
3009         reconstruction of the contents.
3010
3011         * gtk/gtkaction.c (connect_proxy): Set all tool button 
3012         properties in one go.
3013
3014 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3015
3016         * gtk/gtkstatusicon.c:
3017         * gtk/gtktrayicon-x11.c: Fix GtkStatusIcon to not
3018         take up space on the panel if it is invisible.  (340110, Christian
3019         Persch)
3020
3021         * tests/teststatusicon.c:
3022         * tests/Makefile.am: Updates
3023
3024 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3025
3026         * gtk/gtkfilesel.h:
3027         * gtk/gtkrc.h:
3028         * gtk/gtk.symbols: Add deprecation guards for gtk_rc_style_ref/unref
3029         and the old file selector.  (#348256)
3030
3031 2007-01-26  Matthias Clasen  <mclasen@redhat.com>
3032
3033         * gtk/gtkiconview.c: Documentation fixes (#400530, Anders Brander)
3034
3035 2007-01-26  Matthias Clasen  <mclasen@redhat.com>
3036
3037         * gtk/updateiconcache.c: Check the mtime of all directories,
3038         not just the toplevel, if ftw() is available.  (#331671, Behdad
3039         Esfahbod)
3040
3041         * configure.in: Check for ftw.h.
3042
3043 2007-01-26  Michael Natterer  <mitch@imendio.com>
3044
3045         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize):
3046         destroy the XIM only if it exists. While the code does look safe
3047         in general, there can be corner cases where the "reconnecting"
3048         boolean being FALSE does not correspond to the XIM being
3049         allocated (fixes #329450, fix taken from maemo-gtk).
3050
3051 Fri Jan 26 13:07:07 2007  Tim Janik  <timj@imendio.com>
3052
3053         * gtk/gtkstyle.c (draw_insertion_cursor): clamp cursor coordinates to
3054         window bounds (fix from Maemo Gtk).
3055
3056 2007-01-26  Michael Natterer  <mitch@imendio.com>
3057
3058         * gtk/gtkentrycompletion.c (gtk_entry_completion_insert_prefix):
3059         only block/unblock completion->priv->insert_text_id if it is
3060         actually connected. While this can't happen the way GtkEntry
3061         itself uses the completion, it's still public API and should not
3062         blindly call functions that will spit warnings (fix taken from
3063         maemo-gtk).
3064
3065 2007-01-25  Matthias Clasen  <mclasen@redhat.com>
3066
3067         * gdk/gdkwindow.c: Reduce locking overhead by not repeatedly getting
3068         the paintable iface.  
3069
3070 2007-01-24  Michael Natterer  <mitch@imendio.com>
3071
3072         * gtk/gtkwidget.c (gtk_widget_set_state): revert generic disabling
3073         of PRELIGHT state for the reasons given in bug #135666. Widget
3074         states are sometimes abused or otherwise used wrongly for historic
3075         reasons, causing this part of the patch to break e.g. menu items.
3076
3077 2007-01-24  Roozbeh Pournader  <roozbeh@farsiweb.info>
3078
3079         * README: Remove mention of no-longer-existing PATCH
3080         keyword in bugzilla. (#396899)
3081
3082 2007-01-23  Carlos Garcia Campos  <carlosgc@gnome.org>
3083
3084         * gtk/gtkpagesetup.c
3085         (gtk_page_setup_set_paper_size_and_default_margins): Fix memory leak.
3086         Fixes bug #399907. 
3087
3088 2007-01-22  Chris Wilson <chris@chris-wilson.co.uk>
3089
3090         Bug 399314 – Add G_GNUC_WARN_UNUSED_RESULT to gtk_style_attach
3091
3092         * gtk/gtkstyle.h:
3093                 Cause gcc to issue a warning if the style returned from
3094                 gtk_style_attach is not used. Failure to update
3095                 widget->style causes some very difficult to reproduce bugs,
3096                 eg Bug 353498 – crash in Terminal: changing icon theme.
3097
3098 2007-01-19  Michael Emmel  <mike.emmel@gmail.com>
3099
3100         * gdk/directfb/gdkevents-directfb.c: added fixes for window
3101         crossing events frm Attilio Fiandrotti<attilio.fiandrotti@gmail.com>
3102
3103 2007-01-19  Matthias Clasen  <mclasen@redhat.com>
3104
3105         * gtk/gtkcalendar.c: Fix build breakage.
3106
3107 2007-01-19  Kristian Rietveld  <kris@imendio.com>
3108
3109         * gtk/gtktreeview.c (gtk_tree_view_motion_bin_window),
3110         (add_scroll_timeout), (gtk_tree_view_drag_motion): factor out
3111         add_scroll_timeout().  (taken from maemo-gtk).
3112
3113 2007-01-18  Matthias Clasen  <mclasen@redhat.com>
3114
3115         * gtk/gtkcalendar.c: Fix problems with the initial
3116         focus in GtkCalendar.  (#397783, Vincent Untz)
3117
3118 2007-01-19  Robert Ögren  <gtk@roboros.com>
3119
3120         Fix for bug #143460 - missed tablet clicks on Windows
3121
3122         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check):
3123         Request absolute reporting of tablet button state, and cut down
3124         the packet queue size a bit.
3125         (_gdk_input_other_event): Change button state handling
3126         accordingly. Also drop the no longer necessary code that detects
3127         missed clicks/releases for button 1. The switch to absolute button
3128         state should prevent missed events for all buttons. Additionally,
3129         swap button 2 and 3.
3130         (_gdk_input_grab_pointer): Don't reset button_state, that will only
3131         cause a new press event as soon as the next tablet packet arrives.
3132
3133 2007-01-19  Tor Lillqvist  <tml@novell.com>
3134
3135         Build Wintab support always on Windows. Don't require the Wintab
3136         SDK.
3137
3138         * configure.in: Drop the --with-wintab option. Drop the
3139         HAVE_WINTAB feature test macro and Automake variable.
3140
3141         * acconfig.h
3142         * config.h.win32.in: Drop HAVE_WINTAB.
3143
3144         * gdk/win32/gdkevents-win32.c
3145         * gdk/win32/gdkinput.c
3146         * gdk/win32/gdkinput-win32.h
3147         * gdk/win32/gdkinput-win32.c
3148         * gdk/win32/gdkmain-win32.c: Make HAVE_WINTAB ifdef blocks
3149         unconditional.
3150
3151         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Try
3152         to load wintab32.dll dynamically here. If it is found look up the
3153         handful Wintab functions we use.
3154         (rest of file): Use these function pointers instead of calling the
3155         functions from wntab32x.lib. The code in wntab32x.lib did the same
3156         thing anyway: tried to load wintab32.dll, and looked up the
3157         addresses of the actual functions from it.
3158
3159         * gdk/Makefile.am
3160         * gdk/win32/Makefile.am: Drop the libwntab32x hacks.
3161
3162         * gdk/win32/wintab.h
3163         * gdk/win32/pktdef.h: New files. Copied from the Wintab
3164         SDK. Copyright blurb says: "The text and information contained in
3165         this file may be freely used, copied, or distributed without
3166         compensation or licensing restrictions."
3167
3168         * README.win32: Update a bit. Remove the text about the Wintab
3169         SDK.
3170
3171 2007-01-18  Tor Lillqvist  <tml@novell.com>
3172
3173         * gdk-pixbuf/Makefile.am
3174         * gdk/Makefile.am
3175         * gdk/win32/Makefile.am
3176         * gtk/Makefile.am: Fixes for building outside srcdir on
3177         Win32. (#336819, #340013) Drop distributing the handmade .la
3178         libtool wrapper for the wntab32x library. It's too much trouble
3179         making it work when building outside srcdir. Just link to the
3180         library direcly using -Wl,win32/libwntab32x.a.
3181
3182 2007-01-18  Michael Natterer  <mitch@imendio.com>
3183
3184         * gtk/gtkcheckbutton.c
3185         * gtk/gtkdnd.c
3186         * gtk/gtkentry.c
3187         * gtk/gtkmenu.c
3188         * gtk/gtktreeview.c
3189         * gtk/gtkviewport.c: pass more clip rectangles to gtk_paint_foo()
3190         functions. Based on a patch from maemo-gtk (bug #398023).
3191
3192 2007-01-17  Tor Lillqvist  <tml@novell.com>
3193
3194         * gtk-zip.sh.in: Include also the COPYING file.
3195
3196 2007-01-17  Matthias Clasen  <mclasen@redhat.com>
3197
3198         * modules/printbackends/cups/gtkprintbackendcups.c: Don't use
3199         httpGetFd() when building against cups 1.1
3200
3201 2007-01-17  Tor Lillqvist  <tml@novell.com>
3202
3203         Proper fix for #396175:
3204
3205         * gtk/gtkimmulticontext.c: Revert change by Hans Breuer below: Do
3206         include gtkprivate.h. On Win32 we do want to use the redefinition
3207         of GTK_LOCALEDIR as a call to the function _gtk_get_localedir().
3208
3209         * gtk/gtkimmodule.c: Instead, correct the prefix also on
3210         simple_context_info.domain_dirname. Do the prefix corrections
3211         always on Win32, not just when GTK_LIBDIR is defined. i.e., until
3212         now they were done only in the autoconfiscated gcc builds. Hans
3213         needs to make sure GTK_LIBDIR and GTK_LOCALEDIR are defined also
3214         in MSVC builds now.
3215         (correct_localedir_prefix): New function, like
3216         correct_libdir_prefix(), but for GTK_LOCALEDIR, in case
3217         GTK_LOCALEDIR is not a descendant of GTK_LIBDIR.
3218         (gtk_im_module_initialize): Thus call correct_localedir_prefix()
3219         on the domain_dirname instead of correct_libdir_prefix().
3220         (_gtk_im_module_list): Call correct_localedir_prefix() on
3221         simple_context_info.domain_dirname.
3222
3223 2007-01-16  Matthias Clasen  <mclasen@redhat.com>
3224
3225         * gtk/gtkrange.c (range_grab_remove): Queue a redraw when the
3226         grab changes.  (#396470, Benjamin Berg)
3227
3228 2007-01-15  Emmanuele Bassi  <ebassi@gnome.org>
3229
3230         * gtk/gtkrecentchoosermenu.c: Ellipsize the menu items label
3231         if they grow too much. (#357303)
3232
3233 2007-01-14  Matthias Clasen  <mclasen@redhat.com>
3234
3235         * gtk/gtkicontheme.c (theme_lookup_icon): When finding a matching
3236         non-scalable dir, keep going and look for a closer match.
3237         (#395830, Luca Ferretti)
3238
3239 2007-01-14  Christian Persch  <chpe@svn.gnome.org>
3240
3241         * gtk/gtkclipboard.c: (gtk_clipboard_set_text),
3242         (gtk_clipboard_set_image): Use gtk_target_table_new_from_list and
3243         gtk_target_table_free instead of duplicating the code. Bug #396493.
3244
3245 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3246
3247         * gtk/gtkuimanager.c: Don't crash if menu or toolbar
3248         positions can't be found.  (#396161, Hans Breuer)
3249
3250 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3251
3252         * gtk/gtkselection.c (_gtk_selection_request): Plug 
3253         memory leaks.  (#396160, Carlos Garcia Campos)
3254
3255 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3256
3257         * configure.in: Link libgtk against Xfixes.  (#396074,
3258         Tommi Komulainen)
3259
3260 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3261
3262         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Avoid
3263         a compiler warning.  (#395045, Chris Wilson)
3264
3265 2007-01-13  Hans Breuer <hans@breuer.org>
3266
3267         * gtk/gtkprintoperation-win32.c : take the custom tab label from
3268         gtk_print_operation_set_custom_tab_label() into account (bug #390746).
3269
3270         * gtk/gtkimmulticontext.c : don't include "gtkprivate.h" to avoid
3271         differing definitions of GTK_LOCALEDIR (bug #396175).
3272
3273         * gtk/gtktreeview.c : use g_snprintf instead of snprintf, which is
3274         not available everywhere
3275
3276         * gtk/makefile.msc.in : updated
3277
3278 2007-01-12  Michael Natterer  <mitch@imendio.com>
3279
3280         * gtk/gtkentry.c (gtk_entry_button_press): don't add
3281         entry->scroll_offset to entry->drag_start_y. Fixes the entry
3282         starting drags after ridiculously small mouse movements.
3283
3284 2007-01-11  Richard Hult  <richard@imendio.com>
3285
3286         * demos/gtk-demo/main.c: (load_file): Close the file after it's
3287         loaded (bug #395316).
3288
3289 2007-01-11  Kjartan Maraas  <kmaraas@gnome.org>
3290
3291         * gtk/gtkfilesystemunix.c: (expand_tilde):
3292         Make a single tilde go to $HOME in the location entry.
3293         Patch from Yevgen Muntyan. Closes the gtk+ part of
3294         bug #334168.
3295
3296 2007-01-10  Behdad Esfahbod  <behdad@gnome.org>
3297
3298         * gdk/gdkpango.c (gdk_draw_layout_with_colors):
3299         * gtk/gtklabel.c (gtk_label_size_request):
3300         Use pango_matrix_transform_rectangle(). (#340141)
3301
3302         * configure.in: Bump pango requirement to 1.15.3.
3303
3304 2007-01-10  Kristian Rietveld  <kris@imendio.com>
3305
3306         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_init):
3307         refactor to initialize indicator_size to TOGGLE_WIDTH instead
3308         of the hardcoded value of 12.
3309
3310 2007-01-09  Matthias Clasen  <mclasen@redhat.com>
3311
3312         * configure.in: Fix the directfb cairo test. (#394855, 
3313         Josselin Mouette)
3314
3315 2007-01-09  Behdad Esfahbod  <behdad@gnome.org>
3316
3317         * configure.in: Fix comment for --with-included-loaders.  That option
3318         affects builds with module loading enabled too.
3319
3320 2006-01-08  Peter Teichman  <peter@novell.com>
3321
3322         * gtk/gtkfilechooserdefault.c:
3323         * gtk/gtkfilechooserprivate.h:
3324         * gtk/gtkfilechoosersettings.c:
3325         * gtk/gtkfilechoosersettings.h:
3326         Save the expanded state of the folder browser with the file
3327         chooser settings.  Resolves the expander portions of (#153828,
3328         Lemmit Kaplinski)
3329
3330 2007-01-08  Emmanuele Bassi  <ebassi@gnome.org>
3331
3332         * gtk/gtkrecentchoosermenu.c (gtk_recent_chooser_menu_create_item):
3333         Don't leak the icon pixbuf after setting it to the image menu
3334         item.  Found by Paolo Borelli.
3335
3336 2007-01-08  Matthias Clasen  <mclasen@redhat.com>
3337
3338         * gtk/gtktreemodel.c (gtk_tree_path_to_string): Don't 
3339         corrupt memory when faced with paths with ridiculously
3340         large indices. Found by the GTKVTS test suite.  
3341
3342 2007-01-08  Matthias Clasen  <mclasen@redhat.com>
3343
3344         * gtk/gtkmodules.c (_gtk_modules_init): Set 
3345         default_display_opened before loading modules.  (#393102,
3346         Brian Cameron)
3347  
3348 2007-01-07  Matthias Clasen  <mclasen@redhat.com>
3349
3350         * gtk/gtktextview.c (gtk_text_view_set_border_window_size):
3351         Call text_window_realize() with the correct parameters.
3352         (#393813, Yevgen Muntyan)
3353
3354 2007-01-07  Matthias Clasen  <mclasen@redhat.com>
3355
3356         * gtk/gtkstatusbar.c: Move docs inline, and expand them 
3357         a bit.
3358
3359 2007-01-06  Matthias Clasen  <mclasen@redhat.com>
3360
3361         * gtk/gtklabel.c: Make line wrapping work with width-chars
3362         and max-width-chars, and simplify the storage of wrap-width.
3363         (#322580, Itai Bar-Haim)
3364
3365 2007-01-06  Tor Lillqvist  <tml@novell.com>
3366
3367         * gdk/win32/cursor.bdf: New file. Downloaded from
3368         freedesktop.org's webcvs. Slighly edited cursors "crosshair",
3369         "diamond_cross", "draft_large", "gobbler" and "target" to fix
3370         #392504. It is possible that the same end result could have been
3371         achieved by tweaking bdfcursor.c instead.
3372         
3373         * gdk/win32/bdfcursor.c: Add optional debugging output.
3374
3375         * gdk/win32/xcursors.h: Regenerated.
3376
3377 2007-01-05  Matthias Clasen  <mclasen@redhat.com>
3378
3379         * gtk/gtknotebook.c (gtk_notebook_set_menu_label_text): Left-align
3380         menu labels.  (#393255, Michail Crayson)
3381
3382 2007-01-05  Kristian Rietveld  <kris@gtk.org>
3383
3384         * gtk/gtktreeview.c (gtk_tree_view_dy_to_top_row): handle tree
3385         == NULL.  (Fixes #392685, reported by Yevgen Muntyan).
3386
3387 2007-01-05  Kristian Rietveld  <kris@gtk.org>
3388
3389         * gtk/gtktreeview.c (gtk_tree_view_row_changed): do allow to
3390         invalidate nodes if the tree view is not realized. (#363147,
3391         Carlos Garnacho, Miguel Cabrera).
3392
3393 2007-01-05  Matthias Clasen  <mclasen@redhat.com>
3394
3395         * gtk/gtkmenu.c (gtk_menu_paint): Take the scroll arrow into
3396         account when drawing the background.  (#393166, Benjamin Berg)
3397
3398 2007-01-05  Behdad Esfahbod  <behdad@gnome.org>
3399
3400         * gtk/gtklabel.c (get_layout_location): Fix broken width computation,
3401         again.
3402
3403 2007-01-05  Carlos Garnacho  <carlosg@gnome.org>
3404
3405         * gtk/gtknotebook.c (gtk_notebook_size_request): take into account
3406         both scroll arrows when calculating size request in GTK_POS_LEFT or
3407         GTK_POS_RIGHT notebooks. (#393124, reported by Christian Persch)
3408
3409 2007-01-05  Michael Natterer  <mitch@imendio.com>
3410
3411         * gtk/gtkwindow.c (gtk_window_key_release_event): chain up to
3412         the right function (fix taken from maemo-gtk).
3413
3414 2007-01-05  Behdad Esfahbod  <behdad@gnome.org>
3415
3416         * gdk/gdkprivate.h:
3417         * gdk/gdkpango.c (gdk_draw_layout_line_with_colors),
3418         (gdk_draw_layout_with_colors):
3419         * gdk/gdkwindow.c (gdk_window_draw_glyphs_transformed):
3420         Avoid overflow when converting coordinates to Pango units. (#332266,
3421         Jody Goldberg)
3422
3423 2007-01-04  Matthias Clasen  <mclasen@redhat.com>
3424
3425         * gtk/gtkcombobox.c (gtk_combo_box_popup): move set_cursor
3426         after realization of the popup window, so clamp node doesn't fail.
3427         (#346616, Tommi Komulainen, patch by Kristian Rietveld).
3428
3429 2007-01-04  Behdad Esfahbod  <behdad@gnome.org>
3430
3431         * gtk/gtklabel.c (get_layout_location): Fix uninitialized width
3432         variable.
3433
3434 2007-01-04  Matthias Clasen  <mclasen@redhat.com>
3435
3436         * gtk/Makefile.am:
3437         * gdk-pixbuf/Makefile.am:
3438         * configure.in:
3439         * gdk/win32/rc/gdk.rc.in: Cross-compilation fixes.
3440         (#392646, Yevgen Muntyan)
3441
3442 2007-01-04  Matthias Clasen  <mclasen@redhat.com>
3443
3444         * demos/gtk-demo/textscroll.c:
3445         * gtk/gtkhandlebox.c:
3446         * gtk/gtkcolorsel.c: Fix some compiler warnings.
3447
3448 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3449
3450         * gtk/gtktextview.c: Rework the beep-on-uninserted-text
3451         by calling the input method regardless of editability,
3452         and beeping from the commit/preedit-changed handlers.
3453         (#390514, Yevgen Muntyan)
3454
3455 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3456
3457         Fix #332604, reported by Joe Wreschnig, patch
3458         by Jan Arne Petersen and Behdad Esfahbod.
3459
3460         * gtk/gtklabel.c (gtk_label_size_allocate): Only
3461         set the width of the layout when necessary.
3462         (get_layout_location): Use pango_layout_get_pixel_extents()
3463         instead of pango_layout_get_width().
3464
3465 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3466
3467         * modules/printbackends/cups/gtkprintbackendcups.c 
3468         (available_choices): Don't leak conflicts.
3469
3470         * gtk/gtkprintoperation.c (gtk_print_operation_finalize):
3471         Don't leak the status string.
3472
3473 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3474
3475         * gtk/gtkfilechooserdefault.c (update_chooser_entry):
3476         Exit early if we can't get file info - this happens
3477         if the iter points to the row where we are editing
3478         the name for a newly created folder.  (#392191, Michael
3479         Partridge, patch by Kristian Rietveld)
3480
3481 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3482
3483         * gtk/*.c:
3484         * gdk/x11/*.c: Apply a patch by Chris Wilson to
3485         avoid spurious valgrind warnings from XSendEvent() 
3486         calls.  (#392532)
3487
3488         * modules/printbackends/cups/gtkprintbackendcups.c: Close
3489         the http connection after getting the PPD.
3490
3491         * gtk/gtkprinteroptionwidget.c (filesave_changed_cb):
3492         Fix memory leaks.  
3493
3494 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3495
3496         * gtk/gtkassistant.c (remove_page): If the current page
3497         is removed, always pick a different one.  (#392457, 
3498         Colin Watson)
3499
3500 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3501
3502         * modules/printbackend/cups/*.c: Coding style cleanups.
3503
3504 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3505
3506         * configure.in: Export SED to make sourcing of
3507         libtool work. Tighten up the directfb pkgconfig check.
3508
3509 2007-01-03  Michael Natterer  <mitch@imendio.com>
3510
3511         * gtk/gtkstyle.c (option_menu_get_props)
3512         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Use 
3513         gtk_border_free when freeing borders.
3514
3515 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3516
3517         * gtk/gtkentry.c (get_text_area_size): Work when the
3518         entry is not realized.  (#392315, Yevgen Muntyan)
3519
3520         * gtk/gtkentry.c (gtk_entry_queue_draw): Use 
3521         GTK_WIDGET_DRAWABLE() here.  (#392227, Chris Wilson)
3522
3523         * gtk/gtkentry.c (cursor_blinks): Don't get settings
3524         unnecessarily.  (#392227)
3525
3526 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3527
3528         * gtk/gtkwindow.c (gtk_window_move_resize): Only process
3529         updates on the window at hand, not on all windows, to
3530         avoid violating resize/redraw ordering constraints.
3531         (#362406, Owen Taylor)
3532         
3533 2007-01-03  Kristian Rietveld  <kris@gtk.org>
3534
3535         * gtk/gtkcellrendererprogress.c
3536         (gtk_cell_renderer_progress_class_init): fix docs.
3537
3538 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3539         
3540         * gtk/updateiconcache.c: Include locale.h
3541
3542 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3543
3544         * gtk/updateiconcache.c (main): Call setlocale().
3545
3546         * gtk/gtkfilesel.c:
3547         * gtk/gtkfilesystemunix.c:
3548         * gtk/gtkfilesystemwin32.c:
3549         * gtk/gtkfilechoosersettings.c:
3550         * gtk/updateiconcache.c: Consistently use folder instead of
3551         directory in translated messages.  (#344584, Javier F. Serrador)
3552
3553 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3554
3555         Try to fix #315732, reported by Luke Hutchinson:
3556
3557         * gdk/x11/xsettings-client.[hc]:
3558         * gdk/x11/gdkdevents-x11.c: Don't assume that ref'ing a GdkWindow
3559         will guarantee that it can be looked up in the xid hash later.
3560         Also, use the nesting server grab function during the xsettings
3561         client initialization. Finally, make xsettings client not
3562         eat DestroyNotifys so that GDK can do its regular cleanup. 
3563
3564 2007-01-02  Michael Natterer  <mitch@imendio.com>
3565
3566         * gtk/gtkrange.c (gtk_range_scroll) (gtk_range_move_slider): beep
3567         when a keybinding didn't change adjustment->value.
3568
3569 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3570
3571         * gtk/gtktextbuffer.c (gtk_text_view_key_press_event):
3572         Try harder not to beep on events which are not meant to
3573         insert stuff in the buffer.  (#390514, Yevgen Muntyan) 
3574
3575 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3576
3577         * gtk/gtktextbufferrichtext.c: Small documentation fixes.
3578
3579 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
3580
3581         * gtk/gtkentry.c (get_text_area_size): Center in the frame.  
3582         (#304482, Rob Staudinger, patch by  Richard Stellingwerff)
3583
3584 2007-01-02  Michael Emmel  <mike.emmel@gmail.com>
3585
3586         * gdkwindow-directfb.c: fixed leak of dfb resource on destroy 
3587
3588 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3589
3590         * gtk/gtkscrolledwindow.h:
3591         * gtk/gtkscrolledwindow.c: Only handle key bindings
3592         for scrolling if the scrollbars are visible.
3593         (#340135, Christian Persch)
3594
3595 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3596
3597         * gtk/gtktextview.c (gtk_text_view_scroll_hpages):
3598         Don't segfault on horizontal scrolling.  
3599
3600 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3601
3602         * gtk/gtknotebook.h:
3603         * gtk/gtknotebook.c: Only handle key bindings for
3604         tab reordering if the tabs are shown and reorderable. 
3605         (#390468, Yevgen Muntyan)
3606
3607         * gtk/gtkmarshalers.list: Add required marshaler
3608
3609 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3610
3611         * gtk/gtkcontainer.c (gtk_container_class_list_child_properties):
3612         Mention in the docs that the return value is
3613         NULL-terminated.  (#383373, Christian Neumair)
3614
3615 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3616
3617         * gtk/gtkicontheme.c (load_themes): Waste less time
3618         with non-directories.  (#391725, Chris Wilson)
3619
3620 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3621
3622         * gtk/gtkcellrendererprogress.c: Implement activity mode
3623         for GtkCellRendererProgress.  (#377851, Brad Taylor)
3624
3625 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3626
3627         Fix some IPP compliance issues.  (#391523, Albrecht Dress)
3628
3629         * modules/printbackends/cups/gtkcupsutils.c
3630         (gtk_cups_request_encode_option): Use IPP_TAG_JOB, not
3631         IPP_TAG_OPERATION.
3632         * modules/printbackends/cups/gtkprintbackendcups.c
3633         (gtk_print_backend_cups_print_stream): Don't add the
3634         requesting-user-name attribute a second time. 
3635
3636 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
3637
3638         * gtk/gtkimcontextsimple.c: Fix en/em dash confusion.  (#378462)
3639
3640 2006-12-31  Emmanuele Bassi  <ebassi@gnome.org>
3641
3642         * gtk/gtkrecentchoosermenu.c (set_recent_manager): Use the
3643         right object when disconnecting from the GtkRecentManager::changed
3644         signal; save us a few indirections using a variable.
3645
3646 2006-12-31  Emmanuele Bassi  <ebassi@gnome.org>
3647
3648         * gtk/gtkrecentchoosermenu.c: Move the signal and idle
3649         disconnections into the dispose function, as well as the
3650         object unrefs; reset every handler id and the
3651         pointers. (suggested by Paolo Borelli, #390873)
3652
3653 2006-12-31  Matthias Clasen  <mclasen@redhat.com>
3654
3655         * gtk/gtkprintoperation-win32.c: Include windows.h (#391229,
3656         Kazuki Iwamoto)
3657
3658 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3659
3660         * gtk/gtktextview.c (gtk_text_view_destroy): Remove the
3661         scroll timeout.  (#390872, Yevgen Muntyan)
3662
3663 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3664
3665         * gtk/gtkprintoperation-unix.c:
3666         * gtk/gtkprintbackend.c:
3667         * gtk/gtkfilechooserdefault.c:
3668         * gtk/gtksettings.c: Move a few settings to gtksettings.c
3669         to make sure they show up in the docs.  (#365364, Christian
3670         Persch)
3671
3672 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3673
3674         * gtk/gtkassistant.c: Redraw assistant on reallocate
3675         to avoid rendering glitches.  (#343956, Christian
3676         Persch, Carlos Garnacho)
3677
3678 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3679
3680         * gtk/gtkrange.c: Typo fix.  (#352121, Clytie Siddall)
3681
3682 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3683
3684         * gtk/gtkaction.c: Improve the docs of the "label" 
3685         property.  (#341730, Kristof Vansant)
3686
3687 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3688
3689         * gtk/gtkwindow.c (gtk_window_compute_configure_request_size):
3690         Correctly handle min size. (#320465, Philipp Langdale)
3691
3692 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3693
3694         * gtk/prop-editor.c: Implement editing of flags.
3695
3696 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
3697
3698         * gtk/gtkentry.c:
3699         * gtk/gtklabel.c:
3700         * gtk/gtkpaned.c:
3701         * gtk/gtkstatusbar.c:
3702         * gtk/gtktextview.c: Don't install cursors on insensitive
3703         widgets.  (#358864, Jan Schampera)
3704
3705 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
3706
3707         * gtk/gtkrecentmanager.h:
3708         * gtk/gtkprintoperation.c: Fix doc typos.  (#370909,
3709         Shiino Yuki)
3710
3711         * gtk/gtkstyle.c (gtk_style_attach): Clarify docs.  (#353423,
3712         Christian Persch)
3713
3714         * gtk/gtkentry.c (blink_cb):
3715         * gtk/gtktextview.c (blink_cb): Don't die in an assertion
3716         if focus went missing. Just warn, clean up and continue.
3717         (#374378)
3718
3719 2006-12-29  Carlos Garnacho  <carlosg@gnome.org>
3720
3721         * gtk/gtknotebook.c (gtk_notebook_scroll): return if the widget that
3722         originally received the event is a notebook page. (#315440, reported
3723         by Mateusz Stefek)
3724
3725 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
3726
3727         * gdk/gdkcolor.c (gdk_color_hash): Fix a typo. (#390613,
3728         Paolo Borelli)
3729
3730 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
3731
3732         * tests/prop-editor.c: Display children of containers
3733         and cell renderers of cell layouts.
3734
3735         * gtk/gtk.symbols:
3736         * gtk/gtkcelllayout.[hc] (gtk_cell_layout_get_cells):
3737         New function to get the cell renderers of a cell layout.
3738
3739         * gtk/gtktreeviewcolumn.c:
3740         * gtk/gtkcellview.c:
3741         * gtk/gtkiconview.c: Implement get_cells.
3742
3743 2006-12-28  Matthias Clasen  <mclasen@redhat.com>
3744
3745         * gtk/gtkiconview.c: Use word wrapping by default, and
3746         center multiline labels.  (#318763, Ross Burton)
3747
3748         * gtk/gtkcellrenderertext.c (get_layout): Remove a special
3749         case for single-line layouts.
3750
3751 2006-12-28  Matthias Clasen  <mclasen@redhat.com>
3752
3753         * gtk/gtkarrow.c: Fix a typo in the docs.  (#390423,
3754         David Lodge)
3755
3756         * gtk/gtkuimanager.c (update_node): Only use the results
3757         of find_menu/toolbar_position() if they succeed. May fix
3758         bug #388041.
3759
3760 2006-12-28  Matthias Clasen  <mclasen@redhat.com>
3761
3762         * gdk/gdk.c: Fix some formatting errors in docs.  
3763
3764 2006-12-28  Tor Lillqvist  <tml@novell.com>
3765
3766         * gtk/gtkstatusicon.c (gtk_status_icon_finalize)
3767         (gtk_status_icon_update_image): Don't leak HICONs on
3768         Win32. (#364868, Hiroyuki Yamamoto)
3769
3770 2006-12-28  Carlos Garnacho  <carlosg@gnome.org>
3771
3772         Make GtkNotebook able to drop detached tabs anywhere. Bug #360225.
3773
3774         * gtk/gtkwidget.c (gtk_widget_class_init): add "drag-failed" signal.
3775         * gtk/gtkmarshalers.list: add new marshaler definition.
3776         * gtk/gtkenums.h: add GtkDragResult enum.
3777
3778         * gtk/gtkdnd.c (gtk_drag_drop_finished): emit "drag-failed" if DND
3779         operation wasn't successful.
3780         (_gtk_drag_source_handle_event) (gtk_drag_drop)
3781         (gtk_drag_selection_get) (gtk_drag_cancel) (gtk_drag_key_cb)
3782         (gtk_drag_grab_broken_event_cb) (gtk_drag_grab_notify_cb)
3783         (gtk_drag_button_release_cb) (gtk_drag_abort_timeout): tell
3784         gtk_drag_drop_finished() the operation result.
3785
3786         * gtk/gtknotebook.c (gtk_notebook_drag_failed): new function.
3787         (gtk_notebook_drag_data_get): do not call window creation hook here.
3788         (gtk_notebook_init): do not set "application/x-rootwindow-drop"
3789         target, instead connect to "drag-failed".
3790         (gtk_notebook_draw_focus): fix potential crasher if cur_page is NULL.
3791
3792 2006-12-28  Mikael Hallendal  <micke@imendio.com>
3793
3794         * gdk/quartz/gdkevents-quartz.c: Factored out the event loop 
3795         integration into gdkeventloop-quartz.c.
3796
3797         * gdk/quartz/Makefile.am: Added gdkeventloop-quartz.c
3798
3799         * gdk/quartz/gdkeventloop-quartz.c: New file containing the event loop 
3800         integration.
3801
3802 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3803
3804         * modules/printbackends/lpr/gtkprintbackendlpr.c 
3805         (gtk_print_backend_lpr_print_stream): Close the io channel
3806         on unref.  (#390159, Joe Markus Clarke)
3807
3808 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3809
3810         * gdk/gdk.h: Remove redundant declarations (#390097,
3811         Christian Persch)
3812
3813 2006-12-27  Kristian Rietveld  <kris@gtk.org>
3814
3815         Support inverting arrows via XSetting. (#377979, Yevgen Muntyan).
3816
3817         * gtk/gtksettings.c (gtk_settings_class_init): add new setting
3818         gtk-alternative-sort-arrows.
3819
3820         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): add
3821         new setting.
3822
3823         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: set new
3824         gtk-alternative-sort-arrows setting to true.
3825
3826         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
3827         invert direction if gtk-alternative-sort-arrows is TRUE.
3828
3829 2006-12-27  Tor Lillqvist  <tml@novell.com>
3830
3831         * gtk/gtk.symbols: Add gtk_status_icon_get_screen and
3832         gtk_status_icon_set_screen.
3833
3834         * gtk/gtkstatusicon.c: Implement gtk_status_icon_position_menu()
3835         on Windows. Keep track of where the last button click on the
3836         taskbar icon took place, and return that. Obviously not correct if
3837         no button has ever been clicked on the icon, or if the geometry of
3838         the taskbar has changed since. But for most use cases where a menu
3839         is going to be displayed as a direct result of a button click on
3840         the status icon, works fine. (#377349)
3841
3842         Implement getting the orientation property on Windows.
3843
3844         (gtk_status_icon_embedded_changed)
3845         (gtk_status_icon_orientation_changed): Ifdefify these functions
3846         that are used only on X11.
3847
3848 2006-12-27  Tor Lillqvist  <tml@novell.com>
3849
3850         * gtk/gtkfilesystemwin32.c (execute_callbacks): Fix
3851         typo. (#390035, Kazuki Iwamoto)
3852
3853 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3854
3855         * gtk/gtkcellview.c (gtk_cell_view_set_model): Accept NULL.
3856
3857         * gtk/gtkcombobox.c (gtk_combo_box_set_model):
3858         (gtk_combo_box_unset_model): Handle repeated unsetting
3859         of models without warnings.  (#367529, Robert Ancell)
3860
3861 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3862
3863         * modules/printbackends/cups/gtkcupsutils.c: 
3864         * modules/printbackends/cups/gtkprintbackendcups.c: Use
3865         getters for http fields where available.  (#364866, 
3866         Björn Lindqvist)
3867
3868 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3869
3870         * gtk/gtkwidget.c (gtk_widget_show): Add a g_return_if_fail.
3871         (#362614, Xan Lopez)
3872
3873 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3874
3875         * gtk/gtkuimanager.c (update_node): If a required action
3876         is missing, don't recurse over the children.  (#349119,
3877         Chris Moller)
3878
3879 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
3880
3881         Fix a few problems with nested menus in comboboxes
3882         (#386694, Yevgen Muntyan)
3883
3884         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Always
3885         connect the activate callback.
3886         (gtk_combo_box_menu_item_activate): Do nothing if called on
3887         an item with a submenu.
3888         (gtk_combo_box_menu_row_deleted): Remove a submenu when it
3889         is empty.
3890
3891 2006-12-26  Mariano Suárez-Alvarez  <mariano@gnome.org>
3892
3893         * gtk/gtkfilechooserbuuton.[hc]: Add a file-set signal to the
3894         filechooser button. Bug 353196.
3895
3896 2006-12-26  Kristian Rietveld  <kris@gtk.org>
3897
3898         * gtk/gtktreeview.c (gtk_tree_view_search_init): fix typo causing
3899         the search dialog timeout never to be refreshed. (#389581,
3900         Andrzej Szombierski).
3901
3902 2006-12-26  Kristian Rietveld  <kris@gtk.org>
3903
3904         Lots of scrolling fixes.  Made scrolling work properly in not fully
3905         validated tree views; fixed a bunch of corner cases.
3906
3907         * gtk/gtktreeview.c (validate_visible_area): if a row's dy is past
3908         upper - page_size, we know it is located at the end so the test for
3909         dy + height has been dropped.
3910         In the same case if area_below < 0, we know this is the last node
3911         in the tree view so area_above is page_size - height of this row.
3912         (validate_visible_area): got rid of subtracting new_height -
3913         old_height from area_{below,above}, it didn't make any sense at
3914         all and the full height of the row should be subtracted instead.
3915         (validate_visible_area): when scrolling to a given path, set the
3916         top row directly together with the dy offset, then sync that top_row
3917         to the dy.
3918         (gtk_tree_view_set_top_row): new function to directly set a top_row.
3919         (gtk_tree_view_dy_to_top_row): refactored to use
3920         gtk_tree_view_set_top_row().
3921         (gtk_tree_view_top_row_to_dy): make sure dy >= 0 when done.
3922         (gtk_tree_view_adjustment_changed): only update our dy and
3923         top_row if the adjustment's dy actually changed.
3924
3925 2006-12-26  Christian Persch  <chpe@cvs.gnome.org>
3926
3927         * gtk/gtknotebook.c: (gtk_notebook_real_insert_page):
3928         Return the correct value from gtk_notebook_insert_page if the
3929         page-added handler reorders the tabs. Bug #345094.
3930
3931 2006-12-26  Carlos Garnacho  <carlosg@gnome.org>
3932
3933         Fix small regressions in GtkNotebook tab detaching. Bug #378852.
3934
3935         * gtk/gtknotebook.c (gtk_notebook_do_arrow): grab focus to allow tabs
3936         scrolling when hovering with a detached tab.
3937         (gtk_notebook_stop_reorder): Do not deparent the wrong tab if the
3938         focus tab has changed during a tab DND operation.
3939         (gtk_notebook_drag_end): ensure that the dropped tab gets focused.
3940         (gtk_notebook_paint): do not take cur_page as a reference to paint the
3941         box if it's detached.
3942         (gtk_notebook_calculate_tabs_allocation): focus_tab may be different
3943         to the detached tab if we hover the arrows during a tabs detaching 
3944         operation, do not allocate it unconditionally in 0,0.
3945
3946 2006-12-26  Carlos Garnacho  <carlosg@gnome.org>
3947
3948         Expose improvements for GtkNotebook. Bug #383435
3949
3950         * gtk/gtknotebook.c (gtk_notebook_expose): propagate the event to tab
3951         labels.
3952         (gtk_notebook_draw_focus): do not repaint the whole focused tab again.
3953         (gtk_notebook_draw_tab): do not send handmade expose events to tab
3954         labels.
3955
3956 2006-12-26  Matthias Clasen  <mclasen@redhat.com>
3957
3958         * gtk/gtkfilesystemunix.c (execute_callbacks): Return
3959         FALSE.  (#389623, Carlos Garnacho Parro)
3960
3961         * gtk/gtkrange.c (stop_scrolling): Avoid spurious
3962         redraws.
3963
3964 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
3965
3966         * gtk/gtkplug.c: (gtk_plug_construct_for_display),
3967         (gtk_plug_unrealize): Notify the "embedded" property also on
3968         normal construction and when destroying the socket window.
3969         Bug #388738.
3970
3971 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
3972
3973         * gtk/gtkaboutdialog.c: (gtk_about_dialog_class_init),
3974         (gtk_about_dialog_init), (display_credits_dialog),
3975         (display_license_dialog):
3976         * gtk/gtkfilechooserdialog.c: (gtk_file_chooser_dialog_class_init),
3977         (gtk_file_chooser_dialog_init),
3978         (gtk_file_chooser_dialog_constructor),
3979         (gtk_file_chooser_dialog_unmap):
3980         * gtk/gtkrecentchooserdefault.c:
3981         (_gtk_recent_chooser_default_init):
3982         * gtk/gtkrecentchooserdialog.c:
3983         (gtk_recent_chooser_dialog_class_init),
3984         (gtk_recent_chooser_dialog_init),
3985         (gtk_recent_chooser_dialog_constructor),
3986         (gtk_recent_chooser_dialog_unmap): Set the HIG spacings directly
3987         instead of using style-set handlers. Fix the filechooser's spacing
3988         between content and action area to 12px. Bug #372447.
3989
3990 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
3991
3992         * gtk/gtkstatusbar.c: (gtk_statusbar_size_allocate):
3993         Don't assume statusbar->label is the statusbar's frame's child when
3994         shrinking the size allocation when the grip is shown. Bug #372452.
3995
3996 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
3997
3998         * gtk/gtkpagesetupunixdialog.c: (printer_status_cb),
3999         (add_custom_paper): Fix mem leaks. Bug #389194.
4000
4001 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
4002
4003         * gtk/gtktextutil.c: Remove debug output.
4004
4005         * gtk/gtktextview.c: Improve the DND scrolling
4006         behaviour.  (#92387, Carlos Garnacho Parro)
4007
4008         * gtk/gtkaccellabel.c: Improve translators comments.  
4009         (#389298, Christian Persch)
4010
4011 2006-12-24  Bastien Nocera  <hadess@hadess.net>
4012
4013         * gtk/gtkrecentmanager.c: Fix typo (s/expansive/expensive)
4014         (#389183)
4015
4016 2006-12-24  Christian Persch  <chpe@cvs.gnome.org>
4017
4018         * docs/reference/gtk/gtk-sections.txt:
4019         * gtk/gtk.symbols:
4020         * gtk/gtkpagesetupunixdialog.c: (fill_paper_sizes_from_printer):
4021         * gtk/gtkprinter-private.h:
4022         * gtk/gtkprinter.c: (gtk_printer_list_papers):
4023         * gtk/gtkprinter.h: Make gtk_printer_list_papers public. Bug #345587.
4024
4025 2006-12-24  Carlos Garcia Campos  <carlosgc@gnome.org>
4026
4027         * gtk/gtkpagesetupunixdialog.c: Don't ignore reverse portrait option
4028         when is selected in page setup dialog. Fixes bug #365047.
4029
4030 2006-12-24  Behdad Esfahbod  <behdad@gnome.org>
4031
4032         * gtk/gtkentry.c (_gtk_entry_effective_inner_border):
4033         Use gtk_border_free when freeing border.
4034
4035 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
4036
4037         * gtk/gtkentry.c (gtk_entry_button_press): When
4038         shift-clicking, keep the larger part of the selection
4039         selected.  (#353709, Benjamin Otte)
4040
4041         * gtk/gtkbutton.c (gtk_button_get_props): Use 
4042         gtk_border_free when freeing borders.
4043
4044         * gtk/gtkbutton.c (gtk_button_grab_notify): Be more
4045         careful when faking a button release.  (#323146,
4046         Travis Abbott)
4047
4048         * gtk/gtkhandlebox.c (draw_textured_frame): Draw the
4049         handle with the right orientation, depending on the
4050         position of the handlebox.  (#159764, Benjamin Berg)
4051
4052 2006-12-24  Behdad Esfahbod  <behdad@gnome.org>
4053
4054         * gtk/gtkstyle.c (gtk_border_copy), (gtk_border_free): Use gslice for
4055         GtkBorder (#383557).
4056
4057 2006-12-24  Behdad Esfahbod  <behdad@gnome.org>
4058
4059         Bug 340141 – Update to Pango 1.16 API
4060
4061         * gdk/gdkpango.c (layout_iter_get_line_clip_region),
4062         (gdk_pango_layout_line_get_clip_region):
4063         * gtk/gtkcalendar.c (gtk_calendar_size_request):
4064         * gtk/gtkentry.c (gtk_entry_get_pixel_ranges),
4065         (get_layout_position), (gtk_entry_find_position),
4066         (gtk_entry_adjust_scroll):
4067         * gtk/gtkiconview.c (get_pango_text_offsets):
4068         * gtk/gtklabel.c (get_cursor_direction):
4069         * gtk/gtkstyle.c (get_insensitive_layout):
4070         * gtk/gtktextdisplay.c (render_para):
4071         * gtk/gtktextlayout.c (allocate_child_widgets),
4072         (find_display_line_below), (find_display_line_above),
4073         (gtk_text_layout_move_iter_to_previous_line),
4074         (gtk_text_layout_move_iter_to_next_line),
4075         (gtk_text_layout_move_iter_to_line_end),
4076         (gtk_text_layout_iter_starts_line),
4077         (gtk_text_layout_move_iter_to_x):
4078         * gtk/gtktextutil.c (limit_layout_lines):
4079         Use the _readonly version of pango_layout_iter_get_line(),
4080         pango_layout_iter_get_run(), pango_layout_get_line(), and
4081         pango_layout_get_lines().
4082
4083         * gtk/gtkmain.c (gtk_get_default_language): Use
4084         pango_get_default_language().
4085
4086 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
4087
4088         * gtk/gtkentry.c (gtk_entry_set_text): Emit changed
4089         and notify:text only once. The same fix was applied
4090         for replacing the selection via DND or copy-and-paste.
4091         (#64998, Damon Chaplin, Sven Herzberg)
4092
4093 2006-12-23  Matthias Clasen  <mclasen@redhat.com>
4094
4095         * gtk/gtkimmulticontext.c: Be careful to not override
4096         GTK+ translations with the translations of the input
4097         method.  (#317080, Tor Lillqvist)
4098
4099         * modules/input/imcedilla.c: Use standard macros
4100         for translation domain and locale dir.
4101
4102         * gtk/gtkimcontextsimple.c: Allow composing l with 
4103         stroke.  (#349638, Daniel Lublin)
4104
4105         * gtk/gen-paper-names.c: Fix a thinko in the suffix
4106         calculation.  (#382369, Christian Persch)
4107
4108         * gtk/paper_names_offsets.c: Regenerated.
4109
4110 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4111
4112         * modules/engines/pixbuf/pixbuf.h:
4113         * modules/engines/pixbuf/pixbuf-rc-style.h:
4114         * modules/engines/pixbuf/pixbuf-style.h: Move 
4115         G_GNUC_INTERNAL before function declarations.  (#352276,
4116         Damien Carbery)
4117
4118 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4119
4120         * demos/gtk-demo/*.c: Fix some leaks.  (#348108, Chris
4121         Wilson)
4122
4123 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4124
4125         * *.c: Replace a lot of idle and timeout calls by
4126         the new gdk_threads api. 
4127
4128         * gdk/gdk.symbols:
4129         * gdk/gdk.h:
4130         * gdk/gdk.c: Add functions to allow threadsafe handling
4131         of idles and timeouts wrt. to the GDK lock.  (#321886,
4132         Chris Wilson)
4133         
4134 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4135         
4136         * gdk/gdkpango.c: Use pango_cairo_show_error_underline.  
4137         (#340141, Behdad Esfahbod)
4138
4139         * configure.in: Check for getc_unlocked.
4140
4141         * gtk/xdgmime/xdgmimemagic.c: Use getc if getc_unlocked is
4142         unavailable.   (#381499)
4143
4144         * tests/teststatusicon.c: Fix a typo
4145
4146 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4147
4148         Make it possible to track the embeddedness of
4149         statusicon (#387215, Martyn Russell, patch by Christian
4150         Persch)
4151
4152         * gtk/gtkstatusicon.c: Add orientation and embedded properties.
4153         * gtk/gtkplug.c: 
4154         * gtk/gtkplug-x11.c: Add an embedded property.
4155         * tests/teststatusicon.c: Test the new properties.
4156
4157         * gtk/gtkwidget.c (gtk_widget_get_draw_rectangle): Don't
4158         leak draw_border.  (#387170, Kjartan Maraas)
4159
4160 2006-12-21  Matthias Clasen  <mclasen@redhat.com>
4161
4162          * gtk/gtkfilechooserembed.c (_gtk_file_chooser_embed_set_delegate()):
4163         Typo fix.  (#388123, Murray Cumming)
4164         
4165         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event):
4166         Generate double-click events.  (#380421, Tommi Komulainen)
4167
4168         * gdk/x1/gdkinput-xfree.c (_gdk_input_configure_event):
4169         (_gdk_input_enter_event): Correct return_if_fail checks.
4170         (#379803, Tommi Komulainen)
4171
4172         * gdk/gdkdisplay.c: Improve the docs of some functions operating
4173         on the default display.  (##353438, Mariano Suárez-Alvarez)
4174
4175 2006-12-21  Matthew Barnes  <mbarnes@redhat.com>
4176
4177         * docs/reference/gdk/gdk-sections.txt:
4178         * gdk/gdkcolor.[ch] (gdk_color_to_string): Add a function for
4179         converting a GdkColor to a string (#373856).
4180
4181         * configure.in: Bump pango requirement to 1.15.2.
4182
4183 2006-12-20  Matthias Clasen  <mclasen@redhat.com>
4184         
4185         * gdk/keynames.txt: Mark arrow keys as translatable.  (#369506,
4186         Bastian Nocera)
4187
4188         * gdk/keyname-table.h: Regenerated
4189
4190         * gtk/gtktextbuffer.c: Add signal documentation.  (#317064,
4191         Søren Wedel Nielsen)
4192
4193         * gtk/gtktextview.c (gtk_text_view_start_selection_drag):
4194         Silently return if a drag is already in progress, rather
4195         than asserting.  (#335622, Li Yuan, testcase by Erwann Chenede)
4196
4197         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new_with_dialog):
4198         Allow any GtkDialog that implements GtkFileChooser as
4199         dialog.  (#335473, Tommi Komulainen)
4200
4201 2006-12-20  Mikael Hallendal  <micke@imendio.com>
4202
4203         * gtk/gtkstatusicon.c: (gtk_status_icon_init): Fixed a last minute
4204         change in the quartz backend.
4205
4206 2006-12-20  Mikael Hallendal  <micke@imendio.com>
4207
4208         * gtk/Makefile.am: Added gtkstatusicon-quartz.c
4209         * gtk/gtkstatusicon-quartz.c: Implements the quartz backend for the
4210         status icon.
4211         * gtk/gtkstatusicon.c: Hooked in the new quartz backend. Bug #387874.
4212
4213 2006-12-19  Matthias Clasen  <mclasen@redhat.com>
4214
4215         * gtk/gtkprintunixdialog.c: Add a tooltip explaining the
4216         format of page ranges, and improve the page sequence icon
4217         for the case of n_copies == 1.
4218  
4219 2006-12-19  Mikael Hallendal  <micke@imendio.com>
4220
4221         * gdk/quartz/gdkcursor-quartz.c: Splitted out the GdkPixbuf to NSImage
4222         routine so that it can be used from libgtk as well (needed for
4223         upcoming GtkStatusIcon support in the Quartz port).
4224         * gdk/quartz/gdkevents-quartz.c: Don't assume that all NSWindows are
4225         created from GDK, this is not true for the status icon.
4226         * gdk/quartz/gdkprivate-quartz.h:
4227         * gdk/quartz/gdkquartz.h: Added 
4228         gdk_quartz_pixbuf_to_ns_image_libgtk_only so that it is available to 
4229         the status icon code.
4230
4231 2006-12-16  Tristan Van Berkom <tvb@gnome.org>
4232
4233         * gtk/gtkmessagedialog.c: Added return_if_fail (image) to
4234         gtk_message_dialog_set_image ()
4235
4236         * gtk/gtkscrolledwindow.c: Fixed a bug in set_property()
4237         (setting "window-placement-set" could result in a crash because
4238         of boolean/enum mixup)
4239
4240 2006-12-15  Federico Mena Quintero  <federico@novell.com>
4241
4242         Merged from gtk-2-10:
4243
4244         * gtk/gtkmenu.c (gtk_menu_set_title): Don't try to optimize for
4245         the case where the new title is the same as the old title, to
4246         preserve the behavior from GTK+ 2.8 (NULL and "" titles are not
4247         equivalent).  Handle the case where title == priv->title.  This
4248         was found by the LSB compatibility tests:
4249         https://bugzilla.novell.com/show_bug.cgi?id=223882
4250
4251 2006-12-15  Dom Lachowicz <domlachowicz@gmail.com>
4252
4253         * gtk/gtkcombobox.c: Make GtkComboBox in "appears-as-list" mode
4254         more closely resemble its Win32 counterpart. Bug #340204.
4255
4256 2006-12-14  Carlos Garnacho  <carlosg@gnome.org>
4257
4258         * gtk/gtkcalendar.c: draw arrows pointing to the right correctly
4259         placed inside their GdkWindow. Bug #385672.
4260
4261 2006-12-14  Christian Persch  <chpe@cvs.gnome.org>
4262
4263         * gtk/gtkiconview.c: Fix docs typo. Bug #385642.
4264
4265 2006-12-13  Dom Lachowicz <domlachowicz@gmail.com>
4266
4267         * src/modules/engines/ms-windows/msw_style.c: Bug 351679 - Notebooks 
4268         drawn with extra line below tab in MS-Windows theme. Patch by 
4269         Cody Russell
4270         
4271 2006-12-13  Matthias Clasen  <mclasen@redhat.com>
4272
4273         * gtk/Makefile.am: Add --unlink-tempfile to the evince call
4274         for print preview.  (#370041, Ghee Teo)
4275
4276 2006-12-11  Matthias Clasen  <mclasen@redhat.com>
4277
4278         * gtk/gtkprogressbar.c (gtk_progress_bar_paint_text): Be more
4279         careful when overdrawing antialiased text.  (#352435, Alex Jones,
4280         patch by Benjamin Otte)
4281
4282         * gtk/gtksettings.c: Change the way in which color scheme information
4283         is merged to correctly handle vanishing colors.  (#374420, 
4284         Benjamin Berg, patch by Callum McKenzie) 
4285         Also allow to separate entries in color schemes by ';' 
4286         instead of newline.  
4287
4288 2006-12-10  Matthias Clasen  <mclasen@redhat.com>
4289
4290         * modules/printbackends/cups/gtkcupsutils.c (gtk_cups_request_encode_option): 
4291         Properly pass multi-value options to cups.  (#355350, Jürg Billeter) 
4292
4293 2006-12-10  Kristian Rietveld  <kris@gtk.org>
4294
4295         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_focus_out_event):
4296         cancel editing (ie. don't accept changes) when the entry loses
4297         focus. (Fixes #164494, reported by Chris Rouch).
4298
4299 2006-12-10  Matthias Clasen  <mclasen@redhat.com>
4300
4301         * configure.in: Correct a misapplied patch. 
4302
4303 2006-12-10  Tor Lillqvist  <tml@novell.com>
4304
4305         * gtk-zip.sh.in: Put gdk-pixbuf-query-loaders.exe and
4306         gtk-query-immodules-2.0.exe in the runtime zipfile instead of
4307         developer zipfile. Users might add pixbuf loaders or immodules
4308         even if they are not interested in developing gtk+-using software.
4309
4310 2006-12-10  Matthias Clasen  <mclasen@redhat.com>
4311
4312         * configure.in: Check for crt_extern.h and _NSGetEnviron.
4313         * gdk/x11/gdkspawn-x11.c: Fix compilation on Darwin where
4314         environ is not available.  (#384168, Min Sik Kim)
4315
4316 2006-12-07  Paolo Maggi  <paolo@gnome.org>
4317
4318         Fixes bug #383407
4319         
4320         * gtk/gtkentry.c (gtk_entry_set_text): check for
4321         completion->priv->changed_id > 0 before calling 
4322         g_signal_handler_[un]block.
4323         (gtk_entry_completion_key_press): does not block/unblock the "changed"
4324         signal before calling gtk_entry_set_text.
4325         
4326 2006-12-07  Carlos Garnacho  <carlosg@gnome.org>
4327
4328         * gtk/gtkcellrendererprogress (compute_dimensions): do not use
4329         xthickness/ythickness, they aren't used any longer for drawing.
4330
4331 2006-12-07  Matthias Clasen  <mclasen@redhat.com>
4332
4333         * gtk/gtkrc.c (_gtk_rc_init): Fix clipping of accelerator
4334         underlines by giving labels a small draw-border.
4335
4336 2006-12-06  Kristian Rietveld  <kris@gtk.org>
4337
4338         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render):
4339         draw progress bar through theme engine instead of using our own
4340         custom cairo drawing code (#377244, patch from Carlos Garnacho).
4341
4342 2006-12-06  Matthias Clasen  <mclasen@redhat.com>
4343
4344         * gtk/gtkprintunixdialog.c (update_dialog_from_capabilities):
4345         Update the sensitivity of the collate checkbutton more frequently,
4346         proposed by Tim Waugh.
4347
4348 2006-12-04  Matthias Clasen  <mclasen@redhat.com>
4349
4350         * gtk/gtkmessagedialog.c (setup_type): Set a11y name and role
4351         since we no longer set window titles.
4352
4353 2006-12-04  Christian Persch  <chpe@cvs.gnome.org>
4354
4355         * gtk/gtkpagesetup.c: (gtk_page_setup_get_paper_size),
4356         (gtk_page_setup_set_paper_size): Don't leak the old page size when
4357         setting a new one. Bug #382314.
4358
4359 2006-12-03  Michael Natterer  <mitch@gimp.org>
4360
4361         * gtk/gtktextview.c: remove FIXME #include that is no longer needed.
4362
4363 2006-12-03  Kristian Rietveld  <kris@gtk.org>
4364
4365         Make sure [xy]_offset are always being initialized, fix pixbuf
4366         renderer padding.  (#108235, Sven Neumann).
4367
4368         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_get_size),
4369         (gtk_cell_renderer_pixbuf_render): add padding in _render instead
4370         of _get_size.
4371
4372         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_get_size):
4373         always initialize [xy]_offset.
4374         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_size): ditto.
4375         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_size):
4376         ditto.
4377
4378 2006-12-03  Kristian Rietveld  <kris@gtk.org>
4379
4380         * gtk/gtktreeview.c (validate_visible_area): when not using an
4381         explicit alignment, use the full area of the row (not just dy)
4382         to determine how to implicitly align it.  (Fixes #363191, reported
4383         by Federico Mena Quintero).
4384
4385 2006-12-02  Matthias Clasen  <mclasen@redhat.com>
4386
4387         * gtk/gtkicontheme.c (insert_theme): Properly clean up
4388         if an icon theme index file has no directories.  (#381236)
4389
4390 2006-12-02  Dom Lachowicz <domlachowicz@gmail.com>
4391
4392         * src/modules/engines/ms-windows/msw_style.c: Bug 351678 - Notebooks 
4393         not with PositionType.Top drawn incorrectly. Patch by Cody Russell
4394         
4395 2006-11-28  Behdad Esfahbod  <behdad@gnome.org>
4396
4397         Remove the broken Thai input method and add a functional Thai and Lao
4398         input method by Theppitak Karoonboonyanan. (#81031)
4399
4400         * modules/input/imthai.c:
4401         * modules/input/gtkimcontextthai.c:
4402         * modules/input/gtkimcontextthai.h:
4403         * modules/input/thai-charprop.c:
4404         * modules/input/thai-charprop.h:
4405         Added.
4406
4407         * modules/input/imthai-broken.c:
4408         Removed.
4409         
4410         * modules/input/Makefile.am:
4411         Updated.
4412
4413 2006-11-27  Christian Persch  <chpe@cvs.gnome.org>
4414
4415         * gtk/gtkstatusicon.c: Notify when the screen changes. Bug #379793.
4416
4417 Mon Nov 27 12:27:06 2006  Tim Janik  <timj@imendio.com>
4418
4419         * gtk/gtktextview.c: applied patch by  Colin Leroy for
4420         Control+GDK_KP_Left to move one word to the left, #356255.
4421
4422 2006-11-26  Benjamin Berg  <benjamin@sipsolutions.net>
4423
4424         * gtk/gtkstyle.c: (gtk_default_draw_flat_box): Protect against NULL
4425           widget. (#379503)
4426
4427 2006-11-25  Matthias Clasen  <mclasen@redhat.com>
4428
4429         * modules/printbackends/cups/gtkprintbackendcups.c: Make
4430         print dialog work when 'BrowseShortNames Off' is specified
4431         in cups configuration. Patch by Tim Waugh.
4432
4433 2006-11-24  Michael Natterer  <mitch@imendio.com>
4434
4435         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): if we
4436         can't go up/down, consult gtk_widget_keynav_failed() and leave the
4437         widget if it returns FALSE (bug #322640).
4438
4439 2006-11-23  Behdad Esfahbod  <behdad@gnome.org>
4440
4441         * gtk/gtkmain.c: Fix minor typo in docs. (#378632, Hannes Mueller)
4442
4443 2006-11-22  Emmanuele Bassi  <ebassi@gnome.org>
4444
4445         * gtk/gtkrecentmanager.c:
4446         (get_uri_shortname_for_display): g_filename_from_uri() might
4447         fail; catch the failure and fall back to the non-local URI
4448         case. (#363437)
4449
4450 2006-11-19  Mark McLoughlin  <mark@skynet.ie>
4451
4452         Fixes bug #376502 - multi-screen support for GtkStatusIcon
4453
4454         * gtk/gtkstatusicon.[ch]:
4455         (gtk_status_icon_set_screen),
4456         (gtk_status_icon_get_screen): add multi-screen API. Allows
4457         an app to display an icon on a non-default screen
4458         (gtk_status_icon_class_init),
4459         (gtk_status_icon_set_property),
4460         (gtk_status_icon_get_property): add a "screen" property
4461         
4462         * tests/teststatusicon.c: update to test on multiple screens
4463
4464 2006-11-17  Matthias Clasen  <mclasen@redhat.com>
4465
4466         Fix problems with drag cancellation. (#376535, Michael Natterer)
4467         
4468         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Disconnect signal
4469         handlers before emitting drag-end.
4470         (gtk_drag_end): Disconnect signal handlers before removing
4471         the grab.  
4472
4473 2006-11-16  Mariano Suárez-Alvarez <mariano@gnome.org>
4474
4475         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
4476         add gtk-doc blurb on GtkCellRendererText::edited (#376094)
4477
4478 2006-11-16  Michael Natterer  <mitch@imendio.com>
4479
4480         * gtk/gtkradiobutton.c (gtk_radio_button_focus): don't use
4481         gtk_widget_keynav_failed(). Instead, look at gtk-keynav-cursor-only
4482         and gtk-keynav-wrap-around and wrap around, beep or continue outside
4483         the group manually (bug #322640).
4484
4485 2006-11-16  Michael Natterer  <mitch@imendio.com>
4486
4487         Add new infrastructure for notifications of failed keyboard
4488         navigation and navigation with restricted set of keys.
4489
4490         The patch handles configurable beeping, navigating the GUI with
4491         cursor keys only (as in phone environments), and configurable
4492         wrap-around. Fixes bugs #322640, #70986, #318827, #334726, #334742
4493         and #309291.
4494
4495         * gtk/gtksettings.c: added properties gtk-keynav-cursor-only,
4496         gtk-keynav-wrap-around and gtk-error-bell.
4497
4498         * gtk/gtkwidget.[ch]: added new signal "keynav-failed" and public
4499         API to emit it. Added New function gtk_widget_error_bell() which
4500         looks at the gtk-error-bell setting and calls gdk_window_beep()
4501         accordingly.
4502
4503         * gtk/gtk.symbols: add the new widget symbols.
4504
4505         * gtk/gtkcellrendereraccel.c
4506         * gtk/gtkimcontextsimple.c
4507         * gtk/gtkmenu.c
4508         * gtk/gtknotebook.c: use gtk_widget_error_bell() or look at the
4509         gtk-error-bell setting instead of calling gdk_display_beep()
4510         unconditionally.
4511
4512         * gtk/gtkcombobox.c
4513         * gtk/gtkentry.c
4514         * gtk/gtkiconview.c
4515         * gtk/gtklabel.c
4516         * gtk/gtkmenushell.c
4517         * gtk/gtkspinbutton.c
4518         * gtk/gtktextview.c
4519         * gtk/gtktreeview.c: call gtk_widget_error_bell() on failed keynav.
4520
4521         * gtk/gtkentry.c
4522         * gtk/gtklabel.c
4523         * gtk/gtkrange.c
4524         * gtk/gtktextview.c: consult gtk_widget_keynav_failed() on failed
4525         cursor navigation and leave the widget if it returns FALSE.
4526
4527         * gtk/gtkmenushell.c
4528         * gtk/gtknotebook.c: only wrap around if gtk-keynav-wrap-around
4529         is TRUE.
4530
4531         * gtk/gtkradiobutton.c: ask gtk_widget_keynav_failed() to decide
4532         whether to to wrap-around, and don't select active items on cursor
4533         navigation if gtk-keynav-cursor-only is TRUE. Should look at
4534         gtk-keynav-wrap-around too, will look into that.
4535
4536 2006-11-16  Emmanuele Bassi  <ebassi@gnome.org>
4537
4538         * gtk/gtkrecentmanager.c:
4539         (gtk_recent_info_get_uri_display): Return the URI
4540         of the GtkRecentInfo object (upgraded to UTF-8 if
4541         needed) in case of non-local file. (#351945)
4542
4543 2006-11-16  Emmanuele Bassi  <ebassi@gnome.org>
4544         
4545         * gtk/gtkrecentchoosermenu.c:
4546         (gtk_recent_chooser_menu_add_tip): Apply the tip only
4547         if we have a displayable name for the item. (#365031,
4548         patch by padraig.obriain(at)sun.com)
4549
4550 2006-11-16  Emmanuele Bassi  <ebassi@gnome.org>
4551
4552         * gtk/gtkrecentmanager.c: Provide a fast path returning
4553         NULL when the limit is set to 0.
4554
4555         * gtk/gtkrecentchooserdefault.c:
4556         * gtk/gtkrecentchoosermenu.c: Add the same fast path
4557         inside the RecentChooser implementation; add a check
4558         in the list clamping code. (#373466 and duplicates)
4559
4560 2006-11-15  Matthias Clasen  <mclasen@redhat.com>
4561
4562         * modules/printbackends/cups/gtkprintbackendcups.c (cups_printer_get_options): 
4563         Don't pass NULL to strncpy.  (#359537, patch by  Carlos Garcia Campos)
4564
4565 2006-11-15  Michael Natterer  <mitch@imendio.com>
4566
4567         * gtk/gtkrange.[ch]: added properties "fill-level",
4568         "show-fill-level" and "restrict-to-fill-level" and getters/setters
4569         for them. The "fill level" is an additional marker on the range's
4570         trough than can be e.g. used to indicate the amount of
4571         pre-buffering in a range showing the play position of streamed
4572         media. See the embedded API docs for details. Made GtkRangeLayout
4573         a GTypeInstance private struct and removed finalize()
4574         implementation. Fixes bug #349808
4575
4576         * gtk/gtk.symbols: added the new symbols.
4577
4578 2006-11-14  Behdad Esfahbod  <behdad@gnome.org>
4579
4580         * configure.in: Make libtool magic robust. (#352795)
4581
4582 2006-11-13  Paolo Borelli  <pborelli@katamail.com>
4583
4584         * gtk/gtkrc.c (gtk_rc_parse_icon_source): plug small memory
4585         leak (#370395)
4586
4587 2006-11-09  Kristian Rietveld  <kris@imendio.com>
4588
4589         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): disable
4590         don't move cursor case for SELECTION_NONE. (#371756, John Ellis).
4591
4592 2006-11-09  Carlos Garnacho  <carlosg@gnome.org>
4593
4594         * gtk/gtkpathbar.c (on_slider_unmap): Fix parenthesis confusion.
4595
4596 2006-11-08  Carlos Garnacho  <carlosg@gnome.org>
4597
4598         * gtk/gtkpathbar.c (on_slider_unmap): added, do not leave the scroll
4599         timeout running if the slider buttons are hidden. (#372527)
4600
4601 2006-11-08  Christian Persch  <chpe@cvs.gnome.org>
4602
4603         * gtk/gtkfilechooserdefault.c (browse_widgets_create): Don't make
4604         the "Location" label bold. Bug #372449.
4605
4606 2006-11-07  Carlos Garnacho  <carlosg@gnome.org>
4607
4608         * gtk/gtknotebook.c (gtk_notebook_calculate_tabs_allocation): make
4609         non-focused tabs xthickness/ythickness thinner. (#353962)
4610
4611 2006-11-07  Paolo Borelli  <pborelli@katamail.com>
4612
4613         * gtk/gtktextbtree.c (_gtk_text_btree_delete): avoid memory
4614         corruption (#357050).
4615
4616 2006-11-06  Alexander Larsson  <alexl@redhat.com>
4617
4618         * gtk/gtkdnd.c: (gtk_drag_begin_internal),
4619         (gtk_drag_source_info_destroy), (gtk_drag_end),
4620         (gtk_drag_grab_notify_cb):
4621         Cancel drag when the grab is shadowed. (#122688)
4622
4623 2006-11-01  Kristian Rietveld  <kris@imendio.com>
4624
4625         * gtk/gtkcombobox.c (gtk_combo_box_class_init),
4626         (gtk_combo_box_size_request): add arrow-size property to control
4627         the minimum size of the arrow, have the arrow scale up with the
4628         font by default. (#357950).
4629
4630 2006-10-30  Kristian Rietveld  <kris@gtk.org>
4631
4632         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): don't
4633         forget to queue a draw for the new cursor node. (Fixes #366548,
4634         reported by Sven Herzberg).
4635
4636 2006-10-30  Michael Natterer  <mitch@imendio.com>
4637
4638         * gtk/gtkrange.c (gtk_range_key_press): consume the Escape key
4639         only if we actually cancel a drag. Fixes bug #58389.
4640
4641 2006-10-30  Kristian Rietveld  <kris@gtk.org>
4642
4643         * gtk/gtktreeview.c (gtk_tree_view_class_init): change left/right
4644         keybindings to collapse/expand rows instead of moving the focus
4645         cursor. (#105895, Brian Bober and others).
4646
4647 2006-10-29  Kristian Rietveld  <kris@gtk.org>
4648
4649         * gtk/gtktreeview.c (gtk_tree_view_real_expand_row): guard against
4650         child removal in row-expanded callback. (#366782, John Ellis).
4651
4652 2006-10-29  Tor Lillqvist  <tml@novell.com>
4653
4654         * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Improve handling
4655         of the small icon of the window class. (#152620, Kazuki Iwamoto)
4656
4657 2006-10-29  Tor Lillqvist  <tml@novell.com>
4658
4659         * gdk/win32/gdkcursor-win32.c
4660         (gdk_win32_icon_to_pixbuf_libgtk_only): Implement for B&W cursors,
4661         for instance the built-in GDK ones.
4662
4663 2006-10-27  Kristian Rietveld  <kris@gtk.org>
4664
4665         * gtk/gtktreeview.c (validate_visible_area): rework the area_above == 0
4666         case to not overwrite the variables in the lower scope (which are
4667         used later on ...), get the path correctly and bail out when there
4668         isn't a node above us. (#359231).
4669
4670 2006-10-26  Christian Persch  <chpe@cvs.gnome.org>
4671
4672         * gtk/gtkaboutdialog.c: Put initial focus on Close button (#337261).
4673
4674 2006-10-25  Johan Dahlin  <jdahlin@async.com.br>
4675
4676         * gtk/gtk.symbols: Add missing symbols to so make check can pass
4677
4678 2006-10-23  Dom Lachowicz <domlachowicz@gmail.com>
4679
4680         * src/modules/engines/ms-windows/msw_style.c (draw_expander): Remember
4681         to free GDI Pen resources, introduced by bug 340201.(#364514)
4682         
4683 2006-10-18  Kristian Rietveld  <kris@imendio.com>
4684
4685         * tests/testcombo.c (main): connect to notify::popup-shown instead of
4686         popup-show (the latter does not exist).
4687
4688 2006-10-15  Paolo Borelli  <pborelli@katamail.com>
4689
4690         * gtk/gtkicontheme.c (pixbuf_supports_svg): plug memory leak.
4691         Fixes bug #362439.
4692
4693 2006-10-12  Michael Natterer  <mitch@imendio.com>
4694
4695         * gtk/gtkcombobox.c (gtk_combo_box_class_init): fix commit below
4696         (committed the wrong patch).
4697
4698 2006-10-12  Michael Natterer  <mitch@imendio.com>
4699
4700         * gtk/gtkcombobox.c: added "move-active" and "popup" signals and
4701         bindings to trigger them. Removed gtk_combo_box_key_press(), it's
4702         obsolete now. Fixes bug #358293.
4703
4704 2006-10-11  Michael Emmel  <mike.emmel@gmail.com>
4705
4706         * gdkpixmap-directfb.c: add missing RGB24 case (#361176) 
4707
4708 2006-10-11  Tor Lillqvist  <tml@novell.com>
4709
4710         * configure.in: Enable having some gdk-pixbuf loaders built-in
4711         even if loading the others dynamically. Define Automake
4712         conditional INCLUDE_FOO for each loader as TRUE if that loader is
4713         built-in. See also gdk-pixbuf/ChangeLog.
4714
4715 Wed Oct 11 14:31:30 2006  Tim Janik  <timj@imendio.com>
4716
4717         * docs/reference/gtk/gtk-sections.txt:
4718         * gtk/gtkbindings.c: document gtk_binding_entry_skip().
4719
4720 2006-10-11  Tor Lillqvist  <tml@novell.com>
4721
4722         * gtk/gtk.symbols: Remove gtk_combo_string_key, which is a static
4723         variable.
4724
4725 2006-10-11  Tor Lillqvist  <tml@novell.com>
4726
4727         Merge from 2.10 branch:
4728
4729         * gtk/gtkmain.c (do_pre_parse_initialization): On Win32, if
4730         environment variable LC_ALL or LANG is set, set the Win32 thread
4731         locale to the corresponding locale. Then call the C library
4732         setlocale() to set the C library locale accordingly. The
4733         inconsistency mentioned below is gone. (#339756) Do some special
4734         casing for Serbia and Montenegro. Handle the Latin and Cyrillic
4735         scripts for Azeri, Uzbek and Serbian.
4736         (enum_locale_proc): Helper function for the above functionality.
4737
4738         * gtk/gtkcalendar.c (gtk_calendar_init): No longer need to check
4739         if the environment variables are set here, as they have already
4740         been taken into account and the Win32 thread locale has been
4741         set.
4742
4743 Tue Oct 10 16:38:23 2006  Tim Janik  <timj@imendio.com>
4744
4745         * gtk/tmpl/gtkbindings.sgml: 
4746         * gtk/gtkbindings.c: applied patch from Michael Natterer to move to 
4747         inline docs. applied wording fixes suggested by Martyn Russell.
4748
4749 2006-10-09  Matthias Clasen  <mclasen@redhat.com>
4750
4751         * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
4752         Update the docs to state which out parameters may be NULL.
4753         (#360870, Attilio Fiandrotti)
4754
4755 2006-10-08  Matthias Clasen  <mclasen@redhat.com>
4756
4757         * gtk/gtkprintunixdialog.c (update_dialog_from_capabilities): Fix
4758         a typo.  (#359542, Ghee Teo)
4759
4760 2006-10-08 Matthias Clasen <mclasen@redhat.com>
4761
4762         * gtk/gtknotebook.c (gtk_notebook_reorder_tab): Only
4763         reorder tabs if the focus is in the tab.  (#350342, Carlos
4764         Garnacho Parro)
4765
4766 2006-10-08 Michael Emmel <mike.emmel@gmail.com>
4767
4768         * gdk/directfb/gdkproperty-directfb.c strdup atom name (#357611) 
4769
4770 2006-10-08  Kristian Rietveld  <kris@gtk.org>
4771
4772         * gtk/gtktreeview.[ch] (gtk_tree_view_set_property),
4773         (gtk_tree_view_set_show_expanders),
4774         (gtk_tree_view_get_show_expanders): add getter/setter for
4775         show-expanders property, queue a redraw when this property
4776         is toggled (#351167, Martin Ejdestig),
4777         (gtk_tree_view_set_level_indentation),
4778         (gtk_tree_view_get_level_indentation): also add getter/setter
4779         and docs for level-indentation property.
4780
4781 2006-10-08  Matthias Clasen  <mclasen@redhat.com>
4782
4783         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
4784         leak a list.  (#360350, Benjamin Berg)
4785
4786         * Apply a cleanup patch by Kjartan Maraas  (#341812)
4787
4788 2006-10-07  Tor Lillqvist  <tml@novell.com>
4789
4790         * gtk/gtkcalendar.c (gtk_calendar_init): Use the Win32 thread
4791         locale's first day of week setting on Win32. (#339752, Bogdan
4792         Nicula) Don't do this if one of the environment variables that
4793         affect gettext is set, though. In that case use the week start day
4794         from the corresponding message catalog.
4795
4796         Unfortunately the same logic isn't possible in the weekday and
4797         month name lookup; there even if you have set one of the
4798         aforementioned environment variables, you still get the weekday
4799         and month names from the Win32 thread locale. Yes, this is
4800         inconsistent.
4801
4802         Use only wide-character API in the Win32 code in this file, too.
4803
4804 2006-10-06  Matthias Clasen  <mclasen@redhat.com>
4805
4806         * gtk/gtkfilechooser.c (gtk_file_chooser_set_select_multiple):
4807         Fix the docs.  (#360112)
4808
4809         * gtk/gtkcellview.c: Don't set the background of the
4810         window in a no-window widget.  (#359581, Xan Lopez)
4811
4812
4813 2006-10-05  Behdad Esfahbod  <behdad@gnome.org>
4814
4815         * gtk/Makefile.am, gtk/aliasfilescheck.sh:  Propagate srcdir into the
4816         test correctly. (#359845)
4817
4818 2006-10-05  Michael Natterer  <mitch@imendio.com>
4819
4820         * gtk/gtkrc.[ch]: added new scanner token "unbind" which gets
4821         rid of a key binding (in fact, it only lets it appear unbound).
4822
4823         * gtk/gtkbindings.[ch] (struct GtkBindingEntry): added
4824         "guint marks_unbound : 1"
4825
4826         (gtk_binding_entry_skip): new API which marks the entry as unbound.
4827
4828         Changed code so it returns FALSE when "marks_unbound == TRUE" is
4829         encountered while activating bindings, effectively letting the
4830         binding appear unbound (regardless of still existing bindings in
4831         lower binding priority levels). Fixes bug #358329.
4832
4833         (gtk_binding_entry_add)
4834         (gtk_binding_entry_clear)
4835         (gtk_binding_entry_add_signall)
4836         (gtk_binding_parse_binding): deprected these functions.
4837
4838         (_gtk_binding_parse_binding)
4839         (_gtk_binding_entry_add_signall): new internal API.
4840
4841         * gtk/gtk.symbols: changed accordingly.
4842
4843 2006-10-03  Matthias Clasen  <mclasen@redhat.com>
4844
4845         Fix interaction of GtkEntryCompletion with input
4846         methods.  (#354495, Diego Escalante Urrelo)
4847
4848         * gtk/gtkentry.c (gtk_entry_completion_key_press): Only reset
4849         the im context if we actually handle the key event.
4850
4851         * gtk/gtkentrycompletion.c: Also propagate key release events
4852         to the entry.
4853
4854 2006-10-03  Matthias Clasen  <mclasen@redhat.com>
4855
4856         * gtk/gtkprintsettings.c (gtk_print_settings_get_duplex):
4857         Fix a typo.  (#359052, Ghee Teo)
4858
4859         * gtk/*.c, gdk/*.c: Apply a patch by Behdad Esfahbod to
4860         reduce relocations. (#359053)
4861
4862 2006-10-03  Matthias Clasen  <mclasen@redhat.com>
4863
4864         * modules/printbackends/cups/gtkcupsutils.c:
4865         * modules/printbackends/cups/gtkprintbackendcups.c: Complete
4866         the fix for bug 357280.
4867
4868 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
4869
4870         * gdk-pixbuf/Makefile.am:
4871         * gdk/Makefile.am:
4872         * gtk/Makefile.am:
4873         Include pltcheck.sh in EXTRA_DIST.
4874
4875 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
4876
4877         * gdk/x11/gdkevents-x11.c: Move all includes before including
4878         gdkalias.h.
4879
4880 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
4881
4882         * gtk/Makefile.am: Fix typo in file name.  (#358931)
4883
4884 2006-10-02  Matthias Clasen  <mclasen@redhat.com>
4885
4886         * modules/printbackends/cups/gtkprintbackendcups.c (available_choices): 
4887         Only use the group name field if cups is new enough.  (#357280)
4888
4889         * gtk/gtksizegroup.c: Make sure that the quarks are 
4890         initialized before using them.  (#353736)
4891
4892         * gtk/Makefile.am (stamp-icons): Use rm instead of ln -f to
4893         replace existing links.  (#354849, James Evans)
4894
4895 2006-10-01  Matthias Clasen  <mclasen@redhat.com>
4896
4897         * gtk/gtkexpander.c (gtk_expander_realize) 
4898         (gtk_expander_size_allocate): Make the event_window large
4899         enough to cover the full height of the label_widget.  (#358351,
4900         Scott Horowitz)
4901
4902 2006-10-01  Tor Lillqvist  <tml@novell.com>
4903
4904         * gtk/gtkfilesystemwin32.c: Same change as to gtkfilesystemunix.c.
4905
4906 2006-09-30  Matthias Clasen  <mclasen@redhat.com>
4907
4908         * gtk/gtkfilechooserbutton.c (update_combo_box): Protect
4909         against base_path being NULL.  (#358405, many reporters)
4910
4911 2006-09-29  Matthias Clasen  <mclasen@redhat.com>
4912
4913         * gtk/gtkfilesystemunix.c: Apply a patch by Padraig O'Briain
4914         to avoid a deadlock.
4915
4916 2006-09-27  Kristian Rietveld  <kris@imendio.com>
4917
4918         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_free_level),
4919         (gtk_tree_model_filter_ref_node),
4920         (gtk_tree_model_filter_real_unref_node): bring zero ref count loops
4921         in sync with each other and the sort model.
4922
4923 2006-09-27  Kristian Rietveld  <kris@imendio.com>
4924
4925         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_init),
4926         (gtk_tree_model_filter_finalize), (gtk_tree_model_filter_row_deleted),
4927         (gtk_tree_model_filter_new): unref the virtual root path once that
4928         node (or one if its ancestors) is deleted, set virtual_root_deleted
4929         so we only unref it once.
4930
4931 2006-09-27  Kristian Rietveld  <kris@imendio.com>
4932
4933         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_changed),
4934         (gtk_tree_model_sort_sort_level): ref count nodes the proper way,
4935         (gtk_tree_model_sort_ref_node), (gtk_tree_model_sort_real_unref_node),
4936         (gtk_tree_model_sort_free_level): bring zero ref count loops in
4937         sync,
4938         (gtk_tree_model_sort_free_level): free child levels before
4939         decreasing the zero ref count of the current level,
4940         (gtk_tree_model_sort_clear_cache): only clear cache if zero_ref_count
4941         is > 0.
4942
4943 2006-09-25  Matthias Clasen  <mclasen@redhat.com>
4944
4945         * demos/gtk-demo/*.c:
4946         * gtk/gtkeventbox.c:
4947         * gtk/gtkprintoperation.c: Fix typos. String change.
4948
4949 2006-09-25  Kristian Rietveld  <kris@gtk.org>
4950
4951         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): if the tree view
4952         has already been realized; scroll to background area instead of
4953         cell area. (Fixes #330683, Johan Dahlin, Tommi Komulainen).
4954
4955 2006-09-25  Kristian Rietveld  <kris@gtk.org>
4956
4957         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): only attempt
4958         to create the GCs if the widget is realized. (Fixes #357578).
4959
4960 2006-09-25  Matthias Clasen  <mclasen@redhat.com>
4961
4962         * gtk/gtkuimanager.c (_gtk_menu_is_empty): Don't leak
4963         the list of children (#357454, Paolo Borelli)
4964
4965 2006-09-25  Michael Natterer  <mitch@imendio.com>
4966
4967         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_finalize): free
4968         display->input_windows with g_free(), not g_object_unref()
4969         (#357566, Tommi Komulainen).
4970
4971 2006-09-24  Kristian Rietveld  <kris@gtk.org>
4972
4973         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init),
4974         (gtk_cell_renderer_text_[sg]et_property): actually add align-set
4975         property to the API (left-over patch from #157439).
4976
4977 2006-09-24  Kristian Rietveld  <kris@gtk.org>
4978
4979         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button): draw
4980         the indicator if the column has a sort column id (and the model is
4981         sortable) or if the user explicitly requested the indicator
4982         to be shown.  (Fixes #352738, Chris Vine).
4983
4984 2006-09-23  Tor Lillqvist  <tml@novell.com>
4985
4986         * gtk/Makefile.am: Use EXEEXT.
4987
4988 2006-09-22  Michael Natterer  <mitch@imendio.com>
4989
4990         * gtk/gtkstyle.c (gtk_style_real_copy): also copy icon factories
4991         and color hashes. Fixes bug #357132.
4992
4993 2006-09-22  Matthias Clasen  <mclasen@redhat.com>
4994
4995         Make remote bookmarks work better (#354887)
4996         
4997         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): 
4998         (shortcuts_insert_path): 
4999         * gtk/gtkfilechooserbutton.c (change_icon_theme): 
5000         (model_add_bookmarks): 
5001         (model_update_current_folder): 
5002         (update_label_and_image): 
5003         If the bookmark points to a remote file, don't call get_info(), 
5004         since that may a) take a long time and b) pop up an auth dialog.
5005         Instead, just use a folder icon and create a display name
5006         from the uri.
5007
5008         * gtk/gtkfilechooserdefault.c (_gtk_file_chooser_label_for_uri): 
5009         New function to create a suitable display name for a remote
5010         uri. This should really be done in GtkFileSystem.
5011         
5012 2006-09-21  Michael Natterer  <mitch@imendio.com>
5013
5014        Implement lots of value setters for GdkGC, based on a heavily
5015        modified patch from Thomas Broyer (bug #328853):
5016
5017         * gdk/quartz/gdkcolor-quartz.c: removed functions which set colors
5018         on the CGContext. Instead, added gdk_quartz_get_rgba_from_pixel()
5019         which simply returns RGBA values from a GdkColor's pixel value.
5020         See gdk_quartz_update_context_from_gc() below.
5021
5022         * gdk/quartz/gdkprivate-quartz.h (struct GdkGCQuartz): added lots
5023         of members for the newly suppored GC values. Added enum
5024         GdkQuartzContextValuesMask which is used for setting up the
5025         CGContext for filling and/or stroking.
5026
5027         * gdk/quartz/gdkgc-quartz.c (gdk_quartz_gc_get_values)
5028         (gdk_quartz_gc_set_values)
5029         (_gdk_windowing_gc_copy): support a lot more GC values.
5030
5031         (gdk_quartz_update_context_from_gc): added
5032         GdkQuartzContextValuesMask parameter and set filling/stroking
5033         parameters accordingly. This function also gained full control
5034         over the FG and BG colors (they can't be set separately any more).
5035
5036         The stipple mask part of the patch doesn't work but seems to take
5037         the right approach and doesn't make things worse, so I applied it.
5038
5039         Did *not* apply the clipping part of the patch since I don't
5040         understand it (I don't understand the version in CVS either, but
5041         it at least works :-)
5042
5043         * gdk/quartz/gdkdrawable-quartz.c: pass the right masks to
5044         gdk_quartz_update_context_from_gc() and removed separate color
5045         setting calls. Some minor fixes.
5046
5047         * gdk/quartz/gdkwindow-quartz.c
5048         (gdk_window_impl_quartz_begin_paint_region): set the CGContext's
5049         fill color manually. We don't have/need a GC here.
5050
5051 2006-09-21  Michael Natterer  <mitch@imendio.com>
5052
5053         * gdk/quartz/gdkwindow-quartz.c
5054         (gdk_window_impl_quartz_begin_paint_region): fix cast: it's
5055         drawable_impl->wrapper that is the GdkWindow, not the
5056         drawable_impl itself.
5057
5058 2006-09-20  Behnam Esfahbod <behnam@zwnj.org>
5059
5060         * gdk/x11/gdkkeys-x11.c:
5061           (get_direction): just check the first shift-level of keyboard
5062         layout for RTL and LTR keysyms() (compliment to #116626)
5063
5064 Wed Sep 20 16:59:38 2006  Tim Janik  <timj@imendio.com>
5065
5066         * gtk/gtkviewport.c: always update the bin_window position and size
5067         in size_allocate, even if we don't have a visible child. this fixes
5068         expose artefacts as described in #313508.
5069
5070         * gtk/gtkscrolledwindow.c: make hiding of automatic scrollbars when we
5071         have no visible child explicit.
5072
5073 2006-09-19  Ryan Lortie  <desrt@desrt.ca>
5074
5075         * docs/reference/gdk/gdk-sections.txt:
5076         * gdk/gdk.symbols:
5077         * gdk/gdkpango.h:
5078         * gdk/gdkpango.c: Bug 355343.  Add a GdkPangoAttrEmbossColor.
5079           (gdk_pango_layout_get_clip_region): Remove an unused variable.
5080           (gdk_pango_attr_embossed_new): Fix documentation.
5081
5082 Tue Sep 19 17:00:04 2006  Tim Janik  <timj@imendio.com>
5083
5084         * gtk/gtkarrow.c: added GtkArrow::arrow-scaling style property to 
5085         control the arrow/border ratio within the allocation.
5086
5087         * tests/testgtk.c: added a GtkArrow to handle box test.
5088
5089         * tests/testgtkrc: test ::arrow-scaling property.
5090
5091 2006-09-19  Matthias Clasen  <mclasen@redhat.com>
5092
5093         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
5094         Display an error when we come to the root.  
5095
5096 2006-09-16  Matthias Clasen  <mclasen@redhat.com>
5097
5098         * gtk/gtkfilechooserbutton.c: Use bookmark labels in 
5099         the combobox. 
5100
5101         * gtk/gtkfilechooserbutton.c: Don't add remote volumes and 
5102         bookmarks to the model in local-only mode, to avoid 
5103         authentication dialogs pop up for invisible bookmarks, and
5104         to fix issues with separators not being hidden when
5105         they should.  (#354887, Dennis Cranston)
5106
5107 2006-09-16  Matthias Clasen  <mclasen@redhat.com>
5108
5109         * gtk/gtkcombobox.c (gtk_combo_box_finalize): Unref the
5110         treeview use in list mode.  (#355732, Richard Hult)
5111
5112         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): Send
5113         change notification for the right property.  (#355308,
5114         Torsten Schoenfeld)
5115
5116 2006-09-15  Michael Natterer  <mitch@imendio.com>
5117
5118         * gtk/gtktreeview.c (gtk_tree_view_key_press): refactored column
5119         header navigation/resizing/reordering to be more readable and lose
5120         one level of nesting.
5121
5122 2006-09-15  Kristian Rietveld  <kris@imendio.com>
5123
5124         * gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly
5125         return after handling column button focus; we disable wrap around
5126         with this (which actually happened via a really weird code path).
5127         (Michael Natterer)
5128
5129 2006-09-15  Kristian Rietveld  <kris@imendio.com>
5130
5131         * gtk/gtktreeview.c (gtk_tree_view_key_press): make column resizing
5132         code RTL aware, also break from the loops after we have seen the
5133         focussed column button (Michael Natterer).
5134
5135 Thu Sep 14 12:28:51 2006  Tim Janik  <timj@imendio.com>
5136
5137         * tests/testrichtext.c (main): intialize random number generator state
5138         upon program start, to enable truely random testing.
5139
5140 2006-09-13 Michael Emmel <mike.emmel@gmail.com>
5141
5142         * gdk/directfb/gdkcolor-directfb.c small clean ups include order
5143         * gdk/directfb/gdkwindow-directfb.c fixed beep compile error
5144         * gdk/directfb/Makefile.am removed GDK_PIXBUF_DISABLE_DEPRECATED
5145                 GDK_DISABLE_DEPRECATED to allow compile per Behdad
5146         * gdk/quartz/Makefile.am same change as directfb Makefile
5147         * gtk/Makefile.am fixed typo that cause socket stubs not to compile
5148
5149 2006-09-13 Matthias Clasen <mclasen@redhat.com>
5150
5151         * gtk/gtkcolorsel.c: Use a GtkWindow instead of a GtkInvisible
5152         for the grab widget, to make the color picker work with window
5153         groups.  
5154
5155 2006-09-12 Hong Jen Yee <pcman.tw@gmail.com>
5156
5157         signed off by: Dom Lachowicz
5158         
5159         * modules/engines/ms-windows/msw_style.c: Bug 340201. This contains
5160         a large number of improvements to the Microsoft Windows theme engine
5161         which are fully described in the bug report.
5162         
5163 Mon Sep 11 14:22:39 2006  Tim Janik  <timj@imendio.com>
5164
5165         * tests/testgtk.c: fixed compiler warnings.
5166
5167 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
5168
5169         * gtk/gtkfilechooserbutton.c (model_add_special): Request
5170         the display name too, otherwise "Desktop" does not appear
5171         in the file chooser button. 
5172
5173 2006-09-10  Tor Lillqvist  <tml@novell.com>
5174
5175         * gdk/win32/gdkprivate-win32.h
5176         * gdk/win32/gdkmain-win32.c
5177         * gdk/win32/gdkwindow-win32.c: Define WINVER and _WIN32_WINNT as
5178         0x0500 in gdkprivate-win32.h instead of doing it in two source
5179         files. (#355212, Mike Edenfield)
5180
5181         * gdk/win32/gdkwindow-win32.c: We can also remove the ersatz
5182         GetAncestor() for the _MSC_VER && WINVER < 0x0500 case, I hope.
5183
5184 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
5185
5186         * Commit a patch by Behdad to fix typos, omissions and other
5187         errors in the symbol aliasing, and add checks for local PLT
5188         entries.  (#354687, Behdad Esfahbod)
5189
5190         * gtk/gtktreeview.c (gtk_tree_view_search_scroll_event): Renew
5191         the flush timeout.  (#354043, Nelson Benitez)
5192         
5193         * gtk/gtkfilechoosersettings.c (set_unexpected_element_end_error): 
5194         Improve wording. String change!  (#355126, David Lodge)
5195
5196         * gtk/updateiconcache.c: Improve wording. String change!  (#355128,
5197         David Lodge)
5198
5199         * gtk/paper_names_offsets.c: Fix a typo. String change!  (#355134,
5200         David Lodge)
5201
5202 2006-09-09  Matthias Clasen <mclasen@redhat.com>
5203
5204         * gdk/x11/gdkfonts-x11.c: Fix small theoretical memory leaks.
5205         (#353916, Chris Wilson)
5206
5207         * gtk/gtksettings.c (_gtk_settings_reset_rc_values):
5208         Don't leak the to_reset list.  (#353914, Chris Wilson)
5209
5210         * gtk/gtkwidget.c: Add docs for the parent-set signal.
5211         (#353772, Mariano Suárez-Alvarez)
5212
5213 2006-09-08  Matthias Clasen <mclasen@redhat.com>
5214
5215         * gtk/gtktextbuffer.c (remove_all_selection_clipboards):
5216         Don't clear clipboards here, since we are called from finalize
5217         and can't emit signals.
5218
5219         * configure.in: Set version to 2.11.0
5220
5221 2006-09-06  Richard Hult  <richard@imendio.com>
5222
5223         * gdk/quartz/gdkkeys-quartz.c: (maybe_update_keymap): Special-case 
5224         shift-tab and map it to GDK_ISO_Left_Tab, fixes bug #350806.
5225
5226 2006-09-04  Kristian Rietveld  <kris@imendio.com>
5227
5228         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
5229         if setting the given folder failed, try setting the parent folder
5230         until we succeed; display an error box at the end.
5231
5232 2006-09-04  Kristian Rietveld  <kris@imendio.com>
5233
5234         * gtk/gtkpathbar.c (gtk_path_bar_dispose): don't cancel the
5235         operations spawned by buttons here,
5236         (set_button_image_get_info_cb): bail out if button is NULL, but
5237         do free button_data,
5238         (button_data_free): only free the data if non NULL (since this
5239         function can be called multiple times for the same data), cancel
5240         handle if pending but don't free button_data in this case (will
5241         happen in the callback).
5242
5243 2006-09-04  Michael Natterer  <mitch@imendio.com>
5244
5245         * gtk/gtkrc.c (rc_parse_token_or_compound)
5246         (gtk_rc_parse_assignment): serialize floating point values using
5247         locale-independent functions. (#346751, Frederic Crozat)
5248
5249 2006-09-04  Tor Lillqvist  <tml@novell.com>
5250
5251         * gdk/win32/gdkevents-win32.c
5252         * gdk/win32/gdkwindow-win32.c: Use wide-char API for message and
5253         window handling (PeekMessage, PostMessage, SendMessage,
5254         DispatchMessage, DefWindowProc, RegisterClassEx,
5255         CreateWindowEx). (#321597)
5256
5257 2006-09-03  Kristian Rietveld  <kris@imendio.com>
5258
5259         * gtk/gtkfilechooserdefault.c (save_entry_get_info_cb),
5260         (file_exists_get_info_cb), (gtk_file_chooser_default_should_respond):
5261         change file_exists_and_is_not_folder checks to get the file info
5262         for the path directly instead of querying the current file folder
5263         of the save entry.
5264
5265         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault): add
5266         new field.
5267
5268         * tests/autotestfilechooser.c (wait_for_idle_idle), (wait_for_idle),
5269         (test_reload_sequence), (test_button_folder_states_for_action): wait
5270         for idle after setting a folder to ensure the async operations to load
5271         the folder are finished,
5272         (test_confirm_overwrite), (test_confirm_overwrite_for_path):
5273         factor out test_confirm_overwrite code so we can add tests for more
5274         paths more easily.
5275
5276 2006-09-03  Richard Hult  <richard@imendio.com>
5277
5278         * gdk/quartz/GdkQuartzView.c (drawRect): Don't do anything if
5279         exposure isn't in the event mask, plug a leak, and check that the
5280         window isn't destroyed.
5281         (isOpaque): Check that the window isn't destroyed, fixes bug 
5282         #353028.
5283
5284 2006-09-03  Matthias Clasen  <mclasen@redhat.com>
5285
5286         * gtk/gtkwidget.c (gtk_widget_class_init): Fix a typo.  
5287         (#354035, Mariano Suárez-Alvarez)
5288
5289         * gtk/gtkmain.c (post_parse_hook): 
5290         * gdk/gdk.c (gdk_init): Handle display_name being NULL.
5291         (#354004, Chris Wilson)
5292
5293 2006-09-03  Tor Lillqvist  <tml@novell.com>
5294
5295         * gdk/win32/gdkwindow-win32.c (gdk_window_beep): No
5296         GDK_WINDOW_DISPLAY in the Win32 backend.
5297
5298         * gtk/gtkfilesystemwin32.c: Copy what Kris did to
5299         gtkfilesystemunix.c
5300
5301 2006-09-02  Kristian Rietveld  <kris@imendio.com>
5302
5303         First part of file chooser fixes.
5304
5305         * gtk/gtkfilechooserbutton.c (model_add_special): also set the
5306         handle in the model for the desktopdir case.
5307
5308         * gtk/gtkfilechooserdefault.c (shortcuts_add_current_folder): free
5309         volume in case we retrieved it but don't pass it on to insert_path,
5310         (shortcuts_model_create): change the column type for the handles
5311         to pointer instead of GObject so our handle ref counting is not
5312         disturbed,
5313         (show_and_select_paths_finished_loading): don't forget to unref
5314         the dialog.
5315
5316         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_class_init),
5317         (gtk_file_system_unix_init), (gtk_file_system_unix_dispose):
5318         remove pending execute_callbacks_idle during dispose, also
5319         execute all callbacks waiting to be run in the next idle,
5320         (queue_*callback), (execute_callbacks_idle): refactor to maintain
5321         a list of callbacks to call per file system instead of globally,
5322         guard the file system during callback invocation,
5323         (gtk_file_system_unix_get_folder): only add load folder idle if
5324         none has been added yet.
5325
5326 2006-09-01  Matthias Clasen  <mclasen@redhat.com>
5327
5328         * gtk/gtkentry.c: Don't unnecessarily reset the im context
5329         when deleting the selection.  (#353803, Alex Larsson)
5330
5331 2006-09-01  Abel Cheung  <abel@oaka.org>
5332
5333         * configure.in: Added 'ang' 'dz' to ALL_LINGUAS.
5334
5335 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
5336
5337         Stop cursor blinking after a configurable timeout.
5338         (#353670, #352442, Arjan van de Ven, Manu Cornet)
5339         
5340         * gtk/gtksettings.c (gtk_settings_class_init): Add a 
5341         gtk-cursor-blink-timeout setting, which specifies the number
5342         of seconds that the cursor should blink after a user interaction.
5343         The default value is G_MAXINT to preserve the current behaviour.
5344
5345         * gtk/gtkentry.c (blink_cb): Stop blinking after blink-timeout
5346         seconds.
5347
5348         * gtk/gtkentry.c (gtk_entry_completion_key_press) 
5349         (gtk_entry_button_press, gtk_entry_focus_in): Reset the
5350         blink timer.
5351
5352         * gtk/gtktextview.c (blink_cb): Stop blinking after blink-timeout
5353         seconds. 
5354
5355         * gtk/gtktextview.c (gtk_text_view_key_press_event) 
5356         (gtk_text_view_button_press_event, gtk_text_view_focus_in_event): 
5357         Reset the blink timer.
5358         
5359 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
5360
5361         * gtk/gtkprintoperation-unix.c (get_print_dialog): Don't specify
5362         explicit format capabilities.  (#346505, Christian Persch)
5363
5364         * modules/printbackends/cups/gtkprintbackendcups.c (cups_request_printer_list_cb): Send printer-list-done on error. 
5365
5366 2006-08-31  Michael Natterer  <mitch@imendio.com>
5367
5368         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Fix build.
5369
5370 2006-08-30  Richard Hult  <richard@imendio.com>
5371
5372         * gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): Fix build.
5373
5374 2006-08-30  Matthias Clasen  <mclasen@redhat.com>
5375
5376         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Only use XKB
5377         for beeping if we are using XKB.  
5378
5379 2006-08-29  Matthias Clasen  <mclasen@redhat.com>
5380
5381         * gdk/gdkwindow.h: 
5382         * gdk/gdk.symbols: 
5383         * gdk/directfb/gdkwindow-directfb.c (gdk_window_beep): 
5384         * gdk/win32/gdkwindow-win32.c (gdk_window_beep): 
5385         * gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): 
5386         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Add a function
5387         to beep on a window. For X11, implement this with
5388         XkbBell.  (#353455, Mariano Suárez-Alvarez)
5389         
5390 2006-08-29  Tor Lillqvist  <tml@novell.com>
5391
5392         Remove support for Windows 9x/ME. GTK+ hasn't worked on Win9x
5393         since 2.6 or 2.8. It's pointless to keep the Win9x code in here as
5394         it isn't being maintained anyway. If somebody is interested, it
5395         can always be found in older GTK+ versions, and in CVS.
5396
5397         * configure.in
5398         * acconfig.h
5399         * gdk/Makefile.am
5400         * gdk/win32/Makefile.am
5401         * gdk/win32/libie55uid.la
5402         * gdk/win32/gdkevents-win32.c: Remove the --with-ie55 configure
5403         switch and associated stuff. Active IMM and the <dimm.h> header
5404         was used for IM support on NT4 and Win9x. Win2k and later have IM
5405         support built-in.
5406
5407         * gdk/win32/gdkcursor-win32.c
5408         * gdk/win32/gdkdnd-win32.c
5409         * gdk/win32/gdkdrawable-win32.c
5410         * gdk/win32/gdkevents-win32.c
5411         * gdk/win32/gdkgc-win32.c
5412         * gdk/win32/gdkglobals-win32.c
5413         * gdk/win32/gdkkeys-win32.c
5414         * gdk/win32/gdkmain-win32.c
5415         * gdk/win32/gdkproperty-win32.c
5416         * gdk/win32/gdkselection-win32.c
5417         * gdk/win32/gdkwindow-win32.c: Remove the G_WIN32_IS_NT_BASED()
5418         and G_WIN32_HAVE_WIDECHAR_API() tests and their false (Win9x)
5419         branches, and any variables or static functions used only by the
5420         Win9x branches.
5421
5422         * gdk/win32/gdkprivate-win32.h: Remove backup definitions for
5423         constants that aren't missing from current mingw and MSVC6
5424         headers.
5425
5426         * gdk/win32/gdkmain-win32.c
5427         * gdk/win32/gdkprivate-win32.h: Remove the _gdk_win32_gdi_failed()
5428         function. On NT-based Windows GetLastError() returns error codes
5429         also for failed GDI calls, so we can use _gdk_win32_api_failed()
5430         always.
5431
5432 2006-08-29  Emmanuele Bassi  <ebassi@gnome.org>
5433
5434         * gtk/gtkrecentchoosermenu.c
5435         (gtk_recent_chooser_menu_set_current_uri): Break when an item
5436         is found and activated. (#353449, based on a patch by Jan Arne
5437         Petersen)
5438
5439 Fri Jul 14 16:13:37 2006  Tim Janik  <timj@gtk.org>
5440
5441         * gtk/gtkprogressbar.c: introduced ::xspacing and ::yspacing style 
5442         properties which make all hardcoded padding and spacing values
5443         configurable. properly swap ::text-xalign treatment for RTL widgets.
5444
5445         * gtk/gtkprogress.c: fixed style property blurbs. made alignment 
5446         proeprty more consistent with GtkMisc alignment blurbs. mention
5447         RTL treatment for text-xalign.
5448
5449 Tue Aug 29 11:57:40 2006  Tim Janik  <timj@imendio.com>
5450
5451         * tests/testgtk.c: allow (most) windows to be resizable.
5452         added ellipsization settings to progress bars. 
5453
5454 2006-08-28  Matthias Clasen   <mclasen@redhat.com>
5455
5456         * modules/printbackend/cups/gtkprintbackendcups.c: Use a
5457         resonable timeout of 3 seconds when polling for printer
5458         list updates, instead of 300000 seconds...
5459
5460 2006-08-28  Michael Natterer  <mitch@imendio.com>
5461
5462         * gtk/gtktextbufferserialize.c (serialize_text): don't write out
5463         </apply_tag> for tags that have already been closed by the logic
5464         which turns overlapping spans into XML-able trees. Fixes broken
5465         XML when there are overlapping tags in the buffer. Also free two
5466         leaked GLists and did some cleanup.
5467
5468         * tests/Makefile.am
5469         * tests/testrichtext.c: new test which creates randomly tagged
5470         GtkTextBuffers and serializes/deserializes them.
5471
5472 2006-08-26  Matthias Clasen  <mclasen@redhat.com>
5473
5474         * gtk/gtkstatusicon.c (gtk_status_icon_reset_image_data): 
5475         Don't leak pixbufs.  (#352264, Ross Burton)
5476
5477         * gtk/gtklinkbutton.c (set_link_underline): Don't leak
5478         PangoAttributes.  (#352391, Paolo Borelli)
5479
5480 2006-08-25  Matthias Clasen  <mclasen@redhat.com>
5481
5482         * demos/gtk-demo/Makefile.am:
5483         * demos/gtk-demo/textscroll.c: Add an example of automatic
5484         scrolling, thanks to Yevgen Muntyan.  (#351206)
5485         
5486         * gtk/gtkmodules.c (find_module): Use local binding when
5487         loading modules.  (#351868)
5488
5489 2006-08-24  Michael Natterer  <mitch@imendio.com>
5490
5491         * gdk/quartz/gdkdisplay-quartz.c (gdk_display_get_name): return
5492         the hostname instead of NULL.
5493
5494 2006-08-23  Matthias Clasen  <mclasen@redhat.com>
5495
5496         * gtk/gtkprinteroptionwidget.[hc]: Fix confusion about
5497         names and values in comboboxes, and clean up some
5498         coding style issues.
5499
5500 2006-08-23  Tor Lillqvist  <tml@novell.com>
5501
5502         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_make_path):
5503         Revert unintended translatable string addition. Use same string
5504         in GError as in gtkfilesystemunix.c.
5505
5506         * gtk/gtkfilesystemwin32.c (_gtk_file_system_win32_path_compare):
5507         Fix logic at the end of strings. 
5508
5509         * gtk/gtkfilesystemwin32.c: Maintain a hash table of live
5510         handles and check that we have no outstanding handles at
5511         finalization time. (Copying what Matthias did for
5512         gtkfilesystemunix.c)
5513
5514 2006-08-23  Matthias Clasen  <mclasen@redhat.com>
5515
5516         * gtk/gtkfilesystemunix.c: Maintain a hash table
5517         of live handles and check that we have no outstanding
5518         handles at finalization time. (Copying what
5519         Federico did for gtkfilesystemgnomevfs.c)
5520
5521 2007-08-22  Matthias Clasen  <mclasen@redhat.com> 
5522
5523         * Branch for 2.10
5524