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