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