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