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