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