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