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