]> Pileus Git - ~andy/gtk/blob - ChangeLog
use canonical signal names.
[~andy/gtk] / ChangeLog
1 2008-08-08  Sven Neumann  <sven@gimp.org>
2
3         * gtk/gtkwidget.c:
4         * gtk/gtkwindow.c: use canonical signal names.
5
6 2008-08-08  Sven Neumann  <sven@gimp.org>
7
8         * gtk/gtkadjustment.c
9         * gtk/gtkclist.c
10         * gtk/gtkcolorsel.c
11         * gtk/gtkiconview.c
12         * gtk/gtklayout.c
13         * gtk/gtkprogress.c
14         * gtk/gtkrange.c
15         * gtk/gtkspinbutton.c
16         * gtk/gtktext.c
17         * gtk/gtktextview.c
18         * gtk/gtktreeview.c
19         * gtk/gtkviewport.c: use the canonical signal name "value-changed"
20         instead of "value_changed".
21
22 2008-08-08  Tor Lillqvist  <tml@novell.com>
23
24         * gtk/gtk.symbols
25         * gtk/makegtkalias.pl
26         * gtk/gtkaccelmap.c
27         * gtk/gtkfilechooser.c
28         * gtk/gtkfilesel.c
29         * gtk/gtkiconfactory.c
30         * gtk/gtkicontheme.c
31         * gtk/gtkimage.c
32         * gtk/gtkrc.c
33         * gtk/gtkuimanager.c
34         * gtk/gtkwindow.c: No need for the DLL ABI backward compatibility
35         functions on Win64.
36
37 2008-08-07  Matthias Clasen  <mclasen@redhat.com>
38
39         * configure.in: Its g_content_type_from_mime_type, not 
40         g_content_type_for_mime_type. Noticed by Roger Brown
41
42 2008-08-07 16:19:16  Tim Janik  <timj@imendio.com>
43
44         * gdk/gdkrgb.c (gdk_rgb_select_conv): use g_error() instead of a
45         combination of g_warning+exit to avoid misleading the user.
46
47 2008-08-07  Michael Natterer  <mitch@imendio.com>
48
49         * gtk/gtkactiongroup.c
50         * gtk/gtkcellrendererspin.c
51         * gtk/gtkfilechooserbutton.c
52         * gtk/gtktoolitem.c: chain up unconditionally in finalize().
53
54 2008-08-07  Michael Natterer  <mitch@imendio.com>
55
56         * gtk/gtkclist.c
57         * gtk/gtkcontainer.c
58         * gtk/gtkfilechooserbutton.c
59         * gtk/gtkgamma.c
60         * gtk/gtkmenutoolbutton.c
61         * gtk/gtkoptionmenu.c
62         * gtk/gtkradiobutton.c
63         * gtk/gtkradiomenuitem.c
64         * gtk/gtktipsquery.c
65         * gtk/gtktree.c
66         * gtk/gtktreeview.c: chain up unconditionally in destroy().
67
68         * gtk/gtkhandlebox.c: remove empty destroy() implementation.
69
70 2008-08-07  Michael Natterer  <mitch@imendio.com>
71
72         Bug 546756 – gnome-panel crashed with SIGSEGV in
73         g_type_check_instance_cast()
74
75         * gtk/gtkimagemenuitem.c: add GtkObject::destroy() implementation
76         and remove the image now that it's an internal child and isn't
77         destroyed by gtk_container_destroy() any longer. Thanks to tml for
78         helping bisecting this down.
79
80 2008-08-07  Sven Neumann  <sven@gimp.org>
81
82         Bug 546771 - Add writable property "visited" to GtkLinkButton
83
84         * gtk/gtk.symbols
85         * gtk/gtklinkbutton.[ch]: expose the 'visited' state as a
86         read-write property with getters and setters. Also move the nick
87         and blurb of the "uri" property to the proper translation domain.
88
89 2008-08-07  Michael Natterer  <mitch@imendio.com>
90
91         * gtk/gtkicontheme.c (apply_emblems): move variables to local
92         scopes, fix indentation and silence bogus warning about using
93         uninitialized variables.
94
95 2008-08-07  Richard Hult  <richard@imendio.com>
96
97         Bug 535573 – Deadlock in gdkeventloop-quartz.c:poll_func()
98
99         * gdk/quartz/gdkeventloop-quartz.c: (gdk_event_prepare),
100         (select_thread_func), (poll_func): Patch by Yevgen Muntyan, fixes
101         deadlock and missing events.
102
103 2008-08-07  Richard Hult  <richard@imendio.com>
104
105         * gdk/quartz/gdkscreen-quartz.c: (gdk_screen_get_monitor_plug_name)
106         (gdk_screen_get_monitor_height_mm, gdk_screen_get_monitor_width_mm):
107         Implement those, fixes loading python bindings.
108
109 2008-08-07  Emmanuele Bassi  <ebassi@gnome.org>
110
111         Bug 545031 – list of recently used files is created world-readable
112
113         * gtk/gtkrecentmanager.c:
114         (gtk_recent_manager_real_changed): Set the recently-used.xbel
115         file to 0600. (Guido Berhoerster)
116
117 2008-08-06  Michael Natterer  <mitch@imendio.com>
118
119         * modules/printbackends/cups/gtkcupsutils.c
120         (gtk_cups_connection_test_free): remove return value, this
121         function returns void.
122
123 2008-08-06  Michael Natterer  <mitch@imendio.com>
124
125         * gtk/gtkcombobox.c
126         * gtk/gtkiconview.c
127         * gtk/gtkrange.c
128         * gtk/gtkscrolledwindow.c
129         * gtk/gtktreeview.c: remove CLAMPing from values passed to
130         gtk_adjustment_set_value() since it does it right now.
131
132 2008-08-05  Matthias Clasen  <mclasen@redhat.com>
133
134         * configure.in: Bump version
135
136         * === Released 2.13.6 ===
137
138         * gdk/tests/Makefile.am: Disable check-gdk-cairo test for now,
139         since it breaks make distcheck.
140
141 2008-08-05  Michael Natterer  <mitch@imendio.com>
142
143         * gtk/gtkcombobox.c (gtk_combo_box_update_sensitivity): bail out
144         early if priv->button is NULL to avoid zillions of warnings when
145         destroying combo boxes that were working fine before the
146         button sensitivity patch.
147
148 2008-08-05  Michael Natterer  <mitch@imendio.com>
149
150         Bug 544858 – Seal GtkAdjustment
151
152         * gtk/gtk.symbols
153         * gtk/gtkadjustment.[ch] (struct GtkAdjustment): seal all struct
154         members.
155
156         Add accessors for all properties and additionally a new function
157         gtk_adjustment_configure() which sets all properties at
158         once. Patch by Christian Dywan and myself.
159
160 2008-08-05  Michael Natterer  <mitch@imendio.com>
161
162         * gtk/gtkadjustment.c (gtk_adjustment_set_value): clamp the value
163         to [lower...upper-page_size] instead of only [lower...upper].
164
165         * README: add note about this change.
166
167         While this fix is correct and should have been there forever, it
168         has the potential to break some corner cases, however these cases
169         would set page_size to a value != 0 which suggests they want it
170         honored.
171
172 2008-08-05  Michael Natterer  <mitch@imendio.com>
173
174         * tests/testiconview.c: don't use the deprecated
175         gtk_box_pack_start_defaults().
176
177 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
178
179         Bug 545982 – missing braces cause bogus warnings when using GtkBuilder
180
181         * gtk/gtkcelllayout.c:
182         * gtk/gtkdialog.c:
183         * gtk/gtkcontainer.c: Add missing braces to some GtkBuildable
184         implementations. Patch by Antti Kaijanmäki
185
186 2008-08-05  Tor Lillqvist  <tml@novell.com>
187
188         * gtk/gtktext.c: Cast pointer to gintptr instead of gulong to
189         avoid warning on Win64.
190
191 2008-08-05  Tor Lillqvist  <tml@novell.com>
192
193         * gtk/gtkgc.c: Cast tile, stipple and clip_mask pointers to
194         gintptr instead of long when calculating hash, so we get all of
195         the pointer bits on Win64 where long is 32 bits.
196
197 2008-08-05  Tor Lillqvist  <tml@novell.com>
198
199         * gtk/gtkprintoperation-win32.c: Don't need to declare
200         IPrintDialogCallback with mingw64 either. It seems to be provided
201         with the newer versions of the headers included with mingw64.
202
203 2008-08-05  Tor Lillqvist  <tml@novell.com>
204
205         Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
206
207         * gtk/gtksocket-win32.c: Don't cast HWND to guint, pass it as such
208         as the GdkNativeWindow parameter to
209         gtk_window_remove_embedded_xid(). Debugging printout format fixes.
210
211         * gtk/gtkwin32embed.h
212         * gtk/gtkwin32embed.c: Change the types of wparam and lparam
213         parameters to actually be WPARAM and LPARAM.
214
215         * gtk/gtkplug-win32.c: Adapt accordingly.
216
217 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
218
219         * gtk/gtksettings.c: Improve a setting nick: 'aureal' is not really
220         a word, use 'audible' instead.
221
222 2008-08-05  Tor Lillqvist  <tml@novell.com>
223
224         * gtk/updateiconcache.c (write_bucket): Enclose ?: expression
225         with parens so cast covers all of it.
226
227 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
228
229         Bug 382291 – Automatically dim the combobox when the model is empty
230
231         * gtk/gtk.symbols:
232         * gtkcombobox.[hc]: Add a GtkComboBox::button-sensitivity
233         property with getter and setter to control the sensitity of
234         empty combo boxes. Patch by Carlos Garnacho, Sven Herzberg,
235         Christian Dywan and others.
236
237         * README.in: Add a note about automatic combobox sensitivity.
238         
239 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
240
241         * gtk/tests/Makefile.am: Skip crossingevents test when
242         running make check, since it doesn't work on a naked
243         X server.
244
245 2008-08-05  Tor Lillqvist  <tml@novell.com>
246
247         Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
248
249         * gdk/gdkdnd.h
250         * gdk/gdkdnd.c
251         * gdk/win32/gdkdnd-win32.c
252         * gdk/x11/gdkdnd-x11.c: Change return value and type of window id
253         from guint32 to GdkNativeWindow for
254         gdk_drag_get_protocol_for_display() and
255         gdk_drag_get_protocol(). This is not an API break on existing
256         platforms, as GdkNativeWindow has been guint32 for them
257         already.
258
259         * gdk/gdkselection.h
260         * gdk/gdkselection.c
261         * gdk/win32/gdkselection-win32.c
262         * gdk/x11/gdkselection-x11.c: Ditto for the requestor window id
263         parameter of gdk_selection_send_notify_for_display() and
264         gdk_selection_send_notify().
265
266         * gdk/win32/gdkcursor-win32.c
267         * gdk/win32/xcursors.h: Change some gchar* to guchar* and vice
268         versa to avoid gcc 4.4 signedness warnings.
269
270         * gdk/win32/gdkevents-win32.c
271         * gdk/win32/gdkproperty-win32.c
272         * gdk/win32/gdkselection-win32.c: Add some guchar and char pointer
273         casts to get rid of gcc 4.4 signedness warnings. Print GdkAtom
274         values in debugging output using the %p format.
275         
276         * gdk/win32/gdkkeys-win32.c
277         * gdk/win32/gdkfont-win32.c
278         * gdk/win32/gdkmain-win32.c: Add some casts to avoid gcc warnings.
279  
280         * gdk/win32/gdkwindow-win32.c: Use SetWindowLongPtr() instead of
281         SetWindowLong().
282
283         * gdk/win32/gdkwin32id.c (gdk_handle_hash): Use all 64 bits of a
284         HANDLE on Win64.
285
286         * gtk/gtkwindow.h
287         * gtk/gtkwindow.c: Change the type of the xid parameter of the
288         internal gtk_window_remove_embedded_xid() and
289         gtk_window_add_embedded_xid() functions from guint to
290         GdkNativeWindow.
291
292         * gtk/gtkwindow.c (send_client_message_to_embedded_windows):
293         Instead of GPOINTER_TO_UINT(), just cast the gpointer to
294         GdkNativeWindow. GPOINTER_TO_UINT() drops the upper 32 bits on
295         Win64.
296
297 2008-08-05  Tor Lillqvist  <tml@novell.com>
298
299         * gdk/gdkrgb.c: Cast pointers to guintptr, not unsigned long,
300         before doing bit tests on them.
301
302 2008-08-05  Tor Lillqvist  <tml@novell.com>
303
304         * configure.in: Define GDK_NATIVE_WINDOW_POINTER on 32-bit
305         Windows, too. It just makes more sense, as a HWND *is* a kind of
306         pointer.
307
308         * gdk/gdkconfig.h.win32: Ditto here.
309
310 2008-08-04  Björn Lindqvist  <bjourne@gmail.com>
311
312         Bug 534979 – GtkImageMenuItem is a bin but has two children.
313
314         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_forall): Do not
315         include the image widget when iterating over non-internal
316         children. Patch by rainwoodman.
317
318 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
319
320         * NEWS: Updates
321
322 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
323
324         * configure.in: Bump glib dependency to 2.17.6
325
326 2008-08-04  Michael Natterer  <mitch@imendio.com>
327
328         * gtk/gtkclist.c
329         * gtk/gtkctree.c
330         * gtk/gtkpixmap.c
331         * gtk/gtkpreview.c: get rid of using deprecated GDK APIs.
332
333         * gtk/gtktext.c: ditto, apart from the text cruft APIs.
334
335 2008-08-04  Michael Natterer  <mitch@imendio.com>
336
337         * gdk/gdk.c (gdk_parse_args): call gdk_rgb_set_verbose(TRUE) if
338         "gdkrgb" is in the debug flags.
339
340         * gdk/gdkrgb.c (gdk_rgb_init): remove setting the verbose flag
341         here, this function is deprecated and the debug flag didn't work
342         when using GDK properly.
343
344 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
345
346         * gtk/gtkicontheme.c: Update to handle GEmblem.
347
348 2008-08-04  Michael Natterer  <mitch@imendio.com>
349
350         * tests/prop-editor.c: undeprecate (apart from still using
351         GtkOptionMenu).
352
353 2008-08-04  Michael Natterer  <mitch@imendio.com>
354
355         * gtk/gtkseparatortoolitem.c
356         * tests/testactions.c: remove pointless #undef GTK_DISABLE_DEPRECATED.
357
358         * gtk/gtkcalendar.c (calendar_set_display_option): use
359         gtk_calendar_set_display_options() instead of the deprecated
360         gtk_calendar_display_options().
361
362 2008-08-04  Carlos Garnacho  <carlos@imendio.com>
363
364         * gtk/gtkfilechooserbutton.c: Fix "/* within comment" warning.
365
366 2008-08-04  Carlos Garnacho  <carlos@imendio.com>
367
368         * gtk/gtknotebook.c (gtk_notebook_expose): Set drag window background
369         to be the GtkNotebook background color. This is a workaround to
370         prevent black pixels in rounded tabs when reordering. Improves
371         #368234.
372
373 2008-08-04  Carlos Garnacho  <carlos@imendio.com>
374
375         * gtk/gtk.symbols:
376         * gtk/gtkfilechooserbutton.[ch]:
377         * gtk/gtkfilechooserdefault.[ch]:
378         * gtk/gtkfilechooserdialog.[ch]:
379         * gtk/gtkfilechooserwidget.[ch]: Deprecate
380         gtk_file_chooser_*_new_with_backend(), since GIO is already used
381         directly. Fixes #545976.
382
383 2008-08-04  Carlos Garnacho  <carlos@imendio.com>
384
385         * gtk/gtk.symbols:
386         * gtk/gtkfilechooser.[ch]: Make GFile-oriented API public. Fixes
387         #545978.
388         * gtk/gtkfilechooserbutton.c:
389         * gtk/gtkfilechooserdefault.c:
390         * gtk/gtkfilechooserutils.c: Update to use public GFile API.
391
392 2008-08-04  Michael Natterer  <mitch@imendio.com>
393
394         * gtk/Makefile.am: build with GTK_DISABLE_DEPRECATED again.
395
396         Fix pltcheck.sh by restricting the visibility of deprecated
397         symbols to the places where they are actually used:
398
399         * gtk/gtkclist.c
400         * gtk/gtkctree.c
401         * gtk/gtklistitem.c
402         * gtk/gtklist.c
403         * gtk/gtkprogressbar.c
404         * gtk/gtkpixmap.c
405         * gtk/gtkprogress.c: #undef GTK_DISABLE_DEPRECATED and #define
406         __GTK_FOO_C__ on top instead of before including gtkaliasdef.c.
407
408         * gtk/gtkclist.h
409         * gtk/gtkctree.h
410         * gtk/gtklistitem.h
411         * gtk/gtklist.h
412         * gtk/gtkpixmap.h
413         * gtk/gtkprogress.h: make the headers visible if the respective
414         __GTK_FOO_C__ are defined.
415
416 2008-08-04  Michael Natterer  <mitch@imendio.com>
417
418         * gtk/gtkclist.c
419         * gtk/gtklist.c
420         * gtk/gtkoldeditable.c
421         * gtk/gtkpixmap.c
422         * gtk/gtktipsquery.c
423         * gtk/gtktree.c
424         * gtk/gtktreeitem.c: avoid using deprecated GtkWidget API.
425
426 2008-08-04  Michael Natterer  <mitch@imendio.com>
427
428         * gtk/gtkclist.[ch]
429         * gtk/gtkctree.[ch]
430         * gtk/gtkitemfactory.[ch]
431         * gtk/gtkobject.[ch]
432         * gtk/gtksignal.[ch]: s/GtkDestroyNotify/GDestroyNotify/g
433
434 2008-08-04  Sven Neumann  <sven@gimp.org>
435
436         * gtk/gtklinkbutton.c (gtk_link_button_set_uri): update the link
437         color when the "visited" state is changed.
438
439 2008-08-04  Michael Natterer  <mitch@imendio.com>
440
441         * gtk/gtkwindow.c: move the code of the deprecated
442         gtk_window_set_policy() to a new private function
443         gtk_window_set_policy_internal() and call it from
444         gtk_window_set_policy().
445
446         (gtk_window_set_resizable): use the new internal function in order
447         to avoid our own deprecated public API.
448
449 2008-08-04  Michael Natterer  <mitch@imendio.com>
450
451         * gtk/gtkbindings.c: move the code of the deprecated
452         gtk_binding_entry_clear() to a new private function
453         gtk_binding_entry_clear_internal() and call it from
454         gtk_binding_entry_clear().
455
456         (_gtk_binding_entry_add_signall)
457         (gtk_binding_parse_bind): use the new internal function in order
458         to avoid our own deprecated public API.
459
460 2008-08-04  Michael Natterer  <mitch@imendio.com>
461
462         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_font):
463         avoid our own deprecated public API and use
464         gtk_font_selection_get_font_internal() instead of
465         gtk_font_selection_get_font().
466
467         (gtk_font_selection_get_font)
468         (gtk_font_selection_dialog_get_font): Add missing
469         "Deprecated: 2.0" to the api doc comments.
470
471 2008-08-04  Michael Natterer  <mitch@imendio.com>
472
473         * gdk/tests/Makefile.am: add the generated PNGs to CLEANFILES.
474
475 2008-08-04  Tor Lillqvist  <tml@novell.com>
476
477         * configure.in: Set LIB_EXE_MACHINE_FLAG to either X86 or X64 on
478         Windows. AC_SUBST it.
479
480         * gdk/Makefile.am
481         * gtk/Makefile.am: Pass appropriate -machine flag to lib.exe.
482
483 2008-08-04  Tor Lillqvist  <tml@novell.com>
484
485         Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
486
487         * configure.in: On Win64, define GDK_NATIVE_WINDOW_POINTER.
488
489         * gdk/gdkconfig.h.win32: Ditto here.
490
491 2008-08-04  Tor Lillqvist  <tml@novell.com>
492
493         * gtk/gtkstatusicon.c: Fix typo in Win32 and Quartz code:
494         s/gtk_icon_icon_info_load_icon/gtk_icon_info_load_icon/ .
495
496 2008-08-04  Tor Lillqvist  <tml@novell.com>
497
498         * configure.in: Don't bother with the test "if gio can sniff png"
499         if $gio_can_sniff has been already set. Preset it to "no" for
500         Win32. This helps cross-compilation from 32-bit Windows to 64-bit,
501         or from Unix to Windows in general. No idea how this should be
502         handled for cross-compilation in general.
503
504 2008-08-04  Tor Lillqvist  <tml@novell.com>
505
506         * gdk/win32/gdkdisplay-win32.c: Don't bother looking up
507         EnumDisplayMonitors and GetMonitorInfoA dynamically, they are
508         present in NT-based Windows since Windows 2000.
509         (enum_monitor): For some reason the MONITORINFOEX struct in
510         mingw-win64 is different than the proper one as in MSDN and 32-bit
511         mingw, so just copy the proper definition here.
512
513 2008-08-03  Björn Lindqvist  <bjourne@gmail.com>
514
515         Bug 540379 – gtk_tree_view_enable_model_drag_dest and
516         gtk_tree_view_enable_model_drag_source unsets reorderable property
517
518         * gtk/gtktreeview.c: Improve docstrings regarding reorderable
519         property.
520
521 2008-08-03  Matthias Clasen  <mclasen@redhat.com>
522
523         * gdk/x11/gdkapplaunchcontext-x11.c: Support GEmblemedIcon.
524
525 2008-08-03  Matthias Clasen  <mclasen@redhat.com>
526
527         Bug 546128 – Weirz string
528
529         * gtk/gtksettings.c: Add a translator hint.
530         Requested by Ignacio Casal Quinteiro
531
532 2008-08-02  Tor Lillqvist  <tml@novell.com>
533
534         Bug 538686 - gtkprintoperation-win32.c: devmode_from_settings
535
536         * gtk/gtkprintoperation-win32.c (devmode_from_settings): Plug
537         potential leak. Thanks to Morten Welinder.
538
539 2008-08-02  Tor Lillqvist  <tml@novell.com>
540
541         * gtk/gtkprint-win32.c
542         * gtk/gtkprint-win32.h
543         * gtk/gtkprintoperation-win32.c: Cosmetic fixups after patch
544         below.
545
546 2008-08-02  Tor Lillqvist  <tml@novell.com>
547
548         Bug 339699 - implement gtk_print_operation_set_show_dialog for
549         Windows
550         
551         * gtk/gtkprint-win32.c
552         * gtk/gtkprint-win32.h
553         * gtk/gtkprintoperation-win32.c: Patch by ecyrbe@gmail.com.
554
555 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
556         
557         Bug 544302 – GtkStatusIcon should support GIcon
558
559         * gtk/gtk.symbols:
560         * gtk/gtkstatusicon.[hc]: Add GIcon support to GtkStatusIcon.
561         Patch by Christian Dywan
562
563 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
564         
565         Bug 429427 – Add "arrow-spacing" style property to GtkRange
566
567         * gtk/gtkrange.c: Add an arrow-spacing style property.
568         Patch by Carlos Garnacho and Christian Dywan
569
570 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
571
572         Bug 429411 – add style properties to set minimum progressbar 
573         width/height
574
575         * gtk/gtkprogressbar.c: Add style properties for minimum size.
576         Patch by Carlos Garnacho and Christian Dywan
577
578 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
579
580         Bug 526575 – Missing return type in gtk_ui_manager_get_toplevels
581         documentation
582
583         * gtk/gtkuimanager.c (gtk_ui_manager_get_toplevels): Improve
584         the docs.
585
586 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
587
588         Bug 523950 – GtkTreeModelFilter's visible function may get an empty
589         row
590
591         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_visible_func):
592         Explain and show how iterators pointing to empty rows should be
593         handled in the visible function. Patch by Björn Lindqvist
594
595 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
596
597         Bug 539733 – No way to control treeview separator height
598
599         * gtk/gtktreeview.c: Respect the wide-separators and
600         separator-height style properties when drawing separators.
601         Patch by Christian Dywan
602
603 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
604
605         Bug 65818 – rename gtk_window_set_default() and add getter for it
606
607         * gtk/gtk.symbols:
608         * gtk/gtkwindow.[hc]: Rename gtk_window_get_default to
609         gtk_window_get_default_widget. Patch by Christian Dywan
610
611 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
612
613         Bug 344383 – use po/LINGUAS
614
615         * po/LINGUAS: New file, to make translators happy.
616         * configure.in: Use po/LINGUAS
617         * po/Makefile.in.in: Add po/LINGUAS to DISTFILES
618         Patch by Claude Paroz
619
620 2008-08-02  Matthias Clasen  <mclasen@redhat.com>
621
622         * gdk/gdkapplaunchcontext.c: Improve the docs
623
624 2008-08-01  Claudio Saavedra  <csaavedra@igalia.com>
625
626         Bug 545931 – small documentation typos
627
628         * gtk/gtkcomboboxentry.c: Fix some typos in the documentation.
629
630 2008-08-01  Hans Breuer  <hans@breuer.org>
631
632         * gdk/makefile.msc : build gdkwindowimpl
633
634         * gtk/gtkwidget.c : fix c99ism - declaration needs to be at the
635         start of a block
636
637         * tests/makefile.msc : update
638
639 2008-07-31  Cody Russell  <bratsche@gnome.org>
640
641         Bug 56070 – Can't click button after setting it sensitive.
642
643         * gtk/gtkwidget.[ch]
644         * gtk/gtkwindow.c
645         * gtk/gtkmain.c
646         * gtk/gtkbutton.c
647         * gtk/gtkprivate.h
648         * gdk/gdkevents.h: Synthesize crossing events events where necessary.
649
650         * gtk/tests/crossingevents.c: Add unit tests for crossing events.
651
652         Big thanks to Ed Catmur, Matthias Clasen, and everyone else who
653         has worked on and helped out with this.
654
655 2008-07-31  Matthias Clasen  <mclasen@redhat.com>
656
657         Bug 424207 – printing hangs on unreachable cups server
658
659         * modules/printbackends/cups/gtkcupsutils.[hc]: Implement a
660         non-blocking test for reachability of the cups server.
661
662         * modules/printbackends/cups/gtkprintbackendcups.c: Don't block
663         while trying to get the default printer. Patch by Marek Kasik.
664
665 2008-07-31  Matthias Clasen  <mclasen@redhat.com>
666
667         * modules/input/gtkimcontextmultipress.c: Use a second-granularity
668         timer for automatic commit.
669
670         * gtk/gtkclipboard.c (gtk_clipboard_store): Use a second-grandularity
671         timer for the store timeout.
672
673 2008-07-31  Matthias Clasen  <mclasen@redhat.com>
674
675         * gdk/gdk.[hc]:
676         * gdk/gdk.symbols: Complete the set of thread-safe timeout function
677         with second-granularity versions. Patch by Marek Kasik.
678
679 2008-07-30  Tor Lillqvist  <tml@novell.com>
680
681         * gtk/gtkprintoperation-win32.c: Fix problems in handling custom
682         paper sizes. The DEVMODE::dmPaperWidth and dmPaperLength are in
683         tenths of a millimeter, and the RECT passed to CreateEnhMetaFile()
684         is in hundredths of a millimeter. Patch by Sven Neumann.
685
686 2008-07-28  Matthias Clasen  <mclasen@redhat.com>
687
688         * gtk/gtktreemodel.c: Small doc improvements.
689
690 2008-07-28  Matthias Clasen  <mclasen@redhat.com>
691
692         * configure.in: Bump GLib requirement to 2.17.5 for GEmblemedIcon
693
694         * gtk/gtkicontheme.c: Support rendering GEmblemedIcons.
695
696 2008-07-27  Sven Herzberg  <sven@imendio.com>
697
698         Bug 544863 – gtkquartz.h not included in released 2.13.5 package
699
700         * gtk/Makefile.am: explicitly include the moved header in EXTRA_DIST
701
702 2008-07-25  Murray Cumming  <murrayc@murrayc.com>
703
704         * gtk/gtkstatusicon.c (gtk_status_icon_class_init):
705         Documented the activate and popup-menu signals as being for use 
706         by applications and language bindings, though they are G_SIGNAL_ACTION, 
707         as stated in bug #361561.
708
709 2008-07-24  Sebastien Bacher  <seb128@ubuntu.com>
710
711         * modules/printbackends/cups/gtkprintbackendcups.c:
712         (cups_printer_get_options): don't try free gettext() values,
713         fix a printing dialog crasher (bug 544390)
714
715 2008-07-24  Cody Russell  <bratsche@gnome.org>
716
717         Bug 544510 – SetTimer callback signatures has the wrong type
718
719         * gdk/win32/gdkevents-win32.c: Fix modal_timer_proc() and
720         sync_timer_proc() to use UINT_PTR for the 'id' parameter
721         instead of 'id'.  Patch by Richard Hult.
722
723 2008-07-23  Matthias Clasen  <mclasen@redhat.com>
724
725         Bug 543915 – "Sole completion" translation issue
726
727         * gtk/gtkfilechooserentry.c: Add translator hints to a
728         bunch of strings. Requested by Andre Klapper
729
730 2008-07-23  Matthias Clasen  <mclasen@redhat.com>
731
732         Bug 544265 – GDK assumes XFIXES extension
733
734         * gdk/x11/gdkcursor-x11.c (_gdk_x11_cursor_update_theme):
735         Only call XFixes functions if the server has the extension.
736         Reported by Ian Turner.
737
738 2008-07-22  Matthias Clasen  <mclasen@redhat.com>
739
740         * configure.in: Compare two content types, not content type
741         and mime type.
742
743 2008-07-22  Sven Herzberg  <sven@imendio.com>
744
745         Fix svn:ignore and the include condition
746
747         * gdk/tests/check-gdk-cairo.c: ifndef => ifdef
748
749 2008-07-22  Tor Lillqvist  <tml@novell.com>
750
751         * configure.in: Workaround for what apparently is a bug in MSYS:
752         returning -1 from main() is misinterpreted as exit status 0, so
753         make sure we return 0 or 1. (The net effect of the bug was that no
754         image loading worked on Windows.)
755
756 2008-07-22  Sven Herzberg  <sven@imendio.com>
757
758         Add a test for my fixes from July 20th.
759
760         * configure.in: create gdk/tests/Makefile
761         * gdk/Makefile.am: include the tests subfolder
762         * gdk/tests/Makefile.am: create and run my test
763         * gdk/tests/check-gdk-cairo.c (test), (main): the test that I wrote
764         (passes at least for x11 and quartz backends)
765
766 2008-07-22  Frederic Crozat  <fcrozat@mandriva.com>
767
768         * gdk/x11/gdkscreen-x11.c: Don't use RandR 1.2
769         if driver is detected as randr12_compat (ie X driver
770         is not RandR 1.2 compliant). Fixes multihead with 
771         such drivers. Bug #543317.
772
773 2008-07-21  Matthias Clasen  <mclasen@redhat.com>
774
775         * configure.in: Default to linking against Xinerama again,
776         so that we can fallback to Xinerama when broken X drivers
777         make Xrandr useless. Sigh.
778
779 2008-07-21  Matthias Clasen  <mclasen@redhat.com>
780
781         * configure.in: Bump version
782
783         * === Released 2.13.5 ===
784
785 2008-07-21  Matthias Clasen  <mclasen@redhat.com>
786
787         * gtk/gtktestutils.c:
788         * gtk/gtkscalebutton.c:
789         * gtk/gtkmessagedialog.c:
790         * gtk/gtkmenu.c:
791         * gtk/gtkcontainer.c:
792         * gtk/gtkcolorseldialog.c:
793         * gtk/gtkaccelgroup.c:
794         * gtk/gtkentry.c:
795         * gtk/gtkfontsel.c: Fix some doc problems.
796
797 2008-07-21  Michael Natterer  <mitch@imendio.com>
798
799         * gtk/gtkbox.c (gtk_box_add): use gtk_box_pack_start() instead of
800         the deprecated gtk_box_pack_start_defaults().
801
802         * gtk/gtkbindings.c (gtk_binding_entry_add_signal)
803         (gtk_binding_parse_signal): use _gtk_binding_entry_add_signall()
804         instead of the deprecated gtk_binding_entry_add_signall().
805
806 2008-07-21  Emmanuele Bassi  <ebassi@gnome.org>
807
808         * gtk/gtkrecentmanager.c:
809         (recent_app_info_new), (recent_app_info_free): Use GSlice to
810         allocate the application data for recently used resources;
811         do not call time() to initialize the timestamp, as it will
812         be overwritten anyway later. (#535223, Michael Meeks)
813
814 2008-07-21  Kristian Rietveld  <kris@gtk.org>
815
816         Bug 543989 - Crash in gtk_tree_view_size_allocate_columns
817
818         * gtk/gtktreeview.c (gtk_tree_view_size_allocate_columns): check
819         for width_changed != NULL.  (Patch by Josselin Mouette).
820
821 2008-07-21  Michael Natterer  <mitch@imendio.com>
822
823         Bug 442042 – GtkScaleButton is too limited
824
825         * tests/testvolumebutton.c: forgot to commit code that tests
826         toggling the button's orientation. Also fixes the file's coding
827         style.
828
829 2008-07-21  Cody Russell  <bratsche@gnome.org>
830
831         Bug 153567 – Repaint glitches in widgets
832
833         * gdk/win32/gdkevents-win32.c: Set a sync timer when
834         we receive WM_SYNCPAINT, and RedrawWindow() once
835         the timer expires.
836
837 2008-07-21  Michael Natterer  <mitch@imendio.com>
838
839         * gtk/gtktoolbar.c (gtk_toolbar_class_init): use the simpler
840         g_signal_override_class_handler() instead of
841         g_signal_override_class_closure().
842
843         * gtk/gtktextview.c (gtk_text_view_class_init): ditto.
844
845         (gtk_text_view_compat_move_focus): chain up using
846         g_signal_chain_from_overridden_handler() instead of the generic
847         g_signal_chain_from_overridden() which needs manual fiddling with
848         millions of GValues.
849
850 2008-07-21  Michael Natterer  <mitch@imendio.com>
851
852         * gtk/gtkuimanager.c: remove redundant include.
853
854 2008-07-21  Michael Natterer  <mitch@imendio.com>
855
856         * gtk/gtkbindings.[ch]: remove _gtk_binding_signal_new().
857
858         * gtk/gtkfilechooserdefault.c
859         * gtk/gtkmenu.c
860         * gtk/gtkmenushell.c
861         * gtk/gtkscalebutton.c
862         * gtk/gtktextview.c
863         * gtk/gtktoolbar.c
864         * gtk/gtkwidget.c: use g_signal_new_class_handler() instead. Add
865         some missing I_() to the signal names.
866
867 2008-07-21  Michael Natterer  <mitch@imendio.com>
868
869         * gtk/gtkspinbutton.c: remove g_return_if_fail() from private
870         functions and virtual function implementations. Some minor
871         cleanups.
872
873 2008-07-20  Andre Klapper  <a9016009@gmx.de>
874
875         Bug 543915 - translation issues
876
877         * modules/printbackends/cups/gtkprintbackendcups.c:
878         Add translator comments for several strings.
879
880 2008-07-20  Sven Herzberg  <sven@imendio.com>
881
882         reviewed by: Richard Hult
883
884         Fixes #543868: GdkPixmap is upside down on quartz
885
886         * gdk/quartz/gdkdrawable-quartz.c (gdk_quartz_draw_drawable): flip the
887         coordinate space from GTK+ orientation to CoreGraphics orientation
888         before calling CoreGraphics code
889         * gdk/quartz/gdkgc-quartz.c (gdk_quartz_draw_tiled_pattern): drop the
890         coordinate space flipping (we always get it right, now)
891         * gdk/quartz/gdkpixmap-quartz.c
892         (gdk_pixmap_impl_quartz_get_context): flip the coordinate space when
893         creating the CGContextRef
894
895 2008-07-20  Sven Herzberg  <sven@imendio.com>
896
897         reviewed by: Richard Hult
898
899         Extracted the CGContextRef creation into a virtual function of
900         GdkDrawableImplQuartz; implement get_context() for GdkPixmap and
901         GdkWindow
902
903         * gdk/quartz/gdkdrawable-quartz.c
904         (gdk_quartz_drawable_get_context): dropped the different
905         implementations; forward to the virtual function now
906         * gdk/quartz/gdkdrawable-quartz.h: added the virtual function
907         * gdk/quartz/gdkpixmap-quartz.c
908         (gdk_pixmap_impl_quartz_get_context),
909         (gdk_pixmap_impl_quartz_class_init): implemented get_context()
910         * gdk/quartz/gdkwindow-quartz.c
911         (gdk_window_impl_quartz_get_context),
912         (gdk_window_impl_quartz_class_init): implemented get_context()
913
914 2007-08-19  Matthias Clasen  <mclasen@redhat.com>
915
916         * NEWS: Updates
917
918 2007-08-18  Matthias Clasen  <mclasen@redhat.com>
919
920         Bug 543545 – GtkAssistant crashes when gtk_widget_hide() is called
921         inside "apply" signal handler
922
923         * gtk/gtkassistant.c: Don't emit signals with extra parameters.
924         Patch by Antti Kaijanmäki
925
926 2007-08-18  Matthias Clasen  <mclasen@redhat.com>
927
928         Bug 543217 – GTK application crashed with directfb backend
929
930         *  gdk/directfb/gdkvisual-directfb.c: Avoid a crash in
931         _gdk_visual_init().  Patch by Huimin He.
932
933 2008-07-18  Federico Mena Quintero  <federico@novell.com>
934
935         * gtk/updateiconcache.c (build_cache): If the resulting cache file
936         would be empty, erase the old cache file as well as the temporary file.
937
938 2008-07-18  Federico Mena Quintero  <federico@novell.com>
939
940         * demos/gtk-demo/changedisplay.c (find_toplevel_at_pointer): Don't
941         do funny casts to avoid compiler warnings.
942
943         * demos/gtk-demo/textview.c (easter_egg_callback): Likewise.
944
945         * gtk/gtkmain.c (rewrite_event_for_grabs, gtk_get_event_widget): Likewise.
946
947         * gtk/gtkmodules.c (load_module): Likewise.
948
949         * gtk/gtkselection.c (gtk_selection_convert): Likewise.
950
951         * gtk/gtktipsquery.c (gtk_tips_query_event): Likewise.
952
953         * gtk/queryimmodules.c (query_module): Likewise.
954
955         * tests/testgtk.c (create_gridded_geometry, create_key_lookup)
956         (find_widget_at_pointer): Likewise.
957
958 2008-07-08  Matthias Clasen  <mclasen@redhat.com>
959
960         * modules/printbackends/cups/gtkprintbackendcups.c: Add a forgotten
961         hunk of the previous commit.
962
963 2008-07-18  Sven Herzberg  <sven@imendio.com>
964
965         Make aliasfilecheck.sh pass for the quartz backend, too.
966
967         * gtk/Makefile.am: don't include gtkquartz.h in the list of c files
968
969 2008-07-17  Runa Bhattacharjee <runabh@gmail.com>
970
971         * configure.in: Added Pashto (ps) to ALL_LINGUAS
972
973 2008-07-15  Paolo Borelli  <pborelli@katamail.com>
974
975         Bug 447998 - GtkBuilder does not support building parts of the xml tree
976
977         * gtk/gtkbuilder.c:
978         * gtk/gtkbuilder.h:
979         * gtk/gtkbuilderprivate.h:
980         * gtk/gtkbuilderparser.c:
981         * gtk/gtk.symbols:
982         Add two new functions that allow cherry picking and construct
983         objects from a ui description file or string.
984
985         * gtk/tests/builder.c: tests for the above.
986
987 2008-07-15  Paolo Borelli  <pborelli@katamail.com>
988
989         * gtk/tests/builder.c: fix up broken test (cellview has no "clicked"
990         signal) case and plug a couple of leaks.
991
992 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
993
994         Bug 543244 – crashes when renaming a bookmark
995
996         * gtk/gtkfilesystem.c (_gtk_file_system_set_bookmark_label): Don't
997         free a GFile. Reported by Sebastien Bacher
998
999 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
1000
1001         Bug 339591 – Detect list of availible cover pages
1002
1003         Patch by Marek Kasik:
1004         * modules/printbackends/cups/gtkprintbackendcups.c: Get the list of
1005         available cover pages and the default front and back cover pages 
1006         from the cups server.
1007
1008 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
1009
1010         Bug 384940 – handle rejecting jobs and authentication meaningfully
1011
1012         Patch by Marek Kasik, icons by Mike Langlie:
1013         * gtk/gtk.symbols:
1014         * gtk/gtkprintbackend.h:
1015         * gtk/gtkprinter.[hc]: Add new paused and accepting-jobs properties
1016         and getters/setters.
1017
1018         * gtk/gtkstock.h:
1019         * gtk/gtkiconfactory.c:
1020         * gtk/Makefile.am:
1021         * gtk/stock-icons/{16,24}/gtk-print-paused.{png,svg}: New icon.
1022
1023         * modules/printbackends/cups/gtkprintbackendcups.c: 
1024         * gtk/gtkprintunixdialog.c: Handle paused and job-rejecting 
1025         printers.
1026
1027 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
1028
1029         * configure.in: Add a test to see if GIO can sniff image data,
1030         this should make gdk-pixbuf use its own sniffing again, on OS X.
1031
1032 2008-07-15  Xavier Claessens  <xclaesse@gmail.com>
1033
1034         Bug 542523 – GtkTextTag should handle setting properties to NULL
1035
1036         * gtk/gtktexttag.c (gtk_text_tag_set_property): Unset the color when
1037         setting it to NULL instead of displaying a warning.
1038
1039 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
1040
1041         Bug 479780 – Bookmarks in left pane of FileChooser cannot be renamed
1042
1043         * gtk/gtkfilechooserdefault.c (shortcuts_build_popup_menu):
1044         Call shortcuts_check_popup_sensitivity() every time the
1045         menu is popped up. Problem reported by Hong Jen Yee
1046         
1047 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
1048
1049         Bug 488766 – GtkFileChooserButton doesn't clear icon after
1050         gtk_file_chooser_unselect_all
1051
1052         * gtk/gtkfilechooserbutton.c (update_label_and_image): Unset
1053         the image when the label is set to "(None)". Reported by
1054         Neil Roberts
1055
1056         * tests/testfilechooserbutton.c: Add an "Unselect all" button.
1057
1058 2008-07-15  Matthias Clasen  <mclasen@redhat.com>
1059
1060         Bug 507394 – mem leak from gtk_selection_add_targets
1061
1062         * gtk/gtkoldeditable.c: Free target lists in finalize.
1063         Reported by Christian Persch
1064
1065 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
1066
1067         * gtk/gtk.symbols:
1068         * gtk/gtktypeutils.[hc]: Complete the deprecation of gtk_type_class.
1069
1070 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
1071
1072         * gtk/gtklabel.c: Trivial doc fix.
1073
1074 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
1075
1076         Bug 542853 – jasper test fails due to incomplete library arguments
1077
1078         * configure.in: Add -ljpeg when checking for jasper.
1079         Reported by Mike Calmus
1080
1081 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
1082
1083         * gtk/Makefile.am: Add some missing stock-icons. Noticed by Marek 
1084         Kasik.
1085
1086 2008-07-11  Kristian Rietveld  <kris@gtk.org>
1087
1088         Bug 316087 - Resizing columns is chaotic
1089
1090         * gtk/gtktreeprivate.h: add new member fields.
1091
1092         * gtk/gtktreeview.c (gtk_tree_view_init), (validate_row): set post
1093         validation flag,
1094         (gtk_tree_view_size_allocate_columns): rework the size allocation
1095         mechanism to only recalculate the expand values if the width of the
1096         widget, content or the column configuration has changed,
1097         (gtk_tree_view_size_allocate): move call to size_allocate_columns()
1098         to before the adjustment updates so the proper width is used after
1099         we updated it,
1100         (gtk_tree_view_button_press), (gtk_tree_view_motion_resize_column):
1101         use the column width minus the expand value for the resized width,
1102         (gtk_tree_view_move_column_after): update call to
1103         gtk_tree_view_size_allocate_columns().
1104
1105         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_expand): set use
1106         resized width to FALSE.
1107
1108         * tests/Makefile.am:
1109         * tests/testtreecolumnsizing.c: new interactive test program
1110         for testing column resizing with different column configurations.
1111
1112 2008-07-11  Simos Xenitellis  <simos@gnome.org>
1113
1114         * gtk/compose-parse.py:
1115         * gtk/gtkimcontextsimple.c:
1116         Fixed typo for the name of Markus Kuhn, issue mentioned 
1117         in bug #321896 (comment 61).
1118         
1119 2008-07-11  Simos Xenitellis  <simos@gnome.org> 
1120
1121         Bug 334418 – Support easy input of ellipsis
1122
1123         * gtk/gtkimcontextsimpleseqs.h: Fixed 18 compose sequences
1124         that listed the wrong codepoint.  Reported by Wouter Bolsterlee.
1125
1126 2008-07-03  Murray Cumming  <murrayc@murrayc.com>
1127
1128         * gtk/gtkwidget.c (gtk_widget_set_property):  tooltip-text and 
1129         tooltip-markup properties: Interpret an empty string as a NULL 
1130         string because an empty tooltip is silly. This will help 
1131         language bindings that do not bother to have the two types of 
1132         empty/null strings.
1133         Bug #541399.
1134
1135 2008-07-10  Matthias Clasen  <mclasen@redhat.com>
1136
1137         Bug 542234 – iconview a11y implementation segfaults
1138
1139         * gtk/gtkiconview.c: Fix a segfault in the a11y code.
1140         Patch by Li Yuan.
1141
1142 2008-07-08  Christian Neumair  <cneumair@gnome.org>
1143
1144         * gtk/gtkuimanager.c (update_node):
1145         Skip update of accelerator child node if it has no associated action.
1146         Fixes #541950.
1147
1148 2008-07-07  Cody Russell  <bratsche@gnome.org>
1149
1150         Bug 541964 – [Win32] Setting modal hint to current value might confuse the stack
1151
1152         * gdk/win32/gdkwindow-win32.c: Check if the value is the same as the
1153         existing modal hint value before setting it.
1154
1155 2008-07-07  Cody Russell  <bratsche@gnome.org>
1156
1157         Bug 540994 – [Win32] Some windows don't appear at the top when created
1158
1159         * gdk/win32/gdkwindow-win32.c: Raise the window when setting it modal.
1160
1161         I actually already committed this one by accident, probably when I committed
1162         #541305, but just wanted to document it here in the ChangeLog.
1163
1164 2008-07-07  Johan Dahlin  <johan@gnome.org>
1165
1166         * gtk/tests/builder.c (test_cell_view):
1167         Add a test case for 528845.
1168
1169 2008-07-07  Tor Lillqvist  <tml@novell.com>
1170
1171         * gdk/win32/gdkwindow-win32.c
1172         (gdk_window_foreign_new_for_display): Need to initialise
1173         private->impl here, too.
1174
1175 2008-07-07  Michael Natterer  <mitch@imendio.com>
1176
1177         * gtk/gtkfilesystem.c: include the two needed headers instead of
1178         <gtk/gtk.h>.
1179
1180 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1181
1182         Bug 528845 – segv from GtkBuilder on attempting <accelerator> under
1183         GtkCellView
1184
1185         * gtk/gtkcellview.c: Don't blindly chain up in the buildable
1186         implementation.  Reported by Kevin Ryde.
1187
1188 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1189
1190         Bug 469068 – clarify gdk_cairo_create()
1191
1192         * gdk/gdkcairo.c (gdk_cairo_create): Add a note that cairo
1193         contexts cannot be cached for handling expose events.
1194         Proposed by Behdad Esfahbod.
1195
1196 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1197
1198         Bug 507953 – gtk_tree_view_set_tooltip_column() shows markups
1199
1200         * gtk/gtktreeview.c (gtk_tree_view_set_tooltip_column): Mention
1201         that the tooltip is set as markup. Proposed by Czirkos Zoltan.
1202
1203 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1204
1205         Bug 510225 – gtk_widget_get_composite_name retval should be freed
1206
1207         * gtk/gtkwidget.c (gtk_widget_get_composite_name): Clarify the
1208         docs. Pointed out by Wolfgang Oertl
1209
1210 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1211
1212         Bug 531129 – gtk_style_copy() does not include a return value or 
1213         description
1214
1215         * gtk/gtkstyle.c: Document gtk_style_copy.
1216
1217 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1218
1219         Bug 541540 – Dead link to pkg-config site in GTK+ online FAQ
1220         Bug 513580 – Broken link in GTK+ FAQ
1221
1222         * docs/faq/gtk-faq.sgml: Remove or update some outdated links.
1223
1224 2008-07-07  Christian Dywan  <christian@imendio.com>
1225
1226         * gtk/gtkcontainer.c (gtk_container_add_with_properties): Remove
1227         erroneously added g_return_if_fail (bug #541811).
1228
1229 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1230
1231         Bug 343663 – source-buffer highlighting highlights "char" in
1232         gtk_text_iter_forward_char
1233
1234         * demos/gtk-demo/*.c: Fix up the handrolled hilighting a bit.
1235
1236 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1237
1238         Bug 327582 – Incomplete docs for GtkSettings::gtk-icon-sizes
1239         
1240         * gtk/gtksettings.c: Improve the documentation of the
1241         gtk-icon-sizes setting. Proposed by Tommi Komulainen.
1242
1243 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1244
1245         Bug 539248 – gtk_calender_query_tooltip calls ->detail_func with
1246         invalid dates
1247
1248         * gtk/gtkcalendar.c (gtk_calendar_query_tooltip):
1249         Check that the cursor is over a valid date before retrieving
1250         its details.  Patch by Chris Wilson
1251
1252 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1253
1254         Bug 493008 – gdk_screen_get_window_stack is not 64-bit-compatible
1255
1256         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_window_stack): Fix
1257         64-bit brokenness. Reported by Christian Hammond.
1258
1259 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1260
1261         Bug 541645 – gtkfilechooserdefault segfaults when bookmark does not
1262         contain ://
1263
1264         * gtk/gtkfilechooserdefault.c (_gtk_file_chooser_label_for_file):
1265         Be more robust. Reported by  Jelte van der Hoek
1266
1267 2008-07-06  Matthias Clasen  <mclasen@redhat.com>
1268
1269         Bug 540917 – deprecate pack_start_defaults()
1270
1271         * gtk/gtk.symbols:
1272         * gtk/gtkbox.[hc]: Deprecated gtk_box_pack_{start,end}_defaults.
1273         Proposed by Owen Taylor
1274
1275 2008-07-05  Matthias Clasen  <mclasen@redhat.com>
1276
1277         * configure.in: Bump version
1278
1279 2008-07-05  Matthias Clasen  <mclasen@redhat.com>
1280
1281         * === Released 2.13.4 ===
1282
1283 2008-07-05  Michael Natterer  <mitch@imendio.com>
1284
1285         * gtk/gtk.symbols: move gtk_draw_insertion_cursor() out of the
1286         deprecated section because it isn't deprecated.
1287
1288 2008-07-05  Michael Natterer  <mitch@imendio.com>
1289
1290         * gtk/gtkprogressbar.c: remove #if HAVE_CONFIG_H and clean up
1291         other include weirdness in this file.
1292
1293 2008-07-05  Matthias Clasen  <mclasen@redhat.com>
1294
1295         * NEWS: Updates
1296
1297 2008-07-04  Matthias Clasen  <mclasen@redhat.com>
1298
1299         * gtk/gtkiconview.c:
1300         * gtk/gtkfontsel.c:
1301         * gtk/gtkscalebutton.c: Small doc fixes.
1302
1303 2008-07-04  Matthias Clasen  <mclasen@redhat.com>
1304
1305         * gdk/gdkevents.c:
1306         * gdk/x11/gdktestutils-x11.c: Small doc fixes
1307
1308 2008-07-04  Matthias Clasen  <mclasen@redhat.com>
1309
1310         * gtk/tests/defaultvalue.c: Omit some more untestable properties.
1311
1312         * gtk/gtkmenu.c: Fix the initial value of the monitor property.
1313
1314         * gtk/gtkentry.c: Fix the property getter for text-length property.
1315
1316         * gtk/gtkaccelgroup.c: Fix default value for modifier-mask property.
1317
1318 2008-07-04  Matthias Clasen  <mclasen@redhat.com>
1319
1320         * gtk/gtkmenu.c: Debork the attach-widget property.
1321
1322 2008-07-04  Michael Natterer  <mitch@imendio.com>
1323
1324         Fix make check:
1325
1326         * gtk/Makefile.am: remove GTK_DISABLE_DEPRECATED from INCLUDES
1327         again :-(
1328
1329         * gtk/gtkclist.c
1330         * gtk/gtkcombo.c
1331         * gtk/gtkctree.c
1332         * gtk/gtklist.c
1333         * gtk/gtklistitem.c
1334         * gtk/gtknotebook.c
1335         * gtk/gtkobject.c
1336         * gtk/gtkoldeditable.c
1337         * gtk/gtkpixmap.c
1338         * gtk/gtktext.c
1339         * gtk/gtktipsquery.c
1340         * gtk/gtktree.c
1341         * gtk/gtktreeitem.c: don't #define it again before including
1342         gtkalias.h after it has been #undef'ed before.
1343
1344 2008-07-04  Michael Natterer  <mitch@imendio.com>
1345
1346         * gtk/gtkentry.c (_gtk_entry_reset_im_context): set need_im_reset
1347         to FALSE instead of 0.
1348
1349 2008-07-04  Michael Natterer  <mitch@imendio.com>
1350
1351         Allocate with GSlice:
1352
1353         * gtk/gtkassistant.c: GtkAssistantPage
1354         * gtk/gtkcellview.c: GtkCellViewCellInfo
1355         * gtk/gtkentry.c: GtkEntryPasswordHint, PopupInfo
1356         * gtk/gtkfilefilter.c: FilterRule
1357         * gtk/gtknotebook.c: GtkNotebookPage
1358
1359 2008-07-04  Michael Natterer  <mitch@imendio.com>
1360
1361         * gtk/gtkcombobox.c: allocate ComboCellInfo with GSlice.
1362
1363 2008-07-04  Michael Natterer  <mitch@imendio.com>
1364
1365         * gtk/gtkprintoperation.c (print_pages): change "error_dialog"
1366         variable to GtkWidget fo fix two warnings.
1367
1368 2008-07-04  Michael Natterer  <mitch@imendio.com>
1369
1370         Bug 539944 – Add GtkScaleButton API so struct fields can be marked
1371         as private
1372
1373         * gtk/gtk.symbols
1374         * gtk/gtkscalebutton.[ch]: add gtk_scale_button_get_plus_button()
1375         and _get_minus_button(). Patch by Christian Dywan.
1376
1377 2008-07-04  Matthias Clasen  <mclasen@redhat.com>
1378
1379         * gtk/gtkscalebutton.c:
1380         * gdk/gdk.symbols: 
1381         * gdk/gdkwindowimpl.c: Fix make check.
1382
1383 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1384
1385         Bug 540618 – gtk_menu_shell_select_first prints warning on GtkMenubar
1386         constructed using GtkUIManager
1387
1388         * gtk/gtkmenuitem.c: Fall back to the default positioning when
1389         the menuitem is not realized. Patch by Björn Lindqvist.
1390
1391 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1392
1393         Bug 540612 – mem leak in filechooser
1394
1395         * gtk/gtkfilesystem.c (get_volumes_list): Fix a memory leak.
1396         Patch by Christian Persch.
1397
1398 2008-07-04  Tor Lillqvist  <tml@novell.com>
1399
1400         Bug 540861 - invalid UTF-8 in input device name
1401
1402         * gdk/win32/gdkinput-win32.c: Fetch the device and cursor names in
1403         Unicode, and convert to UTF-8 for the GdkDevice's name field.
1404
1405 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1406
1407         Bug 538863 – Fixes assertion on entering empty folder
1408
1409         * gtk/gtkfilechooserdefault.c (browse_files_select_first_row): Don't
1410         select the first row if the folder is empty.
1411         Patch by Olle Bergkvist.
1412
1413 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1414
1415         Bug 540915 – GtkBuilder sets properties in reverse order
1416
1417         * gtk/gtkbuilderparser.c (parse_custom): Set properties in the order 
1418         in which they are specified in the xml file.  
1419
1420 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1421         
1422         Bug 539944 – Add GtkScaleButton API so struct fields can be marked as
1423         private
1424
1425         * gtk/gtk.symbols:
1426         * gtk/gtkscalebutton.[hc] (gtk_scale_button_get_popup): Add an
1427         accessor for the popup. Patch by Christian Dywan
1428
1429 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1430
1431         Bug 535498 – Printing demo broken
1432
1433         * demos/gtk-demo/printing.c: Use monospace as font name, 
1434         not mono. Also use the right advance when moving from line to line.
1435         Patch by Yevgen Muntyan.
1436
1437 2008-07-03  Matthias Clasen  <mclasen@redhat.com>
1438
1439         Bug 538547 – Update doc-shooter in gtk documentation
1440
1441         * docs/tools/Makefile.am:
1442         * docs/tools/folder.png:
1443         * docs/tools/gnome.png: New images
1444
1445         * docs/tools/widgets.c: Use the new images.
1446         Patch by Baptiste Mille-Mathias.
1447
1448 2008-07-03  Michael Natterer  <mitch@imendio.com>
1449
1450         * gtk/gtkscalebutton.c: remove "_from_bindings" suffix from the
1451         names of binding signal implementations.
1452
1453 2008-07-03  Li Yuan  <li.yuan@sun.com>
1454
1455         * gail-uninstalled.pc.in:
1456         Bug #536430. Add libgailutil.la into gail-uninstalled.pc.in.
1457
1458 2008-07-03  Cody Russell  <bratsche@gnome.org>
1459
1460         Bug 540529 – Remove all GIMP references
1461
1462         * gtk+-2.0.pc.in:
1463         * gdk-2.0.pc.in:
1464         * gtk+-unix-print-2.0.pc.in:
1465         * gtk+-2.0-uninstalled.pc.in:
1466         * gdk-2.0-uninstalled.pc.in: Changed GIMP Toolkit to say
1467         GTK+ Graphical UI Library in the pkg-config files.
1468
1469 2008-07-02  Cody Russell  <bratsche@gnome.org>
1470
1471         Bug 541305 – [Win32] Scrolling was broken after GdkWindow refactoring
1472
1473         * gdk/win32/gdkwindow-win32.c: Reverted some logic so that scrolling
1474         works again.
1475
1476         * gdk/win32/gdkgeometry-win32.c: Removed some more unnecessary checks.
1477         * gdk/win32/gdkkeys-win32.c: Removed unused variable to fix compile-time
1478         warnings.
1479
1480 2008-07-02  Cody Russell  <bratsche@gnome.org>
1481
1482         Bug 541249 – [Win32] Fix some internal static methods
1483
1484         * gdk/gdkwindow-win32.c: Make the interface implementation methods
1485         static.
1486
1487 2008-07-02  Michael Natterer  <mitch@imendio.com>
1488
1489         Bug 537591 – Don't hardcode minimum width of menuitems
1490
1491         * gtk/gtkmenuitem.c: applied patch from Christian Dywan which
1492         introduces a "width-chars" style property which replaces the
1493         hardcoded minimum width of menuitems with submenu. Patch
1494         extracted from Maemo-GTK+.
1495
1496 2008-07-02  Michael Natterer  <mitch@imendio.com>
1497
1498         * gtk/gtkfilechooserdefault.c: remove some of the million includes.
1499
1500 2008-07-02  Kristian Rietveld  <kris@imendio.com>
1501
1502         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init):
1503         Since s/2.16/2.14/ for the new gicon property.
1504
1505 2008-07-02  Kristian Rietveld  <kris@imendio.com>
1506
1507         Bug 455268 - Add gtk-enable-tooltips GtkSetting
1508
1509         * gtk/gtk.symbols:
1510         * gtk/gtktoolbar.[ch] (gtk_toolbar_[gs]et_tooltips): deprecated.
1511
1512         * gtk/gtksettings.c: introduce gtk-enable-tooltips XSetting.
1513
1514         * gtk/gtktooltip.c (_gtk_tooltip_handle_event): take the newly
1515         introduced XSetting into account.
1516
1517         * demos/gtk-demo/appwindow.c: don't use the now deprecated
1518         gtk_toolbar_set_tooltips().
1519
1520 2008-07-02  Cody Russell  <bratsche@gnome.org>
1521
1522         Bug 541162 – [Win32] Update for the new GdkWindowImpl stuff
1523
1524         * gdk/win32/gdkprivate-win32.h:
1525         * gdk/win32/gdkgeometry-win32.c:
1526         * gdk/win32/gdkevents-win32.c:
1527         * gdk/win32/gdkwindow-win32.c: Update Win32 backend according to
1528         the newly refactored GdkWindow code.
1529         
1530 2008-07-01  Cody Russell  <bratsche@gnome.org>
1531
1532         Bug 539164 – Windows' System Menu blocks main loop
1533
1534         * gdk/win32/gdkevents-win32.c: Use a modal timer proc in between
1535         receiving WM_ENTERMENULOOP and WM_EXITMENULOOP and pump the
1536         GLib mainloop from there.
1537
1538 2008-07-01  Richard Hult  <richard@imendio.com>
1539
1540         Some aftermath from the window impl cleanups:
1541
1542         * gdk/quartz/gdkwindow-quartz.c:
1543         (gdk_window_merge_child_input_shapes): Rename and export again.
1544         (gdk_window_quartz_get_offsets): Make static.
1545
1546 2008-07-01  Michael Natterer  <mitch@imendio.com>
1547
1548         * gtk/gtkscalebutton.h: forgot to commit the header, fixed now.
1549
1550 2008-07-01  Matthias Clasen  <mclasen@redhat.com>
1551
1552         539790 – [PATCH] Please add three new settings to GtkSettings
1553
1554         * gdk/x11/gdksettings.c: 
1555         * gtk/gtksettings.c: Add event sound settings.
1556         Patch by Lennart Poettering.
1557
1558 2008-07-01  Matthias Clasen  <mclasen@redhat.com>
1559
1560         Bug 434535 – printoperation's create_surface doesn't check temp file
1561         creation for success
1562
1563         Patch by Marek Kasik:
1564
1565         * gtk/gtkprintoperation-unix.c
1566         (_gtk_print_operation_platform_backend_create_preview_surface): 
1567         Handle failure to create temp file by returning NULL.
1568
1569         * gtk/gtkprintoperation.c (gtk_print_operation_preview_handler):
1570         Return FALSE if surface creation fails.
1571
1572         (print_pages): If the preiew signal is not handled, show an
1573         error dialog.
1574
1575 2008-07-01  Michael Natterer  <mitch@imendio.com>
1576
1577         Bug 442042 – GtkScaleButton is too limited
1578
1579         * gtk/gtkscalebutton.[ch]: turn "orientation" into a normal
1580         property that can be changed at any time after widget
1581         creation. Add public API for it.
1582
1583         * gtk/gtk.symbols: add gtk_scale_button_get/set_orientation.
1584
1585 2008-06-30  Michael Natterer  <mitch@imendio.com>
1586
1587         Some unrelated cleanups found while reviewing
1588         the offscreen window patch:
1589
1590         * gdk/gdkwindow.c: add missing Since: 2.14 to the redirection
1591         functions, fix some function header indentation, update
1592         documentation of redirect_to_drawable().
1593
1594         * gdk/x11/gdkwindow-x11.c
1595         * gdk/x11/gdkpixmap-x11.c: fix function header
1596         formatting/indentation.
1597
1598         * gtk/gtkwidget.c: use I_() on "damage_event".
1599
1600 2008-06-30  Michael Natterer  <mitch@imendio.com>
1601
1602         * gdk/gdkinternals.h: remove duplicate declaration of
1603         _gdk_window_new().
1604
1605 2008-06-30  Michael Natterer  <mitch@imendio.com>
1606
1607         * gdk/Makefile.am: reorder source lists alphabetically.
1608
1609 2008-06-30  Matthias Clasen  <mclasen@redhat.com>
1610
1611         Bug 540310 – Avoid unnecessary repaints when resizing GtkWindow
1612
1613         * gtk/gtkwindow.c: Avoid unnecessary redraws when resizing.
1614         Patch by Owen Taylor
1615
1616 2008-06-29  Behdad Esfahbod  <behdad@gnome.org>
1617
1618         Bug 530255 – GtkAboutDialog cuts off comments label
1619         Followup patch from  Jan Arne Petersen
1620
1621         * gtk/gtklabel.c (gtk_label_get_layout_offsets): Ensure layout.
1622
1623 2008-06-28  Michael Natterer  <mitch@imendio.com>
1624
1625         * gtk/gtkselection.h: properly indent the newly added
1626         GtkSelectionData accessors. Some newlines can't hurt either.
1627
1628 2008-06-27  Mikael Hallendal  <micke@imendio.com>
1629
1630         * gtk/gtkbox.c (gtk_box_pack): Removed accidental empty row.
1631
1632 2008-06-27  Mikael Hallendal  <micke@imendio.com>
1633
1634         * gtk/gtkbox.c (gtk_box_pack, gtk_box_pack_start, gtk_box_pack_end):
1635         Factored out gtk_box_pack from gtk_box_pack_start and use it from both
1636         pack_start and pack_end in order to reduce the code duplication.
1637
1638 2008-06-27  Michael Natterer  <mitch@imendio.com>
1639
1640         Bug 442042 – GtkScaleButton is too limited
1641
1642         * gtk/gtkscalebutton.c (gtk_scale_button_init): set the name
1643         "gtk-scalebutton-popup-window" on the popup window so it is
1644         properly themeable.
1645
1646 2008-06-27  Kristian Rietveld  <kris@imendio.com>
1647
1648         * gdk/quartz/gdkgeometry-quartz.c:
1649         * gdk/quartz/gdkwindow-quartz.c:
1650         * gdk/quartz/gdkprivate-quartz.h: adapt to use GdkWindowImpl
1651         interface.
1652
1653 2008-06-27  Carlos Garnacho  <carlos@imendio.com>
1654
1655         * gtk/gtkrecentmanager.c (get_icon_for_mime_type): Fix two potential
1656         critical warnings. Bug #539470.
1657
1658 2008-06-27  Emmanuele Bassi  <ebassi@gnome.org>
1659
1660         Abstract some GdkWindow API into an interface that the backends
1661         must implement. (based on a patch by Alex Larsson)
1662
1663         * gdk/Makefile.am: Add gdkwindowimpl.[ch]
1664
1665         * gdk/gdk.symbols: Move symbols around.
1666
1667         * gdk/gdkinternals.h:
1668         * gdk/gdkwindowimpl.[ch]: Move some of the GdkWindow API we require
1669         from the backends to a GInterface that the backends should implement
1670         instead.
1671
1672         * gdk/gdkwindow.c: Provide some of the GdkWindow public API as a
1673         wrapper call around the GdkWindowImpl interface vtable.
1674
1675         * gdk/x11/gdkevents-x11.c:
1676         * gdk/x11/gdkgeometry-x11.c:
1677         * gdk/x11/gdkprivate-x11.h:
1678         * gdk/x11/gdkwindow-x11.c:
1679         * gdk/x11/gdkwindow-x11.h: Update the X11 backend to implement
1680         the GdkWindowImpl interface.
1681
1682 2008-06-27  Martyn Russell  <martyn@imendio.com>
1683
1684         Bug 540318 - Invalid URL
1685         
1686         * gtk/gtkcontainer.c: (gtk_container_add): Fixed the FAQ location
1687         in the warning produced here.
1688
1689 2008-06-27  Michael Natterer  <mitch@imendio.com>
1690
1691         Bug 442042 – GtkScaleButton is too limited
1692
1693         * gtk/gtkscalebutton.c: add "orientation" property. Make sure the
1694         stuff that is part of the public API continues to be created in
1695         init() to stay compatible. Move creating of the popup scale to
1696         constructor(). Add an internal HScale class. Changed popup
1697         positioning for horizontal scales accordingly.
1698
1699 2008-06-26  Michael Natterer  <mitch@imendio.com>
1700
1701         * gtk/gtkscalebutton.c
1702         * gtk/gtkvolumebutton.c: remove redundant init() and class_init()
1703         prototypes, remove redundant includes, remove a little trailing
1704         whitespace.
1705
1706 2008-06-26  Richard Hult  <richard@imendio.com>
1707
1708         * gtk/gtkclipboard-quartz.c: (gtk_clipboard_wait_for_contents):
1709         * gtk/gtkquartz.c:
1710         (_gtk_quartz_get_selection_data_from_pasteboard),
1711         (_gtk_quartz_set_selection_data_for_pasteboard): Patch from
1712         Christian Dywan to clean up selection data setting.
1713
1714 2008-06-26  Richard Hult  <richard@imendio.com>
1715
1716         * gtk/gtkdnd-quartz.c (gtk_drag_begin_internal): Don't use
1717         deprecated function gtk_widget_ref, replace with g_object_ref.
1718
1719 2008-06-26  Michael Natterer  <mitch@imendio.com>
1720
1721         * gtk/gtkfilesystem.c: #include "config.h"
1722
1723 2008-06-26  Carlos Garnacho  <carlos@imendio.com>
1724
1725         * gtk/gtkfilechooserdefault.c
1726         (gtk_file_chooser_default_get_current_folder): current_folder can be
1727         NULL here, do not try to reference it (Bug #540235)
1728         (gtk_file_chooser_default_get_files): Deal better with
1729         gtk_file_chooser_default_get_current_folder() being able to return
1730         NULL.
1731
1732 2008-06-26  Michael Natterer  <mitch@imendio.com>
1733
1734         * gtk/gtktextutil.c (_gtk_text_util_append_special_char_menuitems):
1735         allocate the GtkTextUtilCallbackInfo structs with GSlice.
1736
1737 2008-06-25  Michael Natterer  <mitch@imendio.com>
1738
1739         * gtk/gtktypeutils.h: there is no reason to include
1740         <gtk/gtktypebuiltins.h> in the middle of the file, move it to top,
1741         replacing the <glib-object.h> include. Also move the remaining few
1742         non-deprecated things to the top and move some deprecated things
1743         around to clean up the mess with too many deprecated sections even
1744         more.
1745
1746 2008-06-24  Michael Natterer  <mitch@imendio.com>
1747
1748         * gtk/gtktypeutils.h: deprecate gtk_type_init() unconditionally
1749         (also for GTK_COMPILATION). Move some deprecated typedefs around
1750         to reduce the mess with zillions of deprecated sections.
1751
1752         * gtk/gtkmain.c (do_post_parse_initialization): replace the call
1753         to gtk_type_init() by g_type_init() and gtk_object_get_type() even
1754         though the latter is probably completely pointless.
1755
1756 2008-06-24  Michael Natterer  <mitch@imendio.com>
1757
1758         * gtk/gtkdialog.c (gtk_dialog_init): also revert change in how
1759         the dialog's vbox was added (bug #539732).
1760
1761 2008-06-24  Carlos Garnacho  <carlos@imendio.com>
1762
1763         * gtk/gtkdialog.[ch]: Remove container implementation, which isn't
1764         thought for handling non-direct children. Fixes #539732.
1765         (gtk_dialog_pack_start) (gtk_dialog_pack_end): Removed as well, it
1766         doesn't provide enough control to API users (removing, reordering...),
1767         this is better handled through:
1768         (gtk_dialog_get_content_area): New function which just returns
1769         dialog->vbox.
1770         * gtk/gtk.symbols: Modify accordingly.
1771         * docs/reference/gtk/tmpl/gtkdialog.sgml: Update docs to recommend
1772         using gtk_dialog_get_[action|content]_area() instead of accessing
1773         dialog struct members directly.
1774
1775 2008-06-24  Michael Natterer  <mitch@imendio.com>
1776
1777         * gtk/gtkassistant.h
1778         * gtk/gtkcellrenderer.h
1779         * gtk/gtkfilechooserentry.h
1780         * gtk/gtkprivate.h
1781         * gtk/gtktooltip.h
1782         * gtk/gtktreeview.h
1783         * gtk/gtkwindow.h: no need to include gtkwidget.h or gtkobject.h
1784         if there is any other widget included, they all have to include
1785         their respective parent classes (the is-a relation works for
1786         includes too).
1787
1788 2008-06-24  Michael Natterer  <mitch@imendio.com>
1789
1790         * gtk/gtktextutil.h: remove includes from this internal header.
1791
1792         * gtk/gtktextutil.c: include gtktextbuffer.h before gtktextutil.h.
1793
1794 2008-06-23  Michael Natterer  <mitch@imendio.com>
1795
1796         * gtk/gtkinvisible.h: formatting.
1797
1798 2008-06-23  Michael Natterer  <mitch@imendio.com>
1799
1800         * gtk/gtkaction.h
1801         * gtk/gtkbuildable.h
1802         * gtk/gtkbuilderprivate.h
1803         * gtk/gtkcelllayout.h
1804         * gtk/gtkentrycompletion.h
1805         * gtk/gtkfilechoosersettings.h
1806         * gtk/gtkfilesystem.h
1807         * gtk/gtkfilesystemmodel.h
1808         * gtk/gtkicontheme.h
1809         * gtk/gtklinkbutton.h
1810         * gtk/gtkpagesetup.h
1811         * gtk/gtkpapersize.h
1812         * gtk/gtkprintcontext.h
1813         * gtk/gtkprintoperation.h
1814         * gtk/gtkprintoperationpreview.h
1815         * gtk/gtkprintsettings.h
1816         * gtk/gtkrecentchooserprivate.h
1817         * gtk/gtkrecentmanager.h
1818         * gtk/gtksearchengine.h
1819         * gtk/gtktexttag.h
1820         * gtk/gtktreeselection.h
1821         * gtk/gtktreeviewcolumn.h
1822         * gtk/gtkuimanager.h: remove redundant inclusion of <glib.h> and
1823         <glib-object.h>. There is no point in relying on them being pulled
1824         in by other headers in some places and placing them explicitly in
1825         other places, so choose the "as little includes as possible"
1826         approach and get rid of them.
1827
1828 2008-06-23  Kristian Rietveld  <kris@imendio.com>
1829
1830         * gdk/gdkenumtypes.h.template:
1831         * gdk-pixbuf/gdk-pixbuf-enum-types.h.template:
1832         * gtk/gtktypebuiltins.h.template:
1833         * perf/typebuiltins.h.template: do not hard code the prefix of the
1834         enum, use @ENUMPREFIX@ instead (you need an up to date glib for this).
1835
1836 2008-06-23  Michael Natterer  <mitch@imendio.com>
1837
1838         * gtk/gtkmountoperation.h
1839         * gtk/gtktestutils.h
1840         * gtk/gtkshow.[ch]: remove as many includes as possible from these
1841         new files. They can't be included individually, so nothing can break.
1842
1843 2008-06-22  Michael Natterer  <mitch@imendio.com>
1844
1845         * gtk/gtkaccelgroup.c: use g_param_spec_flags(), not enum() when
1846         registering the "modifier-mask" property.
1847
1848 2008-06-21  Johan Dahlin  <jdahlin@async.com.br>
1849
1850     * *.[ch]: Include "config.h" instead of <config.h>
1851         Command used:
1852         find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g'
1853         Rubberstamped by Mitch and Tim
1854
1855 2008-06-21  Carlos Garnacho  <carlos@imendio.com>
1856
1857         Bug 539466 – GtkMenuShell API/ABI break in trunk.
1858
1859         * gtk/gtkmenushell.h: Fix API/ABI break, two guint fields had
1860         different name and packing width.
1861
1862 2008-06-21  Johan Dahlin  <jdahlin@async.com.br>
1863
1864         * gtk/gtkiconcachevalidator.c (check_pixel_data): Cast to guint8* to avoid
1865         a compiler warning.
1866
1867 2008-06-21  Michael Natterer  <mitch@imendio.com>
1868
1869         * gdk/gdkapplaunchcontext.h: remove redundant include, fix
1870         indentation, replace header by a GDK copyright header (don't say
1871         "The Gnome Library"), remove trailing whitespace.
1872
1873 2008-06-21  Hans Breuer  <hans@breuer.org>
1874
1875         * gtk/gtkprintoperation-win32.c(1713) : fix 'function' : incompatible 
1876         types - from 'struct _cairo *' to 'struct _cairo_surface *' by
1877         passing the surface to cairo_surface_show_page(), not the context
1878         * gtk/gtkprintoperation-win32.c(866) : get rid of warning C4018: 
1879         '<' : signed/unsigned mismatch by using guint for the loop
1880
1881         * gtk/gtkmenu.c(gtk_menu_get_property) : property 'menu::active' is 
1882         an uint, gtk_menu_get_active() returns the widget pointer. Convert
1883         the latter to the former by calculating the index in menu::children
1884         Also fix some occurences of g_return_if_fail() where 
1885         g_return_val_if_fail() was meant
1886
1887 2008-06-21  Björn Lindqvist  <bjourne@gmail.com>
1888
1889         Bug 539363 – Segfault when creating GtkPlugs
1890
1891         * gtk/gtkplug.c (gtk_plug_class_init): Spaces not allowed in
1892         property names. "socket window" => "socket-window"
1893
1894 2008-06-20  Jody Goldberg <jody@gnome.org>
1895
1896         * gtk/gtkprintoperation-win32.c (gtk_print_run_page_setup_dialog) : 
1897           Fix life cycle to avoid crash. [#536966]
1898
1899 2008-06-20  Hans Breuer  <hans@breuer.org>
1900
1901         * gtk/gtkmenuitem.c gtk/gtkmessagedialog.c gtk/gtkplug.c : must return
1902         a value of the appropriate type with g_return_val_if_fail
1903         
1904         * gdk/gdkconfig.h.win32 : add the GSEAL definition here as well
1905
1906         * gtk/gtkfilesystem.c : don't add the "File System" on win32
1907
1908         * tests/makefile.msc : remove broken autotestfile(system|chooser) 
1909         from build
1910
1911 2008-06-20  Johan Dahlin  <jdahlin@async.com.br>
1912
1913         * gtk/gtkbutton.c: Document a style property
1914
1915         * gtk/gtkeditable.c: Document and use - instead of _ in signal names.
1916
1917         * gtk/gtkbutton.c:
1918         * gtk/gtkcolorsel.c:
1919         * gtk/gtkentry.c:
1920         * gtk/gtkitemfactory.c:
1921         * gtk/gtknotebook.c:
1922         Fix up deprecated markup syntax. Add version numbers and
1923         a message on the remaning ones.
1924
1925 2008-06-20  Mikael Hallendal  <micke@imendio.com>
1926
1927         * tests/testthreads.c: Use g_signal_connect instead of
1928         gtk_signal_connect.
1929
1930         * demos/testgtk/main.c: switched to use GSignal instead of GtkSignal.
1931         While the code is not built, people may still look at it.
1932
1933 2008-06-20  Kjartan Maraas  <kmaraas@gnome.org>
1934
1935         reviewed by: <Carlos Garnacho <garnacho@gnome.org>
1936
1937         * gtk/gtkbuilder.h:
1938         * gtk/gtkliststore.h:
1939         * gtk/gtkobject.h:
1940         * gtk/gtktextchild.h:
1941         * gtk/gtktreemodelfilter.h:
1942         * gtk/gtktreemodelsort.h:
1943         * gtk/gtktreestore.h:
1944         #include <gdkconfig.h> not <gdk/gdkconfig.h>
1945
1946 2008-06-20  Martyn Russell  <martyn@imendio.com>
1947
1948         * gtk/gtkaccelgroup.c: Fix warnings from calling
1949         g_object_notify() on a GtkAccelGroup without casting to a
1950         GObject.
1951
1952 2008-06-20  Johan Dahlin  <jdahlin@async.com.br>
1953
1954         * gtk/gtkcolorsel.c: Modernize and order things as most
1955         other objects. Defines at the top, class init before init
1956         before gobject methods before object method before widget
1957         methods. No changes to the logic done.
1958
1959 2008-06-20  Martyn Russell  <martyn@imendio.com>
1960
1961         * gtk/gtkaccelgroup.c: Don't call g_object_notify() with
1962         properties that don't exist. Also, make sure we notify for
1963         the "is-locked" property.
1964
1965 2008-06-20  Johan Dahlin  <jdahlin@async.com.br>
1966
1967         * gtk/gtklayout.c (enum): Remove left-over unused property enum.
1968
1969 2008-06-20  Johan Dahlin  <jdahlin@async.com.br>
1970
1971         * gtk/gtkscalebutton.c: Fix gtk-doc syntax, add missing trailing colon.
1972
1973         * gtk/gtk.symbols: Add all newly added accessors so abicheck.sh passes
1974
1975         * gtk/gtkwidget.c (gtk_widget_get_allocation): Initialize the
1976         allocation to avoid compiler warnings
1977
1978 2008-06-20  Michael Natterer  <mitch@imendio.com>
1979
1980         * gtk/gtkaccellabel.h
1981         * gtk/gtkactiongroup.h
1982         * gtk/gtkalignment.h
1983         * gtk/gtkarrow.h
1984         * gtk/gtkaspectframe.h
1985         * gtk/gtkbin.h
1986         * gtk/gtkhandlebox.h
1987         * gtk/gtkprogressbar.h
1988         * gtk/gtkrange.h
1989         * gtk/gtkscale.h
1990         * gtk/gtkscalebutton.h
1991         * gtk/gtkselection.h: fix some formatting and spacing uglyness
1992         that got merged from the GSEAL branch.
1993
1994 2008-06-20  Johan Dahlin  <jdahlin@async.com.br>
1995
1996         * gtk/gtk.symbols:
1997         * gtk/gtkmessagedialog.c (gtk_message_dialog_get_image):
1998         * gtk/gtkmessagedialog.h:
1999         Add missing accessor for sealed field GtkMessageDialog->image.
2000
2001 2008-06-20  Michael Natterer  <mitch@imendio.com>
2002
2003         * gtk/gtkprinter.h: the GSEAL branch added two includes for no
2004         reason.
2005
2006 2008-06-20  Johan Dahlin  <jdahlin@async.com.br>
2007
2008         * gtk/gtkaccelgroup.c:
2009         * gtk/gtkcolorseldialog.c:
2010         * gtk/gtkcontainer.c:
2011         * gtk/gtkdialog.c:
2012         * gtk/gtkentry.c (gtk_entry_class_init):
2013         * gtk/gtkfontsel.c:
2014         * gtk/gtkhandlebox.c:
2015         * gtk/gtklayout.c:
2016         * gtk/gtkmenu.c (gtk_menu_class_init):
2017         * gtk/gtkmenuitem.c (gtk_menu_item_class_init):
2018         * gtk/gtkplug.c (gtk_plug_class_init):
2019         * gtk/gtkselection.c:
2020         * gtk/gtksocket.c:
2021         * gtk/gtktreeselection.c:
2022         * gtk/gtkwidget.c (gtk_widget_class_init):
2023         * gtk/gtkwindow.c:
2024         Add missing Since: gtk-doc markup for newly added GSEAL API.
2025         Change all Since: GSEAL-branch to Since: 2.14.
2026
2027 2008-06-20  Michael Natterer  <mitch@imendio.com>
2028
2029         * gtk/gtkaccelgroup.[ch]: fix some formatting and whitespace in
2030         the code merged from the GSEAL branch.
2031
2032 2008-06-20  Michael Natterer  <mitch@imendio.com>
2033
2034         * gtk/gtkdialog.[ch] (gtk_dialog_get_action_area): change return
2035         value from GtkHButtonBox to GtkWidget.
2036
2037 2008-06-20  Michael Natterer  <mitch@imendio.com>
2038
2039         * gtk/gtkhandlebox.h (struct _GtkHandleBox): deuglify formatting
2040         of sealed fields.
2041
2042 2008-06-20  Michael Natterer  <mitch@imendio.com>
2043
2044         * gtk/gtkwindow.[ch]
2045         * gtk/gtk.symbols: rename gtk_window_group_get_windows() to
2046         gtk_window_group_list_windows().
2047
2048 2008-06-20 12:35:20 +0200 Tim Janik
2049
2050         * Fixed wrongly resolved merge conflicts.
2051
2052 2008-06-19 19:01:41 +0200 Carlos Garnacho
2053
2054         Add gtk_window_group_get_windows().
2055
2056         * gtk/gtk.symbols:
2057         * gtk/gtkwindow.[ch] (gtk_window_group_get_windows): New function.
2058
2059 2008-06-19 18:39:47 +0200 Carlos Garnacho
2060
2061         Document gtk_dialog_get_action_area(), gtk_dialog_pack_start() and gtk_dialog_pack_end()
2062
2063         * gtk/gtkdialog.c: Add missing documentation for new fucntions.
2064
2065 2008-06-19 18:38:35 +0200 Carlos Garnacho
2066
2067         Document gtk_container_get_focus_child().
2068
2069         * gtk/gtkcontainer.c: Add documentation for gtk_container_get_focus_child().
2070
2071 2008-06-19 13:50:06 +0200 Christian Dywan
2072
2073         Add gtk_plug_get_socket_window
2074
2075 2008-06-19 13:11:52 +0200 Christian Dywan
2076
2077         Remove superflous gtkselection accessors and merge _get_data
2078
2079 2008-06-13 15:56:51 +0200 Christian Dywan
2080
2081         Implement gtk_selection_get_display, style fixes
2082
2083 2008-06-13 15:45:00 +0200 Christian Dywan
2084
2085         Fix indentation of a comment.
2086
2087 2008-06-13 15:10:08 +0200 Christian Dywan
2088
2089         Change docs and signature of gtk_widget_get_allocation
2090
2091 2008-06-13 14:22:17 +0200 Christian Dywan
2092
2093         Remove unneeded GtkColorSelectionDialog accessors
2094
2095 2008-06-13 12:57:54 +0200 Christian Dywan
2096
2097         Fix documentaion of gtk_menu_item_get_accel_path
2098
2099 2008-06-11 13:49:34 +0200 Christian Dywan
2100
2101         Fix gtk_widget_get_allocation
2102
2103 2008-06-07 15:37:18 +0200 Carlos Garnacho
2104
2105         Switch to "guint GSEAL (foo) : width;" when packing fields in guints.
2106
2107         * gtk/gtkbox.h:
2108         * gtk/gtkbutton.h:
2109         * gtk/gtkcellrenderer.h:
2110         * gtk/gtkcellrenderertext.h:
2111         * gtk/gtkcheckmenuitem.h:
2112         * gtk/gtkcontainer.h:
2113         * gtk/gtkentry.h:
2114         * gtk/gtkhandlebox.h:
2115         * gtk/gtkimcontextsimple.h:
2116         * gtk/gtklabel.h:
2117         * gtk/gtkliststore.h:
2118         * gtk/gtkmenu.h:
2119         * gtk/gtkmenuitem.h:
2120         * gtk/gtkmenushell.h:
2121         * gtk/gtknotebook.h:
2122         * gtk/gtkpaned.h:
2123         * gtk/gtkplug.h:
2124         * gtk/gtkprintjob.h:
2125         * gtk/gtkprogressbar.h:
2126         * gtk/gtkrange.h:
2127         * gtk/gtkscale.h:
2128         * gtk/gtkscrolledwindow.h:
2129         * gtk/gtksizegroup.h:
2130         * gtk/gtksocket.h:
2131         * gtk/gtkspinbutton.h:
2132         * gtk/gtkstatusbar.h:
2133         * gtk/gtktable.h:
2134         * gtk/gtktearoffmenuitem.h:
2135         * gtk/gtktextbuffer.h:
2136         * gtk/gtktextview.h:
2137         * gtk/gtktogglebutton.h:
2138         * gtk/gtktoolbar.h:
2139         * gtk/gtktreestore.h:
2140         * gtk/gtktreeviewcolumn.h:
2141         * gtk/gtkwindow.h: Do not specify width inside GSEAL() when packing fields in guints.
2142
2143 2008-06-06 19:02:17 +0200 Christian Dywan
2144
2145         Seal GtkWidget
2146
2147 2008-06-06 17:58:21 +0200 Christian Dywan
2148
2149         Seal GtkSelectionData
2150
2151 2008-06-06 17:57:23 +0200 Christian Dywan
2152
2153         Fix GtkDialog, don't add vbox via gtk_container_add.
2154
2155 2008-06-06 13:39:34 +0200 Kristian Rietveld
2156
2157         Make GtkCellRenderer::editing read-only.  (Catched by Matthias)
2158
2159 2008-06-03 09:11:50 +0200 Kristian Rietveld
2160
2161         Seal GtkTextView.
2162
2163 2008-05-30 16:48:12 +0100 Martyn Russell
2164
2165         Seal GtkFontSelection & GtkFontSelectionDialog
2166
2167 2008-05-29 10:35:29 +0200 Kristian Rietveld
2168
2169         Seal GtkTearoffMenuItem.
2170
2171         (the torn_off field is for internal state keeping, you can retrieve
2172         the value from the parent menu's tearoff_state).
2173
2174 2008-05-27 18:34:12 +0200 Christian Dywan
2175
2176         Seal GtkObject
2177
2178 2008-05-27 18:17:44 +0200 Christian Dywan
2179
2180         Seal GtkRange
2181
2182 2008-05-27 15:10:02 +0200 Christian Dywan
2183
2184         Seal GtkPlug
2185
2186 2008-05-27 14:17:45 +0200 Christian Dywan
2187
2188         Seal GtkMenuItem
2189
2190 2008-05-27 14:04:31 +0200 Christian Dywan
2191
2192         Seal GtkMenuShell
2193
2194 2008-05-27 12:40:08 +0200 Christian Dywan
2195
2196         Seal GtkInputDialog
2197
2198 2008-05-27 12:39:49 +0200 Christian Dywan
2199
2200         Seal GtkIMMultiContext
2201
2202 2008-05-27 12:39:17 +0200 Christian Dywan
2203
2204         Seal GtkIMContextSimple
2205
2206 2008-05-27 12:14:53 +0200 Christian Dywan
2207
2208         Seal GtkImage
2209
2210 2008-05-27 11:14:21 +0200 Christian Dywan
2211
2212         Seal GtkSocket
2213
2214 2008-05-27 10:54:20 +0200 Christian Dywan
2215
2216         Fix the build by including gdkconfig.h in gtkprinter.h.
2217
2218 2008-05-27 10:38:02 +0200 Christian Dywan
2219
2220         Seal GtkGammaCurve
2221
2222 2008-05-27 10:20:56 +0200 Christian Dywan
2223
2224         Seal GtkHandleBox
2225
2226 2008-05-26 17:58:19 +0200 Kristian Rietveld
2227
2228         Seal GtkInvisible.
2229
2230 2008-05-26 17:54:56 +0200 Kristian Rietveld
2231
2232         Seal GtkPrintJob.
2233
2234 2008-05-26 17:48:23 +0200 Kristian Rietveld
2235
2236         Seal GtkTextBuffer.
2237
2238 2008-05-26 17:39:38 +0200 Kristian Rietveld
2239
2240         Seal GtkSpinButton.
2241
2242 2008-05-26 17:31:06 +0200 Kristian Rietveld
2243
2244         Seal GtkTable.
2245
2246 2008-05-26 17:27:22 +0200 Kristian Rietveld
2247
2248         Seal GtkRuler.
2249
2250 2008-05-26 17:07:43 +0200 Kristian Rietveld
2251
2252         Seal GtkStatusBar.
2253
2254 2008-05-26 17:07:37 +0200 Kristian Rietveld
2255
2256         Seal GtkTextMark.
2257
2258 2008-05-26 16:39:27 +0200 Kristian Rietveld
2259
2260         Seal GtkTextTagTable.
2261
2262 2008-05-26 16:34:13 +0200 Kristian Rietveld
2263
2264         Seal GtkViewPort.
2265
2266 2008-05-26 17:08:19 +0200 Christian Dywan
2267
2268         Seal GtkSettings.h
2269
2270 2008-05-26 16:40:05 +0200 Christian Dywan
2271
2272         Seal GtkMenu
2273
2274 2008-05-26 16:37:54 +0200 Christian Dywan
2275
2276         Seal GtkLayout
2277
2278 2008-05-26 14:09:32 +0200 Kristian Rietveld
2279
2280         Seal priv pointer in GtkToggleToolButton.
2281
2282 2008-05-26 14:04:51 +0200 Kristian Rietveld
2283
2284         Seal priv pointer in GtkUIManager.
2285
2286 2008-05-26 14:01:32 +0200 Kristian Rietveld
2287
2288         Seal priv pointer in GtkToolItem.
2289
2290 2008-05-26 14:01:12 +0200 Kristian Rietveld
2291
2292         Seal priv pointer in GtkToolButton.
2293
2294 2008-05-26 14:00:24 +0200 Kristian Rietveld
2295
2296         Seal priv pointer in GtkToggleAction.
2297
2298 2008-05-26 13:58:01 +0200 Kristian Rietveld
2299
2300         Seal priv pointer in GtkStatusIcon.
2301
2302 2008-05-26 13:57:33 +0200 Kristian Rietveld
2303
2304         Seal priv pointer in GtkSeparatorToolItem.
2305
2306 2008-05-26 13:56:33 +0200 Kristian Rietveld
2307
2308         Seal priv pointer in GtkScaleButton.
2309
2310 2008-05-26 13:55:57 +0200 Kristian Rietveld
2311
2312         Seal priv pointer in GtkRecentManager.
2313
2314 2008-05-26 13:55:25 +0200 Kristian Rietveld
2315
2316         Seal priv pointer in GtkRecentChooserWidget.
2317
2318 2008-05-26 13:54:39 +0200 Kristian Rietveld
2319
2320         Seal priv pointer in GtkRecentChooserMenu.
2321
2322 2008-05-26 13:54:15 +0200 Kristian Rietveld
2323
2324         Seal priv pointer in GtkRecentChooserDialog.
2325
2326 2008-05-26 13:52:40 +0200 Kristian Rietveld
2327
2328         Seal priv pointer in GtkRecentAction.
2329
2330 2008-05-26 13:51:47 +0200 Kristian Rietveld
2331
2332         Seal priv pointer in GtkRadioAction.
2333
2334 2008-05-26 13:50:49 +0200 Kristian Rietveld
2335
2336         Seal priv pointer in GtkPrintUnixDialog.
2337
2338 2008-05-26 13:50:08 +0200 Kristian Rietveld
2339
2340         Seal priv pointer in GtkPrintOperation.
2341
2342 2008-05-26 13:49:41 +0200 Kristian Rietveld
2343
2344         Seal priv pointer in GtkPrinter.
2345
2346 2008-05-26 13:48:49 +0200 Kristian Rietveld
2347
2348         Seal priv pointer in  GtkPageSetupUnixDialog.
2349
2350 2008-05-26 13:47:39 +0200 Kristian Rietveld
2351
2352         Seal priv pointer in GtkMenuToolButton.
2353
2354 2008-05-26 13:47:29 +0200 Kristian Rietveld
2355
2356         Add gdkconfig.h include to GtkBuilder for GSEAL macro.
2357
2358 2008-05-26 13:23:45 +0200 Kristian Rietveld
2359
2360         Seal priv pointer in GtkLinkButton.
2361
2362 2008-05-26 13:22:25 +0200 Kristian Rietveld
2363
2364         Seal priv pointer in GtkIconView.
2365
2366 2008-05-26 13:22:04 +0200 Kristian Rietveld
2367
2368         Seal priv pointer in GtkIconTheme.
2369
2370 2008-05-26 13:13:49 +0200 Kristian Rietveld
2371
2372         Seal child_allocation field in GtkFrame.
2373
2374 2008-05-26 13:10:17 +0200 Kristian Rietveld
2375
2376         Sealed priv pointer in GtkFontButton.
2377
2378 2008-05-26 13:07:14 +0200 Kristian Rietveld
2379
2380         Seal priv pointer in GtkFileChooserButton.
2381
2382 2008-05-26 13:06:43 +0200 Kristian Rietveld
2383
2384         Seal priv pointer in GtkExpander.
2385
2386 2008-05-26 13:03:24 +0200 Kristian Rietveld
2387
2388         Sealed remaining (private) fields in GtkContainer.
2389
2390 2008-05-26 13:02:26 +0200 Kristian Rietveld
2391
2392         Seal priv pointer in GtkComboBoxEntry.
2393
2394 2008-05-26 13:01:40 +0200 Kristian Rietveld
2395
2396         Seal priv pointer in GtkComboBox.
2397
2398 2008-05-26 13:00:59 +0200 Kristian Rietveld
2399
2400         Seal private_data pointer in GtkColorSel.
2401
2402 2008-05-26 12:57:50 +0200 Kristian Rietveld
2403
2404         Seal 3 remaining fields in GtkButton.
2405
2406 2008-05-26 12:55:24 +0200 Kristian Rietveld
2407
2408         Seal priv pointer in GtkBuilder.
2409
2410 2008-05-26 12:52:44 +0200 Kristian Rietveld
2411
2412         Seal center_allocation field in GtkAspectFrame.
2413
2414 2008-05-26 12:48:18 +0200 Kristian Rietveld
2415
2416         Seal priv pointer in GtkAction.
2417
2418 2008-05-26 12:46:11 +0200 Kristian Rietveld
2419
2420         Seal priv pointer in GtkAboutDialog.
2421
2422 2008-05-26 12:41:46 +0200 Kristian Rietveld
2423
2424         Seal GtkSizeGroup.
2425
2426 2008-05-26 12:39:54 +0200 Kristian Rietveld
2427
2428         Seal GtkPaned.
2429
2430 2008-05-26 11:59:35 +0200 Kristian Rietveld
2431
2432         Set the Since: values in the API docs to GSEAL-branch for the newly added accessors/properties.
2433
2434 2008-05-26 11:52:20 +0200 Kristian Rietveld
2435
2436         Add new GtkColorSelectionDialog accessors to gtk.symbols.
2437
2438 2008-05-26 11:41:47 +0200 Kristian Rietveld
2439
2440         gtklabel.h: include bit-size of fields inside GSEAL parens.
2441
2442 2008-05-26 11:40:07 +0200 Kristian Rietveld
2443
2444         gtktoolbar.h: include bit-size of fields inside GSEAL parens.
2445
2446 2008-05-26 11:39:35 +0200 Kristian Rietveld
2447
2448         gtkentry.h: include bit-size of fields inside GSEAL parens.
2449
2450 2008-05-26 11:34:14 +0200 Kristian Rietveld
2451
2452         Add new accessors for GtkEntry to gtk.symbols.
2453
2454 2008-05-26 11:23:56 +0200 Kristian Rietveld
2455
2456         Also seal GtkWindowGroup in gtkwindow.h
2457
2458 2008-05-26 10:48:48 +0200 Kristian Rietveld
2459
2460         Fix the build by including gdkconfig.h in gtktextchild.h.
2461
2462 2008-05-23 18:48:56 +0200 Christian Dywan
2463
2464         Seal GtkLabel
2465
2466 2008-05-23 18:28:39 +0200 Christian Dywan
2467
2468         Seal GtkToolbar
2469
2470 2008-05-23 18:28:07 +0200 Christian Dywan
2471
2472         Seal GtkColorSelectionDialog
2473
2474 2008-05-23 18:03:44 +0200 Carlos Garnacho
2475
2476         Seal GtkTextChildAnchor.
2477
2478         * gtk/gtktextchild.h: Sealed private member.
2479
2480 2008-05-23 17:42:01 +0200 Carlos Garnacho
2481
2482         Seal GtkWindow.
2483
2484         * gtk/gtkwindow.h: Seal all fields.
2485
2486 2008-05-23 17:40:09 +0200 Carlos Garnacho
2487
2488         Add gtk_window_get_default()
2489
2490         * gtk/gtkwindow.[ch]: Add gtk_window_get_default().
2491         * gtk/gtk.symbols: same here.
2492
2493 2008-05-09 15:41:57 +0100 Martyn Russell
2494
2495         Seal GtkAccelGroup - fixed some issues with the initial attempt thanks to comments from Tim
2496
2497 2008-05-02 16:31:40 +0200 Martyn Russell
2498
2499         Seal GtkEntry
2500
2501 2008-05-02 16:30:09 +0200 Martyn Russell
2502
2503         Seal GtkContainer - fixed Carlos' missing gtk_container_get_focus_child() header declaration
2504
2505 2008-04-27 18:49:50 +0200 Kristian Rietveld
2506
2507         Seal GtkToggleButton.
2508
2509         * gtk/gtktogglebutton.h: Seal all member fields.
2510
2511 2008-04-27 18:41:46 +0200 Kristian Rietveld
2512
2513         Seal GtkTreeViewColumn.
2514
2515         * gtk/gtktreeviewcolumn.h: Seal all public member fields.  The button field is
2516         still troublesome.  We are probably going to need an accessor for this and
2517         deprecated it immediately in GTK+ 3.0.  Accessors for requested_width and
2518         resized_width can be useful, but I really consider them to be private and
2519         of not much use to applications.
2520
2521 2008-04-27 18:23:23 +0200 Kristian Rietveld
2522
2523         Seal GtkRadioMenuItem.
2524
2525         * gtk/gtkradiomenuitem.h: Seal member field.
2526
2527 2008-04-27 18:21:29 +0200 Kristian Rietveld
2528
2529         Seal GtkRadioButton.
2530
2531         * gtk/gtkradiobutton.h: seal member field.
2532
2533 2008-04-27 18:11:41 +0200 Kristian Rietveld
2534
2535         Seal GtkTreeSelection.
2536
2537         * gtk/gtktreeselection.h: Seal all member fields.
2538
2539 2008-04-27 18:09:46 +0200 Kristian Rietveld
2540
2541         Add gtk_tree_selection_get_select_function().
2542
2543         * gtk/gtktreeselection.[ch] (gtk_tree_selection_get_select_function): new
2544         function.
2545         * gtk/gtk.symbols: add new function.
2546
2547 2008-04-27 16:05:02 +0200 Kristian Rietveld
2548
2549         Seal GtkScrolledWindow.
2550
2551         * gtk/gtkscrolledwindow.h: Seal all object member fields.
2552
2553 2008-04-27 15:56:33 +0200 Kristian Rietveld
2554
2555         Seal GtkCellRenderer.
2556
2557         * gtk/gtkcellrenderer.h: seal all member fields.  All member fields are
2558         already accessible via GObject properties.
2559
2560 2008-04-27 15:56:01 +0200 Kristian Rietveld
2561
2562         Add "editing" GObject property to GtkCellRenderer.
2563
2564         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init),
2565         (gtk_cell_renderer_get_property),
2566         (gtk_cell_renderer_set_property): add the property and hook
2567         it up.
2568
2569 2008-04-27 15:42:08 +0200 Kristian Rietveld
2570
2571         Seal GtkCellRendererText.
2572
2573         * gtk/gtkcellrenderertext.h: seal all member fields (all of them were already
2574         marked as private).
2575
2576 2008-04-27 15:40:47 +0200 Kristian Rietveld
2577
2578         Seal GtkCellRendererCombo.
2579
2580         * gtk/gtkcellrenderercombo.h: seal all member fields.  The members fields
2581         that were not marked as private are already accessible via GObject properties.
2582
2583 2008-04-27 15:39:41 +0200 Kristian Rietveld
2584
2585         Seal GtkCellRendererAccel.
2586
2587         * gtk/gtkcellrendereraccel.h: seal all member fields that were already
2588         marked as private.
2589
2590 2008-04-18 16:55:44 +0200 Kristian Rietveld
2591
2592         Seal GtkTreeView
2593
2594         * gtk/gtktreeview.h: seal private pointer.
2595
2596 2008-04-18 16:52:54 +0200 Kristian Rietveld
2597
2598         Seal GtkTreeModelFilter
2599
2600         * gtk/gtktreemodelfilter.h: include gdkconfig.h for GSEAL, seal private
2601         pointer.
2602
2603 2008-04-18 16:50:55 +0200 Kristian Rietveld
2604
2605         Seal GtkTreeModelSort
2606
2607         * gtk/gtktreemodelsort.h: include gdkconfig.h to get GSEAL defined, seal
2608         all public member fields.
2609
2610 2008-04-18 16:42:28 +0200 Kristian Rietveld
2611
2612         Seal GtkTreeStore
2613
2614         * gtk/gtktreestore.h: include gdkconfig.h to get GSEAL defined, seal
2615         public member fields.
2616
2617 2008-04-18 16:37:43 +0200 Kristian Rietveld
2618
2619         Seal GtkListStore
2620
2621         * gtk/gtkliststore.h: include gdkconfig.h to get GSEAL defined; seal
2622         public member fields.
2623
2624 2008-04-18 18:26:31 +0200 Carlos Garnacho
2625
2626         * gtk/gtkcontainer.c (gtk_container_get_focus_child): add accessor.
2627
2628 2008-04-18 18:25:22 +0200 Carlos Garnacho
2629
2630         * gtk/gtkcontainer.h: seal members.
2631
2632 2008-04-11 17:28:54 +0200 Carlos Garnacho
2633
2634         * gtk/gtkmisc.h: seal members.
2635
2636 2008-04-11 17:28:05 +0200 Carlos Garnacho
2637
2638         *gtk/gtkfixed.h: seal members.
2639
2640 2008-04-11 16:04:23 +0200 Michael Natterer
2641
2642         * gtk/gtkcellrendererpixbuf.h: seal all members.
2643
2644 2008-04-11 16:01:19 +0200 Michael Natterer
2645
2646         * gtk/gtkcellrendererprogress.h: seal private member.
2647
2648 2008-04-11 15:43:22 +0200 Michael Natterer
2649
2650         * gtk/gtkcellrenderertoggle.h: seal all members.
2651
2652 2008-04-04 18:50:05 +0200 Carlos Garnacho
2653
2654         * gtk/gtkfilechooserwidget.h: Seal the private member.
2655
2656 2008-04-04 18:46:47 +0200 Carlos Garnacho
2657
2658         gtk/gtkfilechooserdialog.h: seal the private member.
2659
2660 2008-04-04 18:42:17 +0200 Carlos Garnacho
2661
2662         * gtk/gtkentrycompletion.h: Seal private member.
2663
2664 2008-04-04 18:36:35 +0200 Carlos Garnacho
2665
2666         * gtk/gtkcellview.h: Seal the private member.
2667
2668 2008-04-04 18:28:00 +0200 Carlos Garnacho
2669
2670         * gtk/gtkcolorbutton.h: seal private member.
2671
2672 2008-04-04 18:27:26 +0200 Carlos Garnacho
2673
2674         * gtk/gtkcheckmenuitem.h: seal public struct members.
2675
2676 2008-04-04 18:25:25 +0200 Carlos Garnacho
2677
2678         * gtk/gtkcalendar.h: seal public struct members.
2679
2680 2008-04-04 18:24:15 +0200 Carlos Garnacho
2681
2682         * gtk/gtkdialog.h: Also seal variables marked as private.
2683
2684 2008-04-04 17:35:48 +0200 Michael Natterer
2685
2686         * gtk/gtkimagemenuitem.h: seal private member.
2687
2688 2008-04-04 17:28:56 +0200 Michael Natterer
2689
2690         * gtk/gtkiconfactory.h: seal private member.
2691
2692 2008-03-28 16:56:53 +0000 Martyn Russell
2693
2694         Seal GtkActionGroup
2695
2696         * gtk/gtkactiongroup.[ch]: Use GSEAL macro on ->private_data public
2697           member and clean up .c file to reflect this.
2698
2699 2008-03-28 15:00:09 +0100 Sven Herzberg
2700
2701         Seal GtkAccelLabel
2702
2703         gtk/gtkaccellabel.h: deprecate direct field access to GtkAccelLabel fields
2704
2705 2008-03-28 16:38:00 +0100 Michael Natterer
2706
2707         * gtk/gtkdrawingarea.h: seal instance struct member.
2708
2709 2008-03-28 16:23:32 +0100 Christian Dywan
2710
2711         Seal GtkScaleButton public fields
2712
2713         * gtk/gtkscalebutton.h: Deprecate direct access through GSEAL().
2714
2715 2008-03-28 16:07:50 +0100 Christian Dywan
2716
2717         Seal GtkScale public fields
2718
2719         * gtk/gtkscale.h: Deprecate direct access through GSEAL().
2720
2721 2008-03-14 20:45:34 +0100 Christian Dywan
2722
2723         Seal GtkProgressBar public fields
2724
2725
2726 2008-03-14 20:32:12 +0100 Christian Dywan
2727
2728         Seal GtkFrame public vars
2729
2730 2008-03-14 18:57:35 +0100 Carlos Garnacho
2731
2732         Deprecate direct access to public variables in GtkButton.
2733
2734         * gtk/gtkbutton.h: Deprecate direct access through GSEAL().
2735
2736 2008-03-14 18:56:23 +0100 Carlos Garnacho
2737
2738         Deprecate direct access to public variables in GtkButtonBox.
2739
2740         * gtk/gtkbbox.h: Deprecate direct access through GSEAL().
2741
2742 2008-03-14 18:54:35 +0100 Carlos Garnacho
2743
2744         Deprecate direct access to public variables in GtkBox.
2745
2746         * gtk/gtkbox.h: Deprecate direct access through GSEAL().
2747
2748 2008-03-09 11:50:41 +0100 Carlos Garnacho
2749
2750         Seal GtkMessageDialog public vars
2751
2752 2008-03-09 11:38:00 +0100 Carlos Garnacho
2753
2754         Seal GtkDialog public vars
2755
2756 2008-03-09 11:32:05 +0100 Carlos Garnacho
2757
2758         Add accessors for GtkDialog public vars, also implement GtkContainer::add/remove
2759
2760 2008-03-09 11:31:46 +0100 Carlos Garnacho
2761
2762         Seal GtkAssistant public fields
2763
2764 2008-03-09 11:31:30 +0100 Carlos Garnacho
2765
2766         Seal GtkNotebook public fields
2767
2768 2008-03-07 20:29:47 +0100 Mikael Hallendal
2769
2770         Deprecate direct access to child in GtkBin.
2771
2772         * gtk/gtkbin.h: Deprecate direct access to child by GSEAL.
2773
2774 2008-03-07 18:25:59 +0000 Martyn Russell
2775
2776         Sealed GtkAccelGroup and added
2777
2778         * gtk/gtkaccelgroup.[ch]: Added GObject properties for lock_count,
2779           modifier_mask, acceleratables, n_accels and priv_accels. Added seal
2780           macro for public struct members which should be private.
2781
2782 2008-03-07 18:54:22 +0100 Mikael Hallendal
2783
2784         Deprecate xalign, yalign, ratio and obey_child direct access in GtkAspectFrame.
2785
2786         * gtk/gtkaspectframe.h: Deprecate public object fields by GSEAL.
2787
2788 2008-03-07 18:48:29 +0100 Mikael Hallendal
2789
2790         Deprecate arrow_type and shadow_type direct access in GtkArrow.
2791
2792         * gtk/gtkarrow.h: Deprecate public object fields by GSEAL.
2793
2794 2008-03-07 18:35:12 +0100 Mikael Hallendal
2795
2796         Added GSEAL to GtkAlignment.
2797
2798         * gtk/gtkalignment.h: Seal the object data with GSEAL.
2799
2800 2008-03-07 15:24:27 +0100 Tim Janik
2801
2802         Introduce GSEAL() macro.
2803
2804         * configure.in: define GSEAL() when generating gdkconfig.h
2805
2806 2008-06-20  Michael Natterer  <mitch@imendio.com>
2807
2808         Bug 538395 – gtk_combo_box_append_text() on non-compliant model
2809         segfaults
2810
2811         * gtk/gtkcombobox.c (gtk_combo_box_append_text)
2812         (gtk_combo_box_insert_text)
2813         (gtk_combo_box_prepend_text)
2814         (gtk_combo_box_remove_text)
2815         (gtk_combo_box_real_get_active_text): apply patch from Christian
2816         Dywan which adds the needed g_return_if_fail() to prevent the
2817         crashes.
2818
2819 2008-06-20  Cody Russell  <cody@jhu.edu>
2820
2821         * gdk/directfb/gdkwindow-directfb.c:
2822
2823         Rename gdk_window_new -> _gdk_window_new and
2824         gdk_window_reparent -> _gdk_window_reparent to fix
2825         the build.  (#539095, Sebastien Bacher)
2826
2827 2008-06-19  Johan Dahlin  <jdahlin@async.com.br>
2828
2829         * gtk/gtkmenuitem.c: remove an unused variable and cast
2830         accel_path to gchar, just like in gtkmenu.c
2831
2832 2008-06-19  Matthias Clasen  <mclasen@redhat.com>
2833
2834         * gtk/gtkrecentmanager.c (get_icon_for_mime_type): Use GIO
2835         for this.
2836
2837 2008-06-19  Johan Dahlin  <jdahlin@async.com.br>
2838
2839         * gtk/gtkprintbackend.c: Fix a typo in a comment
2840
2841         * gtk/gtkhsv.c (paint_ring, paint_triangle):
2842         Cast buf to unsigned char to avoid two compiler
2843         warnings.
2844
2845         * gtk/gtkclist.c:
2846         * gtk/gtkstyle.c (gtk_style_finalize):
2847         Do not ignore the return value of g_slist_remove.
2848         gtkstyle.c changes rubberstamped by Owen.
2849
2850 2008-06-19  Johan Dahlin  <jdahlin@async.com.br>
2851
2852         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines),
2853         (gtk_tree_view_set_enable_tree_lines):
2854         gdk_gc_set_dashes expects a list of gint8, not guint8.
2855
2856 2008-06-19  Johan Dahlin  <jdahlin@async.com.br>
2857
2858         * gtk/gtkmenu.c (gtk_menu_set_accel_path):
2859         Remove an unused variable and cast to gchar to avoid a compiler
2860         warning.
2861
2862 2008-06-19  Christian Persch  <chpe@gnome.org>
2863
2864         * docs/reference/gtk/gtk-sections.txt:
2865         * gtk/gtk.symbols:
2866         * gtk/gtkclipboard.c:
2867         * gtk/gtkclipboard.h: Add clipboard convenience functions  for URI 
2868         targets. Bug #537639.
2869
2870 2008-06-19  Christian Persch  <chpe@gnome.org>
2871
2872         * gtk/gtkfilechooserdefault.c: Use gtk_drag_*_add_*_targets instead of
2873         hardcoded target tables. Bug #516092.
2874
2875 2008-06-19  Christian Persch  <chpe@gnome.org>
2876
2877         * gdk-pixbuf/gdk-pixbuf-io.c:
2878         * gdk-pixbuf/gdk-pixdata.c:
2879         * gdk-pixbuf/io-ani.c:
2880         * gdk-pixbuf/io-bmp.c:
2881         * gdk-pixbuf/io-gdip-utils.c:
2882         * gdk-pixbuf/io-gif.c:
2883         * gdk-pixbuf/io-icns.c:
2884         * gdk-pixbuf/io-ico.c:
2885         * gdk-pixbuf/io-jasper.c:
2886         * gdk-pixbuf/io-jpeg.c:
2887         * gdk-pixbuf/io-pcx.c:
2888         * gdk-pixbuf/io-png.c:
2889         * gdk-pixbuf/io-pnm.c:
2890         * gdk-pixbuf/io-ras.c:
2891         * gdk-pixbuf/io-tga.c:
2892         * gdk-pixbuf/io-tiff.c:
2893         * gdk-pixbuf/io-wbmp.c:
2894         * gdk-pixbuf/io-xbm.c:
2895         * gdk-pixbuf/io-xpm.c:
2896         * gtk/gtkfilechooserdefault.c:
2897         * gtk/gtkfilesystemmodel.c:
2898         * gtk/gtkiconfactory.c:
2899         * gtk/gtkicontheme.c:
2900         * gtk/gtkmain.c:
2901         * gtk/gtkpagesetup.c:
2902         * gtk/gtkpapersize.c:
2903         * gtk/gtkprintoperation-win32.c:
2904         * gtk/gtktextbufferserialize.c:
2905         * tests/testfilechooser.c: Use g_set_error_literal where appropriate. Bug #538640.
2906
2907         * configure.in: Update glib requirement to 2.17.3.
2908
2909 2008-06-19  Johan Dahlin  <jdahlin@async.com.br>
2910
2911         * demos/testpixbuf.c (new_testrgb_window):
2912         * gtk/gtkctree.c (gtk_ctree_new_with_titles):
2913         * gtk/gtkitemfactory.c (gtk_item_factory_construct),
2914         (gtk_item_factory_create_item):
2915         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state)
2916         * gtk/gtkprogressbar.c (gtk_progress_bar_new),
2917         (gtk_progress_bar_new_with_adjustment):
2918         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_new):
2919         * gtk/gtktext.c (gtk_text_new):
2920         * gtk/gtkviewport.c (gtk_viewport_new):
2921         * tests/simple.c (main):
2922         * tests/testgtk.c (create_statusbar), (create_get_image),
2923         (create_saved_position), (create_tooltips), (create_cursors),
2924         (create_display_screen), (create_progress_bar), (create_idle_test):
2925         * tests/testmultidisplay.c (make_selection_dialog), (main):
2926         * tests/testmultiscreen.c (main):
2927         * tests/testrgb.c (new_testrgb_window):
2928         Use g_object_new instead of gtk_widget_new
2929
2930 2008-06-19  Johan Dahlin  <jdahlin@async.com.br>
2931
2932         * gtk/gtkcellrendererpixbuf.c: Remove an unused prototype.
2933
2934         * gtk/gtklabel.c (gtk_label_set_text_with_mnemonic): Remove
2935         an unused variable.
2936
2937         * gtk/gtkactiongroup.c: Use GdkModifierType instedd of guint,
2938         to avoid a gcc warning.
2939
2940 2008-06-18  Olle Bergkvist <olle.bergkvist@yahoo.se>
2941
2942         http://bugzilla.gnome.org/show_bug.cgi?id=538784 - Don't change
2943         the filename in the name entry in CREATE_FOLDER mode when changing
2944         folders, so that you can enter a new subfolder name, double-click on a
2945         folder to change to it, and close the dialog.
2946
2947         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
2948         the filename in the entry in CREATE_FOLDER mode, either.
2949
2950 2008-06-18  Olle Bergkvist <olle.bergkvist@yahoo.se>
2951
2952         http://bugzilla.gnome.org/show_bug.cgi?id=419737#c59 - The file
2953         chooser clears the filename entry in SAVE/CREATE_FOLDER modes when
2954         it shouldn't.
2955
2956         * gtk/gtkfilechooserdefault.c (shortcuts_activate_iter): Don't
2957         clear the entry for CREATE_FOLDER either; this needs the same
2958         behavior as SAVE mode.
2959         (update_chooser_entry): Only clear the entry in OPEN/SELECT_FOLDER
2960         modes.
2961
2962 2008-06-18  Matthias Clasen  <mclasen@redhat.com>
2963
2964         * gtk/gtkfilesystem.c (_gtk_file_system_volume_render_icon):
2965         * gtk/gtkfilechooserbutton.c (change_icon_theme):
2966         (model_add_bookmarks):
2967         (model_update_current_folder):
2968         * gtk/gtkfilechooserdefault.c (shortcuts_insert_file):
2969         (shortcuts_reload_icons): Use standard icon names.
2970
2971 2008-06-18  Matthias Clasen  <mclasen@redhat.com>
2972
2973         * gtk/Makefile.am: Add some more aliases for standard
2974         icon names to the builtin icon theme: drive-harddisk,
2975         folder, folder-remote, text-x-generic.
2976
2977 2008-06-18  Michael Natterer  <mitch@imendio.com>
2978
2979         * gtk/gtkcalendar.c: set the maximum of the "year" property to
2980         G_MAXINT >> 8 instead of G_MAXINT to fix overflows in internal
2981         calculations which in turn caused writing beyond the boundaries of
2982         the calendar->day_month[] and day[] arrays which in turn caused a
2983         SEGV. This limits the lifetime of GTK+ to the year 8,388,608 ;)
2984
2985 2008-06-18  Michael Natterer  <mitch@imendio.com>
2986
2987         * tests/Makefile.am
2988         * tests/autotestfilechooser.c
2989         * tests/buildertest.c
2990         * tests/defaultvaluetest.c
2991         * tests/floatingtest.c
2992         * tests/objecttests.c
2993         * tests/pixbuf-init.c
2994         * tests/textbuffertest.c: remove unit tests here...
2995
2996         * gtk/tests/Makefile.am
2997         * gtk/tests/builder.c
2998         * gtk/tests/defaultvalue.c
2999         * gtk/tests/filechooser.c
3000         * gtk/tests/floating.c
3001         * gtk/tests/object.c
3002         * gtk/tests/pixbuf-init.c
3003         * gtk/tests/textbuffer.c: ...and add them here.
3004
3005 2008-06-18  Michael Natterer  <mitch@imendio.com>
3006
3007         * gdk/gdk.h: deprecate GdkDestroyNotify.
3008
3009         * gdk/gdkevents.c
3010         * gdk/gdktypes.h
3011         * gdk/x11/gdkevents-x11.c
3012         * gtk/gtkmain.c: s/GdkDestroyNotify/GDestroyNotify/g.
3013
3014 2008-06-18  Michael Natterer  <mitch@imendio.com>
3015
3016         * gtk/gtktypeutils.h: deprecate GtkDestroyNotify.
3017
3018         * gtk/gtkactiongroup.[ch]
3019         * gtk/gtkcombobox.[ch]
3020         * gtk/gtkcontainer.[ch]
3021         * gtk/gtkliststore.[ch]
3022         * gtk/gtkmain.[ch]
3023         * gtk/gtkmenu.c
3024         * gtk/gtkstock.[ch]
3025         * gtk/gtktreedatalist.[ch]
3026         * gtk/gtktreemodelfilter.[ch]
3027         * gtk/gtktreemodelsort.[ch]
3028         * gtk/gtktreeprivate.h
3029         * gtk/gtktreeselection.[ch]
3030         * gtk/gtktreesortable.[ch]
3031         * gtk/gtktreestore.[ch]
3032         * gtk/gtktreeview.[ch]
3033         * gtk/gtktreeviewcolumn.[ch]: s/GtkDestroyNotify/GDestroyNotify/g.
3034
3035 2008-06-18  Michael Natterer  <mitch@imendio.com>
3036
3037         * tests/testgtk.c: some more undeprecation.
3038
3039 2008-06-18  Michael Natterer  <mitch@imendio.com>
3040
3041         * gtk/gtktypeutils.h: deprecate GtkType, GtkSignalFunc and
3042         GTK_SIGNAL_FUNC().
3043
3044         (struct GtkArg): s/GtkType/GType/ and s/GtkSignalFunc/GCallback/
3045
3046 2008-06-18  Michael Natterer  <mitch@imendio.com>
3047
3048         * gtk/gtktypeutils.[ch]: deprecate gtk_type_class().
3049
3050         * gtk/gtk.symbols: changed accordingly.
3051
3052         * gtk/gtksettings.c (gtk_settings_install_property)
3053         (gtk_settings_install_property_parser): get rid of using
3054         gtk_type_class() by keeping a static reference to GtkSettingsClass
3055         around in both functions and passing that pointer on to
3056         settings_install_property_parser().
3057
3058         * tests/testgtk.c: use g_type_class_ref()/unref() instead of
3059         gtk_type_class().
3060
3061         * gtk/gtkobject.c: #undef GTK_DISABLE_DEPRECATED around including
3062         gtktypeutils.h.
3063
3064 2008-06-17  Johan Dahlin  <jdahlin@async.com.br>
3065
3066         * gtk/gtkstyle.c: Add deprecated version
3067         and change the deprecation markup used by ref/unref 
3068
3069 2008-06-17  Johan Dahlin  <jdahlin@async.com.br>
3070
3071         * gtk/gtkwidget.c: 
3072         Add deprecated versions and fixup markup.
3073
3074 2008-06-17  Johan Dahlin  <jdahlin@async.com.br>
3075
3076         * gtk/gtkaboutdialog.c:
3077         * gtk/gtkbutton.c (gtk_button_class_init):
3078         Don't markup deprecated in italics.
3079
3080 2008-06-18  Carlos Garnacho  <carlos@imendio.com>
3081
3082         * gtk/gtkfilesystem.[ch]: Remove GtkFileSystemError, use
3083         GtkFileChooserError instead. (#538378, patch by Matthias Clasen)
3084
3085 2008-06-17  Michael Natterer  <mitch@imendio.com>
3086
3087         * examples/gtkdial/gtkdial.[ch]: undeprecate.
3088
3089 2008-06-17  Michael Natterer  <mitch@imendio.com>
3090
3091         * gtk/gtkobject.c: remove bogus extern declaration of non-existing
3092         function gtk_object_init_type().
3093
3094 2008-06-17  Michael Natterer  <mitch@imendio.com>
3095
3096         * gtk/gtkbindings.c (gtk_binding_entry_add_signal):
3097         * gtk/gtktoolbutton.c (gtk_tool_button_get_type): 
3098         * examples/gtkdial/gtkdial.h (gtk_dial_get_type): 
3099         s/GtkType/GType/
3100
3101 2008-06-17  Tor Lillqvist  <tml@novell.com>
3102
3103         * gtk/gtknotebook.c: Need to do the GTK_DISABLE_DEPRECATED
3104         #undef/#define dance here, too, because
3105         gtk_notebook_set_group_id() is deprecated but used here before it
3106         is defined, and gcc complains about conflicting type from the
3107         implicit int declaration when it sees the actual void definition.
3108
3109         * modules/input/gtkimcontextime.h: Don't use the deprecated GTK_*
3110         GtkType macros.
3111
3112 2008-06-17  Michael Natterer  <mitch@imendio.com>
3113
3114         * gtk/Makefile.am: build with GTK_DISABLE_DEPRECATED.
3115
3116         * gtk/gtkclist.c
3117         * gtk/gtkcombo.c
3118         * gtk/gtkctree.c
3119         * gtk/gtklist.c
3120         * gtk/gtklistitem.c
3121         * gtk/gtkoldeditable.c
3122         * gtk/gtkpixmap.c
3123         * gtk/gtktext.c
3124         * gtk/gtktipsquery.c
3125         * gtk/gtktree.c
3126         * gtk/gtktreeitem.c: whenever we #undef GTK_DISABLE_DEPRECATED and
3127         actually use deprecated symbols (not just types or macros),
3128         #define it again before #include "gtkalias.h" so the symbols match
3129         and the beast links.
3130
3131 2008-06-17  Paolo Borelli  <pborelli@katamail.com>
3132
3133         * gtk/tests/recentmanager.c: more tests for GtkRecentManager.
3134
3135 2008-06-17  Michael Natterer  <mitch@imendio.com>
3136
3137         * modules/input/gtkimcontextmultipress.h
3138         * modules/input/gtkimcontextthai.h
3139         * modules/input/gtkimcontextxim.h: use G_TYPE instead of GTK_CHECK
3140         type checking macros.
3141
3142 2008-06-17  Michael Natterer  <mitch@imendio.com>
3143
3144         * gtk/gtktypeutils.h: really move the GtkType typedef to an
3145         undeprecated section.
3146
3147 2008-06-17  Michael Natterer  <mitch@imendio.com>
3148
3149         * gtk/gtktypeutils.h: deprecate GTK_CHECK_CAST, GTK_CHECK_CLASS_CAST,
3150         GTK_CHECK_GET_CLASS, GTK_CHECK_TYPE and GTK_CHECK_CLASS_TYPE.
3151         Move the GtkType typedef to an undeprecated section.
3152
3153 2008-06-17  Michael Natterer  <mitch@imendio.com>
3154
3155         * gtk/gtkprogress.h: use G_TYPE macros for type checking instead
3156         of GTK_CHECK ones because it's the parent class of an undeprecated
3157         class and the GTK_CHECK stuff will soon be deprecated.
3158
3159 2008-06-17  Michael Natterer  <mitch@imendio.com>
3160
3161         * gtk/gtkfilesel.c
3162         * gtk/gtkinputdialog.c
3163         * gtk/gtkmenutoolbutton.c
3164         * gtk/gtkoptionmenu.c
3165         * gtk/gtktoolitem.c
3166         * gtk/gtktooltips.c: add or move around
3167         #undef GTK_DISABLE_DEPRECATED so it's possible to build without
3168         deprecated stuff again (with the minor glitch that it doesn't
3169         link ;) but at least it's a tool to keep the code clean).
3170
3171 2008-06-17  Emmanuele Bassi  <ebassi@gnome.org>
3172
3173         * gtk/gtkrecentmanager.c:
3174         (gtk_recent_manager_remove_item): Fix dumb typo in the previous
3175         commit.
3176
3177 2008-06-17  Emmanuele Bassi  <ebassi@gnome.org>
3178
3179         * gtk/gtkrecentmanager.c:
3180         (gtk_recent_manager_remove_item),
3181         (gtk_recent_manager_move_item): Increase the consistency of the
3182         errors returned by GtkRecentManager. (Paolo Borelli)
3183
3184 2008-06-17  Paolo Borelli  <pborelli@katamail.com>
3185
3186         * gtk/tests/recentmanager.c: add some unit tests for GtkRecentManager.
3187
3188 2008-06-17  Emmanuele Bassi  <ebassi@gnome.org>
3189
3190         * gtk/gtkrecentmanager.c:
3191         (gtk_recent_manager_remove_item): Consistently use the same
3192         error when removing a URI from an empty GtkRecentManager.
3193
3194 2008-06-17  Michael Natterer  <mitch@imendio.com>
3195
3196         * gtk/gtkfilechooserdefault.c: remove static integer variables
3197         which hold the number of members in GtkTargetEntry arrays and use
3198         G_N_ELEMENTS() directly instead.
3199
3200 2008-06-17  Michael Natterer  <mitch@imendio.com>
3201
3202         * gtk/gtk.symbols: move some deprecated symbols into
3203         #ifndef GTK_DISABLE_DEPRECATED.
3204
3205 2008-06-17  Emmanuele Bassi  <ebassi@gnome.org>
3206
3207         * gtk/gtkfilechooserdefault.c:
3208         (gtk_file_chooser_default_init),
3209         (gtk_file_chooser_default_constructor),
3210         (gtk_file_chooser_default_screen_changed),
3211         (recent_start_loading): Remove the GtkRecentManager screen
3212         dance, as it has been deprecated since 2.12. Now we get the
3213         GtkRecentManager singleton whewn we create the FileChooserDefault
3214         instance. (Michael Natterer)
3215
3216 2008-06-17  Michael Natterer  <mitch@imendio.com>
3217
3218         * gtk/gtkoptionmenu.c (gtk_option_menu_position): cast menu's
3219         toplevel to GtkWindow when passing to gtk_window_set_type_hint().
3220
3221 2008-06-17  Michael Natterer  <mitch@imendio.com>
3222
3223         * gtk/gtktestutils.c: #undef GTK_DISABLE_DEPRECATED, clean up
3224         includes a bit.
3225
3226         * gtk/gtkuimanager.c: #include "gtkwindow.h", it was only pulled
3227         in via deprecated headers.
3228
3229 2008-06-16  Matthias Clasen  <mclasen@redhat.com>
3230
3231         Bug 508751 – gnome-terminal crashed with SIGSEGV after keypress
3232
3233         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_key_is_modifier): Protect
3234         against XKB being stupid. Reported by Pedro Villavicencio.
3235
3236 2008-06-17  Michael Natterer  <mitch@imendio.com>
3237
3238         * gtk/gtkplug.c (_gtk_plug_send_delete_event): use g_object_ref()
3239         and unref() instead of the deprecated gtk_widget_ref() and unref().
3240
3241 2008-06-16  Michael Natterer  <mitch@imendio.com>
3242
3243         * gtk/gtkentry.c: removed function drag_begin_cb(), which was in
3244         svn since 2.8 but was never used.
3245
3246 2008-06-16  Michael Natterer  <mitch@imendio.com>
3247
3248         * gtk/gtkbindings.c (_gtk_binding_entry_add_signall): use
3249         gtk_binding_entry_clear() instead of gtk_binding_entry_add()
3250         (the former is deprecated and #defined to gtk_binding_entry_clear)
3251
3252 2008-06-16  Michael Natterer  <mitch@imendio.com>
3253
3254         * gtk/gtkprintoperation-unix.c: don't include the deprecated (and
3255         unused) "gtkmarshal.h".
3256
3257 2008-06-16  Behdad Esfahbod  <behdad@gnome.org>
3258
3259         Bug 538182 – pango_cairo_context_update_layout is not noop after
3260         gtk_widget_create_pango_layout
3261
3262         * gtk/gtksettings.c (settings_update_font_options): Make sure all
3263         font option fields are set to non-DEFAULT values.
3264
3265 2008-06-16  Michael Natterer  <mitch@imendio.com>
3266
3267         * gtk/gtkfontsel.c
3268         * gtk/gtkrc.c
3269         * gtk/gtkstyle.c
3270         * gtk/gtkwidget.c: use g_object_unref() instead of the deprecated
3271         gtk_rc_style_unref().
3272
3273 2008-06-16  Michael Natterer  <mitch@imendio.com>
3274
3275         * gtk/gtkcombobox.c (gtk_combo_box_class_init): use
3276         _gtk_marshal_BOOLEAN__VOID instead of the deprecated
3277         gtk_marshal_BOOLEAN__VOID.
3278
3279 2008-06-16  Michael Natterer  <mitch@imendio.com>
3280
3281         * gtk/gtkcellrendereraccel.h
3282         * gtk/gtkiconview.h
3283         * gtk/gtkobject.h: use G_TYPE macros instead of the old GTK_CHECK
3284         macros for type checking.
3285
3286         (gtk_object_get_type): change prototype to return GType instead of
3287         GtkType.
3288
3289 2008-06-16  Matthias Clasen  <mclasen@redhat.com>
3290
3291         * gtk/Makefile.am: Make folder, user-home and user-desktop links 
3292         to gtk-directory in the builtin icon theme, so that we can
3293         use these icon names without risk of ending up without an icon.
3294
3295 2008-06-16  Tor Lillqvist  <tml@novell.com>
3296
3297         Bug 538362 - Get Win32 icons back in the file chooser
3298
3299         * gtk/gtkicontheme.c (choose_icon): Check if the icon name is a
3300         reference to an icon resource in a DLL or .EXE in the same format
3301         as the DefaultIcon strings in the Registry. In that case, extract
3302         the icon and convert to a GdkPixbuf. Patch by Hans Breuer. This
3303         code has to be in sync with the corresponding code in
3304         glib/gio/gcontenttype.c.
3305
3306 2008-06-16  Matthias Clasen  <mclasen@redhat.com>
3307
3308         * gtk/stock-icons/24/audio-volume*: Add icons used by GtkVolumeButton
3309         to the builtin icon theme, to avoid showing broken images when
3310         there is no icon theme around.  The new icons are thanks to
3311         Lapo Calamandrei.
3312
3313 2008-06-16  Michael Natterer  <mitch@imendio.com>
3314
3315         * gtk/gtkfilechooserprivate.h: remove GtkTooltips member from the
3316         GtkFileChooserDefault struct.
3317
3318         * gtk/gtkfilechooserdefault.c: don't allocate and free the
3319         GtkTooltips.
3320
3321 2008-06-16  Carlos Garnacho  <carlos@imendio.com>
3322
3323         Bug 538519 – GtkCellRendererPixbuf doesn't allow unsetting the icon
3324         anymore
3325
3326         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
3327         Allow again setting any of the properties to render an image back to
3328         NULL.
3329
3330 2008-06-15  Matthias Clasen  <mclasen@redhat.com>
3331
3332         * gtk/gtkimage.c: When pixel-size is specified, use
3333         GTK_ICON_LOOKUP_FORCE_SIZE when loading themed icons.
3334
3335 2008-06-15  Carlos Garnacho  <carlos@imendio.com>
3336
3337         * gtk/gtkfilechooser.c (gtk_file_chooser_get_filename): Return full 
3338         path here as expected, not just the basename.
3339
3340         * gtk/gtkfilechooserdefault.c
3341         (gtk_file_chooser_default_update_current_folder): Ensure that we keep
3342         a reference to file, since it can be destroyed when switching back to
3343         browse mode.
3344
3345         * gtk/gtkfilesystem.c (get_icon_for_special_directory): Removed, home
3346         and desktop directories are dealt by the filechooser as normal files,
3347         not volumes, so the icon for these is handled directly by GIO.
3348         (_gtk_file_system_volume_render_icon): Update caller.
3349
3350 2008-06-15  Matthias Clasen  <mclasen@redhat.com>
3351
3352         * gtk/gtkcellrendererpixbuf.c: Add a gicon property.
3353
3354 2008-06-14  Cody Russell  <bratsche@gnome.org>
3355
3356         * gdk/win32/gdkselection-win32.c (gdk_win32_selection_add_targets):
3357
3358         Initialize hwnd to NULL.  This fixes OpenClipboard() failure and,
3359         according to MSDN docs, associates the open clipboard with the
3360         current task.  (#378158, reported by Andreas Köhler)
3361
3362 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
3363
3364         * configure.in: Bump version
3365
3366         * === Released 2.13.3 ===
3367
3368 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
3369
3370         * gtk/gtkaccelgroup.c: Add some docs
3371
3372         * gdk/gdkwindow.c: Fix doc typos
3373
3374 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
3375
3376         * gtk/gtkfilesystem.c: Avoid PLT entries by including
3377         gtkalias.h
3378
3379 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
3380
3381         * gtk/gtkfilechooserbutton.c:
3382         * gtk/gtkfilechooserdefault.c:
3383         * gtk/gtkfilechooserentry.c:
3384         * gtk/gtkfilesystem.c:
3385         * gtk/gtkfilesystem.h:
3386         * gtk/gtkfilesystemmodel.c:
3387         * gtk/gtkpathbar.c: Really make GtkFileSystem private
3388         by _-prefixing all functions.
3389
3390 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
3391
3392         * docs/RELEASE-HOWTO: Updates
3393         * INSTALL.in: Bump version
3394
3395 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
3396
3397         * NEWS: Updates
3398
3399 2008-06-13  Michael Natterer  <mitch@imendio.com>
3400
3401         * gtk/gtkcellrendereraccel.h
3402         * gtk/gtkfilechooser.h
3403         * gtk/gtkfilechooserdialog.h
3404         * gtk/gtkfilechooserwidget.h
3405         * gtk/gtkmenutoolbutton.h
3406         * gtk/gtkpagesetup.h
3407         * gtk/gtkpapersize.h
3408         * gtk/gtkprintcontext.h
3409         * gtk/gtkprintoperation.h
3410         * gtk/gtkprintoperationpreview.h
3411         * gtk/gtkprintsettings.h
3412         * gtk/gtkradiotoolbutton.h
3413         * gtk/gtkrecentchooser.h
3414         * gtk/gtkrecentchooserdialog.h
3415         * gtk/gtkrecentchoosermenu.h
3416         * gtk/gtkrecentchooserwidget.h
3417         * gtk/gtkseparatortoolitem.h
3418         * gtk/gtkshow.h
3419         * gtk/gtktoggletoolbutton.h
3420         * gtk/gtktoolbar.h
3421         * gtk/gtktoolbutton.h
3422         * gtk/gtktooltip.h: #include <gtk/gtkfoo.h> instead of
3423         "gtk/gtkfoo.h" or even just "gtkfoo.h" in public headers.
3424
3425 2008-06-13  Michael Natterer  <mitch@imendio.com>
3426
3427         * gtk/gtktexttagtable.h: remove double inclusion of
3428         <gtk/gtktexttag.h>.
3429
3430 2008-06-13  Michael Natterer  <mitch@imendio.com>
3431
3432         * gtk/gtkaction.c (gtk_action_set_short_label): change type of
3433         local "image" variable from GtkImage to GtkWidget to fix warning.
3434
3435 2008-06-13  Michael Natterer  <mitch@imendio.com>
3436
3437         * gtk/gtkcombobox.c (gtk_combo_box_menu_position): cast menu's
3438         toplevel to GtkWindow when passing to gtk_window_set_type_hint().
3439
3440 2008-06-13  Michael Natterer  <mitch@imendio.com>
3441
3442         * gtk/gtkuimanager.c (start_element_handler): silently skip
3443         unknown attributes instead of bailing out with an error in order
3444         to be compatible with possible future attribute names.
3445
3446         This is related to the discussion in bug #516425 but actually
3447         needed for any kind of XML format extension.
3448
3449 2008-05-23  Hans Breuer  <hans@breuer.org>
3450
3451         * gtk/gtkprintoperation.c : check surface status after ceating a pdf.
3452         Avoids crashing when the target can not be written, bug #537685
3453
3454         * gdk/win32/gdkdisplay-win32.c : runtime linking of ProcessIdToSessionId
3455
3456         * gtk/gtkfilesystem.c : variadic macros are not supported with c89 and
3457         it was not needed here anyway.
3458
3459 2008-06-13 Matthias Clasen  <mclasen@redhat.com>
3460
3461         * gtk/gtkentry.c (gtk_entry_draw_frame): Fix frame size allocation.
3462         Patch by Jan Arne Peterson
3463
3464 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
3465
3466         Bug 537985 – gtk_init_with_args() doesn't open a display after
3467         gtk_parse_args()
3468
3469         * gtk/gtkmain.c (gtk_init_with_args): Open the default display
3470         even when gtk_parse_args() has already been called.
3471         Patch by Mathias Hasselmann
3472
3473 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
3474
3475         Bug 524222 – GtkToolbar with mix of buttons with and without 
3476         icons looks "bad"
3477
3478         * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents):
3479         Improve appearance of "both vertical" mode toolbuttons.
3480         Patch by Peter Johanson
3481
3482 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
3483
3484         Bug 519092 – Add accessibility support to GtkVolumeButton
3485
3486         * gtk/gtkvolumebutton.c: Set accessibility descriptions.
3487         Patch by Jonh Wendell
3488
3489 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
3490
3491         Bug 517706 – Connecting GtkButton with "use-stock" == FALSE to a
3492         GtkAction has problems
3493         Patch by Peter Johanson
3494
3495         * gtk/gtkaction.c (connect_proxy): Set the image of a button
3496         proxy to the "icon-name" property.
3497
3498         (gtk_action_set_short_label):  If the "image" property is set 
3499         on the button proxy, also tries to set the "label" property on 
3500         the GtkButton.
3501
3502 2008-06-12  Michael Natterer  <mitch@imendio.com>
3503
3504         * gtk/gtkmain.c
3505         * gtk/gtktrayicon-x11.c: don't #include <libintl.h>, it's pulled
3506         in via "gtkintl.h" from <glib/gi18n-lib.h>.
3507
3508 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
3509
3510         RH bug 248245 and 449379: cups client printing from gnome
3511         applications fail
3512
3513         * modules/printbackends/cups/gtkprintbackendcups.c: Really fix
3514         printer URI construction. Patch by Marek Kasik
3515         
3516 2008-06-12  Michael Natterer  <mitch@imendio.com>
3517
3518         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
3519         limit the number of displayed items by the actual screen height
3520         instead of some arbitrary value (Bug #408154, Xan Lopez and
3521         Christian Dywan).
3522
3523 2008-06-11  Behdad Esfahbod  <behdad@gnome.org>
3524
3525         Bug 503071 – Application direction changes to right to left even if
3526         theres no translation
3527
3528         * configure.in: Bump glib requirement.
3529
3530         * gtk/gtkaccellabel.c
3531         (_gtk_accel_label_class_get_accelerator_label):
3532         * gtk/gtkactiongroup.c (dgettext_swapped):
3533         * gtk/gtkbuilder.c (gtk_builder_class_init):
3534         * gtk/gtkbuilderparser.c (_dpgettext),
3535         (_gtk_builder_parser_translate):
3536         * gtk/gtkfilechooserdefault.c (list_size_data_func):
3537         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
3538         * gtk/gtkintl.h:
3539         * gtk/gtkmain.c (setlocale_initialization),
3540         (do_pre_parse_initialization), (gettext_initialization):
3541         * gtk/gtkstock.c (gtk_stock_lookup), (sgettext_swapped):
3542         Use g_dgettext() and g_dngettext().
3543
3544 2008-06-11  Matthias Clasen <mclasen@redhat.com>
3545
3546         * docs/RELEASE-HOWTO: Updates
3547
3548 2008-06-11  Tor Lillqvist  <tml@novell.com>
3549
3550         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): As we don't
3551         support Win9x anyway, we can use ProcessIdToSessionId()
3552         unconditionally.
3553
3554 2008-06-11  Michael Natterer  <mitch@imendio.com>
3555
3556         * gtk/gtkfilechooserbutton.c: fix local prototype of
3557         _gtk_file_chooser_label_for_file() (takes a GFile, not const gchar*).
3558
3559 2008-06-10  Matthias Clasen <mclasen@redhat.com>
3560
3561         Bug 536765 – GtkComboBox should set COMBO type hint for its menu
3562
3563         * gtk/gtkoptionmenu.c:
3564         * gtk/gtkcombobox.c: Set the window type hint on popups.
3565         Patch by Danny Baumann
3566
3567 2008-06-10  Matthias Clasen <mclasen@redhat.com>
3568
3569         * gtk/gtkfilesystem.c (get_icon_for_special_directory):
3570         (gtk_file_system_volume_render_icon): Add standard icon names,
3571         and also fall back to builtin gtk stock icons.
3572
3573 2008-06-10  Christian Persch  <chpe@gnome.org>
3574
3575         * gtk/gtktreeview.c: (destroy_info), (set_destination_row),
3576         (gtk_tree_view_maybe_begin_dragging_row),
3577         (gtk_tree_view_set_reorderable),
3578         (gtk_tree_view_enable_model_drag_source),
3579         (gtk_tree_view_enable_model_drag_dest),
3580         (gtk_tree_view_unset_rows_drag_source),
3581         (gtk_tree_view_unset_rows_drag_dest): Make
3582         gtk_tree_view_enable_model_drag_[source|dest] compatible with
3583         gtk_drag_[source|dest]_add_*_targets. Bug #506853.
3584
3585 2008-06-10  Christian Persch  <chpe@gnome.org>
3586
3587         * gtk/gtktreeview.c: (gtk_tree_view_button_release_drag_column),
3588         (dest_row_free), (set_dest_row), (ensure_info),
3589         (gtk_tree_view_remove), (gtk_tree_view_put),
3590         (gtk_tree_view_set_column_drag_info): Use GSlice. Patch from
3591         bug #506853.
3592
3593 2008-06-10  Paolo Borelli  <pborelli@katamail.com>
3594
3595         * gtk/gtkfilechooser.c (gtk_file_chooser_set_current_folder_uri)
3596         use g_file_new_for_uri.
3597
3598 2008-06-10  Paolo Borelli  <pborelli@katamail.com>
3599
3600         * gtk/gtkfilesystem.c (gtk_file_system_volume_render_icon): do not
3601         leak the GIcon.
3602
3603 2008-06-10  Carlos Garnacho  <carlos@imendio.com>
3604
3605         * configure.in:
3606         * gtk/Makefile.am:
3607         * gtk/xdgmime: removed local xdgmime copy as Matthias suggested in bug
3608         #520874, comment #8. It's no longer used directly by GTK+.
3609
3610 2008-06-10  Carlos Garnacho  <carlos@imendio.com>
3611
3612         Bug 520874 - Should use gio directly.
3613
3614         * gtk/gtkfilesystem.[ch]: Turn into a private object, which mostly
3615         provides helper functions for asynchronous calls, folder abstraction
3616         and uniform handling of volumes/drives/mounts.
3617
3618         * gtk/gtkfilesystemwin32.[ch]:
3619         * gtk/gtkfilesystemunix.[ch]: Removed, these are no longer required.
3620
3621         * gtk/gtkfilechooser.c:
3622         * gtk/gtkfilechooserbutton.c:
3623         * gtk/gtkfilechooserdefault.c:
3624         * gtk/gtkfilechooserentry.[ch]:
3625         * gtk/gtkfilechooserprivate.h:
3626         * gtk/gtkfilechooserutils.c:
3627         * gtk/gtkfilesystemmodel.[ch]:
3628         * gtk/gtkpathbar.[ch]: Use GIO internally. Adapt to GtkFileSystem API.
3629         Do not load filesystem implementation modules.
3630
3631         * gtk/Makefile.am:
3632         * gtk/gtk.symbols: the gtkfilesystem.h private header isn't installed
3633         anymore, nor the unix/win32 implementations.
3634
3635         * README.in: Add blurb about these changes.
3636
3637 2008-06-09  Kristian Rietveld  <kris@gtk.org>
3638
3639         Bug 526987 - GtkCellRendererCombo should allow model to be NULL
3640
3641         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init),
3642         (gtk_cell_renderer_combo_set_property),
3643         (gtk_cell_renderer_combo_editing_done),
3644         (gtk_cell_renderer_combo_start_editing): introduce private class
3645         struct, allow model to be set to NULL.
3646
3647 2008-06-08  Björn Lindqvist  <bjourne@gmail.com>
3648
3649         Bug 131920 – gtkNotebook sends incorrect switch_page value
3650
3651         * gtk/gtknotebook.c (gtk_notebook_real_remove): Make switch-page
3652         signal send correct page index when page index 0 is active and
3653         removed. (#131920, Samuel Fogh)
3654
3655 2008-06-08  Kristian Rietveld  <kris@gtk.org>
3656
3657         Bug 536730 - memory corruption in gtktreeview
3658
3659         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): first
3660         remove the expand/collapse timeout and node, then free the rbtree.
3661
3662 2008-06-08  Kristian Rietveld  <kris@gtk.org>
3663
3664         Bug 488119 - critical warnings from gtk_tree_view_get_visible_range
3665
3666         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): only try to
3667         find path if we found valid nodes, return FALSE otherwise.  (Patch
3668         from Matthias Clasen).
3669
3670 2008-06-08  Matthias Clasen  <mclasen@redhat.com>
3671
3672         * gtk/gtkrecentmanager.c:
3673         * gtk/gtkrecentfilter.c:
3674         * gtk/gtkfilefilter.c: Replace uses of xdgmime with
3675         g_content_type.
3676         
3677 2008-06-08  Christian Persch <chpe@gnome.org>
3678
3679         Bug 535608 – do not string-copy accel paths in the menu code
3680
3681         * gtk/gtkaccelgroup.c:
3682         * gtk/gtkaccelmap.c:
3683         * gtk/gtkaction.c:
3684         * gtk/gtkmenu.c:
3685         * gtk/gtkmenuitem.c:
3686         * gtk/gtkwidget.c:  Don't store the accel path as a string in
3687         gtkmenu/gtkmenuitem. The accel path will be interned anyway, so
3688         keeping a string copy around is just a waste of memory.
3689         Improve the documentation to mention this.
3690
3691 2008-06-07  Tor Lillqvist  <tml@novell.com>
3692
3693         Bug 536990 - updateiconcache.c: 'close ()' is redundant
3694
3695         * gtk/updateiconcache.c (build_cache): Drop redundant close()
3696         calls. fclose() on a fdopen()ed stream closes the underlying file
3697         descriptor.
3698
3699 2008-06-06  Matthias Clasen  <mclasen@redhat.com>
3700
3701         Bug 536757 – regression: openoffice.org menus are placed at wrong
3702         position since 2.12.10
3703
3704         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents):
3705         Return the right coordinates.  
3706
3707 2008-06-06  Behdad Esfahbod  <behdad@gnome.org>
3708
3709         Bug 536185 – monitor font configuration
3710
3711         * configure.in:
3712         * gdk/x11/gdksettings.c:
3713         * gtk/gtksettings.c (gtk_settings_class_init),
3714         (gtk_settings_notify), (settings_update_fontconfig):
3715         Monitor xsettings key Fontconfig/Timestamp and upon change,
3716         reread fontconfig configuration, clear Pango's caches, and
3717         redraw all widgets.
3718
3719 2008-06-06  Ross Burton  <ross@burtonini.com>
3720
3721         * gtk/gtkwindow.c:
3722         Fix trivial typo in documentation.
3723
3724 2008-06-06  Tor Lillqvist  <tml@novell.com>
3725
3726         * config.h.win32.in: Slight update to match what configure
3727         produces.
3728
3729 2008-06-05  Johan Dahlin  <jdahlin@async.com.br>
3730
3731         * gtk/gtkbuilder.h (enum): Add the new version mismatch error
3732         constant to the end of the list, to avoid breaking the stable ABI
3733
3734 2008-06-05  Michael Natterer  <mitch@imendio.com>
3735
3736         * configure.in: add -DATK_DISABLE_SINGLE_INCLUDES to CPPFLAGS.
3737
3738 2008-06-05  Li Yuan  <li.yuan@sun.com>
3739
3740         * gail-uninstalled.pc.in:
3741         Bug #536430. Patch from Damien Carbery <damien.carbery@sun.com>.
3742         Correct paths to gail headers and libraries in gail-uninstalled.pc.in.
3743
3744 2008-06-03  Matthias Clasen  <mclasen@redhat.com>
3745
3746         * docs/RELEASE-HOWTO: Update a bit
3747
3748 2008-06-03  Matthias Clasen  <mclasen@redhat.com>
3749
3750         * configure.in: Bump version
3751
3752         * === Released 2.13.2 ===
3753
3754 2008-06-03  Federico Mena Quintero  <federico@novell.com>
3755
3756         * gtk/gtkfilechooserentry.c (install_completion_feedback_timer):
3757         If the user presses Tab while the completion feedback window is
3758         active, then we'll assert.  Remove the assertion and just re-set
3759         the timer.  Fixes https://bugzilla.novell.com/show_bug.cgi?id=355225
3760
3761 2008-06-03  Colin Walters  <walters@redhat.com>
3762         
3763         Bug 535303 – add _get_implementation to GtkStatusIcon
3764
3765         * gtk/gtkstatusicon.c (gtk_status_icon_get_x11_window_id): New
3766         function to retrieve internal X11 window ID, useful for libnotify.
3767         * gtk/gtkstatusicon.h: Prototype it.
3768         * docs/reference/gtk/gtk-sections.txt: Add to docs.
3769         * gtk/gtk.symbols: Export it.
3770
3771 2008-06-03  Tor Lillqvist  <tml@novell.com>
3772
3773         * gtk/updateiconcache.c (build_cache): Use g_open().
3774
3775 2008-06-03  Michael Natterer  <mitch@imendio.com>
3776
3777         * gtk/gtkclist.h
3778         * gtk/gtkctree.h: revert includes to how they have been before the
3779         GTK_DISABLE_SINGLE_INCLUDES changes. Apparently I missed the fact
3780         that you can't include <gtk/gtk.h> from two headers where one is a
3781         parent class of the other and expect them both to be includable
3782         individually.
3783
3784 2008-06-03  Michael Natterer  <mitch@imendio.com>
3785
3786         * gtk/gtkprinteroptionset.h: remove newline at beginning of file.
3787
3788 2008-06-02  Matthias Clasen  <mclasen@redhat.com>
3789         
3790         Bug 536092 – GtkEntryCompletion's popup window should set type hint
3791
3792         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): Set
3793         a type hint on the popup window to help compiz.
3794         Patch by Vaclav Slavik.
3795
3796 2008-06-02  Claudio Saavedra  <csaavedra@igalia.com>
3797
3798         Bug 535862 – gtk_action_create_icon can't create icons from the
3799         icon themes
3800
3801         * gtk/gtkaction.c: (gtk_action_create_icon): Look for the icon in
3802         the default factories as it's supposed.
3803
3804 2008-06-02  Yevgen Muntyan  <muntyan@tamu.edu>
3805
3806         Bug 535497 – Print preview doesn't work.
3807
3808         * gtk/Makefile.am: GTK_PRINT_PREVIEW_COMMAND on quartz: use open
3809         instead of launching Preview.app directly.
3810
3811 2008-06-02  Michael Natterer  <mitch@imendio.com>
3812
3813         * gtk/gtksignal.h: put back #include <gtk/gtkmarshal.h>, it's not
3814         in <gtk/gtk.h>. Fixes stuff that uses deprecated cruft.
3815         (bug #536126).
3816
3817 2008-05-31  Emmanuele Bassi  <ebassi@gnome.org>
3818
3819         Bug 535830 – wrong content type adding an item
3820
3821         * gtk/gtkrecentmanager.c:
3822         (gtk_recent_manager_add_item_query_info): Use the correct API
3823         for retrieving the fast MIME type of a URI. (Carlos Garcia
3824         Campos)
3825
3826 2008-05-31  Kristian Rietveld  <kris@imendio.com>
3827
3828         Bug 530146 - Setting non-string tooltip with
3829         gtk_tree_view_set_tooltip_column() segfaults
3830
3831         * gtk/gtktreeview.c (gtk_tree_view_set_tooltip_query_cb): use
3832         gtk_tree_model_get_value() and explicitly transform the value to a
3833         string before setting it as tooltip.
3834
3835 2008-05-30  Tor Lillqvist  <tml@novell.com>
3836
3837         * modules/engines/ms-windows/msw_style.h
3838         * modules/engines/ms-windows/msw_rc_style.h: Include gtk.h.
3839
3840 2008-05-30  Michael Natterer  <mitch@imendio.com>
3841
3842         * gtk/gtkmenu.c (get_attach_info): cast attach_info_free() to
3843         GDestroyNotify when using it in g_object_set_data_full().
3844
3845 2008-05-30  Michael Natterer  <mitch@imendio.com>
3846
3847         * gdk/gdkapplaunchcontext.h
3848         * gdk/gdktestutils.h
3849         * gtk/gtkmountoperation.h
3850         * gtk/gtkshow.h
3851         * gtk/gtktestutils.h
3852         * gtk/gtktoolshell.h: no need to allow disabling single includes
3853         conditionally in these new files. Simply forbid including them
3854         individually from the beginning.
3855
3856 2008-05-30  Tor Lillqvist  <tml@novell.com>
3857
3858         Bug 533108 - leak of GDI region in function 'handle_wm_paint'
3859
3860         * gdk/win32/gdkevents-win32.c (handle_wm_paint): Patch by Daniel
3861         Atallah.
3862
3863 2008-05-29  Matthias Clasen <mclasen@redhat.com>
3864
3865         * configure.in: Bump version 
3866
3867         * === Released 2.13.1 ===
3868
3869         * NEWS: Updates
3870
3871 2008-05-29  Matthias Clasen <mclasen@redhat.com>
3872
3873         * gtk/gtkwidget.c: s/2.16/2.14/ in Since tags
3874
3875 2008-05-29  Matthias Clasen <mclasen@redhat.com>
3876
3877         * tests/Makefile.am: Don't add testmountoperation to TEST_PROGS.
3878
3879 2008-05-29  Tor Lillqvist  <tml@novell.com>
3880
3881         Bug 535526 - updateiconcache.c: using open/close without prototype
3882
3883         * gtk/updateiconcache.c: Include <io.h> if _MSC_VER. Also, use
3884         g_utime() when available instead of utime() for UTF-8 pathname
3885         support on Windows.
3886
3887 2008-05-29  Jan Arne Petersen  <jpetersen@jpetersen.org>
3888
3889         Bug 56355 – GtkLabel - Not all changes propagate correctly
3890
3891         * gtk/gtklabel.c: (gtk_label_recalculate), (gtk_label_set_label),
3892         (gtk_label_set_markup_with_mnemonic), (gtk_label_parse_uline),
3893         (gtk_label_set_text_with_mnemonic), (gtk_label_set_use_underline):
3894         Call gtk_label_setup_mnemonic from gtk_label_recalculate. Add
3895         notifications of mnemonic-keyval changes.
3896
3897 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
3898
3899         Bug 522084 – GIcon support for GtkIconTheme & GtkImage
3900
3901         * gtk/gtkicontheme.[hc]: Add support for GIcon based lookups.
3902         * gtk/gtkimage.[hc]: Allow setting an image from a GIcon.
3903         * gtk/gtk.symbols: Additions
3904         * tests/testimage.c: Add a GIcon test
3905
3906 2008-05-29  Michael Natterer  <mitch@imendio.org>
3907
3908         * gtk/Makefile.am
3909         * gtk/gtkunixprint.h: add a single-include header for the unix
3910         print stuff.
3911
3912         * gtk/gtkpagesetupunixdialog.h
3913         * gtk/gtkprinter.h
3914         * gtk/gtkprintjob.h
3915         * gtk/gtkprintunixdialog.h: add single-include guards that #error
3916         out if GTK_DISABLE_SINGLE_INCLUDES is defined and any of these
3917         files is included individually.
3918
3919         * gtk/gtkprintbackend.h
3920         * gtk/gtkprinter-private.h
3921         * modules/printbackends/cups/gtkprintbackendcups.c
3922         * modules/printbackends/cups/gtkprintercups.h
3923         * modules/printbackends/lpr/gtkprintbackendlpr.c
3924         * tests/buildertest.c
3925         * tests/defaultvaluetest.c
3926         * docs/tools/widgets.c: include <gtk/gtkunixprint.h> instead of
3927         individual files.
3928
3929 2008-05-28  Michael Natterer  <mitch@imendio.com>
3930
3931         * gtk/gtk*.h: whitespace cleanup: remove trailing whitespace and
3932         excess newlines and sprinkled some newlines where needed. Zero
3933         code or formatting changes included.
3934
3935 2008-05-28  Michael Natterer  <mitch@imendio.com>
3936
3937         * gtk/gtkprinter.h: fix formatting of details_acquired() signal.
3938
3939 2008-05-28  Michael Natterer  <mitch@imendio.com>
3940
3941         * gtk/gtkcolorbutton.h: fix comment: the widget is called
3942         GtkColorButton, not GtkColorSelectButton. Remove trailing
3943         whitespace and excess newlines.
3944
3945 2008-05-28  Michael Natterer  <mitch@imendio.com>
3946
3947         * configure.in: last but not least, add G_DISABLE_SINGLE_INCLUDES,
3948         GDK_PIXBUF_DISABLE_SINGLE_INCLUDES and GTK_DISABLE_SINGLE_INCLUDES
3949         to CPPFLAGS so it's impossible to commit code that would break
3950         apps which use DISABLE_INCLUDE defines.
3951
3952 2008-05-28  Michael Natterer  <mitch@imendio.com>
3953
3954         * gtk/gtk.h: define __GTK_H_INSIDE__ around including all other
3955         headers.
3956
3957         * gtk/gtktypebuiltins.h.template
3958         * gtk/gtkversion.h.in
3959         * gtk/gtk*.h: add single-include guards that #error out if
3960         GTK_DISABLE_SINGLE_INCLUDES is defined and any of these files is
3961         included individually.
3962
3963         * gtk/gtkprintbackend.h
3964         * gtk/gtkprinter-private.h
3965         * gtk/gtktextlayout.h
3966         * gtk/gtktexttagprivate.h
3967         * gtk/gtktexttypes.h
3968         * gtk/gtktreedatalist.h: include <gtk/gtk.h> instead of individual
3969         headers in these private or semi-private headers.
3970
3971         * gtk/gtkimmodule.h: also here because it's not in gtk.h.
3972
3973         * gtk/gtkpagesetupunixdialog.h
3974         * gtk/gtkprinter.h
3975         * gtk/gtkprintjob.h
3976         * gtk/gtkprintunixdialog.h: likewise in the gtkunixprint headers.
3977
3978         * gtk/gtkclist.h
3979         * gtk/gtkcombo.h
3980         * gtk/gtkctree.h
3981         * gtk/gtkfilesel.h
3982         * gtk/gtkitemfactory.h
3983         * gtk/gtklist.h
3984         * gtk/gtklistitem.h
3985         * gtk/gtkoldeditable.h
3986         * gtk/gtkoptionmenu.h
3987         * gtk/gtkpixmap.h
3988         * gtk/gtkpreview.h
3989         * gtk/gtksignal.h
3990         * gtk/gtktipsquery.h: whenever possible, include only <gtk/gtk.h>
3991         instead of individual headers in these deprecated headers. They
3992         don't get included at all when GTK_DISABLE_DEPRECATED is defined,
3993         so if an app needs them anyway, it must undef GTK_DISABLE_DEPRECATED
3994         and include them individually, which should continue to work.
3995
3996         * gtk/gtkclist.c: include "gtkctree.h" because of the change
3997         above.
3998
3999 2008-05-28  Kristian Rietveld  <kris@imendio.com>
4000
4001         Bug 449625 - crash in gtk_tree_view_real_move_cursor at
4002         gtktreeview.c:9641
4003
4004         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down):
4005         cursor_offset *must* be larger than background height of the cursor
4006         node, not just equal otherwise there is no guarantee there is a next
4007         node.
4008
4009 2008-05-28  Michael Natterer  <mitch@imendio.com>
4010
4011         * gtk/gtktestutils.c: don't include <gdk/gdktestutils.h>.
4012
4013 2008-05-28  Michael Natterer  <mitch@imendio.com>
4014
4015         * gdk/gdk.h: define __GDK_H_INSIDE__ around including all other
4016         headers.
4017
4018         * gdk/gdkenumtypes.h.template
4019         * gdk/gdk*.h: add single-include guards that #error out if
4020         GTK_DISABLE_SINGLE_INCLUDES is defined and any of these files is
4021         included individually. Also removed some redundant includes and
4022         did some tiny trailing whitespace removal that's not worth to
4023         commit separately.
4024
4025         * gdk/gdkprivate.h: include <gdk/gdk.h> instead of individual
4026         files.
4027
4028         * gdk/win32/gdkwin32.h
4029         * gdk/x11/gdkx.h: only include <gdk/gdkprivate.h> and remove all
4030         other includes.
4031
4032 2008-05-28  Kristian Rietveld  <kris@imendio.com>
4033
4034         Bug 504087 - make gtk_tooltip_set_custom a no-op for setting the
4035         current widget again.
4036
4037         * gtk/gtktooltip.c (gtk_tooltip_set_custom),
4038         (gtk_tooltip_reset), (gtk_tooltip_run_requery): use a
4039         custom_was_reset field to check if the custom widget is set again in
4040         the query-tooltip callback; if not, we set it to NULL.  Based on a
4041         patch by Xavier Claessens, insightful comments from Jean-Yves Lefort
4042         and Christian Persch.
4043
4044 2008-05-28  Michael Natterer  <mitch@imendio.com>
4045
4046         * modules/printbackends/cups/gtkcupsutils.c
4047         * modules/printbackends/cups/gtkprintbackendcups.c
4048         * modules/printbackends/file/gtkprintbackendfile.c
4049         * modules/printbackends/lpr/gtkprintbackendlpr.c: include
4050         <gtk/gtk.h> instead of individual files.
4051
4052 2008-05-28  Michael Natterer  <mitch@imendio.com>
4053
4054         * demos/testpixbuf.c: include <gdk-pixbuf/gdk-pixbuf.h> instead of
4055         individual files.
4056
4057 2008-05-28  Kristian Rietveld  <kris@imendio.com>
4058
4059         Bug 498010 - gtk_tree_view_set_cursor fails if model!=NULL.
4060
4061         * gtk/gtktreeview.c (gtk_tree_view_set_cursor_on_cell): return if fail
4062         ->priv->tree != NULL.  Suggestion from Stefan Kost.
4063
4064 2008-05-28  Kristian Rietveld  <kris@imendio.com>
4065
4066         Bug 324282 - add selected signal to cell renderer combo.
4067
4068         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init),
4069         (gtk_cell_renderer_combo_changed),
4070         (gtk_cell_renderer_combo_start_editing): add a new "changed" signal
4071         that will be emitted as soon as the combo box emitted changed and has
4072         an active iterator.  (Modified patch based on work by James
4073         Pelletier).
4074
4075         * gtk/gtkmarshalers.list: add marshaler.
4076
4077 2008-05-28  Kristian Rietveld  <kris@imendio.com>
4078
4079         Refactor expand/collapse timeout handling (amendment to bug 511217).
4080
4081         * gtk/gtktreeview.c (add_expand_collapse_timeout),
4082         (remove_expand_collapse_timeout): new functions, the remove function
4083         also clears expanded_collapsed_node,
4084         (cancel_arrow_animation): moved to be next to the add/remove timeout
4085         functions,
4086         (gtk_tree_view_unrealize),
4087         (gtk_tree_view_row_deleted),
4088         (gtk_tree_view_set_model),
4089         (cancel_arrow_animation),
4090         (gtk_tree_view_real_expand_row),
4091         (gtk_tree_view_real_collapse_row): use the new add/remove functions.
4092
4093 2008-05-28  Kristian Rietveld  <kris@imendio.com>
4094
4095         Amendment of bug 485218 - Strange warning encountered.
4096
4097         * gtk/gtktreemodelsort.[ch]
4098         (gtk_tree_model_sort_convert_child_iter_to_iter): return a boolean
4099         indication whether or not the conversion had succeeded.
4100
4101 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4102
4103         Bug 509788 - GTK+ should use CUPS to set Postscript level of PS output
4104
4105         * modules/printbackends/cups/gtkprintbackendcups.c
4106         (cups_printer_create_cairo_surface): Fall back to PostScript level 2
4107         if the printer does not support level 3. Patch by Marek Kašík.
4108
4109 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4110
4111         Bug 404571 - Scroll arrow backgrounds should be painted with different
4112         detail
4113
4114         * gtk/gtkmenu.c (gtk_menu_paint): Use "menu_scroll_arrow_up/down" 
4115         as detail when drawing scroll arrow backgrounds. Proposed by
4116         Tommi Komulainen.
4117         
4118 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4119
4120         Bug 511217 - potential memory corruption after refreshing a tree_view
4121
4122         * gtk/gtktreeview.c (cancel_arrow_animation): Reset
4123         expanded_collapsed_node when canceling the animation.
4124         Patch by Nicholas Setton.
4125
4126 2008-05-28  Michael Natterer  <mitch@imendio.com>
4127
4128         * modules/input/gtkimcontextime.h
4129         * modules/input/gtkimcontextmultipress.h
4130         * modules/input/gtkimcontextthai.h
4131         * modules/input/gtkimcontextxim.h: include <gtk/gtk.h> instead of
4132         individual files.
4133
4134         * modules/input/gtkimcontextime.c
4135         * modules/input/gtkimcontextmultipress.c
4136         * modules/input/gtkimcontextxim.c
4137         * modules/input/imam-et.c
4138         * modules/input/imcedilla.c
4139         * modules/input/imcyrillic-translit.c
4140         * modules/input/iminuktitut.c
4141         * modules/input/imipa.c
4142         * modules/input/imti-er.c
4143         * modules/input/imti-et.c
4144         * modules/input/imviqr.c: ditto. Some minor cleanups like moving
4145         "gtk/gtkintl.h" to the end of includes.
4146
4147 2008-05-28  Michael Natterer  <mitch@imendio.com>
4148
4149         * modules/engines/pixbuf/pixbuf-style.h
4150         * modules/engines/pixbuf/pixbuf-rc-style.h: include <gtk/gtk.h>
4151         instead of individual files.
4152
4153 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4154
4155         Bug 485218 - Strange warning encountered
4156
4157         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted):
4158         (gtk_tree_model_sort_convert_child_iter_to_iter):
4159         (gtk_tree_model_sort_build_level): Better warnings. Patch
4160         by Kristian Rietveld.
4161
4162 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4163
4164         Bug 351910 - Search column setting lost
4165
4166         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Clarify
4167         the docs. Patch by Matt Barnes.
4168
4169 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4170
4171         Bug 477278 - avoid unnecessary pointer subtraction
4172
4173         * gtk/gtkaccelgroup.c (quick_accel_remove): Avoid pointer 
4174         subtraction that sparse complains about. Patch by Christian
4175         Persch.
4176
4177 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4178
4179         Bug 106574 - Inconsistent increment behavior for gtkspinbutton
4180
4181         * gtk/gtkspinbutton.c (gtk_spin_button_real_value_change):
4182         Commit the entry text before doing an increment. Patch by
4183         Björn Lindqvist.
4184
4185 2008-05-27  Federico Mena Quintero  <federico@novell.com>
4186
4187         http://bugzilla.gnome.org/show_bug.cgi?id=533891 - Don't allow
4188         drag and drop from the file list into itself, as it doesn't make
4189         sense (it would just change the current folder).
4190
4191         * gtk/gtkfilechooserdefault.c (file_list_dest_targets): Use
4192         GTK_TARGET_OTHER_WIDGET so we don't DnD from the file list into
4193         itself.
4194
4195 2008-05-27  Michael Natterer  <mitch@imendio.com>
4196
4197         * gtk/gtksignal.h: move deprecated guards around everything,
4198         including includes and include guards (just as in all other
4199         deprecated files).
4200
4201 2008-05-27  Tor Lillqvist  <tml@novell.com>
4202
4203         * gtk/updateiconcache.c (build_cache): Use simpler mode for open()
4204         on Windows. (No S_I?GRP and S_I?OTH bits are defined in
4205         <sys/stat.h> on Windows, and the mode used in open() doesn't
4206         matter much as there are no rwxrwxrwx bits on Windows anyway.)
4207         Open file in binary mode. Passing "b" to fdopen() later isn't
4208         enough.
4209
4210 2008-05-27 10:33:41  Tim Janik  <timj@imendio.com>
4211
4212         * gtk/gtkwidget.c: guard gtk_widget_get_snapshot() against
4213         invalid or invisible widgets.
4214
4215 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4216
4217         Bug 531008 – Crash in gtkprintunixdialog.c
4218
4219         * gtk/gtkprintunixdialog.c: Disconnect signal handlers when
4220         the dialog closes. Patch by Yevgen Muntyan.
4221
4222 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
4223
4224         RH bug 248245: cups client printing from gnome applications fail
4225
4226         * modules/printbackends/cups/gtkprintbackendcups.c
4227         (gtk_print_backend_cups_print_stream): Specify the right server.
4228
4229 2008-05-27  Carlos Garnacho  <carlos@imendio.com>
4230
4231         * gtk/gtkfilechooserdefault.c (set_select_multiple): Enable
4232         rubberbanding when "select-multiple" is TRUE. Bug #446068.
4233
4234 2008-05-27  Carlos Garnacho  <carlos@imendio.com>
4235
4236         * gtk/gtkmountoperation.c (gtk_mount_operation_ask_password): Enable
4237         correctly dialog buttons sensitivity when the anonymous option is
4238         enabled by default. Bug #531865.
4239
4240 2008-05-27  Carlos Garnacho  <carlos@imendio.com>
4241
4242         * gtk/gtkmountoperation.c (gtk_mount_operation_ask_password): Set
4243         password dialog modal and transient for the parent window also if it
4244         was specified in the constructor. Bug #531864.
4245
4246 2008-05-26  Richard Hult  <richard@imendio.com>
4247
4248         * gdk/quartz/gdkevents-quartz.c: (gdk_screen_get_setting): Try
4249         setting the default font, might need to tweak this.
4250
4251 2008-05-26  Michael Natterer  <mitch@imendio.com>
4252
4253         * examples/gtkdial/gtkdial.h
4254         * modules/input/gtkimcontextthai.h: use G_BEGIN/END_DECLS.
4255
4256 2008-05-26  Michael Natterer  <mitch@imendio.com>
4257
4258         * gtk/gtkimmodule.h: fix indentation.
4259
4260 2008-05-26  Michael Natterer  <mitch@imendio.com>
4261
4262         * gtk/gtkshow.h: include "gdk/gdk.h" instead of "gdk/gdkscreen.h"
4263
4264         * gtk/gtkshow.c: remove inclusion of single files from gdk/
4265
4266         Removed trailing whitespace in both files.
4267
4268 2008-05-26  Richard Hult  <richard@imendio.com>
4269
4270         Bug 530353 – Mac-like gtk_accelerator_get_label()
4271
4272         * gtk/gtkaccellabel.c: (gtk_accel_label_class_init),
4273         (append_keyval_symbol), (_gtk_accel_label_class_get_accelerator_label):
4274         On quartz, make gtk_accelerator_get_label() format a Mac-like
4275         string, using unicode characters for modifier keys, arrows, delete
4276         etc. Patch from Yevgen Muntyan.
4277
4278 2008-05-26  Richard Hult  <richard@imendio.com>
4279
4280         Bug 534869 – Length miscalculation in
4281         _gtk_quartz_get_selection_data_from_pasteboard
4282
4283         * gtk/gtkquartz.c: (_gtk_quartz_get_selection_data_from_pasteboard):
4284         Get the number of bytes, not the number of characters, patch from
4285         Yevgen Muntyan.
4286
4287 2008-05-26  Matthias Clasen  <mclasen@redhat.com>
4288
4289         * gtk/gtkwidget.c: Some doc formatting fixes.
4290
4291 2008-05-26  Matthias Clasen  <mclasen@redhat.com>
4292
4293         Bug 511163 – Remove pango_extents_to_pixels() calls
4294
4295         * gtk/gtkcellrenderertext.c (get_size): Use
4296         pango_layout_get_pixel_extents.
4297
4298         * configure.in: Bump Pango requirement to 1.20
4299
4300         * INSTALL.in: Update required versions
4301
4302 2008-05-26  Matthias Clasen  <mclasen@redhat.com>
4303
4304         Bug 513811 – Use cairo_format_stride_for_width()
4305
4306         * gtk/gtkhsv.c (paint_ring, paint_triangle):
4307         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Use
4308         cairo_format_stride_for_width, proposed by Behdad Esfahbod.
4309
4310         * configure.in: Bump cairo requirement to 1.6.0
4311
4312         * INSTALL.in: Update required versions
4313
4314 2008-05-26  Matthias Clasen  <mclasen@redhat.com>
4315
4316         * gtk/gtkshow.[hc]: Formatting fixes
4317
4318         * gtk/gtkmountoperation.c: Add docs
4319
4320 2008-05-25  Cody Russell  <bratsche@gnome.org>
4321
4322         Bug 507389 – use gslice for gtksettings
4323
4324         * gtk/gtksettings.c: Change from g_new0/g_free to use GSlice.
4325         Report and patch by Christian Persch.
4326
4327 2008-05-25  Cody Russell  <bratsche@gnome.org>
4328
4329         Bug 523562 - gtk-update-icon-cache core dumps when run concurrently and
4330         when options are missing
4331
4332         * gtk/updateiconcache.c: Open the cache file (O_CREAT | O_EXCL) so
4333         that other processes that try to open it will fail gracefully.  Also
4334         fix a crasher caused by lack of a NULL check.  Report and patch
4335         by Erwann Chenede.
4336
4337 2008-05-25  Cody Russell  <bratsche@gnome.org>
4338
4339         Bug 526635 - _gdk_window_get_toplevel handles FOREIGN windows
4340
4341         * gdk/x11/gdkwindow-x11.c (_gdk_window_get_toplevel): Check
4342         !WINDOW_IS_TOPLEVEL instead of checking for GDK_WINDOW_CHILD,
4343         so that we also take into account for foreign windows.
4344         Report and patch by Nathaniel Smith.
4345
4346 2008-05-25  Cody Russell  <bratsche@gnome.org>
4347
4348         Bug 525461 - Don't invalidate under an input-only child
4349
4350         * gdk/x11/gdkgeometry-x11.c (_gdk_window_move_resize_child):
4351         Check that the window is not input-only before invalidating.
4352         Report and patch by Owen Taylor.
4353
4354 2008-05-25  Cody Russell  <bratsche@gnome.org>
4355
4356         Bug 524110 - Gdk should not assume reparenting WMs when retrieving
4357         window frame extents
4358
4359         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents):
4360         Use _NET_FRAME_EXTENTS, if available.  Patch by Danny Baumann.
4361
4362 2008-05-25  Cody Russell  <bratsche@gnome.org>
4363
4364         Bug 522269 - Evince windows sometimes incorrectly unmaximized,
4365         caused by missing flag initialization
4366
4367         * gdk/x11/gdkwindow-x11.c (set_initial_hints): Initialize
4368         top-level private flags correctly.  Patch by Danny Baumann.
4369
4370 2008-05-25  Cody Russell  <bratsche@gnome.org>
4371
4372         Bug 534463 - non-editable GtkTextView should not call
4373         gtk_im_context_focus_in in focus event
4374
4375         * gtk/gtktextview.c: Add checks to see if the textview is
4376         editable.  Patch by Wang Diancheng.
4377
4378 2008-05-25  Matthias Clasen  <mclasen@redhat.com>
4379
4380         Bug 501730 – use GSlice for small allocs
4381
4382         * gtk/gtkmenuitem.c:
4383         * gtk/gtkmenu.c: Use the slice allocator for small allocations.
4384         Patch by Christian Persch.
4385         
4386 2008-05-25  Matthias Clasen  <mclasen@redhat.com>
4387
4388         Bug 523930 – sort -> search in gtktreeview.c
4389
4390         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Fix a doc
4391         glitch, pointed out by Björn Lindqvist.
4392
4393 2008-05-25  Matthias Clasen  <mclasen@redhat.com>
4394
4395         Bug 479384 – gtk_selection_data_targets_include_uri docs buglet
4396
4397         * gtk/gtkselection.c (gtk_selection_data_targets_include_uri): Fix
4398         doc glitch, pointed out by Christian Persch.
4399
4400 2008-05-25  Matthias Clasen  <mclasen@redhat.com>
4401
4402         Bug 534694 – Col id in GtkListStore could be out of range
4403
4404         * gtk/gtkliststore.c (list_store_start_element): Fix up error handling
4405         a bit. Pointed out by Jan Arne Petersen.
4406
4407 2008-05-25  Matthias Clasen  <mclasen@redhat.com>
4408
4409         Bug 532497 – Configure problem when cross-compiling
4410
4411         * configure.in: Use AC_CHECK_TOOLS to find C++ compiler, 
4412         pointed out by Marko Lindqvist.
4413
4414 2008-05-25  Richard Hult  <richard@imendio.com>
4415
4416         * gtk/gtkquartz.c: (_gtk_quartz_set_selection_data_for_pasteboard):
4417         Slight coding style cleanup.
4418
4419 2008-05-25  Tristan Van Berkom <tvb@gnome.org>
4420
4421         * gtk/gtkbuilderprivate.h, gtk/gtkbuilder.h, gtk/gtkbuilderparser.c:
4422         Added support for parsing required toolkit versions (so that ui descriptions
4423         can target specific versions of the backend widget libraries) bug 527612.
4424
4425         * gtk/docs/reference/gtk/tmpl/gtkbuilder.sgml: Added documentation
4426         for the added xml tags to the ui description.
4427
4428         * tests/buildertest.c: Enhanced pango attribute tests, Added tests
4429         for requires tag handling.
4430
4431 2008-05-25  Richard Hult  <richard@imendio.com>
4432
4433         * gtk/gtkdnd-quartz.c: (gtk_drag_drop_finished): Run
4434         gtk_drag_source_info_destroy in an idle, workaround for bug
4435         #501588, that makes any code that uses the context returned from
4436         gtk_drag_begin() crash, like treeview/iconview dnd.
4437         (GdkDragSourceOwner::provideDataForType): only use the data if we
4438         got any.
4439
4440 2008-05-25  Jan Arne Petersen  <jpetersen@jpetersen.org>
4441
4442         * gtk/gtkfilechooserdefault.c: (create_file_list): Add GDK_ACTION_MOVE
4443         to the drag actions to allow trash (#137717).
4444
4445 2008-05-25  Josselin Mouette  <joss@malsain.org>
4446
4447         reviewed by: Matthias Clasen
4448
4449         * gtk/gtksearchenginetracker.c: (_gtk_search_engine_tracker_new):
4450         check that tracker is actually working before using it. Fixes
4451         bug #479197.
4452
4453 2008-05-25  Sven Neumann  <sven@gimp.org>
4454
4455         * gtk/gtkdrawingarea.c (gtk_drawing_area_realize)
4456         (gtk_drawing_area_size_allocate): respect the GTK_NO_WINDOW flag
4457         and don't create an output window if it is set.
4458
4459         * gtk/gtkprintunixdialog.c: set the GTK_NO_WINDOW flag for the
4460         drawing areas. Fixes bug #519317.
4461
4462 2008-05-25  Jan Arne Petersen  <jpetersen@jpetersen.org>
4463
4464         * gtk/gtkentry.c: (gtk_entry_class_init), (get_text_area_size),
4465         (gtk_entry_get_text_area_size), (gtk_entry_draw_frame):
4466         * gtk/gtkentry.h:
4467         * gtk/gtkspinbutton.c: (gtk_spin_button_class_init),
4468         (gtk_spin_button_realize), (gtk_spin_button_size_allocate),
4469         (gtk_spin_button_expose), (gtk_spin_button_draw_arrow),
4470         (gtk_spin_button_enter_notify), (gtk_spin_button_leave_notify),
4471         (gtk_spin_button_grab_notify), (gtk_spin_button_state_changed),
4472         (start_spinning), (gtk_spin_button_button_release),
4473         (gtk_spin_button_motion_notify), (gtk_spin_button_value_changed),
4474         (gtk_spin_button_get_text_area_size), (gtk_spin_button_real_spin),
4475         (gtk_spin_button_update): Reorder strange window hierarchy of the
4476         GtkSpinButton (#466000).
4477
4478 2008-05-25  Jan Arne Petersen  <jpetersen@jpetersen.org>
4479
4480         * gtk/gtklabel.c: (get_layout_location): Subtract logical.x from x to
4481         fix the wrong position for right and center justified labels with
4482         logical.x > 0 (#530255).
4483
4484 2008-05-25  Jan Arne Petersen  <jpetersen@jpetersen.org>
4485
4486         * gtk/gtkfilechooserdefault.c:
4487         (shortcuts_activate_volume_mount_cb): Ignore G_IO_ERROR_FAILED_HANDLED
4488         errors (#532262).
4489
4490 2008-05-25  Björn Lindqvist  <bjourne@gmail.com>
4491
4492         * tests/pixbuf-lowmem.c
4493         * tests/pixbuf-random.c
4494         * tests/pixbuf-randomly-modified.c
4495         * tests/pixbuf-read.c
4496         * tests/pixbuf-threads.c
4497         * tests/testgtk.c
4498         * tests/testtreeview.c: Fix remaining compiler warnings in these
4499         files (#523751).
4500
4501 2008-05-25  Jaap A. Haitsma  <jaap@haitsma.org>
4502
4503         reviewed by: Matthias Clasen
4504
4505         * gtk/Makefile.am:
4506         * gtk/gtk.h:
4507         * gtk/gtk.symbols:
4508         * gtk/gtkshow.c: (gtk_show_uri):
4509         * gtk/gtkshow.h:
4510         Add gtk_show_uri to make showing uris really easy. Fixes bug #514396
4511
4512 2008-05-25  Jan Arne Petersen  <jpetersen@jpetersen.org>
4513
4514         * gtk/gtkliststore.c: (list_store_text): Use type of the correct
4515         column (#529535).
4516         * tests/buildertest.c: (test_list_store): Add test.
4517
4518 2008-05-24  Matthias Clasen  <mclasen@redhat.com>
4519
4520         Bug 520989 – icon factory buildable too strict
4521
4522         * gtk/gtkiconfactory.c (icon_source_start_element): Make filename
4523         an optional attribute.
4524
4525 2008-05-24  Matthias Clasen  <mclasen@redhat.com>
4526
4527         Bug 387972 – gtkassistant drawing problem
4528
4529         * gtk/gtkassistant.c (gtk_assistant_size_allocate): Make 
4530         GtkAssistant work better in glade. 
4531
4532 2008-05-24  Jan Arne Petersen  <jpetersen@jpetersen.org>
4533
4534         * gtk/gtktoolbar.c: (gtk_toolbar_class_init): Change defaults of child
4535         properties "expand" and "homogeneous" from TRUE to FALSE (as they are
4536         used in GtkToolItem) (#532787).
4537
4538 2008-05-24  Jan Arne Petersen  <jpetersen@jpetersen.org>
4539
4540         * gtk/gtkfilechooserdefault.c: (location_toggle_popup_handler): Don't
4541         try to toggle the visibility of the location entry field in search and
4542         recent mode (#526422).
4543
4544 2008-05-24  Jan Arne Petersen  <jpetersen@jpetersen.org>
4545
4546         * gtk/gtkfilechooserdefault.c: (shortcuts_query_tooltip_cb),
4547         (shortcuts_list_create): Show parse name as tooltip for path
4548         shortcuts (#137503).
4549
4550 2008-05-24  Björn Lindqvist  <bjourne@gmail.com>
4551
4552         * gdk/gdkcolor.c (gdk_color_parse): Update docstring to match
4553         pango_color_parse, do not reference XParseColor forms (#434991).
4554
4555 2008-05-24  James Sharpe <jsharpe@gnome.org>
4556
4557         * gdk/gdk.symbols: Remove duplicate
4558         gdk_window_redirect_to_drawable and gdk_window_remove_redirection
4559         * gtk/gtk.symbols: Remove duplicate gtk_widget_get_snapshot
4560         
4561 2008-05-23  Hans Breuer  <hans@breuer.org>
4562
4563         * **/makefile.msc gtk/makefile.msc.in : updated
4564         * gtk/gtkwidget.c : fix c99ism (variable at start of block
4565         * gdk/gdk.symbols gtk/gtk.symbols : export functions for window 
4566         redirection
4567         * gtk/gtkfilechooserdefault.c : #include <locale.h> for 
4568         setlocale(LC_ALL, ...)
4569
4570 2008-05-23  Tor Lillqvist  <tml@novell.com>
4571
4572         * gdk/gdk.symbols: Add gdk_window_redirect_to_drawable and
4573         gdk_window_remove_redirection.
4574
4575         * gdk/win32/gdkwindow-win32.c (_gdk_window_new)
4576         (_gdk_window_reparent): Rename to adapt to the offscreen rendering
4577         changes. Remove now unnecessary parameter checks as the caller
4578         does that already.
4579
4580         * gtk/gtk.symbols: Add gtk_widget_get_snapshot.
4581
4582 2008-05-23  Tor Lillqvist  <tml@novell.com>
4583
4584         * gdk/win32/gdkwindow-win32.c (update_style_bits): Don't do
4585         anything if style doesn't change. Improve debugging output.
4586
4587 2008-05-23  Michael Natterer  <mitch@gimp.org>
4588
4589         * perf/widgets.h
4590         * tests/print-editor.c
4591         * tests/prop-editor.h
4592         * tests/testmountoperation.c
4593         * tests/testmultidisplay.c
4594         * tests/testnouiprint.c
4595         * tests/testprint.c
4596         * tests/testprintfileoperation.h
4597         * tests/testtreesort.c
4598         * tests/textbuffertest.c: include <gtk/gtk.h> instead of single
4599         files. Remove some redundant includes.
4600
4601 2008-05-22  Hiroyuki Ikezoe  <poincare@ikezoe.net>
4602
4603         * gtk/gtksockget.c: (gtk_socket_realize): Remove second call of
4604         GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED).
4605
4606 2008-05-21  Richard Hult  <richard@imendio.com>
4607
4608         * gdk/quartz/gdkwindow-quartz.c:
4609         (_gdk_window_new), (_gdk_window_reparent): Renamed to adapt to the
4610         offscreen rendering changes, fixes build.
4611
4612 2008-05-21 21:10:15  Tim Janik  <timj@imendio.com>
4613
4614         * gtk/gtkwidget.h: added GdkRectangle *clip_rect to gtk_widget_get_snapshot().
4615
4616         * gtk/gtkwidget.c: clip the returned snapshot pixmap to clip_rect.
4617         return snapshot pixmap coordinates widget relative in *clip_rect.
4618
4619         * tests/testgtk.c: fixed bogus NULL pointer unref.
4620
4621 2008-05-21 21:04:28  Tim Janik  <timj@imendio.com>
4622
4623         * gtk/gtkwidget.c gtk_widget_get_snapshot(): grow snapshot area from
4624         widget's allocation to cover extra widget windows placed outside the
4625         widget allocation (spinbutton arrows are the prime example for this).
4626
4627 2008-03-18 10:49:20  Tim Janik  <timj@imendio.com>
4628
4629         * Applied pixmap redirection patch by Alexander Larsson with
4630         various updates from:
4631         Bug 318807 – Offscreen windows and window redirection.
4632
4633
4634         Updates:
4635
4636         * updated docs to mention "Since 2.16".
4637
4638         * tests/testgtk.c: fixed snapshooting pixmap leak.
4639         convert pixmap to pixbuf after snapshooting, to compensate for different
4640         bit depths (occurs when snapshooting ARGB visuals and displaying the
4641         pixmap in an RGB visual).
4642
4643         * gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
4644
4645         * gdk/gdkwindow.c: removed damage idle handler, there's no aparent
4646         need for it. enqueue damage notification as GDK_DAMAGE events
4647         for each painting redirection at the start of the event queue.
4648         consider windows with a redirection fully visible when invalidating,
4649         and when updating from backing store. cleaned up stale variables.
4650
4651         * gdk/gdkevents.c: added _gdk_event_queue_prepend().
4652
4653         * gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
4654         gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
4655         tree, drawingarea, text, handlebox, etc.
4656         clip the redirected window hierarchy to window sizes, the visible
4657         rectangles don't need to be taken into account here.
4658         extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
4659         in case pixmap visuals could mismatch.
4660
4661         * gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
4662
4663
4664         Base patch:
4665
4666         * tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
4667         of possibly obscured widgets into an offscreen pixmap.
4668
4669         * gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
4670         gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
4671
4672         * gtk/gtkmain.c: dispatch GDK_DAMAGE events.
4673
4674         * gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
4675         implementations here, adapted them to propagate redirects to child windows.
4676         gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
4677         clipped to visible region. queue GDK_DAMAGE event delivery.
4678         gdk_window_redirect_to_drawable(): install window painting redirection.
4679         gdk_window_remove_redirection(): remove previously installed redirection.
4680
4681         * gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
4682         renamed _gdk_window_new() and _gdk_window_reparent().
4683
4684         * gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
4685         gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
4686
4687         * gdk/gdkevents.h: added GDK_DAMAGE event type.
4688
4689         * gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
4690
4691         * gdk/gdkinternals.h: added internal prototypes.
4692
4693 2008-05-21  Michael Natterer  <mitch@imendio.com>
4694
4695         * gtk/gtkalignment.c
4696         * gtk/gtkarrow.c
4697         * gtk/gtkbbox.c
4698         * gtk/gtkcalendar.c
4699         * gtk/gtkscrolledwindow.c: remove PROP_LAST enum values.
4700
4701 2008-05-20  Matthias Clasen  <mclasen@redhat.com>
4702
4703         RH bug 204621 - "GtkPrint" asks for "Letter" size paper when "A4" size
4704         was chosen
4705
4706         Patch by Marek Kasik.
4707
4708         * gtk/gtk.symbols:
4709         * gtk/gtkprinter.[hc]: Add gtk_printer_get_default_page_size.
4710         
4711         * gtk/gtkprintbackend.[hc]: Add fallback implementation.
4712
4713         * modules/printbackends/file/gtkprintbackendfile.c:
4714         * modules/printbackends/cups/gtkprintbackendcups.c: Implement
4715         get_default_page_size.
4716
4717         * gtk/gtkpagesetupunixdialog.c: When selecting a different printer,
4718         select its default paper size.
4719
4720         * gtk/gtkprintunixdialog.c: If no explicit page setup has been set,
4721         use the printer default.
4722
4723         * gtk/gtkprintoperation-unix.c: Don't create an empty page setup
4724         if we don't have a default page setup.
4725
4726 2008-05-20  Gian Mario Tagliaretti  <gianmt@gnome.org>
4727
4728         * gtk/gtkdnd.c: (gtk_drag_set_icon_pixmap): Fix the docs, the mask param
4729         can accept NULL for none. Fixes bug #533920.
4730
4731 2008-05-20  Björn Lindqvist  <bjourne@gmail.com>
4732
4733         * gtk/gtkspinbutton.c: (gtk_spin_button_snap,
4734         gtk_spin_button_update): Remove two chunks of duplicated
4735         code (#533733).
4736
4737 2008-05-20 14:27:34  Tim Janik  <timj@imendio.com>
4738
4739         * reverted recent unapproved changes by Yair Hershkovitz,
4740         regarding: Bug 503071 – Application direction changes to right
4741         to left even if theres no translation.
4742
4743 2008-05-19  Richard Hult  <richard@imendio.com>
4744
4745         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_hide),
4746         (gdk_window_fullscreen), (gdk_window_unfullscreen): Use
4747         SetSystemUIMode instead of hiding and showing the menubar.
4748
4749 2008-05-19  Federico Mena Quintero  <federico@novell.com>
4750
4751         http://bugzilla.gnome.org/show_bug.cgi?id=322298 - Save dialog
4752         can't be resized until you expand the "Browse for other folders"
4753         section.
4754
4755         * gtk/gtkfilechooserembed.h (struct _GtkFileChooserEmbedIface):
4756         Removed the "get_resizable" method.
4757         (_gtk_file_chooser_embed_get_resizable): Removed.
4758
4759         * gtk/gtkfilechooserembed.c: Removed the _get_resizable() machinery.
4760
4761         * gtk/gtkfilechooserdefault.c: Likewise.
4762
4763         * gtk/gtkfilechooserdialog.c
4764         (file_chooser_widget_default_size_changed): Act as if the dialog
4765         were always resizable.
4766
4767 2008-05-19  Michael Natterer  <mitch@imendio.com>
4768
4769         * gtk/gtkcellrenderer.c
4770         * gtk/gtkcellrendererpixbuf.c
4771         * gtk/gtkcellrenderertoggle.c
4772         * gtk/gtkimagemenuitem.c
4773         * gtk/gtkmenutoolbutton.c
4774         * gtk/gtkoptionmenu.c
4775         * gtk/gtkstatusbar.c
4776         * gtk/gtktextview.c: s/PROP_ZERO/PROP_0/g, remove LAST_PROP.
4777
4778 2008-05-17  Yair Hershkovitz  <yairhr@gmail.com>
4779
4780         * gtk/gtkmain.c: gtk_disable_setlocale() - Added a call to
4781         g_disable_setlocale().
4782
4783 2008-05-17  Richard Hult  <richard@imendio.com>
4784
4785         * gdk/quartz/gdkwindow-quartz.c:
4786         (gdk_window_impl_quartz_invalidate_maybe_recurse):
4787         (gdk_window_quartz_update_idle): Use gdk_threads_add_idle instead
4788         of g_idle_add. Add a temporary check if the window is already in
4789         the updates list, since update_area currently doesn't always match
4790         the backend's state, see bug #530801.
4791
4792 2008-05-13  Tor Lillqvist  <tml@novell.com>
4793
4794         Bug 496958 - Wacom Bamboo doesn't function with GTK apps in Win32
4795
4796         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Set
4797         the "packet rate" of devices to zero instead of 50. This is
4798         reported to help significantly with Wacom tablet behaviour in GIMP
4799         and Inkscape. Patch from Thomas Bleeker.
4800
4801 2008-05-12  Richard Hult  <richard@imendio.com>
4802
4803         * gdk/quartz/gdkevents-quartz.c:
4804         * gdk/quartz/gdkquartz.h: Remove special casing of menu key events
4805         as it's no longer necessary; instead the added quartz API to get
4806         the nsevent from an event should be used. Also move the global
4807         filter up so it's done before the check for window-less events.
4808
4809 2008-05-12  Tor Lillqvist  <tml@novell.com>
4810
4811         Bug 532558 - Cannot build dll when using separate builddir
4812
4813         * gdk/Makefile.am
4814         * gtk/Makefile.am: .def file belongs in $(srcdir). Patch by Marko
4815         Lindqvist.
4816
4817 2008-05-12  Yair Hershkovitz  <yairhr@gmail.com>
4818
4819         * gtk/gtkmain.c: g_i18n_init(); -> g_i18n_init ();
4820
4821 2008-05-12  Tor Lillqvist  <tml@novell.com>
4822
4823         Bug 532059 - Leak in win32 clipboard manipulation
4824
4825         * gdk/win32/gdkselection-win32.c
4826         (gdk_win32_selection_add_targets): Plug memory leak. Patch by
4827         Daniel Atallah.
4828
4829 2008-05-11  Yair Hershkovitz  <yairhr@gmail.com>
4830
4831         * gtk/gtkmain.c: call g_i18n_init() in gettext_initialization(). do
4832         gettext_initialization only once.
4833
4834         *  gtk/gtkbuilderparser.c: use glib i18n api. removed dpgettext() as it
4835         duplicates g_dpgettext() and added _g_dpgettext() to wrap g_dpgettext 
4836         with the extended functionality that was in the removed dpgettext().
4837
4838         * gtk/gtkaccellabelc:
4839         * gtk/gtkstock.c:
4840         * gtk/gtkimmulticontext.c:
4841         * gtk/gtkactiongroup.c:
4842         * gtk/gtkintl.h: use glib i18n api.
4843
4844 2008-05-08  Richard Hult  <richard@imendio.com>
4845
4846         * gdk/quartz/gdkgeometry-quartz.c (gdk_window_scroll): Move the
4847         currently invalidated region. Fixes bug #532048, patch by Yevgen
4848         Muntyan.
4849
4850 2008-05-08  Richard Hult  <richard@imendio.com>
4851
4852         * gdk/quartz/gdkeventloop-quartz.c (poll_func): Only set the fake
4853         fd's revents, not the first one. Fixes bug #531056, spotted by
4854         Yevgen Muntyan.
4855
4856 2008-05-07  Tor Lillqvist  <tml@novell.com>
4857
4858         * gtk-zip.sh.in: Add gtk-update-icon-cache.exe and more man pages
4859         to the dev zipfile.
4860
4861 2008-05-05  Matthias Clasen  <mclasen@redhat.com>
4862
4863         Apply a patch by Marek Kasik <mkasik@redhat.com> to display
4864         more printer status information in the print dialog. 
4865
4866         * modules/printbackends/cups/gtkprintbackendcups.c: Translate
4867         printer-state-reasons into suitable messages and icons.
4868
4869         * gtk/stock-icons/16/gtk-print-error.{svg,png}:
4870         * gtk/stock-icons/16/gtk-print-report.{svg,png}:
4871         * gtk/stock-icons/16/gtk-print-warning.{svg,png}:
4872         * gtk/Makefile.am: 
4873         * gtk/gtkiconfactory.c:
4874         * gtk/gtkstock.h: New stock icons to display printer state.
4875
4876 2008-05-07  Michael Natterer  <mitch@imendio.com>
4877
4878         * gdk/gdkinternals.h
4879         * gdk/gdkevents.c
4880         * gdk/directfb/gdkevents-directfb.c
4881         * gdk/quartz/gdkevents-quartz.c
4882         * gdk/win32/gdkevents-win32.c
4883         * gdk/x11/gdkevents-x11.c (_gdk_windowing_event_data_copy):
4884         order parameters src,dest and make src const.
4885
4886 2008-05-06  Richard Hult  <richard@imendio.com>
4887
4888         * gdk/gdkevents.c: (gdk_event_copy), (gdk_event_free):
4889         * gdk/gdkinternals.h: Add private backend data to events, and
4890         handle it when copying/freeing events. Currently only needed in
4891         the quartz backend.
4892
4893         * gdk/directfb/gdkevents-directfb.c:
4894         * gdk/quartz/gdkevents-quartz.c:
4895         * gdk/win32/gdkevents-win32.c:
4896         * gdk/x11/gdkevents-x11.c: (_gdk_windowing_event_data_copy)
4897         (_gdk_windowing_event_data_free): Add stubs for X11, win32 and
4898         directfb. Implement for quartz. Part of fixing bug #473822.
4899
4900 2008-05-05  Richard Hult  <richard@imendio.com>
4901
4902         * gdk/quartz/gdkmain-quartz.c (_gdk_windowing_init): Initalize
4903         framework if there is one.
4904
4905 2008-05-05  Michael Natterer  <mitch@imendio.com>
4906
4907         * gtk/gtkcellrenderercombo.h
4908         * gtk/gtkcellrendererspin.h
4909         * gtk/gtkfilechooserbutton.h: style cleanups for the sake of
4910         consistency.
4911
4912         * gtk/gtkfilechooserdialog.h
4913         * gtk/gtkfilechooserwidget.h
4914         * gtk/gtkscalebutton.h: reorder instance and class structs to be
4915         in canonical order.
4916
4917 2008-05-04  Richard Hult  <richard@imendio.com>
4918
4919         * gdk/quartz/gdkkeys-quartz.c (maybe_update_keymap): Check if
4920         gdk_unicode_to_keyval() worked before using the result. Makes
4921         function keys work, bug #530156. Also add F16 to the function key
4922         map.
4923
4924 2008-05-04  Richard Hult  <richard@imendio.com>
4925
4926         * gdk/quartz/gdkkeys-quartz.c (maybe_update_keymap): Remove stray
4927         semicolon after if statement. Fixes bug #530963, patch from Yevgen
4928         Muntyan.
4929
4930 2008-05-02  Michael Natterer  <mitch@imendio.com>
4931
4932         * gtk/gtk.h: add 15 files that were missing (they all got included
4933         indirectly by including gtk.h, so should have been here in the
4934         first place).
4935
4936 2008-05-02  Michael Natterer  <mitch@imendio.com>
4937
4938         * modules/input/imthai.c: use GETTEXT_PACKAGE instead of "gtk20".
4939
4940 2008-05-01  Richard Hult  <richard@imendio.com>
4941
4942         * gtk/gtkquartz.c (_gtk_quartz_set_selection_data_for_pasteboard):
4943         Prevent crash, fixes bug #530153. Patch from Yevgen Muntyan.
4944
4945 2008-05-01  Matthias Clasen  <mclasen@redhat.com>
4946
4947         * modules/imput/imthai.c: Register the right translation domain.
4948
4949 2008-04-30  Matthias Clasen  <mclasen@redhat.com>
4950
4951         Bug 529386 – Printing options hidden by blacklisted option
4952
4953         * modules/printbackend/cups/gtkprintbackendcups.c
4954         (cups_printer_get_options): Fix the blacklist handling. 
4955         Patch by Marek Kašík.
4956         
4957 2008-04-30  Richard Hult  <richard@imendio.com>
4958
4959         * gdk/quartz/GdkQuartzView.c: Simplify check for zero sized expose
4960         area.
4961
4962 2008-04-30  Richard Hult  <richard@imendio.com>
4963
4964         * gdk/quartz/gdkevents-quartz.c: (_gdk_events_queue): Don't send
4965         nsevents with the gdk lock held, fixes deadlock when doing manual
4966         window resizing with threading enabled.
4967
4968 2008-04-30  Richard Hult  <richard@imendio.com>
4969
4970         * gdk/quartz/gdkevents-quartz.c:
4971         (get_keyboard_modifiers_from_ns_event), (create_key_event): Map
4972         Alt to Alt and Cmd to Meta. This is not only more logical but also
4973         makes it easier to have Mac-like behavior.
4974
4975 2008-04-25  Björn Lindqvist  <bjourne@gmail.com>
4976
4977         * gtk/gtkentry.c: (gtk_entry_expose) Use existing window size when
4978         painting the flat box instead of recalculating it. (#437493,
4979         Ricardo Cruz)
4980
4981 2008-04-25  Michael Emmel  <mike.emmel@gmail.com>
4982
4983         Bug 529841 – incorrect position in directfb 
4984
4985         * gdk/directfb/gdkwindow-directfb.c: fix y = abs_x 
4986
4987 2008-04-25  Johan Dahlin  <jdahlin@async.com.br>
4988
4989         * gtk/gtkwidget.h: include <atk/atk.h> instead of <atk/atkobject.h>
4990
4991 2008-04-25  Michael Natterer  <mitch@imendio.com>
4992
4993         * gtk/gtkprintcontext.h: include <pango/pango.h> instead of
4994         <pango/pango-layout.h>.
4995
4996         * gtk/gtkiconfactory.c
4997         * gtk/gtkimmodule.c
4998         * gtk/gtkmain.c
4999         * gtk/gtkmodules.c
5000         * gtk/queryimmodules.c: remove inclusion of single files from
5001         pango, none of them was actually needed.
5002
5003         * modules/input/gtkimcontextime.c: include <pango/pango.h> instead of
5004         <pango/pango-utils.h>.
5005
5006 2008-04-25  Michael Natterer  <mitch@imendio.com>
5007
5008         * gdk/gdkfont.h: include <pango/pango.h> instead of
5009         <pango/pango-font.h>.
5010
5011 2008-04-25  Michael Natterer  <mitch@imendio.com>
5012
5013         * gtk/gtkmountoperation.h: include <gdk/gdk.h> instead of
5014         <gdk/gdkscreen.h>.
5015
5016 2008-04-21  Michael Natterer  <mitch@imendio.com>
5017
5018         * gtk/gtkselection.c: add tons of g_return_if_fail() instead of
5019         crashing when NULL pointers get passed.
5020
5021 2008-04-18  Michael Natterer  <mitch@imendio.com>
5022
5023         * gtk/gtkenums.h: move a few '{' to their own lines so all enums
5024         here have the same style.
5025
5026 2008-04-18  Michael Natterer  <mitch@imendio.com>
5027
5028         * gtk/gtkicontheme.h
5029         * gtk/gtkrecentmanager.h: include <gdk/gdk.h> instead of
5030         <gdk/gdkscreen.h>.
5031
5032         * gtk/gtkbuilderparser.c
5033         * gtk/gtklinkbutton.c
5034         * gtk/gtkpreview.c
5035         * gtk/gtkrecentchooserdefault.c
5036         * gtk/gtkrecentchoosermenu.c
5037         * modules/input/gtkimcontextthai.c: remove inclusion of single
5038         files from gdk, none of the includes was actually needed.
5039
5040 2008-04-18  Michael Natterer  <mitch@imendio.com>
5041
5042         * gdk/gdk.h: reorder one include so they are all alphabetical.
5043
5044 2008-04-18  Michael Natterer  <mitch@imendio.com>
5045
5046         * modules/printbackends/cups/gtkprintercups.[ch]
5047         (gtk_printer_cups_get_ppd_name): change return value and local
5048         variable to const gchar* to fix warning about discarding const
5049         qualifier.
5050
5051 2008-04-18  Emmanuele Bassi  <ebassi@gnome.org>
5052
5053         * gtk/gtkrecentmanager.c:
5054         (gtk_recent_manager_set_filename): Keep the default storage
5055         file in $HOME, as we don't have a migration code in place yet.
5056
5057 2008-04-18  Michael Natterer  <mitch@imendio.com>
5058
5059         * gtk/gtkrecentmanager.c (gtk_recent_manager_clamp_to_age):
5060         g_strfreev() the uris returned by g_bookmark_file_get_uris().
5061
5062 2008-04-17  Michael Natterer  <mitch@imendio.com>
5063
5064         * gtk/gtkiconfactory.c (get_default_icons): register the
5065         GTK_STOCK_PAGE_SETUP icon.
5066
5067 2008-04-17  Michael Natterer  <mitch@imendio.com>
5068
5069         * gtk/gtktooltips.c (gtk_tooltips_destroy): no need to
5070         g_return_if_fail(tooltips != NULL);
5071
5072 2008-04-16  Tristan Van Berkom <tvb@gnome.org>
5073
5074         * gtk/gtkwindow.c: Chain up in buildable_finish()
5075
5076         * gtk/gtkbuilder.c: _gtk_builder_get_absolute_filename() handle
5077         cases where g_path_get_dirname() returns "."
5078
5079         * docs/reference/gtk/tmpl/gtklabel.sgml, 
5080         docs/reference/gtk/tmpl/gtkbuilder.sgml: Added documentation
5081         for the <attributes> tags on GtkLabel
5082
5083 2008-04-15  Emmanuele Bassi  <ebassi@gnome.org>
5084
5085         * gtk/gtkrecentmanager.c:
5086         (gtk_recent_manager_real_changed): Fix last commit, and
5087         complete the gtk-recent-files-max-age semantics: if the
5088         property is set to 0 then purge the list.
5089
5090 2008-04-15  Emmanuele Bassi  <ebassi@gnome.org>
5091
5092         Bug 488507 – boundless growth of .recently-used.xbel file
5093         slows down applications
5094
5095         * gtk/gtkrecentmanager.c:
5096         (gtk_recent_manager_init),
5097         (gtk_recent_manager_real_changed),
5098         (gtk_recent_manager_set_filename),
5099         (gtk_recent_manager_clamp_to_age): Clamp the recently
5100         used resources list by the age of its items, using
5101         the newly added GtkSettings property.
5102
5103         * gtk/gtksettings.c (gtk_settings_class_init): Add the
5104         gtk-recent-files-max-age property, controlling the
5105         maximum age of the items in the recently used resources
5106         list.
5107
5108 2008-04-15  Emmanuele Bassi  <ebassi@gnome.org>
5109
5110         * gtk/gtkrecentmanager.c:
5111         (gtk_recent_manager_add_item_query_info),
5112         (gtk_recent_manager_add_item): Emit the ::changed signal
5113         at the end of the asynchronous MIME type query.
5114
5115 2008-04-15  Emmanuele Bassi  <ebassi@gnome.org>
5116
5117         Bug 487375 – gtkrecent apps poll ~/.recently-used.xbel
5118         every 5 seconds
5119
5120         * gtk/gtkrecentmanager.c: Use GFileMonitor to check for
5121         changes in the recently used resources storage file, and
5122         drop the timeout-based poll.
5123
5124         * ChangeLog: Fix attribution of the patch of the previous
5125         commit.
5126
5127 2008-04-15  Emmanuele Bassi  <ebassi@gnome.org>
5128
5129         Bug 506062 – gtk_recent_manager_add_item does not detect mime
5130         type on Windows
5131
5132         * configure.in: Depend on gio-2.0
5133
5134         * gtk/gtkrecentmanager.c:
5135         (gtk_recent_manager_add_item_query_info_cb),
5136         (gtk_recent_manager_add_item): Use GIO to (asynchronously)
5137         query the MIME type of the passed URI (based on a patch by
5138         Armin Burgmeier)
5139
5140 2008-04-11  Carlos Garnacho  <carlos@imendio.com>
5141
5142         * gtk/gtkassistant.c (gtk_assistant_set_current_page): Add current
5143         page to visited page list instead of next current page. (#527466,
5144         patch by Marcus Brinkmann)
5145
5146 2008-04-11  Tristan Van Berkom <tvb@gnome.org>
5147
5148         * gtk/gtklabel.c: Added <attributes> / <attribute>
5149         custom tags to parse pango attributes into labels (#527486).
5150
5151         * tests/buildertest.c: Added tests for GtkLabel custom
5152         tag parsing.
5153
5154 2008-04-10  Carlos Garnacho  <carlos@imendio.com>
5155
5156         * gtk/gtknotebook.c (hide_drag_window): Do not call
5157         gtk_widget_set_parent_window(), using widget->window instead of NULL
5158         to unset is the wrong thing, and gtk_widget_unparent() will already 
5159         take care of this (#467698, patch by Sébastien Granjoux)
5160
5161 2008-04-08  Tor Lillqvist  <tml@novell.com>
5162
5163         * demos/gtk-demo/builder.c (quit_activate, about_activate): Mark
5164         these functions with G_MODULE_EXPORT.
5165
5166 2008-04-08  Tomas Bzatek  <tbzatek@redhat.com>
5167
5168         * gtk/gtkfilesystem.c: (gtk_file_info_render_icon),
5169         (gtk_file_system_volume_render_icon):
5170         Fix fallback icon rendering size
5171
5172 2008-04-08  Michael Natterer  <mitch@imendio.com>
5173
5174         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): fix a
5175         touchscreen-mode keynav corner case: when navigating to the parent
5176         menu, make sure we don't close two menus at the same time in case
5177         the deepest open menu has no selectable items.
5178
5179 2008-04-06  Tristan Van Berkom <tvb@gnome.org>
5180
5181         * gtk/gtkwidget.c: Clarified a g_warning message regarding
5182         parsing accelerators from builder files.
5183
5184 2008-04-03  Cody Russell  <bratsche@gnome.org>
5185
5186         * gtk/gtkprintoperation-win32.c: Fix variable declared in the middle
5187         of the block. (#526021, reported by Kazuki IWAMOTO)
5188
5189 2008-04-03  Tor Lillqvist  <tml@novell.com>
5190
5191         Bug 330743 - Up/down spinbuttons won't take zeros and exhibit very
5192         strange behavior
5193
5194         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text) [Win32]: Add
5195         workaround for a specific kind of screwed up locale setting.
5196
5197 2008-04-02  Matthias Clasen  <mclasen@redhat.com>
5198
5199         * gdk/x11/gdkcolor-x11.c: Don't call XFreeColormap on foreign
5200         colormaps.  Found by Daniel Berrange.
5201
5202 2008-04-02  Björn Lindqvist  <bjourne@gmail.com>
5203
5204         * tests/autotestfilechooser.c: Cover
5205         GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER action in tests for current
5206         name. (#346058, Joe Halliwell)
5207
5208 2008-04-02  Federico Mena Quintero  <federico@novell.com>
5209
5210         Fix http://bugzilla.gnome.org/show_bug.cgi?id=492134 - The file
5211         chooser incorrectly substitutes and expands a ~ when you type it
5212         in the filename entry.
5213
5214         * gtk/gtkfilesystemunix.c (expand_tilde): Ensure that empty
5215         basenames result in a slash-terminated pathname.
5216         gtk_file_system_unix_parse() is correct, but it was splitting
5217         "/home/username" into path="/home" and file_part="username", which
5218         is not what the caller wants when the entry has just "~" or
5219         "~username".
5220
5221 2008-04-02  Tor Lillqvist  <tml@novell.com>
5222
5223         * gtk/Makefile.am: Don't bother compiling gtksearchenginebeagle.c
5224         and gtksearchenginetracker.c on Windows.
5225
5226         * gtk/gtksearchengine.c: Don't define HAVE_BEAGLE and HAVE_TRACKER
5227         on Windows.
5228
5229 2008-04-01  Cody Russell  <bratsche@gnome.org>
5230
5231         * configure.in: Bump required Cairo to 1.5.2.
5232
5233         * gtk/gtkprintoperation-win32.c: Add support for using the new
5234         cairo_win32_printing_surface for printing.  Also fixed to use
5235         cairo_surface_show_page(). (#488833 and #521178)
5236
5237 2008-03-31  Cody Russell  <bratsche@gnome.org>
5238
5239         * demos/gtk-demo/printing.c (draw_page): Move down each line in         
5240         units of text_height rather than in units of data->font_size.
5241         (totally awesome catch by Dom Lachowicz)
5242
5243 2008-03-28  Richard Hult  <richard@imendio.com>
5244
5245         * gdk/quartz/gdkevents-quartz.c: (gdk_event_translate),
5246         (_gdk_quartz_events_trigger_crossing_events): Defer the generated
5247         event to the mainloop and don't generate one at all if the
5248         toplevel didn't change. Use the actual window and not the toplevel
5249         as event window. These changes make the generated crossing events
5250         match the X11 behavior and fixes issues with e.g. tooltips,
5251         comboboxes and menus.
5252
5253         * gdk/quartz/GdkQuartzView.c: Don't update the tracking rect if
5254         the view has no window, it will be updated as soon as it's put
5255         inside a window.
5256
5257         * gdk/quartz/gdkwindow-quartz.c:
5258         (_gdk_quartz_window_debug_highlight): Make it possible to track
5259         multiple windows with debug highlighting.
5260         (show_window_internal): Remove workaround for tooltips and popups
5261         that is no longer needed with the above changes.
5262
5263 2008-03-26  Federico Mena Quintero  <federico@novell.com>
5264
5265         * gtk/gtkfilechooserentry.c (commit_completion_and_refresh): New
5266         helper function; factored out from the functions that commit the
5267         current suggested autocompletion and that refresh the entry's paths.
5268         (gtk_file_chooser_entry_activate): Use commit_completion_and_refresh().
5269         (_gtk_file_chooser_entry_get_file_part): Likewise.
5270         (_gtk_file_chooser_entry_get_current_folder): Likewise.  This
5271         makes the entry have the correct paths when *not* using any form
5272         of completion (and makes the file chooser work when clicking the
5273         OK button).
5274
5275 2008-03-25  Richard Hult  <richard@imendio.com>
5276
5277         * gdk/quartz/gdkevents-quartz.c:
5278         (_gdk_quartz_events_trigger_crossing_events): Bail out early if we
5279         can't find a matching window.
5280
5281         * gdk/quartz/gdkwindow-quartz.c: (show_window_internal): Add a
5282         comment, and only trigger an event for non-temp windows, fixes
5283         problems for tooltips caused by the workarounds for the
5284         problematic tracking rect API.
5285
5286 2008-03-25  Richard Hult  <richard@imendio.com>
5287
5288         * gdk/quartz/gdkwindow-quartz.c:
5289         (gdk_window_quartz_process_all_updates): Plug a leak and add a
5290         check that we have a toplevel before accessing it.
5291
5292 2008-03-24  Tor Lillqvist  <tml@novell.com>
5293
5294         Bug 524151 - Dragging of 0-byte files results in an empty filename
5295         on Windows XP and above
5296
5297         * gdk/win32/gdkdnd-win32.c (resolve_link): Check for the file
5298         being empty first. For some reason ISHellLink and IPersistFile
5299         succeeds in interpreting empty files as shortcuts, claiming the
5300         target of the shortcut is an empty path.
5301
5302         Change the function to take the wide character file name that the
5303         caller already has anyway, to avoid a superfluous conversion from
5304         UTF-8 to UTF-16.
5305
5306 2008-03-23  Björn Lindqvist  <bjourne@gmail.com>
5307
5308         * gdk-pixbuf/gdk-pixbuf-io.c (gdk_pixbuf_new_from_xpm_data): Guard
5309         against NULL pointer. (#467051, Gian Mario Tagliaretti)
5310
5311 2008-03-23  Cody Russell  <bratsche@gnome.org>
5312
5313         * gdk/win32/gdkevents-win32.c (show_window_recurse):
5314         Check window state for GDK_WINDOW_STATE_ICONIFIED before doing
5315         ShowWindow (SW_RESTORE).  This fixes a problem where tearing off
5316         menus from a maximized window would force the window to restore
5317         its size. (#518846)
5318
5319 2008-03-23  Johan Dahlin  <johan@gnome.org>
5320
5321         * gtk/gtk-builder-convert:
5322         Properly convert GtkImageMenuItems which use stock labels but don't
5323         have any children.
5324         (#523932, Brian Pepple)
5325         
5326 2008-03-22  Matthew Barnes  <mbarnes@redhat.com>
5327
5328         * gtk/gtkentrycompletion.c (gtk_entry_completion_get_cells):
5329         New function implements GtkCellLayoutClass::get_cells.  (#523787)
5330
5331 2008-03-22  Tor Lillqvist  <tml@novell.com>
5332
5333         Bug 523782 - Leftover call to GDK_THREADS_LEAVE() in gtktoolbar.c
5334
5335         * gtk/gtktoolbar.c (slide_idle_handler): Remove obviously wrong
5336         GDK_THREADS_LEAVE() call. Approved by mclasen.
5337
5338 2008-03-22  Björn Lindqvist  <bjourne@gmail.com>
5339
5340         * gtk/gtkexpander.c (gtk_expander_get_label):
5341         gtk_label_get_label() should be used instead of
5342         gtk_label_get_text(). (#353088, Xan Lopez)
5343
5344 2008-03-21  Tor Lillqvist  <tml@novell.com>
5345
5346         Import the GDI+ gdk-pixbuf loaders for Windows by Dominic
5347         Lachowicz and Alberto Ruiz into the GTK+ tree, from the
5348         gdip-pixbuf-loader module.
5349
5350         * configure.in: Add switch --disable-gdiplus-loaders that disables
5351         building of the GDI+ loaders.
5352
5353         When including loaders in the gdk-pixbuf library, and building
5354         GDI+ loaders, either build in all the GDI+ loaders or none of
5355         them. Use just -DINCLUDE_gdiplus in $INCLUDED_LOADER_DEFINE to
5356         signal building them in.
5357
5358         Add Automake conditionals BUILD_GDIPLUS_LOADERS to indicate
5359         whether the GDI+ loaders should be built and INCLUDE_GDIPLUS to
5360         indicate whether they should be built-in.
5361         
5362         For the rest of the changes, see gdk-pixbuf/ChangeLog.
5363         
5364 2008-03-20  Tor Lillqvist  <tml@novell.com>
5365
5366         * gtk/Makefile.am: Revert accidental change that went in as part
5367         of the commit on 2008-03-18. Do use grep -o. Unbreaks build on
5368         Darwin. On Windows one has to use a newer GNU grep that has -o,
5369         for instance the one from gnuwin32, instead of the oldish one in
5370         MSYS that doesn't have -o.
5371
5372 2008-03-20  Tor Lillqvist  <tml@novell.com>
5373
5374         * tests/testfilechooserbutton.c (chooser_update_preview_cb): Don't
5375         pass NULL for %s to g_message().
5376         (main): Drop unnecessary call to gtk_widget_destroy().
5377
5378 2008-03-20  Tor Lillqvist  <tml@novell.com>
5379
5380         Bug 314084 - GTK+ dialogs should not be placed partially offscreen
5381
5382         * gtk/gtkwindow.c (clamp): New function. Clamps a window position
5383         in one dimension, or centered in case it doesn't fit.
5384         (clamp_window_to_rectangle): Simplify. Call clamp() for x and y
5385         dimensions.
5386
5387 2008-03-18  Tor Lillqvist  <tml@novell.com>
5388
5389         Bug 523225 - modules/input/im*.c: MODULE_ENTRY macros make illegal code
5390         
5391         * modules/input/im*.c: Modify the MODULE_ENTRY macro so the
5392         G_MODULE_ENTRY decoration can be put in a more correct place.
5393
5394 2008-03-18  Sven Neumann  <sven@gimp.org>
5395
5396         * gtk/gtkmountoperation.c (gtk_mount_operation_ask_password): set
5397         alternative button order on the password dialog.
5398
5399 2008-03-18  Tor Lillqvist  <tml@novell.com>
5400
5401         Bug 99192 - Add --with-include-input-modules
5402
5403         * configure.in: Add --with-included-immodules switch. Handled in a
5404         similar way as the --with-included-loaders switch. For each input
5405         method module foo: Collect the list of input modules to be built
5406         into libgtk into INCLUDED_IMMODULE_OBJ. Collect a list of
5407         -DINCLUDE_IM_foo definitions into INCLUDED_IMMODULE_DEFINE.
5408         Define Automake conditionals INCLUDE_IM_FOO.
5409
5410         * modules/input/Makefile.am: For modules to be included in libgtk,
5411         build a static library.
5412         
5413         * modules/input/im*.c: Use MODULE_ENTRY macros much like in
5414         gdk-pixbuf to get unique names for the functions called by libgtk
5415         in the included case. Use G_MODULE_EXPORT in the non-included case
5416         so that we don't unnecessarily export unneeded random global
5417         symbols on Windows.
5418
5419         * gtk/Makefile.am: Build the included modules and link them into libgtk.
5420
5421         * gtk/gtkimmodule.c: Handle the built-in modules. Remove
5422         copy/paste leftover mentions of "themes" in comments.
5423
5424 2008-03-18  Tor Lillqvist  <tml@novell.com>
5425
5426         * tests/Makefile.am: Build testmountoperation only on Unix for now.
5427
5428 2008-03-17  Christian Kellner  <gicmo@gnome.org>
5429
5430         Implement GtkMountOperation, a subclass of GMountOperation
5431         to be used with gio wherever there is the need to ask the
5432         user for credentials or questions while mounting a volume.
5433         This is bug #522245
5434
5435         * gtk/gtkmountoperation.c:
5436         * gtk/gtkmountoperation.h:
5437         Implement GtkMountOperation.
5438         
5439         * gtk/gtk.h: Add gtkmountoperation.h
5440         * gtk/Makefile.am: Add gtkmountoperation.[hc]
5441         * gtk/gtk.symbols: Add symbols of GtkMountOperation.
5442         * tests/testmountoperation.c: Test program for it.
5443         * tests/Makefile.am: Add testmountoperation.
5444
5445 2008-03-17  Emmanuele Bassi  <ebassi@gnome.org>
5446
5447         * gtk/gtkcontainer.c: Properly document
5448         gtk_container_set_focus_child(). (#521739, Andrew Cowie)
5449
5450 2008-03-16  Alberto Ruiz <aruiz@gnome.org>
5451
5452         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: more descriptive
5453         style names for the ComboBox thickness style
5454
5455 2008-03-16  Alberto Ruiz <aruiz@gnome.org>
5456
5457         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc:
5458         * modules/engines/ms-windows/msw_style.c (draw_box) (draw_arrow)
5459         (combo_box_draw_arrow) (setup_msw_rc_style): draw box does more
5460         intelligent separation for the xp theming engine and the classic
5461         theme while drawing the GtkComboBox button.  combobox_draw_arrow
5462         is not used anymore, commented.  The style has been updated to fix
5463         border/thickness glitches in the combobox according to the fixes
5464         commited regarding bug #521442. (bug #461805)
5465
5466 2008-03-16  Alberto Ruiz <aruiz@gnome.org>
5467
5468         * gtk/gtkcombobox.c: (gtk_combo_box_size_allocate) The child is
5469         now aware of both the combobox and frame (if has-frame is set)
5470         thickness and border. (bug #521442)
5471
5472 2008-03-15  Andre Klapper  <a9016009@gmx.de>
5473
5474         * configure.in: Added "si" to ALL_LINGUAS.
5475
5476 2008-03-15  Matthias Clasen  <mclasen@redhat.com>
5477
5478         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
5479         Set window type hint on the search popup.  (#522279, Danny Baumann)
5480
5481 2008-03-15  Matthias Clasen  <mclasen@redhat.com>
5482
5483         * gtk/gtkimcontextsimple.c: Emit preedit_start/_end as
5484         appropriate.  (#521934, Huang Peng)
5485
5486 2008-03-14  Michael Natterer  <mitch@imendio.com>
5487
5488         * gdk/gdkspawn.h
5489         * gtk/gtkbuilderprivate.h
5490         * gtk/gtkfilechoosersettings.c
5491         * gtk/gtksearchenginesimple.c
5492         * gtk/tests/liststore.c
5493         * gtk/tests/treestore.c: remove single-file includes of GLib
5494         headers or replace them by <glib.h> where needed.
5495
5496 2008-03-14  Michael Natterer  <mitch@imendio.com>
5497
5498         * gtk/gtkadjustment.c: coding style cleanup.
5499
5500         (gtk_adjustment_set_property): no need to call g_object_notify()
5501         on the set properties.
5502
5503         Implement GObject::dispatch_properties_changed() and make sure we
5504         emit "changed" when anything but the "value" property changes.
5505
5506 2008-03-14  Tor Lillqvist  <tml@novell.com>
5507
5508         * gdk/win32/gdkevents-win32.c: Drop the support for the
5509         MSH_MOUSEWHEEL message that MSDN says is used only on NT 3.51 and
5510         Win95. Thanks to mitch for noticing this obsolete code.
5511
5512 2008-03-14  Cody Russell  <bratsche@gnome.org>
5513
5514         * examples/scribble-xinput/scribble-xinput.c: Changed
5515         'void int main()' to 'int main()'. (#522211, Liqing Huang)
5516         
5517 2008-03-14  Richard Hult  <richard@imendio.com>
5518
5519         * gdk/quartz/gdkwindow-quartz.c:
5520         (gdk_window_quartz_process_all_updates): Patch from Paul Davis,
5521         only flush the toplevel once per update.
5522
5523 2008-03-13  Federico Mena Quintero  <federico@novell.com>
5524
5525         * gtk/gtkfilechooserentry.c (create_completion_feedback_window):
5526         Set the mouse cursor of the feedback window to invisible, so that
5527         we respect GtkEntry's invisible cursor while typing.
5528
5529 2008-03-13  Federico Mena Quintero  <federico@novell.com>
5530
5531         * gtk/gtkfilechooserentry.c (show_completion_feedback_window): Put
5532         the feedback window at entry_height/2 pixels to the right of the
5533         cursor, for a cheap "M-width / 2" spacing.
5534
5535 2008-03-13  Sven Neumann  <sven@gimp.org>
5536
5537         * gtk/gtkfilechooserdefault.c
5538         * gtk/gtkprintunixdialog.c: set alternative button order for
5539         overwrite confirmation dialogs (bug #522191).
5540
5541 2008-03-13  Sven Neumann  <sven@gimp.org>
5542
5543         * gtk/gtkprintunixdialog.c (add_custom_button_to_dialog)
5544         (overwrite_confirmation_dialog): added some line-breaks for
5545         readability.
5546
5547 2008-03-12  Federico Mena Quintero  <federico@novell.com>
5548
5549         Rework the way completion works in GtkFileChooserEntry.  Fixes
5550         http://bugzilla.gnome.org/attachment.cgi?bugid=314873 - 
5551         Tab completion should work even if the cursor is not at the end of
5552         the entry.
5553
5554         * gtk/gtkfilechooserentry.c: Change the strategy by which we do
5555         completion.
5556
5557         We distinguish between two cases:
5558
5559                 - autocompletion - happens only in the Open modes by
5560                   inserting and selecting the common prefix as you type.
5561
5562                 - explicit completion - happens when you hit Tab.
5563
5564         When some type of completion needs to happen, the entry first
5565         parses its input and sees if it needs to initiate a folder load.
5566         Completion will not happen until the folder finishes loading.
5567
5568         If the folder is already completely loaded, then completion is
5569         performed immediately.  Otherwise, the entry queues a pending
5570         completion and starts loading the new folder (or waits until the
5571         current folder is completely loaded).
5572
5573         Tab completion is allowed to happen even if the cursor is not at
5574         the end of the entry.
5575
5576         There is a new feedback mechanism for explicit completion, so that
5577         you will get an Emacs-like tip whenever there are ambiguities in
5578         completion, no matches, etc.  (This needs to be polished so that
5579         we support RTL entries and all the fancy Pango layout in GtkEntry).
5580
5581         The only remaining thing to fix is the popup suggestion window.
5582         Unfortunately, GtkEntryCompletion does not let us do what we want,
5583         and will need further changes.
5584
5585 2008-03-12  Tor Lillqvist  <tml@novell.com>
5586
5587         Bug 510000 - GtkStatusIcon doesn't reshow after explorer.exe crash
5588
5589         * gtk/gtkstatusicon.c [Win32]: Keep a list of status icons. Check
5590         for the TaskbarCreated message in the window procedure for the
5591         dummy "tray observer" window we create. When we get a
5592         TaskbarCreated message, iterate over the status icons and re-add
5593         them to the task bar, and update them by calling
5594         gtk_status_icon_update_image().
5595
5596         Move some ifdefs around to avoid unused functions.
5597
5598 2008-03-12  Tor Lillqvist  <tml@novell.com>
5599
5600         * config.h.win32.in: Update to match what configure produces.
5601
5602 2008-03-12  Jens Granseuer  <jensgr@gmx.net>
5603
5604         * modules/printbackends/cups/gtkprintbackendcups.c:
5605         (cups_printer_prepare_for_print): Don't define variables in the
5606         middle of a block. (#522067)
5607
5608 2008-03-12  Matthias Clasen  <mclasen@redhat.com>
5609
5610         * gtk/gtkprintunixdialog.c: Add an overwrite confirmation 
5611         dialog for print-to-file.  (#474302, Marek Kašík)
5612
5613 2008-03-12  Matthias Clasen  <mclasen@redhat.com>
5614
5615         * modules/printbackends/cups/gtkprintbackendcups.c: Fix a crash
5616         (#469210, Wouter Bolsterlee)
5617
5618 2008-03-12  Matthias Clasen  <mclasen@redhat.com>
5619
5620         * gtk/gtkpagesetup.c (gtk_page_setup_copy): Don't leak 
5621         paper_size here.  (#488820, Morten Welinder)
5622
5623 2008-03-12  Michael Natterer  <mitch@imendio.com>
5624
5625         * acconfig.h: remove this deprecated file.
5626
5627         * configure.in: added comments to all instances of AC_DEFINE() so
5628         config.h can be completely generated from configure.in.
5629
5630 2008-03-12  Michael Natterer  <mitch@imendio.com>
5631
5632         * modules/printbackends/cups/gtkprintbackendcups.c: include
5633         <glib/gstdio.h> for g_fopen().
5634
5635 2008-03-11  Matthias Clasen  <mclasen@redhat.com>
5636
5637         * modules/printbackends/cups/gtkprintbackendcups.c: Use
5638         g_ascii_formatd when formatting custom paper sizes, since
5639         cups doesn't handle , as decimal separator.  (#521548)
5640
5641 2008-03-11  Tor Lillqvist  <tml@novell.com>
5642
5643         Bug 469868 - Filenames with colon ":" are not saved correctly
5644
5645         * gtk/gtkfilechooserentry.c (insert_text_callback)
5646         (delete_text_callback) [Win32]: New functions to make sure that
5647         colons used otherwise than as a separator after a drive letter, or
5648         characters that are always illegal in file names, are rejected on
5649         input. This means that the GTK+ file chooser can't be used to
5650         input full names of alternate data streams, but oh well. There are
5651         still more checks that could be done on the file names, see the
5652         bug report. But this will do for now.
5653         (_gtk_file_chooser_entry_init) [Win32]: Connect above functions.
5654
5655 2008-03-11  Jordi Mallach  <jordi@sindominio.net>
5656
5657         * configure.in (ALL_LINGUAS): Add ca@valencia (Valencian-Catalan).
5658
5659 2008-03-11  Michael Natterer  <mitch@imendio.com>
5660
5661         * gdk/linux-fb/*: removed linux-fb backend files.
5662
5663         * acconfig.h
5664         * config.h.win32.in
5665         * docs/README.linux-fb
5666         * gtk/Makefile.am: remove remaining traces of linux-fb.
5667
5668         * gtk/gtkwindow-decorate.c: same here. There is some code that
5669         calls into linux-fb to set window move/resize callbacks. I put it
5670         in #if 0 as a reminder because we did use decorated windows with
5671         the DirectFB backend and it did work, so I don't really know why
5672         this code is needed or how it could work with DirectFB back then.
5673         The file does actually compile now if DECORATE_WINDOWS is defined,
5674         but I didn't test with DirectFB to check if it does anything.
5675
5676 2008-03-11  Alberto Ruiz  <aruiz@gnome.org>
5677
5678         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate):
5679         Take thickness into account in the size allocation of the child widgets in
5680         list mode.
5681         Fixes #521442
5682
5683 2008-03-11  Richard Hult  <richard@imendio.com>
5684
5685         * gdk/quartz/gdkwindow-quartz.c: Implement gdk_window_reparent.
5686
5687 2008-03-10  Tor Lillqvist  <tml@novell.com>
5688
5689         * tests/teststatusicon.c (do_exit, popup_menu): Add the
5690         possibility to test what happens if the process just calls exit()
5691         without any orderly cleanup of GTK+.
5692
5693 2008-03-10  Tor Lillqvist  <tml@novell.com>
5694
5695         * gtk/gtktrayicon-win32.c: Remove from SVN, finally.
5696
5697 2008-03-10  Tor Lillqvist  <tml@novell.com>
5698
5699         Bug 520286 - Non-deletable window has no minimize / maximize buttons
5700
5701         * gdk/win32/gdkmain-win32.c (_gdk_win32_window_style_to_string):
5702         New debugging output function that decodes a set of WS_* bits.
5703
5704         * gdk/win32/gdkprivate-win32.h: Declare it.
5705
5706         * gdk/win32/gdkwindow-win32.c (update_single_system_menu_entry):
5707         New function that enables or disables one menu entry in the system
5708         menu of a top-level window. (The corresponding decoration will
5709         then also be enabled or disabled (grayed).)
5710
5711         (update_style_bits): Do as the comment says and don't try to
5712         update the window style based on the GdkWMFunctions set for the
5713         window.
5714                    
5715         (update_system_menu): New function that enables or disables the
5716         system menu entries based on a window's stored set of
5717         GdkWMFunctions.
5718
5719         (gdk_window_set_functions): Call update_system_menu() instead of
5720         update_style_bits().
5721
5722 2008-03-10  Emmanuele Bassi  <ebassi@gnome.org>
5723
5724         * README.in: Reword the 2.14 release notes entry about the
5725         deprecation of the gtkitemfactory.h header, and fix typos
5726         and grammar.
5727
5728 2008-03-08  Alberto Ruiz  <aruiz@gnome.org>
5729
5730         * modules/engines/ms-windows/msw_style.c (draw_shadow):
5731         Do not draw frame if parent if combobox.
5732         (draw_box):
5733         Uses scrollbar width system metrics for combobox button.
5734         Fixes #461805 for XP theme engine.
5735
5736 2008-03-07  Johan Dahlin  <johan@gnome.org>
5737
5738         * gtk/gtkbuilder.c:
5739         * gtk/gtkbuilderparser.c:
5740         * gtk/gtkbuilderprivate.h:
5741         * gtk/gtkiconfactory.c:
5742         * tests/buildertest.c:
5743         - Treat enums like enums and not values
5744         - Avoid invalid free, in case of more than two sources
5745         - Add better error messages
5746         - Add much improved tests
5747         (#520979, Christian Persch)
5748
5749 2008-03-07  Carlos Garnacho  <carlos@imendio.com>
5750
5751         * gtk/gtkiconfactory.c (gtk_icon_factory_buildable_custom_tag_end):
5752         Fix build.
5753
5754 2008-03-06  Federico Mena Quintero  <federico@novell.com>
5755
5756         Fix http://bugzilla.gnome.org/show_bug.cgi?id=505857 -
5757         GtkFileChooserDialog should set a default response button if the
5758         app doesn't set it.  Based on a patch by Chris Wang <chris.wang@sun.com>.
5759
5760         * gtk/gtkfilechooserdialog.c (is_stock_accept_response_id): New
5761         function, refactor from where there was duplicated code.
5762         (gtk_file_chooser_dialog_map): Look at the buttons in our
5763         action_area.  If the response ID for a button is one of the stock
5764         ones, make it the default response button.
5765
5766 2008-03-06  Johan Dahlin  <jdahlin@async.com.br>
5767
5768         * docs/reference/gtk/tmpl/gtkiconfactory.sgml:
5769         * gtk/gtkbuilder.c:
5770         * gtk/gtkbuilderprivate.h:
5771         * gtk/gtkiconfactory.c:
5772         * tests/buildertest.c:
5773         Implement GtkBuildable on GtkIconFactory, to make
5774         it possible to register custom stock icons.
5775         Fixes #517066
5776
5777 2008-03-06  Johan Dahlin  <johan@gnome.org>
5778
5779         Make gtk-doc happy:
5780         
5781         * gtk/gtkstyle.c: npoints->n_points.
5782         * gtk/gtktestutils.h: widget->spinner
5783         * gtk/gtktestutils.c: argc->argcp, argv->argvp
5784
5785 2008-03-06  William Lachance <wrlach@gmail.com>
5786
5787         * gtk/gtkfilechooserdefault.c: Oops, forgot to make the raw "%H:%M" 
5788         string localizable (as it should be). 
5789
5790 2008-03-06  William Lachance <wrlach@gmail.com>
5791
5792         * gtk/gtkfilechooserdefault.c: Don't print "Today at" in front of
5793         the time for today's date. It's redudant. (see bug #410517).
5794
5795 2008-03-06  Xan Lopez  <xan@gnome.org>
5796
5797         * gtk/gtkfixed.c: fix typo in documentation.
5798
5799 2008-03-06  Johan Dahlin  <jdahlin@async.com.br>
5800
5801         * gtk/gtkitemfactory.h:
5802         * gtk/gtktypeutils.h:
5803         Move GtkTranslateFunc to gtktypeutils.h so we can completely
5804         deprecate gtkitemfactory.h. 
5805
5806         * gtk/gtkactiongroup.h:
5807         * gtk/gtkstock.h:
5808         Do not include gtkitemfactory.h directly, instead include gtktypeutils.h
5809
5810         * README.in: 
5811         Add a note describing this slight incompatible change
5812         
5813 2008-03-06  Johan Dahlin  <johan@gnome.org>
5814
5815         * gtk/gtkpreview.h: Avoid double-deprecation.
5816
5817 2008-03-06  Michael Natterer  <mitch@imendio.com>
5818
5819         * gtk/gtk.h
5820         * gtk/Makefile.am: move the remaining deprecated widgets to the
5821         separate sections and replaced spaces by tabs in Makefile.am
5822
5823 2008-03-05  Johan Dahlin  <johan@gnome.org>
5824
5825         * configure.in: Add --disable-cups option.
5826         (#513826, Alberto Ruiz)
5827
5828         * gtk/gtk.h: 
5829         * gtk/Makefile.am:
5830         Separate broken and deprecated sources and headers into different sections
5831
5832         * tests/buildertest.c (test_list_store): Restore accidentally broken test.
5833
5834 2008-03-05  Kristian Rietveld  <kris@imendio.com>
5835
5836         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted):
5837         short-circuit in case an empty root level would be build (and thus
5838         directly destroyed) if no virtual root has been set.
5839
5840 2008-03-04  Matthias Clasen  <mclasen@redhat.com>
5841
5842         * modules/printbackends/cups/gtkprintbackendcups.c: 
5843         Honor cups user default options from ~/.cups/lpoptions
5844         (#469210, Stijn Hoop)
5845
5846 2008-03-04  Michael Natterer  <mitch@imendio.com>
5847
5848         * gtk/gtkcellview.c
5849         * gtk/gtkcolorbutton.c
5850         * gtk/gtkentrycompletion.c
5851         * gtk/gtkfontbutton.c
5852         * gtk/gtkiconview.c
5853         * gtk/gtkobject.c
5854         * gtk/gtkpaned.c
5855         * gtk/gtkpreview.c: don't include "gtksignal.h".
5856
5857         * gtk/gtkfilefilter.c
5858         * gtk/gtkrecentchoosermenu.c
5859         * gtk/gtkrecentfilter.c
5860         * gtk/gtktext.c: don't include "gtkobject.h".
5861
5862 2008-03-04  Simos Xenitellis  <simos@gnome.org>
5863
5864         Patch from http://bugzilla.gnome.org/show_bug.cgi?id=321896
5865         - Synch gdkkeysyms.h/gtkimcontextsimple.c with X.org 6.9/7.0
5866         
5867         * gdk/gdkkeysyms.h: Updated file from upstream (using script from 
5868         same directory).
5869         
5870         * gtk/gtkimcontextsimpleseqs.h (gtk_compose_seqs_compact[]): New 
5871         file, contains compose sequences that used to exist in 
5872         gtk/gtkimcontextsimple.c
5873
5874         * gtk/compose-parse.py: Script to generate compose 
5875         sequences from upstream (Xorg).
5876
5877         * gtk/gtkimcontextsimple.c (compare_seq_index, check_compact_table, 
5878         check_algorithmically): New functions. First two search in
5879         gtk_compose_seqs_compact[] for matching compose sequence, third
5880         tries NFC normalisation on incoming compose sequence.
5881         (gtk_im_context_simple_filter_keypress): 
5882         Adds searching with check_compact_table(), check_algorithmically().
5883
5884 2008-03-03  Carlos Garnacho  <carlos@imendio.com>
5885
5886         Fix http://bugzilla.gnome.org/show_bug.cgi?id=417389 - Make the
5887         scrollwheel work in GtkPathBar.
5888
5889         * gtk/gtkpathbar.h (struct _GtkPathBar): New field event_window.
5890
5891         * gtk/gtkpathbar.c (gtk_path_bar_realize): New function.  Create
5892         an input-only window, event_window, which we'll use to capture
5893         scroll events.
5894         (gtk_path_bar_map): Show the event_window under the rest of the
5895         windows, so it will be a catch-all for unhandled events.
5896
5897 2008-03-03  Sven Neumann  <sven@gimp.org>
5898
5899         * gtk/gtkfilechooserbutton.c (G_DEFINE_TYPE_WITH_CODE): fixed a
5900         typo in the documentation of the GtkFileChooserButtons::file-set
5901         signal (see bug #353196).
5902
5903 2008-03-03  Tor Lillqvist  <tml@novell.com>
5904
5905         * gtk-zip.sh.in: Add gail bits. Simplify check for message catalog
5906         location.
5907
5908 2008-03-02  Johan Dahlin  <johan@gnome.org>
5909
5910         * gtk/gtkiconview.c (gtk_icon_view_paint_item): 
5911         Remove left-over focus_pad variable.
5912         (#490892, Claudio Saavedra)
5913
5914         * docs/tutorial/gtk-tut.sgml: Remove an extra space and swap word order
5915         (#518166, Matt Kraai)
5916
5917 2008-03-02  Johan Dahlin  <johan@gnome.org>
5918
5919         * docs/tutorial/gtk-tut.sgml: Add a missing space
5920         (#517954, Matt Kraai)
5921
5922 2008-03-03  Tor Lillqvist  <tml@novell.com>
5923
5924         * modules/engines/ms-windows/msw_style.c (draw_box): Check that
5925         the widget is a GtkButton before casting.
5926
5927 2008-03-02  Johan Dahlin  <johan@gnome.org>
5928
5929         * configure.in: Compare using = instead of ==, which is portable.
5930         (#490787, Thomas Klausner)
5931
5932 2008-03-02  Johan Dahlin  <johan@gnome.org>
5933
5934         * tests/Makefile.am (noinst_PROGRAMS): Remove autotestkeywords, it's added later,
5935         fixes non-C++ build.
5936         (#496032, Nelson Benitez)
5937
5938 2008-02-29  Johan Dahlin  <johan@gnome.org>
5939
5940         * demos/gtk-demo/demo.ui:
5941         * gtk/gtkbuilderparser.c:
5942         * gtk/gtkbuilderprivate.h:
5943         * gtk/gtkliststore.c:
5944         * tests/buildertest.c:
5945         Add translatable/context and comment attributes on
5946         <col> tags under a GtkListStore. Refactor parts of the
5947         translation api and make it available inside gtk+ itself.
5948         Update tests and example.
5949         Fixes a part of #518642
5950
5951 2008-02-29  Johan Dahlin  <johan@gnome.org>
5952
5953         * gtk/gtkbuilder.c:
5954         Add missing g_return_val_if_fail checks for public API.
5955
5956         * gtk/gtkbuilderparser.c:
5957         * gtk/gtkbuilderprivate.h:
5958         Do not use g_error for a few more errors, instead set
5959         the GError sent in through add_from_file/add_from_string.
5960         * tests/buildertest.c:
5961         Add a couple of new parsing tests.
5962         (#519199, Pavel Syomin)
5963
5964 2008-02-29  Federico Mena Quintero  <federico@novell.com>
5965
5966         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): When
5967         refreshing an existing folder (i.e. when we are about to reload
5968         its file list), turn off the folder's is_finished_loading flag.
5969         Otherwise callers which do ::is_finished_loading() followed by
5970         ::list_children() will get nothing.
5971
5972 2008-02-29  Cody Russell  <bratsche@gnome.org>
5973
5974         * docs/tutorial/gtk-tut.sgml: Fix tutorial documentation to
5975         say 'gtk_main_quit()' instead of 'gtk_quit()'. (#517908, Matt Kraai)
5976
5977 2008-02-28  Matthias Clasen  <mclasen@redhat.com>
5978
5979         * gtk/gtkcalendar.h: Remove trailing comma from enum to
5980         make the compiler happy.  (#517295, Sylvain Pasche)
5981
5982 2008-02-27  Michael Natterer  <mitch@imendio.com>
5983
5984         * gtk/gtkmenushell.c
5985         * gtk/gtktable.c
5986         * gtk/gtktext.c
5987         * gtk/gtktipsquery.c
5988         * gtk/gtktoolbar.c
5989         * gtk/gtktreeitem.c
5990         * gtk/gtktreeview.c
5991         * gtk/gtkviewport.c
5992         * gtk/gtkwin32embedwidget.c: remove g_return_if_fail() from
5993         private functions and virtual function implementations.
5994
5995 2008-02-27  Richard Hult  <richard@imendio.com>
5996
5997         * gdk/quartz/GdkQuartzView.c:
5998         * gdk/quartz/GdkQuartzView.h:
5999         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_set_decorations):
6000         Fix performance regression for borderless transparent windows
6001         with shadow.
6002
6003 2008-02-27  Emmanuele Bassi  <ebassi@gnome.org>
6004
6005         * tests/testgtk.c: Revert back to r19454.
6006
6007 2008-02-27  Sven Neumann  <sven@gimp.org>
6008
6009         * gtk/Makefile.am (GTK_PRINT_PREVIEW_COMMAND): when building the
6010         Quartz backend, use a native Mac OS X application for the print
6011         preview (bug #518624).
6012
6013 2008-02-26  Michael Natterer  <mitch@imendio.com>
6014
6015         * gtk/gtktextbufferserialize.c (parse_info_free): don't g_free()
6016         the members of info->tag_stack since they are a) gobjects and b)
6017         not even owned by us, ugh... Fixes crash when deserializing fails.
6018
6019 2008-02-26  Sven Neumann  <sven@gimp.org>
6020
6021         * docs/tools/shooter.c (find_toplevel_window)
6022         * docs/tools/widgets.c (find_toplevel_window): fixed signedness of
6023         argument passed to XQueryTree().
6024
6025 2008-02-25  Matthias Clasen  <mclasen@redhat.com>
6026
6027         * gtk/gtksearchenginebeagle.c: Look for libbeagle.so.1 and
6028         don't use beagle_query_add_hit_type.
6029
6030 2008-02-25  Richard Hult  <richard@imendio.com>
6031
6032         * gdk/quartz/gdkevents-quartz.c
6033         (_gdk_quartz_events_trigger_crossing_events): Fix build on tiger.
6034
6035 2008-02-24  Richard Hult  <richard@imendio.com>
6036
6037         * gdk/quartz/GdkQuartzWindow.c: Prevent hidden windows from being
6038         shown without gdk's control when clicking the dock icon.
6039
6040 2008-02-24  Richard Hult  <richard@imendio.com>
6041
6042         * gdk/quartz/gdkprivate-quartz.h:
6043         * gdk/quartz/gdkeventloop-quartz.c: (got_fd_activity), (poll_func):
6044         Use the subtype field for the custom event that is used to wake up
6045         the mainloop so we can have other custom event types.
6046
6047         * gdk/quartz/gdkevents-quartz.c:
6048         (_gdk_quartz_events_trigger_crossing_events):
6049         * gdk/quartz/gdkwindow-quartz.c: (show_window_internal): Create
6050         crossing events after showing a window if necessary, to work
6051         around problems with the tracking rect API.
6052
6053 2008-02-22  Dominic Lachowicz  <domlachowicz@gmail.com>
6054
6055         * demos/gtk-demo/printing.c (do_printing): gtk-demo printing gives 
6056         wrong results on win32 because it doesn't set the printing units, 
6057         which affect the transformation of the cairo context 
6058         (#347125, Erik van Pienbroek)
6059
6060 2008-02-22  Tor Lillqvist  <tml@novell.com>
6061
6062         * tests/pixbuf-init.c: Add file missing from SVN, from the tarball.
6063
6064 2008-02-22  Dominic Lachowicz  <domlachowicz@gmail.com>
6065
6066         * gdk-pixbuf/queryloaders.c (loader_sanity_check): It's perfectly
6067         acceptable for a module to only support the save_to_callback()
6068         method if it marks itself as WRITABLE
6069
6070 2008-02-16  Matthias Clasen  <mclasen@redhat.com>
6071         
6072         * configure.in: Bump version
6073
6074 2008-02-16  Matthias Clasen  <mclasen@redhat.com>
6075
6076         * === Released 2.13.0 ===
6077
6078         * Makefile.decl: Start Xvfb at depth 16 so cairo doesn't choke.
6079
6080 2008-02-21  Tor Lillqvist  <tml@novell.com>
6081
6082         * gtk/gtkfilechooserdefault.c (list_mtime_data_func) [Win32]: Must
6083         pass the format string to strftime in the C library's locale's
6084         charset, not the system's. Correspondingly, the return value from
6085         strftime() is in the C library's locale's charset. (#509885)
6086
6087 2008-02-20  Richard Hult  <richard@imendio.com>
6088
6089         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_set_decorations): Set
6090         the right window level and shadow after recreating the window.
6091
6092         * gdk/quartz/GdkQuartzView.c: (drawRect): Invalidate the shadow if
6093         necessary after drawing (bug #517338).
6094
6095 2008-02-20  Marc-Andre Lureau  <marcandre.lureau@gmail.com>
6096
6097         * gtk/gtkbuilder.c (_gtk_builder_enum_from_string): fix missing
6098         call to g_type_class_unref in case of error. (#517563)
6099
6100 2008-02-18  Sven Neumann  <sven@gimp.org>
6101
6102         * gtk/Makefile.am (STOCK_ICONS)
6103         * gtk/stock-icons/16/gtk-page-setup.png
6104         * gtk/stock-icons/24/gtk-page-setup.png: added page-setup icons
6105         taken from GNOME icon theme.
6106
6107         * gtk/gtkstock.[ch]: added GTK_STOCK_PAGE_SETUP. Closes bug #514410.
6108
6109 2008-02-18  Runa Bhattacharjee <runabh@gmail.com>
6110
6111         * configure.in: Added Kannada (kn) to ALL_LINGUAS
6112
6113 2008-02-17  Johan Dahlin  <johan@gnome.org>
6114
6115         * gtk/gtk-builder-convert (GtkBuilderConverter._add_action_from_menuitem): 
6116         When converting a stock item based on the label, remove the label property.
6117
6118 2008-02-17  Richard Hult  <richard@imendio.com>
6119
6120         * gdk/quartz/GdkQuartzWindow.c: (showAndMakeKey): Update the
6121         position after showing the window since the window manager might
6122         not place it where we requested in the first places.
6123
6124 2008-02-17  Richard Hult  <richard@imendio.com>
6125
6126         * gdk/quartz/gdkwindow-quartz.c: (show_window_internal),
6127         (_gdk_quartz_window_detach_from_parent),
6128         (_gdk_quartz_window_attach_to_parent), (gdk_window_focus): Clear
6129         the toplevel ordering list in all places where the order is
6130         potentially changed. Fixes mouse focus issues for windows with
6131         a transient parent set.
6132
6133 2008-02-17  Richard Hult  <richard@imendio.com>
6134
6135         * gdk/quartz/gdkevents-quartz.c
6136         (_gdk_quartz_events_update_mouse_window): Highlight the mouse
6137         window when event debugging is enabled.
6138
6139 2008-02-16  Richard Hult  <richard@imendio.com>
6140
6141         * gdk/quartz/gdkevents-quartz.c (create_scroll_event): Add state
6142         to the scroll event (bug #516757, Paul Davis).
6143
6144 2008-02-16  Matthias Clasen  <mclasen@redhat.com>
6145
6146         * NEWS: Updates
6147
6148 2008-02-16  Matthias Clasen  <mclasen@redhat.com>
6149
6150         * gtk/gtklinkbutton.c: Show the URI in a tooltip.  (#505480,
6151         Teppo Turtiainen)
6152
6153 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6154
6155         * gdk/Makefile.am: Don't install private headers. (#463510)
6156
6157         * gdk/gdkinternal.h: Include gdkmedialib.h here, not in
6158         the installed header gdkprivate.h.
6159
6160 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6161
6162         * gtk/gtknotebook.c (gtk_notebook_stop_reorder): Prevent
6163         a crash with hidden, reorderable tabs.  (#513230, 
6164         Mike Massonnet, patch by Carlos Garnacho)
6165
6166 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6167
6168         * gtk/gtkuimanager.c (gtk_ui_manager_insert_action_group):
6169         Warn on duplicate action group names.  (#501746, Christian
6170         Persch)
6171
6172 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6173
6174         * gtk/Makefile.am:
6175         * modules/other/gail/tests/Makefile.am:
6176         * modules/other/gail/libgail-util/Makefile.am:
6177         * modules/other/gail/Makefile.am: Fix builddir!=srcdir
6178         builds.  (#516254,  Yevgen Muntyan)
6179
6180 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6181
6182         * gtk/gtkentry.c:
6183         * gtk/gtkfilesel.c:
6184         * gtk/gtklabel.c:
6185         * gtk/gtkpathbar.c: Use gtk_drag_*_add_{text,uri}_targets 
6186         instead of hardcoded target tables.  (#516092, Christian Persch)
6187
6188 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6189
6190         * gtk/gtkselection.c (gtk_target_list_add_text_targets): Don't
6191         add the same target atom twice.  (#516087, Christian Persch)
6192
6193 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6194
6195         * tests/testfilechooser.c: Add a --backend option.
6196         (#516073, Christian Persch)
6197
6198 2008-02-16  Richard Hult  <richard@imendio.com>
6199
6200         * gdk/quartz/gdkprivate-quartz.h:
6201         * gdk/quartz/gdkwindow-quartz.c: Add debugging code to highlight a
6202         gdkwindow.
6203
6204 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6205
6206         * configure.in: Go back to 2.13.0 as version for now,
6207         as there was no consensus to do the jump.
6208
6209         * many other places: Update Since: tags.
6210
6211 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6212
6213         * gtk/gtk.symbols: Add gtk_tool_shell_get_type
6214
6215         * gtk/gtktestutils.c: Don't generate unnecessary PLT entries
6216
6217 2008-02-15  Richard Hult  <richard@imendio.com>
6218
6219         * gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame
6220         instead of bounds when resizing windows.
6221
6222 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
6223
6224         * gdk/x11/gdkkeys-x11.c:
6225         * gdk/x11/gdkcolor-x11.c:
6226         * gdk/gdkpolyreg-generic.c: Fix a small doc issues.
6227
6228 2008-02-15  Matthias Clasen <mclasen@redhat.com>
6229
6230         * gdk/x11/gdktestutils-x11.c:
6231         * gdk/x11/gdkscreen-x11.c: Documentation fixes.
6232
6233 2008-02-15  Tor Lillqvist  <tml@novell.com>
6234
6235         * gtk/gtkfilesystemwin32.c (get_viewable_logical_drives): Don't
6236         leak Registry key handles. (#516578)
6237
6238 2008-02-14  Richard Hult  <richard@imendio.com>
6239
6240         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_focus): Using
6241         makeKeyWindow unfortunately doesn't work in all cases, we must use
6242         makeKeyAndOrderFront.
6243
6244 2008-02-14  Richard Hult  <richard@imendio.com>
6245
6246         * gdk/quartz/gdkwindow-quartz.c: (get_fullscreen_geometry),
6247         (gdk_window_hide), (gdk_window_fullscreen),
6248         (gdk_window_unfullscreen): Make sure we leave fullscreen mode if
6249         the window is hidden.
6250
6251 2008-02-14  Richard Hult  <richard@imendio.com>
6252
6253         * gdk/quartz/GdkQuartzWindow.c: Set frame, not bounds when
6254         resizing to be consistent and to avoid introducing an internal
6255         transform in the view.
6256
6257 2008-02-14  Richard Hult  <richard@imendio.com>
6258
6259         * gdk/quartz/gdkdisplay-quartz.c: (gdk_display_open): Coding style
6260         fix.
6261
6262 2008-02-14  Johan Dahlin  <johan@gnome.org>
6263
6264         * gdk/gdktestutils.h
6265         * gtk/gtktestutils.h: Remove ; trailing G_BEGIN/END_DECLS
6266
6267 2008-02-13  Richard Hult  <richard@imendio.com>
6268
6269         * gtk/gtkclipboard-quartz.c: (gtk_clipboard_wait_for_contents):
6270         Remove unused variables.
6271         (gtk_clipboard_set_contents),
6272         (gtk_clipboard_get_owner), (clipboard_unset),
6273         (gtk_clipboard_request_targets): Notify the previous clipboard
6274         owner when the owner changes. Fixes bug #493406.
6275         
6276 2008-02-13  Richard Hult  <richard@imendio.com>
6277
6278         * gdk/quartz/gdkcolor-quartz.c: (gdk_colormap_alloc_colors): Fix
6279         the return value (return number of colors that failed), and handle
6280         RGBA colormap.
6281         (gdk_colormap_free_colors): Fix typo in comment.
6282
6283 2008-02-13  Kristian Rietveld  <kris@imendio.com>
6284
6285         * gtk/gtktreeview.c (gtk_tree_view_stop_rubber_band): only
6286         queue a redraw if the rubber banding has actually been active.
6287
6288 2008-02-12  Matthias Clasen  <mclasne@redhat.com>
6289
6290         * gtk/gtkpapersize.c:
6291         * gtk/gtkprintoperation.c:
6292         * gtk/gtkvolumebutton.c:
6293         * gtk/gtkbulderparser.c: Fix some i18n errors. Pointed
6294         out by Behdad Esfahbod.
6295
6296 2008-02-12  Federico Mena Quintero  <federico@novell.com>
6297
6298         Merged from gtk-2-12:
6299
6300         Don't focus the file list when shortcuts get activated.  This
6301         removes a lot of ambiguity in when the file selection should
6302         change, and makes the overall code flow simpler.
6303
6304         This fixes http://bugzilla.gnome.org/show_bug.cgi?id=419737 -
6305         file/save dialog clears the filename entry when changing
6306         directories.
6307
6308         Also fixes http://bugzilla.gnome.org/show_bug.cgi?id=499940 -
6309         focus should not go to the file list when a shortcut is activated.
6310
6311         * gtk/gtkfilechooserdefault.c
6312         (shortcuts_activate_volume_mount_cb): Don't focus the file list
6313         (shortcuts_activate_get_info_cb): Likewise.
6314
6315         * gtk/gtkfilechooserdefault.c (switch_to_shortcut): Don't focus
6316         the file list (this was the last place where we would focus the
6317         file list explicitly).  If you are in the location entry, for
6318         example, you don't want Alt-Home to take you to the file list; you
6319         just want the current folder to change.  Thanks to Olle Bergkvist
6320         <olle.bergkvist@yahoo.se> for pointing this out in
6321         http://bugzilla.gnome.org/show_bug.cgi?id=419737#c51.
6322         (focus_browse_tree_view_if_possible): Removed.
6323
6324 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6325
6326         Skip exensions when selecting filenames in the save-as dialog.
6327         (#362516, Carlos Garnacho)
6328
6329         * gtk/gtkfilechooserentry.h:
6330         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_select_filename):
6331         New function to skip the extension part when selecting a filename.
6332         (_gtk_file_chooser_entry_set_base_folder): Use it here.
6333
6334         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_entry_grab_focus):
6335         ...and here.
6336
6337 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6338
6339         * gtk/gtkiconview.c: Fix state change reporting for 
6340         accessibility.  (#499835, Rich Burridge, patch by LiYan Zhang)
6341
6342 2008-02-12  Emmanuele Bassi  <ebassi@gnome.org>
6343
6344         * gtk/gtkrecentchooser.c:
6345         (gtk_recent_chooser_class_init): Set the default value of the
6346         :show-not-found property to TRUE, as every implementation sets
6347         it to TRUE already.
6348
6349         * gtk/gtkrecentchooserdefault.c:
6350         (_gtk_recent_chooser_default_init): Sync show_tips to the
6351         default value of the :show-tips property.
6352
6353 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6354
6355         * gtk/gtkclipboard-quartz.c:
6356         * gtkquartz.c:
6357         * gtkselection.c: Use GSlice for GtkSelectionData.  (#515060,
6358         Christian Persch)
6359
6360 2008-02-12  Kristian Rietveld  <kris@imendio.com>
6361
6362         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row),
6363         (gtk_tree_view_real_toggle_cursor_row): guard against people
6364         deleting the row in question in the selection-changed callback.
6365         (#514621, Andreas Koehler).
6366
6367 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6368
6369         * gtk/*.c: Unify the handling of various "Enter" keysyms
6370         all over the place.  (#515047, Christian Persch)
6371
6372 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6373
6374         * gtk/gtkfilesystemmodel.c:
6375         * gtk/gtkprinter.c:
6376         * gtk/gtkwidget.c: Use g_value_set_static_string() where 
6377         appropriate.  (#515042, Christian Persch)
6378
6379 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6380
6381         * tests/prop-editor.c: Fix a memory leak (#515039, Christian Persch)
6382         
6383 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6384
6385         * tests/testmerge.c: Fix a memory leak (#515038, Christian Persch)
6386
6387 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
6388
6389         * gtk/gtkfilechooserdefault.c (recent_model_sort_drag_data_get):
6390         (recent_model_sort_drag_data_get):
6391         (search_model_sort_drag_data_get):
6392         * gtk/gtkfilesystemmodel.c (drag_source_drag_data_get):
6393         * gtk/gtkpathbar.c (button_drag_data_get_cb):
6394         Use gtk_selection_data_set_uris() instead of doing it
6395         by hand.  (#514890, Christian Persch)
6396
6397 2008-02-12  Michael Natterer  <mitch@imendio.com>
6398
6399         * gtk/gtkstatusicon.c: #include "gtkmain.h" for
6400         gtk_get_current_event_time().
6401
6402 2008-02-12  Michael Natterer  <mitch@imendio.com>
6403
6404         * gtk/gtkwindow.c (gtk_window_activate_key): simply use
6405         gtk_window_get_key_hash() to get the hash instead of manually
6406         fiddling with quarks and gtk_window_keys_changed(). Also add
6407         g_return_if_fail() to this public function.
6408
6409 2008-02-11  Matthias Clasen  <mclasen@redhat.com>
6410
6411         Support keynav in status icons.  (#473786, Li Yuan)
6412
6413         * gtk/gtkstatusicon.c: Handle keynav, make the tray icon focusable.
6414
6415         * gtk/gtktrayicon-x11.c: Draw a focus rectangle when focused.
6416
6417 2008-02-11  Kristian Rietveld  <kris@imendio.com>
6418
6419         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_reorder)
6420         * gtk/gtkiconview.c (gtk_icon_view_cell_layout_reorder): plug leak
6421         wrt. link deletion from list; contination of fix for #503569.
6422
6423 2008-02-11  Emmanuele Bassi  <ebassi@gnome.org>
6424
6425         * gtk/gtkrecentchoosermenu.c:
6426         (gtk_recent_chooser_menu_constructor): Set no-show-all flag
6427         on the placeholder menu item.
6428
6429         * tests/testrecentchoosermenu.c:
6430         (create_recent_chooser_menu): Use gtk_widget_show_all() to test
6431         whether the placeholder menu item gets shown.
6432
6433 2008-02-10  Cody Russell  <bratsche@gnome.org>
6434
6435         * gtk/gtkfilechooser.c (gtk_file_chooser_get_current_folder_uri):
6436         Check the return value of _gtk_file_chooser_get_file_system () for
6437         NULL before passing it to gtk_file_system_path_to_uri ().
6438         (#515667, Francesco Montorsi)
6439
6440 2008-02-10  Philip Withnall  <pwithnall@svn.gnome.org>
6441
6442         * gtk/gtkbuilder.c: Improve the documentation for
6443         gtk_builder_connect_signals. (#514471)
6444
6445 2008-02-10  Matthias Clasen  <mclasen@redhat.com>
6446
6447         * gtk/gtkrecentaction.c: Propagate local-only.  (#511987, 
6448         Jonh Wendell)
6449
6450 2008-02-08  Cody Russell  <bratsche@gnome.org>
6451
6452         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_start):
6453         Removed an extra semicolon.  (#515219, reported by Kazuki IWAMOTO)
6454
6455 2008-02-08  Richard Hult  <richard@imendio.com>
6456
6457         * gdk/quartz/gdkevents-quartz.c (gdk_event_translate): Ignore the
6458         delta from the NSEvent for now, generating multiple scroll events
6459         results in a lot of events getting queued up and things get really
6460         slow.
6461
6462 2008-02-08  Sven Herzberg  <sven@imendio.com>
6463
6464         Adjust the code to match the documentation, examples, "common sense"
6465         and existing applications.
6466
6467         * gtk/gtkaction.c: (_gtk_action_sync_menu_visible): take into account
6468         that a GtkMenu for a <popup> element doesn't have to have a GtkAction
6469         assigned
6470
6471 2008-02-07  Cody Russell  <bratsche@gnome.org>
6472
6473         * gdk/win32/gdkevents-win32.c
6474         * gdk/win32/gdkwindow-win32.c: Fixed two declarations in the middle
6475         of a block that were causing compile problems on old
6476         compilers. (#515053, reported by Kazuki IWAMOTO)
6477         
6478 2008-02-07  Michael Natterer  <mitch@imendio.com>
6479
6480         * gtk/gtkcellview.c
6481         * gtk/gtklabel.c
6482         * gtk/gtklayout.c
6483         * gtk/gtklist.c
6484         * gtk/gtkmenu.c
6485         * gtk/gtkmenushell.c
6486         * gtk/gtkmisc.c
6487         * gtk/gtkoptionmenu.c
6488         * gtk/gtkplug.c
6489         * gtk/gtkpreview.c
6490         * gtk/gtkprogress.c
6491         * gtk/gtkradiomenuitem.c
6492         * gtk/gtkscale.c
6493         * gtk/gtkscrolledwindow.c
6494         * gtk/gtksocket.c: remove g_return_if_fail() from private
6495         functions and virtual function implementations.
6496
6497 2008-02-07  Michael Natterer  <mitch@imendio.com>
6498
6499         * gtk/gtkaction.c
6500         * gtk/gtkassistant.c
6501         * gtk/gtkbin.c
6502         * gtk/gtkbox.c
6503         * gtk/gtkcalendar.c
6504         * gtk/gtkcellrenderercombo.c
6505         * gtk/gtkcombobox.c
6506         * gtk/gtkcombo.c
6507         * gtk/gtkdrawingarea.c
6508         * gtk/gtkentrycompletion.c
6509         * gtk/gtkfixed.h
6510         * gtk/gtkgamma.c
6511         * gtk/gtkhpaned.c
6512         * gtk/gtkiconview.c
6513         * gtk/gtkitem.c
6514         * gtk/gtkitemfactory.c: remove g_return_if_fail() from private
6515         functions and virtual function implementations.
6516
6517 2008-02-07  Christian Persch  <chpe@gnome.org>
6518
6519         * gdk/gdkpixbuf-render.c:
6520         (gdk_pixbuf_render_pixmap_and_mask_for_colormap): If the pixbuf has an
6521         alpha channel, use gdk_draw_rgb_32_image to draw it to the pixmap;
6522         otherwise there will be random pixel values in the semi-transparent
6523         area of the pixbuf within the mask. Bug #487865.
6524
6525 2008-02-06  Cody Russell  <bratsche@gnome.org>
6526
6527         * gdk/win32/gdkevents-win32.c: Check if the window is a temp window,
6528         otherwise things get wonky when you click on a menu.  This fixes
6529         a regression caused in #505928.  Thanks to Tor for spotting this
6530         one!  (#514789)
6531
6532 2008-02-06  Michael Natterer  <mitch@imendio.com>
6533
6534         * gtk/gtkcontainer.c
6535         * gtk/gtkexpander.c
6536         * gtk/gtkframe.c
6537         * gtk/gtklabel.c
6538         * gtk/gtkmain.c
6539         * gtk/gtkmenu.c
6540         * gtk/gtkmenuitem.c
6541         * gtk/gtkmenushell.c
6542         * gtk/gtknotebook.c
6543         * gtk/gtkseparatortoolitem.c
6544         * gtk/gtksocket.c
6545         * gtk/gtktextlayout.c
6546         * gtk/gtktoggletoolbutton.c
6547         * gtk/gtktoolbutton.c
6548         * gtk/gtktoolitem.c
6549         * gtk/gtktree.c
6550         * gtk/gtktreeitem.c: replace "foo && GTK_IS_FOO (foo)" by simply
6551         "GTK_IS_FOO (foo)".
6552
6553 2008-02-05  Matthias Clasen  <mclasen@redhat.com>
6554
6555         * gtk/gtkprintsettings.c (gtk_print_settings_get_page_ranges):
6556         Allow to store half-open ranges.
6557
6558 2008-02-05  Cody Russell  <bratsche@gnome.org>
6559
6560         * gdk/win32/gdkwindow-win32.c (_gdk_modal_current): Walk
6561         down the stack until we get to a window that is mapped.
6562         Otherwise hiding a window will cause all windows in the app
6563         to be blocked. (#514643)
6564
6565 2008-02-05  Matthias Clasen  <mclasen@redhat.com>
6566
6567         * gtk/updateiconcache.c: Ignore images in the toplevel theme
6568         directory, avoiding one source of invalid caches that has been
6569         spotted in the wild.
6570
6571 2008-02-05  Matthias Clasen  <mclasen@redhat.com>
6572
6573         * gtk/updateiconcache.c: Fix the previous commit to compile.
6574
6575 2008-02-05  Matthias Clasen  <mclasen@redhat.com>
6576
6577         * gtk/updateiconcache.c: Install a printerr handler that
6578         prepends the program name, since gtk-update-icon-cache output
6579         often appears in the middle of other output, e.g. rpm update logs.
6580
6581 2008-02-05  Cody Russell  <bratsche@gnome.org>
6582
6583         * gdk/win32/gdkprivate-win32.h
6584         * gdk/win32/gdkevents-win32.c
6585         * gdk/win32/gdkwindow-win32.c
6586         * gdk/win32/gdkwindow-win32.h
6587         * gdk/win32/gdkwin32.h:
6588         Modal window rework.  (#455627 and #511111)
6589
6590 2008-02-04  Michael Natterer  <mitch@imendio.com>
6591
6592         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_add_attribute):
6593         g_return_if_fail() if the cell is not part of the combo instead of
6594         crashing in the next line.
6595
6596 2008-02-01  Cody Russell  <cody@jhu.edu>
6597
6598         * modules/engines/ms-windows/xp_theme.[ch]
6599         * modules/engines/ms-windows/xp_theme_defs.h
6600         * modules/engines/ms-windows/msw_rc_style.c
6601         * modules/engines/ms-windows/msw_theme_main.c
6602         * modules/engines/ms-windows/msw_style.c: Re-indented and generally
6603         attempted to stylize more like the rest of the gtk+ stack's code.
6604
6605 2008-02-01  Michael Natterer  <mitch@imendio.com>
6606
6607         * tests/testgtk.c: initialize GdkColor structs to fix warning
6608         about uninitialized "pixel" member.
6609
6610         * tests/testactions.c: connect the toolbar_style() callback so it
6611         does something useful and doesn't warn about being defined but not
6612         used.
6613
6614 2008-01-31  Cody Russell  <bratsche@gnome.org>
6615
6616         * gdk/win32/gdkevents-win32.c:
6617         Refactored some of the window hiding/showing code from
6618         WM_ACTIVATE to WM_SIZE and WM_SYSCOMMAND.  Having this
6619         under WM_ACTIVATE was causing the application to go into
6620         a weird state when the user right-clicked on the taskbar
6621         entry of a window that was minimized.  (#505928)
6622         
6623 2008-01-31  Cody Russell  <bratsche@gnome.org>
6624
6625         * gtk/gtkpaned.c (gtk_paned_set_position):
6626         Change queue_resize() to queue_draw(), and add a check for
6627         child2 != NULL in case someone calls this before there is
6628         a child packed in there.  (#144269 again)
6629
6630 2008-01-31  Sven Neumann  <sven@gimp.org>
6631
6632         * gdk/directfb/gdkimage-directfb.c (_gdk_directfb_copy_to_image):
6633         applied patch from Denis Oliver Kropp <dok@directfb.org>.
6634
6635 2008-01-31  Sven Neumann  <sven@gimp.org>
6636
6637         * gdk/directfb/gdkdisplay-directfb.c
6638         * gdk/directfb/gdkdrawable-directfb.c
6639         * gdk/directfb/gdkprivate-directfb.h
6640         * gdk/directfb/gdkwindow-directfb.c: applied patch from Denis
6641         Oliver Kropp <dok@directfb.org>. Fixes remaining warnings.
6642
6643 2008-01-31  Richard Hult  <richard@imendio.com>
6644
6645         * gdk/quartz/GdkQuartzView.c: Another attempt at fixing focus
6646         issues with undecorated windows. Revert the change done on
6647         2008-01-25 and fix it by using the view's bounds instead. The
6648         bounds will always be up to date when setting up the tracking
6649         rect, so this should be more robust.
6650
6651 2008-01-30  Sven Neumann  <sven@gimp.org>
6652
6653         * gdk/directfb/gdkdrawable-directfb.c
6654         * gdk/directfb/gdkwindow-directfb.c
6655         * gdk/directfb/gdkprivate-directfb.h: applied patch from Denis
6656         Oliver Kropp <dok@directfb.org>. Adds debug messages using
6657         DirectFB's debugging system
6658
6659 2008-01-30  Sven Neumann  <sven@gimp.org>
6660
6661         * gdk/directfb/gdkdirectfb.h
6662         * gdk/directfb/gdkdisplay-directfb.c
6663         * gdk/directfb/gdkdrawable-directfb.c
6664         * gdk/directfb/gdkim-directfb.c
6665         * gdk/directfb/gdkimage-directfb.c
6666         * gdk/directfb/gdkinput-directfb.c
6667         * gdk/directfb/gdkmain-directfb.c
6668         * gdk/directfb/gdkpixmap-directfb.c
6669         * gdk/directfb/gdktestutils-directfb.c
6670         * gdk/directfb/gdkvisual-directfb.c
6671         * gdk/directfb/gdkwindow-directfb.c: applied patch from Denis
6672         Oliver Kropp <dok@directfb.org>. Fixes various warnings, some
6673         errors and has some cleanups.
6674
6675 2008-01-30  Michael Natterer  <mitch@imendio.com>
6676
6677         * gtk/gtkbuilderparser.c (parse_custom): use the right type for
6678         "subparser_data" and remove the (gpointer*) cast. Fixes bogus
6679         aliasing warning.
6680
6681         * gtk/updateiconcache.c (add_string): cast const gchar* to
6682         gpointer when inserting in a GHashTable.
6683
6684         * tests/testcalendar.c (calendar_detail_cb): remove const from
6685         return value since it's a newly allocated string.
6686
6687         (calendar_update_details): free the detail.
6688
6689 2008-01-29  Johan Dahlin  <johan@gnome.org>
6690
6691         * demos/gtk-demo/builder.c: (quit_activate), (about_activate),
6692         (do_builder):
6693         * demos/gtk-demo/demo.ui:
6694         Move the about dialog to the glade file, add accessible tags
6695         examples to the markup file.
6696
6697 2008-01-28  Paolo Borelli  <pborelli@katamail.com>
6698
6699         * gtk/gtkprintunixdialog.c (draw_page_cb): do not leak the pango
6700         layout, fixes #512375.
6701
6702 2008-01-28  Michael Natterer  <mitch@imendio.com>
6703
6704         * gtk/gtktextchild.c
6705         * gtk/gtktextview.c: meant to use G_STRFUNC, not G_STRLOC...
6706
6707 2008-01-28  Michael Natterer  <mitch@imendio.com>
6708
6709         * demos/gtk-demo/builder.c (about_activate): use
6710         gtk_about_dialog_set_program_name() instead of the deprecated
6711         set_name().
6712
6713 2008-01-28  Michael Natterer  <mitch@imendio.com>
6714
6715         * gtk/gtktextchild.c
6716         * gtk/gtktextview.c: use G_STRLOC instead of G_GNUC_FUNCTION (which
6717         is deprecated now).
6718
6719 2008-01-26  Johan Dahlin  <johan@gnome.org>
6720
6721         * tests/Makefile.am:
6722         * tests/textbuffertest.c:
6723         Rename textbuffer test and port it to the new test framework
6724         
6725 2008-01-25  Johan Dahlin  <johan@gnome.org>
6726
6727         * gtk/gtktestutils.c (gtk_test_init): Restore accidentally removed
6728         unsetting of GTK_MODULES.
6729
6730         * gtk/gtk-builder-convert
6731         (GtkBuilderConverter._convert_adjustment): Handle the case where
6732         there is no child text node.
6733         (GtkBuilderConverter): Allow xml comments in most places.
6734
6735 2008-01-25  Johan Dahlin  <johan@gnome.org>
6736
6737         * gtk/gtk-builder-convert
6738         (GtkBuilderConverter._convert_combobox_items): Remove the items
6739         even if there are no items set.
6740         (GtkBuilderConverter._add_action_from_menuitem): Convert toggled
6741         signals and tooltips for all menu items subclasses and 
6742         GtkImageMenuItem:label. 
6743         Makes it possible to fully convert and run Jokosher.glade.
6744
6745 2008-01-25  Johan Dahlin  <johan@gnome.org>
6746
6747         * gtk/gtkwidget.c: (gtk_widget_buildable_interface_init),
6748         (gtk_widget_buildable_get_internal_child), (free_action),
6749         (free_relation), (gtk_widget_buildable_parser_finished),
6750         (accessibility_start_element),
6751         (gtk_widget_buildable_custom_tag_start),
6752         (gtk_widget_buildable_custom_finished):
6753         Implement accessible support, fixes #454653.
6754
6755         * gtk/gtk-builder-convert:
6756         Add support for migrating old glade files
6757         
6758         * tests/buildertest.c: (test_widget), (test_file):
6759         Add accessible tests and imprve the test_file function to display
6760         toplevels and run dialogs.
6761
6762 2008-01-25  Richard Hult  <richard@imendio.com>
6763
6764         * gdk/quartz/GdkQuartzView.c: Don't recreate a tracking rect if it
6765         didn't change, fixes focus event issues for undecorated windows.
6766
6767 2008-01-25  Richard Hult  <richard@imendio.com>
6768
6769         * gdk/quartz/gdkwindow-quartz.c: Fix compile warnings (add missing
6770         const and remove unused variables).
6771
6772 2008-01-25  Michael Natterer  <mitch@imendio.com>
6773
6774         * gtk/gtkbutton.h
6775         * gtk/gtkcellrenderer.h
6776         * gtk/gtkimcontext.h
6777         * gtk/gtkstyle.h
6778         * gtk/gtktoolbar.h
6779         * gtk/gtktooltip.h
6780         * gtk/gtktreeprivate.h
6781         * gtk/gtktreeviewcolumn.h
6782         * gtk/gtkwidget.h: add const to constant structs which are passed
6783         into GTK+. Also add some forgotten const for const strings.
6784         Fixes bug #511554.
6785
6786         * gtk/gtkbutton.c
6787         * gtk/gtkcellrenderer.c
6788         * gtk/gtkimcontext.c
6789         * gtk/gtkstyle.c
6790         * gtk/gtktoolbar.c
6791         * gtk/gtktooltip.c
6792         * gtk/gtktreeview.c
6793         * gtk/gtktreeviewcolumn.c
6794         * gtk/gtkwidget.c: changed accordingly.
6795
6796 2008-01-25  Sven Herzberg  <sven@imendio.com>
6797
6798         Reviewed by Johan Dahlin.
6799
6800         * gtk/gtkuimanager.c (gtk_ui_manager_remove_ui): emit a warning if
6801         this is called with something that's not a GtkUIManager
6802
6803 2008-01-24  Johan Dahlin  <johan@gnome.org>
6804
6805         * gtk/gtkdialog.c (gtk_dialog_buildable_get_internal_child): 
6806         Chain up to parent, so widgets can have internal children.
6807
6808 2008-01-22  Mathias Hasselmann  <mathias@openismus.com>
6809
6810         Add gdk_app_launch_context_get_type() to gdk.symbols (#511308, Kazuki
6811         IWAMOTO).
6812
6813         * gdk/gdk.symbols: Add gdk_app_launch_context_get_type().
6814
6815 2008-01-22  Mathias Hasselmann  <mathias@openismus.com>
6816
6817         Use pango_layout_set_height() for calendar details (#506049).
6818
6819         * configure.in: Require 1.19.3 for pango_layout_set_height().
6820         * gtk/gtkcalendar.c: Use pango_layout_set_height() for details.
6821
6822 2008-01-18  Johan Dahlin  <johan@gnome.org>
6823
6824         * gtk/gtk-builder-convert (get_property_node): New method
6825         (GtkBuilderConverter._create_object): Conditionally take a node as
6826         a property value, so don't lose translate/context attributes if they
6827         are set. 
6828         (GtkBuilderConverter._add_action_from_menuitem): Send in Node as
6829         property values instead of strings.
6830         (#509153, Erik van Pienbroek)
6831
6832 2008-01-16  Mathias Hasselmann  <mathias@openismus.com>
6833
6834         Change GtkCalendarDetailFunc to return newly allocated string. (#339540)
6835
6836         * gtk/gtkcalendar.c: Release the memory returned by the detail_func.
6837         * gtk/gtkcalendar.h: Remove G_CONST_RETURN from GtkCalendarDetailFunc.
6838         * tests/testcalendar.c: Duplicate calendar details before returning.
6839
6840 2008-01-16  Christian Persch  <chpe@gnome.org>
6841
6842         * gtk/gtkwidget.c: Store the event mask and extension event mode
6843         directly in the gobject data pointer, instead of in an allocated
6844         gint. Bug #506604.
6845
6846 2008-01-16  Michael Natterer  <mitch@imendio.com>
6847
6848         * configure.in (GDK_PIXBUF_PACKAGES): add "gio-2.0" because
6849         gdk-pixbuf now uses gio functions.
6850
6851 2008-01-16  Matthias Clasen  <mclasen@redhat.com>
6852
6853         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Emit
6854         the notify::model signal.  (#509819, David Zeuthen)
6855
6856 2008-01-15  Michael Natterer  <mitch@imendio.com>
6857
6858         * gdk/gdkdisplay.h
6859         * gdk/gdkdrawable.h
6860         * gdk/gdkevents.h
6861         * gdk/gdkpango.h
6862         * gdk/gdkregion.h
6863         * gdk/gdkrgb.h
6864         * gdk/gdkwindow.h: made more struct pointer and array parameters
6865         const. GDK should now be constified as far as possible without
6866         breaking source compatibility. Includes some minor cleanup like
6867         indentation and s/nfoo/n_foo/ (bug #508544).
6868
6869         * gdk/gdkdisplay.c
6870         * gdk/gdkdraw.c
6871         * gdk/gdkevents.c
6872         * gdk/gdkpango.c
6873         * gdk/gdkregion-generic.c
6874         * gdk/gdkrgb.c
6875         * gdk/directfb/gdkdisplay-directfb.c
6876         * gdk/directfb/gdkwindow-directfb.c
6877         * gdk/quartz/gdkdisplay-quartz.c
6878         * gdk/quartz/gdkwindow-quartz.c
6879         * gdk/win32/gdkdisplay-win32.c
6880         * gdk/win32/gdkwindow-win32.c
6881         * gdk/x11/gdkdisplay-x11.c
6882         * gdk/x11/gdkwindow-x11.c: changed accordingly.
6883
6884 2008-01-14  Michael Natterer  <mitch@imendio.com>
6885
6886         * gtk/gtkrc.c (_gtk_rc_style_unset_rc_property): add cast to fix
6887         const warning.
6888
6889         (gtk_rc_parse_any): change variables to const and introduce
6890         another local variable to fix const warnings.
6891
6892 2008-01-14  Michael Natterer  <mitch@imendio.com>
6893
6894         * gdk/gdkscreen.c (gdk_screen_get_property): cast the return value
6895         of gdk_screen_get_font_options() to gpointer to get rid of const
6896         warning.
6897
6898 2008-01-14  Michael Natterer  <mitch@imendio.com>
6899
6900         * tests/testdnd.c (source_drag_data_get): fix another call to
6901         gtk_selection_data_set().
6902
6903 2008-01-14  Michael Natterer  <mitch@imendio.com>
6904
6905         * gtk/gtkoldeditable.c (gtk_old_editable_selection_received): fix
6906         signedness warning.
6907
6908 2008-01-14  Michael Natterer  <mitch@imendio.com>
6909
6910         * gtk/gtkiconcache.c (find_image_offset): remove unused variable.
6911
6912 2008-01-14  Michael Natterer  <mitch@imendio.com>
6913
6914         * gtk/gtkfilesystemmodel.c (drag_source_drag_data_get): cast
6915         "uris" to guchar* when passing it to gtk_selection_data_set().
6916
6917 2008-01-14  Michael Natterer  <mitch@imendio.com>
6918
6919         * gdk/gdk.h
6920         * gdk/gdkcairo.h
6921         * gdk/gdkcolor.h
6922         * gdk/gdkgc.h
6923         * gdk/gdkinternals.h
6924         * gdk/gdkregion.h
6925         * gdk/gdkwindow.h: made GdkRectangle*, GdkRegion* and GdkColor*
6926         parameters const (bug #508544).
6927
6928         * gdk/gdkcairo.c
6929         * gdk/gdkgc.c
6930         * gdk/gdkwindow.c
6931         * gdk/gdkrectangle.c
6932         * gdk/gdkpolyreg-generic.c
6933         * gdk/gdkregion-generic.c
6934         * gdk/directfb/gdkcolor-directfb.c
6935         * gdk/directfb/gdkgc-directfb.c
6936         * gdk/directfb/gdkgeometry-directfb.c
6937         * gdk/directfb/gdkwindow-directfb.c
6938         * gdk/quartz/gdkcolor-quartz.c
6939         * gdk/quartz/gdkgc-quartz.c
6940         * gdk/quartz/gdkgeometry-quartz.c
6941         * gdk/quartz/gdkwindow-quartz.c
6942         * gdk/win32/gdkcolor-win32.c
6943         * gdk/win32/gdkgc-win32.c
6944         * gdk/win32/gdkgeometry-win32.c
6945         * gdk/win32/gdkprivate-win32.h
6946         * gdk/win32/gdkwindow-win32.c
6947         * gdk/x11/gdkcolor-x11.c
6948         * gdk/x11/gdkgc-x11.c
6949         * gdk/x11/gdkgeometry-x11.c
6950         * gdk/x11/gdkmain-x11.c
6951         * gdk/x11/gdkprivate-x11.h
6952         * gdk/x11/gdkwindow-x11.c: changed accordingly.
6953
6954         * gdk/gdkpolyreg-generic.c: uncruftify to have proper function
6955         headers.
6956
6957 2008-01-14  Mathias Hasselmann  <mathias@openismus.com>
6958
6959         Explain name choice for gtk_tool_item_toolbar_reconfigured.
6960
6961         * gtk/gtktoolitem.c: Add comment expaining name choice for
6962         gtk_tool_item_toolbar_reconfigured.
6963
6964 2008-01-14  Mathias Hasselmann  <mathias@openismus.com>
6965
6966         Make _gtk_tool_item_toolbar_reconfigured public to allow GtkToolShell
6967         implementations to notify its children, when some aspect of their
6968         configuration changed (#509042).
6969
6970         * gtk/gtk.symbols: Add gtk_tool_item_toolbar_reconfigured.
6971         * gtk/gtktoolbar.c, gtk/gtktoolitem.c, gtk/gtktoolitem.h:
6972         Rename _gtk_tool_item_toolbar_reconfigured.
6973
6974 2008-01-12  Mathias Hasselmann  <mathias@openismus.com>
6975
6976         Include <gtk/gtktoolshell.h> from gtk.h.
6977
6978         * gtk/gtk.h: Add gtktoolshell.h
6979
6980 2008-01-12  Mathias Hasselmann  <mathias@openismus.com>
6981
6982         Print angle brackets arround e-mail addresses in the about dialog
6983         (#409520, Mariano Suárez-Alvarez).
6984
6985         * gtk/gtkaboutdialog.c: Keep e-mail brackets in add_credits_page().
6986
6987 2008-01-11 13:28:02  Tim Janik  <timj@imendio.com>
6988
6989         * gtk/gtktestutils.c (gtk_test_create_widget): removed old testutils
6990         special casing so test widgets are always queues for destruction
6991         during teardown.
6992
6993         * gtk/tests/testing.c: removed bits left-over from testing without
6994         gtestutils.h.
6995
6996 2008-01-10  Tor Lillqvist  <tml@novell.com>
6997
6998         * modules/other/gail/libgail-util/Makefile.am
6999         * modules/other/gail/tests/Makefile.am: Link with gtktargetlib and
7000         gdktargetlib.
7001         
7002 2008-01-10  Tor Lillqvist  <tml@novell.com>
7003
7004         * tests/Makefile.am: Build defaultvaluetest only on Unix as it
7005         uses gtkprintunixdialog API.
7006
7007 2008-01-10  Tor Lillqvist  <tml@novell.com>
7008
7009         * gdk/win32/gdkdisplay-win32.c
7010         * gdk/win32/gdkglobals-win32.c
7011         * gdk/win32/gdkprivate-win32.h
7012         * gdk/win32/gdkscreen-win32.c
7013         * gdk/win32/gdkwindow-win32.c: Implement
7014         gdk_screen_get_monitor_width_mm(), gdk_screen_get_monitor_height_mm()
7015         and gdk_screen_get_monitor_plug_name(). Thanks to Kazuki
7016         Iwamoto. (#505753)
7017
7018 2008-01-10  Cody Russell  <bratsche@gnome.org>
7019
7020         * gdk/win32/gdkwindow-win32.c: (gdk_window_set_transient_for),
7021         Properly ref/unref windows and parents.  (#506769)
7022
7023 2008-01-10  Richard Hult  <richard@imendio.com>
7024
7025         * gdk/quartz/gdkwindow-quartz.c: (show_window_internal),
7026         (gdk_window_hide), (move_resize_window_internal): Move the
7027         tracking rect workaround from here...
7028
7029         * gdk/quartz/GdkQuartzWindow.c:
7030         * gdk/quartz/GdkQuartzWindow.h: ...to here, and ignore window
7031         movements during showing/hiding operations. Fixes bug #508516.
7032
7033 2008-01-10  Michael Natterer  <mitch@imendio.com>
7034
7035         * gdk/directfb/gdkscreen-directfb.c
7036         (gdk_screen_get_monitor_width_mm)
7037         (gdk_screen_get_monitor_height_mm)
7038         (gdk_screen_get_monitor_plug_name): add these functions to make
7039         it build again.
7040
7041 2008-01-10  Emmanuele Bassi  <ebassi@gnome.org>
7042
7043         * gtk/gtkrecentchoosermenu.c:
7044         (idle_populate_func), (idle_populate_clean_up): Fix possible
7045         recursion by resetting the idle source id. (#507605, William
7046         Pitcock)
7047
7048 2008-01-10  Kristian Rietveld  <kris@imendio.com>
7049
7050         * gtk/gtktreeview.c (gtk_tree_view_motion_draw_column_motion_arrow),
7051         (_gtk_tree_view_column_start_drag): fully initialize GdkWindowAttr to
7052         avoid valgrind warnings.  (#507751, patch from Christian Persch).
7053
7054 2008-01-10  Kristian Rietveld  <kris@imendio.com>
7055
7056         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_get_path): Fix
7057         a leak of the path (#504611, patch from Sadrul Habib Chowdhury).
7058
7059 2008-01-10  Kristian Rietveld  <kris@imendio.com>
7060
7061         Fix #477175, reported by Juri Pakaste.
7062
7063         * gtk/gtktreeprivate.h:
7064         * gtk/gtktreeview.c (gtk_tree_view_top_row_to_dy): do not set
7065         tree_view->priv->dy here directly, just calculate the new value
7066         and set it on the adjustment,
7067         (gtk_tree_view_adjustment_changed): add guards to not call
7068         gtk_tree_view_dy_to_top_row() if we are currently in
7069         gtk_tree_view_top_row_to_dy(),
7070         (gtk_tree_view_put): fix coordinate annotation: these are bin_window
7071         coordinates, not tree coordinates,
7072         (gtk_tree_view_real_start_editing): add cast.
7073
7074         * gtk/tests/treeview-scrolling.c: add an assertion for checking the
7075         position of the editable in the "create new row and start editing"
7076         tests.
7077
7078 2008-01-09  Michael Natterer  <mitch@imendio.com>
7079
7080         * gtk/gtkcolorsel.c (make_label_spinbutton): remove unused
7081         variable.
7082
7083         * gtk/gtkcombobox.c (gtk_combo_box_detacher)
7084         * gtk/gtkicontheme.c (theme_list_contexts)
7085         (gtk_icon_theme_lookup_icon)
7086         * gtk/gtkimcontextsimple.c (beep_window)
7087         * gtk/gtklinkbutton.c (set_link_color)
7088         * gtk/gtkuimanager.c (child_hierarchy_changed_cb): add casts to
7089         fix warnings.
7090
7091         * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): remove unused
7092         variable and add const to another to fix a warning.
7093
7094 2008-01-07  Matthias Clasen  <mclasen@redhat.com>
7095
7096         * gtk/gtkassistant.c (remove_page): Be more robust when removing 
7097         the current page.  (#499951, Andreas Sandberg)
7098
7099 2008-01-06  Johan Dahlin  <johan@gnome.org>
7100
7101         * gtk/gtkspinbutton.c: Declare value in the example code for
7102         GtkSpinButton::output, as pointed out by Anders Carlsson.
7103
7104 2008-01-06  Christian Persch  <chpe@gnome.org>
7105
7106         * gtk/gtkpagesetupunixdialog.c: Make the labels left-aligned,
7107         and remove an obsolete event box. Bug #506760.
7108
7109 2008-01-06  Johan Dahlin  <johan@gnome.org>
7110
7111         * tests/buildertest.c (test_domain): 
7112         Update, GtkBuilder::translation-domain is no longer set
7113         
7114         * gtk/gtkbuilderparser.c (parse_interface): 
7115         Allow domains to be overridden in <interface>'s if a translation-domain
7116         is set in the builder.
7117         (_gtk_builder_parser_parse_buffer): Do not modify the translation-domain
7118         of the builder, make the domain set in the <interface> apply only to strings
7119         in that interface.
7120         (#496831, Ryan Lortie)
7121
7122         * gtk/gtkbuilder.c: Avoid adding unnecessary trailing newlines 
7123         to g_warning calls.
7124
7125         * gtk/gtktreestore.c (tree_model_end_element): 
7126         Remove an unused variable
7127
7128 2008-01-06  Matthias Clasen  <mclasen@redhat.com>
7129
7130         * gtk/gtkspinbutton.c: Document the ::output signal and
7131         add an example.  (#507566, example by Owen Taylor)
7132
7133 2008-01-06  Johan Dahlin  <johan@gnome.org>
7134
7135         * gtk/gtkcellrenderercombo.c:
7136         (gtk_cell_renderer_combo_get_property),
7137         (gtk_cell_renderer_combo_set_property):
7138         * gtk/gtkcombobox.c: (gtk_combo_box_set_property):
7139         * gtk/gtkcomboboxentry.c: (gtk_combo_box_entry_set_property):
7140         * gtk/gtknotebook.c: (gtk_notebook_set_property):
7141         * gtk/gtkspinbutton.c: (gtk_spin_button_set_property):
7142         * gtk/gtktextbuffer.c: (gtk_text_buffer_set_property),
7143         (gtk_text_buffer_get_property):
7144         * gtk/gtktextview.c: (gtk_text_view_set_property):
7145         * gtk/gtktogglebutton.c: (gtk_toggle_button_set_property):
7146         * gtk/gtktoolbutton.c: (gtk_tool_button_set_property),
7147         (gtk_tool_button_get_property):
7148         * gtk/gtktoolitem.c: (gtk_tool_item_set_property),
7149         (gtk_tool_item_get_property):
7150         * gtk/gtktreeview.c: (gtk_tree_view_set_property):
7151         * gtk/gtkwidget.c: (gtk_widget_set_property):
7152         * gtk/gtkwindow.c: (gtk_window_set_property):
7153         Use G_OBJECT_WARN_INVALID_PROPERTY_ID consistently.
7154         Fixes #507585
7155
7156 2008-01-06  Johan Dahlin  <johan@gnome.org>
7157
7158         * gtk/gtk-builder-convert (GtkBuilderConverter._strip_root): 
7159         Make sure that --root works for toplevel widgets.
7160         (#491847, Phil Lello)
7161
7162 2008-01-05  Johan Dahlin  <johan@gnome.org>
7163
7164         * modules/other/gail/tests/Makefile.am: Include Makefile.decl,
7165         to make sure that make test-report works properly
7166
7167 2008-01-05  Christian Persch  <chpe@gnome.org>
7168
7169         * tests/defaultvaluetest.c: Fix mem leak, and don't pass
7170         GType as integer through gpointer. Bug #507395.
7171
7172 2008-01-04  Mathias Hasselmann  <mathias@openismus.com>
7173
7174         Avoid some compiler warnings (#507000).
7175
7176         * gtk/gtkbuilder.c, gtk/gtkbuilderprivate.h: Use proper sign
7177         for value argument of _gtk_builder_flags_from_string.
7178         * gtk/gtkwidget.c: Don't alias the child pointer passed
7179         to gdk_window_get_user_data.
7180
7181 2008-01-04  Michael Natterer  <mitch@imendio.com>
7182
7183         * gdk/x11/gdkinput-x11.c (_gdk_device_get_history): don't forget
7184         to set the time in the returned GdkTimeCoords.
7185
7186 2008-01-03  Emmanuele Bassi  <ebassi@gnome.org>
7187
7188         * gtk/gtkfilechooserdefault.c (recent_sort_mru): Use the
7189         correct comparison function (kudos to Christian Persch and
7190         Claudio Saavedra for spotting this)
7191
7192         * gtk/gtkrecentchooserutils.c:
7193         (sort_recent_items_mru),
7194         (sort_recent_items_lru): Ditto as above.
7195
7196 2008-01-03  Johan Dahlin  <johan@gnome.org>
7197
7198         * tests/defaultvaluetest.c: Make it pass again.
7199
7200 2008-01-02  Johan Dahlin  <johan@gnome.org>
7201
7202         * tests/defaultvaluetest.c (test_type): Ignore a few more tests to 
7203         make it pass on Ubuntu.
7204         (main): Use gtk_test_list_all_types () instead of providing our
7205         own list.
7206         And it no longer passes.
7207
7208 2007-12-30  Johannes Schmid <jhs@gnome.org>
7209
7210         * gtk/gtknotebook.c: (gtk_notebook_stop_reorder):
7211         Also reorder menu when reordering tabs by drag & drop
7212         (Bug #506474)
7213         
7214         * tests/testnotebookdnd.c: (create_notebook_with_notebooks):
7215         Add a menu to one of the notebooks to have a test-case for
7216         the change mentioned above.
7217
7218 2007-12-31  Philip Van Hoof  <pvanhoof@gnome.org>
7219
7220         * gtk/gtktreemodel.c: Using GSlice for GtkTreePath
7221
7222 2007-12-31  Christian Persch  <chpe@gnome.org>
7223
7224         * gtk/gtkprintunixdialog.c: (gtk_print_unix_dialog_get_property):
7225         Plug a mem leak. Bug #506107.
7226
7227 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7228
7229         * gtk/gtkiconfactory.c (render_fallback_image): Adjust to
7230         icon cache api change.  (#506135, Kazuki Iwamoto)
7231
7232 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7233
7234         Consider "wide-separators" and "separator-height" style properties:
7235         The separator is drawn using gtk_paint_box instead of cairo, when
7236         "wide-separators" is set. Also do not highlight details for previous
7237         or next month, if their day matches the selected day. (#339540)
7238
7239         * gtk/gtkcalendar.c: Consider "wide-separators" and "separator-height"
7240         in gtk_calendar_size_request and calendar_paint_day
7241         * gtk/gtkstyle.c: Modify gtk_default_draw_box to use special colors
7242         for selected detail separators in GtkCalendar.
7243
7244 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7245
7246         Remove max_detail_height field from GtkCalendarPrivate. (#339540)
7247
7248         * gtk/gtkcalendar.c: Drop max_detail_height field, and use
7249         a local variable instead in gtk_calendar_size_request.
7250
7251 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7252
7253         * tests/defaultvaluetest.c: Add enough exclusions to make the
7254         test succeed.
7255
7256 2007-12-28  Christian Persch  <chpe@gnome.org>
7257
7258         * modules/other/gail/Makefile.am:
7259         * modules/other/gail/tests/*:
7260         * configure.in: Merge tests from standalone gail. Bug #504568.
7261
7262 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7263
7264         * gtk/gtkclipboard.c: Make the finalizer work when display is
7265         not set.
7266
7267 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7268
7269         Draw bottom shadow of GtkCalender headings. (#506113)
7270
7271         * gtk/gtkcalendar.c: Set proper initial height for priv->header_win.
7272
7273 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7274
7275         * gtk/gtkcalendar.c: Document the initial values of year/month/day
7276         properties.
7277
7278 2007-12-28  Christian Persch  <chpe@gnome.org>
7279
7280         * gtk/gtkfontsel.c: (gtk_font_selection_get_property): Plug
7281         a mem leak. Bug #506096.
7282
7283 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7284
7285         * gtk/gtktable.c:
7286         * gtk/gtktreeview.c:
7287         * gtk/gtkprintoperation.c:
7288         * gtk/gtkprogressbar.c:
7289         * gtk/gtkmessagedialog.c:
7290         * gtk/gtknotebook.c:
7291         * gtk/gtkprinter.c:
7292         * gtk/gtkfilesel.c:
7293         * gtk/gtklabel.c:
7294         * gtk/gtklinkbutton.c:
7295         * gtk/gtkmenu.c: More default property value corrections.
7296
7297 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7298
7299         * gtk/gtkitemfactory.c (gtk_item_factory_finalize): Don't unref
7300         accel_group unless it is set.
7301
7302 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7303
7304         * gdk/x11/gdkwindow-x11.c (get_default_title): Don't return NULL.
7305
7306 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7307
7308         * gtk/gtkhandlebox.c: Fix the default values of shadow and 
7309         shadow-type properties.
7310
7311         * gtk/gtkfontsel.c: Fix the default values of several properties.
7312
7313         * gtk/gtkfilesel.c: Fix the default value of the show-fileops
7314         property.
7315
7316         * gtk/gtkcurve.c: Fix the default value of the curve-type property.
7317
7318         * gtk/gtkcombo.c: Fix the default value of the enable-arrows-always
7319         property.
7320
7321 2007-12-28  Johan Dahlin  <johan@gnome.org>
7322
7323         * gtk/gtkdialog.c (gtk_dialog_buildable_custom_finished)
7324         (gtk_dialog_buildable_custom_tag_start): Chain up. 
7325         This makes it possible to have accelerators tags on GtkDialog 
7326         subclasses.
7327
7328 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7329
7330         Add GTK_CALENDAR_SHOW_DETAILS display flag, which chooses if details
7331         are shown within the widget, or just as tooltip. (#339540)
7332
7333         * gtk/gtkcalendar.c, gtk/gtkcalendar.h: Add "show-details" property
7334         aka. GTK_CALENDAR_SHOW_DETAILS, and use it.
7335         * tests/testcalendar.c: Test GTK_CALENDAR_SHOW_DETAILS. Reduce padding
7336         in flags vbox.
7337
7338 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7339
7340         Try more decent appearance of calendar details separator. (#339540)
7341
7342         * gtk/gtkcalendar.c: Use different colors for drawing the separator,
7343         and make it short by one pixel on each side.
7344
7345 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7346
7347         Apply trivial code-style changes from attachement 101101. (#339540)
7348
7349         * tests/testcalendar.c: Some updates to current GTK+ code-style.
7350
7351 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7352
7353         Restructure testcalendar for testing calendar details. (#339540)
7354
7355         * tests/testcalendar.c: Push code arround for testing calendar details.
7356
7357 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7358
7359         Implement GtkTooltip API for calendar details. (#339540)
7360
7361         * gtk/gtkcalendar.c: Add gtk_calendar_query_tooltip and chain it up.
7362         Remember detail overflows in calendar_paint_day to show the tooltip
7363         only when neccessary.
7364
7365 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7366
7367         Without setting "detail-width-chars" and "detail-height-rows"
7368         properties not only the widget has to be redrawn on certain
7369         conditions, but also its size must be recalculated. (#339540)
7370
7371         * gtk/gtkcalendar.c: Add calendar_queue_refresh and call
7372         that function instead of gtk_widget_queue_draw.
7373
7374 2007-12-28  Mathias Hasselmann  <mathias@openismus.com>
7375
7376         Consider details for size-request and expose-event. (#339540)
7377
7378         * gtk/gtkcalendar.c: Add gtk_calendar_get_detail and
7379         is_color_attribute functions. Change gtk_calendar_size_request
7380         and calendar_paint_day to consider and show calender details.
7381
7382 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
7383
7384         * gtk/gtkcombobox.c: Introduce local priv variables to 
7385         reduce ->->
7386
7387 2007-12-27  Matthias Clasen  <mclasen@redhat.com>
7388
7389         * gtk/gtkcombobox.c: Correct the default value for the 
7390         tearoff-title property.
7391
7392         * gtk/gtkcellrenderertext.c: Fix the default value for the
7393         wrap-mode and font-scale properties.
7394
7395         * gtk/gtkaspectratio.c: Fix the default value for the ratio
7396         property.
7397
7398 2007-12-27  Matthias Clasen  <mclasen@redhat.com>
7399
7400         * gkt/gtksignal.h: Fix 0<>NULL confusion in gtk_signal_connect...
7401         defines.  (#505708,  MINAMI Hirokazu)
7402
7403 2007-12-27  Christian Persch  <chpe@gnome.org>
7404         
7405         * Makefile.am: Install gail.pc. Bug #505859.
7406
7407 2007-12-27  Mathias Hasselmann  <mathias@openismus.com>
7408
7409         Add infrastructure for GtkCalendar details. (#339540)
7410
7411         * gtk/gtkcalendar.c, gtk/gtkcalendar.h, gtk/gtk.symbols:
7412         Add "detail-width-chars" and "detail-height-rows" properties,
7413         and gtk_calendar_set_detail_func function.
7414
7415 2007-12-27  Xan Lopez  <xan@gnome.org>
7416
7417         * gtk/gtk.symbols: 
7418         * gtk/gtkstyle.c (gtk_border_new, gtk_border_copy): 
7419
7420         Add gtk_border_new to avoid memory allocator confusions when using
7421         GtkBorders. Also, make gtk_border_copy use g_slice_dup. (#454042)
7422
7423 2007-12-27  Christian Persch  <chpe@gnome.org>
7424
7425         * gdk/x11/gdkscreen-x11.c: (init_randr12): Fir the patch from 
7426         bug #504886 not to read unitialised memory.
7427
7428 2007-12-26  Xan Lopez  <xan@gnome.org>
7429
7430         * gtk/gtkstatusbar.c (has_extra_children): take into account the
7431         modification of the internal frame contents to decide if we have
7432         extra children. (#415677)
7433
7434 2007-12-22  Christian Persch  <chpe@gnome.org>
7435
7436         * modules/other/gail/gailitem.c: Fix mem leak. Bug #505556.
7437
7438 2007-12-25  Christian Persch  <chpe@gnome.org>
7439
7440         * modules/other/gail/gailwindow.c: (gail_window_initialize):
7441         Initialise |widget|. Fixes a buglet introduced by the commit from bug
7442         #505226.
7443
7444 2007-12-25  Christian Persch  <chpe@gnome.org>
7445
7446         * modules/other/gail/*.h: Use G_BEGIN_DECLS/G_END_DECLS. Bug #505268.
7447         
7448 2007-12-25  Christian Persch  <chpe@gnome.org>
7449
7450         * modules/other/gail/*.[ch]: Remove relocations from the atk
7451         factories. Remove unused gail_foo_new() functions. Fix object
7452         instantiation to be derivation safe by moving initialisation code
7453         from the removed gail_foo_new() functions to the
7454         AtkObjectClass::initialize implementation. Bug #505226.
7455
7456 2007-12-24  Matthias Clasen  <mclasen@redhat.com>
7457
7458         * modules/other/gail/gailentry.c:
7459         * modules/other/gail/gailimage.c:
7460         * modules/other/gail/gailtextview.c: Remove non-multihead-safe
7461         uses of clipboards and settings.  (#504722, Christian Persch)
7462
7463 2007-12-24  Matthias Clasen  <mclasen@redhat.com>
7464
7465         * gdk/gdkapplaunchcontext.c: Remove unneeded includes. (#505411,
7466          Kazuki IWAMOTO)
7467
7468 2007-12-24  Matthias Clasen  <mclasen@redhat.com>
7469
7470         * gtk/gtkcombobox.c: When popping up a menu from a treeview cell,
7471         use the time and button information from the event.  (#504901,
7472         Peter Bloomfield)
7473
7474 2007-12-23  Cody Russell  <bratsche@gnome.org>
7475
7476         * gdk/win32/gdkevents-win32.c (show_window_recurse): Check that
7477         the window is mapped before setting SW_RESTORE or SW_MINIMIZE.
7478         Fixes a regression caused by #164537 patch where transient
7479         windows that are hidden get shown (incorrectly) when their
7480         parents are minimized. (#504984)
7481         
7482 2007-12-22  Christian Persch  <chpe@gnome.org>
7483
7484         * modules/other/gail/gailcell.c:
7485         * modules/other/gail/gailcontainercell.c:
7486         * modules/other/gail/gailexpander.c:
7487         * modules/other/gail/gailtextcell.c:
7488         * modules/other/gail/gailtextview.c:
7489         * modules/other/gail/gailwindow.c: Fix compile warnings. Bug #504701.
7490
7491 2007-12-22  Christian Persch  <chpe@gnome.org>
7492
7493         * modules/other/gail/*.c: Include config.h. Bug #504720.
7494
7495 2007-12-22  Christian Persch  <chpe@gnome.org>
7496
7497         * modules/other/gail/*.c: Use G_DEFINE_TYPE[_WITH_CODE] instead of
7498         handwritten get_type functions. Bug #504661.
7499
7500 2007-12-23  Xan Lopez  <xan@gnome.org>
7501
7502         * gtk/gtktreeview.c (gtk_tree_view_build_tree): pass correct argument
7503         to g_signal_emit for TEST_EXPAND_ROW (GtkTreeIter* vs. GtkTreeIter**).
7504
7505         Patch by Sadrul Habib Chowdhury (#504804)
7506
7507 2007-12-22  Christian Persch  <chpe@gnome.org>
7508
7509         * modules/other/gail/Makefile.am: Link to gdk and gtk libs. Bug
7510         #504645, patch by Li Yuan.
7511
7512 2007-12-22  Christian Persch  <chpe@gnome.org>
7513
7514         * gdk/x11/gdkscreen-x11.c: (init_randr12): Plug mem leaks. Bug #504886.
7515
7516 2007-12-22  Christian Persch  <chpe@gnome.org>
7517         
7518         * modules/other/gail/gail.c:
7519         * modules/other/gail/gailbutton.c:
7520         * modules/other/gail/gailcell.c:
7521         * modules/other/gail/gailcombo.c:
7522         * modules/other/gail/gailcombo.h:
7523         * modules/other/gail/gailcombobox.c:
7524         * modules/other/gail/gailentry.c:
7525         * modules/other/gail/gailexpander.c:
7526         * modules/other/gail/gailmenuitem.c:
7527         * modules/other/gail/gailnotebook.c:
7528         * modules/other/gail/gailnotebookpage.c:
7529         * modules/other/gail/gailnotebookpage.h:
7530         * modules/other/gail/gailoptionmenu.c:
7531         * modules/other/gail/gailrange.c:
7532         * modules/other/gail/gailtextview.c:
7533         * modules/other/gail/gailtreeview.c:
7534         * modules/other/gail/gailtreeview.h:
7535         * modules/other/gail/gailwindow.c: Use gdk_threads_add_idle.
7536         Bug #504571.
7537
7538 2007-12-22  Matthias Clasen  <mclasen@redhat.com>
7539
7540         * modules/other/gail/gailclist.c: Chain up the finalizer (#504570,
7541         Christian Persch)
7542
7543 2007-12-21  Richard Hult  <richard@imendio.com>
7544
7545         * gdk/quartz/gdkwindow-quartz.c: (_gdk_windowing_window_destroy):
7546         Plug leak of destroyed subviews, fixes bug #504753.
7547
7548 2007-12-20  Johan Dahlin  <johan@gnome.org>
7549
7550         * tests/Makefile.am (TEST_PROGS): 
7551         * tests/defaultvaluetest.c: Add a test for default values,
7552         based on program by Christan Perch
7553
7554 2007-12-20  Johan Dahlin  <johan@gnome.org>
7555
7556         * gtk/gtk-builder-convert (GtkBuilderConverter._remove_window): 
7557         Refactor to avoid some duplication.
7558         Convert toplevel GtkMenu's top popups and not menubars in the ui manager.
7559         Fixes #504749, Yuri Pimenov
7560
7561 2007-12-20  Kristian Rietveld  <kris@imendio.com>
7562
7563         * configure.in: RYuri Pimenovemove leftovers from old XRandR check.  Makes
7564         the build work again on systems without xrandr 1.2.
7565
7566 2007-12-20  Christian Persch  <chpe@gnome.org>
7567
7568         * configure.in:
7569         * modules/other/gail/libgail-util/Makefile.am:
7570         Keep the same libtool version as the standalone libgail-util had.
7571         Bug #504643.
7572
7573 2007-12-20 15:30:09  Tim Janik  <timj@imendio.com>
7574
7575         * Makefile.decl: generate HTML reports for test-report perf-report full-report.
7576
7577 2007-12-20  Alexander Larsson  <alexl@redhat.com>
7578         
7579         * gdk/x11/gdkapplaunchcontext-x11.c:
7580         Update for gio API changes
7581
7582 2007-12-20  Richard Hult  <richard@imendio.com>
7583
7584         * gdk/quartz/GdkQuartzWindow.c:
7585         * gdk/quartz/GdkQuartzWindow.h: Make manual resizing smoother by
7586         processing events after changing the size.
7587
7588 2007-12-20  Richard Hult  <richard@imendio.com>
7589
7590         * modules/other/gail/gailwindow.c: (gail_window_get_mdi_zorder):
7591         Add stub for quartz to fix build.
7592
7593 2007-12-20  Christian Persch  <chpe@gnome.org>
7594
7595         * modules/other/gail/Makefile.am:
7596         * modules/other/gail/gailimage.c: (gail_image_class_init),
7597         (gail_image_init), (elide_underscores), (gail_image_get_name),
7598         (atk_image_interface_init), (gail_image_finalize):
7599         * modules/other/gail/gailimage.h:
7600         R modules/other/gail/gailintl.h:
7601         * po/POTFILES.skip: Use the stock item's label as the name of the
7602         accessible in gailimage.c. Bug #504246.
7603
7604 2007-12-19  Mathias Hasselmann  <mathias@openismus.com>
7605
7606         Avoid some compiler warnings and remove obsolete code. (#339540)
7607
7608         * gtk/gtkcalendar.c: Change week and year variable in
7609         calendar_paint_week_numbers from gint to guint. Remove obsolete "#if
7610         0" block from calendar_paint_day: The feature in question is handled
7611         few lines above. Cast data returned by gtk_selection_data_get_text()
7612         to (gchar*) in gtk_calendar_drag_data_received.
7613
7614 2007-12-19 17:05:31  Tim Janik  <timj@imendio.com>
7615
7616         * modules/other/Makefile.am: include Makefile.decl to unbreak test rules.
7617
7618 2007-12-19  Johan Dahlin  <johan@gnome.org>
7619
7620         * tests/buildertest.c (test_object_properties): 
7621         Add another call to gtk_builder_add_string after using
7622         delayed properties, as reported in #504393 but already
7623         fixed in #495769.
7624
7625 2007-12-18  Christian Persch  <chpe@gnome.org>
7626
7627         * configure.in:
7628         * docs/reference/Makefile.am:
7629         * docs/reference/libgail-util/*:
7630         * gail-uninstalled.pc.in:
7631         * gail.pc.in:
7632         * modules/Makefile.am:
7633         * modules/other/Makefile.am:
7634         * modules/other/gail/*:
7635         * modules/other/gail/libgail-util/*:
7636         * po/POTFILES.skip: Integrate gail into gtk+. Bug #169488.
7637
7638 2007-12-17  Matthias Clasen  <mclasen@redhat.com>
7639
7640         * gtk/gtksettings.c: Add a gtk-im-module GTK setting
7641         * gdk/win32/gdkproperty-win32.c: 
7642         * gdk/x11/gdksettings.c: ...and back it by a Gtk/IMModule X setting.
7643
7644         * gtk/gtkimmodule.[hc]: 
7645         * gtk/gtkimmulticontext.[hc]: When determining the default context,
7646         look at the gtk-im-module setting, and listen for changes to the
7647         setting.  (#502446, Akira Tagoh)
7648
7649 2007-12-17  Kristian Rietveld  <kris@imendio.com>
7650
7651         * gtk/gtktooltip.c (gtk_tooltip_finalize),
7652         (gtk_tooltip_set_last_window): use a weak pointer to set last_window
7653         to NULL as soon as it's destroyed.  (#496546, patch from
7654         Benjamin Berg).
7655
7656 2007-12-17  Kristian Rietveld  <kris@imendio.com>
7657
7658         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
7659         always determine what arrow to show if show_sort_indicator is true.
7660         (#352738, Chris Vine).
7661
7662 2007-12-16  Mathias Hasselmann  <mathias@openismus.com>
7663
7664         Prevent assertion failure in gtk_paned_find_neighbours. (#503824,
7665         Sébastien Granjoux)
7666
7667         * gtk/gtkpaned.c: Call gtk_container_forall instead of
7668         gtk_container_foreach in get_child_panes.
7669
7670 2007-12-15  Xan Lopez  <xan.lopez@nokia.com>
7671
7672         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_reorder):
7673
7674         Plug leak: When reordering the info in the list the old node is
7675         removed but not freed. (#503569)
7676
7677 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7678
7679         * gdk/directfb/gdkcursor-directfb.c: (gdk_cursor_new_for_display):
7680         Use u32 instead of __u32 and u8 instead of __u8 as the other types
7681         are deprecated since DirectFB 1.0.0. If compiling with an older
7682         version define the new type name to the old types. Fixes bug #503190.
7683
7684 2007-12-14  Ray Strode  <rstrode@redhat.com>
7685
7686         * gtk/gtkwidget.c: Suggest g_signal_connect (..., "realize", ...)
7687         instead of g_signal_connect_after (..., "realize", ...) as an
7688         alternative to gtk_widget_realize () (bug 503537).
7689
7690 2007-12-14  Michael Natterer  <mitch@imendio.com>
7691
7692         * gdk/gdkinternals.h
7693         * gdk/gdkapplaunchcontext.h: #include <gio/gio.h> instead of
7694         individual files.
7695
7696         * gdk/gdkapplaunchcontext.c
7697         * gdk/x11/gdkapplaunchcontext-x11.c: remove all gio includes, the
7698         header already includes everything now.
7699
7700 2007-12-14  Mathias Hasselmann  <mathias@openismus.com>
7701
7702         Correct "Since:" tags for GtkPageSetup and GtkPrintSettings as
7703         next stable release shall be 2.16, not 2.14 - even if disagree.
7704
7705         * gtk/gtkpagesetup.c, gtk/gtkprintsettings.c: s/2.14/2.16/
7706
7707 2007-12-14  Mathias Hasselmann  <mathias@openismus.com>
7708
7709         Change GtkToolItem to retrieve its properties from GtkToolShell
7710         interface, instead of relying on being child of a GtkToolbar.
7711         (#5034079)
7712
7713         * gtk/gtk.symbols, docs/reference/gtk/gtk-docs.sgml,
7714         docs/reference/gtk/gtk-sections.txt: Add GtkToolShell symbols.
7715         * docs/reference/gtk/tmpl/gtktoolitem.sgml: Move section docs inline.
7716         * gtk/gtktoolbar.c: Implement GtkToolShellIface.
7717         * gtk/gtktoolbar.h: Remove _gtk_toolbar_rebuild_menu.
7718         * gtk/gtktoolitem.c: Use GtkToolShell, instead of GtkToolbar.
7719         Take section docs from template file and update them for GtkToolShell.
7720         * gtk/Makefile.am: Add gtk/gtktoolshell.c and gtk/gtktoolshell.h.
7721         * gtk/gtktoolshell.c, gtk/gtktoolshell.h: New GtkToolShellIface.
7722
7723 2007-12-14  Mathias Hasselmann  <mathias@openismus.com>
7724
7725         Extract loading of GtkPageSetup and GtkPrintSettings from their
7726         *_new_*() functions and move that code into separate
7727         *_load_*() functions (#475565).
7728
7729         * gtk/gtk.symbols, gtk/gtkpagesetup.c, gtk/gtkpagesetup.h:
7730         Extract gtk_page_setup_load_file, gtk_page_setup_load_key_file,
7731         gtk_print_settings_load_file and gtk_print_settings_load_key_file.
7732         Change the matching *_new_*() functions to use those functions.
7733
7734 2007-12-14  Matthias Clasen  <mclasen@redhat.com>
7735
7736         * gtk/gtk.symbols:
7737         * gtk/gtktooltip.[hc]: Add gtk_tooltip_set_icon_from_icon_name().
7738
7739 2007-12-14  Kristian Rietveld  <kris@imendio.com>
7740
7741         * gtk/tests/liststore.c:
7742         * gtk/tests/treestore.c: added tests for insertion functions.
7743
7744 Thu Dec 13 13:14:50 2007  Søren Sandmann  <sandmann@redhat.com>
7745
7746         * Add RandR 1.2 support
7747
7748         - New monitors_changed signal - New API to get width/height of
7749           monitors, and the name of the plug
7750
7751 2007-12-13  Kristian Rietveld  <kris@imendio.com>
7752
7753         * gtk/tests/liststore.c:
7754         * gtk/tests/treestore.c: test the move and swap functions on a
7755         store with only one node.
7756
7757 2007-12-13  Kristian Rietveld  <kris@imendio.com>
7758
7759         * gtk/gtktestutils.c (gtk_test_init): add a call to
7760         g_test_bug_base().
7761
7762         * gtk/tests/treeview-scrolling.c: add g_test_bug() calls to
7763         appriopriate tests.
7764
7765 2007-12-13  Kristian Rietveld  <kris@imendio.com>
7766
7767         * gtk/tests/liststore.c:
7768         * gtk/tests/treestore.c: start composing tests for the list and tree
7769         store.
7770
7771         * gtk/tests/treeview-scrolling.c: added automated tests for
7772         GtkTreeView's scrolling "subsystem".
7773
7774         * gtk/tests/Makefile.am: updated; added new test programs.
7775
7776 2007-12-13  Mathias Hasselmann  <mathias@openismus.com>
7777
7778         Make the code compile again after the GdkAppLaunchContext changes.
7779
7780         * configure.in: Add gio-2.0 to GDK_PACKAGES.
7781         * gdk/gdkinternals.h: Include <gio/gappinfo.h>.
7782
7783 2007-12-12  Matthias Clasen  <mclasen@redhat.com>
7784
7785         * gdk/gdkapplaunchcontext.c: Add docs
7786
7787 2007-12-12  Matthias Clasen  <mclasen@redhat.com>
7788
7789         * gdk/gdkapplaunchcontext.[hc]: Implement GAppLaunchContext 
7790         in gdk, providing startup notification.  (#503203)
7791
7792         * gdk/x11/gdkapplaunchcontext-x11.c: 
7793         * gdk/win32/gdkapplaunchcontext-win32.c:
7794         * gdk/quartz/gdkapplaunchcontext-quartz.c: 
7795         * gdk/directfb/gdkapplaunchcontext-directfb.c: Backend-specific
7796         parts. All but X11 are just empty stubs for now.
7797
7798         * gdk/gdk.symbols:
7799         * gdk/gdkinternals.h:
7800         * gdk/Makefile.am:
7801         * gdk/x11/Makefile.am: 
7802         * gdk/win32/Makefile.am: 
7803         * gdk/quartz/Makefile.am: 
7804         * gdk/directfb/Makefile.am: Necessary glue.
7805
7806 2007-12-12  Mathias Hasselmann  <mathias@openismus.com>
7807
7808         * gtk/gtkdnd.c: Another attempt to improve gtk_drag_dest_set docs.
7809
7810 2007-12-11  Attilio Fiandrotti  <attilio.fiandrotti@gmail.com>
7811
7812         * gdk/directfb/gdktestutils-directfb.c:
7813         * gdk/directfb/Makefile.am: Applied a patch by Claudio Ciccani
7814         which adds testing functions to the DirectFB backend.
7815
7816 2007-12-11  Attilio Fiandrotti  <attilio.fiandrotti@gmail.com>
7817
7818         * gdk/directfb/gdkdrawable-directfb.c: Applied a patch by Claudio
7819         Ciccani which fixes the mixing of gdk and cairo rendering.
7820
7821 2007-12-11  Mathias Hasselmann  <mathias@openismus.com>
7822
7823         * gtk/gtkdnd.c, gtk/gtkwidget.c: Mention impact of GtkDestDefaults
7824         on "drag-motion" handlers. Clearify documentation for
7825         gtk_drag_dest_set.
7826
7827 2007-12-11 15:44:01  Tim Janik  <timj@imendio.com>
7828
7829         * buildertest.c: made unnecessarily exported symbols static.
7830         switched g_return_if_fail() statements in tests to assertions.
7831         special cased currently failing Widget/accesibility test to
7832         run only for g_test_thorough(), so it doesn't break make check.
7833         some coding style fixes.
7834
7835         * Makefile.am: added buildertest to TEST_PROGS.
7836
7837 2007-12-11  Stefan Kost  <ensonic@users.sf.net>
7838
7839         * docs/tutorial/gtk-tut.sgml:
7840           Use gtk_widget_get_parent_window() instead of widget->parent->window.
7841
7842 2007-12-10  Richard Hult  <richard@imendio.com>
7843
7844         * gdk/quartz/Makefile.am:
7845         * gdk/quartz/gdkquartz.h:
7846         * gdk/quartz/gdkwindow-quartz.c: Install backend specific
7847         header (bug #405915). Also add a getter for the toplevel nswindow.
7848
7849 2007-12-10  Richard Hult  <richard@imendio.com>
7850
7851         * gdk/quartz/gdkdrawable-quartz.c:
7852         (gdk_quartz_drawable_get_context),
7853         (gdk_quartz_drawable_release_context):
7854         * gdk/quartz/gdkeventloop-quartz.c: (gdk_event_prepare),
7855         (gdk_event_check), (gdk_event_dispatch), (poll_func):
7856         * gdk/quartz/gdkwindow-quartz.h: Replace the autorelease pools
7857         used for each drawing context and in prepare, dispatch and poll
7858         with one that exists across each main loop iteration. Fixes leaks
7859         on leopard and protects against future leaks introduce when the
7860         underlying system changes again (bug #492977).
7861
7862 2007-12-10  Richard Hult  <richard@imendio.com>
7863
7864         * gdk/quartz/gdkwindow-quartz.c: (move_resize_window_internal):
7865         Fix the check for no changes to position and size.
7866
7867 2007-12-10  Richard Hult  <richard@imendio.com>
7868
7869         * gdk/quartz/GdkQuartzView.c: Ignore drawRect calls with zero
7870         sized areas at (0, 0), patch from Paul Davis.
7871
7872 2007-12-10  Richard Hult  <richard@imendio.com>
7873
7874         * gdk/quartz/gdkprivate-quartz.h: 
7875         * gdk/quartz/gdkeventloop-quartz.c:
7876         (_gdk_quartz_event_loop_get_pending),
7877         (_gdk_quartz_event_loop_check_pending),
7878         (_gdk_quartz_event_loop_release_event), (gdk_event_prepare),
7879         (gdk_event_check), (gdk_event_dispatch):
7880         * gdk/quartz/gdkevents-quartz.c: (gdk_events_pending)
7881         (_gdk_events_queue): Fix a bug where we could end up trying to
7882         handle the same event more than once. Based on patch from Paul
7883         Davis.
7884
7885 2007-12-10  Tor Lillqvist  <tml@novell.com>
7886
7887         * gtk-zip.sh.in: Include bin/gtk-builder-convert in the dev
7888         package. (#502850)
7889
7890 2007-12-10  Matthias Clasen  <mclasen@redhat.com>
7891
7892         * gtk/gtknotebook.c (gtk_notebook_real_remove): Another fix
7893         to avoid further fallout from the fix for bug 388321.
7894
7895 2007-12-09 09:56:06  Attilio Fiandrotti  <attilio.fiandrotti@gmail.com>
7896
7897         * gdk/directfb/gdkgc-directfb.c:
7898         * gdk/directfb/gdkdrawable-directfb.c:
7899         * gdk/directfb/gdkdirectfb.h:
7900         * gdk/directfb/gdkwindow-directfb.c:
7901         * gdk/directfb/gdkprivate-directfb.h: Committed several patches
7902         (window_flip_group, no_background_pixmap_fix, opt_temp_region2,
7903         blit_after_cairo_fix, rect_clip_fix, fast_blend, opt_temp_region_etc,
7904         opt_clip_region_and_fill_rects, no_state_resets) by Denis Oliver Knopp
7905         which are expected to improve the performance of the DirectFB backend.
7906         Experimental pieces of code (GDK_DIRECTFB_NO_EXPERIMENTS) are disabled.
7907
7908 2007-12-07  Matthias Clasen  <mclasen@redhat.com>
7909
7910         * gtk/gtkcontainer.c: Correct the documentation of child
7911         property getter arguments.  (#501992, David Brigada)
7912
7913 2007-12-07  Matthias Clasen  <mclasen@redhat.com>
7914
7915         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): Don't
7916         leak pixbufs.  (#502250, Yevgen Muntyan)
7917
7918 2007-12-07  Yevgen Muntyan  <muntyan@tamu.edu>
7919
7920         * gtk/gtkprintunixdialog.c:
7921         * gtk/gtkpagesetupunixdialog.c: added alternative button order in
7922         Print and Page Setup dialogs (#502202).
7923
7924 2007-12-07 13:16:33  Tim Janik  <timj@imendio.com>
7925
7926         * Makefile.decl: skip tests if gdktarget!=x11, since GUI tests need
7927         Xvfb. only start Xvfb if TEST_PROGS is not empty. moved "set -e" out
7928         of XVFB_START, since it's the GTESTER invokation that needs this.
7929
7930 2007-12-06  Tommi Komulainen  <tommi.komulainen@iki.fi>
7931
7932         * gdk-pixbuf/gdk-pixbuf.symbols:
7933         * gdk/gdk.symbols:
7934         * gdk/gtk.symbols: Remove trailing whitespace that can trigger false
7935         positives in abicheck.sh
7936
7937 2007-12-06 18:45:06  Attilio Fiandrotti  <attilio.fiandrotti@gmail.com>
7938
7939         * gdk/directfb/gdkevents-directfb.c: Committed a patch by DOK to fix
7940         GDK events generations in the DirectFB backend.
7941
7942 2007-12-06 13:55:06  Tim Janik  <timj@imendio.com>
7943
7944         * Makefile.decl: replaced seq(1) invokation for X11 ids with a hardcoded
7945         set of likely unused display ids, because MacOS has no seq(1) command.
7946
7947 2007-12-06  Richard Hult  <richard@imendio.com>
7948
7949         * gdk/quartz/gdkevents-quartz.c:
7950         (synthesize_crossing_events_for_ns_event): Fix warning when
7951         switching spaces in leopard.
7952
7953 2007-12-06 13:38:36  Tim Janik  <timj@imendio.com>
7954
7955         * tests/floatingtest.c: ported to new testing framework.
7956
7957         * tests/Makefile.am: run floatingtest as testing framework test.
7958
7959 2007-12-06 10:44:52  Tim Janik  <timj@imendio.com>
7960
7961         * tests/autotestfilechooser.c: majorly speed up execution by reducing
7962         timeouts and converting main loop sleeps to pending/iterate loops with
7963         very low priority async handlers. eliminate output for non-verbose
7964         tests. assert successfull subtests in all test functions. use testing
7965         framework in main().
7966
7967         * tests/Makefile.am: add autotestfilechooser to TEST_PROGS, so it's
7968         executed inside Xvfb upon make check.
7969
7970 2007-12-06 08:23:38  Tim Janik  <timj@imendio.com>
7971
7972         * tests/objecttests.c: use string comparisons for string property
7973         values and get rid of referencing symbols in array initialization.
7974
7975 2007-12-05 18:59:59  Tim Janik  <timj@imendio.com>
7976
7977         * gtk+/Makefile.decl: run tests in current dir after setting up the
7978         logging directory, so their results get properly merged into the
7979         resulting test log.
7980
7981         * gtk+/gtk/gtktestutils.[hc]: added gtk_test_list_all_types() for
7982         tests to loop over registered Gdk/Gtk+ types.
7983
7984         * gtk+/tests/objecttests.c: new test program, implements automated
7985         property tests. several properties are blacklisted because they
7986         seem to trigger Gdk/Gtk+ bugs. ./objecttests -m thorough --verbose
7987         can be used to test blacklisted properties and see which proprty failed.
7988
7989 2007-12-04  Richard Hult  <richard@imendio.com>
7990
7991         * gdk/quartz/gdkwindow-quartz.c: (_gdk_windowing_window_init):
7992         Fully initialize the root window, fixes bug #501583.
7993
7994 2007-12-04  Matthias Clasen  <mclasen@redhat.com>
7995
7996         * gtk/gtknotebook.c: Modify the tab-label-destroy fix to not
7997         crash epiphany.
7998
7999 2007-12-03  Richard Hult  <richard@imendio.com>
8000
8001         * gtk/gtkquartz.c: (_gtk_quartz_set_selection_data_for_pasteboard):
8002         Don't crash when dragging from a source that doesn't support uri
8003         lists (bug #499868, Paul Davis).
8004
8005 2007-12-03  Richard Hult  <richard@imendio.com>
8006
8007         * gdk/quartz/gdkwindow-quartz.c:
8008         (gdk_window_impl_quartz_begin_paint_region): Don't crash when a
8009         parent relative bg pixmap is set, and no parent has a bg
8010         pixmap. Fixes bug #500804.
8011
8012 2007-12-03  Matthias Clasen  <mclasen@redhat.com>
8013
8014         Two optimizations for icon cache lookups.
8015
8016         * gtk/gtkiconcache.[hc]:
8017         * gtk/gtkicontheme.c: Remember the directory index for
8018         subdirectories, instead of running over the directory list
8019         again and again.
8020
8021         * gtk/gtkiconcache.c (find_image_offset): Remember the last 
8022         chain and try it first; this helps with the the usage patterns
8023         in gtkicontheme.c, where the same icon is queried for a lot
8024         of subdirectories.
8025
8026 2007-12-03 15:18:17  Tim Janik  <timj@imendio.com>
8027
8028         * gtk/Makefile.am (gtktypefuncs.c): use 'grep -o' to extract _get_type
8029         functions from header files. this should be portable across linux and
8030         Mac OS, unlike the previpous sed expression.
8031
8032 2007-12-1  Cody Russell  <bratsche@gnome.org>
8033
8034         * gtk/gtkpaned.c: (gtk_paned_set_position) [Win32]:
8035         On Windows, queue a redraw of child2 whenever we set
8036         the pane handle position.  This is unfortunately kind
8037         of hacky, but solves the visual artifacts that were
8038         occuring on at least certain types of child widgets
8039         (e.g., text views and tree views) that are inside
8040         horizontal or vertical panes. (#144269)
8041
8042 2007-11-30  Matthias Clasen  <mclasen@redhat.com>
8043
8044         * gtk/gtkrc.c: Fix doc typos.  (#500672, David Lambert)
8045
8046 2007-11-29  Matthias Clasen  <mclasen@redhat.com>
8047
8048         * gtk/gtkmenuitem.c (gtk_menu_item_paint): Remove leftover
8049         debug spew.
8050
8051 2007-11-29  Matthias Clasen  <mclasen@redhat.com>
8052
8053         * gtk/Makefile.am: Fix ordering of subdirs.
8054
8055 2007-11-28  Tor Lillqvist  <tml@novell.com>
8056
8057         A proper build of GNU libintl is supposed to export the variable
8058         _nl_msg_cat_cntr. configure looks for that variable in order to
8059         recognize GNU gettext. If it sees that it is indeed GNU gettext
8060         that is used, it decides to install message catalogs in
8061         share/locale, otherwise in lib/locale. Until now on Windows I have
8062         built GTK+ against a build of GNU gettext that did not export
8063         _nl_msg_cat_cntr. But this will change, so we can't assume message
8064         catalogs are always in lib/locale.
8065
8066         * gtk/gtkmain.c: (_gtk_get_localedir) [Win32]: Rework to handle
8067         GTK_LOCALEDIR being either in "lib" or "share". Move the function
8068         before the inclusion of gtkprivate.h so that it sees the original
8069         GTK_LOCALEDIR.
8070
8071         * gtk-zip.sh.in: Check whether the message catalogs are in
8072         share/locale or lib/locale.
8073
8074         * config.h.win32.in: Tack on "/share/locale" to GTK_LOCALEDIR so
8075         that the code in _gtk_get_localedir() will find the slashes.
8076
8077 2007-11-28  Tor Lillqvist  <tml@novell.com>
8078
8079         * gtk/Makefile.am: Improve portability. The -o option is present
8080         only in newish GNU egreps. Use one more sed in the pipeline
8081         instead.
8082
8083 2007-11-28  Tor Lillqvist  <tml@novell.com>
8084
8085         Fix #375893, patch by Ben Hague:
8086
8087         * gtk/gtkfilesystemwin32.c (get_viewable_logical_drives): Wrapper
8088         around GetLogicalDrives() that takes also the viewable drive
8089         restrictions in the Registry (which are usually the result of an
8090         Active Directory Group Policy) into account.
8091
8092         (check_volumes, gtk_file_system_win32_list_volumes) Call
8093         get_viewable_logical_drives() instead of GetLogicalDrives().
8094
8095 2007-11-27  Matthias Clasen <mclasen@redhat.com>
8096
8097         * gtk/gtkwindow.c (gtk_window_move_resize): Zero some
8098         variables to silence valgrind.  (#495124, Morten Welinder)
8099
8100 2006-11-26  Ryan Lortie  <desrt@desrt.ca>
8101
8102         * docs/reference/gtk/tmpl/gtkbuildable.sgml: add clarification stating
8103         that the construct_child function is responsible for returning a
8104         reference.
8105         * gtkbuilder.c (_gtk_builder_construct): remove g_object_ref() for
8106         objects from constructors
8107         * gtkuimanager.c (gtk_ui_manager_buildable_construct_child): add
8108         g_object_ref() to this construction function (it's the only
8109         implementer in GTK)
8110
8111         Fixes #496645.
8112
8113 2006-11-26  Ryan Lortie  <desrt@desrt.ca>
8114
8115         * gtkbuilder.c: remove concept of root objects and just refcount
8116         all objects in the builder.  Fixes #496651.
8117
8118 2007-11-26  Ryan Lortie  <desrt@desrt.ca>
8119
8120         * tests/buildertest.c (test_window): fix invalid free
8121
8122 2007-11-26  Josselin Mouette <joss@malsain.org>
8123
8124         reviewed by: Federico Mena Quintero
8125
8126         * gtk/gtkfilechooserdefault.c: (shortcuts_append_paths),
8127         (shortcuts_add_bookmarks), (shortcuts_selection_changed_cb),
8128         (shortcuts_list_create), (gtk_file_chooser_default_should_respond):
8129         Make the shortcuts activate with a single click. (#148828)
8130         Fix a few things affected by the change:
8131           - Set selection mode to GTK_SELECTION_SINGLE to allow a case 
8132             where no shortcut is selected.
8133           - Don't activate a shortcut in the response callback.
8134           - Filter out duplicate entries in volumes and bookmarks to 
8135             avoid the selection to change when reordering them with DnD.
8136
8137 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8138
8139         * gtk/gtkmain.c:
8140         * gtk/gtknotebook.c:
8141         * gtk/gtkplugprivate.h:
8142         * gtk/gtksocket.c:
8143         * gtk/gtksocketprivate.h:
8144         * gtk/gtktable.c: Fix up some doc comments to shut up gtk-doc.
8145
8146 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8147
8148         * configure.in: Use $CUPS_CONFIG instead of hardcoded cups-config.
8149         (#495574, Richard Hult)
8150
8151 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8152
8153         * gtk/gtkprintunixdialog.c: Change some labels to be clearer.
8154         String change !   (#376361, Sven Neumann)
8155
8156 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8157
8158         * gtk/gtknotebook.c (gtk_notebook_update_labels): Short-circuit on
8159         destroy.
8160         (gtk_notebook_destroy): Destroy tab_label widgets. (#388321, Morten
8161         Welinder)
8162
8163 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8164
8165         * gtk/gtkassistant.c: Improve alternative button
8166         ordering.  (#476827, Yevgen Muntyan, patch by Carlos Garnacho)
8167
8168 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8169
8170         * gtk/gtkcalendar.c: Fix a theming problem with colors
8171         in GtkCalendar.  (#499703, Michael Hofmann)
8172
8173 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8174
8175         * configure.in: Bump glib requirement to 2.15.0 (for g_test_init)
8176
8177 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8178
8179         Use templates for glib-mkenums calls instead of 
8180         complicated commandlines in Makefiles.  (#429910)
8181
8182         * gdk-pixbuf/Makefile.am:
8183         * gdk/Makefile.am: 
8184         * gtk/Makefile.am: 
8185         * perf/Makefile.am: Use templates for glib-mkenums
8186
8187         * gdk-pixbuf/gdk-pixbuf-enum-types.[ch].template:
8188         * gdk/gdkenumtypes.[ch].template: 
8189         * gtk/gtktypebuiltings.[ch].template: 
8190         * perf/typebuiltins.[ch].template: The templates
8191
8192 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8193
8194         * gtk/gtkfilechooserbutton.c:
8195         * gtk/gtktoolbar.c: Don't use guint8 for bitfields, since
8196         some compilers choke on that.  (#467722)
8197
8198 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
8199
8200         * gtk/gtkaboutdialog.c (gtk_about_dialog_set_website): Add a note
8201         about hook setup.  (#425004, Emmanuele Bassi)
8202
8203 2007-11-26  Tor Lillqvist  <tml@novell.com>
8204
8205         * gdk/win32/gdkwindow-win32.c (gdk_window_fullscreen): Use the
8206         monitor the window currently is on, not always the primary
8207         monitor. (#463865, Tim Evans)
8208
8209 2007-11-26  Tor Lillqvist  <tml@novell.com>
8210
8211         * gdk/win32/gdktestutils-win32.c: New file, dummy implementations.
8212
8213         * gdk/win32/Makefile.am: Add it.
8214
8215 2007-11-26  Tor Lillqvist  <tml@novell.com>
8216
8217         * configure.in: Don't add jasper to all_loaders if no libjasper.
8218
8219 2007-11-25  Bastien Nocera  <hadess@hadess.net>
8220
8221         * configure.in: Add detection for libjasper, used by the
8222         gdk-pixbuf JPEG2000 loader
8223
8224 2007-11-25  Matthias Clasen  <mclasen@redhat.com>
8225
8226         * configure.in: Require gtk-doc 1.8
8227
8228         * */*.c: Use gtk-doc abbreviations for examples in docs.
8229
8230 2007-11-25  Matthias Clasen  <mclasen@redhat.com>
8231
8232         * gtk/gtktreeview.c (gtk_tree_view_set_show_expanders): Fix a
8233         typo.  (#498922)
8234
8235 2007-11-25  Matthias Clasen  <mclasen@redhat.com>
8236
8237         * gtk/gtkdialog.c: Move signal and property documentation inline,
8238         fix a problem with the ::response signal docs.  (#499133, Josselin
8239         Mouette)
8240
8241 2007-11-22 15:48:26  Tim Janik  <timj@imendio.com>
8242
8243         * Makefile.decl: initialize automake variables EXTRA_DIST and
8244         TEST_PROGS for unconditional appending via += in other makefiles.
8245         define recursive test targets: test, test-report, perf-report,
8246         full-report, as described here:
8247       http://mail.gnome.org/archives/gtk-devel-list/2007-November/msg00000.html
8248         the test targets will execute Gtk+ test programs within an Xvfb session.
8249
8250         * gtk/gtktestutils.c: call g_test_init() from gtk_test_init().
8251
8252         * gtk/tests/testing.c: use g_test_add_func() to register tests and use
8253         g_test_run() to run the tests to integrate with the testing framework.
8254
8255         * gtk/tests/Makefile.am: removed exemplary testing rules.
8256
8257         * Makefile.am, gtk/tests/Makefile.am, gtk/Makefile.am:
8258         * gtk/xdgmime/Makefile.am, gtk/theme-bits/Makefile.am:
8259         * tests/Makefile.am, docs/reference/gdk-pixbuf/Makefile.am:
8260         * docs/reference/gdk/Makefile.am, docs/reference/gtk/Makefile.am:
8261         * docs/reference/Makefile.am, docs/tools/Makefile.am:
8262         * docs/tutorial/Makefile.am, docs/faq/Makefile.am, docs/Makefile.am:
8263         * gdk-pixbuf/pixops/Makefile.am, gdk-pixbuf/Makefile.am:
8264         * demos/gtk-demo/Makefile.am, demos/Makefile.am:
8265         * modules/input/Makefile.am, modules/printbackends/file/Makefile.am:
8266         * modules/printbackends/test/Makefile.am, modules/printbackends/Makefile.am:
8267         * modules/printbackends/cups/Makefile.am, modules/printbackends/lpr/Makefile.am:
8268         * modules/engines/ms-windows/Theme/gtk-2.0/Makefile.am:
8269         * modules/engines/ms-windows/Theme/Makefile.am:
8270         * modules/engines/ms-windows/Makefile.am:
8271         * modules/engines/Makefile.am,  modules/engines/pixbuf/Makefile.am:
8272         * modules/Makefile.am, m4macros/Makefile.am, perf/Makefile.am:
8273         * contrib/Makefile.am, contrib/gdk-pixbuf-xlib/Makefile.am:
8274         * gdk/directfb/Makefile.am, gdk/linux-fb/Makefile.am:
8275         * gdk/quartz/Makefile.am, gdk/win32/rc/Makefile.am:
8276         * gdk/win32/Makefile.am, gdk/x11/Makefile.am, gdk/Makefile.am:
8277         include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
8278
8279 2007-11-22  Matthias Clasen  <mclasen@redhat.com>
8280
8281         * modules/printbackends/cups/gtkcupsutils.c: Fix a casting problem.
8282         (#485662, patch by Herbert Valerio Riedel)
8283
8284 2007-11-22  Matthias Clasen  <mclasen@redhat.com>
8285
8286         * gtk/gtktextiter.c: Fix an aliasing problem.  (#347585, Ed Catmur)
8287
8288 2007-11-21  Richard Hult  <richard@imendio.com>
8289
8290         * gdk/quartz/Makefile.am: * gdk/quartz/gdktestutils-quartz.c: Add
8291         stubs for the testing functions to fix the build.
8292
8293 2007-11-21  Behdad Esfahbod  <behdad@gnome.org>
8294
8295         * tests/testrichtext.c (setup_buffer): Fix C89 compilation issue.
8296         (#467711, The Written Word)
8297
8298 2007-11-21  Ross Burton  <ross@openedhand.com>
8299
8300         * gdk/x11/gdksettings.c:
8301         Add xsetting for gtk-scrolled-window-placement (#458103).
8302
8303 2007-11-21  Behdad Esfahbod  <behdad@gnome.org>
8304
8305         * gtk/gtkmenuitem.c (gtk_menu_item_class_init),
8306         (gtk_menu_item_paint): Make GtkMenuItem's arrow size themeable.
8307         (#469239, Michael Natterer)
8308
8309 2007-11-21  Behdad Esfahbod  <behdad@gnome.org>
8310
8311         * gdk/x11/gdksettings.c (gdk_settings_names, gdk_settings_map): Add
8312         Gtk/EnableAccels and Gtk/EnableMnemonics xsettings for
8313         gtk-enable-accels and gtk-enable-mnemonics GtkSettings respectively.
8314         (#436536, Tommi Komulainen)
8315
8316 2007-11-21  Matthias Clasen  <mclasen@redhat.com>
8317
8318         * gtk/gtktoolbar.c: Fix the default value of the toolbar-style
8319         property.  (#489782, Jan Janech)
8320
8321 2007-11-20  Matthias Clasen  <mclasen@redhat.com>
8322
8323         * gtk/gtkimage.c (animation_timeout): Avoid drawing one too many
8324         frames.  (#107398, Owen Taylor, Miguel Gomez)
8325
8326 Tue Nov 20 15:19:42 2007 +0100 Tim Janik
8327
8328         Moved Gdk test functions from Gtk+ to Gdk test utils.
8329
8330         * gdk/Makefile.am: added gdktestutils.h to public includes.
8331
8332         * gdk/gdk.h: added gdktestutils.h to public includes.
8333
8334         * gdk/gdk.symbols: added gdk_test_simulate_button,
8335         gdk_test_simulate_key, gdk_test_render_sync.
8336
8337         * gdk/gdktestutils.h: new file, added prototypes for
8338         gdk_test_simulate_button, gdk_test_simulate_key, gdk_test_render_sync.
8339
8340         * gdk/x11/Makefile.am: build gdktestutils-x11.c.
8341
8342         * gdk/x11/gdktestutils-x11.c: implemented gdk_test_simulate_button,
8343         gdk_test_simulate_key, gdk_test_render_sync.
8344
8345         * gtk/gtktestutils.c:
8346         * gtk/gtktestutils.h:
8347         * gtk/gtk.symbols: removed gtk_test_simulate_button
8348         gtk_test_simulate_key, gtk_test_xserver_render_sync.
8349
8350         * gtk/tests/testing.c: call gdk_test_render_sync.
8351
8352 Thu Nov 15 13:11:39 2007 +0100 Tim Janik
8353
8354         Added unit tests for Gtk+ testing utilities.
8355
8356         * gtk/tests/testing.c: added a sample test program that tests Gtk+ test
8357         utility functions. some g_test_* related portions are disabled and need
8358         to be enabled once Gtk+ depends on a new glib with the GLib testing
8359         framework integrated.
8360
8361         * gtk/tests/Makefile.am: new subdirectory to include quick Gtk+
8362         tests.  added exemplary test rules to run tests inside Xvfb. this
8363         needs to depend on gtester for full fledged testing.
8364
8365         * gtk/Makefile.am: build gtk+/gtk/tests, define
8366         -DGTK_ENABLE_BROKEN when collecting _get_type functions to catch
8367         e.g. gtk_text_get_type().
8368
8369         * configure.in: create gtk/tests/Makefile.in and gtk/tests/Makefile.
8370
8371 Thu Nov 15 11:55:34 2007 +0100 Tim Janik
8372
8373         Added Gtk+ testing utilities.
8374
8375         * gtk/gtktestutils.h, gtk/gtktestutils.c: added unit test utility
8376         functions.  for the most part, the functions herein involve
8377         navigating and interacting with dialog elements programatically,
8378         to automate user interaction tests of dialogs and widgets.
8379
8380         * gtk/gtk.h: include gtk/gtktestutils.h as public API.
8381
8382         * gtk/gtk.symbols: added gtk_test_* symbols.
8383
8384         * gtk/Makefile.am: include gtktestutils.h and gtktestutils.c into
8385         the build.  generate gtktypefuncs.c which contains a list of all
8386         _get_type functions in Gtk+ and Gdk.
8387
8388 2007-11-20  Bastien Nocera  <hadess@hadess.net>
8389
8390         * configure.in: add support for conditional icns gdk-pixbuf loader
8391         (Closes: #395738)
8392
8393 2007-11-19 10:31:26  Tim Janik  <timj@imendio.com>
8394
8395         * configure.in: updated version number to 2.15.0 for development.
8396
8397 2007-11-19 10:27:39  Tim Janik  <timj@imendio.com>
8398
8399         === Branch for 2.12 ===
8400