]> Pileus Git - ~andy/gtk/blob - ChangeLog
d3227ca064e012c8b79e91177008181eac149270
[~andy/gtk] / ChangeLog
1 2007-06-14  Johan Dahlin  <jdahlin@async.com.br>
2
3         * gtk/gtk.symbols: Add missing symbol 
4         gtk_text_layout_set_overwrite_mode
5
6 2007-06-14  Behdad Esfahbod  <behdad@gnome.org>
7
8         * gtk/gtknotebook.c (gtk_notebook_get_group_id): Fix compiler
9         warning. (#447586, Kazuki IWAMOTO)
10
11 2007-06-14  Tor Lillqvist  <tml@novell.com>
12
13         * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use
14         g_win32_get_windows_version() instead of _winver so that this
15         compiles on Cygwin, too. Not that I know if it makes sense to
16         build GTK+ with the Win32 backend for Cygwin, but some people want
17         to.
18
19 2007-06-13  Matthias Clasen  <mclasen@redhat.com>
20
21         * NEWS: Updates
22
23         * NEWS, README.in: Move the combobox note to the README,
24         where it seems more appropriate.
25
26 2007-06-13  Matthias Clasen  <mclasen@redhat.com>
27
28         * gtk/gtkwidget.c (gtk_widget_modify_cursor): Improve docs.
29         (#447396, Masatake YAMATO)
30
31 2007-06-14  Carlos Garnacho  <carlos@imendio.com>
32
33         * gtk/gtkcombobox.c: removed unused and hardly visible GtkFrame from
34         the menu widget hierarchy when ::appears-as-list is TRUE. (#435471)
35         * NEWS: add a note about repercussions of this change to RC files.
36
37 2007-06-13  Behdad Esfahbod  <behdad@gnome.org>
38
39         * gdk/directfb/gdkgc-directfb.c: #undef GDK_DISABLE_DEPRECATED to
40         get prototype for gdk_font_ref(). (#447163, Dann Frazier, Loïc Minier)
41
42 2007-06-13  Michael Natterer  <mitch@imendio.com>
43
44         * gtk/gtkmenuitem.[ch]: add "submenu" property. Fix
45         gtk_menu_item_set_submenu() to accept NULL submenus and deprecate
46         gtk_menu_item_remove_submenu() because we have a properly working
47         setter now (bug #447065).
48
49         * gtk/gtk.symbols: deprecate gtk_menu_item_remove_submenu().
50
51         * gtk/gtkcombobox.c: use gtk_menu_item_set_submenu() instead of
52         gtk_menu_item_remove_submenu().
53
54 2007-06-13  Cody Russell  <bratsche@gnome.org>
55
56         * gtk/gtkwidget.c: Fix inconsistency in GTK_WIDGET_SAVED_STATE
57         (#435840, Xan Lopez)
58
59 2007-06-13  Kristian Rietveld  <kris@imendio.com>
60
61         * gtk/gtk.symbols
62         * gtk/gtkfilesystem.[ch]: rename _gtk_file_system_create to
63         gtk_file_system_create to make it public and bring trunk back
64         in sync with gtk-2-10.
65
66         * gtk/gtkfilechooserdefault.c (set_file_system_backend): updated.
67
68 2007-06-13  Michael Natterer  <mitch@imendio.com>
69
70         * gtk/gtklabel.c (gtk_label_set_label): added calls to
71         g_object_freeze/thaw_notify() so gtk_label_get_text() doesn't
72         return the old text when called from a "notify::label" callback.
73
74 2007-06-13  Kristian Rietveld  <kris@imendio.com>
75
76         Audit of GtkTreeView coordinate system usage. (#142494).
77
78         * gtk/gtktreeview.[ch]: general documentation updates,
79         (gtk_tree_view_scroll_to_cell), (gtk_tree_view_get_dest_row_at_pos):
80         update coordinate translations,
81         (gtk_tree_view_tree_to_widget_coords),
82         (gtk_tree_view_widget_to_tree_coords): Deprecated,
83         (gtk_tree_view_convert_.*_coords): 6 new functions for doing
84         transformations between coordinate systems.
85
86         * gtk/gtk.symbols: updated.
87
88         * tests/testtooltips.c (query_tooltip_tree_view_cb): fix testcase
89         with new gtk_tree_view_convert_widget_to_bin_window_coords().
90
91         * docs/reference/gtk/Makefile.am
92         * docs/reference/gtk/images/tree-view-coordinates.png: add new image.
93
94         * docs/reference/gtk/tmpl/gtktreeview.sgml: eloborate on the
95         different coordinate systems.
96
97 2007-06-13  Kristian Rietveld  <kris@imendio.com>
98
99         * gtk/gtkcellrendererprogress.c
100         (gtk_cell_renderer_progress_class_init),
101         (gtk_cell_renderer_progress_init),
102         (gtk_cell_renderer_progress_[gs]et_property),
103         (gtk_cell_renderer_progress_render): Add orientation property and some
104         slight refactoring here and there.  (Fixes #344836, reported by
105         Benjamin Montgomery).
106
107 2007-06-12  Matthias Clasen  <mclasen@redhat.com>
108
109         * gdk/Makefile.am: Remove linux-fb from DIST_SUBDIRS
110
111         * configure.in: Remove linux-fb parts.
112
113 2007-06-12  Michael Natterer  <mitch@imendio.com>
114
115         * gtk/gtkiconview.c (update_text_cell): use PANGO_BREAK_WORD_CHAR
116         instead of PANGO_BREAK_WORD so the text cell doesn't overflow the
117         wrap-width if there is no whitespace found to break at.
118         Fixes bug #446107.
119
120 2007-06-12  Kristian Rietveld  <kris@imendio.com>
121
122         Fix #410815, reported by Lucas Rocha.
123
124         * gtk/gtkiconview.c (gtk_icon_view_layout): determine a suitable
125         wrap-width with the first icon, if it exists,
126         (adjust_wrap_width): try to use icon_view->priv->item_width
127         if available,
128         (gtk_icon_view_set_cell_data): don't call adjust_wrap_width here,
129         which caused changes in wrap-width during the layouting process and
130         resulted in layouting artefacts,
131         (update_text_cell): don't set the wrap-width property, this should
132         be handled by adjust_wrap_width.
133
134 2007-06-12  Behdad Esfahbod  <behdad@gnome.org>
135
136         * gdk/gdkwindow.c (gdk_window_get_pointer): Improve docs.
137         (#446138, Björn Lindqvist)
138
139 2007-06-12  Yevgen Muntyan  <muntyan@tamu.edu>
140
141         * gtk/gtkentry.c (gtk_entry_expose), (gtk_entry_toggle_overwrite),
142         (gtk_entry_draw_cursor):
143         * gtk/gtkstyle.c (_gtk_widget_get_cursor_gc),
144         (_gtk_widget_get_cursor_color):
145         * gtk/gtkstyle.h:
146         * gtk/gtktextdisplay.c (gtk_text_renderer_prepare_run),
147         (gtk_text_renderer_draw_shape), (text_renderer_set_state),
148         (render_para):
149         * gtk/gtktextlayout.c (gtk_text_layout_set_overwrite_mode),
150         (gtk_text_layout_invalidate_cache), (get_block_cursor),
151         (add_cursor), (gtk_text_layout_get_line_display),
152         (_gtk_text_layout_get_block_cursor):
153         * gtk/gtktextlayout.h:
154         * gtk/gtktextutil.c (layout_get_char_width),
155         (_gtk_text_util_get_block_cursor_location):
156         * gtk/gtktextutil.h:
157         * gtk/gtktextview.c (gtk_text_view_set_editable),
158         (gtk_text_view_toggle_overwrite), (gtk_text_view_set_overwrite),
159         (gtk_text_view_ensure_layout), (text_window_invalidate_cursors):
160         Implement block-cursor for overwrite mode.  (#80378)
161
162 2007-06-11  Matthias Clasen  <mclasen@redhat.com>
163
164         * configure.in: Bump GLib requirement to 2.13.3 (#446616, Behdad
165         Esfahbod)
166
167 2007-06-11  Matthias Clasen  <mclasen@redhat.com>
168
169         * modules/printbackends/cups/gtkprintbackendfile.c:
170         * modules/printbackends/cups/gtkprintbackendcups.c: Fix some
171         locking issues.  (#420249, Christian Persch)
172
173 2007-06-11  Matthias Clasen  <mclasen@redhat.com>
174
175         * configure.in: When debugging is turned on, use error-checking
176         mutexes.
177
178 2007-06-11  Emmanuele Bassi  <ebassi@gnome.org>
179
180         * gtk/gtknotebook.h: Fix declaration of the create_window()
181         vfunc inside GtkNotebookClass. (#446513, Kazuki Iwamoto)
182
183 2007-06-11  Matthias Clasen  <mclasen@redhat.com>
184         
185         * tests/testiconview.c: Use icons of varying size.
186         
187 2007-06-10  Matthias Clasen  <mclasen@redhat.com>
188
189         * gtk/gtkrc.c (gtk_rc_parse_style): Accept class names starting
190         with lowercase letters for style property assignments, since 
191         GType accepts these too, and gtkmm uses such class names.  (#343012,
192         Murray Cumming, Johannes Schmid)
193
194 2007-06-10  Matthias Clasen  <mclasen@redhat.com>
195
196         * gtk/gtkentry.c (gtk_entry_finalize): Don't leak cursor_hadjustment.
197         Store cursor_hadjustment as object data rather than in the private
198         struct.
199
200 2007-06-10  Matthias Clasen  <mclasen@redhat.com>
201
202         * gdk/x11/gdkspawn-x11.c (set_environment): Handle child_setup
203         being NULL.  (#445691, Christopher Taylor)
204
205 2007-06-10  Emmanuele Bassi  <ebassi@gnome.org>
206
207         * gtk/gtksearchenginesimple.c: Unconditionally define _GNU_SOURCE
208         and XOPEN_SOURCE, in order to make the simple search engine backend
209         build on really ancient GNU libc. (#444097)
210
211 2007-06-10  Michael Natterer  <mitch@imendio.com>
212
213         * gdk/quartz/gdkdrawable-quartz.c (gdk_quartz_draw_arc): fix
214         angles by flipping the coordinate system back to its original y
215         direction. The implementation is still broken for ellipses, will
216         have to simulate them using bezier curves.
217
218 2007-06-10  Cody Russell  <bratsche@gnome.org>
219
220         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab):
221         Don't revert the mouse cursor to the built-in one when
222         the user holds the mouse button down. (#445284, Tor Lillqvist)
223
224 2007-06-10  Emmanuele Bassi  <ebassi@gnome.org>
225
226         * gtk/gtkscalebutton.[ch]: Fix some coding style bits.
227
228         (gtk_scale_button_dispose), (gtk_scale_button_class_init),
229         (gtk_scale_button_init): Use the GObject private data API instead
230         of allocating the private structure ourselves.
231
232         (gtk_scale_button_dispose), (gtk_scale_button_finalize): Free
233         the icons string vector inside ::finalize and not in ::dispose.
234
235         (gtk_scale_button_update_icon): Use g_strv_length() instead
236         of an empty for loop.
237
238 2007-06-09  Matthias Clasen  <mclasen@redhat.com>
239
240         * gtk/gtkwidget.c:
241         * gtk/gtkscrolledwindow.c: Update docs
242         * gtk/gtkwidget.h: Deprecate gtk_widget_{ref,unref}
243
244         * gtk/gtkbox.c: Move docs inline.
245
246         * gtk/gtkrange.c:
247         * gtk/gtkscale.c: Doc formatting improvements.
248
249 2007-06-09  Matthias Clasen  <mclasen@redhat.com>
250
251         * gtk/gtkscalebutton.c: Add an icons property, make 
252         gtk_scale_button_new() a convenience function.  (#445855,
253         Murray Cumming)
254
255 2007-06-09  Matthias Clasen  <mclasen@redhat.com>
256
257         * gtk/gtkhscale.c (gtk_hscale_new):
258         * gtk/gtkvscale.c (gtk_vscale_new): Cosmetic change to make
259         it more obvious that this is a convenience function.
260
261 2007-06-09  Matthias Clasen  <mclasen@redhat.com>
262
263         * gtk/gtkcalendar.c (gtk_calendar_init): Handle return values
264         from nl_langinfo() more correctly. 
265
266 2007-06-09  Carlos Garnacho  <carlos@imendio.com>
267
268         * gtk/gtkrc.c (gtk_rc_parse_engine): initialize rc_priv in the else
269         branch too. (#445539)
270
271 2007-06-08  Benjamin Berg  <benjamin@sipsolutions.net>
272
273         * gtk/gtkscrolledwindow.c: (gtk_scrolled_window_paint):
274         Fix shadow painting if the scrollbars-within-bevel style property is
275         set and border_width is nozero. (#445054)
276
277 2007-06-08  Matthias Clasen  <mclasen@redhat.com>
278
279         Make it possible for theme engines to support symbolic 
280         colors.  (#426192, Andrea Cimitan, patch by Olivier Samyn)
281
282         * gtk/gtk.symbols:
283         * gtk/gtkrc.h:
284         * gtk/gtkrc.c (gtk_rc_parse_color_full): Export this function
285
286         * gtk/gtkrc.c (gtk_rc_parse_engine): Copy color hashes
287         to new style before parsing engine section.
288
289 2007-06-08  Michael Natterer  <mitch@imendio.com>
290
291         * gdk/quartz/gdkdrawable-quartz.c: add utility function
292         gdk_quartz_fix_cap_not_last_line() which fixes the coordinates for
293         GDK_CAP_NOT_LAST lines at least for horizontal and vertical lines.
294
295         (gdk_quartz_draw_segments)
296         (gdk_quartz_draw_lines): use it here.
297
298 2007-06-07  Michael Natterer  <mitch@imendio.com>
299
300         * gdk/quartz/gdkgc-quartz.c: add gdk_gc_quartz_init() and set
301         some values to the defaults used by X11.
302
303         (gdk_quartz_gc_set_values): really set cap_style when
304         GDK_GC_CAP_STYLE is in the mask, not line_style.
305
306 2007-06-07  Michael Natterer  <mitch@imendio.com>
307
308         * gdk/quartz/gdkgc-quartz.c (_gdk_quartz_gc_update_cg_context):
309         use the same code for GDK_XOR as for GDK_INVERT. Xor with an
310         arbitrary color is impossible to implement with quartz.
311
312 2007-06-07  Matthias Clasen  <mclasen@redhat.com>
313
314         * gtk/gtksettings.c: Fix a typo in the docs.
315
316 2007-06-07  Christian Neumair  <cneumair@gnome.org>
317
318         * gtk/gtkstock.[ch]: Add GTK_STOCK_DISCARD, #158008.
319
320 2007-06-07  Matthias Clasen  <mclasen@redhat.com>
321
322         * gtk/gtktreeview.c: Documentation additions.
323
324         * gtk/gtknotebook.c: Add a doc comment.
325
326 2007-06-06  Matthias Clasen  <mclasen@redhat.com>
327
328         * gtk/gtkfilechooserbutton.c (model_add_special):
329         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop):
330         * gtk/gtkfilesystemunix.c (get_icon_name_for_directory):
331         * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system):
332         Use g_get_user_special_dir() to obtain the path for the
333         DESKTOP directory.  
334
335 2007-06-06  Matthias Clasen  <mclasen@redhat.com>
336
337         * gtk/Makefile.am: Add the 16x16 version of gtk-select-color.png
338         to the list of stock icons.  (#444786)
339
340 2007-06-06  Kristian Rietveld  <kris@imendio.com>
341
342         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_init),
343         (gtk_cell_renderer_progress_class_init),
344         (gtk_cell_renderer_progress_[gs]et_property),
345         (gtk_cell_renderer_progress_render): add text-[xy]align properties
346         for aligning the text label of the progress bar.  (#334576,
347         suggestion from Steven Sheehy).
348
349 2007-06-06  Yevgen Muntyan  <muntyan@tamu.edu>
350
351         * gtk/gtkwidget.c:
352         * gtk/gtkwidget.h: new method, gtk_widget_modify_cursor() (#79585).
353         
354         * gtkrc.c:
355         * gtkrc.h: new functions _gtk_rc_style_set_rc_property() and 
356         _gtk_rc_style_unset_rc_property().
357         
358         * gtk/gtk.symbols: added gtk_widget_modify_cursor.
359         
360         * tests/testtext.c (do_cursor_visible_changed):
361         * tests/testgtk.c (create_styles): test it.
362
363 2007-06-06  Richard Hult  <richard@imendio.com>
364
365         * gdk/quartz/gdkevents-quartz.c (find_mouse_window_for_ns_event)
366         (find_window_for_ns_event): Rework how we get the event window:
367         don't get the window from the NSEvent, always use the mouse window
368         instead. Fix mouse window tracking by only using MouseExited for
369         non-gdk windows, and to always use the NSEvent window to get the
370         right gdk window in MouseEntered. Add comments to the code. Fixes bug
371         #350460.
372
373 2007-06-06  Richard Hult  <richard@imendio.com>
374
375         * gdk/quartz/gdkevents-quartz.c (get_converted_window_coordinates):
376         Don't do anything if the two windows are the same.
377         (find_window_for_ns_event): Translate coordinates to be relative
378         the grab window when appropriate.
379
380 2007-06-06  Emmanuele Bassi  <ebassi@gnome.org>
381
382         * gtk/gtkfilechooserdefault.c:
383         (get_file_info_finished), (shortcuts_insert_path),
384         (shortcuts_add_bookmarks), (shortcuts_add_current_folder): Factor
385         out the search shortcut, the recently used shortcut and the separator
386         from the shortcut selection combo. (#444734)
387
388         (recent_idle_load): Remove the idle source that lazily loads the
389         recently used files, if the GtkRecentManager returns an empty
390         list. (#443913)
391
392 2007-06-06  Ross Burton  <ross@openedhand.com>
393
394         * gdk/x11/gdkspawn-x11.c:
395         Set DISPLAY in the child process using g_setenv() instead of
396         constructing a new envp, which lets callers use child setup
397         functions which call putenv (#442617).
398
399 2007-06-06  Johan Dahlin  <jdahlin@async.com.br>
400
401         reviewed by: Matthias Clasen <mclasen@redhat.com>
402         
403         * gtk/gtkassistant.c (gtk_assistant_update_buttons_state): 
404         Check if the wizard is empty before trying to access the first page.
405         (#444310, Johan Dahlin)
406
407 2007-06-06  Matthias Clasen  <mclasen@redhat.com>
408
409         * configure.in: Bump version
410
411         * === Released 2.11.2 ===
412
413         * NEWS: Updates
414
415 2007-06-06  Kristian Rietveld  <kris@imendio.com>
416
417         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_queue_resize): use
418         GTK_IS_TREE_VIEW_COLUMN() in g_return_if_fail here.
419
420 2007-06-06  Kristian Rietveld  <kris@imendio.com>
421
422         * gtk/gtktreeviewcolumn.[ch] (gtk_tree_view_column_get_tree_view): new
423         function.  (#342471, Lorenzo Gil Sanchez).
424
425         * gtk/gtk.symbols: updated.
426
427 2007-06-06  Kristian Rietveld  <kris@imendio.com>
428
429         * gtk/gtktooltip.c (gtk_tooltip_paint_window): remove unused
430         call to gtk_widget_size_request().  (Reported by Carlos
431         Garnacho).
432
433 2007-06-06  Kristian Rietveld  <kris@imendio.com>
434
435         * gtk/gtktooltip.c (gtk_tooltip_show_tooltip): bail out if
436         last_window is not a GdkWindow anymore. (Fixes #434021, several
437         reporters).
438
439 2007-06-06  Matthias Clasen <mclasen@redhat.com>
440
441         * gdk/Makefile.am: Remove leftover reference to medialib_h_sources.
442
443 2007-06-06  Brian Cameron  <brian.cameron@sun.com>
444
445         * gdk/Makefile.am: Add gdkmedialib.h to EXTRA_DIST so this header
446           file gets included with the distribution, as needed.  Fixes bug
447           #442888.  Reviewed by Matthias Clasen.
448
449 2007-06-06  Richard Hult  <richard@imendio.com>
450
451         * gdk/quartz/gdkevents-quartz.c
452         (_gdk_quartz_events_update_mouse_window): Ignore if the old and new
453         windows are the same.
454
455 2007-06-06  Kristian Rietveld  <kris@imendio.com>
456
457         * gtk/gtktreeview.c (gtk_tree_view_unrealize): also remove the
458         auto expand timeout if it exists.
459
460 2007-06-06  Richard Hult  <richard@imendio.com>
461
462         * gdk/quartz/gdkevents-quartz.c (synthesize_crossing_events):
463         Update comment to be more clear and print a warning if we try to
464         create a crossing event without knowing what the current mouse
465         window is, to help track down focus bugs.
466
467         * gdk/quartz/gdkevents-quartz.c
468         (_gdk_quartz_events_update_focus_window): Fix indentation.
469
470 2007-06-06  Richard Hult  <richard@imendio.com>
471
472         * gdk/quartz/GdkQuartzWindow.c: Don't let temp windows become key
473         window.
474
475 2007-06-06  Tor Lillqvist  <tml@novell.com>
476
477         * gdk/x11/gdkwindow-x11.c (gdk_window_set_opacity): Fix
478         embarrassing crash. (#444457, Torsten Schoenfeld)
479
480 2007-06-05  Yevgen Muntyan  <muntyan@tamu.edu>
481
482         * demos/gtk-demo/textview.c (insert_text): Drop the phrase
483         saying invisible text doesn't work (#444236).
484
485 2007-06-05  Matthias Clasen <mclasen@redhat.com>
486
487         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Check that
488         window_private is not NULL before using it.  (#444351, David Ronis)
489
490 2007-06-05  Jakub Steiner <jimmac@ximian.com>
491
492         * gtk/stock-icons/{16,24}/gtk-find*: drop the paper sheet.
493                 gtk-find is used for search, rather than find within a document
494                 (file dialog).
495
496 2007-06-05  Kristian Rietveld  <kris@gtk.org>
497
498         Fix #399071, suggestion from Benoit Dejean.
499
500         * gtk/gtkliststore.[ch] (gtk_list_store_set_vector_internal): new
501         function, factored out code iterating (columns, values) vectors from
502         gtk_list_store_new_with_valuesv to here,
503         (gtk_list_store_set_valuesv): new public function to set list store
504         values using (columns, values) vectors,
505         (gtk_list_store_new_with_valuesv): call new _set_vector_internal
506         instead.
507
508         * gtk/gtktreestore.[ch] (gtk_tree_store_set_vector_internal),
509         (gtk_tree_store_set_valuesv), (gtk_tree_store_new_with_valuesv):
510         likewise.
511
512         * gtk/gtk.symbols: updated.
513
514 2007-06-04  Richard Hult  <richard@imendio.com>
515
516         * gdk/quartz/gdkwindow-quartz.c:
517         (show_window_internal): Don't try to make temp windows key
518         windows, fixes problem introduced below.
519
520 2007-06-04  Richard Hult  <richard@imendio.com>
521
522         * gdk/quartz/GdkQuartzWindow.c: 
523         * gdk/quartz/gdkwindow-quartz.c: Implement simple versions of
524         gdk_window_set_accept_focus and gdk_window_set_focus_on_map.
525
526 2007-06-04  Richard Hult  <richard@imendio.com>
527
528         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_raise),
529         (gdk_window_lower): Implement.
530
531 2007-06-04  Richard Hult  <richard@imendio.com>
532
533         * gdk/quartz/gdkwindow-quartz.c:
534         * gdk/quartz/gdkwindow-quartz.h: Implement 
535         gdk_window_set_transient_for.
536
537 2007-06-04  Cody Russell  <bratsche@gnome.org>
538
539         * gtk/gtklinkbutton.h
540         * gtk/gtkaboutdialog.h: Change function argument "link"
541         to "link_" to fix warnings for applications compiling
542         with -Wshadow. (#379213)
543
544 2007-06-04  Cody Russell  <bratsche@gnome.org>
545
546         * gtk/gtkpathbar.c (gtk_path_bar_scroll_down): Check
547         if down_button is NULL.  This happens when the pathbar button
548         for the current directory is too large to fit in the
549         space, e.g. on Windows for directories named something like
550         "My Documents and Settings".  (#389603)
551
552 2007-06-04  Matthias Clasen  <mclasen@redhat.com>
553
554         * configure.in: Bump version
555
556         * === Released 2.11.1 ===
557
558         * gdk/gdkwindow.c (gdk_window_set_composited): Improve docs.
559
560         * NEWS:
561         * README.in: Updates
562
563 2007-06-04  Michael Natterer  <mitch@imendio.com>
564
565         Move "move-focus" signals from several widgets to GtkWidget to
566         enable more flexible costomization of keyboard navigation via
567         bindings. Fixes bug #414947.
568
569         * gtk/gtkwidget.c: add "move-focus" binding signal, default to
570         calling the toplevel GtkWindow's "move-focus" vfunc.
571
572         * gtk/gtktextview.[ch]
573         * gtk/gtkwindow.[ch]: remove "move-focus" signals and add compat
574         code that makes sure that both emitting the signal on the widget
575         and overriding the virtual functions keeps working as before.
576
577         * gtk/gtktoolbar.c: remove "move-focus" signal here too and use
578         GtkWidget's signal. This change slightly changes keyboard
579         navigation in toolbars. I'll fix the behavior if somebody can
580         explain me if and how exactly the new behavior is broken.
581
582 2007-06-04  Matthias Clasen  <mclasen@redhat.com>
583
584         * gtk/gtkmarshalers.list:
585         * gtk/gtknotebook.[hc]: Add a create-window signal that allows
586         to override the global create-window-hook on a per-notebook
587         basis. The default handler falls back to the global hook.
588         (#386935, Christian Hammond)
589         
590 2007-06-04  Emmanuele Bassi  <ebassi@gnome.org>
591
592         * gtk/gtkradiobutton.[ch]:
593         * gtk/gtk.symbols:
594         * tests/testgtk.c: Revert previous commit; the API is not yet
595         finalized - see bug #166995.
596
597 2007-06-04  Emmanuele Bassi  <ebassi@gnome.org>
598
599         * gtk/gtkradiobutton.h:
600         * gtk/gtkradiobutton.c:
601         * gtk/gtk.symbols: Add gtk_radio_button_set_value(),
602         gtk_radio_button_get_current_value() and gtk_radio_button_get_value().
603         Use these functions to set and get an arbitrary integer associated to
604         a GtkRadioButton in a group, like the value associated to a
605         GtkRadioAction.
606
607         * tests/testgtk.c:
608         (create_radio_buttons), (radio_toggled_cb): Exercise the new API.
609
610 2007-06-03  Torsten Schoenfeld  <kaffeetisch@gmx.de>
611
612         * gtk/gtkicontheme.c (choose_icon): Initialize unthemed_icon to NULL
613         to avoid accessing uninitialized memory when
614         gtk_icon_theme_choose_icon() is called with an empty names list.
615
616 2007-06-03  Richard Hult  <richard@imendio.com>
617
618         * gdk/quartz/gdkevents-quartz.c: (create_crossing_event): Set the key
619         modifier state.
620
621 2007-06-03  Richard Hult  <richard@imendio.com>
622
623         * gdk/quartz/gdkevents-quartz.c: Make pointer grab emulation work a bit
624         better:
625         (gdk_display_pointer_is_grabbed): Do what the docs say and don't
626         consider implicit grabs here.
627         (gdk_pointer_grab): Overriding a grab by the same app should always be
628         succesful.
629         (gdk_event_translate): Implicit grabs should not be owner events.
630
631 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
632
633         * NEWS: Updates
634
635 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
636
637         * docs/tools/widgets.c: Add a volume button
638
639 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
640
641         * gtk/gtkradiobutton.c:
642         * gtk/gtkradiomenuitem.c: Fix doc typos.  
643
644 2007-06-03  Matthias Clasen  <mclasen@redhat.com>
645
646         * configure.in: Allow to disable Xinerama.  (#348065, Diego Pettenò)
647
648 2007-06-03  Xan Lopez  <xan@gnome.org>
649
650         * gtk/gtknotebook.c: remove index parameter in gtk_notebook_switch_page
651         and remove g_return_if checks in private functions. (#443247)
652
653 2007-06-01  Richard Hult  <richard@imendio.com>
654
655         * gdk/quartz/gdkevents-quartz.c:
656         (get_converted_window_coordinates), (create_crossing_event): Fix the
657         coordinates in crossing events so they are relative to the right
658         window.
659
660 2007-06-01  Richard Hult  <richard@imendio.com>
661
662         * gdk/quartz/gdkevents-quartz.[ch]: Make function naming
663         consistent for the various functions that retrieve data from an
664         event.
665
666         * gdk/quartz/gdkprivate-quartz.h: 
667         * gdk/quartz/gdkwindow-quartz.[ch]: Remove the now unused
668         _gdk_quartz_window_find_child_by_point() function.
669
670 2007-06-01  Matthias Clasen  <mclasen@redhat.com>
671
672         Add support for composited child windows.  (#412882, Ryan Lortie)
673
674         * gdk/gdk.symbols:
675         * gdk/gdkdisplay.h:
676         * gdk/gdkinternals.h:
677         * gdk/gdkwindow.[hc]: Add gdk_display_supports_composite() and
678         gdk_window_set_composited().
679
680         * gdk/x11/gdkevents-x11.c:
681         * gdk/x11/gdkdisplay-x11.[hc]:
682         * gdk/x11/gdkwindow-x11.[hc]: X11 implementation.
683
684         * gdk/win32/gdkdisplay-win32.c:
685         * gdk/win32/gdkwindow-win32.c: Dummy win32 implementration.
686
687         * gdk/quartz/gdkdisplay-quartz.c:
688         * gdk/quartz/gdkwindow-quartz.c: Dummy Quartz implementation.
689
690         * gdk/directfb/gdkdisplay-directfb.c:
691         * gdk/directfb/gdkwindow-directfb.c: Dummy DirectFB implementation.
692
693         * tests/testgtk.c: Add a "composited window" test.
694
695 2007-06-01  Michael Natterer  <mitch@imendio.com>
696
697         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): don't switch
698         submenu opening direction for overlapping reasons if there is even
699         less space on the other side (bug #441863, Tommi Komulainen).
700
701 2007-06-01  Michael Natterer  <mitch@imendio.com>
702
703         * gtk/gtkfilechooserdialog.c (response_cb): change fix for #347883
704         to not obfuscate the code.
705
706 2007-06-01  Yevgen Muntyan  <muntyan@tamu.edu>
707
708         Avoid recreating pangolayouts in GtkTextView on cursor movement
709         (#435405, Behdad Esfahbod).
710
711         * gtk/gtktextlayout.c:
712         * gtk/gtktextlayout.h: new GtkTextLayout method invalidate_cursors(),
713         and functions gtk_text_layout_invalidate_cursors() and
714         gtk_text_layout_cursors_changed(), to use when invalidation is due
715         to moved marks or changed selection.
716
717         * gtk/gtktextbtree.c:
718         * gtk/gtktextbtree.h: use what's appropriate when invalidating layout.
719
720         * gtk/gtk.symbols: add new functions.
721
722         * README.in: added a note about changed GtkTextLayout API.
723
724 2007-06-01  Alp Toker  <alp.toker@collabora.co.uk>
725
726         * gdk/gdkcairo.c (gdk_cairo_set_source_pixmap): Fix doc typos.
727
728 2007-05-31  Yevgen Muntyan  <muntyan@tamu.edu>
729
730         * gtk/gtkstyle.c (get_insertion_cursor_gc): use text colors from
731         widget style to draw cursor instead of hardcoded black and grey
732         (#79585, comment #30).
733
734 2007-06-01  Kristian Rietveld  <kris@gtk.org>
735
736         * gtk/gtkcellrenderertext.c (get_size): transform the ink_rect using
737         pango_extents_to_pixels to avoid rounding errors.  (Fixes #430218,
738         Shlomi Israel).
739
740 2007-05-31  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
741
742         * tests/autotestfilechooser.c: Reactivate the other file-chooser
743         tests. Forgot that before commiting revision 17994.
744
745 2007-05-31  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
746
747         * gtk/gtkfilechooserdialog.c, tests/autotestfilechooser.c: Reset
748         the internal response_requested flag, once the response triggered by
749         file_chooser_widget_response_requested has been processed (#347883).
750
751 2007-05-30  Richard Hult  <richard@imendio.com>
752
753         * gdk/quartz/gdkselection-quartz.c (gdk_free_text_list): Add this
754         function, bug #438440.
755
756 2007-05-30  Tor Lillqvist  <tml@novell.com>
757
758         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab): Subtract the
759         multi-monitor offset from x and y before setting up the rectangle
760         for ClipCursor(). Fixes #442326.
761
762 2007-05-30  Matthias Clasen  <mclasen@redhat.com>
763
764         * gtk/gtkiconview.c (gtk_icon_view_layout): Queue a resize
765         if the size changed.  (#418047, Alex Graveley)
766
767 2007-05-30  Simos Xenitellis  <simos@gnome.org>
768
769         * gdk/gdkkeysyms-update.pl: Updated script to new upstream 
770         location of keysymdef.h (#442183)
771
772 2007-05-30  Emmanuele Bassi  <ebassi@gnome.org>
773
774         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Return
775         after setting the file chooser entry with the current selection.
776
777 2007-05-30  Matthias Clasen  <mclasen@redhat.com>
778
779         * gtk/gtkiconcachevalidator.c: Correct the handling
780         of display names.  (#441767, Marcin Bachry)
781
782 2007-05-30  Xan Lopez  <xan@gnome.org>
783
784         * gtk/gtknotebook.c (gtk_notebook_set_current_page): Small cleanup.
785         Fixes #442172.
786
787 2007-05-28  Cody Russell  <bratsche@gnome.org>
788
789         * gdk/win32/xcursors.h: Fix initialization of last item. (#440511)
790
791 2007-05-28  Richard Hult  <richard@imendio.com>
792
793         * gdk/quartz/gdkevents-quartz.c (get_child_coordinates_from_ancestor)
794         (get_ancestor_coordinates_from_child): Break out code that was
795         repeated into separate functions and call them instead.
796         (find_window_for_mouse_nsevent): Break out this from
797         find_window_for_nsevent to make the code clearer.
798         (find_window_for_nsevent): Use the above and fix the returned
799         coordinates in the process so that they are always relative the
800         found window, both for the normal case and during grabs. Still
801         needs fixing for the case where we get nsevents for a window other
802         than than grab window during grabs.
803
804 2007-05-28  Richard Hult  <richard@imendio.com>
805
806         * gdk/quartz/gdkevents-quartz.c (gdk_event_translate): Fix typo,
807         we need both press and release in the mask to trigger implicit
808         grabs.
809
810 2007-05-28  Richard Hult  <richard@imendio.com>
811
812         * gdk/quartz/gdkevents-quartz.c (pointer_ungrab_internal): Reset
813         all the grab state, to help debugging.
814         (gdk_event_translate): Use pointer_ungrab_internal instead of
815         duplicating the code here.
816
817 2007-05-28  Richard Hult  <richard@imendio.com>
818
819         * gdk/quartz/gdkprivate-quartz.h:
820         * gdk/quartz/gdkwindow-quartz.c (find_child_window_helper)
821         (_gdk_quartz_window_find_child): Refactored version of
822         _gdk_quartz_window_find_child_by_point, that doesn't return any
823         coordinates as the users of this function already have the
824         coordinates and need to translate them differently.
825         (_gdk_windowing_window_get_pointer): Fixup coordinate translation.
826         (_gdk_windowing_window_at_pointer): Likewise.
827
828 2007-05-28  Richard Hult  <richard@imendio.com>
829
830         * gdk/quartz/gdkevents-quartz.c
831         (find_window_interested_in_event_mask): Don't traverse beyond the
832         toplevel of the passed in window.
833
834 2007-05-28  Richard Hult  <richard@imendio.com>
835
836         * gdk/quartz/gdkwindow-quartz.c: (_gdk_windowing_window_init): Set
837         a size for the root window.
838
839 2007-05-28  Richard Hult  <richard@imendio.com>
840
841         * gdk/quartz/gdkwindow-quartz.c: Add comments about what various
842         coordinates are relative to.
843
844 2007-05-28  Carlos Garnacho  <carlos@imendio.com>
845
846         * gtk/gtkwidget.c (gtk_widget_propagate_hierarchy_changed_recurse):
847         Add back variable declaration removed in r17958.
848
849 2007-05-28  Carlos Garcia Campos  <carlosgc@gnome.org>
850
851         * gtk/gtkprinter.[ch]: Add new capability
852         GTK_PRINT_CAPABILITY_NUMBER_UP.
853         * docs/reference/gtk/tmpl/gtkprintunixdialog.sgml: 
854         * gtk/gtkprintunixdialog.c: (update_dialog_from_capabilities):
855         * modules/printbackends/file/gtkprintbackendfile.c:
856         (file_printer_get_options), (file_printer_get_settings_from_options):
857         * modules/printbackends/cups/gtkprintbackendcups.c:
858         (cups_printer_get_capabilities): Add a new print capability to specify
859         whether print dialog will offer printing multiple pages per sheet. (#398414)
860         
861 2007-05-28  Matthias Clasen  <mclasen@redhat.com>
862
863         * gtk/gtktoolbar.h: Actually undeprecate 
864         gtk_toolbar_[un]set_icon_size.  (#314172. Yevgen Muntyan)
865
866 2007-05-28  Matthias Clasen  <mclasen@redhat.com>
867
868         * gtk/gtkwidget.c: Document some more signals
869
870         * gtk/gtktextview.c: Improve docs
871
872 2007-05-27  Tor Lillqvist  <tml@novell.com>
873
874         * configure.in (GDK_EXTRA_LISB): Drop bogus -user32 switch. Was
875         supposed to be -luser32, but he "l" was missing. But nobody has
876         noticed, so presumably unnecessary.
877
878 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
879
880         * gtk/gtkprintoperationpreview.c: Improve docs
881
882 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
883
884         * gtk/gtkentry.c: Move docs inline.
885
886 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
887
888         * gdk/directfb/gdkkeys-directfb.c: Remove duplicate doc comments
889         that cause problems when building the docs.
890
891 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
892         
893         * gdk/x11/gdkdisplay-x11.c: Update docs
894         * gdk/gdk.c: Update docs
895         * gdk/directfb/gdkwindow-directfb.c: Remove duplicate doc comments.
896         * gdk/x11/gdkwindow-x11.c: Fix doc formatting
897
898 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
899
900         * gtk/gtktooltip.c:
901         * gtk/gtkstatusicon.c:
902         * gtk/gtkscalebutton.c:
903         * gtk/gtkrecentaction.c:
904         * gtk/gtkrange.c:
905         * gtk/gtkprinter.c:
906         * gtk/gtkprintsettings.c:
907         * gtk/gtkpapersize.c:
908         * gtk/gtkpagesetup.c:
909         * gtk/gtknotebook.c:
910         * gtk/gtkentrycompletion.c: Document new api
911
912 2007-05-26  Richard Hult  <richard@imendio.com>
913
914         * gtk/gtkprinter.c: (gtk_printer_set_location): Fix typo to get the
915         build working.
916
917 2007-05-26  Matthias Clasen  <mclasen@redhat.com>
918
919         * configure.in: Require gtk-doc 1.6, for signal and property links.
920         * gtk/gtkbox.c:
921         * gtk/gtkbutton.c:
922         * gtk/gtkcontainer.c:
923         * gtk/gtkdialog.c:
924         * gtk/gtkentry.c:
925         * gtk/gtkimage.c:
926         * gtk/gtklabel.c:
927         * gtk/gtkmisc.c:
928         * gtk/gtksettings.c:
929         * gtk/gtkwidget.c: Documentation improvements, link signals
930         and properties where it makes sense.
931
932 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
933
934         * gtk/gtktextmark.c:
935         * gtk/gtktextbuffer.c: Formatting fixes.
936
937 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
938
939         Allow to separate GtkTextMark creation from buffer insertion.
940         (#132818, Gustavo Giráldez, patch by Yevgen Muntyan)
941
942         * gtk/gtktextmarkprivate.h:
943         * gtk/gtktextmark.[hc] (gtk_text_mark_new): New function to 
944         create a GtkTextMark.
945
946         * gtk/gtktextbuffer.[hc] (gtk_text_buffer_add_mark): New 
947         function to add an existing mark to a buffer. 
948
949         * gtk/gtktextbtree.c: Allow adding existing marks.
950
951         * gtk/gtk.symbols: Add new functions.
952
953         * tests/testtextbuffer.c: Add some tests for new mark 
954         functionality.
955
956 2007-05-25  Xan Lopez  <xan@gnome.org>
957
958         * gtk/gtkaction.c: (gtk_action_set_short_label):
959         Use private->data->short_label to update the proxies. (#440780)
960
961 2007-05-25  Richard Hult  <richard@imendio.com>
962
963         * gdk/quartz/gdkimage-quartz.c: (_gdk_quartz_image_copy_to_image):
964         Implement copying from a window, part of bug #348493.
965
966 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
967
968         * gtk/gtkprintoperation-unix.c (unix_end_run): Hold a 
969         refence on the print operation until gtk_print_job_send()
970         is done.  (#440040, Chris Vine)
971
972 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
973
974         * gtk/gtkiconview.c (gtk_icon_view_accessible_ref_child):
975         Don't crash and don't leak.  (#439565, Pedro Villavicencio)
976
977 2007-05-25  Matthias Clasen  <mclasen@redhat.com>
978
979         * gtk/gtkiconfactory.c: Improve a warning
980         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): Always
981         set the error when returning NULL.  (#440982, Carlos Garcia
982         Campos)
983
984 2007-05-25  Michael Natterer  <mitch@imendio.com>
985
986         Merge fix from maemo-gtk:
987
988         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): open submenus
989         also if the menu item we're entering is already selected. Also, it
990         makes no sense to forward the event to the parent menu shell if we
991         are entering a menu item of *this* menu shell.
992
993 2007-05-24  Matthias Clasen  <mclasen@redhat.com>
994
995         * gtk/stock-icons/*: Make sure all svg icons are added
996         as pngs.
997
998 2007-05-24  Matthias Clasen  <mclasen@redhat.com>
999
1000         * modules/input/Makefile.am: Fix broken DESTDIR support
1001
1002 2007-05-24  Michael Natterer  <mitch@imendio.com>
1003
1004         * gtk/gtktooltip.c (find_widget_under_pointer): apply patch from
1005         Bogdan Nicula which fixes a crash on GdkWindows which have no
1006         GtkWidget as user_data (bug #440890).
1007
1008 2007-05-24   Matthias Clasen  <mclasen@redhat.com>
1009
1010         * configure.in: Bump version
1011
1012         * === Released 2.11.0 ===
1013
1014         * NEWS: Updates
1015
1016 2007-05-23   Matthias Clasen  <mclasen@redhat.com>
1017
1018         * gtk/gtk.symbols: 
1019         * gdk/x11/xsettings-common.h: 
1020         * gdk/gdk.symbols: Add some missing symbols.
1021
1022         * gtk/paper_names_offsets.c:
1023         * gtk/gen-paper-names.c: Make variables static.
1024
1025         * gtk/gtktooltip.[hc]:
1026         * gtk/gtkvolumebutton.c:
1027         * gtk/gtkscalebutton.c:  Fix up symbol aliasing.
1028
1029 2007-05-23  Yevgen Muntyan  <muntyan@tamu.edu>
1030
1031         * gtk/gtkprintunixdialog.c: missing #include <ctype.h>.
1032
1033         * gtk/gtkhandlebox.c (gtk_handle_box_paint):
1034         * gtk/gtkpagesetupunixdialog.c (_gtk_load_custom_papers):
1035         * gtk/gtkstatusbar.c (gtk_statusbar_get_context_id):
1036         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path):
1037         * gtk/gtktrayicon-x11.c (gtk_tray_icon_send_dock_request):
1038         * gtk/gtkpreview.c (gtk_preview_finalize):
1039         * gtk/gtknotebook.c (gtk_notebook_set_group_id):
1040         * tests/testnotebookdnd.c (window_creation_function):
1041         * tests/testiconview.c (do_popup_menu):
1042         Fixed some compiler warnings (#440689).
1043
1044 2007-05-23  Kristian Rietveld  <kris@imendio.com>
1045
1046         * gtk/gtktooltip.c (find_widget_under_pointer): translate coordinates
1047         from the window they were received on to the event widget's window;
1048         correct for no-window widgets after that, bail out on failure.  This
1049         makes the coordinates given by GtkWidget::query-tooltip truly relative
1050         to widget->window.  (#435188).
1051
1052         * gtk/gtkwidget.c (gtk_widget_class_init): update docs for
1053         GtkWidget::query-tooltip.
1054
1055 2007-05-22  Behdad Esfahbod  <behdad@gnome.org>
1056
1057         * gtk/gtkprintcontext.c (gtk_print_context_finalize),
1058         (_gtk_print_context_new), (_gtk_print_context_get_fontmap),
1059         (gtk_print_context_set_cairo_context),
1060         (gtk_print_context_get_pango_fontmap),
1061         (gtk_print_context_create_pango_context):
1062         Don't create new pango fontmaps.  Use the default pangocairo
1063         fontmap and set resolution on PangoContext instead. (#417707)
1064
1065 2007-05-21  Richard Hult  <richard@imendio.com>
1066
1067         * gdk/quartz/gdkdisplay-quartz.c: (gdk_display_open): Set the
1068         resolution.
1069         
1070         * gdk/quartz/gdkscreen-quartz.c: Use the autorelease pool macros.
1071
1072 2007-05-21  Michael Natterer  <mitch@imendio.com>
1073
1074         * gtk/gtkcombobox.c (gtk_combo_box_set_model): revert last change.
1075
1076 Mon May 21 13:58:32 2007  Tim Janik  <timj@imendio.com>
1077
1078         * gtk/gtkcombobox.c (gtk_combo_box_set_model): removed redundant check.
1079
1080 2007-05-21  Tor Lillqvist  <tml@novell.com>
1081
1082         * gtk/gtkscalebutton.c (gtk_scale_popup): Make it work better with
1083         multiple monitors.
1084
1085 2007-05-20  Attilio Fiandrotti  <attilio.fiandrotti@gmail.com>
1086
1087         * gdk/directfb/gdkwindow-directfb.c:
1088         * gdk/directfb/gdkdirectfb.h: Updated minimum DirectFB version
1089         required to enable gdk_directfb_create_child_window.
1090         (Closes: #437379)
1091
1092 2007-05-20  Bastien Nocera  <hadess@hadess.net>
1093
1094         * gtk/Makefile.am:
1095         * gtk/gtk.h:
1096         * gtk/gtk.symbols:
1097         * gtk/gtkvolumebutton.[ch]: Add the GtkVolumeButton widget,
1098         a button that pops up a scale when clicked (Closes: #415775)
1099         * tests/Makefile.am:
1100         * tests/testvolumebutton.c: Add a test program for the
1101         volume button
1102
1103 2007-05-19  Bastien Nocera  <hadess@hadess.net>
1104
1105         reviewed by: Matthias Clasen <mclasen@redhat.com>
1106
1107         * gtk/Makefile.am:
1108         * gtk/gtk.h:
1109         * gtk/gtk.symbols:
1110         * gtk/gtkscalebutton.[ch]: Add the GtkScaleButton widget,
1111         a button that pops up a scale when pressed
1112
1113 2007-05-19  Matthias Clasen  <mclasen@redhat.com>
1114
1115         * gtk/gtk.symbols:
1116         * gtk/gtknotebook.[hc]: Deprecate gtk_notebook_[gs]et_group_id
1117         in favour of new functions gtk_notebook_[gs]et_group, which
1118         takes a pointer as group identifier and makes it easier to
1119         avoid group id collisions.  (#386930, Christian Hammond)
1120                 
1121         * tests/testnotebookdnd.c: Use new grouping api.
1122
1123 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
1124
1125         * gtk/gtkactiongroup.c: Warn and refuse to add actions with
1126         duplicate names.  (#150877, Tommi Komulainen, patch by Kalle
1127         Vahlman)
1128
1129 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
1130
1131         * gtk/gtk.symbols:
1132         * gtk/gtkentry.[hc]: Add gtk_entry_[gs]et_cursor_hadjustment()
1133         to allow automatic scrolling in response to cursor movements
1134         in the entry.  (#438651, Nate Nielsen)
1135
1136 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
1137
1138         * gtk/gtktextview.c: Add a toggle-cursor-visibility keybinding
1139         signal, and bind F7 to it.  (#380048, Tim Miao)
1140
1141 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
1142
1143         * gtk/gtk.symbols:
1144         * gtk/gtkicontheme.h:
1145         * gtk/gtkicontheme.c: Add a function to look up an icon from
1146         a list of icon names.  (#396901, Luca Ferretti)
1147
1148 2007-05-18  Emmanuele Bassi  <ebassi@gnome.org>
1149
1150         * gtk/gtkrecentchooserdefault.c:
1151         (gtk_recent_chooser_default_dispose): Reset the state on dispose.
1152
1153         (cleanup_after_load): load_id != 0 && load_state == LOAD_EMPTY
1154         is a valid state, if the main loop never had the chance to
1155         properly spin at least once. (#438671)
1156
1157 2007-05-18  Emmanuele Bassi  <ebassi@gnome.org>
1158
1159         * gtk/gtkrecentchooserdefault.c (recent_meta_data_func): Mark
1160         string for translation. (#439437)
1161
1162 2007-05-18  Matthias Clasen  <mclasen@redhat.com>
1163
1164         * gtk/gtkwindow.c (gtk_window_set_transient_for): Fix
1165         doc typo.  (#438100, Vincent Untz)
1166
1167 2007-05-18  Michael J. Chudobiak  <mjc@cvs.gnome.org>
1168
1169         * INSTALL.in:
1170         * README.in:
1171         * configure.in: Bump libtiff requirement to 3.6.0, by requiring
1172           presence of TIFFReadRGBAImageOriented.
1173
1174         * gdk-pixbuf-scaled-anim.c: (get_scaled_pixbuf):
1175         Preserve pixbuf options when generating a new scaled pixbuf.
1176
1177         * io-jpeg.c: (get_orientation), (gdk_pixbuf__jpeg_image_load),
1178         (gdk_pixbuf__jpeg_image_load_increment): Read the exif
1179         orientation tag and associate it with the "orientation" pixbuf
1180         option. Renders libexif unnecessary in some applications.
1181
1182         * io-tiff.c: (tiff_image_parse): Read the tiff orientation tag,
1183         compensate for the partial rotations performed by libtiff,
1184         and generate an "orientation" option for the pixbuf.
1185
1186 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
1187
1188         * gtk/gtkexpander.c: remove c++ style comment.
1189
1190 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
1191
1192         Make combobox menu popdown keybindable (#433593)
1193
1194         * gtk/gtkcombobox.c (gtk_combo_box_class_init): Add "popdown" binding
1195         signal and keybindings.
1196         (gtk_combo_box_real_popdown): Added, "popdown" keybinding signal
1197         handler.
1198         (gtk_combo_box_menu_key_press):
1199         (gtk_combo_box_list_key_press): forward the event to the combobox if
1200         it wasn't handled by the menu.
1201
1202 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
1203
1204         * gtk/gtknotebook.c (gtk_notebook_init) (gtk_notebook_drag_motion)
1205         (gtk_notebook_drag_drop): Allow widgets up in the hierarchy to run
1206         their DnD handlers if the target doesn't match with anything the
1207         notebook manages. (#350665, Joakim Lundborg).
1208
1209 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
1210
1211         Refactor GtkFileChooserDialog sizing.
1212
1213         * gtkfilechooserembed.[ch] (delegate_get_resizable_hints)
1214         (_gtk_file_chooser_embed_get_resizable_hints):
1215         s/resizable_hints/resizable/, return just one boolean value to
1216         determine whether the filechooser should be resizable or not.
1217
1218         * gtkfilechooserprivate.h (struct GtkFileChooserDialogPrivate): remove
1219         variables related to the GtkFileChooserEmbed get_default_size() and
1220         get_resizable() implementations.
1221         (struct GtkFileChooserDefault): Move default size management here.
1222
1223         * gtkfilechooserdefault.c (gtk_file_chooser_default_size_allocate):
1224         Added, store currently allocated size to calculate default size later.
1225         (gtk_file_chooser_default_get_resizable_hints):
1226         s/resizable_hints/resizable/.
1227         (gtk_file_chooser_default_set_property): Reload settings if the file
1228         chooser action changes, this way the save expander state will be known
1229         before mapping the window, avoiding wrong window positioning and
1230         flickering. (#424299, #424309)
1231         (find_good_size_from_style): Only get size from style if it wasn't set
1232         previously.
1233         (gtk_file_chooser_default_get_default_size): return default size based
1234         on stored default size and preview/extra widget sizes.
1235
1236         * gtkfilechooserdialog.c (file_chooser_widget_update_hints)
1237         (file_chooser_widget_realized_size_changed)
1238         (file_chooser_widget_unrealized_size_changed): simplified to
1239         (file_chooser_widget_size_changed): set window size and resizability
1240         based on the GtkFileChooserEmbed interface implementation. (Bug
1241         #420285, Tomeu Vizoso)
1242         (gtk_file_chooser_dialog_map): force a dialog size change, so it's
1243         clamped for sure to the 75% of the screen size.
1244
1245 2007-05-18  Carlos Garnacho  <carlos@imendio.com>
1246
1247         * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Do not unset
1248         the brand new current page if there was none set previously. Fixes
1249         #425138 (Reported by Michail Crayson). Some code simplifications.
1250         (gtk_notebook_draw_arrow): code style fix.
1251
1252 2007-05-16  Matthias Clasen  <mclasen@redhat.com>
1253
1254         * gtk/gtkpathbar.c: Add ATK names to the Up, Down, and Root
1255         buttons. Keep the focus from vanishing when Up or Down arrows
1256         become insensitive or invisible.  (#357005, Patrick Wade)
1257
1258 2007-05-16  Brian Cameron  <brian.cameron@sun.com>
1259
1260         * acconfig.h, configure.in, gdk/Makefile.am, gdkprivate.h, gdkrgb.c,
1261           gdkdraw.c, gdk-pixbuf/gdk-pixbuf-scale.c,
1262           gdk-pixbuf/pixops/Makefile.am, gdk-pixbuf/pixops/pixops.[ch],
1263           gdk-pixbuf/pixops/timescale.c:  Add Sun mediaLib support so that
1264           hardware acceleration via mediaLib is enabled if mediaLib is
1265           detected via configure.  Enhancement request #344813.  I was given
1266           permission to commit in the bug report by Matthias Clasen.
1267         * gdk/medialib.[ch]: New files added for mediaLib support.
1268         * docs/reference/gdk-pixbuf/tmpl/scaling.sgml,
1269           docs/reference/gdk/tmpl/rgb.sgml, gdk/gdkdraw.c:  Add docs for
1270           mediaLib support.
1271
1272 2007-05-15  Torsten Schoenfeld  <kaffeetisch@gmx.de>
1273
1274         * gtk/gtkprintoperation.c (pdf_end_run): Unset priv->platform_data and
1275         priv->free_platform_data to prevent gtk_print_operation_finalize()
1276         from freeing the cairo surface a second time.
1277
1278 2007-05-14  Kristian Rietveld  <kris@gtk.org>
1279
1280         * gtk/gtkfilechooserdefault.c (recent_column_path_sort_func): remove
1281         dangling semicolon, fixes the segfault ebassi was seeing earlier today
1282         ;)
1283
1284 2007-05-14  Tristan Van Berkom  <tvb@gnome.org>
1285
1286         * gtk/gtkaboutdialog.c: Functions: gtk_about_dialog_get/set_name() 
1287         were deprecated in favour of gtk_about_dialog_get/set_program_name(), 
1288         the GtkAboutDialog now uses the "program-name" property instead of 
1289         the conflicting "name" property (fixes bug 345822).
1290
1291 2007-05-14  Emmanuele Bassi  <ebassi@gnome.org>
1292
1293         * configure.in: Add check for GNU extensions to ftw()/nftw().
1294
1295         * gtk/gtksearchenginesimple.c: Fix compilation on systems with
1296         only POSIX-compliant ftw(). (#435797, based on a patch by
1297         Richard Hult)
1298
1299 2007-05-14  Emmanuele Bassi  <ebassi@gnome.org>
1300
1301         * gtk/gtkfilechooserdefault.c:
1302         Convert the GtkTreeIter inside the sorting functions for the
1303         search and recent modes. This doesn't yet fix the segfault when
1304         clicking the 'Name' column in recent mode, though.
1305
1306 2007-05-14  Behdad Esfahbod  <behdad@gnome.org>
1307
1308         * modules/input/gtkimcontextthai.c
1309         (gtk_im_context_thai_filter_keypress):
1310         Fix check for modifier keys. (#438261, Theppitak Karoonboonyanan)
1311
1312 2007-05-14  Matthias Clasen  <mclasen@redhat.com>
1313
1314         * gtk/gtkscrolledwindow.c: Document scrollbars-within-bevel
1315         as 2.12 addition.  (#438131, Mart Raudsepp)
1316
1317 2007-05-14  Matthias Clasen  <mclasen@redhat.com>
1318
1319         * gtk/gtkvseparator.c (gtk_vseparator_size_request): Fix
1320         size requisition for wide vertical separators.  (#438113, 
1321         Benjamin Berg)
1322
1323 2007-05-13  Emmanuele Bassi  <ebassi@gnome.org>
1324
1325         * gtk/gtksearchenginesimple.c: Include <ftw.h> and use nftw() and
1326         all the symbols defined in <ftw.h> conditionally.
1327
1328 2007-05-13  Cody Russell  <bratsche@gnome.org>
1329
1330         * gdk/win32/gdkevents-win32.c: Only do the configure event context
1331         iteration under WM_WINDOWPOSCHANGED instead of inside
1332         handle_configure_event().  This fixes a bug that prevented window
1333         contents from being redrawn after gtk_window_resize(). (#436721)
1334
1335 2007-05-12  Behdad Esfahbod  <behdad@gnome.org>
1336
1337         * gdk/gdkdraw.c (gdk_draw_trapezoids): Fix wrong cairo path
1338         generation.  (#437879, Eddie C. Dost)
1339
1340 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1341
1342         GtkFileChooser search fixes and recent files support.  (#435342)
1343         
1344         * gtk/gtkfilechooserdefault.c: Support drag and drop for
1345         adding shortcuts of folders when in search or recent files
1346         mode.
1347
1348 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1349
1350         GtkFileChooser search fixes and recent files support.  (#435342)
1351
1352         * gtk/gtkfilechooserprivate.h:
1353         * gtk/gtkfilechooserdefault.c: Follow the sorting order of
1354         the GtkTreeView displaying the files list.
1355
1356         (shortcuts_get_index), (shortcuts_insert_separator),
1357         (shortcuts_model_create), (shortcuts_combo_filter_func): Remove
1358         the separator between the Search and the Recently Used shortcuts.
1359
1360         (list_select_func), (list_icon_data_func), (list_name_data_func),
1361         (list_mtime_data_func): Update the sensitivity of the row
1362         depending on the GtkFileChooserAction used.
1363
1364 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1365
1366         GtkFileChooser search fixes and recent files support.  (#435342)
1367
1368         * gtk/gtkfilechooserprivate.h:
1369         * gtk/gtkfilechooserdefault.c: Update the contents of the
1370         files list when changing the filter of the GtkFileChooserDefault
1371         widget.
1372
1373 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1374
1375         GtkFileChooser search fixes and recent files support.  (#435342)
1376
1377         * gtk/gtkfilechooserdefault.c: Update the add bookmark button
1378         sensitivity when in search or recent files mode, and allow
1379         adding a bookmark for a folder.
1380
1381 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1382
1383         GtkFileChooser search fixes and recent files support.  (#435342)
1384
1385         * gtk/gtkfilechooserdefault.c: UI fixes in the Search mode: add
1386         a mnemonic to the label, de-boldify the label's text and assign
1387         focus to the search entry when switching to the search mode.
1388
1389         (list_name_data_func): Split the text in both search and recent
1390         files mode: on the first line use the short name and on the
1391         second line use the full path.
1392
1393 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1394
1395         GtkFileChooser search fixes and recent files support.  (#435342)
1396
1397         * gtk/gtkfilechooserprivate.h:
1398         * gtk/gtkfilechooserdefault.c: Add support for showing the
1399         recently used files list as a special shortcut item.
1400
1401 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1402         
1403         GtkFileChooser search fixes and recent files support.  (#435342)
1404
1405         * gtk/gtkfilechooserdefault.c: Overall whitespace fixes and
1406         indentation style consistency.
1407
1408         (list_row_activated): If the search hit is a folder, follow it
1409         when activating the row, and switch back to browse mode.
1410
1411         (search_clear_model), (search_start_query),
1412         (search_entry_activate_cb), (search_setup_widgets): Remember
1413         the last query when switching between modes.
1414
1415 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1416
1417         GtkFileChooser search fixes and recent files support.  (#435342)
1418
1419         * gtk/gtkfilechooserdefault.c:
1420         (_gtk_file_chooser_default_class_init): Add key binding for
1421         the Search shortcut; default to MOD1+S.
1422
1423         (search_shortcut_handler): Handle the key binding.
1424
1425         (search_hit_get_info_cb), (search_add_hit), (search_clear_model),
1426         (search_setup_model): Retrieve informations on the search hits
1427         when adding them to the model.
1428
1429         (list_icon_data_func): Show the search hit icon.
1430
1431 2007-05-11  Michael Natterer  <mitch@imendio.com>
1432
1433         * gtk/gtktextview.c (selection_motion_event_handler): call
1434         gdk_event_request_motions(event) so selecting works with
1435         XInput devices too. Spotted by Tommi Komulainen.
1436
1437 2007-05-11  Emmanuele Bassi  <ebassi@gnome.org>
1438
1439         * gtk/gtksearchengine.c (_gtk_search_engine_new): Fall back
1440         to GtkSearchEngineSimple only if gthread has already been
1441         initialiased; otherwise, disable search support in the file
1442         chooser widget.  (#435847)
1443
1444 2007-05-10  Matthias Clasen <mclasen@redhat.com>
1445
1446         * gtk/gtkbutton.c (gtk_button_set_image): Unparent the old
1447         image before overwriting priv->image.  (#437281, Jochen Baier)
1448
1449 2007-05-10  Matthias Clasen <mclasen@redhat.com>
1450
1451         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_child):
1452         Correct a confusing warning.  (#437284, Björn Lindqvist)
1453
1454 2007-05-10  Matthias Clasen <mclasen@redhat.com>
1455
1456         * gdk/gdkdraw.c (gdk_draw_pixbuf): Don't call into
1457         the backend if the region is empty.  (#437081, Sven Neumann)
1458
1459 2007-05-10  Matthias Clasen <mclasen@redhat.com>
1460
1461         * gtk/gtksearchenginesimple.c (search_visit_func);
1462         Assume Posix nftw behaviour. 
1463
1464 2007-05-09  Dom Lachowicz <domlachowicz@gmail.com>
1465
1466         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: GtkTreeView doesn't 
1467         expand/collapse with Right/Left cursor keys on Windows
1468         (#436269, Daniel Atallah)
1469
1470 2007-05-09  Cody Russell  <bratsche@gnome.org>
1471
1472         * gtk/gtkmenu.c:
1473         (get_arrows_border): New function to calculate the border sizes needed 
1474         for the scroll arrows.
1475         (get_arrows_visible_area): New function to calculate the arrows visible 
1476         area.
1477         (get_arrows_sensitive_area): New function to calculate the arrows
1478         sensitive area.
1479         (gtk_menu_paint): Refactored code to calculate the border sizes needed
1480         for the scroll arrows into get_arrows_border and the code to calculate 
1481         the visible area into get_arrows_visible_area.
1482         (gtk_menu_handle_scrolling): Refactored arrow sensitive calculations
1483         to get_arrows_sensitive_area.
1484         (gtk_menu_realize, gtk_menu_size_allocate, gtk_menu_scroll_by,
1485         gtk_menu_position, gtk_menu_scroll_to, gtk_menu_scroll_item_visible,
1486         get_visible_size, get_menu_height, gtk_menu_real_move_scroll): Update
1487         callers.  (From #436533, Tommi Komulainen)
1488
1489 2007-05-09  Kristian Rietveld  <kris@imendio.com>
1490
1491         * gtk/gtktreeview.c (gtk_tree_view_key_press),
1492         (gtk_tree_view_key_release):
1493         * gtk/gtkiconview.c (gtk_icon_view_class_init),
1494         (gtk_icon_view_key_press),
1495         (gtk_icon_view_key_release): Disable key bindings during rubber
1496         banding, make pressing Esc stop rubber banding.  (#405027).
1497
1498 2007-05-09  Emmanuele Bassi  <ebassi@gnome.org>
1499
1500         * gtk/gtkrecentmanager.c:
1501         (gtk_recent_info_get_icon): Return GTK_STOCK_DIRECTORY for entries
1502         with MIME type "x-directory/normal", instead of GTK_STOCK_FILE.
1503
1504 2007-05-05  Richard Hult  <richard@imendio.com>
1505
1506         * gdk/quartz/gdkdrawable-quartz.c:
1507         (gdk_quartz_drawable_get_context),
1508         (gdk_quartz_drawable_release_context): Fix bugs #428733 and #433301.
1509         Turns out the lockFocus logic was flawed, now we only lock/unlock 
1510         when called outside a real expose event and never flush manually.
1511
1512 2007-05-03  Behdad Esfahbod  <behdad@gnome.org>
1513
1514         * gtk/gtklabel.c (gtk_label_ensure_layout):
1515         * gtk/gtktextlayout.c (set_para_values): Make GTK_JUSTIFY_FILL work,
1516         using pango_layout_set_justify() that works now. (#435675)
1517
1518 2007-05-03  Emmanuele Bassi  <ebassi@gnome.org>
1519
1520         * gtk/gtksearchenginesimple.c (search_engine_simple_finalize): Remove
1521         spurious g_free() call.
1522
1523 Thu May  3 16:27:34 2007  Tim Janik  <timj@imendio.com>
1524
1525         * tests/testgtk.c (create_handle_box): made handle box test non-modal,
1526         so other test can interact with handle boxes.
1527
1528 2007-05-02  Emmanuele Bassi  <ebassi@gnome.org>
1529
1530         Add search file support in the GtkFileChooser. Original patch
1531         by Federico Mena Quintero; patch updated by Matthias Clasen.
1532         See bug #344785.
1533
1534         * gtk/gtksearchengine.[ch]: Private search engine abstraction
1535         object.
1536
1537         * gtk/gtksearchenginebeagle.[ch]: Private search engine
1538         implementation using libbeagle (via g_module_open()).
1539
1540         * gtk/gtksearchenginesimple.[ch]: Private search engine
1541         implementation using file tree walking.
1542
1543         * gtk/gtksearchenginetracker.[ch]: Private earch engine
1544         implementation using libtracker (via g_module_open()).
1545
1546         * gtk/gtkquery.[ch]: Private query object for the search
1547         engines.
1548
1549         * gtk/gtkfilechooserprivate.h:
1550         * gtk/gtkfilechooserdefault.c: Use the GtkSearchEngine to
1551         query a search engine backend using GtkQuery; create a new
1552         operating mode, OPERATION_MODE_SEARCH, and call the common
1553         operating mode OPERATION_MODE_BROWSE; add support for virtual
1554         shortcuts inside the shortcuts model and create a new "Search"
1555         virtual shortcut.
1556
1557         * gtk/Makefile.am: Update the build with the new files
1558
1559 2007-05-02  Armin Burgmeier  <armin@openismus.com>
1560
1561         * gtk/gtkcombobox.c: Destroy the menu in dispose instead of
1562         finalize, because the menu might unparent itself from its parent and
1563         cause a signal emission on a finalized object. (#430746)
1564
1565 2007-05-02  Dom Lachowicz <domlachowicz@gmail.com>
1566
1567         * modules/engines/ms-windows/msw_style.c: MS-Windows Theme top tabs 
1568         rendered upside down for non-XP theme (#435053, Daniel Atallah)
1569
1570 Wed May  2 11:35:45 2007  Tim Janik  <timj@imendio.com>
1571
1572         * docs/faq/gtkfaq.sgml: removed, since this file is long outdated
1573         and fully replaced by docs/faq/gtk-faq.sgml.
1574
1575 2007-05-02  Kristian Rietveld  <kris@imendio.com>
1576
1577         * gtk/gtktreeview.c (gtk_tree_view_grab_notify): stop the rubber band
1578         if it's active.
1579
1580 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1581
1582         * gtk/gtkiconcachevalidator.c: Don't be too strict when checking
1583         icon flags.  (#435062)
1584
1585 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1586         
1587         * gtk/Makefile.am: When generating gtkbuiltincache.h, only copy
1588         pngs.
1589
1590 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1591
1592         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_path_do):
1593         Don't ignore the fact that gtk_file_system_get_parent() 
1594         may return NULL.  (#424042, Jan Martinek)
1595
1596 2007-05-01  Dan Winship  <danw@novell.com>
1597
1598         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window): Make sure the
1599         leader_window's WM_CLIENT_LEADER points to itself. #435028
1600
1601 2007-05-02  Christian Persch  <chpe@gnome.org>
1602
1603         * gtk/gtktreemodel.c: (gtk_tree_iter_copy), (gtk_tree_iter_free): Use
1604         GSlice for gtk_tree_iter_copy. Bug #434863.
1605
1606 2007-05-02  Christian Persch  <chpe@gnome.org>
1607
1608         * gtk/gtkpapersize.c: (gtk_paper_size_get_paper_sizes): Put only
1609         GtkPaperSizes into the list, don't mix it with GtkPageSetups. Bug
1610         #434861.
1611
1612 2007-05-02  Christian Persch  <chpe@gnome.org>
1613
1614         * gtk/gtkpapersize.c: (gtk_paper_size_new_from_info),
1615         (gtk_paper_size_new), (gtk_paper_size_new_custom),
1616         (gtk_paper_size_copy), (gtk_paper_size_free): Use GSlice to allocate
1617         GtkPaperSize. Bug #434862.
1618
1619 2007-05-02  Christian Persch  <chpe@gnome.org>
1620
1621         * gtk/gtkstatusbar.c: (gtk_statusbar_get_context_id),
1622         (gtk_statusbar_expose_event): No need to allocate a guint; just stuff
1623         the ID into the pointer directly. Bug #434865.
1624
1625 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1626
1627         * gtk/gtkfilechooserdefault.c (struct UpdateCurrentFolderData),
1628         (update_current_folder_get_info_cb): add a new struct field to clear
1629         the file entry after the current folder has been updated.
1630
1631         (gtk_file_chooser_default_update_current_folder),
1632         (change_folder_and_display_error): Add a new function parameter to
1633         trigger file entry clearing.
1634
1635         (edited_idle_create_folder_cb),
1636         (file_list_drag_data_received_get_info_cb),
1637         (gtk_file_chooser_default_map),
1638         (gtk_file_chooser_default_set_current_folder),
1639         (switch_to_selected_folder), (save_entry_get_info_cb),
1640         (shortcuts_activate_volume_mount_cb), (shortcuts_activate_volume),
1641         (shortcuts_activate_get_info_cb), (list_row_activated),
1642         (path_bar_clicked): use new function parameter appropriately.
1643
1644         (gtk_file_chooser_default_should_respond): trigger file entry clearing
1645         after the directory is updated instead of clearing it before, this way 
1646         we avoid reloading the completion model with the soon to be old folder, 
1647         causing a warning and a glitch in the folder where completion happens. 
1648         (#379414, Carlos Garnacho)
1649
1650 2007-05-01  Matthias Clasen  <mclasen@redhat.com>
1651
1652         * gtk/gtkiconcachevalidator.[hc]: Add an icon cache validator.
1653
1654         * gtk/updateiconcache.c: Validate the generated cache before
1655         moving it in place. Also add a --validate option to validate
1656         an existing icon cache.
1657
1658         * gtk/gtkiconcache.c: Validate icon caches before using them.
1659
1660         * gtk/Makefile.am: Integrate it.
1661
1662 2007-05-01  Michael Emmel  <mike.emmel@gmail.com>
1663
1664         * gdk/directfb/gdkdisplay-directfb.c:
1665         Added stub gdk_notify_startup_complete_with_id to compile
1666         * gdk/directfb/gdkwindow-directfb.c:
1667         Added gdk_window_set_opacity
1668         * gdk/directfb/gdkkeys-directfb.c:
1669         Fix menu key handling crash Bug #413328
1670
1671 2007-05-01  Christian Persch  <chpe@gnome.org>
1672
1673         * gtk/gtkprinter.h:
1674         * gtk/gtkprintjob.h: Also move gtk_print_capabilities_get_type() to
1675         the new location. Bug #390437.
1676
1677 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1678
1679         * gtk/gtksettings.c (settings_update_color_scheme):
1680         Make sure we always have a color_hash.  (#423916, Jens Granseuer)
1681
1682 2007-04-30  Christian Persch  <chpe@gnome.org>
1683
1684         * docs/reference/gtk/gtk-sections.txt:
1685         * gtk/gtk.symbols:
1686         * gtk/gtkprinter-private.h:
1687         * gtk/gtkprinter.c: (gtk_printer_get_capabilities),
1688         (gtk_print_capabilities_get_type):
1689         * gtk/gtkprinter.h:
1690         * gtk/gtkprintjob.c:
1691         * gtk/gtkprintjob.h:
1692         * gtk/gtkprintunixdialog.c: (selected_printer_changed):
1693         Make gtk_printer_get_capabilities public, and move the
1694         GtkPrintCapabilities definition to gtkprinter.h. Bug #390437.
1695
1696 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1697
1698         * gtk/gtkexpander.c (gtk_expander_realize): A NO_WINDOW widget
1699         must not set the background of its window.  (#433972,
1700         Guilherme Polo)
1701
1702 2007-04-30  Richard Hult  <richard@imendio.com>
1703
1704         * gdk/quartz/gdkwindow-quartz.c: (gdk_window_set_opacity):
1705         Implement.
1706
1707 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1708
1709         * modules/printbackends/cups/gtkprintbackendcups.c: Get all
1710         the printer attributes when getting the list of printers,
1711         not via separate requests.  (#387889, Krishan Purahoo)
1712
1713 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1714
1715         Some more compiler warning fixes.
1716
1717         * gdk/directfb/gdkscreen-directfb.c (gdk_screen_is_composited):
1718         Fix NULL/FALSE confusion.
1719
1720 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1721
1722         Fix some compiler warnings.  (#433642, Kjartan Maraas)
1723
1724         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_get_info):
1725         (gtk_file_system_win32_create_folder):
1726         * gtk/gtkaction.c (gtk_action_create_menu): Fix NULL/FALSE confusion.  
1727
1728         * gtk/gtklinkbutton.c (gtk_link_button_clicked): Pass
1729         the right type to uri_func.  
1730         
1731         * gtk/gtktext.c (gtk_text_key_press):
1732         * gtk/gtkstatusicon.c (gtk_status_icon_get_property): 
1733         * gtk/gtkxembed.c (_gtk_xembed_send_message): Add casts.
1734
1735         * gtk/gtktrayicon-x11.c (gtk_tray_icon_manager_window_destroyed): 
1736         (gtk_tray_icon_delete):
1737         * gtk/gtkprintunixdialog.c (create_main_page):
1738         * gtk/gtkhsv.c (gtk_hsv_motion): Remove unused variables.
1739
1740         * gtk/gtkliststore.c: Adapt callbacks to GSequence types.
1741
1742 2007-04-30  Cody Russell  <bratsche@gnome.org>
1743
1744         * gdk/win32/gdkwindow-win32.c: Reintroduced erase_background(),
1745         but now we're calling it from _gdk_windowing_window_clear_area()
1746         instead of from the WM_ERASEBKGND event.  Also fixes the area
1747         that is cleared so that it is not an extra row and column too
1748         large.  (Neil Roberts, #415681)
1749
1750 2007-04-30  Matthias Clasen  <mclasen@redhat.com>
1751
1752         * gtk/gtktextview.c: Allow indents to be negative.  (#Bug 434308)
1753
1754 2007-04-30  Michael Natterer  <mitch@imendio.com>
1755
1756         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): pop up the
1757         submenu explicitely only in touchscreen mode since otherwise
1758         selecting the item already pops up the submenu. Restores the
1759         drag-selection timeout (spotted by Søren Sandmann, #128968).
1760
1761 2007-04-30  Michael Natterer  <mitch@imendio.com>
1762
1763         * gtk/gtkpapersize.h: really rename gtk_paper_size_get_builtins()
1764         to gtk_paper_size_get_paper_sizes().
1765
1766 2007-04-30  Tor Lillqvist  <tml@novell.com>
1767
1768         * gtk/gtkpapersize.c (gtk_paper_size_get_paper_sizes):
1769         _gtk_load_custom_papers() exists only on Unix.
1770
1771 2007-04-30  Tor Lillqvist  <tml@novell.com>
1772
1773         Add functionality to set overall opacity of a top-level
1774         window. (#405316)
1775
1776         * gdk/gdk.symbols: Add gdk_window_set_opacity.
1777
1778         * gdk/x11/gdkwindow-x11.c
1779         * gdk/win32/gdkwindow-win32.c: Implement
1780         gdk_window_set_opacity(). On X11 use the _NET_WM_WINDOW_OPACITY
1781         property. On Win32 use SetLayeredWindowAttributes(LWA_ALPHA).
1782
1783         * gdk/gdkwindow.h: Declare gdk_window_set_opacity().
1784
1785         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_rgba_colormap): Document
1786         that this is not implemented in the Windows backend. Add reference
1787         to gdk_window_set_opacity().
1788
1789         * gtk/gtk.symbols: Add gtk_window_set_opacity and
1790         gtk_window_get_opacity.
1791
1792         * gtk/gtkwindow.c (struct _GtkWindowPrivate)
1793         (gtk_window_class_init): Add opacity property, a double in the
1794         range [0, 1].
1795         (gtk_window_set_opacity, gtk_window_get_opacity): Implement.
1796         (gtk_window_realize): If opacity is set, call
1797         gdk_window_set_opacity().
1798
1799         * gtk/gtkwindow.h: Declare gtk_window_set_opacity() and
1800         gtk_window_get_opacity().
1801
1802 2007-04-30  Matthias Clasen <mclasen@redhat.com>
1803
1804         * gtk/gtk.symbols:
1805         * gtk/gtkpapersize.[hc]: Rename gtk_paper_size_get_builtins()
1806         to gtk_paper_size_get_paper_sizes() and optionally include
1807         custom paper sizes.
1808
1809         * gtk/gtkpagesetupunixdialog.c: Internally export a function
1810         to load custom paper sizes.
1811
1812         * modules/printbackends/file/gtkprintbackendfile.c: Implement
1813         printer_list_papers, returning all paper sizes.  (#434329,
1814         Christian Persch)
1815
1816 2007-04-30  Matthias Clasen <mclasen@redhat.com>
1817         
1818         * gtk/gtkprintoperation.c: Translate the default job
1819         name, and don't utf8-validate the job name in the
1820         setter.  (#421993, Morten Welinder)
1821
1822 2007-04-30  Matthias Clasen <mclasen@redhat.com>
1823
1824         * gtk/gtkprintjob.c (gtk_print_job_get_surface): Use
1825         g_unlink.  (#421990, Morten Welinder)
1826
1827 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1828
1829         Fix some issues with reference handling in the printing
1830         code.  (#429902, Mathias Hasselmann)
1831
1832         * gtk/gtkprintoperation.c (gtk_print_operation_finalize):
1833         Unref the print context, if we have one.
1834         (gtk_print_operation_done): Add a default ::done handler 
1835         that unrefs the print context.
1836         (preview_ready): Take a reference on the print operation
1837         preview here.
1838         (print_pages_idle): ...not here,
1839         (preview_print_idle_done): ...and release it here.
1840
1841         * tests/print-editor.c (preview_cb): Take a reference
1842         on the print operation here.
1843
1844 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1845
1846         * gtk/gtkprintoperation.c (print_pages_idle): Don't get
1847         stuck in a recursive mainloop if a synchronous preview
1848         is cancelled.
1849
1850 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1851
1852         Make the emission of ::end-print and ::done consistent
1853         for previews.  (#347567, Yevgen Muntyan)
1854
1855         * gtk/gtkprintoperation.c (preview_iface_end_preview): Set
1856         the finished status here.
1857         (preview_end_run): ...and not here.
1858         (print_pages_idle_done): Emit ::done for a cancelled preview.
1859         (print_pages_idle): If a preview has been cancelled, don't
1860         emit ::ready, but emit ::end-print. 
1861
1862         * tests/print-editor.c: Use ::end-print to undo allocations
1863         from ::begin-print.
1864
1865 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1866
1867         * gtk/gtkpapersize.c (gtk_paper_size_new): Mark paper sizes
1868         in the PWG "custom" namespace as custom. Add a link to 
1869         the spec in the docs.  (#426416, Andreas Guelzow)
1870
1871 2007-04-29  Matthias Clasen <mclasen@redhat.com>
1872
1873         * gtk/gtkprintoperation.c (gtk_print_operation_run): Document
1874         that a print operation can be run only once, and add a 
1875         corresponding g_return_if_fail().   (#379399, Masao Mutoh)
1876
1877 2007-04-29  Dan Winship  <danw@novell.com>
1878
1879         * gdk/x11/gdkdisplay-x11.c
1880         (gdk_x11_display_broadcast_startup_message): New method to
1881         marshall and send a Startup Notification message. (from #415070)
1882         (gdk_notify_startup_complete_with_id): Use that
1883
1884 2007-04-29  Mattthias Clasen  <mclasen@redhat.com>
1885
1886         * gtk/gtkprintoperation-unix.c 
1887         (_gtk_print_operation_platform_backend_launch_preview):
1888         Don't leak a file descriptor, and don't make the error
1889         dialog modal.  (#421985, Morten Welinder, Christian Persch)
1890
1891 2007-04-29  Xan Lopez  <xan@gnome.org>
1892
1893         * docs/faq/gtk-faq.sgml: Fix typo in FAQ (#373706,
1894         Diego Escalante Urrelo).
1895
1896         I'm fixing gtk-faq.sgml as it seems this is the file
1897         we actually use...
1898
1899 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1900
1901         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): 
1902         Only strip parentheses of the form (_x).  (#434261,
1903         Brian Wellington)
1904
1905 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1906
1907         * gtk/gtkprintoperation-unix.c
1908         (_gtk_print_operation_platform_backend_launch_preview):
1909         Support passing a print settings file to the preview 
1910         command.  (#403717, Christian Persch)
1911
1912         * gtk/gtksettings.c: Document %s in the 
1913         gtk-print-preview-command setting.
1914
1915 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1916
1917         * gtk/gtkprintoperation.c (print_pages_idle): Also check
1918         the default handler when deciding whether to emit the
1919         paginate signal.  (#345345, Yevgen Muntyan)
1920
1921 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1922
1923         * gtk/gtkprintoperation.h: Add a new error code
1924
1925         * gtk/gtk.symbols:
1926         * gtk/gtkpagesetup.[hc]:
1927         * gtk/gtkpapersize.[hc]:
1928         * gtk/gtkprintsettings.[hc]: Add functions to serialize 
1929         and deserialize page setups and print settings to files 
1930         and key files.  (#344515, Christian Persch)
1931
1932         * gtk/gtkpagesetupunixdialog.c: Adapt to the new functions.
1933
1934         * tests/print-editor.c: Use the new functions to persist 
1935         page setup and print settings.
1936
1937 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1938
1939         * gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_finalize):
1940         Free the custom paper list.  (#403267, Felix Riemann)
1941
1942 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1943
1944         * gtk/gtkprintjob.c (gtk_print_job_get_surface): Fix a 
1945         small memory leak.  (#403251, Felix Riemann)
1946
1947 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1948
1949         * modules/printbackends/cups/gtkprintbackendcups.c: Fix a
1950         typo. String change !  (#406160, Stephane Raimbault)
1951
1952 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1953
1954         * gtk/gtk.symbols:
1955         * gtk/gtkpapersize.[hc]: Add a function to list the
1956         builtin paper sizes.  (#382355, Christian Persch)
1957
1958 2007-04-29  Matthias Clasen  <mclasen@redhat.com>
1959
1960         * gtk/gtk.symbols:
1961         * gtk/gtkprinter-private.h:
1962         * gtk/gtkprinter.[hc]: Make gtk_printer_has_details() and
1963         gtk_printer_request_details() public.
1964
1965         * gtk/gtkpagesetupunixdialog.c:
1966         * gtk/gtkprintunixdialog.c: Update callers.  (#389203, 
1967         Christian Persch)
1968
1969 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1970
1971         * configure.in: Add --enable-test-print-backend, defaulting
1972         to no.
1973
1974         * modules/printbackends/Makefile.am: Make building the test
1975         print backend conditional.
1976
1977 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1978
1979         * modules/printbackends/lpr/*:
1980         * modules/printbackends/cups/*: Correct some copyright lines.
1981
1982         * configure.in:
1983         * modules/printbackends/Makefile.am:
1984         * modules/printbackends/test/*: Add a test print backend.
1985         (#409089, John Palmieri)
1986
1987 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1988
1989         * gtk/gtktexttag.[hc]: Add a way to specify accumulative
1990         margins.  (#344499, Nate Nielsen)
1991
1992 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1993
1994         * gtk/gtkeventbox.c (gtk_event_box_realize): Fix the offsets
1995         of the input-only window if we also have a visible window. 
1996         (#405089)
1997
1998 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
1999
2000         * gtk/gtkliststore.c (gtk_list_store_set_valist_internal):
2001         * gtk/gtktreestore.c (gtk_tree_store_set_valist_internal):
2002         Recognize negative column indices as invalid.  (#415260,
2003         Chris Wilson)
2004
2005 2007-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
2006
2007         * gdk/quartz/gdkeventloop-quartz.c: (select_thread_func),
2008         (poll_func): fix two more potential races that could happen when
2009         an application is polling in the mainloop and a separate thread
2010         tries to wake it up using g_idle_add(). Fixes #425271 comment 5.
2011
2012 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
2013
2014         * gtk/gtkentry.c (gtk_entry_grab_focus): 
2015         (gtk_entry_real_insert_text): Only call g_object_get() 
2016         when necessary.  (#373137, Morten Welinder, patch by Xan Lopez)
2017
2018 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
2019
2020         * gtk/gtkstatusicon.c (gtk_status_icon_get_size): Add
2021         a note about being embedded.  (#340107, Christian Persch)
2022
2023 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
2024
2025         * gtk/gtkdnd.[hc]: Add GTK_TARGET_OTHER_{APP,WIDGET} to
2026         restrict drags within an application/widget.  (#163141, 
2027         Jorn Baayen)
2028
2029 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
2030
2031         * docs/tools/Makefile.am:
2032         * gtk/Makefile.am: Make make clean clean.  (#410160, Tommi
2033         Komulainen)
2034
2035 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
2036
2037         * gdk/win32/bdfcursor.c (compose_cursors_from_fonts):
2038         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_reorder): 
2039         * gtk/gtkfilesystemmodel.c (got_root_folder_cb):
2040         (get_children_folder_cb): Plug memory leaks caused by wrong 
2041         use of g_slist_remove_link().  (#405515, Nicolas Peninguy)
2042
2043 2007-04-28  Matthias Clasen  <mclasen@redhat.com>
2044         
2045         * demos/gtk-demo/printing.c: Fix the headers in the print
2046         demo.  (#423722, Yevgen Muntyan)
2047
2048 2007-04-28  Xan Lopez  <xan@gnome.org>
2049
2050         * gtk/gtkentrycompletion.c (gtk_entry_completion_insert_completion_text): 
2051         Use strstr instead of g_strstr with -1 for length.
2052
2053 2007-04-28  Xan Lopez  <xan@gnome.org>
2054
2055         * gtk/gtkentry.c:
2056         * gtk/gtkentrycompletion.c:
2057         * gtk/gtkentrycompletion.h:
2058         * gtk/gtkentryprivate.h:
2059
2060         Remember the user input that triggered the completion, add
2061         API to the retrieve it and reset the entry contents to it
2062         if the user cancels the tentative completion during
2063         the inline-selection.
2064         
2065 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
2066
2067         * gdk/x11/gdkgeometry-x11.c: Factor out window movement
2068         functions. (#63820, Tilman Sauerbeck)
2069
2070 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
2071
2072         * gdk/x11/gdkgeometry-x11.c: Factor out translate_pos().
2073         (#63820, Tilman Sauerbeck)
2074
2075 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
2076
2077         * gdk/x11/gdkgeometry-x11.c: Factor out window mapping
2078         and unmapping functions.  (#63820, Tilman Sauerbeck)
2079
2080 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
2081
2082         * gdk/x11/gdkgeometry-x11.c: Make list handling code
2083         easier to read.  (#63820, Tilman Sauerbeck)
2084
2085 2007-04-27  Matthias Clasen  <mclasen@redhat.com>
2086
2087         * gtkassistant.c:
2088         * gtkiconfactory.c:
2089         * gtkiconview.c:
2090         * gtkpapersize.c:
2091         * gtkrecentmanager.c:
2092         * gtktextiter.c: Internalize some strings, pointed out
2093         by Damon Chaplin.
2094
2095 2007-04-27  Xan Lopez  <xan@gnome.org>
2096
2097         Support inline-selection in entries (#318459)
2098         
2099         * gtk/gtkentry.c:
2100         * gtk/gtkentrycompletion.c:
2101         * gtk/gtkentrycompletion.h:
2102         * gtk/gtkentryprivate.h:
2103
2104         When enabled cursor-match is emited when the cursor is on
2105         a possible completion on the list. The default implementation
2106         will replace the contents on the entry with the contents of
2107         the text column in the completion model.
2108
2109         Review and improvements by Matthias Clasen.
2110
2111 2007-04-27  Michael Natterer  <mitch@imendio.com>
2112
2113         Merged heavily modified patch from maemo-gtk which enables opening
2114         and closing submenus on click, and introduces some usability
2115         changes when gtk-touchscreen-mode is enabled (bug #128968):
2116
2117         * gtk/gtkmenushell.c (struct GtkMenuShellPrivate): added boolean
2118         "activated_submenu" to indicate that the current mouse operation
2119         (click or drag) has opened a submenu.
2120
2121         (gtk_menu_shell_button_press): pop up submenus without delay
2122         and record the fact in "activated_submenu".
2123
2124         (gtk_menu_shell_button_release): if a submenu was explicitely
2125         opened, or not opened by this release's button_press, or enough
2126         time has passed since timeout-opening it, close the submenu here.
2127
2128         (gtk_menu_shell_enter_notify): when entering a menu item with
2129         any mouse button pressed, open its submenu.
2130
2131         (gtk_real_menu_shell_move_current): in touchsreen mode, close the
2132         submenu when moving the focus away from it via keyboard-navigation.
2133
2134         * gtk/gtkmenuitem.[ch] (_gtk_menu_item_popup_submenu): added
2135         parameter "gboolean with_delay" so GtkMenuShell can control this
2136         for the different scenarios of submenu showing.
2137
2138         (_gtk_menu_item_popdown_submenu): new function. also needed by
2139         GtkMenuShell for closing submenus on click.
2140
2141         Renamed internal function gtk_menu_item_select_timeout() to
2142         gtk_menu_item_popup_timeout().
2143
2144         (gtk_menu_item_real_popup_submenu): new utility function which
2145         does the actual popup and records the exact time of the popup when
2146         the menu was timeout-opened (using g_get_current_time()).
2147
2148         (gtk_real_menu_item_select): don't add the popup timeout when in
2149         touchscreen mode.
2150
2151         * gtk/gtkmenu.c (gtk_menu_popup): in touchscreen mode, select the
2152         first item of every opened menu.
2153
2154 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
2155
2156         * gtk/gtkfilechooserentry.c: Append a '/' to directory names
2157         in the completion popup.  (#431323, Maarten Maathuis)
2158
2159 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
2160
2161         * demo/gtk-demo/combobox.c: Add a simple validation demo. 
2162         * gtk/gtkcomboboxentry.c: Make it possible to add arbitrary
2163         children to a GtkComboBoxEntry.  (#426401, Paul Pogonyshev)
2164
2165 2007-04-26  Tor Lillqvist  <tml@novell.com>
2166
2167         * gtk/gtkinputdialog.c (gtk_input_dialog_fill_axes)
2168         (gtk_input_dialog_fill_keys): Remove old child of scrolled window
2169         before adding a new one when switching what input device is being
2170         handled. (#399425)
2171
2172 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
2173
2174         * modules/printbackends/lpr/gtkprintbackendlpr.c
2175         (gtk_print_backend_lpr_init): Mark the printer list as done. 
2176         (#428665, Bogdan Gheorghe)
2177
2178 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
2179
2180         * Makefile.am:
2181         * gtk/Makefile.am: Don't install UNIX-printing headers and
2182         support files on non-UNIX platforms.  (#425655, Vincent Geddes)
2183
2184 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
2185
2186         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Accept
2187         unnamed separators.  (#369112, Christian Persch)
2188
2189 2007-04-26  Matthias Clasen  <mclasen@redhat.com>
2190
2191         * gtk/gtkaccelgroup.c (gtk_accel_group_finalize): Don't access
2192         invalid memory.  (#429732, Armin Burgmeier)
2193
2194 2007-04-26  Cody Russell  <bratsche@gnome.org>
2195
2196         * gdk/win32/xcursors.h:
2197         * gdk/win32/gdkcursor-win32.c:
2198
2199         Use Win32 native cursors instead of the ones built into GTK
2200         where it makes sense. (#128852, Tim Evans)
2201
2202 2007-04-25  Cody Russell  <bratsche@gnome.org>
2203
2204         * gdk/gdkwindow.h:
2205         * gtk/gtkwidget.c:
2206         * gtk/gtkhandlebox.c:
2207         * gdk/directfb/gdkwindow-directfb.c:
2208         * gdk/linux-fb/gdkwindow-fb.c:
2209         * gdk/quartz/gdkwindow-quartz.c:
2210         * gdk/win32/gdkwindow-win32.c:
2211         * gdk/x11/gdkwindow-x11.c:
2212         Added window type hint and implement drop shadows on Win32
2213         for menus, tooltips, etc. (#148535, Tim Evans, Dom Lachowicz)
2214
2215 2007-04-25  Jakub Steiner <jimmac@ximian.com>
2216
2217         * gtk/stock-icons/16/gtk-close.{png,svg}: added 16x16 version of
2218                 gtk-close as per discussion in bug #431740.
2219
2220 2007-04-25  Matthias Clasen  <mclasen@redhat.com>
2221
2222         * gtk/gtktreeview.c (gtk_tree_view_style_set): Set the background
2223         of the header window again.  (#431067, Benjamin Berg)
2224
2225 2007-04-25  Matthias Clasen  <mclasen@redhat.com>
2226
2227         * gtk/gtkicontheme.c (theme_lookup_icon): Set the filename to
2228         NULL for builtin icons, sinc gtk_icon_info_get_builtin_pixbuf()
2229         depends on it. 
2230
2231         * tests/testicontheme.c: Report builtin icons.
2232
2233 2007-04-25  Matthias Clasen  <mclasen@redhat.com>
2234
2235         * gtk/gtkprintoperation.c (preview_iface_end_preview): Don't 
2236         crash if end_run is not set.  (#424168, Matthias Hasselmann)
2237
2238 2007-04-25  Michael Natterer  <mitch@imendio.com>
2239
2240         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): fix ACTIVE state of
2241         scroll buttons (we were setting the state to ACTIVE but
2242         immediately overwriting it with NORMAL or PRELIGHT). Also got rid
2243         of many separate calls to gdk_window_invalidate_rect() by
2244         remembering the old button state and only invalidating the area if
2245         the state has changed (addresses parts of bug #433242, Tommi
2246         Komulainen).
2247
2248         (gtk_menu_scroll_to): change the arrow states only if changing
2249         from or to INSENSITIVE state, so we don't overwrite the ACTIVE
2250         state set by above function.
2251
2252 2007-04-25  Michael Natterer  <mitch@imendio.com>
2253
2254         * gtk/gtkprintoperation.c (preview_iface_is_selected): fix the
2255         build. Dunno if the fix is right, but I think it is.
2256
2257 2007-04-25  Kristian Rietveld  <kris@imendio.com>
2258
2259         * gtk/gtktooltip.c (find_topmost_widget_coords_from_event):
2260         cleanup/refactor some leftover code.
2261
2262 2007-04-24  Matthias Clasen  <mclasen@redhat.com>
2263
2264         * gtk/gtkprintunixdialog.c (dialog_get_page_ranges): Parse
2265         half-open ranges like -2 or 3-, and be a bit more liberal
2266         about whitespace.
2267         (dialog_set_page_ranges): Support half-open ranges.
2268
2269         * gtk/gtkprintoperation.c (print_pages_idle): Substitute the
2270         number of pages in half-open ranges.
2271         (preview_iface_is_selected): Support half-open ranges here, too.
2272
2273 2007-04-24  Chris Wilson  <chris@chris-wilson.co.uk>
2274
2275         * gtk/gtkicontheme.c (scan_directory): Ensure the 
2276         icon_theme->all_icons and dir->icons hash tables use the same string
2277         as their keys. (#418531)
2278
2279 2007-04-23  Cody Russell  <bratsche@gnome.org>
2280         * modules/engines/ms-windows/msw_style.c: Fixed one-pixel drawing error on
2281         left-most tab when notebooks are top-oriented.  Also general cleanup of
2282         notebook tab related code.  (Lieven van der Heide, Cody Russell)
2283
2284 2007-04-23  Matthias Clasen  <mclasen@redhat.com>
2285
2286         * modules/printbackends/cups/gtkprintbackendcups.c: Reduce
2287         the amount of debug spew if we are not debugging.
2288         
2289 2007-04-23  Michael Natterer  <mitch@imendio.com>
2290
2291         * tests/Makefile.am (testtooltips_SOURCES): fix typo:
2292         testtoooltips_SOURCES -> testtooltips_SOURCES.
2293
2294 2007-04-19  Cody Russell <bratsche@gnome.org>
2295
2296         * modules/engines/ms-windows/msw_style.c: Fix menuitem rendering
2297         for Windows Vista.  (#392015, Hiroyuki Yamamoto)
2298
2299 2007-04-19  Dominic Lachowicz <domlachowicz@gmail.com>
2300
2301         * modules/engines/ms-windows/msw_style.c: Fix pixbuf leaks in
2302         non-WinXP rendering paths. From Daniel Atallah (#403470)
2303         
2304 2007-04-19  Matthias Clasen  <mclasen@redhat.com>
2305
2306         * gtk/gtkicontheme.h:
2307         * gtk/gtkicontheme.c: Add GTK_ICON_LOOKUP_GENERIC_FALLBACK
2308         icon lookup flag and implement it.  (#396901, Luca Ferreti)
2309         
2310 2007-04-18  Richard Hult  <richard@imendio.com>
2311
2312         * gdk/quartz/gdkwindow-quartz.c:
2313         (gdk_window_quartz_process_updates_internal),
2314         (gdk_window_quartz_process_all_updates),
2315         (gdk_window_impl_quartz_process_updates): Refactor the process 
2316         updates functions to share code between them. Also fixes bug 
2317         #427660 by not updating larger regions than necessary.
2318
2319 2007-04-18  Matthias Clasen  <mclasen@redhat.com>
2320
2321         * gdk/gdkregion-generic.h (GROWREGION): Handle the case
2322         of nRects == 0 correctly.  
2323         
2324 2007-04-18  Emmanuele Bassi  <ebassi@gnome.org>
2325
2326         * gtk/gtkrecentmanager.c (gtk_recent_manager_lookup_item): Fix
2327         a leak by not increasing the refcount of the GtkRecentInfo
2328         object when returning it (thanks to Matthias Clasen).
2329
2330 2007-04-16  Alexander Larsson  <alexl@redhat.com>
2331
2332         * gtk/gtkprintoperation.c (gtk_print_operation_run):
2333         Make async print preview work by actually starting
2334         the print process in that case (#424168)
2335
2336 2007-04-14  Yevgen Muntyan <muntyan@tamu.edu>
2337
2338         * gtk/gtkselection.c (selection_get_text_plain): fixed
2339         wrong g_convert_with_fallback() call which caused
2340         gtk_selection_data_get_text() return invalid UTF-8 for
2341         non-ASCII text in text/plain selection (#382824).
2342
2343 2007-04-12  Jakub Steiner <jimmac@ximian.com>
2344
2345         * gtk/stock-icons/*: update the stock icons to follow the Tango
2346                 style guidelines
2347
2348 2007-04-11  Chris Wilson  <chris@chris-wilson.co.uk>
2349
2350         * gtk/gtkiconfactory.c (_gtk_icon_factory_list_ids):
2351         * gtk/gtkstock.c (gtk_stock_list_ids):
2352             Switch over to use glib's new g_hash_table_get_keys() rather
2353             than our own static implementation.
2354
2355         * gtk/gtkiconfactory.h: Update to return a GList.
2356
2357         * configure.in: Bump required version to 2.13.1
2358
2359 2007-04-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2360
2361         * gdk/quartz/gdkeventloop-quartz.c: Protect the polling thread
2362           setup and shutdown function by mutexes and read the wakeup
2363           pipe unconditionally and unblocking. This should make the main
2364           loop always be woken up when using g_idle_add() from another
2365           thread in the Quartz backend (#425271).
2366
2367 2007-04-10  Matthias Clasen  <mclasen@redhat.com>
2368
2369         * gdk/x11/xsettings-client.[hc]: Change the XSettingsWatchFunc
2370         to return a Bool to indicate success. Update callers and 
2371         implementors. Based on a patch by Owen Taylor.
2372         
2373         * gdk/x11/gdkevents-x11.c (gdk_xsettings_watch_cb): Don't
2374         leak a reference to gdkwin.
2375
2376 2007-04-07  Xan Lopez  <xan@gnome.org>
2377
2378         * gtk/gtknotebook.c (gtk_notebook_class_init): 
2379         s/arrow-size/arrow-spacing in the arrow-spacing
2380         style property docs.
2381
2382 2007-04-06  Richard Hult  <richard@imendio.com>
2383
2384         * gdk/quartz/: Clean up namespaces to make the code more
2385         maintainable.
2386
2387         * gdk/quartz/gdkdrawable-quartz.c:
2388         * gdk/quartz/gdkgc-quartz.c: Fix bug #418384, alignment of tiled
2389         images, by setting the pattern phase for the CG pattern.
2390
2391 2007-04-04  Kristian Rietveld  <kris@imendio.com>
2392
2393         * gtk/gtktooltip.c (tooltip_browse_mode_expired),
2394         (gtk_tooltip_hide_tooltip), (tooltip_popup_timeout),
2395         (gtk_tooltip_start_delay): use new gdk_threads API.
2396
2397 2007-04-03  Behdad Esfahbod  <behdad@gnome.org>
2398
2399         * gtk/gtksettings.c (settings_update_font_options): Don't set
2400         metrics-hinting font option.  Rely on the default value which is
2401         on for all raster cairo surfaces. (#425985)
2402
2403 2007-04-03  Loïc Minier  <lool@dooz.org>
2404
2405         * gdk/x11/gdkscreen-x11.c: (check_xfree_xinerama): Revert to
2406         non-xinerama mode when XineramaQueryScreens returns NULL; patch from
2407         Simon McVittie; #425786.
2408
2409 2007-04-02  Michael Natterer  <mitch@imendio.com>
2410
2411         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): remove
2412         artifact from the time when type checking casts warned on NULL,
2413         some whitespace cleanup.
2414
2415 2007-04-01  Cody Russell  <bratsche@gnome.org>
2416
2417         * modules/engines/ms-windows/msw_style.c: Fix rendering of
2418         notebook tabs when they are bottom-oriented.  Fixes #399253.
2419
2420 2007-03-31  Elijah Newren  <newren gmail com>
2421
2422         * gdk/x11/gdkwindow-x11.c (setup_toplevel_window,
2423           gdk_x11_window_set_user_time):
2424         Patch from Matthias to add support for the
2425         _NET_WM_USER_TIME_WINDOW EWMH protocol; see #354213.
2426
2427         WARNING: This patch will make metacity <= 2.18.0 freeze on
2428         workspace switch.  This is due to a weird problem that should only
2429         affect window managers using gdk in-process for decoration drawing
2430         and which make an unsafe assumption relating to doing so (i.e. it
2431         should only affect metacity).  Upgrade your version of metacity if
2432         you hit this bug.
2433
2434 2007-03-29  Michael Natterer  <mitch@imendio.com>
2435
2436         Don't close menus on clicks on their border area (bug #423761).
2437         (modified patch from maemo-gtk).
2438
2439         * gtk/gtkmenu.c (gtk_menu_button_press)
2440         (gtk_menu_button_release): bail out early if the click was on the
2441         menu's border (not on any item and not outside the window).
2442
2443         (pointer_in_menu_window): new utility function which checks if
2444         passed root coords are inside the menu_shell or one of its
2445         parent shells.
2446
2447 2007-03-29  Michael Natterer  <mitch@imendio.com>
2448
2449         * gtk/gtkmenu.c: get rid of local GtkSettings variables by moving
2450         gtk_widget_get_settings() into the g_object_get() call. Some small
2451         indentation fixes.
2452
2453 2007-03-28  Matthias Clasen  <mclasen@redhat.com>
2454
2455         * modules/printbackends/cups/gtkcupsutils.[hc]:
2456         * modules/printbackends/cups/gtkprintbackendcups.c: Apply
2457         a patch by John Palmieri to make the cups print backend support
2458         raw printers.  
2459
2460 2007-03-28  Kristian Rietveld  <kris@imendio.com>
2461
2462         * gtk/gtkwidget.c (gtk_widget_set_tooltip_window): don't unref
2463         tooltip_window, since this is handled by set_qdata_full() already.
2464         (#412001, Torsten Schoenfeld).
2465
2466 2007-03-27  Tor Lillqvist  <tml@novell.com>
2467
2468         * modules/input/Makefile.am: Use LDADDS for im-multipress.la, too: 
2469
2470 2007-03-26  Christian Persch  <chpe@gnome.org>
2471
2472         * gtk/gtkrc.c: (gtk_rc_context_get): Initialise variable. Bug #423064.
2473
2474 2007-03-24  Kristian Rietveld  <kris@gtk.org>
2475
2476         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
2477         calculate the depth with the corrected real_cell_area and don't
2478         subtract horizontal_separator/2.
2479
2480 2007-03-24  Andreas Nilsson <andreas@andreasn.se>
2481
2482         * gtk-yes.png
2483         * gtk-no: More Tango love.
2484
2485 2007-03-23  Jakub Steiner <jimmac@ximian.com>
2486
2487         * gtk-dialog-authentication.svg
2488         * gtk-dialog-error.svg
2489         * gtk-dialog-info.svg
2490         * gtk-dialog-question.svg
2491         * gtk-dialog-warning.svg: Start with a Tango face-lift.
2492
2493 2007-03-23  Rodney Dawes  <dobey@novell.com>
2494
2495         * gtk/gtkicontheme.c: Fix a couple of comment typos (#421627)
2496
2497 2007-03-23  Matthias Clasen  <mclasen@redhat.com>
2498
2499         * gtk/gtkfilechooserdefault.c: Add a keybinding (C-h) to
2500         toggle whether to show hidden files.  (#344657, 
2501         Wouter Bolsterlee, Priit Laes, et al)
2502
2503 2007-03-23  Matthias Clasen  <mclasen@redhat.com>
2504
2505         * gtk/gtkfilechooserdefault.c: Add a keybinding (C-l) to
2506         toggle the visibility of the location entry.  (#383354, 
2507         John Pye, patch by Carlos Garnacho)
2508
2509 2007-03-22  Matthias Clasen  <mclasen@redhat.com>
2510
2511         * gtk/gtksettings.c (merge_color_scheme): Freeze property
2512         notification.
2513         * gtk/gtksettings.c (_gtk_settings_handle_event): Handle
2514         the gtk-color-scheme xsetting being unset.
2515
2516         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): Handle
2517         recursion locally.
2518
2519 2007-03-21  Matthias Clasen  <mclasen@redhat.com>
2520
2521         * gtk/gtkprintoperation-unix.c: Remove leftover debug spew.
2522
2523 2007-03-21  Rodney Dawes  <dobey@novell.com>
2524
2525         * gtk/gtk.symbols:
2526         * gtk/gtkicontheme.[ch]:
2527         * docs/reference/gtk/gtk-sections.txt:
2528         * tests/testicontheme.c:
2529         Add a new API call gtk_icon_theme_list_contexts so that one can
2530         choose icons from a theme by context (#420719)
2531         
2532 2007-03-21  Ross Burton  <ross@burtonini.com>
2533
2534         * gtk/gtktexttag.c:
2535         Document the ::event signal (#420703).
2536
2537 2007-03-20  Kristian Rietveld  <kris@gtk.org>
2538
2539         * gtk/gtktreeviewcolumn.c:
2540         * gtk/gtktreeprivate.h: add _gtk_tree_view_column_get_focus_area().
2541
2542         * gtk/gtktreeview.c (gtk_tree_view_clamp_column_visible): add
2543         focus_to_cell parameter, rework to handle clamping columns which
2544         are bigger than the available page size better,
2545         (gtk_tree_view_key_press): remove code handling moving the focus
2546         to other column headers,
2547         (gtk_tree_view_header_focus): add clamp_column_visible parameter,
2548         fix RTL support, don't wrap around when moving focus to other
2549         column headers, call gtk_tree_view_clamp_column_visible() instead
2550         of duplicating code,
2551         (gtk_tree_view_focus): only clamp the column visible when we are
2552         explicitly moving to another column header (fixes #399555, Charles
2553         Kerr),
2554         (gtk_tree_view_move_cursor_left_right): update call to
2555         gtk_tree_view_clamp_column_visible().
2556
2557 2007-03-19  Matthias Clasen <mclasen@redhat.com> 
2558
2559         * demos/gtk-demo/appwindow.c: Explicitly set the title on the
2560         about dialog.
2561
2562 2007-03-18  Matthias Clasen <mclasen@redhat.com> 
2563
2564         * gtk/gtkentrycompletion.c (gtk_entry_completion_compute_prefix):
2565         Ensure that the prefix is valid UTF-8.  (#419568, Nickolay V. Shmyrev)
2566
2567 2007-03-18  Matthias Clasen <mclasen@redhat.com> 
2568
2569         * modules/input/gtkimcontextmultipress.[hc]:
2570         * modules/input/im-multipress.conf:
2571         * modules/input/immultipress.c:
2572         * modules/input/README.multipress: Add the multipress input
2573         method.  (#417446, Johannes Schmid, Murray Cumming)
2574
2575         * modules/input/Makefile.am: Glue
2576
2577 2007-03-17  Chris Wilson  <chris@chris-wilson.co.uk>
2578
2579         * gdk/x11/gdkvisual-x11.c (_gdk_visual_init):
2580         Initialise nxvisuals to 0 in order to handle XGetVisualInfo()
2581         failures gracefully. (#419171)
2582
2583 2007-03-17  Emmanuele Bassi  <ebassi@gnome.org>
2584
2585         * gtk/gtkrecentaction.c (recent_chooser_set_property),
2586         (gtk_recent_action_set_property): Remove useless inlined
2587         function and propagate the properties to the GtkRecentChooser
2588         objects we create, instead of all the proxies.
2589
2590         (set_current_filter): Remove 'inline' marker.
2591
2592 2007-03-16  Emmanuele Bassi  <ebassi@gnome.org>
2593
2594         Apply changes suggested by Michael Natterer. (#338843)
2595
2596         * gtk/gtkaction.h:
2597         * gtk/gtkaction.c: Rename get_submenu() to create_menu();
2598         rename gtk_action_get_submenu() to gtk_action_create_menu().
2599
2600         * gtk/gtkrecentaction.c: Update for GtkAction change.
2601
2602         * gtk/gtkuimanager.c (update_node): Update for GtkAction change;
2603         also, use the menu from the GtkAction for both menuitem and
2604         toolitem nodes.
2605
2606 2007-03-16  Xan Lopez  <xan@gnome.org>
2607
2608         * gtk/gtkwidget.c: Fix documentation error in
2609         gtk_widget_set_redraw_on_allocate.
2610
2611 2007-03-16  Matthias Clasen  <mclasen@redhat.com>
2612
2613         * gtk/gtkprintunixdialog.c (printer_added_cb): Scroll to
2614         make the selected printer visible.  (#418403, Nickolay V. Shmyrev,
2615         patch by Christian Persch)
2616
2617 2007-03-15  Federico Mena Quintero  <federico@novell.com>
2618
2619         Merged from gtk-2-10:
2620
2621         * gtk/gtkfilechooserdefault.c (find_good_size_from_style):
2622         PANGO_PIXELS() gives us device units, which are *points* in
2623         pangocairo's parlance, but we want actual pixels.  So, get the
2624         screen's resolution to compute the actual number of pixels.
2625         Fixes bug #418585.
2626
2627 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2628
2629         * gtk/gtkrecentmanager.c (gtk_recent_manager_add_item): Remove
2630         unused GError; do not allocate GtkRecentData and use a variable
2631         on the stack. (#418673, Morten Welinder)
2632
2633 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2634
2635         * gtk/gtkaction.[ch]: Add GtkActionClass::get_submenu() vfunc:
2636         actions providing a menu item or a menu tool button with already
2637         a submenu should return the GtkMenu widget.
2638
2639         * gtk/gtkuimanager.c (update_node): If an action provides its
2640         own submenu, use it instead of adding an empty one
2641
2642         * gtk/gtkrecentaction.[ch]: Add GtkRecentAction, an action
2643         implementing the GtkRecentChooser interface for displaying the
2644         list of recently used files into menus and toolbars generated
2645         using GtkUIManager. (#338843)
2646
2647         * gtk/Makefile.am:
2648         * gtk/gtk.h:
2649         * gtk/gtk.symbols: Add GtkRecentAction API to the build.
2650
2651         * tests/testactions.c: Exercise the GtkRecentAction API.
2652
2653 2007-03-15  Chris Wilson  <chris@chris-wilson.co.uk>
2654
2655         * gtk/gtkicontheme.c (ensure_valid_themes), (rescan_themes),
2656         (gtk_icon_theme_rescan_if_needed): Protect ensure_valid_themes()
2657         from recursion, which can happen for example if the app tries to
2658         reload an icon from within a theme-changed handler. (#418531)
2659
2660 2007-03-15  Richard Hult  <richard@imendio.com>
2661
2662         * gdk/quartz/gdkmain-quartz.c: Add stubs for
2663         gdk_notify_startup_complete_with_id and gdk_window_set_startup_id
2664         here too.
2665
2666 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2667
2668         * gtk/gtkrecentmanager.c: Fix documentation errors. (Morten
2669         Welinder)
2670
2671 2007-03-15  Tor Lillqvist  <tml@novell.com>
2672
2673         * gdk/gdk.symbols: Add gdk_notify_startup_complete_with_id and
2674         gdk_window_set_startup_id.
2675
2676         * gdk/win32/gdkmain-win32.c: Add dummy implementations of the above.
2677
2678 2007-03-15  Emmanuele Bassi  <ebassi@gnome.org>
2679
2680         * gtk/gtkrecentchooserprivate.h:
2681         * gtk/gtkrecentchooserutils.c: Move filtering of the recent
2682         files list into the shared implementation; do the filtering
2683         before the sorting, so that we always clamp on the desired
2684         size. (#418219)
2685
2686         * gtk/gtkrecentchoosermenu.c: Remove the filtering of the
2687         list, as it's already been done.
2688
2689         * gtk/gtkrecentchooserdefault.c: Ditto; also remove the
2690         GtkTreeModelFilter: just reload the view if the sorting and
2691         filtering properties change.
2692
2693         * gtk/testrecentchoosermenu.c: Exercise the limit property.
2694
2695 2007-03-14  Michael Natterer  <mitch@imendio.com>
2696
2697         Make gtk_widget_set_extension_events() work on already realized
2698         widgets (bug #379550, Tommi Komulainen)
2699
2700         * gdk/x11/gdkinput.c (gdk_input_set_extension_events): allow to be
2701         called multiple times without leaking and work correctly when
2702         already realized (don't rely on a configure event following).
2703
2704         * gtk/gtkwidget.c (gtk_widget_set_extension_events_internal): new
2705         internal function which walks the GdkWindow tree and sets the
2706         extension events on all windows that belong to the widget.
2707
2708         (gtk_widget_realize)
2709         (gtk_widget_set_extension_events): use the new function.
2710
2711 2007-03-14  Emmanuele Bassi  <ebassi@gnome.org>
2712
2713         Various clean ups in the GtkRecent code. (see #338843)
2714
2715         * gtk/gtkrecentchooserdefault.c:
2716         * gtk/gtkrecentchoosermenu.c:
2717         * gtk/gtkrecentchooserprivate.h:
2718         * gtk/gtkrecentchooserutils.c: Move the recent chooser function
2719         for getting the sorted and clamped list of recent files from the
2720         manager outside the implementations.
2721
2722         * gtk/gtkrecentchooserdefault.c (chooser_set_sort_type): Repopulate
2723         the list when the sorting order changes.
2724
2725         (gtk_recent_chooser_default_dispose),
2726         (gtk_recent_chooser_default_finalize): Move object unref and
2727         source removal from finalize to dispose.
2728
2729         * gtk/gtkrecentchooser.c (gtk_recent_chooser_type_init): Relax the
2730         prerequisite for the GtkRecentChooser interface implementations,
2731         from GtkObject to GObject.
2732
2733         (gtk_recent_chooser_class_init): Use GTK_PARAM_* instead of
2734         G_PARAM_*
2735
2736 2007-03-13  Emmanuele Bassi  <ebassi@gnome.org>
2737
2738         Apply patch by Vytautas Liuolia for changing the startup
2739         notification id on a window in the X11 backend. (#347375)
2740
2741         * gdk/gdk.h:
2742         * gdk/gdkx.h:
2743         * gdk/x11/gdkdisplay-x11.c: Add gdk_notify_startup_complete_with_id()
2744         and gdk_x11_display_get_startup_notification_id().
2745
2746         * gdk/gdkwindow.h:
2747         * gdk/x11/gdkwindow-x11.c: Add gdk_window_set_startup_id().
2748
2749         * gtk/gtkwindow.h:
2750         * gtk/gtkwindow.c: Add gtk_window_set_startup_id(), used to
2751         change the startup notification id.
2752         
2753         (gtk_window_class_init), (gtk_window_init),
2754         (gtk_window_set_property): Add write-only "startup-id" property
2755         to GtkWindow.
2756
2757         (gtk_window_realize): Set the startup notification id
2758         on a GtkWindow if it's valid.
2759
2760         (gtk_window_map): If we have another valid startup notification
2761         id then finish the notification process.
2762
2763 2007-03-13  Matthias Clasen  <mclasen@redhat.com>
2764
2765         * gtk/gtknotebook.c (gtk_notebook_real_insert_page):
2766         Fix tabbed browsing in epiphany.  (#413664, Christian Persch)
2767
2768 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2769
2770         * gtk/gtksizegroup.c (gtk_size_group_add_widget): Clarify
2771         docs.  (#345844, Torsten Schoenfeld)
2772
2773         * gdk/x11/gdkevents-x11.c (gdk_display_add_client_message_filter):
2774         * gdk/gdkwindow.c (gdk_window_add_filter): Add
2775         cross-references.  (#351252, Vincent Untz)
2776
2777         * gtk/gtkprintoperation.c: Fix an oversight in an
2778         example.  (#381083, Ian Puleston)
2779
2780         * gtk/gtkcombobox.c: Clean up and clarify docs.  (#412484)
2781
2782 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2783
2784         * gtk/gtkspinbutton.c (gtk_spin_button_style_set): Set
2785         the background of the panel window on style changes. (#402144,
2786         Benjamin Berg)
2787
2788 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2789
2790         * gtk/gtkbindings.c (gtk_binding_entry_add_signal): Remove
2791         an obsolete comment.  (#402169, Xan Lopez)
2792
2793 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2794
2795         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
2796         Don't copy PangoLanguage.  (#340031, Morten Welinder)
2797
2798 2007-03-12  Matthias Clasen  <mclasen@redhat.com>
2799
2800         * gtk/gtkfilechooserbutton.c (change_icon_theme_get_info_cb):
2801         Handle the row reference path being NULL.  (#410565, Joe Markus
2802         Clarke, patch by Chris Wilson)
2803
2804 2007-03-11  Matthias Clasen  <mclasen@redhat.com>
2805
2806         * tests/testiconview.c: Handle Menu key presses without
2807         crash.  (#385637, Christian Persch)
2808
2809 2007-03-11  Matthias Clasen  <mclasen@redhat.com>
2810
2811         * gtk/gtktooltips.c (gtk_tooltips_get_info_from_tip_window):
2812         Don't crash if active_tips_data is NULL.  (#382904, Li Yuan)
2813
2814 2007-03-11  Matthias Clasen  <mclasen@redhat.com>
2815
2816         * gtk/gtktextview.c (gtk_text_view_set_buffer): Set first_para_mark
2817         to NULL.  (#396805, Colin Leroy, patch by Mariano Suárez-Alvarez)
2818         
2819 2007-03-12  Kristian Rietveld  <kris@gtk.org>
2820
2821         * gtk/gtkfilechooserdefault.c (check_save_entry): immediately
2822         bail out if current_folder is NULL. (#350988, lots of reporters,
2823         modified patch by Jan Darmochwal).
2824
2825 2007-03-10  Kristian Rietveld  <kris@gtk.org>
2826
2827         * gtk/gtktreeview.c (gtk_tree_view_search_dialog_hide): only
2828         hide the search dialog and send focus events if the search dialog
2829         is currently visible.
2830
2831 2007-03-10  Richard Hult  <richard@imendio.com>
2832
2833         * gdk/quartz/gdkdrawable-quartz.c:
2834         (gdk_quartz_ref_cairo_surface): Reuse the surface during its lifetime.
2835         (gdk_quartz_drawable_get_context): Update for the new quartz cairo 
2836         surface API (#410442). Don't lock focus unless called outside of an 
2837         expose event.
2838         (gdk_quartz_drawable_release_context): Only flush the CG context and 
2839         unlock focus if called outside of expose.
2840         (_gdk_quartz_drawable_finish): New function, used to free the cached
2841         cairo surface.
2842
2843         * gdk/quartz/gdkwindow-quartz.c:
2844         (gdk_window_impl_quartz_begin_paint_region): A few small style changes.
2845         (_gdk_window_impl_quartz_get_type): No need to make the type info
2846         static.
2847         (gdk_window_quartz_process_all_updates): Move the autorelease pool
2848         allocation and freeing outside the loop.
2849         (_gdk_windowing_window_destroy): Finish the drawable.
2850         (move_resize_window_internal): Small cleanup and remove comment.
2851
2852         * gdk/quartz/gdkpixmap-quartz.c: Finish the drawable.
2853
2854 2007-03-10  Richard Hult  <richard@imendio.com>
2855
2856         * gdk/quartz/gdkprivate-quartz.h: Add missing function signature to fix
2857         a build warning.
2858
2859 2007-03-10  Richard Hult  <richard@imendio.com>
2860
2861         * gdk/quartz/gdkdisplay-quartz.c: (gdk_display_get_name): Plug a leak.
2862
2863 2007-03-10  Richard Hult  <richard@imendio.com>
2864
2865         * gdk/quartz/GdkQuartzView.c: Remove unneccesary exposure mask check.
2866
2867 2007-03-10  Richard Hult  <richard@imendio.com>
2868
2869         * gdk/quartz/gdkevents-quartz.c: (gdk_screen_get_setting): Don't set
2870         the font name here, leave that to themes, fixes #387508.
2871
2872 2007-03-10  Kristian Rietveld  <kris@gtk.org>
2873
2874         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_ref_node),
2875         (gtk_tree_model_sort_real_unref_node): when (un)reffing an
2876         element, also (un)ref its parent elements. (Fixes #364946,
2877         reported by many, testcase by Andreas Koehler).
2878
2879 2007-03-10  Matthias Clasen <mclasen@redhat.com>
2880
2881         * gtk/gtkprintoperation-unix.c: Initialize the do_preview
2882         field of PrintResponseData.  (#396703, Christian Persch)
2883
2884         * tests/print-editor.c: Plug some leaks.
2885
2886 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2887
2888         * gtk/gtktextview.c (gtk_text_view_end_selection_drag):
2889         Get rid of the unused event argument. Update all callers.
2890
2891         * gtk/gtktextview.c (gtk_text_view_focus_out): Call
2892         gtk_text_view_end_selection_drag.  (#351671, Boyd Timothy)
2893
2894 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2895
2896         * modules/input/gtkimcontextxim.c 
2897         (gtk_im_context_xim_filter_keypress): Don't commit
2898         modifier-adorned characters.  (#331369, #335796, Lin Ma
2899         and others)
2900
2901 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2902
2903         * Everywhere: Remove unnecessary NULL checks before
2904         g_free().  (#369666, Morten Welinder, Djihed Afifi)
2905
2906         * configure.in: Check for ftw.h
2907
2908 2007-03-09  Matthias Clasen <mclasen@redhat.com>
2909
2910         * gtk/gtkfilesystemwin32.c (get_icon_path): Remove
2911         C99isms.  (#416525, Kazuki Iwamoto)
2912
2913 2007-03-09  Tor Lillqvist  <tml@novell.com>
2914
2915         * README.win32: Update.
2916
2917 2007-03-08  Matthias Clasen <mclasen@redhat.com>
2918
2919         * gdk/x11/gdkasync.c (send_event_handler): Defer the callbacks
2920         to an idle to avoid deadlock with xcb-ified libX11.  (#413032,
2921         Sebastian Dröge)
2922
2923 2007-03-08  Matthias Clasen <mclasen@redhat.com>
2924
2925         * gtk/gtknotebook.c (gtk_notebook_real_insert_page):
2926         Set child visibility to FALSE here; it will be turned
2927         back on in switch_page.  (#413664, Carlos Garnacho)
2928         
2929 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>
2930
2931         * modules/engines/ms-windows/msw_style.c: Use proper border style
2932         when drawing shadow of scrolled windows on Windows XP (#168326)
2933         * modules/engines/ms-windows/xp_theme.c: Explicitly set size of
2934         element_part_map array to ensure it always is large enough.
2935         
2936 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>      
2937
2938         * gtk/gtkcombobox.c: Add shadow-type style property, set shadow-type
2939         property of GtkEntry accordingly, unify size-allocation of toggle
2940         button (#411123, patch from Mathias Hasselmann).
2941         * gtk/gtkentry.c: Add shadow-type property. Query style properties
2942         on style changes only (#411123, patch from Mathias Hasselmann).
2943         * modules/engines/ms-windows/msw_style.c: Drop combo_box_draw_box
2944         hack as GtkComboBox emits drawing requests now (#411123, patch 
2945         from Mathias Hasselmann).
2946         
2947 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>
2948
2949         * gtk/gtkscrolledindow.c: Improve look of GtkScrolledWindow on Windows
2950         by implementing a scrollbars-within-bevel style property. (#168326)
2951         
2952 2007-03-08  Mathias Hasselmann <mathias.hasselmann@gmx.de>
2953
2954         * gtk/gtkfilesystemwin32.c: Use Windows shell icons. Icons are
2955         stored in the current theme with the name
2956         "gtk-win32-shell-icon;PATH;INDEX". PATH and INDEX reference shell
2957         icons as reported by SHGetFileInfoW. (#412221)
2958
2959 2007-03-07  Matthias Clasen <mclasen@redhat.com>
2960
2961         * gtk/gtkexpander.c (gtk_expander_paint_focus): Draw the
2962         focus around the arrow if there is no label widget.  
2963         (#124045, Cody Russell)
2964
2965 2007-03-07  Matthias Clasen <mclasen@redhat.com>
2966
2967         * gtk/gtkcombo.c: (gtk_combo_init):
2968         * gtk/gtkcombobox.c: (gtk_combo_box_set_popup_widget),
2969         (gtk_combo_box_menu_setup):
2970         Set names on the popup widgets to make them themable. (#414975, 
2971         Benjamin Berg)
2972
2973 2007-03-07  Michael Natterer  <mitch@imendio.com>
2974
2975         * gtk/gtkcellrendereraccel.c: use multihead safe ungrab functions
2976         instead of gdk_keyboard_ungrab() and gdk_pointer_ungrab(), remove
2977         empty finalize() implementation, some cosmetic cleanup
2978         (bug #415645).
2979
2980 2007-03-06  Chris Wilson  <chris@chris-wilson.co.uk>
2981
2982         * gtk/gtkicontheme.c (update_current_theme), (gtk_icon_theme_init),
2983         (do_theme_change), (gtk_icon_theme_set_custom_theme),
2984         (load_themes):
2985         Be careful not to trigger a style reset before we have loaded
2986         the icon theme. (#414875).
2987
2988 2007-03-06  Tor Lillqvist  <tml@novell.com>
2989
2990         * gdk/Makefile.am
2991         * gtk/Makefile.am: Further fixes for building on Win32 outside
2992         srcdir. (#413492, Mathias Hasselmann)
2993
2994 2007-03-04  Ihar Hrachyshka <iharh@gnome.org>
2995
2996         * configure.in: Added be@latin to ALL_LINGUAS. Problems seems to be
2997         fixed.
2998
2999 2007-03-04  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>
3000
3001         * configure.in: Removed be@latin from ALL_LINGUAS, as it's currently
3002         breaking the build.
3003
3004 2007-03-04  Ihar Hrachyshka <iharh@gnome.org>
3005
3006         * configure.in: Added be@latin to ALL_LINGUAS
3007
3008 2007-03-03  Guillaume Savaton <llumeao@gmail.com>
3009
3010         * configure.in: Added Esperanto (eo) to ALL_LINGUAS
3011
3012 2007-03-01  Matthias Clasen <mclasen@redhat.com>
3013
3014         * gtk/gtksettings.c: Always store gtk-color-scheme
3015         values from all sources in the ColorSchemeData struct
3016         and ignore the property_value for gtk-color-scheme.
3017         This fixes #412596, reported by Thomas Wood.
3018
3019 2007-02-28  Matthias Clasen <mclasen@redhat.com>
3020
3021         * gtk/gtksettings.c: Make color scheme update properly
3022         when changing themes.  (#402131, Benjamin Berg)
3023
3024 2007-02-28  Matthias Clasen <mclasen@redhat.com>
3025
3026         * gtk/gtkrc.c: Don't leak references to the color-hash 
3027         gotten from GtkSettings.  (#409357, Benjamin Berg)
3028
3029 2007-02-28  Tristan Van Berkom <tvb@gnome.org>
3030
3031         * gtk/gtkradiobutton.c: Fixed a warning from
3032         g_object_set (radiobutton, "group", NULL, NULL).
3033
3034 2007-02-26  Matthias Clasen <mclasen@redhat.com>
3035
3036         Apply a patch by Carlos Garnacho to fix several problems
3037         with filechooser size handling (#325477, #151169, 143213,
3038         #153785)
3039
3040         * gtk/gtkfilechooserdefault.c: Increase NUM_LINES slightly.
3041         (browse_widgets_create): Don't force the paned position to 200.
3042         (find_good_size_from_style): Take the size of the extra widget
3043         into account.
3044
3045         * gtk/gtkfilechooserdialog.c (file_chooser_widget_update_hints):
3046         Accept a minimal width parameter. Update all callers.
3047
3048 2007-02-26  Matthias Clasen <mclasen@redhat.com>
3049
3050         * gtk/gtkprintunixdialog.c: Change the label to "Pages per side",
3051         which is more accurate, suggested by Tim Waugh. String change! 
3052
3053 2007-02-26  Matthias Clasen <mclasen@redhat.com>
3054
3055         * gtk/gtkprinteroptionwidget.c: Make the folder selection for
3056         print-to-file work. Reported by Ian Collier.
3057
3058 2007-02-26  Chris Wilson  <chris@chris-wilson.co.uk>
3059
3060         Bug 409101 – invalid read to gtkicontheme.c insert_theme(), might cause gnome-panel crash
3061
3062         * gtk/gtkicontheme.c: (scan_directory):
3063                 Reorder the replacement of the shared base_name key, so that we
3064                 avoid dereferencing the string in the icon_theme->all_icon
3065                 hash table after freeing it from the dir->icons hash table.
3066
3067 2007-02-26  Tor Lillqvist  <tml@novell.com>
3068
3069         * gdk/win32/gdkwindow-win32.c (gdk_window_set_icon_name): Add
3070         comment clarifying that "icon name" here is not related to the
3071         freedesktop.org icon naming stuff.
3072
3073 2007-02-23  Dom Lachowicz  <domlachowicz@gmail.com>
3074
3075         * modules/engines/ms-windows/msw_style.c: Bug 411118 - bad bevel for
3076         progress bar on windows classic. Match from Mathias Hasselmann.
3077         
3078 2007-02-19  Tor Lillqvist  <tml@novell.com>
3079
3080         * gdk/win32/gdkinput.c
3081         (gdk_device_finalize, gdk_device_class_init): Remove.
3082         (gdk_device_get_type): Drop class init function. The X11 version
3083         doesn't have one either.
3084         (gdk_devices_list): Call gdk_display_list_devices() on _gdk_display.
3085         (gdk_display_list_devices): Check that the argument is
3086         _gdk_display.
3087
3088         * gdk/win32/gdkinput-win32.h (GdkAxisInfo, GdkDevicePrivate):
3089         Cleanup: remove unused fields.
3090         * gdk/win32/gdkinput-win32.c: Corresponding changes. Fix function
3091         names in a few debugging printouts.
3092
3093 2007-02-18  Matthias Clasen  <mclasen@redhat.com>
3094
3095         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually):
3096         Ignore invisible text when going to end of the previous line.
3097         (#382565)
3098
3099 2007-02-18  Richard Hult  <richard@imendio.com>
3100
3101         * gdk/quartz/gdkwindow-quartz.c:
3102         (gdk_window_quartz_process_all_updates),
3103         (_gdk_windowing_window_destroy): Setup release pools to plug two leaks,
3104         patch from Erik van Pienbroek, fixes bug #396649.
3105
3106 2007-02-18  Richard Hult  <richard@imendio.com>
3107
3108         * gdk/quartz/gdkevents-quartz.c: Add stub for 
3109         gdk_display_add_client_message_filter, patch from Taybin Rutkin. Fixes
3110         bug #405870.
3111
3112         * gdk/quartz/gdkprivate-quartz.h: Add prototypes to fix build warnings.
3113
3114 2007-02-18  Richard Hult  <richard@imendio.com>
3115
3116         * gdk/quartz/GdkQuartzView.h:
3117         * gdk/quartz/GdkQuartzWindow.h:
3118         * gdk/quartz/gdkquartz.h: Import AppKit.h instead of Quartz.h.
3119         * gdk/quartz/gdkscreen-quartz.c: (get_mm_from_pixels): Don't use 
3120         userSpaceScaleFactor for 10.3. Those changes bring us closer to working
3121         on panther, patch from Mathias Hasselmann.
3122         
3123         * gdk/quartz/gdkeventloop-quartz.c: Add includes to fix build warnings.
3124
3125 2007-02-16  Behdad Esfahbod  <behdad@gnome.org>
3126
3127         * gdk/gdkpango.c (gdk_pango_layout_get_clip_region): Use PANGO_PIXELS
3128         instead of division. (#334617)
3129
3130 2007-02-16  Kristian Rietveld  <kris@gtk.org>
3131
3132         * gtk/gtktreeprivate.h: add cursor_offset field.
3133
3134         * gtk/gtktreeview.c (gtk_tree_view_init),
3135         (gtk_tree_view_move_cursor_page_up_down): fix off by one error
3136         in page up/down handling by memorizing the offset into the cursor
3137         row.  (Fixes #399809, reported by Bruce Bowler).
3138
3139 2007-02-16  Kristian Rietveld  <kris@gtk.org>
3140
3141         * gtk/gtktreeview.c (gtk_tree_view_search_dialog_hide): send
3142         a focus-in event to the tree view after hiding the search dialog.
3143         (#356515, Rich Burridge, Peter Parente).
3144
3145 2007-02-16  Kristian Rietveld  <kris@imendio.com>
3146
3147         * tests/testtooltips.c (query_tooltip_text_view_cb): also handle
3148         keyboard tooltips. (#408325, Matthias Clasen).
3149
3150 2007-02-16  Xan Lopez  <xan@gnome.org>
3151
3152         * gtk/gtkcombobox.c (gtk_combo_box_expose_event): Cleanup the logic
3153         in expose event handler. Reviewed by Matthias Clasen, #406112
3154
3155 2007-02-16  Matthias Clasen  <mclasen@redhat.com>
3156
3157         * gtk/gtkmain.c: Run pre_parse_hook only once.  (#403139, Kjartan
3158         Maraas)
3159
3160 2007-02-15  Matthias Clasen  <mclasen@redhat.com>
3161
3162         * gdk/x11/gdmain-x11.c (_gdk_xgrab_check_button_event): Be more
3163         careful when checking for ButtonRelease events that end implicit
3164         grabs.  (#386618, Christof Krüger)
3165
3166 2007-02-15  Matthias Clasen  <mclasen@redhat.com>
3167
3168         * gtk/gtktextbtree.c (_gtk_text_btree_delete): Free the lines
3169         even if there are no views.  (#408018, Albert Huang)
3170
3171 2007-02-15  Cody Russell  <bratsche@gnome.org>
3172
3173         * gdk/win32/gdkevents-win32.c: Make sure we get enough main context 
3174         iterations while we're resizing so that the window contents are resized 
3175         more smoothly (#389765).
3176
3177         * gdk/win32/gdkevents-win32.c: Fix flickering widgets when window contents
3178         are resized (#310522).
3179
3180 2007-02-15  Matthias Clasen  <mclasen@redhat.com>
3181
3182         * gtk/updateiconcache.c: Handle symlinked .icon files 
3183         intelligently; also avoid storing duplicate strings.
3184
3185 2007-02-15  Michael Natterer  <mitch@imendio.com>
3186
3187         * gtk/gtkmenushell.c: remove two antique function typedefs that
3188         are probably obsolete for ages.
3189
3190 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
3191
3192         reviewed by: Matthias Clasen  <mclasen@redhat.com>
3193
3194         * configure.in: determine installation prefixes of dependent libs to
3195         crossreference docs (#407146).
3196
3197 2007-02-14  Kristian Rietveld  <kris@imendio.com>
3198
3199         * gtk/gtktooltip.c (child_location_foreach): check return value
3200         of gtk_widget_translate_coordinates() so we cannot end up
3201         using uninitialized x, y values.  (#407863, patch from Carlos
3202         Garnacho).
3203
3204 2007-02-14  Kristian Rietveld  <kris@imendio.com>
3205
3206         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
3207         use TREE_VIEW_DRAG_WIDTH/2 when calculating the drag window
3208         position instead of a hardcoded value.  (Taken from maemo-gtk).
3209
3210 2007-02-14  Michael Natterer  <mitch@imendio.com>
3211
3212         * gtk/gtkmenu.c (gtk_menu_motion_notify): don't forget to set the
3213         state of the synthesized GDK_ENTER_NOTIFY event. Fix taken from
3214         maemo-gtk.
3215
3216 2007-02-13  Kristian Rietveld  <kris@imendio.com>
3217
3218         * gtk/gtktooltip.c (gtk_tooltip_hide_tooltip): stop any
3219         pending tooltip timeout. (Fixes #406110, Carlos Garnacho).
3220
3221 2007-02-10  Emmanuele Bassi  <ebassi@gnome.org>
3222
3223         * gtk/gtkrecentchoosermenu.c: Fix the english of the comment;
3224         remove some type checking; use better variable naming for the
3225         internal menu item markers.
3226
3227 2007-02-09  Emmanuele Bassi  <ebassi@gnome.org>
3228
3229         * gtk/gtkrecentchoosermenu.c: Add support for both prepending
3230         and appending custom menu items.
3231
3232         (gtk_recent_chooser_menu_constructor): Add a placeholder menu
3233         item for the empty menu case, and for giving us a starting
3234         point for the recent items populating process.
3235
3236         (gtk_recent_chooser_menu_insert_item),
3237         (gtk_recent_chooser_menu_dispose_items): Insert an item at
3238         the position following the placeholder (and find that position
3239         if needed).
3240
3241         (idle_populate_func), (idle_populate_clean_up): Show the
3242         placeholder menu item, instead of creating one each time.
3243
3244         (gtk_recent_chooser_menu_populate): Kill some indirections
3245         and hide the placeholder before populating the menu.
3246
3247         (set_recent_manager): Remember to remove the idle population
3248         source if the manager changes.
3249
3250         * tests/testrecentchoosermenu.c: Test the appending and
3251         prepending of the menu items to the recent chooser menu
3252         widget.
3253
3254 2007-02-08  Emmanuele Bassi  <ebassi@gnome.org>
3255
3256         * gtk/gtkrecentchoosermenu.c (idle_populate_func): Keep count
3257         of the displayed items to build the menu items mnemonic instead
3258         of the overall item count. (#377164)
3259
3260         (idle_populate_clean_up): Append a menu item if all the items
3261         got filtered in the idle populate function. (#405696)
3262
3263         * tests/Makefile.am:
3264         * tests/testrecentchoosermenu.c: Add a test for the
3265         GtkRecentChooserMenu widget.
3266
3267 Thu Feb  8 13:07:08 2007  Tim Janik  <timj@imendio.com>
3268
3269         * applied patch from Xan Lopez which adds GTK_BUTTONBOX_CENTER to
3270         GtkButtonBox (bug #336159).
3271
3272         * gtk/gtkenums.h:
3273         * gtk/gtkvbbox.c, gtk/gtkhbbox.c, gtk/gtkbbox.c:
3274         support GTK_BUTTONBOX_CENTER.
3275
3276         * tests/testbbox.c: new button box test, which allows testing of 
3277         the various button box properties.
3278
3279         * tests/testgtk.c: added GTK_BUTTONBOX_CENTER. to button box test.
3280
3281 2007-02-07  Cody Russell  <bratsche@gnome.org>
3282
3283         * gdk/gdk.symbols: Add gdk_event_request_motions
3284
3285 Wed Feb  7 19:03:28 2007  Tim Janik  <timj@gtk.org>
3286
3287         * gtk/gtkentry.c (gtk_entry_motion_notify): fixed motion request 
3288         condition which was wrongly ported with my last commit.
3289
3290 Tue Feb  6 15:53:59 2007  Tim Janik  <timj@imendio.com>
3291
3292         * gtk/gtktextview.c (gtk_text_view_motion_event):
3293         * gtk/gtkspinbutton.c (gtk_spin_button_motion_notify):
3294         * gtk/gtkaboutdialog.c (credits_motion_notify_event):
3295         * gtk/gtkhruler.c (gtk_hruler_motion_notify):
3296         * gtk/gtkvruler.c (gtk_vruler_motion_notify): 
3297         * gtk/gtkentry.c (gtk_entry_motion_notify):
3298         * gtk/gtktooltip.c (_gtk_tooltip_handle_event):
3299         * gtk/gtkhsv.c (gtk_hsv_motion): call gdk_event_request_motions()
3300         for new motion events after receiving motion hints.
3301
3302         * gdk/gdkevents.[hc]: added gdk_event_request_motions().
3303
3304 2007-02-06  Kristian Rietveld  <kris@imendio.com>
3305
3306         * gtk/gtktooltip.c (find_topmost_widget_coords_from_event):
3307         remove unused get of has_tooltip.
3308
3309         * tests/testtooltips.c (query_tooltip_tree_view_cb): use the
3310         portable g_snprintf instead of snprintf.
3311
3312 2007-02-06  Michael Natterer  <mitch@imendio.com>
3313
3314         * gtk/gtktooltip.c (gtk_tooltip_finalize): chain up.
3315
3316         (gtk_tooltip_show_tooltip): move variables and code to local
3317         scope. Fixes warnings about maybe uninitialized variables.
3318
3319 2007-02-06  Kristian Rietveld  <kris@imendio.com>
3320
3321         New tooltips API.
3322
3323         * gtk/Makefile.am
3324         * gtk/gtk.h
3325         * gtk/gtk.symbols: build system foo.
3326
3327         * gtk/gtkmain.c (gtk_main_do_event): call tooltip event handler
3328         hook for appropriate events.
3329
3330         * gtk/gtkmarshalers.list: add BOOLEAN:INT,INT,BOOLEAN,OBJECT.
3331
3332         * gtk/gtkrc.c: add style for gtk-tooltip.
3333
3334         * gtk/gtksettings.c (gtk_settings_class_init): make the
3335         different tooltip timeouts configurable.
3336
3337         * gtk/gtkwidget.[ch]: add new properties, signals, make sure
3338         tooltips are hidden on unmap, destroy, update window event
3339         mask on realize, hook into focus change and show help
3340         handlers.
3341
3342         * gtk/gtkwindow.h: move GtkWindow typdef to gtkwidget.h ...
3343
3344         * gtk/gtktooltip.[ch]: new files.
3345
3346         * tests/Makefile.am
3347         * tests/testtooltips.c: add test application.
3348
3349 2007-02-05  Dom Lachowicz <domlachowicz@gmail.com>
3350
3351         * modules/engines/ms-windows/msw_style.c: Fix bug 404506, caused
3352         by prematurely releasing a DC. By Hiroyuki Yamamoto
3353         * modules/engines/ms-windows/msw_style.c: Fix bug 403470 - leaking 
3354         pixbufs when drawing rotated tabs. By Daniel Atallah
3355         
3356 2007-02-05  Michael Natterer  <mitch@imendio.com>
3357
3358         * gtk/gtksettings.c: add new boolean settings gtk-enable-accels
3359         and gtk-enable-mnemonics which enable/disable accelerators and
3360         mnemonics (bug #72375, based on a patch from Tommi Komulainen).
3361
3362         * gtk/gtkwindow.c (gtk_window_activate_key)
3363         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): don't invoke them
3364         if the resp. setting is FALSE.
3365
3366         * gtk/gtkaccellabel.c (gtk_accel_label_refetch)
3367         * gtk/gtklabel.c (gtk_label_set_pattern_internal): don't display
3368         them if the setting is FALSE.
3369
3370         * gtk/gtklabel.c: added signal connection to the screen's settings
3371         object and traverse all widgets on the screen when the setting
3372         changes. It's slightly ugly to also update GtkAccelLabels here,
3373         but less ugly than connecting and traversing all widgets twice.
3374
3375 2007-02-05  Michael Natterer  <mitch@imendio.com>
3376
3377         * gtk/gtktextbuffer.h (enum GtkTextBufferTargetInfo): changed
3378         values from G_MAXUINT-0, -1, -2 to -1, -2, -3 so we stay within
3379         ansi C enum value limits. Fixes bug #46757.
3380
3381 2007-02-03  Soren Sandmann <sandmann@daimi.au.dk>
3382
3383         * gtk/gtksequence.[ch]: Remove these files since GSequence has
3384         been moved into GLib.
3385
3386         * gtk/gtkliststore.c: Port to GSequence instead of GtkSequence.
3387
3388         * configure.in: Require glib-2.13.0
3389         
3390 2007-02-04  Tor Lillqvist  <tml@novell.com>
3391
3392         * gdk/win32/gdkcursor-win32.c: Don't define BITMAPV5HEADER on
3393         mingw with w32api >= 3.8, which has it in wingdi.h. (#403896)
3394
3395 2007-02-02  Kristian Rietveld  <kris@gtk.org>
3396
3397         * gtk/gtktreeview.c (gtk_tree_view_row_changed): remove unused
3398         style_get of vertical-separator. (#403165, Chris Wilson).
3399
3400 2007-02-02  Christian Persch  <chpe@svn.gnome.org>
3401
3402         * gtk/gtkfilechoosersettings.c: (get_config_filename),
3403         (ensure_settings_read), (_gtk_file_chooser_settings_init),
3404         (_gtk_file_chooser_settings_set_show_hidden),
3405         (_gtk_file_chooser_settings_set_expand_folders),
3406         (_gtk_file_chooser_settings_save): Use a simple key file instead of a
3407         markup file. Bug #399592.
3408
3409 2007-02-02  Mariano Suárez-Alvarez  <mariano@gnome.org>
3410
3411         * gtk/gtkcellrenderertext.c(gtk_cell_renderer_text_class_init):
3412         be a little more helpful with the docs on GtkCellRendererText:alignment.
3413         Bug #403409.
3414
3415 2007-02-01  Michael Natterer  <mitch@imendio.com>
3416
3417         * gtk/gtkmenu.c (gtk_menu_paint): pass &event->area to
3418         gtk_paint_box() calls.
3419
3420 2007-02-01  Michael Natterer  <mitch@imendio.com>
3421
3422         * gtk/gtkmenu.c (gtk_menu_button_press)
3423         (gtk_menu_button_release)
3424         (gtk_menu_button_scroll): remove redundant and confusing
3425         if (GTK_IS_MENU (widget)) checks because "widget" is always a
3426         GtkMenu here.
3427
3428 Thu Feb  1 12:22:06 2007  Tim Janik  <timj@imendio.com>
3429
3430         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): remove extra reference
3431         that gtkcombobox keeps on priv->popup_widget if it's a tree view.
3432
3433 2007-01-31  Christian Persch  <chpe@svn.gnome.org>
3434
3435         * gtk/gtkaboutdialog.c: (update_credits_button_visibility),
3436         (gtk_about_dialog_set_authors), (gtk_about_dialog_set_documenters),
3437         (gtk_about_dialog_set_artists),
3438         (gtk_about_dialog_set_translator_credits): Hide the Credits button iff
3439         there are no credits to show. Bug #402806.
3440
3441 2007-01-31  Tor Lillqvist  <tml@novell.com>
3442
3443         * gdk/win32/gdkinput-win32.c (print_cursor): New debugging
3444         function.
3445         (_gdk_input_wintab_init_check): Call it when debugging output is
3446         requested.
3447         (_gdk_input_wintab_init_check): Skip duplicated cursors for Wacom
3448         tablets. The Wacom driver reports duplicated cursors with
3449         physid==0. Fix verified by Robert Ögren.
3450
3451 2007-01-30  Felix Riemann  <friemann@svn.gnome.org>
3452
3453         * modules/printbackends/file/gtkprintbackendfile.c:
3454         (file_printer_get_options): Fix leaked string. Fixes bug #402565.
3455
3456 2007-01-30  Matthias Clasen  <mclasen@redhat.com>
3457
3458         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_move_to_current_desktop):
3459         (gdk_x11_window_set_user_time): Be more careful about toplevel
3460         possibly being NULL.  (#402453, Sebastian Bacher)
3461
3462 Tue Jan 30 12:09:56 2007  Tim Janik  <timj@gtk.org>
3463
3464         * gtk/gtksettings.c: cleaned up ::color-hash registration to not abuse
3465         class_n_properties and leave an uninitialized value array behind.
3466
3467 2007-01-29  Michael Natterer  <mitch@imendio.com>
3468
3469         * gtk/gtkmenuitem.c (gtk_menu_item_select)
3470         (gtk_menu_item_deselect): queue a draw on the parent_menu_item of
3471         this menu item's menu, to enable themeing menu items depending on
3472         whether something is selected in their submenu (patch taken from
3473         maemo-gtk).
3474
3475 2007-01-28  Matthias Clasen  <mclasen@redhat.com>
3476
3477         * gtk/gtktoolbar.c: Reinstate gtk_toolbar_content_new_compatibility()
3478         that was mistakenly "cleaned up" a while ago. Also
3479         revert a problematic change to the screen_changed
3480         handler.  (#401598, Søren Sandmann)
3481
3482 2007-01-28  Matthias Clasen  <mclasen@redhat.com>
3483
3484         * gtk/gtkframe.c (gtk_frame_size_allocation): Fix a 
3485         problem with large y thickness.  (#136592, Xan Lopez)
3486
3487 2007-01-28  Matthias Clasen  <mclasen@redhat.com>
3488
3489         * gtk/gtkaction.c (gtk_action_new): Use canonical
3490         property names.  
3491
3492 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3493
3494         * gtk/gtknotebook.c (gtk_notebook_draw_arrow):
3495         (gtk_notebook_draw_focus): Avoid some unnecessary 
3496         gtk_widget_get_style() calls.
3497
3498 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3499
3500         * gtk/gtktoolbar.c:
3501         * gtk/gtktoolitem.c:
3502         * gtk/gtktoolbutton.c: Rearrange things so that setting
3503         multiple properties causes not more than a single 
3504         reconstruction of the contents.
3505
3506         * gtk/gtkaction.c (connect_proxy): Set all tool button 
3507         properties in one go.
3508
3509 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3510
3511         * gtk/gtkstatusicon.c:
3512         * gtk/gtktrayicon-x11.c: Fix GtkStatusIcon to not
3513         take up space on the panel if it is invisible.  (340110, Christian
3514         Persch)
3515
3516         * tests/teststatusicon.c:
3517         * tests/Makefile.am: Updates
3518
3519 2007-01-27  Matthias Clasen  <mclasen@redhat.com>
3520
3521         * gtk/gtkfilesel.h:
3522         * gtk/gtkrc.h:
3523         * gtk/gtk.symbols: Add deprecation guards for gtk_rc_style_ref/unref
3524         and the old file selector.  (#348256)
3525
3526 2007-01-26  Matthias Clasen  <mclasen@redhat.com>
3527
3528         * gtk/gtkiconview.c: Documentation fixes (#400530, Anders Brander)
3529
3530 2007-01-26  Matthias Clasen  <mclasen@redhat.com>
3531
3532         * gtk/updateiconcache.c: Check the mtime of all directories,
3533         not just the toplevel, if ftw() is available.  (#331671, Behdad
3534         Esfahbod)
3535
3536         * configure.in: Check for ftw.h.
3537
3538 2007-01-26  Michael Natterer  <mitch@imendio.com>
3539
3540         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize):
3541         destroy the XIM only if it exists. While the code does look safe
3542         in general, there can be corner cases where the "reconnecting"
3543         boolean being FALSE does not correspond to the XIM being
3544         allocated (fixes #329450, fix taken from maemo-gtk).
3545
3546 Fri Jan 26 13:07:07 2007  Tim Janik  <timj@imendio.com>
3547
3548         * gtk/gtkstyle.c (draw_insertion_cursor): clamp cursor coordinates to
3549         window bounds (fix from Maemo Gtk).
3550
3551 2007-01-26  Michael Natterer  <mitch@imendio.com>
3552
3553         * gtk/gtkentrycompletion.c (gtk_entry_completion_insert_prefix):
3554         only block/unblock completion->priv->insert_text_id if it is
3555         actually connected. While this can't happen the way GtkEntry
3556         itself uses the completion, it's still public API and should not
3557         blindly call functions that will spit warnings (fix taken from
3558         maemo-gtk).
3559
3560 2007-01-25  Matthias Clasen  <mclasen@redhat.com>
3561
3562         * gdk/gdkwindow.c: Reduce locking overhead by not repeatedly getting
3563         the paintable iface.  
3564
3565 2007-01-24  Michael Natterer  <mitch@imendio.com>
3566
3567         * gtk/gtkwidget.c (gtk_widget_set_state): revert generic disabling
3568         of PRELIGHT state for the reasons given in bug #135666. Widget
3569         states are sometimes abused or otherwise used wrongly for historic
3570         reasons, causing this part of the patch to break e.g. menu items.
3571
3572 2007-01-24  Roozbeh Pournader  <roozbeh@farsiweb.info>
3573
3574         * README: Remove mention of no-longer-existing PATCH
3575         keyword in bugzilla. (#396899)
3576
3577 2007-01-23  Carlos Garcia Campos  <carlosgc@gnome.org>
3578
3579         * gtk/gtkpagesetup.c
3580         (gtk_page_setup_set_paper_size_and_default_margins): Fix memory leak.
3581         Fixes bug #399907. 
3582
3583 2007-01-22  Chris Wilson <chris@chris-wilson.co.uk>
3584
3585         Bug 399314 – Add G_GNUC_WARN_UNUSED_RESULT to gtk_style_attach
3586
3587         * gtk/gtkstyle.h:
3588                 Cause gcc to issue a warning if the style returned from
3589                 gtk_style_attach is not used. Failure to update
3590                 widget->style causes some very difficult to reproduce bugs,
3591                 eg Bug 353498 – crash in Terminal: changing icon theme.
3592
3593 2007-01-19  Michael Emmel  <mike.emmel@gmail.com>
3594
3595         * gdk/directfb/gdkevents-directfb.c: added fixes for window
3596         crossing events frm Attilio Fiandrotti<attilio.fiandrotti@gmail.com>
3597
3598 2007-01-19  Matthias Clasen  <mclasen@redhat.com>
3599
3600         * gtk/gtkcalendar.c: Fix build breakage.
3601
3602 2007-01-19  Kristian Rietveld  <kris@imendio.com>
3603
3604         * gtk/gtktreeview.c (gtk_tree_view_motion_bin_window),
3605         (add_scroll_timeout), (gtk_tree_view_drag_motion): factor out
3606         add_scroll_timeout().  (taken from maemo-gtk).
3607
3608 2007-01-18  Matthias Clasen  <mclasen@redhat.com>
3609
3610         * gtk/gtkcalendar.c: Fix problems with the initial
3611         focus in GtkCalendar.  (#397783, Vincent Untz)
3612
3613 2007-01-19  Robert Ögren  <gtk@roboros.com>
3614
3615         Fix for bug #143460 - missed tablet clicks on Windows
3616
3617         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check):
3618         Request absolute reporting of tablet button state, and cut down
3619         the packet queue size a bit.
3620         (_gdk_input_other_event): Change button state handling
3621         accordingly. Also drop the no longer necessary code that detects
3622         missed clicks/releases for button 1. The switch to absolute button
3623         state should prevent missed events for all buttons. Additionally,
3624         swap button 2 and 3.
3625         (_gdk_input_grab_pointer): Don't reset button_state, that will only
3626         cause a new press event as soon as the next tablet packet arrives.
3627
3628 2007-01-19  Tor Lillqvist  <tml@novell.com>
3629
3630         Build Wintab support always on Windows. Don't require the Wintab
3631         SDK.
3632
3633         * configure.in: Drop the --with-wintab option. Drop the
3634         HAVE_WINTAB feature test macro and Automake variable.
3635
3636         * acconfig.h
3637         * config.h.win32.in: Drop HAVE_WINTAB.
3638
3639         * gdk/win32/gdkevents-win32.c
3640         * gdk/win32/gdkinput.c
3641         * gdk/win32/gdkinput-win32.h
3642         * gdk/win32/gdkinput-win32.c
3643         * gdk/win32/gdkmain-win32.c: Make HAVE_WINTAB ifdef blocks
3644         unconditional.
3645
3646         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Try
3647         to load wintab32.dll dynamically here. If it is found look up the
3648         handful Wintab functions we use.
3649         (rest of file): Use these function pointers instead of calling the
3650         functions from wntab32x.lib. The code in wntab32x.lib did the same
3651         thing anyway: tried to load wintab32.dll, and looked up the
3652         addresses of the actual functions from it.
3653
3654         * gdk/Makefile.am
3655         * gdk/win32/Makefile.am: Drop the libwntab32x hacks.
3656
3657         * gdk/win32/wintab.h
3658         * gdk/win32/pktdef.h: New files. Copied from the Wintab
3659         SDK. Copyright blurb says: "The text and information contained in
3660         this file may be freely used, copied, or distributed without
3661         compensation or licensing restrictions."
3662
3663         * README.win32: Update a bit. Remove the text about the Wintab
3664         SDK.
3665
3666 2007-01-18  Tor Lillqvist  <tml@novell.com>
3667
3668         * gdk-pixbuf/Makefile.am
3669         * gdk/Makefile.am
3670         * gdk/win32/Makefile.am
3671         * gtk/Makefile.am: Fixes for building outside srcdir on
3672         Win32. (#336819, #340013) Drop distributing the handmade .la
3673         libtool wrapper for the wntab32x library. It's too much trouble
3674         making it work when building outside srcdir. Just link to the
3675         library direcly using -Wl,win32/libwntab32x.a.
3676
3677 2007-01-18  Michael Natterer  <mitch@imendio.com>
3678
3679         * gtk/gtkcheckbutton.c
3680         * gtk/gtkdnd.c
3681         * gtk/gtkentry.c
3682         * gtk/gtkmenu.c
3683         * gtk/gtktreeview.c
3684         * gtk/gtkviewport.c: pass more clip rectangles to gtk_paint_foo()
3685         functions. Based on a patch from maemo-gtk (bug #398023).
3686
3687 2007-01-17  Tor Lillqvist  <tml@novell.com>
3688
3689         * gtk-zip.sh.in: Include also the COPYING file.
3690
3691 2007-01-17  Matthias Clasen  <mclasen@redhat.com>
3692
3693         * modules/printbackends/cups/gtkprintbackendcups.c: Don't use
3694         httpGetFd() when building against cups 1.1
3695
3696 2007-01-17  Tor Lillqvist  <tml@novell.com>
3697
3698         Proper fix for #396175:
3699
3700         * gtk/gtkimmulticontext.c: Revert change by Hans Breuer below: Do
3701         include gtkprivate.h. On Win32 we do want to use the redefinition
3702         of GTK_LOCALEDIR as a call to the function _gtk_get_localedir().
3703
3704         * gtk/gtkimmodule.c: Instead, correct the prefix also on
3705         simple_context_info.domain_dirname. Do the prefix corrections
3706         always on Win32, not just when GTK_LIBDIR is defined. i.e., until
3707         now they were done only in the autoconfiscated gcc builds. Hans
3708         needs to make sure GTK_LIBDIR and GTK_LOCALEDIR are defined also
3709         in MSVC builds now.
3710         (correct_localedir_prefix): New function, like
3711         correct_libdir_prefix(), but for GTK_LOCALEDIR, in case
3712         GTK_LOCALEDIR is not a descendant of GTK_LIBDIR.
3713         (gtk_im_module_initialize): Thus call correct_localedir_prefix()
3714         on the domain_dirname instead of correct_libdir_prefix().
3715         (_gtk_im_module_list): Call correct_localedir_prefix() on
3716         simple_context_info.domain_dirname.
3717
3718 2007-01-16  Matthias Clasen  <mclasen@redhat.com>
3719
3720         * gtk/gtkrange.c (range_grab_remove): Queue a redraw when the
3721         grab changes.  (#396470, Benjamin Berg)
3722
3723 2007-01-15  Emmanuele Bassi  <ebassi@gnome.org>
3724
3725         * gtk/gtkrecentchoosermenu.c: Ellipsize the menu items label
3726         if they grow too much. (#357303)
3727
3728 2007-01-14  Matthias Clasen  <mclasen@redhat.com>
3729
3730         * gtk/gtkicontheme.c (theme_lookup_icon): When finding a matching
3731         non-scalable dir, keep going and look for a closer match.
3732         (#395830, Luca Ferretti)
3733
3734 2007-01-14  Christian Persch  <chpe@svn.gnome.org>
3735
3736         * gtk/gtkclipboard.c: (gtk_clipboard_set_text),
3737         (gtk_clipboard_set_image): Use gtk_target_table_new_from_list and
3738         gtk_target_table_free instead of duplicating the code. Bug #396493.
3739
3740 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3741
3742         * gtk/gtkuimanager.c: Don't crash if menu or toolbar
3743         positions can't be found.  (#396161, Hans Breuer)
3744
3745 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3746
3747         * gtk/gtkselection.c (_gtk_selection_request): Plug 
3748         memory leaks.  (#396160, Carlos Garcia Campos)
3749
3750 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3751
3752         * configure.in: Link libgtk against Xfixes.  (#396074,
3753         Tommi Komulainen)
3754
3755 2007-01-13  Matthias Clasen  <mclasen@redhat.com>
3756
3757         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Avoid
3758         a compiler warning.  (#395045, Chris Wilson)
3759
3760 2007-01-13  Hans Breuer <hans@breuer.org>
3761
3762         * gtk/gtkprintoperation-win32.c : take the custom tab label from
3763         gtk_print_operation_set_custom_tab_label() into account (bug #390746).
3764
3765         * gtk/gtkimmulticontext.c : don't include "gtkprivate.h" to avoid
3766         differing definitions of GTK_LOCALEDIR (bug #396175).
3767
3768         * gtk/gtktreeview.c : use g_snprintf instead of snprintf, which is
3769         not available everywhere
3770
3771         * gtk/makefile.msc.in : updated
3772
3773 2007-01-12  Michael Natterer  <mitch@imendio.com>
3774
3775         * gtk/gtkentry.c (gtk_entry_button_press): don't add
3776         entry->scroll_offset to entry->drag_start_y. Fixes the entry
3777         starting drags after ridiculously small mouse movements.
3778
3779 2007-01-11  Richard Hult  <richard@imendio.com>
3780
3781         * demos/gtk-demo/main.c: (load_file): Close the file after it's
3782         loaded (bug #395316).
3783
3784 2007-01-11  Kjartan Maraas  <kmaraas@gnome.org>
3785
3786         * gtk/gtkfilesystemunix.c: (expand_tilde):
3787         Make a single tilde go to $HOME in the location entry.
3788         Patch from Yevgen Muntyan. Closes the gtk+ part of
3789         bug #334168.
3790
3791 2007-01-10  Behdad Esfahbod  <behdad@gnome.org>
3792
3793         * gdk/gdkpango.c (gdk_draw_layout_with_colors):
3794         * gtk/gtklabel.c (gtk_label_size_request):
3795         Use pango_matrix_transform_rectangle(). (#340141)
3796
3797         * configure.in: Bump pango requirement to 1.15.3.
3798
3799 2007-01-10  Kristian Rietveld  <kris@imendio.com>
3800
3801         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_init):
3802         refactor to initialize indicator_size to TOGGLE_WIDTH instead
3803         of the hardcoded value of 12.
3804
3805 2007-01-09  Matthias Clasen  <mclasen@redhat.com>
3806
3807         * configure.in: Fix the directfb cairo test. (#394855, 
3808         Josselin Mouette)
3809
3810 2007-01-09  Behdad Esfahbod  <behdad@gnome.org>
3811
3812         * configure.in: Fix comment for --with-included-loaders.  That option
3813         affects builds with module loading enabled too.
3814
3815 2006-01-08  Peter Teichman  <peter@novell.com>
3816
3817         * gtk/gtkfilechooserdefault.c:
3818         * gtk/gtkfilechooserprivate.h:
3819         * gtk/gtkfilechoosersettings.c:
3820         * gtk/gtkfilechoosersettings.h:
3821         Save the expanded state of the folder browser with the file
3822         chooser settings.  Resolves the expander portions of (#153828,
3823         Lemmit Kaplinski)
3824
3825 2007-01-08  Emmanuele Bassi  <ebassi@gnome.org>
3826
3827         * gtk/gtkrecentchoosermenu.c (gtk_recent_chooser_menu_create_item):
3828         Don't leak the icon pixbuf after setting it to the image menu
3829         item.  Found by Paolo Borelli.
3830
3831 2007-01-08  Matthias Clasen  <mclasen@redhat.com>
3832
3833         * gtk/gtktreemodel.c (gtk_tree_path_to_string): Don't 
3834         corrupt memory when faced with paths with ridiculously
3835         large indices. Found by the GTKVTS test suite.  
3836
3837 2007-01-08  Matthias Clasen  <mclasen@redhat.com>
3838
3839         * gtk/gtkmodules.c (_gtk_modules_init): Set 
3840         default_display_opened before loading modules.  (#393102,
3841         Brian Cameron)
3842  
3843 2007-01-07  Matthias Clasen  <mclasen@redhat.com>
3844
3845         * gtk/gtktextview.c (gtk_text_view_set_border_window_size):
3846         Call text_window_realize() with the correct parameters.
3847         (#393813, Yevgen Muntyan)
3848
3849 2007-01-07  Matthias Clasen  <mclasen@redhat.com>
3850
3851         * gtk/gtkstatusbar.c: Move docs inline, and expand them 
3852         a bit.
3853
3854 2007-01-06  Matthias Clasen  <mclasen@redhat.com>
3855
3856         * gtk/gtklabel.c: Make line wrapping work with width-chars
3857         and max-width-chars, and simplify the storage of wrap-width.
3858         (#322580, Itai Bar-Haim)
3859
3860 2007-01-06  Tor Lillqvist  <tml@novell.com>
3861
3862         * gdk/win32/cursor.bdf: New file. Downloaded from
3863         freedesktop.org's webcvs. Slighly edited cursors "crosshair",
3864         "diamond_cross", "draft_large", "gobbler" and "target" to fix
3865         #392504. It is possible that the same end result could have been
3866         achieved by tweaking bdfcursor.c instead.
3867         
3868         * gdk/win32/bdfcursor.c: Add optional debugging output.
3869
3870         * gdk/win32/xcursors.h: Regenerated.
3871
3872 2007-01-05  Matthias Clasen  <mclasen@redhat.com>
3873
3874         * gtk/gtknotebook.c (gtk_notebook_set_menu_label_text): Left-align
3875         menu labels.  (#393255, Michail Crayson)
3876
3877 2007-01-05  Kristian Rietveld  <kris@gtk.org>
3878
3879         * gtk/gtktreeview.c (gtk_tree_view_dy_to_top_row): handle tree
3880         == NULL.  (Fixes #392685, reported by Yevgen Muntyan).
3881
3882 2007-01-05  Kristian Rietveld  <kris@gtk.org>
3883
3884         * gtk/gtktreeview.c (gtk_tree_view_row_changed): do allow to
3885         invalidate nodes if the tree view is not realized. (#363147,
3886         Carlos Garnacho, Miguel Cabrera).
3887
3888 2007-01-05  Matthias Clasen  <mclasen@redhat.com>
3889
3890         * gtk/gtkmenu.c (gtk_menu_paint): Take the scroll arrow into
3891         account when drawing the background.  (#393166, Benjamin Berg)
3892
3893 2007-01-05  Behdad Esfahbod  <behdad@gnome.org>
3894
3895         * gtk/gtklabel.c (get_layout_location): Fix broken width computation,
3896         again.
3897
3898 2007-01-05  Carlos Garnacho  <carlosg@gnome.org>
3899
3900         * gtk/gtknotebook.c (gtk_notebook_size_request): take into account
3901         both scroll arrows when calculating size request in GTK_POS_LEFT or
3902         GTK_POS_RIGHT notebooks. (#393124, reported by Christian Persch)
3903
3904 2007-01-05  Michael Natterer  <mitch@imendio.com>
3905
3906         * gtk/gtkwindow.c (gtk_window_key_release_event): chain up to
3907         the right function (fix taken from maemo-gtk).
3908
3909 2007-01-05  Behdad Esfahbod  <behdad@gnome.org>
3910
3911         * gdk/gdkprivate.h:
3912         * gdk/gdkpango.c (gdk_draw_layout_line_with_colors),
3913         (gdk_draw_layout_with_colors):
3914         * gdk/gdkwindow.c (gdk_window_draw_glyphs_transformed):
3915         Avoid overflow when converting coordinates to Pango units. (#332266,
3916         Jody Goldberg)
3917
3918 2007-01-04  Matthias Clasen  <mclasen@redhat.com>
3919
3920         * gtk/gtkcombobox.c (gtk_combo_box_popup): move set_cursor
3921         after realization of the popup window, so clamp node doesn't fail.
3922         (#346616, Tommi Komulainen, patch by Kristian Rietveld).
3923
3924 2007-01-04  Behdad Esfahbod  <behdad@gnome.org>
3925
3926         * gtk/gtklabel.c (get_layout_location): Fix uninitialized width
3927         variable.
3928
3929 2007-01-04  Matthias Clasen  <mclasen@redhat.com>
3930
3931         * gtk/Makefile.am:
3932         * gdk-pixbuf/Makefile.am:
3933         * configure.in:
3934         * gdk/win32/rc/gdk.rc.in: Cross-compilation fixes.
3935         (#392646, Yevgen Muntyan)
3936
3937 2007-01-04  Matthias Clasen  <mclasen@redhat.com>
3938
3939         * demos/gtk-demo/textscroll.c:
3940         * gtk/gtkhandlebox.c:
3941         * gtk/gtkcolorsel.c: Fix some compiler warnings.
3942
3943 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3944
3945         * gtk/gtktextview.c: Rework the beep-on-uninserted-text
3946         by calling the input method regardless of editability,
3947         and beeping from the commit/preedit-changed handlers.
3948         (#390514, Yevgen Muntyan)
3949
3950 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3951
3952         Fix #332604, reported by Joe Wreschnig, patch
3953         by Jan Arne Petersen and Behdad Esfahbod.
3954
3955         * gtk/gtklabel.c (gtk_label_size_allocate): Only
3956         set the width of the layout when necessary.
3957         (get_layout_location): Use pango_layout_get_pixel_extents()
3958         instead of pango_layout_get_width().
3959
3960 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3961
3962         * modules/printbackends/cups/gtkprintbackendcups.c 
3963         (available_choices): Don't leak conflicts.
3964
3965         * gtk/gtkprintoperation.c (gtk_print_operation_finalize):
3966         Don't leak the status string.
3967
3968 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3969
3970         * gtk/gtkfilechooserdefault.c (update_chooser_entry):
3971         Exit early if we can't get file info - this happens
3972         if the iter points to the row where we are editing
3973         the name for a newly created folder.  (#392191, Michael
3974         Partridge, patch by Kristian Rietveld)
3975
3976 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3977
3978         * gtk/*.c:
3979         * gdk/x11/*.c: Apply a patch by Chris Wilson to
3980         avoid spurious valgrind warnings from XSendEvent() 
3981         calls.  (#392532)
3982
3983         * modules/printbackends/cups/gtkprintbackendcups.c: Close
3984         the http connection after getting the PPD.
3985
3986         * gtk/gtkprinteroptionwidget.c (filesave_changed_cb):
3987         Fix memory leaks.  
3988
3989 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3990
3991         * gtk/gtkassistant.c (remove_page): If the current page
3992         is removed, always pick a different one.  (#392457, 
3993         Colin Watson)
3994
3995 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
3996
3997         * modules/printbackend/cups/*.c: Coding style cleanups.
3998
3999 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
4000
4001         * configure.in: Export SED to make sourcing of
4002         libtool work. Tighten up the directfb pkgconfig check.
4003
4004 2007-01-03  Michael Natterer  <mitch@imendio.com>
4005
4006         * gtk/gtkstyle.c (option_menu_get_props)
4007         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Use 
4008         gtk_border_free when freeing borders.
4009
4010 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
4011
4012         * gtk/gtkentry.c (get_text_area_size): Work when the
4013         entry is not realized.  (#392315, Yevgen Muntyan)
4014
4015         * gtk/gtkentry.c (gtk_entry_queue_draw): Use 
4016         GTK_WIDGET_DRAWABLE() here.  (#392227, Chris Wilson)
4017
4018         * gtk/gtkentry.c (cursor_blinks): Don't get settings
4019         unnecessarily.  (#392227)
4020
4021 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4022
4023         * gtk/gtkwindow.c (gtk_window_move_resize): Only process
4024         updates on the window at hand, not on all windows, to
4025         avoid violating resize/redraw ordering constraints.
4026         (#362406, Owen Taylor)
4027         
4028 2007-01-03  Kristian Rietveld  <kris@gtk.org>
4029
4030         * gtk/gtkcellrendererprogress.c
4031         (gtk_cell_renderer_progress_class_init): fix docs.
4032
4033 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4034         
4035         * gtk/updateiconcache.c: Include locale.h
4036
4037 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4038
4039         * gtk/updateiconcache.c (main): Call setlocale().
4040
4041         * gtk/gtkfilesel.c:
4042         * gtk/gtkfilesystemunix.c:
4043         * gtk/gtkfilesystemwin32.c:
4044         * gtk/gtkfilechoosersettings.c:
4045         * gtk/updateiconcache.c: Consistently use folder instead of
4046         directory in translated messages.  (#344584, Javier F. Serrador)
4047
4048 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4049
4050         Try to fix #315732, reported by Luke Hutchinson:
4051
4052         * gdk/x11/xsettings-client.[hc]:
4053         * gdk/x11/gdkdevents-x11.c: Don't assume that ref'ing a GdkWindow
4054         will guarantee that it can be looked up in the xid hash later.
4055         Also, use the nesting server grab function during the xsettings
4056         client initialization. Finally, make xsettings client not
4057         eat DestroyNotifys so that GDK can do its regular cleanup. 
4058
4059 2007-01-02  Michael Natterer  <mitch@imendio.com>
4060
4061         * gtk/gtkrange.c (gtk_range_scroll) (gtk_range_move_slider): beep
4062         when a keybinding didn't change adjustment->value.
4063
4064 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4065
4066         * gtk/gtktextbuffer.c (gtk_text_view_key_press_event):
4067         Try harder not to beep on events which are not meant to
4068         insert stuff in the buffer.  (#390514, Yevgen Muntyan) 
4069
4070 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4071
4072         * gtk/gtktextbufferrichtext.c: Small documentation fixes.
4073
4074 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
4075
4076         * gtk/gtkentry.c (get_text_area_size): Center in the frame.  
4077         (#304482, Rob Staudinger, patch by  Richard Stellingwerff)
4078
4079 2007-01-02  Michael Emmel  <mike.emmel@gmail.com>
4080
4081         * gdkwindow-directfb.c: fixed leak of dfb resource on destroy 
4082
4083 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4084
4085         * gtk/gtkscrolledwindow.h:
4086         * gtk/gtkscrolledwindow.c: Only handle key bindings
4087         for scrolling if the scrollbars are visible.
4088         (#340135, Christian Persch)
4089
4090 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4091
4092         * gtk/gtktextview.c (gtk_text_view_scroll_hpages):
4093         Don't segfault on horizontal scrolling.  
4094
4095 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4096
4097         * gtk/gtknotebook.h:
4098         * gtk/gtknotebook.c: Only handle key bindings for
4099         tab reordering if the tabs are shown and reorderable. 
4100         (#390468, Yevgen Muntyan)
4101
4102         * gtk/gtkmarshalers.list: Add required marshaler
4103
4104 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4105
4106         * gtk/gtkcontainer.c (gtk_container_class_list_child_properties):
4107         Mention in the docs that the return value is
4108         NULL-terminated.  (#383373, Christian Neumair)
4109
4110 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4111
4112         * gtk/gtkicontheme.c (load_themes): Waste less time
4113         with non-directories.  (#391725, Chris Wilson)
4114
4115 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4116
4117         * gtk/gtkcellrendererprogress.c: Implement activity mode
4118         for GtkCellRendererProgress.  (#377851, Brad Taylor)
4119
4120 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4121
4122         Fix some IPP compliance issues.  (#391523, Albrecht Dress)
4123
4124         * modules/printbackends/cups/gtkcupsutils.c
4125         (gtk_cups_request_encode_option): Use IPP_TAG_JOB, not
4126         IPP_TAG_OPERATION.
4127         * modules/printbackends/cups/gtkprintbackendcups.c
4128         (gtk_print_backend_cups_print_stream): Don't add the
4129         requesting-user-name attribute a second time. 
4130
4131 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
4132
4133         * gtk/gtkimcontextsimple.c: Fix en/em dash confusion.  (#378462)
4134
4135 2006-12-31  Emmanuele Bassi  <ebassi@gnome.org>
4136
4137         * gtk/gtkrecentchoosermenu.c (set_recent_manager): Use the
4138         right object when disconnecting from the GtkRecentManager::changed
4139         signal; save us a few indirections using a variable.
4140
4141 2006-12-31  Emmanuele Bassi  <ebassi@gnome.org>
4142
4143         * gtk/gtkrecentchoosermenu.c: Move the signal and idle
4144         disconnections into the dispose function, as well as the
4145         object unrefs; reset every handler id and the
4146         pointers. (suggested by Paolo Borelli, #390873)
4147
4148 2006-12-31  Matthias Clasen  <mclasen@redhat.com>
4149
4150         * gtk/gtkprintoperation-win32.c: Include windows.h (#391229,
4151         Kazuki Iwamoto)
4152
4153 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4154
4155         * gtk/gtktextview.c (gtk_text_view_destroy): Remove the
4156         scroll timeout.  (#390872, Yevgen Muntyan)
4157
4158 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4159
4160         * gtk/gtkprintoperation-unix.c:
4161         * gtk/gtkprintbackend.c:
4162         * gtk/gtkfilechooserdefault.c:
4163         * gtk/gtksettings.c: Move a few settings to gtksettings.c
4164         to make sure they show up in the docs.  (#365364, Christian
4165         Persch)
4166
4167 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4168
4169         * gtk/gtkassistant.c: Redraw assistant on reallocate
4170         to avoid rendering glitches.  (#343956, Christian
4171         Persch, Carlos Garnacho)
4172
4173 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4174
4175         * gtk/gtkrange.c: Typo fix.  (#352121, Clytie Siddall)
4176
4177 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4178
4179         * gtk/gtkaction.c: Improve the docs of the "label" 
4180         property.  (#341730, Kristof Vansant)
4181
4182 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4183
4184         * gtk/gtkwindow.c (gtk_window_compute_configure_request_size):
4185         Correctly handle min size. (#320465, Philipp Langdale)
4186
4187 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4188
4189         * gtk/prop-editor.c: Implement editing of flags.
4190
4191 2006-12-30  Matthias Clasen  <mclasen@redhat.com>
4192
4193         * gtk/gtkentry.c:
4194         * gtk/gtklabel.c:
4195         * gtk/gtkpaned.c:
4196         * gtk/gtkstatusbar.c:
4197         * gtk/gtktextview.c: Don't install cursors on insensitive
4198         widgets.  (#358864, Jan Schampera)
4199
4200 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
4201
4202         * gtk/gtkrecentmanager.h:
4203         * gtk/gtkprintoperation.c: Fix doc typos.  (#370909,
4204         Shiino Yuki)
4205
4206         * gtk/gtkstyle.c (gtk_style_attach): Clarify docs.  (#353423,
4207         Christian Persch)
4208
4209         * gtk/gtkentry.c (blink_cb):
4210         * gtk/gtktextview.c (blink_cb): Don't die in an assertion
4211         if focus went missing. Just warn, clean up and continue.
4212         (#374378)
4213
4214 2006-12-29  Carlos Garnacho  <carlosg@gnome.org>
4215
4216         * gtk/gtknotebook.c (gtk_notebook_scroll): return if the widget that
4217         originally received the event is a notebook page. (#315440, reported
4218         by Mateusz Stefek)
4219
4220 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
4221
4222         * gdk/gdkcolor.c (gdk_color_hash): Fix a typo. (#390613,
4223         Paolo Borelli)
4224
4225 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
4226
4227         * tests/prop-editor.c: Display children of containers
4228         and cell renderers of cell layouts.
4229
4230         * gtk/gtk.symbols:
4231         * gtk/gtkcelllayout.[hc] (gtk_cell_layout_get_cells):
4232         New function to get the cell renderers of a cell layout.
4233
4234         * gtk/gtktreeviewcolumn.c:
4235         * gtk/gtkcellview.c:
4236         * gtk/gtkiconview.c: Implement get_cells.
4237
4238 2006-12-28  Matthias Clasen  <mclasen@redhat.com>
4239
4240         * gtk/gtkiconview.c: Use word wrapping by default, and
4241         center multiline labels.  (#318763, Ross Burton)
4242
4243         * gtk/gtkcellrenderertext.c (get_layout): Remove a special
4244         case for single-line layouts.
4245
4246 2006-12-28  Matthias Clasen  <mclasen@redhat.com>
4247
4248         * gtk/gtkarrow.c: Fix a typo in the docs.  (#390423,
4249         David Lodge)
4250
4251         * gtk/gtkuimanager.c (update_node): Only use the results
4252         of find_menu/toolbar_position() if they succeed. May fix
4253         bug #388041.
4254
4255 2006-12-28  Matthias Clasen  <mclasen@redhat.com>
4256
4257         * gdk/gdk.c: Fix some formatting errors in docs.  
4258
4259 2006-12-28  Tor Lillqvist  <tml@novell.com>
4260
4261         * gtk/gtkstatusicon.c (gtk_status_icon_finalize)
4262         (gtk_status_icon_update_image): Don't leak HICONs on
4263         Win32. (#364868, Hiroyuki Yamamoto)
4264
4265 2006-12-28  Carlos Garnacho  <carlosg@gnome.org>
4266
4267         Make GtkNotebook able to drop detached tabs anywhere. Bug #360225.
4268
4269         * gtk/gtkwidget.c (gtk_widget_class_init): add "drag-failed" signal.
4270         * gtk/gtkmarshalers.list: add new marshaler definition.
4271         * gtk/gtkenums.h: add GtkDragResult enum.
4272
4273         * gtk/gtkdnd.c (gtk_drag_drop_finished): emit "drag-failed" if DND
4274         operation wasn't successful.
4275         (_gtk_drag_source_handle_event) (gtk_drag_drop)
4276         (gtk_drag_selection_get) (gtk_drag_cancel) (gtk_drag_key_cb)
4277         (gtk_drag_grab_broken_event_cb) (gtk_drag_grab_notify_cb)
4278         (gtk_drag_button_release_cb) (gtk_drag_abort_timeout): tell
4279         gtk_drag_drop_finished() the operation result.
4280
4281         * gtk/gtknotebook.c (gtk_notebook_drag_failed): new function.
4282         (gtk_notebook_drag_data_get): do not call window creation hook here.
4283         (gtk_notebook_init): do not set "application/x-rootwindow-drop"
4284         target, instead connect to "drag-failed".
4285         (gtk_notebook_draw_focus): fix potential crasher if cur_page is NULL.
4286
4287 2006-12-28  Mikael Hallendal  <micke@imendio.com>
4288
4289         * gdk/quartz/gdkevents-quartz.c: Factored out the event loop 
4290         integration into gdkeventloop-quartz.c.
4291
4292         * gdk/quartz/Makefile.am: Added gdkeventloop-quartz.c
4293
4294         * gdk/quartz/gdkeventloop-quartz.c: New file containing the event loop 
4295         integration.
4296
4297 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4298
4299         * modules/printbackends/lpr/gtkprintbackendlpr.c 
4300         (gtk_print_backend_lpr_print_stream): Close the io channel
4301         on unref.  (#390159, Joe Markus Clarke)
4302
4303 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4304
4305         * gdk/gdk.h: Remove redundant declarations (#390097,
4306         Christian Persch)
4307
4308 2006-12-27  Kristian Rietveld  <kris@gtk.org>
4309
4310         Support inverting arrows via XSetting. (#377979, Yevgen Muntyan).
4311
4312         * gtk/gtksettings.c (gtk_settings_class_init): add new setting
4313         gtk-alternative-sort-arrows.
4314
4315         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): add
4316         new setting.
4317
4318         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: set new
4319         gtk-alternative-sort-arrows setting to true.
4320
4321         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
4322         invert direction if gtk-alternative-sort-arrows is TRUE.
4323
4324 2006-12-27  Tor Lillqvist  <tml@novell.com>
4325
4326         * gtk/gtk.symbols: Add gtk_status_icon_get_screen and
4327         gtk_status_icon_set_screen.
4328
4329         * gtk/gtkstatusicon.c: Implement gtk_status_icon_position_menu()
4330         on Windows. Keep track of where the last button click on the
4331         taskbar icon took place, and return that. Obviously not correct if
4332         no button has ever been clicked on the icon, or if the geometry of
4333         the taskbar has changed since. But for most use cases where a menu
4334         is going to be displayed as a direct result of a button click on
4335         the status icon, works fine. (#377349)
4336
4337         Implement getting the orientation property on Windows.
4338
4339         (gtk_status_icon_embedded_changed)
4340         (gtk_status_icon_orientation_changed): Ifdefify these functions
4341         that are used only on X11.
4342
4343 2006-12-27  Tor Lillqvist  <tml@novell.com>
4344
4345         * gtk/gtkfilesystemwin32.c (execute_callbacks): Fix
4346         typo. (#390035, Kazuki Iwamoto)
4347
4348 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4349
4350         * gtk/gtkcellview.c (gtk_cell_view_set_model): Accept NULL.
4351
4352         * gtk/gtkcombobox.c (gtk_combo_box_set_model):
4353         (gtk_combo_box_unset_model): Handle repeated unsetting
4354         of models without warnings.  (#367529, Robert Ancell)
4355
4356 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4357
4358         * modules/printbackends/cups/gtkcupsutils.c: 
4359         * modules/printbackends/cups/gtkprintbackendcups.c: Use
4360         getters for http fields where available.  (#364866, 
4361         Björn Lindqvist)
4362
4363 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4364
4365         * gtk/gtkwidget.c (gtk_widget_show): Add a g_return_if_fail.
4366         (#362614, Xan Lopez)
4367
4368 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4369
4370         * gtk/gtkuimanager.c (update_node): If a required action
4371         is missing, don't recurse over the children.  (#349119,
4372         Chris Moller)
4373
4374 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
4375
4376         Fix a few problems with nested menus in comboboxes
4377         (#386694, Yevgen Muntyan)
4378
4379         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Always
4380         connect the activate callback.
4381         (gtk_combo_box_menu_item_activate): Do nothing if called on
4382         an item with a submenu.
4383         (gtk_combo_box_menu_row_deleted): Remove a submenu when it
4384         is empty.
4385
4386 2006-12-26  Mariano Suárez-Alvarez  <mariano@gnome.org>
4387
4388         * gtk/gtkfilechooserbuuton.[hc]: Add a file-set signal to the
4389         filechooser button. Bug 353196.
4390
4391 2006-12-26  Kristian Rietveld  <kris@gtk.org>
4392
4393         * gtk/gtktreeview.c (gtk_tree_view_search_init): fix typo causing
4394         the search dialog timeout never to be refreshed. (#389581,
4395         Andrzej Szombierski).
4396
4397 2006-12-26  Kristian Rietveld  <kris@gtk.org>
4398
4399         Lots of scrolling fixes.  Made scrolling work properly in not fully
4400         validated tree views; fixed a bunch of corner cases.
4401
4402         * gtk/gtktreeview.c (validate_visible_area): if a row's dy is past
4403         upper - page_size, we know it is located at the end so the test for
4404         dy + height has been dropped.
4405         In the same case if area_below < 0, we know this is the last node
4406         in the tree view so area_above is page_size - height of this row.
4407         (validate_visible_area): got rid of subtracting new_height -
4408         old_height from area_{below,above}, it didn't make any sense at
4409         all and the full height of the row should be subtracted instead.
4410         (validate_visible_area): when scrolling to a given path, set the
4411         top row directly together with the dy offset, then sync that top_row
4412         to the dy.
4413         (gtk_tree_view_set_top_row): new function to directly set a top_row.
4414         (gtk_tree_view_dy_to_top_row): refactored to use
4415         gtk_tree_view_set_top_row().
4416         (gtk_tree_view_top_row_to_dy): make sure dy >= 0 when done.
4417         (gtk_tree_view_adjustment_changed): only update our dy and
4418         top_row if the adjustment's dy actually changed.
4419
4420 2006-12-26  Christian Persch  <chpe@cvs.gnome.org>
4421
4422         * gtk/gtknotebook.c: (gtk_notebook_real_insert_page):
4423         Return the correct value from gtk_notebook_insert_page if the
4424         page-added handler reorders the tabs. Bug #345094.
4425
4426 2006-12-26  Carlos Garnacho  <carlosg@gnome.org>
4427
4428         Fix small regressions in GtkNotebook tab detaching. Bug #378852.
4429
4430         * gtk/gtknotebook.c (gtk_notebook_do_arrow): grab focus to allow tabs
4431         scrolling when hovering with a detached tab.
4432         (gtk_notebook_stop_reorder): Do not deparent the wrong tab if the
4433         focus tab has changed during a tab DND operation.
4434         (gtk_notebook_drag_end): ensure that the dropped tab gets focused.
4435         (gtk_notebook_paint): do not take cur_page as a reference to paint the
4436         box if it's detached.
4437         (gtk_notebook_calculate_tabs_allocation): focus_tab may be different
4438         to the detached tab if we hover the arrows during a tabs detaching 
4439         operation, do not allocate it unconditionally in 0,0.
4440
4441 2006-12-26  Carlos Garnacho  <carlosg@gnome.org>
4442
4443         Expose improvements for GtkNotebook. Bug #383435
4444
4445         * gtk/gtknotebook.c (gtk_notebook_expose): propagate the event to tab
4446         labels.
4447         (gtk_notebook_draw_focus): do not repaint the whole focused tab again.
4448         (gtk_notebook_draw_tab): do not send handmade expose events to tab
4449         labels.
4450
4451 2006-12-26  Matthias Clasen  <mclasen@redhat.com>
4452
4453         * gtk/gtkfilesystemunix.c (execute_callbacks): Return
4454         FALSE.  (#389623, Carlos Garnacho Parro)
4455
4456         * gtk/gtkrange.c (stop_scrolling): Avoid spurious
4457         redraws.
4458
4459 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
4460
4461         * gtk/gtkplug.c: (gtk_plug_construct_for_display),
4462         (gtk_plug_unrealize): Notify the "embedded" property also on
4463         normal construction and when destroying the socket window.
4464         Bug #388738.
4465
4466 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
4467
4468         * gtk/gtkaboutdialog.c: (gtk_about_dialog_class_init),
4469         (gtk_about_dialog_init), (display_credits_dialog),
4470         (display_license_dialog):
4471         * gtk/gtkfilechooserdialog.c: (gtk_file_chooser_dialog_class_init),
4472         (gtk_file_chooser_dialog_init),
4473         (gtk_file_chooser_dialog_constructor),
4474         (gtk_file_chooser_dialog_unmap):
4475         * gtk/gtkrecentchooserdefault.c:
4476         (_gtk_recent_chooser_default_init):
4477         * gtk/gtkrecentchooserdialog.c:
4478         (gtk_recent_chooser_dialog_class_init),
4479         (gtk_recent_chooser_dialog_init),
4480         (gtk_recent_chooser_dialog_constructor),
4481         (gtk_recent_chooser_dialog_unmap): Set the HIG spacings directly
4482         instead of using style-set handlers. Fix the filechooser's spacing
4483         between content and action area to 12px. Bug #372447.
4484
4485 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
4486
4487         * gtk/gtkstatusbar.c: (gtk_statusbar_size_allocate):
4488         Don't assume statusbar->label is the statusbar's frame's child when
4489         shrinking the size allocation when the grip is shown. Bug #372452.
4490
4491 2006-12-25  Christian Persch  <chpe@cvs.gnome.org>
4492
4493         * gtk/gtkpagesetupunixdialog.c: (printer_status_cb),
4494         (add_custom_paper): Fix mem leaks. Bug #389194.
4495
4496 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
4497
4498         * gtk/gtktextutil.c: Remove debug output.
4499
4500         * gtk/gtktextview.c: Improve the DND scrolling
4501         behaviour.  (#92387, Carlos Garnacho Parro)
4502
4503         * gtk/gtkaccellabel.c: Improve translators comments.  
4504         (#389298, Christian Persch)
4505
4506 2006-12-24  Bastien Nocera  <hadess@hadess.net>
4507
4508         * gtk/gtkrecentmanager.c: Fix typo (s/expansive/expensive)
4509         (#389183)
4510
4511 2006-12-24  Christian Persch  <chpe@cvs.gnome.org>
4512
4513         * docs/reference/gtk/gtk-sections.txt:
4514         * gtk/gtk.symbols:
4515         * gtk/gtkpagesetupunixdialog.c: (fill_paper_sizes_from_printer):
4516         * gtk/gtkprinter-private.h:
4517         * gtk/gtkprinter.c: (gtk_printer_list_papers):
4518         * gtk/gtkprinter.h: Make gtk_printer_list_papers public. Bug #345587.
4519
4520 2006-12-24  Carlos Garcia Campos  <carlosgc@gnome.org>
4521
4522         * gtk/gtkpagesetupunixdialog.c: Don't ignore reverse portrait option
4523         when is selected in page setup dialog. Fixes bug #365047.
4524
4525 2006-12-24  Behdad Esfahbod  <behdad@gnome.org>
4526
4527         * gtk/gtkentry.c (_gtk_entry_effective_inner_border):
4528         Use gtk_border_free when freeing border.
4529
4530 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
4531
4532         * gtk/gtkentry.c (gtk_entry_button_press): When
4533         shift-clicking, keep the larger part of the selection
4534         selected.  (#353709, Benjamin Otte)
4535
4536         * gtk/gtkbutton.c (gtk_button_get_props): Use 
4537         gtk_border_free when freeing borders.
4538
4539         * gtk/gtkbutton.c (gtk_button_grab_notify): Be more
4540         careful when faking a button release.  (#323146,
4541         Travis Abbott)
4542
4543         * gtk/gtkhandlebox.c (draw_textured_frame): Draw the
4544         handle with the right orientation, depending on the
4545         position of the handlebox.  (#159764, Benjamin Berg)
4546
4547 2006-12-24  Behdad Esfahbod  <behdad@gnome.org>
4548
4549         * gtk/gtkstyle.c (gtk_border_copy), (gtk_border_free): Use gslice for
4550         GtkBorder (#383557).
4551
4552 2006-12-24  Behdad Esfahbod  <behdad@gnome.org>
4553
4554         Bug 340141 – Update to Pango 1.16 API
4555
4556         * gdk/gdkpango.c (layout_iter_get_line_clip_region),
4557         (gdk_pango_layout_line_get_clip_region):
4558         * gtk/gtkcalendar.c (gtk_calendar_size_request):
4559         * gtk/gtkentry.c (gtk_entry_get_pixel_ranges),
4560         (get_layout_position), (gtk_entry_find_position),
4561         (gtk_entry_adjust_scroll):
4562         * gtk/gtkiconview.c (get_pango_text_offsets):
4563         * gtk/gtklabel.c (get_cursor_direction):
4564         * gtk/gtkstyle.c (get_insensitive_layout):
4565         * gtk/gtktextdisplay.c (render_para):
4566         * gtk/gtktextlayout.c (allocate_child_widgets),
4567         (find_display_line_below), (find_display_line_above),
4568         (gtk_text_layout_move_iter_to_previous_line),
4569         (gtk_text_layout_move_iter_to_next_line),
4570         (gtk_text_layout_move_iter_to_line_end),
4571         (gtk_text_layout_iter_starts_line),
4572         (gtk_text_layout_move_iter_to_x):
4573         * gtk/gtktextutil.c (limit_layout_lines):
4574         Use the _readonly version of pango_layout_iter_get_line(),
4575         pango_layout_iter_get_run(), pango_layout_get_line(), and
4576         pango_layout_get_lines().
4577
4578         * gtk/gtkmain.c (gtk_get_default_language): Use
4579         pango_get_default_language().
4580
4581 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
4582
4583         * gtk/gtkentry.c (gtk_entry_set_text): Emit changed
4584         and notify:text only once. The same fix was applied
4585         for replacing the selection via DND or copy-and-paste.
4586         (#64998, Damon Chaplin, Sven Herzberg)
4587
4588 2006-12-23  Matthias Clasen  <mclasen@redhat.com>
4589
4590         * gtk/gtkimmulticontext.c: Be careful to not override
4591         GTK+ translations with the translations of the input
4592         method.  (#317080, Tor Lillqvist)
4593
4594         * modules/input/imcedilla.c: Use standard macros
4595         for translation domain and locale dir.
4596
4597         * gtk/gtkimcontextsimple.c: Allow composing l with 
4598         stroke.  (#349638, Daniel Lublin)
4599
4600         * gtk/gen-paper-names.c: Fix a thinko in the suffix
4601         calculation.  (#382369, Christian Persch)
4602
4603         * gtk/paper_names_offsets.c: Regenerated.
4604
4605 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4606
4607         * modules/engines/pixbuf/pixbuf.h:
4608         * modules/engines/pixbuf/pixbuf-rc-style.h:
4609         * modules/engines/pixbuf/pixbuf-style.h: Move 
4610         G_GNUC_INTERNAL before function declarations.  (#352276,
4611         Damien Carbery)
4612
4613 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4614
4615         * demos/gtk-demo/*.c: Fix some leaks.  (#348108, Chris
4616         Wilson)
4617
4618 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4619
4620         * *.c: Replace a lot of idle and timeout calls by
4621         the new gdk_threads api. 
4622
4623         * gdk/gdk.symbols:
4624         * gdk/gdk.h:
4625         * gdk/gdk.c: Add functions to allow threadsafe handling
4626         of idles and timeouts wrt. to the GDK lock.  (#321886,
4627         Chris Wilson)
4628         
4629 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4630         
4631         * gdk/gdkpango.c: Use pango_cairo_show_error_underline.  
4632         (#340141, Behdad Esfahbod)
4633
4634         * configure.in: Check for getc_unlocked.
4635
4636         * gtk/xdgmime/xdgmimemagic.c: Use getc if getc_unlocked is
4637         unavailable.   (#381499)
4638
4639         * tests/teststatusicon.c: Fix a typo
4640
4641 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
4642
4643         Make it possible to track the embeddedness of
4644         statusicon (#387215, Martyn Russell, patch by Christian
4645         Persch)
4646
4647         * gtk/gtkstatusicon.c: Add orientation and embedded properties.
4648         * gtk/gtkplug.c: 
4649         * gtk/gtkplug-x11.c: Add an embedded property.
4650         * tests/teststatusicon.c: Test the new properties.
4651
4652         * gtk/gtkwidget.c (gtk_widget_get_draw_rectangle): Don't
4653         leak draw_border.  (#387170, Kjartan Maraas)
4654
4655 2006-12-21  Matthias Clasen  <mclasen@redhat.com>
4656
4657          * gtk/gtkfilechooserembed.c (_gtk_file_chooser_embed_set_delegate()):
4658         Typo fix.  (#388123, Murray Cumming)
4659         
4660         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event):
4661         Generate double-click events.  (#380421, Tommi Komulainen)
4662
4663         * gdk/x1/gdkinput-xfree.c (_gdk_input_configure_event):
4664         (_gdk_input_enter_event): Correct return_if_fail checks.
4665         (#379803, Tommi Komulainen)
4666
4667         * gdk/gdkdisplay.c: Improve the docs of some functions operating
4668         on the default display.  (##353438, Mariano Suárez-Alvarez)
4669
4670 2006-12-21  Matthew Barnes  <mbarnes@redhat.com>
4671
4672         * docs/reference/gdk/gdk-sections.txt:
4673         * gdk/gdkcolor.[ch] (gdk_color_to_string): Add a function for
4674         converting a GdkColor to a string (#373856).
4675
4676         * configure.in: Bump pango requirement to 1.15.2.
4677
4678 2006-12-20  Matthias Clasen  <mclasen@redhat.com>
4679         
4680         * gdk/keynames.txt: Mark arrow keys as translatable.  (#369506,
4681         Bastian Nocera)
4682
4683         * gdk/keyname-table.h: Regenerated
4684
4685         * gtk/gtktextbuffer.c: Add signal documentation.  (#317064,
4686         Søren Wedel Nielsen)
4687
4688         * gtk/gtktextview.c (gtk_text_view_start_selection_drag):
4689         Silently return if a drag is already in progress, rather
4690         than asserting.  (#335622, Li Yuan, testcase by Erwann Chenede)
4691
4692         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new_with_dialog):
4693         Allow any GtkDialog that implements GtkFileChooser as
4694         dialog.  (#335473, Tommi Komulainen)
4695
4696 2006-12-20  Mikael Hallendal  <micke@imendio.com>
4697
4698         * gtk/gtkstatusicon.c: (gtk_status_icon_init): Fixed a last minute
4699         change in the quartz backend.
4700
4701 2006-12-20  Mikael Hallendal  <micke@imendio.com>
4702
4703         * gtk/Makefile.am: Added gtkstatusicon-quartz.c
4704         * gtk/gtkstatusicon-quartz.c: Implements the quartz backend for the
4705         status icon.
4706         * gtk/gtkstatusicon.c: Hooked in the new quartz backend. Bug #387874.
4707
4708 2006-12-19  Matthias Clasen  <mclasen@redhat.com>
4709
4710         * gtk/gtkprintunixdialog.c: Add a tooltip explaining the
4711         format of page ranges, and improve the page sequence icon
4712         for the case of n_copies == 1.
4713  
4714 2006-12-19  Mikael Hallendal  <micke@imendio.com>
4715
4716         * gdk/quartz/gdkcursor-quartz.c: Splitted out the GdkPixbuf to NSImage
4717         routine so that it can be used from libgtk as well (needed for
4718         upcoming GtkStatusIcon support in the Quartz port).
4719         * gdk/quartz/gdkevents-quartz.c: Don't assume that all NSWindows are
4720         created from GDK, this is not true for the status icon.
4721         * gdk/quartz/gdkprivate-quartz.h:
4722         * gdk/quartz/gdkquartz.h: Added 
4723         gdk_quartz_pixbuf_to_ns_image_libgtk_only so that it is available to 
4724         the status icon code.
4725
4726 2006-12-16  Tristan Van Berkom <tvb@gnome.org>
4727
4728         * gtk/gtkmessagedialog.c: Added return_if_fail (image) to
4729         gtk_message_dialog_set_image ()
4730
4731         * gtk/gtkscrolledwindow.c: Fixed a bug in set_property()
4732         (setting "window-placement-set" could result in a crash because
4733         of boolean/enum mixup)
4734
4735 2006-12-15  Federico Mena Quintero  <federico@novell.com>
4736
4737         Merged from gtk-2-10:
4738
4739         * gtk/gtkmenu.c (gtk_menu_set_title): Don't try to optimize for
4740         the case where the new title is the same as the old title, to
4741         preserve the behavior from GTK+ 2.8 (NULL and "" titles are not
4742         equivalent).  Handle the case where title == priv->title.  This
4743         was found by the LSB compatibility tests:
4744         https://bugzilla.novell.com/show_bug.cgi?id=223882
4745
4746 2006-12-15  Dom Lachowicz <domlachowicz@gmail.com>
4747
4748         * gtk/gtkcombobox.c: Make GtkComboBox in "appears-as-list" mode
4749         more closely resemble its Win32 counterpart. Bug #340204.
4750
4751 2006-12-14  Carlos Garnacho  <carlosg@gnome.org>
4752
4753         * gtk/gtkcalendar.c: draw arrows pointing to the right correctly
4754         placed inside their GdkWindow. Bug #385672.
4755
4756 2006-12-14  Christian Persch  <chpe@cvs.gnome.org>
4757
4758         * gtk/gtkiconview.c: Fix docs typo. Bug #385642.
4759
4760 2006-12-13  Dom Lachowicz <domlachowicz@gmail.com>
4761
4762         * src/modules/engines/ms-windows/msw_style.c: Bug 351679 - Notebooks 
4763         drawn with extra line below tab in MS-Windows theme. Patch by 
4764         Cody Russell
4765         
4766 2006-12-13  Matthias Clasen  <mclasen@redhat.com>
4767
4768         * gtk/Makefile.am: Add --unlink-tempfile to the evince call
4769         for print preview.  (#370041, Ghee Teo)
4770
4771 2006-12-11  Matthias Clasen  <mclasen@redhat.com>
4772
4773         * gtk/gtkprogressbar.c (gtk_progress_bar_paint_text): Be more
4774         careful when overdrawing antialiased text.  (#352435, Alex Jones,
4775         patch by Benjamin Otte)
4776
4777         * gtk/gtksettings.c: Change the way in which color scheme information
4778         is merged to correctly handle vanishing colors.  (#374420, 
4779         Benjamin Berg, patch by Callum McKenzie) 
4780         Also allow to separate entries in color schemes by ';' 
4781         instead of newline.  
4782
4783 2006-12-10  Matthias Clasen  <mclasen@redhat.com>
4784
4785         * modules/printbackends/cups/gtkcupsutils.c (gtk_cups_request_encode_option): 
4786         Properly pass multi-value options to cups.  (#355350, Jürg Billeter) 
4787
4788 2006-12-10  Kristian Rietveld  <kris@gtk.org>
4789
4790         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_focus_out_event):
4791         cancel editing (ie. don't accept changes) when the entry loses
4792         focus. (Fixes #164494, reported by Chris Rouch).
4793
4794 2006-12-10  Matthias Clasen  <mclasen@redhat.com>
4795
4796         * configure.in: Correct a misapplied patch. 
4797
4798 2006-12-10  Tor Lillqvist  <tml@novell.com>
4799
4800         * gtk-zip.sh.in: Put gdk-pixbuf-query-loaders.exe and
4801         gtk-query-immodules-2.0.exe in the runtime zipfile instead of
4802         developer zipfile. Users might add pixbuf loaders or immodules
4803         even if they are not interested in developing gtk+-using software.
4804
4805 2006-12-10  Matthias Clasen  <mclasen@redhat.com>
4806
4807         * configure.in: Check for crt_extern.h and _NSGetEnviron.
4808         * gdk/x11/gdkspawn-x11.c: Fix compilation on Darwin where
4809         environ is not available.  (#384168, Min Sik Kim)
4810
4811 2006-12-07  Paolo Maggi  <paolo@gnome.org>
4812
4813         Fixes bug #383407
4814         
4815         * gtk/gtkentry.c (gtk_entry_set_text): check for
4816         completion->priv->changed_id > 0 before calling 
4817         g_signal_handler_[un]block.
4818         (gtk_entry_completion_key_press): does not block/unblock the "changed"
4819         signal before calling gtk_entry_set_text.
4820         
4821 2006-12-07  Carlos Garnacho  <carlosg@gnome.org>
4822
4823         * gtk/gtkcellrendererprogress (compute_dimensions): do not use
4824         xthickness/ythickness, they aren't used any longer for drawing.
4825
4826 2006-12-07  Matthias Clasen  <mclasen@redhat.com>
4827
4828         * gtk/gtkrc.c (_gtk_rc_init): Fix clipping of accelerator
4829         underlines by giving labels a small draw-border.
4830
4831 2006-12-06  Kristian Rietveld  <kris@gtk.org>
4832
4833         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render):
4834         draw progress bar through theme engine instead of using our own
4835         custom cairo drawing code (#377244, patch from Carlos Garnacho).
4836
4837 2006-12-06  Matthias Clasen  <mclasen@redhat.com>
4838
4839         * gtk/gtkprintunixdialog.c (update_dialog_from_capabilities):
4840         Update the sensitivity of the collate checkbutton more frequently,
4841         proposed by Tim Waugh.
4842
4843 2006-12-04  Matthias Clasen  <mclasen@redhat.com>
4844
4845         * gtk/gtkmessagedialog.c (setup_type): Set a11y name and role
4846         since we no longer set window titles.
4847
4848 2006-12-04  Christian Persch  <chpe@cvs.gnome.org>
4849
4850         * gtk/gtkpagesetup.c: (gtk_page_setup_get_paper_size),
4851         (gtk_page_setup_set_paper_size): Don't leak the old page size when
4852         setting a new one. Bug #382314.
4853
4854 2006-12-03  Michael Natterer  <mitch@gimp.org>
4855
4856         * gtk/gtktextview.c: remove FIXME #include that is no longer needed.
4857
4858 2006-12-03  Kristian Rietveld  <kris@gtk.org>
4859
4860         Make sure [xy]_offset are always being initialized, fix pixbuf
4861         renderer padding.  (#108235, Sven Neumann).
4862
4863         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_get_size),
4864         (gtk_cell_renderer_pixbuf_render): add padding in _render instead
4865         of _get_size.
4866
4867         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_get_size):
4868         always initialize [xy]_offset.
4869         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_size): ditto.
4870         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_size):
4871         ditto.
4872
4873 2006-12-03  Kristian Rietveld  <kris@gtk.org>
4874
4875         * gtk/gtktreeview.c (validate_visible_area): when not using an
4876         explicit alignment, use the full area of the row (not just dy)
4877         to determine how to implicitly align it.  (Fixes #363191, reported
4878         by Federico Mena Quintero).
4879
4880 2006-12-02  Matthias Clasen  <mclasen@redhat.com>
4881
4882         * gtk/gtkicontheme.c (insert_theme): Properly clean up
4883         if an icon theme index file has no directories.  (#381236)
4884
4885 2006-12-02  Dom Lachowicz <domlachowicz@gmail.com>
4886
4887         * src/modules/engines/ms-windows/msw_style.c: Bug 351678 - Notebooks 
4888         not with PositionType.Top drawn incorrectly. Patch by Cody Russell
4889         
4890 2006-11-28  Behdad Esfahbod  <behdad@gnome.org>
4891
4892         Remove the broken Thai input method and add a functional Thai and Lao
4893         input method by Theppitak Karoonboonyanan. (#81031)
4894
4895         * modules/input/imthai.c:
4896         * modules/input/gtkimcontextthai.c:
4897         * modules/input/gtkimcontextthai.h:
4898         * modules/input/thai-charprop.c:
4899         * modules/input/thai-charprop.h:
4900         Added.
4901
4902         * modules/input/imthai-broken.c:
4903         Removed.
4904         
4905         * modules/input/Makefile.am:
4906         Updated.
4907
4908 2006-11-27  Christian Persch  <chpe@cvs.gnome.org>
4909
4910         * gtk/gtkstatusicon.c: Notify when the screen changes. Bug #379793.
4911
4912 Mon Nov 27 12:27:06 2006  Tim Janik  <timj@imendio.com>
4913
4914         * gtk/gtktextview.c: applied patch by  Colin Leroy for
4915         Control+GDK_KP_Left to move one word to the left, #356255.
4916
4917 2006-11-26  Benjamin Berg  <benjamin@sipsolutions.net>
4918
4919         * gtk/gtkstyle.c: (gtk_default_draw_flat_box): Protect against NULL
4920           widget. (#379503)
4921
4922 2006-11-25  Matthias Clasen  <mclasen@redhat.com>
4923
4924         * modules/printbackends/cups/gtkprintbackendcups.c: Make
4925         print dialog work when 'BrowseShortNames Off' is specified
4926         in cups configuration. Patch by Tim Waugh.
4927
4928 2006-11-24  Michael Natterer  <mitch@imendio.com>
4929
4930         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): if we
4931         can't go up/down, consult gtk_widget_keynav_failed() and leave the
4932         widget if it returns FALSE (bug #322640).
4933
4934 2006-11-23  Behdad Esfahbod  <behdad@gnome.org>
4935
4936         * gtk/gtkmain.c: Fix minor typo in docs. (#378632, Hannes Mueller)
4937
4938 2006-11-22  Emmanuele Bassi  <ebassi@gnome.org>
4939
4940         * gtk/gtkrecentmanager.c:
4941         (get_uri_shortname_for_display): g_filename_from_uri() might
4942         fail; catch the failure and fall back to the non-local URI
4943         case. (#363437)
4944
4945 2006-11-19  Mark McLoughlin  <mark@skynet.ie>
4946
4947         Fixes bug #376502 - multi-screen support for GtkStatusIcon
4948
4949         * gtk/gtkstatusicon.[ch]:
4950         (gtk_status_icon_set_screen),
4951         (gtk_status_icon_get_screen): add multi-screen API. Allows
4952         an app to display an icon on a non-default screen
4953         (gtk_status_icon_class_init),
4954         (gtk_status_icon_set_property),
4955         (gtk_status_icon_get_property): add a "screen" property
4956         
4957         * tests/teststatusicon.c: update to test on multiple screens
4958
4959 2006-11-17  Matthias Clasen  <mclasen@redhat.com>
4960
4961         Fix problems with drag cancellation. (#376535, Michael Natterer)
4962         
4963         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Disconnect signal
4964         handlers before emitting drag-end.
4965         (gtk_drag_end): Disconnect signal handlers before removing
4966         the grab.  
4967
4968 2006-11-16  Mariano Suárez-Alvarez <mariano@gnome.org>
4969
4970         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
4971         add gtk-doc blurb on GtkCellRendererText::edited (#376094)
4972
4973 2006-11-16  Michael Natterer  <mitch@imendio.com>
4974
4975         * gtk/gtkradiobutton.c (gtk_radio_button_focus): don't use
4976         gtk_widget_keynav_failed(). Instead, look at gtk-keynav-cursor-only
4977         and gtk-keynav-wrap-around and wrap around, beep or continue outside
4978         the group manually (bug #322640).
4979
4980 2006-11-16  Michael Natterer  <mitch@imendio.com>
4981
4982         Add new infrastructure for notifications of failed keyboard
4983         navigation and navigation with restricted set of keys.
4984
4985         The patch handles configurable beeping, navigating the GUI with
4986         cursor keys only (as in phone environments), and configurable
4987         wrap-around. Fixes bugs #322640, #70986, #318827, #334726, #334742
4988         and #309291.
4989
4990         * gtk/gtksettings.c: added properties gtk-keynav-cursor-only,
4991         gtk-keynav-wrap-around and gtk-error-bell.
4992
4993         * gtk/gtkwidget.[ch]: added new signal "keynav-failed" and public
4994         API to emit it. Added New function gtk_widget_error_bell() which
4995         looks at the gtk-error-bell setting and calls gdk_window_beep()
4996         accordingly.
4997
4998         * gtk/gtk.symbols: add the new widget symbols.
4999
5000         * gtk/gtkcellrendereraccel.c
5001         * gtk/gtkimcontextsimple.c
5002         * gtk/gtkmenu.c
5003         * gtk/gtknotebook.c: use gtk_widget_error_bell() or look at the
5004         gtk-error-bell setting instead of calling gdk_display_beep()
5005         unconditionally.
5006
5007         * gtk/gtkcombobox.c
5008         * gtk/gtkentry.c
5009         * gtk/gtkiconview.c
5010         * gtk/gtklabel.c
5011         * gtk/gtkmenushell.c
5012         * gtk/gtkspinbutton.c
5013         * gtk/gtktextview.c
5014         * gtk/gtktreeview.c: call gtk_widget_error_bell() on failed keynav.
5015
5016         * gtk/gtkentry.c
5017         * gtk/gtklabel.c
5018         * gtk/gtkrange.c
5019         * gtk/gtktextview.c: consult gtk_widget_keynav_failed() on failed
5020         cursor navigation and leave the widget if it returns FALSE.
5021
5022         * gtk/gtkmenushell.c
5023         * gtk/gtknotebook.c: only wrap around if gtk-keynav-wrap-around
5024         is TRUE.
5025
5026         * gtk/gtkradiobutton.c: ask gtk_widget_keynav_failed() to decide
5027         whether to to wrap-around, and don't select active items on cursor
5028         navigation if gtk-keynav-cursor-only is TRUE. Should look at
5029         gtk-keynav-wrap-around too, will look into that.
5030
5031 2006-11-16  Emmanuele Bassi  <ebassi@gnome.org>
5032
5033         * gtk/gtkrecentmanager.c:
5034         (gtk_recent_info_get_uri_display): Return the URI
5035         of the GtkRecentInfo object (upgraded to UTF-8 if
5036         needed) in case of non-local file. (#351945)
5037
5038 2006-11-16  Emmanuele Bassi  <ebassi@gnome.org>
5039         
5040         * gtk/gtkrecentchoosermenu.c:
5041         (gtk_recent_chooser_menu_add_tip): Apply the tip only
5042         if we have a displayable name for the item. (#365031,
5043         patch by padraig.obriain(at)sun.com)
5044
5045 2006-11-16  Emmanuele Bassi  <ebassi@gnome.org>
5046
5047         * gtk/gtkrecentmanager.c: Provide a fast path returning
5048         NULL when the limit is set to 0.
5049
5050         * gtk/gtkrecentchooserdefault.c:
5051         * gtk/gtkrecentchoosermenu.c: Add the same fast path
5052         inside the RecentChooser implementation; add a check
5053         in the list clamping code. (#373466 and duplicates)
5054
5055 2006-11-15  Matthias Clasen  <mclasen@redhat.com>
5056
5057         * modules/printbackends/cups/gtkprintbackendcups.c (cups_printer_get_options): 
5058         Don't pass NULL to strncpy.  (#359537, patch by  Carlos Garcia Campos)
5059
5060 2006-11-15  Michael Natterer  <mitch@imendio.com>
5061
5062         * gtk/gtkrange.[ch]: added properties "fill-level",
5063         "show-fill-level" and "restrict-to-fill-level" and getters/setters
5064         for them. The "fill level" is an additional marker on the range's
5065         trough than can be e.g. used to indicate the amount of
5066         pre-buffering in a range showing the play position of streamed
5067         media. See the embedded API docs for details. Made GtkRangeLayout
5068         a GTypeInstance private struct and removed finalize()
5069         implementation. Fixes bug #349808
5070
5071         * gtk/gtk.symbols: added the new symbols.
5072
5073 2006-11-14  Behdad Esfahbod  <behdad@gnome.org>
5074
5075         * configure.in: Make libtool magic robust. (#352795)
5076
5077 2006-11-13  Paolo Borelli  <pborelli@katamail.com>
5078
5079         * gtk/gtkrc.c (gtk_rc_parse_icon_source): plug small memory
5080         leak (#370395)
5081
5082 2006-11-09  Kristian Rietveld  <kris@imendio.com>
5083
5084         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): disable
5085         don't move cursor case for SELECTION_NONE. (#371756, John Ellis).
5086
5087 2006-11-09  Carlos Garnacho  <carlosg@gnome.org>
5088
5089         * gtk/gtkpathbar.c (on_slider_unmap): Fix parenthesis confusion.
5090
5091 2006-11-08  Carlos Garnacho  <carlosg@gnome.org>
5092
5093         * gtk/gtkpathbar.c (on_slider_unmap): added, do not leave the scroll
5094         timeout running if the slider buttons are hidden. (#372527)
5095
5096 2006-11-08  Christian Persch  <chpe@cvs.gnome.org>
5097
5098         * gtk/gtkfilechooserdefault.c (browse_widgets_create): Don't make
5099         the "Location" label bold. Bug #372449.
5100
5101 2006-11-07  Carlos Garnacho  <carlosg@gnome.org>
5102
5103         * gtk/gtknotebook.c (gtk_notebook_calculate_tabs_allocation): make
5104         non-focused tabs xthickness/ythickness thinner. (#353962)
5105
5106 2006-11-07  Paolo Borelli  <pborelli@katamail.com>
5107
5108         * gtk/gtktextbtree.c (_gtk_text_btree_delete): avoid memory
5109         corruption (#357050).
5110
5111 2006-11-06  Alexander Larsson  <alexl@redhat.com>
5112
5113         * gtk/gtkdnd.c: (gtk_drag_begin_internal),
5114         (gtk_drag_source_info_destroy), (gtk_drag_end),
5115         (gtk_drag_grab_notify_cb):
5116         Cancel drag when the grab is shadowed. (#122688)
5117
5118 2006-11-01  Kristian Rietveld  <kris@imendio.com>
5119
5120         * gtk/gtkcombobox.c (gtk_combo_box_class_init),
5121         (gtk_combo_box_size_request): add arrow-size property to control
5122         the minimum size of the arrow, have the arrow scale up with the
5123         font by default. (#357950).
5124
5125 2006-10-30  Kristian Rietveld  <kris@gtk.org>
5126
5127         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): don't
5128         forget to queue a draw for the new cursor node. (Fixes #366548,
5129         reported by Sven Herzberg).
5130
5131 2006-10-30  Michael Natterer  <mitch@imendio.com>
5132
5133         * gtk/gtkrange.c (gtk_range_key_press): consume the Escape key
5134         only if we actually cancel a drag. Fixes bug #58389.
5135
5136 2006-10-30  Kristian Rietveld  <kris@gtk.org>
5137
5138         * gtk/gtktreeview.c (gtk_tree_view_class_init): change left/right
5139         keybindings to collapse/expand rows instead of moving the focus
5140         cursor. (#105895, Brian Bober and others).
5141
5142 2006-10-29  Kristian Rietveld  <kris@gtk.org>
5143
5144         * gtk/gtktreeview.c (gtk_tree_view_real_expand_row): guard against
5145         child removal in row-expanded callback. (#366782, John Ellis).
5146
5147 2006-10-29  Tor Lillqvist  <tml@novell.com>
5148
5149         * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Improve handling
5150         of the small icon of the window class. (#152620, Kazuki Iwamoto)
5151
5152 2006-10-29  Tor Lillqvist  <tml@novell.com>
5153
5154         * gdk/win32/gdkcursor-win32.c
5155         (gdk_win32_icon_to_pixbuf_libgtk_only): Implement for B&W cursors,
5156         for instance the built-in GDK ones.
5157
5158 2006-10-27  Kristian Rietveld  <kris@gtk.org>
5159
5160         * gtk/gtktreeview.c (validate_visible_area): rework the area_above == 0
5161         case to not overwrite the variables in the lower scope (which are
5162         used later on ...), get the path correctly and bail out when there
5163         isn't a node above us. (#359231).
5164
5165 2006-10-26  Christian Persch  <chpe@cvs.gnome.org>
5166
5167         * gtk/gtkaboutdialog.c: Put initial focus on Close button (#337261).
5168
5169 2006-10-25  Johan Dahlin  <jdahlin@async.com.br>
5170
5171         * gtk/gtk.symbols: Add missing symbols to so make check can pass
5172
5173 2006-10-23  Dom Lachowicz <domlachowicz@gmail.com>
5174
5175         * src/modules/engines/ms-windows/msw_style.c (draw_expander): Remember
5176         to free GDI Pen resources, introduced by bug 340201.(#364514)
5177         
5178 2006-10-18  Kristian Rietveld  <kris@imendio.com>
5179
5180         * tests/testcombo.c (main): connect to notify::popup-shown instead of
5181         popup-show (the latter does not exist).
5182
5183 2006-10-15  Paolo Borelli  <pborelli@katamail.com>
5184
5185         * gtk/gtkicontheme.c (pixbuf_supports_svg): plug memory leak.
5186         Fixes bug #362439.
5187
5188 2006-10-12  Michael Natterer  <mitch@imendio.com>
5189
5190         * gtk/gtkcombobox.c (gtk_combo_box_class_init): fix commit below
5191         (committed the wrong patch).
5192
5193 2006-10-12  Michael Natterer  <mitch@imendio.com>
5194
5195         * gtk/gtkcombobox.c: added "move-active" and "popup" signals and
5196         bindings to trigger them. Removed gtk_combo_box_key_press(), it's
5197         obsolete now. Fixes bug #358293.
5198
5199 2006-10-11  Michael Emmel  <mike.emmel@gmail.com>
5200
5201         * gdkpixmap-directfb.c: add missing RGB24 case (#361176) 
5202
5203 2006-10-11  Tor Lillqvist  <tml@novell.com>
5204
5205         * configure.in: Enable having some gdk-pixbuf loaders built-in
5206         even if loading the others dynamically. Define Automake
5207         conditional INCLUDE_FOO for each loader as TRUE if that loader is
5208         built-in. See also gdk-pixbuf/ChangeLog.
5209
5210 Wed Oct 11 14:31:30 2006  Tim Janik  <timj@imendio.com>
5211
5212         * docs/reference/gtk/gtk-sections.txt:
5213         * gtk/gtkbindings.c: document gtk_binding_entry_skip().
5214
5215 2006-10-11  Tor Lillqvist  <tml@novell.com>
5216
5217         * gtk/gtk.symbols: Remove gtk_combo_string_key, which is a static
5218         variable.
5219
5220 2006-10-11  Tor Lillqvist  <tml@novell.com>
5221
5222         Merge from 2.10 branch:
5223
5224         * gtk/gtkmain.c (do_pre_parse_initialization): On Win32, if
5225         environment variable LC_ALL or LANG is set, set the Win32 thread
5226         locale to the corresponding locale. Then call the C library
5227         setlocale() to set the C library locale accordingly. The
5228         inconsistency mentioned below is gone. (#339756) Do some special
5229         casing for Serbia and Montenegro. Handle the Latin and Cyrillic
5230         scripts for Azeri, Uzbek and Serbian.
5231         (enum_locale_proc): Helper function for the above functionality.
5232
5233         * gtk/gtkcalendar.c (gtk_calendar_init): No longer need to check
5234         if the environment variables are set here, as they have already
5235         been taken into account and the Win32 thread locale has been
5236         set.
5237
5238 Tue Oct 10 16:38:23 2006  Tim Janik  <timj@imendio.com>
5239
5240         * gtk/tmpl/gtkbindings.sgml: 
5241         * gtk/gtkbindings.c: applied patch from Michael Natterer to move to 
5242         inline docs. applied wording fixes suggested by Martyn Russell.
5243
5244 2006-10-09  Matthias Clasen  <mclasen@redhat.com>
5245
5246         * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
5247         Update the docs to state which out parameters may be NULL.
5248         (#360870, Attilio Fiandrotti)
5249
5250 2006-10-08  Matthias Clasen  <mclasen@redhat.com>
5251
5252         * gtk/gtkprintunixdialog.c (update_dialog_from_capabilities): Fix
5253         a typo.  (#359542, Ghee Teo)
5254
5255 2006-10-08 Matthias Clasen <mclasen@redhat.com>
5256
5257         * gtk/gtknotebook.c (gtk_notebook_reorder_tab): Only
5258         reorder tabs if the focus is in the tab.  (#350342, Carlos
5259         Garnacho Parro)
5260
5261 2006-10-08 Michael Emmel <mike.emmel@gmail.com>
5262
5263         * gdk/directfb/gdkproperty-directfb.c strdup atom name (#357611) 
5264
5265 2006-10-08  Kristian Rietveld  <kris@gtk.org>
5266
5267         * gtk/gtktreeview.[ch] (gtk_tree_view_set_property),
5268         (gtk_tree_view_set_show_expanders),
5269         (gtk_tree_view_get_show_expanders): add getter/setter for
5270         show-expanders property, queue a redraw when this property
5271         is toggled (#351167, Martin Ejdestig),
5272         (gtk_tree_view_set_level_indentation),
5273         (gtk_tree_view_get_level_indentation): also add getter/setter
5274         and docs for level-indentation property.
5275
5276 2006-10-08  Matthias Clasen  <mclasen@redhat.com>
5277
5278         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
5279         leak a list.  (#360350, Benjamin Berg)
5280
5281         * Apply a cleanup patch by Kjartan Maraas  (#341812)
5282
5283 2006-10-07  Tor Lillqvist  <tml@novell.com>
5284
5285         * gtk/gtkcalendar.c (gtk_calendar_init): Use the Win32 thread
5286         locale's first day of week setting on Win32. (#339752, Bogdan
5287         Nicula) Don't do this if one of the environment variables that
5288         affect gettext is set, though. In that case use the week start day
5289         from the corresponding message catalog.
5290
5291         Unfortunately the same logic isn't possible in the weekday and
5292         month name lookup; there even if you have set one of the
5293         aforementioned environment variables, you still get the weekday
5294         and month names from the Win32 thread locale. Yes, this is
5295         inconsistent.
5296
5297         Use only wide-character API in the Win32 code in this file, too.
5298
5299 2006-10-06  Matthias Clasen  <mclasen@redhat.com>
5300
5301         * gtk/gtkfilechooser.c (gtk_file_chooser_set_select_multiple):
5302         Fix the docs.  (#360112)
5303
5304         * gtk/gtkcellview.c: Don't set the background of the
5305         window in a no-window widget.  (#359581, Xan Lopez)
5306
5307
5308 2006-10-05  Behdad Esfahbod  <behdad@gnome.org>
5309
5310         * gtk/Makefile.am, gtk/aliasfilescheck.sh:  Propagate srcdir into the
5311         test correctly. (#359845)
5312
5313 2006-10-05  Michael Natterer  <mitch@imendio.com>
5314
5315         * gtk/gtkrc.[ch]: added new scanner token "unbind" which gets
5316         rid of a key binding (in fact, it only lets it appear unbound).
5317
5318         * gtk/gtkbindings.[ch] (struct GtkBindingEntry): added
5319         "guint marks_unbound : 1"
5320
5321         (gtk_binding_entry_skip): new API which marks the entry as unbound.
5322
5323         Changed code so it returns FALSE when "marks_unbound == TRUE" is
5324         encountered while activating bindings, effectively letting the
5325         binding appear unbound (regardless of still existing bindings in
5326         lower binding priority levels). Fixes bug #358329.
5327
5328         (gtk_binding_entry_add)
5329         (gtk_binding_entry_clear)
5330         (gtk_binding_entry_add_signall)
5331         (gtk_binding_parse_binding): deprected these functions.
5332
5333         (_gtk_binding_parse_binding)
5334         (_gtk_binding_entry_add_signall): new internal API.
5335
5336         * gtk/gtk.symbols: changed accordingly.
5337
5338 2006-10-03  Matthias Clasen  <mclasen@redhat.com>
5339
5340         Fix interaction of GtkEntryCompletion with input
5341         methods.  (#354495, Diego Escalante Urrelo)
5342
5343         * gtk/gtkentry.c (gtk_entry_completion_key_press): Only reset
5344         the im context if we actually handle the key event.
5345
5346         * gtk/gtkentrycompletion.c: Also propagate key release events
5347         to the entry.
5348
5349 2006-10-03  Matthias Clasen  <mclasen@redhat.com>
5350
5351         * gtk/gtkprintsettings.c (gtk_print_settings_get_duplex):
5352         Fix a typo.  (#359052, Ghee Teo)
5353
5354         * gtk/*.c, gdk/*.c: Apply a patch by Behdad Esfahbod to
5355         reduce relocations. (#359053)
5356
5357 2006-10-03  Matthias Clasen  <mclasen@redhat.com>
5358
5359         * modules/printbackends/cups/gtkcupsutils.c:
5360         * modules/printbackends/cups/gtkprintbackendcups.c: Complete
5361         the fix for bug 357280.
5362
5363 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
5364
5365         * gdk-pixbuf/Makefile.am:
5366         * gdk/Makefile.am:
5367         * gtk/Makefile.am:
5368         Include pltcheck.sh in EXTRA_DIST.
5369
5370 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
5371
5372         * gdk/x11/gdkevents-x11.c: Move all includes before including
5373         gdkalias.h.
5374
5375 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
5376
5377         * gtk/Makefile.am: Fix typo in file name.  (#358931)
5378
5379 2006-10-02  Matthias Clasen  <mclasen@redhat.com>
5380
5381         * modules/printbackends/cups/gtkprintbackendcups.c (available_choices): 
5382         Only use the group name field if cups is new enough.  (#357280)
5383
5384         * gtk/gtksizegroup.c: Make sure that the quarks are 
5385         initialized before using them.  (#353736)
5386
5387         * gtk/Makefile.am (stamp-icons): Use rm instead of ln -f to
5388         replace existing links.  (#354849, James Evans)
5389
5390 2006-10-01  Matthias Clasen  <mclasen@redhat.com>
5391
5392         * gtk/gtkexpander.c (gtk_expander_realize) 
5393         (gtk_expander_size_allocate): Make the event_window large
5394         enough to cover the full height of the label_widget.  (#358351,
5395         Scott Horowitz)
5396
5397 2006-10-01  Tor Lillqvist  <tml@novell.com>
5398
5399         * gtk/gtkfilesystemwin32.c: Same change as to gtkfilesystemunix.c.
5400
5401 2006-09-30  Matthias Clasen  <mclasen@redhat.com>
5402
5403         * gtk/gtkfilechooserbutton.c (update_combo_box): Protect
5404         against base_path being NULL.  (#358405, many reporters)
5405
5406 2006-09-29  Matthias Clasen  <mclasen@redhat.com>
5407
5408         * gtk/gtkfilesystemunix.c: Apply a patch by Padraig O'Briain
5409         to avoid a deadlock.
5410
5411 2006-09-27  Kristian Rietveld  <kris@imendio.com>
5412
5413         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_free_level),
5414         (gtk_tree_model_filter_ref_node),
5415         (gtk_tree_model_filter_real_unref_node): bring zero ref count loops
5416         in sync with each other and the sort model.
5417
5418 2006-09-27  Kristian Rietveld  <kris@imendio.com>
5419
5420         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_init),
5421         (gtk_tree_model_filter_finalize), (gtk_tree_model_filter_row_deleted),
5422         (gtk_tree_model_filter_new): unref the virtual root path once that
5423         node (or one if its ancestors) is deleted, set virtual_root_deleted
5424         so we only unref it once.
5425
5426 2006-09-27  Kristian Rietveld  <kris@imendio.com>
5427
5428         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_changed),
5429         (gtk_tree_model_sort_sort_level): ref count nodes the proper way,
5430         (gtk_tree_model_sort_ref_node), (gtk_tree_model_sort_real_unref_node),
5431         (gtk_tree_model_sort_free_level): bring zero ref count loops in
5432         sync,
5433         (gtk_tree_model_sort_free_level): free child levels before
5434         decreasing the zero ref count of the current level,
5435         (gtk_tree_model_sort_clear_cache): only clear cache if zero_ref_count
5436         is > 0.
5437
5438 2006-09-25  Matthias Clasen  <mclasen@redhat.com>
5439
5440         * demos/gtk-demo/*.c:
5441         * gtk/gtkeventbox.c:
5442         * gtk/gtkprintoperation.c: Fix typos. String change.
5443
5444 2006-09-25  Kristian Rietveld  <kris@gtk.org>
5445
5446         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): if the tree view
5447         has already been realized; scroll to background area instead of
5448         cell area. (Fixes #330683, Johan Dahlin, Tommi Komulainen).
5449
5450 2006-09-25  Kristian Rietveld  <kris@gtk.org>
5451
5452         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): only attempt
5453         to create the GCs if the widget is realized. (Fixes #357578).
5454
5455 2006-09-25  Matthias Clasen  <mclasen@redhat.com>
5456
5457         * gtk/gtkuimanager.c (_gtk_menu_is_empty): Don't leak
5458         the list of children (#357454, Paolo Borelli)
5459
5460 2006-09-25  Michael Natterer  <mitch@imendio.com>
5461
5462         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_finalize): free
5463         display->input_windows with g_free(), not g_object_unref()
5464         (#357566, Tommi Komulainen).
5465
5466 2006-09-24  Kristian Rietveld  <kris@gtk.org>
5467
5468         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init),
5469         (gtk_cell_renderer_text_[sg]et_property): actually add align-set
5470         property to the API (left-over patch from #157439).
5471
5472 2006-09-24  Kristian Rietveld  <kris@gtk.org>
5473
5474         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button): draw
5475         the indicator if the column has a sort column id (and the model is
5476         sortable) or if the user explicitly requested the indicator
5477         to be shown.  (Fixes #352738, Chris Vine).
5478
5479 2006-09-23  Tor Lillqvist  <tml@novell.com>
5480
5481         * gtk/Makefile.am: Use EXEEXT.
5482
5483 2006-09-22  Michael Natterer  <mitch@imendio.com>
5484
5485         * gtk/gtkstyle.c (gtk_style_real_copy): also copy icon factories
5486         and color hashes. Fixes bug #357132.
5487
5488 2006-09-22  Matthias Clasen  <mclasen@redhat.com>
5489
5490         Make remote bookmarks work better (#354887)
5491         
5492         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): 
5493         (shortcuts_insert_path): 
5494         * gtk/gtkfilechooserbutton.c (change_icon_theme): 
5495         (model_add_bookmarks): 
5496         (model_update_current_folder): 
5497         (update_label_and_image): 
5498         If the bookmark points to a remote file, don't call get_info(), 
5499         since that may a) take a long time and b) pop up an auth dialog.
5500         Instead, just use a folder icon and create a display name
5501         from the uri.
5502
5503         * gtk/gtkfilechooserdefault.c (_gtk_file_chooser_label_for_uri): 
5504         New function to create a suitable display name for a remote
5505         uri. This should really be done in GtkFileSystem.
5506         
5507 2006-09-21  Michael Natterer  <mitch@imendio.com>
5508
5509        Implement lots of value setters for GdkGC, based on a heavily
5510        modified patch from Thomas Broyer (bug #328853):
5511
5512         * gdk/quartz/gdkcolor-quartz.c: removed functions which set colors
5513         on the CGContext. Instead, added gdk_quartz_get_rgba_from_pixel()
5514         which simply returns RGBA values from a GdkColor's pixel value.
5515         See gdk_quartz_update_context_from_gc() below.
5516
5517         * gdk/quartz/gdkprivate-quartz.h (struct GdkGCQuartz): added lots
5518         of members for the newly suppored GC values. Added enum
5519         GdkQuartzContextValuesMask which is used for setting up the
5520         CGContext for filling and/or stroking.
5521
5522         * gdk/quartz/gdkgc-quartz.c (gdk_quartz_gc_get_values)
5523         (gdk_quartz_gc_set_values)
5524         (_gdk_windowing_gc_copy): support a lot more GC values.
5525
5526         (gdk_quartz_update_context_from_gc): added
5527         GdkQuartzContextValuesMask parameter and set filling/stroking
5528         parameters accordingly. This function also gained full control
5529         over the FG and BG colors (they can't be set separately any more).
5530
5531         The stipple mask part of the patch doesn't work but seems to take
5532         the right approach and doesn't make things worse, so I applied it.
5533
5534         Did *not* apply the clipping part of the patch since I don't
5535         understand it (I don't understand the version in CVS either, but
5536         it at least works :-)
5537
5538         * gdk/quartz/gdkdrawable-quartz.c: pass the right masks to
5539         gdk_quartz_update_context_from_gc() and removed separate color
5540         setting calls. Some minor fixes.
5541
5542         * gdk/quartz/gdkwindow-quartz.c
5543         (gdk_window_impl_quartz_begin_paint_region): set the CGContext's
5544         fill color manually. We don't have/need a GC here.
5545
5546 2006-09-21  Michael Natterer  <mitch@imendio.com>
5547
5548         * gdk/quartz/gdkwindow-quartz.c
5549         (gdk_window_impl_quartz_begin_paint_region): fix cast: it's
5550         drawable_impl->wrapper that is the GdkWindow, not the
5551         drawable_impl itself.
5552
5553 2006-09-20  Behnam Esfahbod <behnam@zwnj.org>
5554
5555         * gdk/x11/gdkkeys-x11.c:
5556           (get_direction): just check the first shift-level of keyboard
5557         layout for RTL and LTR keysyms() (compliment to #116626)
5558
5559 Wed Sep 20 16:59:38 2006  Tim Janik  <timj@imendio.com>
5560
5561         * gtk/gtkviewport.c: always update the bin_window position and size
5562         in size_allocate, even if we don't have a visible child. this fixes
5563         expose artefacts as described in #313508.
5564
5565         * gtk/gtkscrolledwindow.c: make hiding of automatic scrollbars when we
5566         have no visible child explicit.
5567
5568 2006-09-19  Ryan Lortie  <desrt@desrt.ca>
5569
5570         * docs/reference/gdk/gdk-sections.txt:
5571         * gdk/gdk.symbols:
5572         * gdk/gdkpango.h:
5573         * gdk/gdkpango.c: Bug 355343.  Add a GdkPangoAttrEmbossColor.
5574           (gdk_pango_layout_get_clip_region): Remove an unused variable.
5575           (gdk_pango_attr_embossed_new): Fix documentation.
5576
5577 Tue Sep 19 17:00:04 2006  Tim Janik  <timj@imendio.com>
5578
5579         * gtk/gtkarrow.c: added GtkArrow::arrow-scaling style property to 
5580         control the arrow/border ratio within the allocation.
5581
5582         * tests/testgtk.c: added a GtkArrow to handle box test.
5583
5584         * tests/testgtkrc: test ::arrow-scaling property.
5585
5586 2006-09-19  Matthias Clasen  <mclasen@redhat.com>
5587
5588         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
5589         Display an error when we come to the root.  
5590
5591 2006-09-16  Matthias Clasen  <mclasen@redhat.com>
5592
5593         * gtk/gtkfilechooserbutton.c: Use bookmark labels in 
5594         the combobox. 
5595
5596         * gtk/gtkfilechooserbutton.c: Don't add remote volumes and 
5597         bookmarks to the model in local-only mode, to avoid 
5598         authentication dialogs pop up for invisible bookmarks, and
5599         to fix issues with separators not being hidden when
5600         they should.  (#354887, Dennis Cranston)
5601
5602 2006-09-16  Matthias Clasen  <mclasen@redhat.com>
5603
5604         * gtk/gtkcombobox.c (gtk_combo_box_finalize): Unref the
5605         treeview use in list mode.  (#355732, Richard Hult)
5606
5607         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): Send
5608         change notification for the right property.  (#355308,
5609         Torsten Schoenfeld)
5610
5611 2006-09-15  Michael Natterer  <mitch@imendio.com>
5612
5613         * gtk/gtktreeview.c (gtk_tree_view_key_press): refactored column
5614         header navigation/resizing/reordering to be more readable and lose
5615         one level of nesting.
5616
5617 2006-09-15  Kristian Rietveld  <kris@imendio.com>
5618
5619         * gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly
5620         return after handling column button focus; we disable wrap around
5621         with this (which actually happened via a really weird code path).
5622         (Michael Natterer)
5623
5624 2006-09-15  Kristian Rietveld  <kris@imendio.com>
5625
5626         * gtk/gtktreeview.c (gtk_tree_view_key_press): make column resizing
5627         code RTL aware, also break from the loops after we have seen the
5628         focussed column button (Michael Natterer).
5629
5630 Thu Sep 14 12:28:51 2006  Tim Janik  <timj@imendio.com>
5631
5632         * tests/testrichtext.c (main): intialize random number generator state
5633         upon program start, to enable truely random testing.
5634
5635 2006-09-13 Michael Emmel <mike.emmel@gmail.com>
5636
5637         * gdk/directfb/gdkcolor-directfb.c small clean ups include order
5638         * gdk/directfb/gdkwindow-directfb.c fixed beep compile error
5639         * gdk/directfb/Makefile.am removed GDK_PIXBUF_DISABLE_DEPRECATED
5640                 GDK_DISABLE_DEPRECATED to allow compile per Behdad
5641         * gdk/quartz/Makefile.am same change as directfb Makefile
5642         * gtk/Makefile.am fixed typo that cause socket stubs not to compile
5643
5644 2006-09-13 Matthias Clasen <mclasen@redhat.com>
5645
5646         * gtk/gtkcolorsel.c: Use a GtkWindow instead of a GtkInvisible
5647         for the grab widget, to make the color picker work with window
5648         groups.  
5649
5650 2006-09-12 Hong Jen Yee <pcman.tw@gmail.com>
5651
5652         signed off by: Dom Lachowicz
5653         
5654         * modules/engines/ms-windows/msw_style.c: Bug 340201. This contains
5655         a large number of improvements to the Microsoft Windows theme engine
5656         which are fully described in the bug report.
5657         
5658 Mon Sep 11 14:22:39 2006  Tim Janik  <timj@imendio.com>
5659
5660         * tests/testgtk.c: fixed compiler warnings.
5661
5662 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
5663
5664         * gtk/gtkfilechooserbutton.c (model_add_special): Request
5665         the display name too, otherwise "Desktop" does not appear
5666         in the file chooser button. 
5667
5668 2006-09-10  Tor Lillqvist  <tml@novell.com>
5669
5670         * gdk/win32/gdkprivate-win32.h
5671         * gdk/win32/gdkmain-win32.c
5672         * gdk/win32/gdkwindow-win32.c: Define WINVER and _WIN32_WINNT as
5673         0x0500 in gdkprivate-win32.h instead of doing it in two source
5674         files. (#355212, Mike Edenfield)
5675
5676         * gdk/win32/gdkwindow-win32.c: We can also remove the ersatz
5677         GetAncestor() for the _MSC_VER && WINVER < 0x0500 case, I hope.
5678
5679 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
5680
5681         * Commit a patch by Behdad to fix typos, omissions and other
5682         errors in the symbol aliasing, and add checks for local PLT
5683         entries.  (#354687, Behdad Esfahbod)
5684
5685         * gtk/gtktreeview.c (gtk_tree_view_search_scroll_event): Renew
5686         the flush timeout.  (#354043, Nelson Benitez)
5687         
5688         * gtk/gtkfilechoosersettings.c (set_unexpected_element_end_error): 
5689         Improve wording. String change!  (#355126, David Lodge)
5690
5691         * gtk/updateiconcache.c: Improve wording. String change!  (#355128,
5692         David Lodge)
5693
5694         * gtk/paper_names_offsets.c: Fix a typo. String change!  (#355134,
5695         David Lodge)
5696
5697 2006-09-09  Matthias Clasen <mclasen@redhat.com>
5698
5699         * gdk/x11/gdkfonts-x11.c: Fix small theoretical memory leaks.
5700         (#353916, Chris Wilson)
5701
5702         * gtk/gtksettings.c (_gtk_settings_reset_rc_values):
5703         Don't leak the to_reset list.  (#353914, Chris Wilson)
5704
5705         * gtk/gtkwidget.c: Add docs for the parent-set signal.
5706         (#353772, Mariano Suárez-Alvarez)
5707
5708 2006-09-08  Matthias Clasen <mclasen@redhat.com>
5709
5710         * gtk/gtktextbuffer.c (remove_all_selection_clipboards):
5711         Don't clear clipboards here, since we are called from finalize
5712         and can't emit signals.
5713
5714         * configure.in: Set version to 2.11.0
5715
5716 2006-09-06  Richard Hult  <richard@imendio.com>
5717
5718         * gdk/quartz/gdkkeys-quartz.c: (maybe_update_keymap): Special-case 
5719         shift-tab and map it to GDK_ISO_Left_Tab, fixes bug #350806.
5720
5721 2006-09-04  Kristian Rietveld  <kris@imendio.com>
5722
5723         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
5724         if setting the given folder failed, try setting the parent folder
5725         until we succeed; display an error box at the end.
5726
5727 2006-09-04  Kristian Rietveld  <kris@imendio.com>
5728
5729         * gtk/gtkpathbar.c (gtk_path_bar_dispose): don't cancel the
5730         operations spawned by buttons here,
5731         (set_button_image_get_info_cb): bail out if button is NULL, but
5732         do free button_data,
5733         (button_data_free): only free the data if non NULL (since this
5734         function can be called multiple times for the same data), cancel
5735         handle if pending but don't free button_data in this case (will
5736         happen in the callback).
5737
5738 2006-09-04  Michael Natterer  <mitch@imendio.com>
5739
5740         * gtk/gtkrc.c (rc_parse_token_or_compound)
5741         (gtk_rc_parse_assignment): serialize floating point values using
5742         locale-independent functions. (#346751, Frederic Crozat)
5743
5744 2006-09-04  Tor Lillqvist  <tml@novell.com>
5745
5746         * gdk/win32/gdkevents-win32.c
5747         * gdk/win32/gdkwindow-win32.c: Use wide-char API for message and
5748         window handling (PeekMessage, PostMessage, SendMessage,
5749         DispatchMessage, DefWindowProc, RegisterClassEx,
5750         CreateWindowEx). (#321597)
5751
5752 2006-09-03  Kristian Rietveld  <kris@imendio.com>
5753
5754         * gtk/gtkfilechooserdefault.c (save_entry_get_info_cb),
5755         (file_exists_get_info_cb), (gtk_file_chooser_default_should_respond):
5756         change file_exists_and_is_not_folder checks to get the file info
5757         for the path directly instead of querying the current file folder
5758         of the save entry.
5759
5760         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault): add
5761         new field.
5762
5763         * tests/autotestfilechooser.c (wait_for_idle_idle), (wait_for_idle),
5764         (test_reload_sequence), (test_button_folder_states_for_action): wait
5765         for idle after setting a folder to ensure the async operations to load
5766         the folder are finished,
5767         (test_confirm_overwrite), (test_confirm_overwrite_for_path):
5768         factor out test_confirm_overwrite code so we can add tests for more
5769         paths more easily.
5770
5771 2006-09-03  Richard Hult  <richard@imendio.com>
5772
5773         * gdk/quartz/GdkQuartzView.c (drawRect): Don't do anything if
5774         exposure isn't in the event mask, plug a leak, and check that the
5775         window isn't destroyed.
5776         (isOpaque): Check that the window isn't destroyed, fixes bug 
5777         #353028.
5778
5779 2006-09-03  Matthias Clasen  <mclasen@redhat.com>
5780
5781         * gtk/gtkwidget.c (gtk_widget_class_init): Fix a typo.  
5782         (#354035, Mariano Suárez-Alvarez)
5783
5784         * gtk/gtkmain.c (post_parse_hook): 
5785         * gdk/gdk.c (gdk_init): Handle display_name being NULL.
5786         (#354004, Chris Wilson)
5787
5788 2006-09-03  Tor Lillqvist  <tml@novell.com>
5789
5790         * gdk/win32/gdkwindow-win32.c (gdk_window_beep): No
5791         GDK_WINDOW_DISPLAY in the Win32 backend.
5792
5793         * gtk/gtkfilesystemwin32.c: Copy what Kris did to
5794         gtkfilesystemunix.c
5795
5796 2006-09-02  Kristian Rietveld  <kris@imendio.com>
5797
5798         First part of file chooser fixes.
5799
5800         * gtk/gtkfilechooserbutton.c (model_add_special): also set the
5801         handle in the model for the desktopdir case.
5802
5803         * gtk/gtkfilechooserdefault.c (shortcuts_add_current_folder): free
5804         volume in case we retrieved it but don't pass it on to insert_path,
5805         (shortcuts_model_create): change the column type for the handles
5806         to pointer instead of GObject so our handle ref counting is not
5807         disturbed,
5808         (show_and_select_paths_finished_loading): don't forget to unref
5809         the dialog.
5810
5811         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_class_init),
5812         (gtk_file_system_unix_init), (gtk_file_system_unix_dispose):
5813         remove pending execute_callbacks_idle during dispose, also
5814         execute all callbacks waiting to be run in the next idle,
5815         (queue_*callback), (execute_callbacks_idle): refactor to maintain
5816         a list of callbacks to call per file system instead of globally,
5817         guard the file system during callback invocation,
5818         (gtk_file_system_unix_get_folder): only add load folder idle if
5819         none has been added yet.
5820
5821 2006-09-01  Matthias Clasen  <mclasen@redhat.com>
5822
5823         * gtk/gtkentry.c: Don't unnecessarily reset the im context
5824         when deleting the selection.  (#353803, Alex Larsson)
5825
5826 2006-09-01  Abel Cheung  <abel@oaka.org>
5827
5828         * configure.in: Added 'ang' 'dz' to ALL_LINGUAS.
5829
5830 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
5831
5832         Stop cursor blinking after a configurable timeout.
5833         (#353670, #352442, Arjan van de Ven, Manu Cornet)
5834         
5835         * gtk/gtksettings.c (gtk_settings_class_init): Add a 
5836         gtk-cursor-blink-timeout setting, which specifies the number
5837         of seconds that the cursor should blink after a user interaction.
5838         The default value is G_MAXINT to preserve the current behaviour.
5839
5840         * gtk/gtkentry.c (blink_cb): Stop blinking after blink-timeout
5841         seconds.
5842
5843         * gtk/gtkentry.c (gtk_entry_completion_key_press) 
5844         (gtk_entry_button_press, gtk_entry_focus_in): Reset the
5845         blink timer.
5846
5847         * gtk/gtktextview.c (blink_cb): Stop blinking after blink-timeout
5848         seconds. 
5849
5850         * gtk/gtktextview.c (gtk_text_view_key_press_event) 
5851         (gtk_text_view_button_press_event, gtk_text_view_focus_in_event): 
5852         Reset the blink timer.
5853         
5854 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
5855
5856         * gtk/gtkprintoperation-unix.c (get_print_dialog): Don't specify
5857         explicit format capabilities.  (#346505, Christian Persch)
5858
5859         * modules/printbackends/cups/gtkprintbackendcups.c (cups_request_printer_list_cb): Send printer-list-done on error. 
5860
5861 2006-08-31  Michael Natterer  <mitch@imendio.com>
5862
5863         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Fix build.
5864
5865 2006-08-30  Richard Hult  <richard@imendio.com>
5866
5867         * gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): Fix build.
5868
5869 2006-08-30  Matthias Clasen  <mclasen@redhat.com>
5870
5871         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Only use XKB
5872         for beeping if we are using XKB.  
5873
5874 2006-08-29  Matthias Clasen  <mclasen@redhat.com>
5875
5876         * gdk/gdkwindow.h: 
5877         * gdk/gdk.symbols: 
5878         * gdk/directfb/gdkwindow-directfb.c (gdk_window_beep): 
5879         * gdk/win32/gdkwindow-win32.c (gdk_window_beep): 
5880         * gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): 
5881         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Add a function
5882         to beep on a window. For X11, implement this with
5883         XkbBell.  (#353455, Mariano Suárez-Alvarez)
5884         
5885 2006-08-29  Tor Lillqvist  <tml@novell.com>
5886
5887         Remove support for Windows 9x/ME. GTK+ hasn't worked on Win9x
5888         since 2.6 or 2.8. It's pointless to keep the Win9x code in here as
5889         it isn't being maintained anyway. If somebody is interested, it
5890         can always be found in older GTK+ versions, and in CVS.
5891
5892         * configure.in
5893         * acconfig.h
5894         * gdk/Makefile.am
5895         * gdk/win32/Makefile.am
5896         * gdk/win32/libie55uid.la
5897         * gdk/win32/gdkevents-win32.c: Remove the --with-ie55 configure
5898         switch and associated stuff. Active IMM and the <dimm.h> header
5899         was used for IM support on NT4 and Win9x. Win2k and later have IM
5900         support built-in.
5901
5902         * gdk/win32/gdkcursor-win32.c
5903         * gdk/win32/gdkdnd-win32.c
5904         * gdk/win32/gdkdrawable-win32.c
5905         * gdk/win32/gdkevents-win32.c
5906         * gdk/win32/gdkgc-win32.c
5907         * gdk/win32/gdkglobals-win32.c
5908         * gdk/win32/gdkkeys-win32.c
5909         * gdk/win32/gdkmain-win32.c
5910         * gdk/win32/gdkproperty-win32.c
5911         * gdk/win32/gdkselection-win32.c
5912         * gdk/win32/gdkwindow-win32.c: Remove the G_WIN32_IS_NT_BASED()
5913         and G_WIN32_HAVE_WIDECHAR_API() tests and their false (Win9x)
5914         branches, and any variables or static functions used only by the
5915         Win9x branches.
5916
5917         * gdk/win32/gdkprivate-win32.h: Remove backup definitions for
5918         constants that aren't missing from current mingw and MSVC6
5919         headers.
5920
5921         * gdk/win32/gdkmain-win32.c
5922         * gdk/win32/gdkprivate-win32.h: Remove the _gdk_win32_gdi_failed()
5923         function. On NT-based Windows GetLastError() returns error codes
5924         also for failed GDI calls, so we can use _gdk_win32_api_failed()
5925         always.
5926
5927 2006-08-29  Emmanuele Bassi  <ebassi@gnome.org>
5928
5929         * gtk/gtkrecentchoosermenu.c
5930         (gtk_recent_chooser_menu_set_current_uri): Break when an item
5931         is found and activated. (#353449, based on a patch by Jan Arne
5932         Petersen)
5933
5934 Fri Jul 14 16:13:37 2006  Tim Janik  <timj@gtk.org>
5935
5936         * gtk/gtkprogressbar.c: introduced ::xspacing and ::yspacing style 
5937         properties which make all hardcoded padding and spacing values
5938         configurable. properly swap ::text-xalign treatment for RTL widgets.
5939
5940         * gtk/gtkprogress.c: fixed style property blurbs. made alignment 
5941         proeprty more consistent with GtkMisc alignment blurbs. mention
5942         RTL treatment for text-xalign.
5943
5944 Tue Aug 29 11:57:40 2006  Tim Janik  <timj@imendio.com>
5945
5946         * tests/testgtk.c: allow (most) windows to be resizable.
5947         added ellipsization settings to progress bars. 
5948
5949 2006-08-28  Matthias Clasen   <mclasen@redhat.com>
5950
5951         * modules/printbackend/cups/gtkprintbackendcups.c: Use a
5952         resonable timeout of 3 seconds when polling for printer
5953         list updates, instead of 300000 seconds...
5954
5955 2006-08-28  Michael Natterer  <mitch@imendio.com>
5956
5957         * gtk/gtktextbufferserialize.c (serialize_text): don't write out
5958         </apply_tag> for tags that have already been closed by the logic
5959         which turns overlapping spans into XML-able trees. Fixes broken
5960         XML when there are overlapping tags in the buffer. Also free two
5961         leaked GLists and did some cleanup.
5962
5963         * tests/Makefile.am
5964         * tests/testrichtext.c: new test which creates randomly tagged
5965         GtkTextBuffers and serializes/deserializes them.
5966
5967 2006-08-26  Matthias Clasen  <mclasen@redhat.com>
5968
5969         * gtk/gtkstatusicon.c (gtk_status_icon_reset_image_data): 
5970         Don't leak pixbufs.  (#352264, Ross Burton)
5971
5972         * gtk/gtklinkbutton.c (set_link_underline): Don't leak
5973         PangoAttributes.  (#352391, Paolo Borelli)
5974
5975 2006-08-25  Matthias Clasen  <mclasen@redhat.com>
5976
5977         * demos/gtk-demo/Makefile.am:
5978         * demos/gtk-demo/textscroll.c: Add an example of automatic
5979         scrolling, thanks to Yevgen Muntyan.  (#351206)
5980         
5981         * gtk/gtkmodules.c (find_module): Use local binding when
5982         loading modules.  (#351868)
5983
5984 2006-08-24  Michael Natterer  <mitch@imendio.com>
5985
5986         * gdk/quartz/gdkdisplay-quartz.c (gdk_display_get_name): return
5987         the hostname instead of NULL.
5988
5989 2006-08-23  Matthias Clasen  <mclasen@redhat.com>
5990
5991         * gtk/gtkprinteroptionwidget.[hc]: Fix confusion about
5992         names and values in comboboxes, and clean up some
5993         coding style issues.
5994
5995 2006-08-23  Tor Lillqvist  <tml@novell.com>
5996
5997         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_make_path):
5998         Revert unintended translatable string addition. Use same string
5999         in GError as in gtkfilesystemunix.c.
6000
6001         * gtk/gtkfilesystemwin32.c (_gtk_file_system_win32_path_compare):
6002         Fix logic at the end of strings. 
6003
6004         * gtk/gtkfilesystemwin32.c: Maintain a hash table of live
6005         handles and check that we have no outstanding handles at
6006         finalization time. (Copying what Matthias did for
6007         gtkfilesystemunix.c)
6008
6009 2006-08-23  Matthias Clasen  <mclasen@redhat.com>
6010
6011         * gtk/gtkfilesystemunix.c: Maintain a hash table
6012         of live handles and check that we have no outstanding
6013         handles at finalization time. (Copying what
6014         Federico did for gtkfilesystemgnomevfs.c)
6015
6016 2007-08-22  Matthias Clasen  <mclasen@redhat.com> 
6017
6018         * Branch for 2.10
6019