]> Pileus Git - ~andy/gtk/blob - ChangeLog
Factor out code to discard the current_folder
[~andy/gtk] / ChangeLog
1 2009-01-15  Federico Mena Quintero  <federico@novell.com>
2
3         http://bugzilla.gnome.org/show_bug.cgi?id=545980 -
4         GtkFileChooserEntry should handle URIs
5
6         * gtk/gtkfilesystem.c (_gtk_file_system_parse): Detect URI schemes
7         and parse the full URI.
8         (has_uri_scheme): New function, stolen from the old
9         gtkfilesystemgnomevfs.c.
10
11         Patch by Carlos Garnacho <carlos@imendio.com>:
12
13         * gtk/gtkfilechooserentry.c (discard_current_folder): New
14         function, factored out for when we need to get rid of the
15         current_folder.
16         (gtk_file_chooser_entry_dispose): Use discard_current_folder().
17         (finished_loading_cb): Fix prototype.
18         (load_directory_get_folder_callback): Discard the completion
19         store, as well as clearing the completion feedback, if we find an
20         error while loading the folder.  Also, use
21         discard_current_folder().
22         (reload_current_folder): Use discard_current_folder().
23
24 2009-01-20  Matthias Clasen  <mclasen@redhat.com>
25
26         * gtk/gtk.symbols:
27         * gtk/gtkaction.[hc]: Add setters and getters for GtkAction
28         properties, in preparation for bug 560228.
29
30 2009-01-21  Christian Dywan  <christian@twotoasts.de>
31
32         Bug 567413 – GtkComboBoxEntry doesn't emit "changed" signal
33         on entry editing
34
35         * gtk/gtkcombobox.c (gtk_combo_box_set_active): Return only if index
36         is set. Patch by Carl-Anton Ingmarsson.
37
38 2009-01-20  Torsten Schoenfeld  <kaffeetisch@gmx.de>
39
40         * gtk/gtkstyle.c: Add a "Since: 2.16" tag to gtk_style_get.
41
42 2009-01-20  Matthias Clasen  <mclasen@redhat.com>
43
44         Bug 565656 – Add marks to scales
45
46         * gtk/gtkrange.[hc]: Add internal api to define 'stop values'
47         that have a little resistance when dragging the slider over it.
48
49         * gtk/gtk.symbols:
50         * gtk/gtkscale.[hc] (gtk_scale_add_mark): New function to add
51         a 'mark' to a scale, which will draws a tick, plus optionally
52         some text, and makes the value a stop value.
53         (gtk_scale_clear_values): Removes all marks.
54
55         * tests/testscale.c: Test for marks on scales
56         * tests/Makefile.am: Integrate it
57
58 2009-01-19  Matthias Clasen  <mclasen@redhat.com>
59
60         * gtk/gtkentry.c:
61         * gtk/gtkfilechooserentry.c:
62         * gtk/gtktextview.c: Replace several implementation of
63         blank cursor setting by GDK_BLANK_CURSOR.
64
65 2009-01-19  Matthias Clasen  <mclasen@redhat.com>
66
67         * gdk/gdkcursor.c:
68         * gdk/gdkwindow.c: Update docs on how to create blank cursors.
69
70 2009-01-19  Matthias Clasen  <mclasen@redhat.com>
71
72         Cache cursors to avoid libXcursor theme lookup overhead.
73         Patch by David Alan Gilbert.
74
75         * gdk/gdkcursor.h: Add a GDK_BLANK_CURSOR cursor type.
76
77         * gdk/x11/gdkcursor-x11.c: Cache font cursors and named cursors.
78
79         * gdk/x11/gdkprivate-x11.h:
80         * gdk/x11/gdkcdisplay-x11.c: Remove cached cursors when a 
81         display if finalized.
82
83 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
84
85         Bug 568263 – gtk can't recognize the wrong X Selection TARGETS' 
86         type "TARGETS" by java applications
87
88         * gtk/gtkselection.c (gtk_selection_data_get_targets): Accept
89         a type of TARGETS instead of ATOM, too. Based on a patch by 
90         Peng Wu. 
91
92 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
93
94         Bug 568233 – Wrong statement about GtkEntry's "activate" signal
95
96         * gtk/gtkentry.c:
97         * gtk/gtklabel.c:
98         * gtk/gtktextview.c: Correct some copy-and-paste mistakes in
99         keybinding signal docs. Pointed out by Pascal Terjan.
100
101 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
102
103         * gtk/gtk.symbols:
104         * gtk/gtkentry.[hc]: Add properties and getters for icon tooltips.
105
106 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
107
108         Bug 563280 – stock items & translation context
109
110         * gtk/gtkstock.c: Solve the msgctxt problem a bit more
111         elegantly, and add some hints about this to the docs of
112         gtk_stock_set_translate_func. Proposed by Christian Persch
113
114 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
115
116         Bug 568196 – Please change context of Forward stock label
117
118         * gtk/gtkstock.c: Reinstate separate translation contexts for
119         navigation and media labels (these were lost in the transition
120         to msgctxt. Pointed out by Gabor Kelemen.
121
122 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
123
124         Bug 567887 – gtk_entry_get_storage_type() should be 
125         gtk_entry_get_icon_storage_type()
126
127         * gtk/gtk.symbols:
128         * gtk/gtkentry.[hc]: Use the last chance to get the api right,
129         and rename things for consistency, requested by Murray Cumming. 
130         In detail,
131         gtk_entry_get_stock -> gtk_entry_get_icon_stock
132         gtk_entry_get_pixbuf -> gtk_entry_get_icon_pixbuf
133         gtk_entry_get_gicon -> gtk_entry_get_icon_gicon
134         gtk_entry_get_storage_type -> gtk_entry_get_icon_storage_type
135         ::prelight -> ::icon-prelight
136         ::pixbuf-primary -> ::primary-icon-pixbuf
137         ::stock-primary -> ::primary-icon-stock
138         ::icon-name-primary -> ::primary-icon-name
139         ::gicon-primary-> ::primary-icon-gicon
140         ::storage-type-primary -> ::primary-icon-storage-type
141         ::activatable->primary -> ::primary-icon-activatable
142         ::sensitive-primary -> ::primary-icon-sensitive
143         (and similar for secondary properties)
144
145 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
146
147         Bug 567655 – gtk_status_icon_set_tooltip_text and 
148         gtk_status_icon_set_tooltip_markup should use gchar*
149
150         * gtk/gtkstatusicon.h: Use "const gchar*" in new tooltip api.
151         Pointed out by Torsten Schoenfeld.
152
153 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
154
155         * demos/gtk-demo/search_entry.c: End the search if the window
156         is closed.
157
158         * demos/gtk-demo/search_entry.c:
159         * demos/gtk-demo/entry_completion.c: Group the entry examples
160         under "Entry".
161
162 2009-01-18  Christian Dywan  <christian@twotoasts.de>
163
164         Remove a redundant include from gtktoolbar.c
165
166         * gtk/gtktoolbar.c: Remove second inclusion of gtktoolbar.h.
167         Patch by Enrico Tröger.
168
169 2009-01-16  Cody Russell  <bratsche@gnome.org>
170
171         Bug 567944 – [Win32] Sorted treeview columns can be unreadable
172
173         * modules/engines/ms-windows/msw_style.c: Draw selected treeview
174         cells according to treeview focus, but ignore whether it is in
175         a sorted column or not.  Otherwise the intersection of a selected
176         row and a sorted column looks very strange if the treeview does
177         not have focus.
178
179 2009-01-16  Daniel Elstner  <danielk@openismus.com>
180
181         * modules/input/gtkimcontextmultipress.[ch]: Remove the namespace
182         prefix from functions defined locally only.  Clean up the code and
183         change indentation to match the GTK+ coding style.
184         (_GtkImContextMultipress::key_sequences): Replace array of pointers
185         by GHashTable.  Adapt the implementation accordingly.
186         (passthrough_enabled_for_window): Remove.  The passthrough hack is
187         no longer necessary thanks to the recently introduced "im-module"
188         property of GtkEntry and GtkTextView.
189         (load_config): Rework to implement an improved configuration file
190         format.  Just fetch all keys of the group instead of expecting the
191         keys to be named a certain way.  This also allows interpreting the
192         config key itself as the GDK key name to bind the character sequence
193         to, thereby making it independent of the sequence itself.
194
195         * modules/input/im-multipress.conf: New example configuration using
196         the new syntax.  The example sequences are now bound to the numeric
197         keypad and imitate the behavior of a standard mobile phone.
198
199 2009-01-15  Murray Cumming  <murrayc@murrayc.com>
200
201         * gtk/gtkimcontext.c: documentation description: Mention the various 
202         properties and the environment variable, with links to their 
203         documentation.
204         * gtk/gtksettings.c:
205         * gtk/gtktextview.c: Make the im-module property documentation more 
206         expansive.
207
208 2009-01-15  Diego Escalante Urrelo  <diegoe@gnome.org>
209
210         Bug 562701 – GtkEntryCompletion popup sizes its rows wrong
211         when they span for more than one line.
212
213         Don't assume actions and results have equal height, this causes
214         negative size requisitions when results are more than one
215         line tall.
216
217         * gtk/gtkentrycompletion.c: change the formula used to calculate
218         the size of the completion popup.
219
220 2009-01-14  Federico Mena Quintero  <federico@novell.com>
221
222         Remember the file chooser's geometry across invocations.
223
224         * gtk/gtkfilechoosersettings.h (struct _GtkFileChooserSettings):
225         New fields geometry_x, geometry_y, geometry_width, geometry_height.
226         (_gtk_file_chooser_settings_get_geometry): New prototype.
227         (_gtk_file_chooser_settings_set_geometry): New prototype.
228
229         * gtk/gtkfilechoosersettings.c (GEOMETRY_X_KEY, GEOMETRY_Y_KEY,
230         GEOMETRY_WIDTH_KEY, GEOMETRY_HEIGTH_KEY): New key names.
231         (ensure_settings_read): Read the geometry keys.
232         (_gtk_file_chooser_settings_save): Save the geometry keys.
233         (_gtk_file_chooser_settings_init): Initialize the geometry keys to
234         "don't have this value".
235         (_gtk_file_chooser_settings_get_geometry): New public function.
236         (_gtk_file_chooser_settings_set_geometry): New public function.
237
238         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_map):
239         Don't change the default size in ::map() so we don't flicker...
240         (gtk_file_chooser_default_realize): ... so do it in ::realize()
241         instead, when the window is not yet visible.  This avoids a
242         dialog-that-resizes when you first pop up the file chooser.
243         (emit_default_size_changed): Just emit the signal; don't check for
244         the widget's state so we can be emitted during the initial
245         ::realize() when we are not mapped yet.
246         (update_preview_widget_visibility): Only emit default_size_changed
247         if the widget is not mapped, to avoid resizing the dialog while it
248         is visible.
249
250         * gtk/gtkfilechooserdialog.c
251         (file_chooser_widget_default_size_changed): Simply resize the
252         dialog to the default size without any fancy clamping.  Also,
253         leave in place ifdef-ed out code to restore the file chooser's
254         position in addition to its size.  The code to restore the
255         position doesn't quite work yet, but we'll leave it in as a
256         reference.
257
258         * gtk/gtkfilechooserdefault.c (save_dialog_geometry): New function.
259         (settings_save): Save the dialog's geometry.
260         (gtk_file_chooser_default_get_default_size): Load the geometry
261         from the settings.  If it was already saved, return that instead
262         of computing an ad-hoc size.
263
264 2009-01-13  Matthias Clasen  <mclasen@redhat.com>
265
266         Bug 450716 – New API to change global IM
267
268         Requested by Daniel Elstner.
269
270         * gtk/gtk.symbols:
271         * gtk/gtkimmulticontext.[hc] (gtk_im_multicontext_set_context_id):
272         New function to set the context id on a GtkIMMulticontext.
273
274         * gtk/gtkentry.c:
275         * gtk/gtktextview.c: Add a ::im-module property that can be
276         set to override the global setting for the im module to be used.
277
278 2009-01-13  Christian Dywan  <christian@imendio.com>
279
280         Bug 566532 – GtkScaleButton implementation of GtkOrientable
281
282         * gtk/gtk.symbols:
283         * gtk/gtkscalebutton.c (gtk_scale_button_class_init),
284         (gtk_scale_button_set_property):
285         * gtk/gtkscalebutton.h: Deprecate gtk_scale_button_get_orientation
286         in favour of implementing GtkOrientable. Patch by Bruce Cowan.
287
288 2009-01-13  Tor Lillqvist  <tml@iki.fi>
289
290         Bug 164002 - query scripts don't work uninstalled on windows
291
292         * gtk/gtkmain.c (_gtk_get_libdir): If the gtk DLL is in a ".libs"
293         folder, assume we are running uninstalled, and use the
294         configure-time GTK_LIBDIR.
295
296 2009-01-12  Matthias Clasen  <mclasen@redhat.com>
297
298         * NEWS: Refer to tray icon spec, instead of a random email.
299
300 2009-01-12  Matthias Clasen  <mclasen@redhat.com>
301
302         * gtk/gtkwindow.c (gtk_window_set_icon_name): Don't cause lots
303         of X traffic when the icon name doesn't actually change. Some
304         apps like to reset their window icon frequently, without actually
305         changing the icon name...
306
307 2009-01-12  Paolo Borelli  <pborelli@katamail.com>
308
309         Bug 492794 – Pasting external text at end of view yields wrong
310         scrolling to mark
311
312         * gtk/gtktextbuffer.[ch]:
313         * gtk/gtktextview.c:
314         Add a "paste-done" signal and use it to propelry scroll the
315         view at the end of the pasted text in the case of an async
316         paste. Patch by Ignacio Casal Quintero based on a patch by
317         Yevgen Muntyan.
318
319 2009-01-12  Tor Lillqvist  <tml@iki.fi>
320
321         * gdk/gdk.c (gdk_arg_debug_cb) (gdk_arg_no_debug_cb): A
322         GOptionArgFunc should return gboolean and take also a GError
323         pointer parameter, so make these two functions do that. Return
324         FALSE (and set the GError) if the parsing of the debug string
325         failed completely. Note that g_parse_debug_string() doesn't really
326         have any way to return parsing status, and accepts partially
327         incorrect strings, though.
328
329 2009-01-12  Claudio Saavedra  <csaavedra@igalia.com>
330
331         Bug 567468 – no check for trailing != NULL in
332         gtk_text_layout_get_iter_at_position()
333
334         * gtk/gtktextlayout.c: (gtk_text_layout_get_iter_at_position):
335         Check for trailing to be non-NULL.
336         * gtk/gtktextview.c: (gtk_text_view_get_iter_at_position): document
337         that trailing may be NULL.
338
339 2009-01-11  Tor Lillqvist  <tml@iki.fi>
340
341         Bug 523554 - Copy from GIMP to Word broken
342
343         * gdk/win32/gdkselection-win32.c
344         (_gdk_win32_selection_convert_to_dib): The DIB stored in the
345         Windows Clipboard was for some unknown reason truncated by one
346         byte. Don't do that.
347
348 2009-01-11  Matthias Clasen  <mclasen@redhat.com>
349
350         Bug 567024 – gtktoolbutton doesn't create right proxy menu item 
351         image with GIcon
352
353         * gtk/gtktoolbutton.c: Properly create a menu proxy from a GIcon.
354         Patch by Christian Persch
355
356         * tests/testtoolbar.c: Add an example with a GIcon
357
358 2009-01-09  Christian Dywan  <christian@imendio.com>
359
360         Fail in gdk_window_new if _gdk_window_new failed
361
362         * gdk/gdkwindow.c (gdk_window_new): Add g_return_val_if_fail
363         in case _gdk_window_new is NULL. Approved by Tim Janik
364
365 2009-01-08  Matthias Clasen  <mclasen@redhat.com>
366
367         Bug 566733 – Add GIcon to GtkAction, GtkToolButton
368
369         * gtk/gtkaction.c: Add a ::gicon property to GtkAction and set the 
370         icon from it if specified. The stock icon is preferred if a stock id 
371         is given. Based on a patch by A. Walton
372
373 2009-01-04  Matthias Clasen  <mclasen@redhat.com>
374
375         * gtk/stock-icons/{16,24}/gtk-caps-lock-warning.png: New icons
376         * gtk/gtkstock.h: Add GTK_STOCK_CAPS_LOCK_WARNING.
377         * gtk/gtkiconfactory.c (get_default_icons): Register the stock icon.
378         * gtk/gtkentry.c (show_capslock_feedback): Use the new stock icon.
379
380 2009-01-05  Tor Lillqvist  <tml@novell.com>
381
382         Bug 566628 - gdk_display_close always asserts on win32
383
384         * gdk/win32/gdkdisplay-win32.c
385         (_gdk_windowing_set_default_display): Allow also a NULL parameter
386         in the g_assert(). Still don't actually do anything in this
387         function, though.
388
389 2009-01-04  Matthias Clasen  <mclasen@redhat.com>
390
391         Bug 566568 – gtk_tree_model_get_value docs typo
392
393         * gtk/gtktreemodel.c (gtk_tree_model_get_value): Fix a typo
394         in the docs, pointed out by Christian Persch.
395
396 2009-01-04  Matthias Clasen  <mclasen@redhat.com>
397
398         Bug 566391 – gtk_about_dialog_set_url_hook should activate 
399         pre-existing website links
400
401         * gtk/gtkaboutdialog.c: Make setting website, website-label and
402         url hook work independent of their order. Reported by Steven
403         Sheehy.
404
405 2009-01-03  Matthias Clasen  <mclasen@redhat.com>
406
407         * gdk/x11/gdkscreen-x11.h:
408         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window): Recheck
409         _NET_SUPPORTING_WM_CHECK every now and then to avoid getting
410         stuck on the id of a former wmcheck window that got reused by
411         another client (see RH bug 471927)
412
413 2009-01-03  Matthias Clasen  <mclasen@redhat.com>
414
415         * gtk/gtktreesortable.c: Improve the docs
416
417         * gtk/gtktreemodelsort.c: Don't assert when using the "unsorted"
418         sort column id.
419
420 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
421
422         Bug 565998 – configure script doesn't check for cairo-xlib.pc
423
424         * configure.in: Check for cairo-xlib when looking for
425         gdk dependencies. Requested by Alberto Ruiz
426
427 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
428
429         Bug 566334 – compile failure for gtk+ on Mac OS X
430
431         * gtk/gtkstatusicon.c: Fix the build on OS X. 
432         Reported by Bart Cortooms.
433
434 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
435
436         Bug 566083 – Icon pixmap hardcoded during DnD
437
438         * gtk/gtkwidget.c:
439         * gtk/gtkentry.c: Add docs about using ::drag-begin for setting
440         a custom drag icon. Reported by Xan Lopez
441
442 2009-01-01  Matthias Clasen  <mclasen@redhat.com>
443
444         * configure.in: Bump version
445
446         * === Released 2.15.0 ===
447
448 2009-01-01  Matthias Clasen  <mclasen@redhat.com>
449
450         * gtk/gtkentry.c (gtk_entry_set_icon_sensitive): Fix default
451         value
452
453         * gtk/tests/builder.c: Clean up asserts, make domain
454         test work with current GtkBuilder behaviour.
455
456         * Makefile.decl: Start Xvfb with -ac -noreset to try
457         and get the gui tests working.
458
459 2009-01-01  Matthias Clasen  <mclasen@redhat.com>
460
461         * gtk/gtk.symbols: Add a few forgotten symbols
462         * gtk/gtkprintoperation.c:
463         * gtk/gtktrayicon-x11.c: Make some functions static
464
465 2008-12-31  Matthias Clasen  <mclasen@redhat.com>
466
467         * NEWS: Updates
468
469 2008-12-31  Matthias Clasen  <mclasen@redhat.com>
470
471         * gtk/gtk.symbols:
472         * gtk/gtkruler.[hc]: Some more
473
474 2008-12-31  Matthias Clasen  <mclasen@redhat.com>
475
476         * gtk/gtk.symbols:
477         * gtk/gtkpaned.[hc]:
478         * gtk/gtkscale.[hc]:
479         * gtk/gtkscrollbar.[hc]: 
480         * gtk/gtkseparator.[hc]: Keep these all abstract for now.
481
482 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
483
484         * gtk/gtkentry.c: Rename the icon signals to ::icon-press and
485         ::icon-release to avoid clashes with the existing SexyIconEntry
486         signals. Also annotate the GdkEvent parameters as static-scope.
487
488         * tests/testentryicons.c: Adapt
489         * demos/gtk-demo/search-entry.c: Adapt
490         
491 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
492
493         Bug 565846 – "va_end(args);" should be added into gtk_tree_store_new
494
495         * gtk/gtktreestore.c (gtk_tree_store_new): Add a missing
496         va_end() call. Pointed out by Jiwon Lee.
497
498 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
499
500         * gtk/gtkentry.c: Code cleanups; get rid of get_text_area_size,
501         replace get_icon_allocation by get_icon_allocations, don't
502         pass allocation to place_windows; other stylistic changes to 
503         the icon-related code.
504
505 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
506
507         * gtk/gtkentry.c: Avoid size allocation loops.
508
509 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
510
511         * gtk/gtkentry.c: Fix errors in property definitions and
512         get_property implementation.
513
514 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
515
516         * gtk/gtkentry.c: Redo the Caps Lock warning using an icon.
517
518 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
519
520         Bug 558694 – Paned window splitter keynav broken
521
522         * gtk/gtkpaned.c (get_child_panes): Don't add unrealized
523         widgets.
524
525 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
526
527         * gtk/gtkstyle.c:
528         * gtk/gtkmenutooltbutton.c:
529         * gtk/gtkprintoperationpreview.c: Doc additions
530
531 2008-12-29  Matthias Clasen  <mclasen@redhat.com>
532
533         * gtk/gtkiconview.c:
534         * gtk/gtklabel.c:
535         * gtk/gtkentry.c:
536         * gtk/gtktextview.c:
537         * gtk/gtkeditable.c: 
538         * gtk/gtktextbuffer.c: Doc additions.
539
540 2008-12-29  Tor Lillqvist  <tml@novell.com>
541
542         * gtk/gtk.symbols: Add missing symbols from gtkentry.c.
543
544 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
545
546         * gtk/gtkwindow.c: 
547         * gtk/gtkstyle.c: Doc additions
548
549 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
550
551         * gtk/gtk[hv]scrollbar.c: Document gtk_[hv]scrollbar_new.
552
553 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
554
555         * gtk/gtkwidget.c: Document gtk_mnemonic_activate.
556
557 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
558
559         * gtk/gtktextlayout.c: Un-doc-commentize non-public api
560
561 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
562
563         * gtk/gtkprogress.h: Fix a typo
564
565 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
566
567         * gtk/gtkhsv.c:
568         * gtk/gtkentry.c: Doc fixes
569
570 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
571
572         * gtk/gtkwidget.c:
573         * gtk/gtktextutil.c: Un-doc-commentize non-exported functions
574         to make gtk-doc happy.
575
576 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
577
578         * gtk/gtkscale.c:
579         * gtk/gtkimagemenuitem.c: Doc fixes
580
581 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
582
583         * gtk/gtkeditable.h: Match parameter names to make gtk-doc happy.
584
585 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
586
587         * tk/gtkfontsel.c: Merge docs inline.
588
589 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
590
591         * gtk/gtkprintsettings.c:
592         * gtk/gtkbindings.c:
593         * gtk/gtkstyle.c: Doc fixes
594
595 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
596
597         * gtk/gtkscrolledwindow.c: 
598         * gtk/gtkscale.c: Merge docs inline.
599
600 2008-12-28  Ryan Lortie  <desrt@desrt.ca>
601
602         small fix for "Paned Window Widgets" example
603
604         * docs/tutorial/gtk-tut.sgml: use gtk_container_add rather than
605         add_with_viewport for putting a GtkTreeView into a ScrolledWindow
606
607         Spotted by Benjamin Herrenschmidt
608
609 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
610
611         * gtk/gtkimmodule.c:
612         * gtk/gtkseparatortoolitem.c: Doc fixes
613
614         * gtk/gtkfontsel.c:
615         * gtk/gtkeditable.c: Merge docs inline.
616
617 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
618
619         * gtk/gtkhsv.c:
620         * gtk/gtkwidget.c: 
621         * gtk/gtkaccelgroup.c: Documentation fixes
622
623         * gtk/gtkstatusicon.c:
624         * gtk/gtkentry.c:
625         * gtk/gtkeditable.[hc]: Make parameter names match to make gtk-doc
626         happy.
627
628 2008-12-27  Matthias Clasen  <mclasen@redhat.com>
629
630         * gtk/gtkentry.c: Expand the docs some more.
631
632 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
633
634         * gtk/gtkentry.c: Don't emit ::icon-pressed on nonactivatable
635         icons. Fix up docs to match actual api.
636
637         * tests/testentryicons.c: Reshuffle tests a bit. Add a DND test.
638
639 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
640
641         * gtk/gtkentry.c: Fix interaction between icons and widget sensitivity.
642         Also fix a few typos.
643
644         * tests/testentryicons.c: Add property editors.
645         * tests/Makefile.am: Glue
646
647 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
648
649         * gtk/gtkentry.c: Allow builtin icons when loading themed icons,
650         and don't leak a GtkIconInfo.
651
652 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
653
654         * gtk/gtkentry.c: Emit ::icon-pressed regardless which button was
655         pressed. Also make it explicit in the signal signature that the
656         position parameter is a GtkEntryIconPosition.
657
658 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
659
660         * gtk/gtkentry.c: Emit property notification for the text-length
661         property.
662
663 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
664
665         * demos/gtk-demo/search_entry.c: Add a demo for new entry features.
666         * demos/gtk-demo/Makefile.am: Glue
667
668 2008-12-25  Matthias Clasen  <mclasen@redhat.com>
669
670         * gdk/gdkapplaunchcontext.c:
671         * gdk/gdkkeys.c:
672         * gdk/x11/gdkdnd-x11.c:
673         * gdk/x11/gdkkeyx-x11.c:
674         * gdk/x11/gdktestutils-x11.c: Typo fixes and other small
675         doc improvements.
676
677 2008-12-23  Li Yuan  <li.yuan@sun.com>
678
679         * gtk/gtkiconview.c: (gtk_icon_view_accessible_model_row_changed):
680         Bug #549251. No need to set name if there is no a11y item object.
681
682 2008-12-21  Yair Hershkovitz  <yairhr@gmail.com>
683
684         Bug 565203: RTL locales: icons are misplaced when horizontal 
685                     gtkiconview is contained in a gtkscrolledwindow.
686
687         * gtk/gtkiconview.c (gtk_icon_view_layout_single_row):
688         Fix horizontal icon positions when in RTL locale.
689
690 2008-12-19  Matthias Clasen  <mclasen@redhat.com>
691
692         * NEWS: Update
693
694 2008-12-19  Matthias Clasen  <mclasen@redhat.com>
695
696         Bug 564881 – gtkstatusicon.c: 'event' bug again
697
698         * gtk/gtkstatusicon.c (button_callback): Fix the build.
699         Patch by Christian Dywan.
700
701 2008-12-19  Cody Russell  <bratsche@gnome.org>
702
703         Bug 85292 – add an icon to gtkentry
704
705         * gtk/gtkmarshalers.list: Add VOID:INT,BOXED
706         * tests/testentryicons.c: Initial icon entry test
707         * tests/Makefile.am: Add testentryicons
708         * gtk/gtkentry.[ch]: Add API for setting primary/secondary icons
709         and other features related to them.
710         
711 2008-12-19  Marek Kasik  <mkasik@redhat.com>
712
713         Bug 339318 - Allow page rendering to (optionally) happen in a thread
714
715         * gtk/gtk.symbols: API change
716         * doc/reference/gtk/gtk-sections.txt: API change
717         * gtk/gtkprintoperation-private.h
718         * gtk/gtkprintoperation.h
719         * gtk/gtkprintoperation.c: Adds 2 new functions
720            gtk_print_operation_set_defer_drawing()
721              - Sets up the GtkPrintOperation to wait for calling of
722                gtk_print_operation_draw_page_finish() from application. It can
723                be used for drawing page in another thread.
724                This function must be called in the callback of "draw-page"
725                signal.
726            gtk_print_operation_draw_page_finish()
727              - Signalize that drawing of particular page is complete.
728                It is called after completion of page drawing (e.g. drawing
729                in another thread).
730                If gtk_print_operation_set_defer_drawing() was called before,
731                then this function has to be called by application. In another
732                case it is called by the library itself.
733
734 2008-12-15  Matthias Clasen  <mclasen@redhat.com>
735
736         * gtk/gtkprintunixdialog.c: Don't export emit_ok_response
737
738 2008-12-15  Tomas Bzatek  <tbzatek@redhat.com>
739
740         * gtk/gtkfilechooserdefault.c: (list_row_activated):
741         * gtk/gtkfilesystem.c: (_gtk_file_info_consider_as_directory):
742         Mask G_FILE_TYPE_SHORTCUT as a directory (#561494)
743
744 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
745
746         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
747         Mount the enclosing volume if the folder we're switching to is not
748         mounted. Patch by Tomas Bzatek, based on work by Carlos Garnacho
749
750 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
751
752         Bug 561494 – FileChooser network browsing and authentication support
753
754         * gtk/gtkfilesystem.[hc] (_gtk_file_info_consider_as_directory): 
755         Privately export this method. It classifies directories and mountables
756         the same.
757
758         * gtk/gtkfilesystem.c (enclosing_volume_mount_cb): Silently drop
759         G_IO_ERROR_ALREADY_MOUNTED error for gvfs backends without visible
760         mounts.
761
762         * gtk/gtkfilesystemmodel.c:
763         * gtk/gtkfilechooserbutton.c:
764         * gtk/gtkfilechooserentry.c: 
765         * gtk/gtkfilechooserdefault.c: Use the new function instead of 
766         direct checks for G_FILE_TYPE_DIRECTORY throughout.
767
768 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
769         
770         Bug 562579 – Remove error dialog when directory does not exist
771
772         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
773         Don't show an error dialog when changing to a non-existing folder,
774         since this is ususally just an annoyance. 
775
776 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
777
778         Bug 556233 – local-only causes G_IS_FILE warning
779
780         * gtk/gktfilechooserdefault.c (set_local_only): Avoid a warning
781         in tests. Patch by Christian Dywan
782
783 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
784
785         Bug 563158 – CellRendererProgress pulsing and progressing rows can 
786         not be used together
787
788         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_pulse):
789         Don't try to keep state in a cell renderer between two paint
790         calls. It doesn't work. Patch by Kristian Mueller
791
792 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
793
794         Bug 555560 – gtk_combo_box_set_active fails with no model
795         
796         * gtk/gtkcombobox.c: Allow out-of-order setting of model and active.
797         Patch by Christian Dywan
798
799 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
800
801         Bug 558306 – Cannot build gdk (gtk+ 2.14.4) on Solaris 8
802
803         * gdk/x11/gdktestutils-x11.c (gdk_test_simulate_button):
804         Remove a C99ism. Pointed out by Eric Lamarque
805
806 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
807
808         Bug 549251 – GTK icon view accessible issue.
809
810         * gtk/gtkiconview.c (gtk_icon_view_accessible_model_row_changed):
811         Handle separate append/set for rows.  Patch by Li Yuan
812
813 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
814
815         Bug 556839 – Crash when opening a link
816
817         * gtk/gtkstatusicon.c (gtk_status_icon_finalize): Destroy the
818         image too. Patch by Carlos Garcia Campos
819
820 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
821
822         Bug 563751 – xatom cache is prefilled too late
823
824         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize the
825         XAtom cache earlier. Patch by Christian Persch
826
827 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
828
829         Bug 564212 – gtk_icon_view_accessible_model_rows_reordered explain 
830         new_order in the wrong way
831
832         * gtk/gtkiconview.c (gtk_icon_view_accessible_model_rows_reordered):
833         Use the new order correctly.  Patch by Li Yuan
834
835 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
836
837         Bug 563835 – Typo in gtk_widget_has_screen() docs
838
839         * gdk/directfb/gdkwindow-directfb.c:
840         * gdk/gdkwindow.c:
841         * gdk/x11/gdkwindow-x11.c:
842         * gtk/gtkmenushell.c:
843         * gtk/gtkwidget.c:
844         * gtk/tests/builder.c:
845         * tests/testdnd.c: s/heirarchy/hierarchy/ in docs and comments.
846         Pointed out by Wouter Bolsterlee
847
848 2008-12-12  Matthias Clasen  <mclasen@redhat.com>
849
850         Bug 564066 – Crash in gtk_rc_parse_default_files
851
852         * gtk/gtkrc.c (gtk_rc_parse_default_files): Handle being called
853         early. Bug report by Andrés G. Aragoneses
854
855 2008-12-12  Matthias Clasen  <mclasen@redhat.com>
856
857         * gtk/gtkmountoperation.c: Set an empty title on password dialogs.
858         Pointed out by Máirín Duffy.
859
860 2008-12-11  Sven Herzberg  <sven@imendio.com>
861
862         Document the "set-scroll-adjustments" signal
863
864         Reviewed by Kristian Rietveld.
865
866         * gtk/gtkiconview.c,
867         * gtk/gtklayout.c,
868         * gtk/gtktextview.c,
869         * gtk/gtktreeview.c,
870         * gtk/gtkviewport.c: added proper documentation for the signal
871
872 2008-12-11  Daniel Elstner  <danielk@openismus.com>
873
874         Bug 563994 – Input method module interface not documented
875
876         * gtk/gtkimcontext.h: Add public/private markers.
877         * gtk/gtkimcontext.c: Add section documentation which explains how
878         to add a new input method module to GTK+.  Document the signals and
879         virtual functions of GtkIMContextClass.
880         * gtk/gtkimmodule.c: Document struct GtkIMContextInfo.
881         * docs/reference/gtk/gtk-sections.txt: Add GtkIMContextClass and
882         GtkIMContextInfo to section GtkIMContext.
883         * docs/reference/gtk/Makefile.am (IGNORE_HFILES): Remove
884         gtkimmodule.h from the list in order to pick up GtkIMContextInfo.
885         * docs/reference/gtk/tmpl/gtkimcontext.sgml: Remove file from
886         repository since all the hand-edited content has been migrated to
887         source file comments.
888
889 2008-12-10  Matthias Clasen  <mclasen@redhat.com>
890
891         Bug 563991 – gtk_file_chooser_button_new_with_backend is deprecated
892         -- but what should be used instead?
893
894         * gtk/gtkfilechooserbutton.c: Enhanced deprecation annotation.
895
896 2008-12-10  Daniel Elstner  <danielk@openismus.com>
897
898         Maintenance of Multipress input method by Openismus GmbH:
899
900         * modules/input/gtkimcontextmultipress.[ch]: Clean up the code
901         a bit to follow the GTK+ coding style more closely.  Fix the code
902         to emit "preedit-start" and "preedit-end", too, rather than only
903         "preedit-changed".
904         (GTK_IM_CONTEXT_MULTIPRESS*): Rename incorrectly spelled macros
905         gtk_im_context_multipress*. Shouldn't break API or ABI as it's
906         only used internally.
907         * modules/input/immultipress.c: More cleanup,
908         * modules/input/README.multipress: ditto.
909
910 2008-12-09  Michael Natterer  <mitch@imendio.com>
911
912         * gdk/gdk.symbols: add missing #ifndef GDK_DISABLE_DEPRECATED.
913
914 2008-12-09  Michael Natterer  <mitch@imendio.com>
915
916         * gtk/gtkcontainer.c (struct PackingPropertiesData): add missing
917         semicolon.
918
919         * gtk/gtkcontainer.c (attributes_text_element): "value" is a
920         gchar*, not const gchar*.
921
922 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
923
924         Bug 546378 – GtkAssistant page title is not translatable
925
926         * gtk/gtkbuilderparser.c: Make gtk_builder_get_translation_domain()
927         useful for subparsers.
928
929         * gtk/gtkcontainer.c: Make the child property parser support
930         translatable child properties. Patch by Antti Kaijanmäki
931  
932 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
933
934         Bug 554274 – Add default hook for GtkLinkButton
935
936         * gtk/gtklinkbutton.c: Call gtk_show_uri() if no uri hook has
937         been set. Patch by Emmanuele Bassi
938
939 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
940
941         Bug 559325 – documentation for gdk_display_get_window_at_pointer() 
942 :       is wrong
943
944         * gdk/gdkdisplay.c (gdk_display_get_window_at_pointer): Correct
945         the documentation. Patch by Paul Davis
946
947 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
948
949         Bug 563285 – test print backend does not compile
950
951         * modules/printbackends/test/gtkprintbackendtest.c: Clean up
952         includes. 
953
954 2008-12-07  Behdad Esfahbod  <behdad@gnome.org>
955
956         Bug 563547 – Update gdkx11 atom precache table
957
958         * gdk/x11/gdkdisplay-x11.c: Add more atoms to precache.
959
960 2008-12-05  Michael Natterer  <mitch@imendio.com>
961
962         Bug 546285 – Allow GtkEntry to draw progress
963
964         * gtk/gtkentry.[ch]: add new API similar to GtkProgressBar which
965         allows to set the entry's progress_fraction, its progress_pulse_step
966         and to let the entry's progress pulse.
967
968         * gtk/gtk.symbols: updated.
969
970         * tests/testgtk.c: add progress demo code to the "Entry" window.
971
972 2008-12-04  Johan Dahlin  <jdahlin@async.com.br>
973
974         * gtk/gtkstatusicon.c:
975         Add missing space in gtk-doc deprecated syntax
976
977 2008-12-03  Simos Xenitellis  <simos@gnome.org>
978
979         Bug 557420 – Some compose sequences don't work anymore (or only in
980         a specific order)
981
982         * gtk/gtkimcontextsimple.c: Update of table size, keysym boundary,
983         to match the gtkimcontextsimpleseqs.h table.
984         * gtk/gtkimcontextsimpleseqs.h: Update with older gtk+ compose
985         sequences that went missing due to table update with upstream.
986         * gtk/compose-parse.py: Updated to include gtk-compose-lookaside.txt
987         * gtk/gtk-compose-lookaside.txt: Older gtk+ compose sequences that
988         are not found in the X.Org Compose file.
989
990 2008-12-03  Sven Herzberg  <sven@imendio.com>
991
992         Bug 562998 – GtkFontButton documentation improvements
993
994         * gtk/gtkfontbutton.c: mention the way the font string should be used.
995         Patch by Sven Herzberg and Nelson Benitez
996
997 2008-12-03  Marek Kasik  <mkasik@redhat.com>
998
999         Bug 559914 – eog doesn't apply paper setup.
1000
1001         * gtk/gtkpapersize.c: Call the gtk_paper_size_new_from_ppd() with width
1002         and height in points.
1003
1004 2008-12-02  Carlos Garcia Campos  <carlosgc@gnome.org>
1005
1006         Bug 562878 – password save incorrectly set in gtkmountoperation
1007
1008         * gtk/gtkmountoperation.c (remember_button_toggled),
1009         (gtk_mount_operation_ask_password): Remember the password save
1010         flags only when the radio button becomes active. Set also the
1011         default state of the radio buttons depending on the current value
1012         of password save flags. 
1013         
1014 2008-12-01  Matthias Clasen <mclasen@redhat.com>
1015
1016         Bug 555334 – connected server feature
1017
1018         * gtk/gtkfilesystem.c (get_volumes_list): Filter out shadow mounts.
1019         Patch by David Zeuthen.
1020
1021 2008-12-01  Matthias Clasen <mclasen@redhat.com>
1022
1023         * gtk/gtkentry.c: Revert an accidental change that sneaked
1024         in with the last commit.
1025
1026 2008-12-01  Paul Bolle  <pebolle@tiscali.nl>
1027
1028         Bug 562817 – GtkDialog: typo
1029
1030         * gtk/gtkdialog.c: Fix typo
1031
1032 2008-11-29  Matthias Clasen  <mclasen@redhat.com>
1033
1034         Bug 554453 – "typeahead find" widget of GtkTreeView appears on 
1035         wrong monitor in a multi-head environment
1036
1037         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
1038         Make sure the typeahead window follows screen changes of the
1039         treeview. Noticed by Rainer Stransky
1040
1041 2008-11-30  Christian Dywan  <christian@imendio.com>
1042
1043         Bug 559622 – GdkDevice test segfaults
1044
1045         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_dispose):
1046         * gdk/x11/gdkinput.c (gdk_device_class_init), (gdk_device_dispose):
1047         Free and reset device in dispose. Patch by Michael Natterer and myself.
1048
1049 2008-11-30  Christian Dywan  <christian@imendio.com>
1050
1051         Bug 554076 – eventually release g_new-ed supported_atoms
1052
1053         * gdk/x11/gdkevents-x11.c (cleanup_atoms),
1054         (gdk_x11_screen_supports_net_wm_hint): Set cleanup callback.
1055         Patch by Caolan McNamara.
1056
1057 2008-11-30  Christian Dywan  <christian@imendio.com>
1058
1059         Bug 539263 – Deprecate gdk_window_get_toplevels
1060
1061         * gdk/gdkwindow.c:
1062         * gdk/gdkwindow.h: Deprecate gdk_window_get_toplevels
1063
1064 2008-11-29  Federico Mena Quintero  <federico@novell.com>
1065
1066         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): If tree lines are
1067         enabled, flip them around for the right-to-left case.  Fixes
1068         https://bugzilla.novell.com/show_bug.cgi?id=447004.  Patch by
1069         Ricardo Cruz <rpmcruz@alunos.dcc.fc.up.pt>
1070
1071 2008-11-29  Christian Persch  <chpe@gnome.org>
1072
1073         * gtk/gtkselection.c: Typo fix.
1074
1075 2008-11-29  Matthias Clasen  <mclasen@redhat.com>
1076
1077         * gtk/gtkselection.c:
1078         * gtk/gtkentry.c:
1079         * gtk/gtkdnd.c:
1080         * gtk/gtkcolorsel.c:
1081         * gtk/gtkbindings.c: Improve deprecation annotations.
1082
1083 2008-11-26  Christian Dywan  <christian@imendio.com>
1084
1085         Bug 561504 – testgtk should load rc file from sub folder
1086
1087         * tests/testgtk.c (main):
1088         Make testgtk look in subfolder and warn if not found
1089
1090 2008-11-25  Johan Dahlin  <jdahlin@async.com.br>
1091
1092         Bug 559947 – Unchecked dependency on python>=2.4
1093
1094         * gtk/gtk-builder-convert:
1095         Avoid using sorted() which is only present in python 2.
1096
1097 2008-11-24  Tristan Van Berkom <tvb@gnome.org>
1098
1099         * gtk/gtkalignment.c: Bug 561539 - Fix warnings when size allocations
1100         fall short of border width and padding.
1101
1102 2008-11-22  Paul Bolle  <pebolle@tiscali.nl>
1103
1104         Bug 561335 - Fix typos in GtkToolItem documentation
1105
1106         * gtk/gtktoolitem.c: Fix typos in GtkToolItem documentation
1107
1108 2008-11-21  Matthias Clasen <mclasen@redhat.com>
1109
1110         * configure.in: Bump gtk-doc dependency to 1.11 for
1111         nicer index-generation.
1112
1113 2008-11-21  Matthias Clasen <mclasen@redhat.com>
1114
1115         * gtk/gtkmountoperation.[hc]: Declare structs in a way that
1116         gtk-doc understands.
1117
1118 2008-11-17  Christian Dywan  <christian@imendio.com>
1119
1120         Bug 377699 – realizing gtk.Progress() causes SEGV
1121
1122         * gtk/gtkprogress.c: Define GtkProgress as an abstract type
1123
1124 2008-11-13  Christian Dywan  <christian@imendio.com>
1125
1126         Bug 560602 – Wrong GtkMenuItem default value (test fails)
1127
1128         * gtk/gtkmenuitem.c (gtk_menu_item_class_init):
1129         Correct default "label" value to ""
1130
1131 2008-11-12  Christian Dywan  <christian@imendio.com>
1132
1133         Bug 560139 – GtkEntry doesn't paint with the right state
1134
1135         * gtk/gtkentry.c (gtk_entry_class_init), (gtk_entry_draw_frame),
1136         (gtk_entry_expose): Reflect the right state if state-hint is set
1137
1138 2008-11-12  Christian Dywan  <christian@imendio.com>
1139
1140         Bug 559619 – invisible-char default cannot be tested
1141
1142         * gtk/tests/defaultvalue.c (test_type):
1143         Skip invisible-char when testing
1144
1145 2008-11-12  Richard Hult  <richard@imendio.com>
1146
1147         * gtk/gtkdnd-quartz.c: (gtk_drag_set_icon_pixmap): Implement,
1148         patch from Paul Davis.
1149
1150 2008-11-12  Christian Dywan  <christian@imendio.com>
1151
1152         Bug 525550 – GTK+ 2.13.0 GtkCurve test fails
1153
1154         * gtk/tests/object.c (list_ignore_properties),
1155         (object_test_property), (main): Ignore GtkCurve when testing
1156
1157 2008-11-12  Richard Hult  <richard@imendio.com>
1158
1159         Bug 550942 – [patch] Rework of gdkeventloop-quartz.c
1160
1161         * gdk/gdk.c:
1162         * gdk/gdkinternals.h: Add eventloop debug facility.
1163         * gdk/quartz/gdkeventloop-quartz.c: Big rework of the quartz
1164         mainloop integration, patch from Owen Taylor. See bug #550942 for
1165         the details.
1166
1167 2008-11-12  Richard Hult  <richard@imendio.com>
1168
1169         Bug 558586 – handling of keyboard under darwin (quartz)
1170
1171         * gdk/quartz/gdkkeys-quartz.c: Follow up on this bug, only use the
1172         new API when building on 64-bit, since there are still old non-xml
1173         layouts used out there we don't want to break them. (For 64-bit
1174         those layouts doesn't work so we don't have a choice there.)
1175
1176 2008-11-11  Matthias Clasen  <mclasen@redhat.com>
1177
1178         * gtk/gtkspinbutton.c: Chain up in enter and leave notify handlers.
1179
1180 2008-11-11  Michael Natterer  <mitch@imendio.com>
1181
1182         Bug 553765 – Add orientation API to GtkRange
1183
1184         * gtk/gtkrange.[ch]: implement the GtkOrientable interface. Add
1185         evil code that makes sure that the stepper_detail and slider_detail
1186         set in GtkRangeClass continue to work with the hacked subclasses
1187         below.
1188
1189         * gtk/gtkscale.[ch]: swallow all code from GtkHScale and GtkVScale
1190         and add gtk_scale_new() and gtk_scale_new_with_range() which take
1191         a GtkOrientation argument. Set slider_detail to "Xscale" so above
1192         evil code works.
1193
1194         * gtk/gtkscrollbar.[ch]: add gtk_scrollbar_new() which takes a
1195         GtkOrientation argument. Set stepper_detail to "Xscrollbar" so
1196         above evil code works.
1197
1198         * gtk/gtkhscale.c
1199         * gtk/gtkvscale.c
1200         * gtk/gtkhscrollbar.c
1201         * gtk/gtkvscrollbar.c: remove all code except the constructor and
1202         call gtk_orientable_set_orientation() in init().
1203
1204         * gtk/gtk.symbols: changed accordingly.
1205
1206 2008-11-11  Michael Natterer  <mitch@imendio.com>
1207
1208         * gtk/gtktoolbar.h: move deprecated functions together, move
1209         setters and getters together, some indentation cleanup.
1210
1211 2008-11-11  Michael Natterer  <mitch@imendio.com>
1212
1213         * gtk/gtktoolbar.[ch]: implement the GtkOrientable interface
1214         and deprecate gtk_toolbar_get,set_orientation().
1215
1216         * gtk/gtk.symbols: changed accordingly.
1217
1218 2008-11-10  Marek Kasik  <mkasik@redhat.com>
1219
1220         Bug 560135 - Print when the user double clicks a printer
1221
1222         * gtk/gtkprintunixdialog.c: add handling of double click to
1223         GtkPrintUnixDialog.
1224
1225 2008-11-07  Michael Natterer  <mitch@imendio.com>
1226
1227         * gtk/gtkpaned.c: argh, actually call the newly added private
1228         gtk_paned_calc_position() instead of the deprecated public
1229         version.
1230
1231 2008-11-07  Michael Natterer  <mitch@imendio.com>
1232
1233         Bug 553586 – Add orientation API to GtkPaned
1234
1235         * gtk/gtkpaned.[ch]: implement the GtkOrientable interface
1236         and swallow all code from GtkHPaned and GtkVPaned. Add
1237         gtk_paned_new() which takes a GtkOrientation argument. Deprecate
1238         gtk_paned_compute_position() for good (also for GTK_COMPILATION).
1239
1240         * gtk/gtkhpaned.[ch]
1241         * gtk/gtkvpaned.[ch]: remove all code except the constructor and
1242         call gtk_orientable_set_orientation() in init().
1243
1244         * gtk/gtk.symbols: add gtk_box_new().
1245
1246 2008-11-07  Johan Dahlin  <jdahlin@async.com.br>
1247
1248         * gtk/gtkcontainer.c (gtk_container_buildable_add_child):
1249         Check for child->parent instead of GTK_WIDGET_TOPLEVEL.
1250
1251 2008-11-07  Michael Natterer  <mitch@imendio.com>
1252
1253         * gtk/gtkscrollbar.c: remove bogus newlines in the middle of
1254         function calls, fix broken indentation and remove trailing
1255         whitespace.
1256
1257 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
1258
1259         * gtk/gtkmenuitem.c: Made buildable and added support for adding
1260         children of type "submenu"
1261
1262         * gtk/gtkwindow.c: Added support for custom tag "accel-groups" to
1263         add GtkAccelGroups to the window.
1264
1265         * gtk/gtkcontainer.c: Added builder contextual warnings in
1266         buildable_add_child()
1267
1268         * gtk/tests/builder.c: Added tests for buildable menus (test that
1269         accelerators are properly connected on stock items, test the menu
1270         hierarchy, test permission to add alien/custom menuitem children).
1271
1272         * docs/reference/gtk/tmpl/gtkbuilder.sgml
1273         * docs/reference/gtk/tmpl/gtkwindow.sgml
1274         * docs/reference/gtk/tmpl/gtkmenuitem.sgml: Updated docs for
1275         buildable submenus and accel groups.
1276
1277 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
1278
1279         * gtk/gtkmenuitem.[ch]: added new apis
1280         gtk_menu_item_[set/get]_label() and
1281         gtk_menu_item_[set/get]_use_underline() with "label" and
1282         "use-underline" properties, constructors cleaned up to use
1283         g_object_new().  GtkMenuItemClass take new vfuncs
1284         ->get/set_label().
1285
1286         * gtk/gtkcheckmenuitem.c: constructors cleaned up to use
1287         g_object_new().
1288
1289         * gtk/gtkimagemenuitem.[ch]: added new apis
1290         gtk_image_menu_item_[get/set]_use_stock() and
1291         gtk_image_menu_item_set_accel_group() with "use-stock" and
1292         write-only "accel-group" properties. constructors cleaned up to
1293         use g_object_new().
1294
1295 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
1296
1297         * gtk/gtkbuilder.h: Fixed a crasher in
1298         GTK_BUILDER_WARN_INVALID_CHILD_TYPE()
1299
1300 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
1301
1302         * gtk/gtklabel.c: gtk_label_set_attributes() now applies attributes
1303         on top of any markup or mnemonic attributes (bug 558409).
1304
1305         * README: Updated and added release notes for 2.16
1306
1307 2008-11-06  Richard Hult  <richard@imendio.com>
1308
1309         Bug 558586 – handling of keyboard under darwin (quartz)
1310
1311         * gdk/quartz/gdkkeys-quartz.c: (maybe_update_keymap): Patch from
1312         Arnaud Charlet to replace use of deprecated keyboard layout API
1313         with the new TIS API available in 10.5. The old code is still used
1314         when building for 10.4.
1315
1316 2008-11-05  Richard Hult  <richard@imendio.com>
1317
1318         * gdk/quartz/gdkevents-quartz.c:
1319         (get_keyboard_modifiers_from_ns_event), (create_key_event): Revert
1320         (at least for now) the alt/cmd switching since it breaks the
1321         "alt-gr" functionality of alt which makes it impossible to input
1322         lots of characters.
1323
1324 2008-11-05  Christian Dywan  <christian@imendio.com>
1325
1326         Bug 559404 – gtk_editable_insert_text counts length in bytes
1327
1328         * gtk/gtkeditable.c:
1329         Document new_text_length as the number of bytes
1330
1331 2008-11-05  Richard Hult  <richard@imendio.com>
1332
1333         * gdk/quartz/gdkwindow-quartz.c:
1334         (gdk_window_impl_quartz_begin_paint_region): Set the fill color
1335         outside the loop.
1336
1337 2008-11-05  Richard Hult  <richard@imendio.com>
1338
1339         * gtk/gtkstatusicon.c: (gtk_status_icon_set_has_tooltip),
1340         (gtk_status_icon_get_tooltip_markup): Fix build for win32 and
1341         quartz.
1342
1343 2008-11-04  Tor Lillqvist  <tml@novell.com>
1344
1345         Bug 557212 - Problem with which window gains focus and is visible
1346
1347         * gdk/win32/gdkevents-win32.c (ensure_stacking_on_activate_app):
1348         Only do the restacking for the active window of the
1349         application. Seems to fix the problem.
1350
1351         (gdk_event_translate): Only call ensure_stacking_on_activate_app()
1352         when the application is being activated, not deactivated.
1353
1354 2008-11-03  Matthias Clasen  <mclasen@redhat.com>
1355
1356         * gtk/gtk.symbols:
1357         * gtk/gtkstatusicon.[hc]: Add new tooltip api.
1358
1359 2008-11-03  Christian Persch  <chpe@gnome.org>
1360
1361         Bug 558001 – gtk_icon_view_enable_model_drag_[source|dest] problem
1362
1363         * gtk/gtkiconview.c: Make gtk_drag_*_add_*_targets() usable with
1364         GtkIconView.
1365
1366 2008-11-02  Matthias Clasen  <mclasen@redhat.com>
1367
1368         Bug 558929 – gtkstatusicon.c: 'event' is a member of the structure
1369
1370         * gtk/gtkstatusicon.c: Fix the build.
1371
1372 2008-11-02  Matthias Clasen  <mclasen@redhat.com>
1373
1374         * gtk/gtkimagemenuitem.c: Make it possible to overrule the
1375         gtk-menu-images setting.
1376
1377         * gtk/gtkaction.c (connect_proxy): Show the image before adding
1378         it to the image menu item.
1379
1380 2008-11-01  Tor Lillqvist  <tml@novell.com>
1381
1382         Bug 558278 - Crash when calling a callback set by
1383         gdk_add_client_message_filter()
1384
1385         * gdk/win32/gdkevents-win32.c (apply_event_filters): Rename from
1386         apply_filters() so that it is clear that this function is for
1387         GdkEventFilters only.
1388
1389         (print_event): Print more information for GDK_CLIENT_EVENT events.
1390
1391         (gdk_event_translate): When handling client filters, don't use
1392         apply_event_filters(). Use similar code as in the X11 backend,
1393         although not exactly, as the parameter list and return value
1394         semantics of gdk_event_translate() is different.
1395
1396         * tests/testclientmessage.c: New interactive test program to
1397         verify client message functionality.
1398
1399         * tests/Makefile.am: Add it.
1400
1401 2008-11-01  Matthias Clasen  <mclasen@redhat.com>
1402
1403         Bug 409435 – GtkStatusIcon enhancements: DnD, scroll events, 
1404         middle click, rich tooltips
1405
1406         * gtk/gtkstatusicon.[hc]: Add support for button press/release and
1407         scroll events. Patch by Ed Catmur
1408
1409 2008-11-01  Matthias Clasen  <mclasen@redhat.com>
1410
1411         Bug 322934 – Replace menu's proxy icons with empty space hiding icons
1412
1413         * gtk/gtkmenu.c (gtk_menu_size_request): Use consistent padding
1414         regardless of imagees or checks being in the menu. Also add
1415         padding on the right edge.
1416         Proposal by Luca Ferretti, patch by Jon McCann
1417
1418 2008-11-01  Matthias Clasen  <mclasen@redhat.com>
1419
1420         Bug 412134 – Add API to query style properties from the style
1421
1422         * gtk/gtk.symbols:
1423         * gtk/gtkstyle.[hc]: Add getters for style properties to
1424         avoid the need for ugly workarounds with dummy widget instances.
1425         Patch by Mariano Suárez-Alvarez
1426
1427 2008-10-31  Christian Dywan  <christian@imendio.com>
1428
1429         Bug 558667 – gtk_font_selection_dialog_get_apply_button - deprecate?
1430
1431         * gtk/gtk.symbols:
1432         * gtk/gtkfontsel.c:
1433         * gtk/gtkfontsel.h:
1434         Deprecate gtk_font_selection_dialog_get_apply_button
1435
1436 2008-10-31  Matthias Clasen  <mclasen@redhat.com>
1437
1438         Bug 558323 – glitches when popping up combos in treeviews
1439
1440         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_set_property):
1441         Don't set the model property on the combo box, since that leads
1442         to loops.
1443
1444 2008-10-31  Christian Dywan  <christian@imendio.com>
1445
1446         Bug 347230 – testicontheme shortcomings
1447
1448         * tests/testicontheme.c (main):
1449         Use theme for "display" and quit on window closing
1450
1451 2008-10-30  Matthias Clasen  <mclasen@redhat.com>
1452
1453         Bug 558522 – scroll arrow painted insensitive even though there
1454         are pages beyond the edge
1455
1456         * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Redraw
1457         arrows. Pointed out by Christian Persch
1458
1459 2008-10-30  Michael Natterer  <mitch@imendio.com>
1460
1461         * gtk/gtkcellrenderertext.h
1462         * gtk/gtkentry.[ch]
1463         * gtk/gtkimcontext.h
1464         * gtk/gtklabel.c
1465         * gtk/gtkstyle.h: <pango/pango.h> is pulled in by <gdk/gdk.h>,
1466         remove its inclusion here.
1467
1468 2008-10-30  Michael Natterer  <mitch@imendio.com>
1469
1470         * gtk/*.h: no need to include <gtk/gtkenums.h> in headers which
1471         somehow include gtkobject.h or another header which includes it.
1472
1473 2008-10-30  Marek Kasik  <mkasik@redhat.com>
1474
1475         Bug 339714 - Set printer dpi on cairo ps/pdf surfaces when printing
1476
1477         * gtk/gtk.symbols
1478         * gtk/gtkprintsettings.c
1479         * gtk/gtkprintsettings.h
1480         * docs/reference/gtk/gtk-sections.txt
1481         * modules/printbackends/file/gtkprintbackendfile.c
1482         * modules/printbackends/test/gtkprintbackendtest.c
1483         * modules/printbackends/cups/gtkprintbackendcups.c
1484         * modules/printbackends/lpr/gtkprintbackendlpr.c:
1485         Added lpi (lines per inch) setting to GtkPrintSettings and support
1486         for anamorphic dpi. Surface fallback resolution is set to 2*lpi.
1487
1488 2008-10-30  Michael Natterer  <mitch@imendio.com>
1489
1490         * gtk/*.h: no need to include <gdk/gdk.h> in any widget header,
1491         it's included via gtkwidget.h anyway.
1492
1493 2008-10-30  Sven Neumann  <sven@gimp.org>
1494
1495         * gtk/gtkwidget.c (gtk_widget_get_property): removed redundant
1496         conditional.
1497
1498 2008-10-30  Christian Dywan  <christian@imendio.com>
1499
1500         Bug 557316 – GtkLinkButton should consider user-defined tooltip
1501
1502         * gtk/gtklinkbutton.c (gtk_link_button_query_tooltip_cb):
1503         Only override the tooltip if not previously set
1504
1505 2008-10-29  Christian Dywan  <christian@imendio.com>
1506
1507         Bug 557762 – Misleading error message in GDK DirectFB
1508
1509         * gdk/directfb/gdkdisplay-directfb.c (gdk_display_open):
1510         Correctly say GetInputDevice instead of GetDisplayLayer
1511
1512 2008-10-29  Christian Dywan  <christian@imendio.com>
1513
1514         Bug 558397 – gtk_widget_error_bell undefined without a screen
1515
1516         * gtk/gtkwidget.c (gtk_widget_error_bell): Test the settings
1517         instance and return silently if unset
1518
1519 2008-10-28  Michael Natterer  <mitch@imendio.com>
1520
1521         * gdk/keyname-table.h: fix small typo.
1522
1523 2008-10-27  Richard Hult  <richard@imendio.com>
1524
1525         Bug 557894 – Wrong return value for
1526         gdk_pointer_grab_info_libgtk_only()
1527
1528         * gdk/quartz/gdkevents-quartz.c:
1529         (gdk_pointer_grab_info_libgtk_only): Return TRUE when there is a
1530         pointer grab. Patch by Owen Taylor.
1531
1532 2008-10-26  Matthias Clasen  <mclasen@redhat.com>
1533
1534         * gtk/gtktoolshell.c:
1535         * gtk/gtktoolitem.c: Remove markup from short descriptions.
1536
1537 2008-10-26  Matthias Clasen  <mclasen@redhat.com>
1538
1539         * gdk/keyname-table.h:
1540         * gtk/gen-paper-names.c:
1541         * gtk/paper_names_offsets.c:
1542         * gtk/gtkpapersize.c:
1543         * gtk/gtkaccellabel.c:
1544         * gtk/gtkprintoperation.c:
1545         * gtk/gtkstock.c: More conversion to C_().
1546
1547 2008-10-26  Matthias Clasen  <mclasen@redhat.com>
1548
1549         * gtk/gtkaccellabel.c:
1550         * gtk/gtkcalendar.c:
1551         * gtk/gtkcellrendereraccel.c:
1552         * gtk/gtkcellrendererprogress.c:
1553         * gtk/gtkimmulticontext.c:
1554         * gtk/gtkrecentchoosermenu.c:
1555         * gtk/gtkvolumebutton.c: Use C_() instead of Q_(). String change!
1556
1557 2008-10-26  Christian Persch  <chpe@gnome.org>
1558
1559         Bug 557065 – gtkcellrendererpixbuf spams console over and over with
1560         'could not load image' warnings
1561
1562         * gtk/gtkcellrendererpixbuf.c:
1563         (gtk_cell_renderer_pixbuf_create_themed_pixbuf): Remove noisy
1564         g_warning.
1565
1566 2008-10-26  Philip Withnall  <philip@tecnocode.co.uk>
1567
1568         Bug 530454 – Clarify page_nr when printing
1569
1570         * gtk/gtkprintoperation.c (gtk_print_operation_class_init): Point out
1571         that page_nr is 0-based in the documentation.
1572
1573 2008-10-25  Matthias Clasen  <mclasen@redhat.com>
1574         
1575         Bug 557315 – stale clipboard target cache
1576
1577         * gtk/gtkclipboard.c (gtk_clipboard_set_contents): Remove cached
1578         targets. Pointed out by Evan Stade
1579
1580 2008-10-24  Tristan Van Berkom  <tvb@gnome.org>
1581
1582         * gtk/gtkwidget.c: Added a note about GtkWidget:has-tooltip in
1583         the docs for GtkWidget::query-tooltip.
1584
1585 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
1586
1587         * gtk/gtkmountoperation.c: The "screen" property ought to have
1588         type GdkScreen, not GtkWindow. Found by Cosimo Cecchi
1589
1590 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
1591
1592         Bug 556954 – gtk+/gtk/gtkrecentchooserdefault.c: mismatching
1593         allocation and deallocation
1594
1595         * gtk/gtkrecentchooserdefault.c (remove_selected_from_list): Don't
1596         free a strdup'ed string by g_free. Pointed out by Daniel Marjamäki
1597
1598 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
1599
1600         Bug 556835 – gtkentry.c: variable is declared at middle of block
1601
1602         * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
1603         out by Kazuki Iwamoto
1604
1605 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
1606
1607         Bug 557524 – "va_end(args);" should be added into
1608         gtk_text_buffer_insert_with_tags_by_name( )
1609
1610         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_with_tags_by_name):
1611         Don't forget to call va_end. Pointed out by Boram Park
1612
1613 2008-10-23  Alexander Larsson  <alexl@redhat.com>
1614
1615         Bug 528320 - Incorrect icons displayed for files with custom
1616         mimetype icons
1617         
1618         * gtk/gtkfilesystem.c:
1619         (_gtk_file_info_render_icon):
1620         Fall back on default file icon if there was no icon or it
1621         was not found in the theme. This goes with the corresponding
1622         change in glib to not add the fallback icon, but is useful
1623         in other cases too.
1624
1625 2008-10-22  Behdad Esfahbod  <behdad@gnome.org>
1626
1627         Bug 555920 – gtkentry.c passes wrong enum to
1628         pango_layout_set_alignment()
1629
1630         * gtk/gtkentry.c (gtk_entry_create_layout): Don't set layout
1631         adjustment.
1632
1633 2008-10-22  Matthias Clasen  <mclasen@redhat.com>
1634
1635         * gdk/x11/gdkscreen-x11.c: Only emit size-changed if the screen
1636         size actually changed.
1637
1638 2008-10-21  Michael Natterer  <mitch@imendio.com>
1639
1640         * gdk/gdkdraw.c
1641         * gdk/gdkimage.c
1642         * gdk/gdkscreen.c
1643         * gdk/gdkwindow.c: replace assertions for obj != NULL by
1644         GDK_IS_OBJ(), remove redundant != NULL checks when there is
1645         already a type check, add some g_return_if_fail() that were
1646         missing entirely, fix some broken indentation and spacing.
1647
1648 2008-10-21  Tor Lillqvist  <tml@novell.com>
1649
1650         Bug 557266 - Window Management Problem
1651
1652         Also reported in mail to gtk-list, and of course it has been well
1653         known in general that window state management is messy and buggy
1654         in various ways in gdk/win32.
1655
1656         * gdk/win32/gdkwindow-win32.c (show_window_internal): Correct
1657         handling of GDK_WINDOW_STATE_ABOVE windows. It doesn't work to set
1658         the WS_EX_TOPMOST extended style bit using SetWindowLong(). We
1659         must call SetWindowPos() on the window using HWND_TOPMOST
1660         instead. The description for WS_EX_TOPMOST in the documentation
1661         for CreateWindowEx() even implies that if you read it carefully.
1662
1663 2008-10-21  Michael Natterer  <mitch@imendio.com>
1664
1665         * gdk/gdkapplaunchcontext.c: reorder functions to be in standard
1666         order, add prototypes and namespace to static functions, add
1667         g_return_if_fail()s which were missing all over the place.
1668
1669 2008-10-20  Christian Persch  <chpe@gnome.org>
1670
1671         Bug 557059 – crash when compositing emblems with icon
1672
1673         * gtk/gtkicontheme.c: (apply_emblems): Copy the pixbuf before using it
1674         with gtk_pixbuf_composite, in case its pixdata is read-only (mmaped
1675         from icon cache or builtins).
1676
1677 2008-10-20  Murray Cumming  <murrayc@murrayc.com>
1678
1679         * gtk/gtkiconview.c: gtk_icon_view_set_tooltip_row(), 
1680         gtk_icon_view_set_tooltip_item():
1681         * gtk/gtktreeview.c: gtk_icon_view_set_tooltip_row(), 
1682         gtk_icon_view_set_tooltip_cell():
1683         Documentation: Mention the simple set_tooltip_column() 
1684         alternative.
1685
1686 2008-10-18  Tor Lillqvist  <tml@novell.com>
1687
1688         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
1689         WM_WINDOWPOSCHANGING, don't dereference windowpos in the debugging
1690         output without setting it first.
1691
1692 2008-10-18  Tor Lillqvist  <tml@novell.com>
1693
1694         Bug 556578 - GIMP windows stay on top of other windows
1695
1696         * gdk/win32/gdkevents-win32.c (ensure_stacking_on_unminimize)
1697         (ensure_stacking_on_window_pos_changing)
1698         (ensure_stacking_on_activate_app): Ignore unmapped windows in the
1699         loops where we look for the lowest "transient-type" window.
1700
1701         (gdk_event_translate): Don't call
1702         ensure_stacking_on_window_pos_changing() or
1703         ensure_stacking_on_activate_app() for unmapped windows.
1704
1705 2008-10-16  Marek Kasik  <mkasik@redhat.com>
1706
1707         Bug 556527 - The current page property is not passed to
1708         GtkPrintUnixDialog
1709
1710         * gtk/gtkprintoperation-unix.c: pass current-page property
1711         to GtkPrintUnixDialog
1712
1713 2008-10-15  Michael Natterer  <mitch@imendio.com>
1714
1715         * gdk/gdkapplaunchcontext.h (GDK_IS_APP_LAUNCH_CONTEXT): fix typo
1716         in the type name so the macro becomes usable.
1717
1718 2008-10-14  Christian Dywan  <christian@imendio.com>
1719
1720         556150 – gtk 'object' property test fixing
1721
1722         * gtk/tests/object.c (list_ignore_properties):
1723         Remove some recently fixed properties from the exception list
1724
1725 2008-10-13  Matthias Clasen  <mclasen@redhat.com>
1726
1727         Bug 555779 – GtkCellRendererPixbuf crashed on failed GIcon lookup
1728
1729         * gtk/gtkcellrendererpixbuf
1730         (gtk_cell_renderer_pixbuf_create_themed_pixbuf): Don't crash
1731         if a GIcon is not present in the current theme. Patch by 
1732         Alex Larsson.
1733
1734 2008-10-13  Matthias Clasen  <mclasen@redhat.com>
1735
1736         Bug 552318 – menubar mnemonics consumed even when
1737         gtk-enable-mnemonics=false
1738
1739         * gtk/gtkwindow.c (gtk_window_activate_key): Don't let mnemonic
1740         entries block accelerator activation when gtk-enable-mnemonics is
1741         FALSE. Problem reported by Andreas Moog.
1742
1743 2008-10-13  Cody Russell <cody@jhu.edu>
1744
1745         * test/testfilechooser.c: Fix option parsing so that -a and
1746         --action work correctly.
1747
1748 2008-10-13  Christian Persch <chpe@gnome.org>
1749
1750         Bug 555386 – format not a string literal and no format arguments
1751
1752         * gtk/gtkiconfactory.c
1753         * gtk/gtkprintbackend.c
1754         * gtk/gtkprintoperation.c
1755         * gtk/gtkthemes.c
1756         * gtk/tests/builder.c
1757         * modules/other/gail/gailtextview.c
1758         * tests/testmerge.c: Use printf safely.
1759
1760 2008-10-13  Christian Persch <chpe@gnome.org>
1761
1762         Bug 555724 – gtkcellrendereraccel not initialised correctly
1763
1764         * gtk/gtkcellrendereraccel.c: Initialise the cell text.
1765
1766 2008-10-12  Simos Xenitellis  <simos@gnome.org>
1767
1768         Bug 555625 – Updated gtk_compose_seqs_compact table 
1769         (gtkimcontextsimpleseqs.h)
1770         
1771         * gtk/gtkimcontextsimpleseqs.c: Updated the compose sequence table.
1772         In this update we removed a further set of compose sequences that
1773         are otherwise covered by check_algorithmically(). 
1774
1775         * gtk/gtkimcontextsimple.c: Updated table value that shows how many 
1776         distinct first values exist in the compose sequences. 
1777         Change from 22 to 20.
1778         
1779 2008-10-11  Matthias Clasen  <mclasen@redhat.com>
1780
1781         * gtk/gtktoolbar.c: Revert the GtkSettings::gtk-toolbar-icon-size
1782         part of the previous change, since it doesn't work correctly without
1783         extra complication, and using custom icon sizes doesn't make too
1784         much sense in a desktop-wide setting.
1785
1786 2008-10-11  Matthias Clasen  <mclasen@redhat.com>
1787
1788         Bug 555186 – Setting gtk-toolbar-icon-size with custom icon_size
1789
1790         * gtk/gtktoolbar.c: Turn GtkToolbar::icon-size and
1791         GtkSettings::gtk-toolbar-icon-size into int properties, to
1792         allow the use of app-registered icon sizes.
1793
1794 2008-10-11  Christian Dywan  <christian@imendio.com>
1795
1796         Bug 555676 – gtk_widget_real_grab_focus assumes toplevel == window
1797
1798         * gtk/gtkwidget.c (gtk_widget_real_grab_focus):
1799         Actually test for GTK_IS_WINDOW *and* GTK_WIDGET_TOPLEVEL
1800
1801 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
1802
1803         Bug 551355 – [PATCH] Make glib build with libtool 2.2
1804
1805         * autogen.sh: Accept libtool 2.2.   We are moving towards having
1806         it working.
1807
1808 2008-10-10  Richard Hult  <richard@imendio.com>
1809
1810         * gdk/quartz/gdkkeys-quartz.c: (gdk_keymap_get_caps_lock_state)
1811         Add empty stub to fix linking.
1812
1813 2008-10-10  Simos Xenitellis  <simos@gnome.org>
1814
1815         Bug 555000 – Wrong treatment on non-spacing marks dead keys in 
1816         GtkIMContextSimple
1817
1818         * gtk/gtkimcontextsimple.c: Change IS_DEAD_KEY() macro so that
1819         it only checks if input is a deadkey keysym.
1820
1821 2008-10-09  Christian Dywan  <christian@imendio.com>
1822
1823         Bug 555676 – gtk_widget_real_grab_focus assumes toplevel == window
1824
1825         * gtk/gtkwidget.c (gtk_widget_real_grab_focus):
1826         Test for GTK_IS_WINDOW instead of GTK_WIDGET_TOPLEVEL
1827
1828 2008-10-09  Christian Dywan  <christian@imendio.com>
1829
1830         Bug 555573 – gtk_font_selection_set_font_name
1831         shouldn't require a screen
1832
1833         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name):
1834         Don't warn if there is no screen, just return FALSE
1835
1836 2008-10-09  Christian Dywan  <christian@imendio.com>
1837
1838         Bug 555523 – gtk_scale_button_set_adjustment should accept NULL
1839
1840         * gtk/gtkscalebutton.c (gtk_scale_button_set_adjustment):
1841         Create a new adjustment if NULL is passed, like other widgets
1842
1843 2008-10-09  Christian Dywan  <christian@imendio.com>
1844
1845         Bug 555578 – GtkTable propertiy maxima are wrong
1846
1847         * gtk/gtktable.c (gtk_table_class_init), (gtk_table_resize):
1848         Always use 65535 instead of G_MAXUINT since that is
1849         the actually supported maximum number of columns and rows
1850
1851 2008-10-09  Richard Hult  <richard@imendio.com>
1852
1853         Bug 550342 – Splash screens have a caption
1854
1855         * gdk/quartz/gdkwindow-quartz.c: (_gdk_window_new),
1856         (gdk_window_set_decorations): Patch from Marianne Gagnon to make
1857         splash windows borderless.
1858
1859 2008-10-09  Michael Natterer  <mitch@imendio.com>
1860
1861         Bug 516425 – Optionally display accelerators in popups
1862
1863         * gtk/gtkuimanager.h (enum GtkUIManagerItemType): add value
1864         GTK_UI_MANAGER_POPUP_WITH_ACCELS which works like _POPUP but
1865         shows the actions' accelerators.
1866
1867         * gtk/gtkuimanager.c: honor the new enum value for programmatically
1868         created UIs, and support <popup accelerators="true"> in the XML
1869         for the same purpose.
1870
1871 2008-10-09  Simos Xenitellis  <simos@gnome.org>
1872
1873         Bug 554192 – double press on the "circumflex" dead key 
1874         (standard french 105 keyboard) no longer produces the "^" character
1875
1876         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress):
1877         Changed the order, put check_compact_table() first, then 
1878         check_algorithmically().
1879
1880 2008-10-08  Christian Persch  <chpe@gnome.org>
1881
1882         Bug 554702 – gtkfilesystem leaks GError
1883
1884         * gtk/gtkfilesystem.c (_gtk_file_system_init): Free the GError.
1885
1886 2008-10-08  Matthias Clasen  <mclasen@redhat.com>
1887
1888         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
1889         Don't forget to reset reload_state when current_folder is already
1890         correct. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=465992
1891
1892 2008-10-08  Christian Dywan  <christian@imendio.com>
1893
1894         Bug 555270 – Allow unsetting a MessageDialog's image
1895
1896         * gtk/gtkmessagedialog.c (gtk_message_dialog_set_property),
1897         Remove a superfluous cast to GtkWidget*
1898         (gtk_message_dialog_set_image): Accept NULL for the image
1899         and unset the image in that case.
1900
1901 2008-10-08  Christian Dywan  <christian@imendio.com>
1902
1903         Bug 436533 – Allow more space efficient scroll arrows placement
1904
1905         * gtk/gtkenums.h: Add GtkArrowPlacement
1906         * gtk/gtkmenu.c (gtk_menu_class_init), (get_arrows_border),
1907         (get_arrows_visible_area), (get_double_arrows),
1908         (get_arrows_sensitive_area): Implement GtkMenu::arrow-placement
1909         to allow scrolling arrows to be placed at the start, end or both
1910         Patch by Tommi Komulainen and myself
1911
1912 2008-10-08  Christian Dywan  <christian@imendio.com>
1913
1914         Bug 555387 – Changing the sensitivity of a statusbar
1915         mistakenly requires a display
1916
1917         * gtk/gtkstatusbar.c (set_grip_cursor): Only change the cursor
1918         of the resize grip if there is a grip window.
1919
1920 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
1921
1922         * gtk/gtktooltip.c (gtk_tooltip_show_tooltip): Avoid unitialized
1923         memory warnings from valgrind.
1924
1925 2008-10-07 11:03:30  Tim Janik  <timj@imendio.com>
1926
1927         * gtk/gtkbox.h: keep GtkBox as an abstract type and keep _gtk_box_new()
1928         as private function until we settle on the exact semantics.
1929         renamed _gtk_box_set_old_defaults() as suggested by Mitch.
1930
1931 2008-10-07  Michael Natterer  <mitch@imendio.com>
1932
1933         * gtk/gtkbox.c: reindent static prototypes.
1934
1935 2008-10-07  Michael Natterer  <mitch@imendio.com>
1936
1937         Bug 553573 – Add orientation API to GtkBox
1938
1939         * gtk/gtkbox.[hh]: implement the GtkOrientable interface and
1940         swallow all code from GtkHBox and GtkVBox. Add gtk_box_new()
1941         which takes a GtkOrientation argument. Also move the newly
1942         added "spacing_set" boolean from struct GtkBox to the new
1943         private struct.
1944
1945         * gtk/gtkhbox.[ch]
1946         * gtk/gtkvbox.[ch]: remove all code except the constructor and
1947         call gtk_orientable_set_orientation() in init().
1948
1949         * gtk/gtk.symbols: add gtk_box_new().
1950
1951 2008-10-06  Björn Lindqvist  <bjourne@gmail.com>
1952
1953         Bug 539464 – gtk_cell_view_get_model is missing in GtkCellView
1954
1955         * gtk/gtkcellview.c (gtk_cell_view_get_model): Add
1956         gtk_cell_view_get_model.
1957
1958 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
1959
1960         * gtk/gtkprintunixdialog.c (create_main_page): Show the tooltip
1961         on the range entry itself, too.
1962
1963 2008-10-04  Tor Lillqvist  <tml@novell.com>
1964
1965         Bug 132501 - Make utility window translate to tool window in win32
1966
1967         Implement the utility window type hint. Such windows are kept on
1968         top of other windows of the same process. Makes GIMP's toolbox and
1969         dock windows behave more like in GNOME under metacity. Apply the
1970         same logic also to windows marked with the dialog window type
1971         hint, and windows that are transient for some other window. I'll
1972         call such windows "transient-type" below.
1973
1974         * gdk/win32/gdkevents-win32.c (doesnt_want_key): Drop unused
1975         variables.
1976
1977         (ensure_stacking_on_unminimize)
1978         (ensure_stacking_on_window_pos_changing)
1979         (ensure_stacking_on_activate_app): New functions to implement the
1980         desired stacking order. Make sure that a window that is not
1981         transient-type stays below any transient-type windows of the
1982         application. When activating a non-transient-type window make sure
1983         it rises as high as possible while still staying below the lowest
1984         transient-type window.
1985
1986         (gdk_event_translate): Call above functions on
1987         WM_WINDOWPOSCHANGING, WM_ACTIVATEAPP and on WM_SIZE when
1988         unminimizing. Improve debugging printout.
1989
1990         * gdk/win32/gdkwindow-win32.c (get_effective_window_decorations):
1991         Handle utility windows like toolbar windows.
1992
1993         (gdk_window_new_internal) (update_style_bits): Give utility
1994         windows the WS_EX_TOOLWINDOW extended style.
1995
1996         (gdk_window_set_title): If debugging "misc" or "events", make the
1997         handle of top-level windows show up in their title bars. Very
1998         useful when looking at debugging output.
1999
2000         (gdk_window_set_transient_for) (gdk_window_set_keep_above)
2001         (gdk_window_set_keep_below) (gdk_window_set_modal_hint)
2002         (gdk_window_set_skip_taskbar_hint)
2003         (gdk_window_set_skip_pager_hint): Add and improve debugging
2004         printout.
2005
2006         (gdk_window_set_type_hint): Print hint symbolically in GDK_NOTE().
2007
2008 2008-10-04  Tor Lillqvist  <tml@novell.com>
2009
2010         * gdk/win32/gdkmain-win32.c (_gdk_win32_window_exstyle_to_string)
2011         (_gdk_win32_window_pos_bits_to_string): New debugging printout
2012         functions. Decode the WS_EX_* and SWP_* bits.
2013
2014         * gdk/win32/gdkprivate-win32.h: Declare them. Define
2015         GDK_DEBUG_MISC_OR_EVENTS for use in GDK_NOTE() to match either
2016         "misc" or "events".
2017
2018 2008-10-03  Matthias Clasen <mclasen@redhat.com>
2019
2020         * gtk/gtkmodules.c (_gtk_modules_settings_changed): Add some
2021         debug output.
2022
2023 2008-10-02  Matthias Clasen <mclasen@redhat.com>
2024
2025         Bug 96431 – Can't cut and paste / DND within invisible entry
2026
2027         * gtk/gtkentry.c: Disable cut, copy and drag out of an invisible
2028         entry. Proposed by Owen Taylor
2029
2030 2008-10-02  Matthias Clasen <mclasen@redhat.com>
2031
2032         Bug 530575 – GtkEntry with invisible chars has a confused cursor in
2033         overwrite mode
2034
2035         * gtk/gtkentry.c (gtk_entry_draw_cursor): Use the visible text
2036         in the layout when positioning the cursor, not the actual text
2037         content of the entry. This makes a different when using overwrite
2038         mode in an invisible entry. 
2039         Problem noticed by Jonathan Blandford
2040
2041         * gtk/gtktextutil.c: Fix a typo in a comment
2042
2043 2008-10-02  Christian Persch
2044
2045         Bug 554704 – gtkfilesystemmodel does too much work
2046
2047         * gtk/gtkfilesystemmodel.c: Replace g_slist_length()<1 check with a
2048         simple NULL check.
2049
2050 2008-10-02  Christian Persch
2051
2052         Bug 554701 – filechooser spams console with useless warnings
2053
2054         * gtk/gtkfilesystem.c.c: Don't warn if the async call was simply
2055         cancelled.
2056
2057 2008-10-02  Christian Persch
2058
2059         Bug 554698 – mem leak in filechooser
2060
2061         * gtk/gtkfilechooserdefault.c: Plug a mem leak.
2062
2063 2008-10-02  Christian Persch
2064
2065         Bug 554696 – invalid free function used
2066
2067         * gtk/gtkfilesystemmodel.c: Use the right free func.
2068
2069 2008-10-02  Christian Persch
2070
2071         Bug 554691 – mem leak in filechooser
2072
2073         * gtk/gtkfilesystemmodel.c: Plug a mem leak.
2074
2075 2008-10-02  Christian Persch
2076
2077         Bug 554690 – mem leak in filechooser
2078
2079         * gtk/gtkfilechooserdefault.c: Plug a mem leak.
2080
2081 2008-10-02  Michael Natterer  <mitch@imendio.com>
2082
2083         Bug 553585 – Add orientation API to GtkRuler
2084
2085         * gtk/gtkruler.[ch]: implement the GtkOrientable interface and
2086         swallow all code from GtkHRuler and GtkVRuler. Add gtk_ruler_new()
2087         which takes a GtkOrientation argument.
2088
2089         * gtk/gtkhruler.c
2090         * gtk/gtkvruler.c: remove all code except the constructor and
2091         call gtk_orientable_set_orientation() in init().
2092
2093         * gtk/gtk.symbols: add gtk_ruler_new().
2094
2095 2008-10-01  Torsten Schoenfeld  <kaffeetisch@gmx.de>
2096
2097         * docs/reference/gtk/gtk-sections.txt:
2098         * gtk/gtk.symbols:
2099         * gtk/gtkselection.c:
2100         * gtk/gtkselection.h: Add gtk_selection_data_get_selection to
2101         retrieve the sealed struct field GtkSelectionData.selection.
2102
2103 2008-10-01  Tor Lillqvist  <tml@novell.com>
2104
2105         * gtk/gtkscalebutton.c: Don't #define _GNU_SOURCE on Windows as it
2106         confuses newest mingw headers.
2107
2108 2008-10-01  Tor Lillqvist  <tml@novell.com>
2109
2110         * gdk/win32/gdkkeys-win32.c (gdk_keymap_get_caps_lock_state):
2111         Implement trivially on Windows. Not sure if something more complex
2112         is actually needed, more specifically whether the function needs
2113         to differentiate between "Caps Lock" and "Shift Lock" semantics?
2114
2115 2008-10-01  Simos Xenitellis  <simos@gnome.org>
2116
2117         Bug 554506 – combining diacritics broken, became deadkeys
2118
2119         * gtk/gtkimcontextsimple.c: added check if keysym is greater
2120         than 0x1000000, in this case it is not a dead key.
2121
2122 2008-09-30  Michael Natterer  <mitch@imendio.com>
2123
2124         Bug 553582 – Add orientation API to GtkSeparator
2125
2126         * gtk/gtkseparator.[ch]: implement the GtkOrientable interface and
2127         swallow all code from GtkHSeparator and GtkVSeparator. Add
2128         gtk_separator_new() which takes a GtkOrientation argument.
2129
2130         * gtk/gtkhseparator.c
2131         * gtk/gtkvseparator.c: remove all code except the constructor and
2132         call gtk_orientable_set_orientation() in init().
2133
2134         * gtk/gtk.symbols: add gtk_separator_new().
2135
2136 2008-09-30  Marek Kasik  <mkasik@redhat.com>
2137
2138         Bug 344522 – support non-local destination files (GtkPrint):
2139
2140         * gtk/gtkprintunixdialog.c
2141         * gtk/gtkprinteroptionwidget.c: Process URI instead of filename.
2142         * modules/printbackends/file/gtkprintbackendfile.c: Add ability
2143         to save files on non-local filesystems.
2144
2145 2008-09-30  Michael Natterer  <mitch@imendio.com>
2146
2147         * gtk/gtk.symbols: forgot the G_GNUC_CONST of
2148         gtk_orientable_get_type().
2149
2150 2008-09-30  Michael Natterer  <mitch@imendio.com>
2151
2152         Bug 541009 – Get rid of separate subclasses for horizontal and
2153         vertical orientation:
2154
2155         * gtk/Makefile.am
2156         * gtk/gtk.symbols
2157         * gtk/gtk.h
2158         * gtk/gtkorientable.[ch]: add new interface GtkOrientable which
2159         will be implemented by everything that can switch orientation.
2160
2161 2008-09-30  Christian Dywan  <christian@imendio.com>
2162
2163         Fix a typo in the tutorial.
2164
2165         * docs/tutorial/gtk-tut.sgml: It's mnemonic, not 'mnemnonic'.
2166
2167 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
2168
2169         Bug 553086 – hard to see current immodule
2170
2171         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
2172         Display the actually selected context in the system menuitem.
2173         Complaint by Akira Tagoh.
2174
2175 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
2176
2177         Bug 530568 – Entries with visibility=FALSE should warn for caps-lock
2178         on
2179
2180         * gtk/gtkentry.c: Add a tooltip-like Caps Lock warning for
2181         password entries. The warning is also triggered if an input method
2182         is active. The warning can be turned off using the
2183         GtkEntry::caps-lock-warning property. 
2184         Proposed by Owen Taylor
2185
2186 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
2187
2188         * gtk/gtk.symbols:
2189         * gtk/gtkimmulticontext.[hc] (gtk_im_multicontext_get_context_id): 
2190         Add a getter for the the sealed context_id field.
2191
2192 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
2193
2194         Bug 107000 – Add signals to GdkKeymap for monitoring caps_lock, etc.
2195
2196         * gdk/gdk.symbols:
2197         * gdk/gdkkeys.[ch]: Add a new GdkKeymap::state-changed signal, and
2198         a gdk_keymap_get_caps_lock_state function.
2199
2200         * gdk/x11/gdkkeys-x11.c: Implement it here. For now, only emit
2201         state-changed when caps lock lockedness changes. 
2202
2203         * gdk/x11/gdkdisplay-x11.c: Also select for modifier lock status
2204         changes in the XkbSelectEventDetails call.
2205
2206 2008-09-29  Kristian Rietveld  <kris@imendio.com>
2207
2208         Bug 487624 - Tooltips doesn't get updated if ther's no mouse motion
2209         over widget
2210
2211         * gtk/gtkwidget.c (gtk_widget_set_property): after updating
2212         tooltip text or markup, call gtk_widget_trigger_tooltip_query()
2213         so that existing visible tooltips are updated.
2214
2215 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
2216
2217         Bug 371908 – Password Entry broken
2218         Bug 317002 – Disable input method completely in GtkEntry when it's 
2219         in invisible mode.
2220
2221         * gtk/gtkentry.c (gtk_entry_backspace): Make backspace behave
2222         properly when invisible.
2223
2224         * gtk/gtkentry.c (gtk_entry_create_layout): Show preedit even if
2225         invisible. 
2226
2227         * gtk/gtkentry.c (gtk_entry_set_visibility): Don't disable input
2228         methods when making the entry invisible.
2229         
2230 2008-09-29  Emmanuele Bassi  <ebassi@linux.intel.com>
2231
2232         * gdk/x11/gdkinput.c:
2233         (gdk_device_class_init), (gdk_device_finalize): Correctly chain
2234         up the finalize implementation.
2235
2236 2008-09-29  Richard Hult  <richard@imendio.com>
2237
2238         Bug 554141 – uninitialized data use/free in gtkclipboard-quartz.c
2239
2240         * gtk/gtkclipboard-quartz.c: (gtk_clipboard_wait_for_contents):
2241         Patch from Jon A. Cruz to initialize the allocated selection data.
2242
2243 2008-09-27  Matthias Clasen  <mclasen@redhat.com>
2244
2245         Bug 339367 – Incorrect spotlocation
2246
2247         * modules/input/gtkimcontextxim.c: Correct the spot location
2248         for on-the-spot style.
2249
2250 2008-09-27  Denis Washington  <denisw@svn.gnome.org>
2251
2252         * gtk/gtkiconview.c: only draw keyboard focus when keyboard navigation
2253         is used, like GtkTreeView. (Bug #553575)
2254
2255 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
2256
2257         Bug 552959 – GtkTrayIcon: _NET_SYSTEM_TRAY_VISUAL and real
2258         transparency
2259
2260         * gtk/gtktrayicon-x11.c: Add support for the _NET_SYSTEM_TRAY_VISUAL
2261         property described in
2262         http://lists.freedesktop.org/archives/xdg/2008-September/009919.html
2263         If _NET_SYSTEM_TRAY_VISUAL is a visual with an alpha channel, the 
2264         parent-relative-background hack is skipped and we draw with a real
2265         transparent background.
2266
2267         * gtk/gtkrc.c: Remove the default GtkTrayIcon style, since the
2268         parent-relative background is now set when realizing the tray
2269         icon.
2270
2271         Patch by Owen Taylor
2272
2273 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
2274
2275         Bug 552956 – Should check composite extension version
2276
2277         * gdk/x11/gdkdisplay-x11.c: Check that the version of the
2278         composite extension is at least 0.4.
2279         Patch by Owen Taylor
2280
2281 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
2282         
2283         Bug 553803 – eventually call XCloseDevice on XOpenDevice results
2284
2285         * gdk/x11/gdkinput.c: Add a finalize function for device objects,
2286         and call XCloseDevice there. 
2287
2288         * gdk/x11/gdkinput-x11.c:
2289         * gdk/x11/gdkdisplay-x11.c: Move freeing of device objects to
2290         the finalize function.
2291         Patch by Caolan McNamara
2292         
2293 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
2294
2295         Bug 553578 - tabs are not drawn correctly
2296
2297         * gtk/gtknotebook.c: Track the visibility state of notebook tabs 
2298         between allocations so that we know to redraw the tab labels if 
2299         tabs are hidden and shown without changing position. 
2300         Reported by Marek Kašík, patch by Owen Taylor.
2301
2302 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
2303
2304         Bug 553133 – GtkFileChooser won't ask to mount a volume
2305         Bug 553211 – GtkFileChooserButton unsets filter after first use
2306
2307         * gtk/gtkfilechooserdefault.c (shortcuts_activate_volume): Use
2308         a GtkMountOperation when mounting, so that we get a password
2309         dialog when required.  
2310
2311         * gtk/gtkfilechooserdefault.c (show_and_select_files): Also
2312         get the content-type, since it is used later on. 
2313         Pointed out by Davyd Madeley.
2314
2315 2008-09-26  Cody Russell  <bratsche@gnome.org>
2316
2317         Bug 553917 – Typo in gdkwindow-win32.c
2318
2319         * gdk/win32/gdkwindow-win32.c: Fixed a typo in
2320         update_system_menu().  Changed GDK_DECOR_ALL to GDK_FUNC_ALL.
2321
2322         Reported by Richard Hult
2323
2324 2008-09-25  Marek Kasik  <mkasik@redhat.com>
2325
2326         Bug 553241 – double freed pointer in lpr_write cause firefox3 crash
2327
2328         * modules/printbackends/lpr/gtkprintbackendlpr.c:
2329         The redundant freeing of memory was removed.
2330
2331         Patch by Chris Wang
2332
2333 2008-09-25  Michael Natterer  <mitch@imendio.com>
2334
2335         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_finalize):
2336         don't unref the file system backend, the newly added
2337         unset_file_system_backend() already does this (bug #553135).
2338
2339 2008-09-24  Michael Natterer  <mitch@imendio.com>
2340
2341         * gtk/gtkeventbox.c: events return gboolean not gint, reindented
2342         static prototypes.
2343
2344 2008-09-24  Johan Dahlin  <johan@gnome.org>
2345
2346         Bug 553385 – gtk-builder-convert creates untranslated combobox models
2347
2348         * gtk/gtk-builder-convert: Set the translatable property on
2349         col tags for converted combos.
2350
2351 2008-09-24  Tor Lillqvist  <tml@novell.com>
2352
2353         * gtk-zip.sh.in: Include all of share/man, lib/pkgconfig,
2354         share/aclocal and share/gtk-doc instead of trying to list
2355         individual files or subdirectories. We had missed gail.pc, for
2356         instance.
2357
2358 2008-09-24  Christian Dywan  <christian@imendio.com>
2359
2360         Bug 538782 – Make GtkMenu's arrow size themable
2361
2362         * gtk/gtkmenu.c (gtk_menu_class_init), (gtk_menu_paint):
2363         Implement "arrow-scaling" style property in GtkMenu.
2364
2365 2008-09-24  Christian Dywan  <christian@imendio.com>
2366
2367         Bug 408244 – add GtkDialog::content-area-spacing
2368
2369         * gtk/gtkbox.c (gtk_box_init), (gtk_box_set_spacing),
2370         (_gtk_box_set_spacing_set), (_gtk_box_get_spacing_set):
2371         * gtk/gtkbox.h:
2372         * gtk/gtkdialog.c (gtk_dialog_class_init), (update_spacings):
2373         Implement "content-area-spacing" style property in GtkDialog
2374         and internal helper _gtk_box_get_spacing_set in GtkBox.
2375         Patch by Tim Janik, Sven Herzberg and myself.
2376
2377 2008-09-24  Christian Dywan  <christian@imendio.com>
2378
2379         Bug 541391 – Unfocussable Treeview swallows focus
2380
2381         * gtk/gtktreeview.c (grab_focus_and_unset_draw_keyfocus),
2382         (gtk_tree_view_focus): Honor GTK_WIDGET_CAN_FOCUS properly
2383
2384 2008-09-24  Denis Washington  <denisw@svn.gnome.org>
2385
2386         * gtk/gtkiconview.c: draw focus as a rectangle around the
2387         complete item, not just the text. (Bug #38254)
2388
2389 2008-09-23  Michael Natterer  <mitch@imendio.com>
2390
2391         * gtk/gtkobject.c
2392         * gtk/gtksignal.[ch]: s/GtkType/GType/ and
2393         s/GtkSignalMarshaller/GSignalCMarshaller/.
2394
2395 2008-09-23  Michael Natterer  <mitch@imendio.com>
2396
2397         * gdk/x11/gdkevents-x11.c (gdk_event_translate): remove unused
2398         variable and fix indentation.
2399
2400 2008-09-23  Michael Natterer  <mitch@imendio.com>
2401
2402         * gtk/gtkclist.h
2403         * gtk/gtkctree.h
2404         * gtk/gtklist.h
2405         * gtk/gtklistitem.h
2406         * gtk/gtkobject.h
2407         * gtk/gtkoldeditable.h
2408         * gtk/gtkpixmap.h
2409         * gtk/gtkpreview.h
2410         * gtk/gtktext.h
2411         * gtk/gtktipsquery.h
2412         * gtk/gtktree.h
2413         * gtk/gtktreeitem.h: get rid of GtkType and GTK_CHECK_FOO() also
2414         in all deprecated headers.
2415
2416 2008-09-22  Matthias Clasen  <mclasen@redhat.com>
2417
2418         Bug 553135 – eog crash: assertion failed. Gtk error:
2419         shortcuts_remove_rows: code should not be reached
2420
2421         * gtk/gtkfilechooserdefault.c: Disconnect from GtkFileSystem 
2422         signals when we are destroyed, in order to avoid nasty surprises.
2423         Patch by Claudio Saavedra
2424
2425 2008-09-22  Emmanuele Bassi  <ebassi@linux.intel.com>
2426
2427         Bug 552789 – Show size column in the search and recently used
2428         files modes
2429
2430         * gtk/gtkfilechooserdefault.c: Display the file size column
2431         when in OPERATION_MODE_SEARCH. This removes a stat() call
2432         and simplifies the code a little bit by changing the query
2433         for file informations for each search engine hit.
2434
2435 2008-09-22  Michael Natterer  <mitch@imendio.com>
2436
2437         * gtk/gtksignal.[ch]
2438         * gtk/gtkclist.c
2439         * gtk/gtklist.c
2440         * gtk/gtkmain.c
2441         * gtk/gtktext.c
2442         * gtk/gtktreeitem.c: use G_CALLBACK and GCallback instead of
2443         GTK_SIGNAL_FUNC and GtkSignalFunc also in deprecated code.
2444
2445 2008-09-22  Frederic Crozat  <fcrozat@mandriva.com>
2446
2447         * gtk/gtkfilesystem.c: use the correct gi18n header.
2448         Fixes bug #553000.
2449
2450 2008-09-22  Michael Natterer  <mitch@imendio.com>
2451
2452         * gtk/gtktoolbar.[ch]: add "Deprecated: 2.4" to all the deprecated
2453         append(), prepend() and insert() functions and recommend to use
2454         gtk_toolbar_insert() instead. Use GCallback instead of
2455         GtkSignalFunc even in deprecated API.
2456
2457 2008-09-20  Matthias Clasen  <mclasen@redhat.com>
2458
2459         * gtk/gtkfilechooserbutton.c (filter_model_visible_func): Don't
2460         leak a GFile.
2461
2462 2008-09-19  Owen Taylor  <otaylor@redhat.com>
2463
2464         Small cleanups to debug messages for GtkPlug/GtkSocket
2465
2466         * gtk/gtksocket-x11.c: Fix debug message to say "Socket" not "Plug"
2467         * gtk/gtkplug-x11.c: Remove excess newlines from the ends of debug
2468         messages.
2469
2470 2008-09-19  Carlos Garnacho  <carlos@imendio.com>
2471
2472         Bug 83935 – GtkEntry's default invisible char should be U+25CF
2473
2474         * gtk/gtkentry.c (find_invisible_char) (gtk_entry_init): Find a
2475         more suitable invisible char than '*' based on the used font.
2476         (gtk_entry_class_init) (gtk_entry_set_property)
2477         (gtk_entry_get_property): Add a "invisible-char-set" property.
2478         (gtk_entry_unset_invisible_char): New function, needed now that the
2479         default invisible char isn't fixed.
2480         * gtk/gtkentry.h:
2481         * gtk/gtk.symbols:
2482         * docs/reference/gtk/gtk-sections.txt: Add the new function.
2483
2484 2008-09-19  Christian Persch  <chpe@gnome.org>
2485  
2486         Bug 552837 – mem leak in gtkimmulticontext
2487  
2488         * gtk/gtkimmulticontext.c: (gtk_im_multicontext_get_slave): Plug mem
2489         leak.
2490  
2491 2008-09-18  Emmanuele Bassi  <ebassi@linux.intel.com>
2492
2493         * gtk/gtkfilechooserdefault.c (settings_save): Save the size column
2494         visibility state with the rest of the FileChooser settings.
2495
2496 2008-09-18  Emmanuele Bassi  <ebassi@linux.intel.com>
2497
2498         Bug 325095 – show a 'size' column
2499
2500         * gtk/gtkfilechooserdefault.c:
2501         * gtk/gtkfilechooserprivate.h: Add a context menu item controlling
2502         the visibility of the file size column. This works only for the
2503         browse mode, and the column is not visible by default.
2504
2505         * gtk/gtkfilechoosersettings.[ch]: Add a ShowSizeColumn key to the
2506         settings file.
2507
2508 2008-09-18  Dominic Lachowicz  <domlachowicz@gmail.com>
2509
2510         * modules/engines/ms-windows/*: Revert most of previous patch, as
2511         it didn't work as expected; Some work toward #531086 - the new
2512         GtkTooltip widget doesn't theme properly on win32. Now, at least
2513         the background color seems okay
2514         
2515 2008-09-18  Dominic Lachowicz  <domlachowicz@gmail.com>
2516
2517         * modules/engines/ms-windows/*: MS Windows style should use
2518         pango_win32_font_description_from_logfont; Allows us to rip out a
2519         lot of potentially buggy code, and also get the font specification
2520         from the XP theme (#434987)
2521         
2522 2008-09-18  Matthias Clasen  <mclasen@redhat.com>
2523
2524         * configure.in: updated version number to 2.15.0 for development.
2525
2526         * ChangeLog.pre-2-14: rotate ChangeLog
2527
2528 === Branch for 2.14 ===