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