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