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