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