]> Pileus Git - ~andy/gtk/blob - ChangeLog
Bug 573067 - Intra-app dnd of text behavior on Windows is wrong
[~andy/gtk] / ChangeLog
1 2009-03-11  Tor Lillqvist  <tml@iki.fi>
2
3         Bug 573067 - Intra-app dnd of text behavior on Windows is wrong
4
5         * gdk/win32/gdkdnd-win32.c (local_send_motion) (gdk_drag_motion):
6         The default action should be move, not copy. Tweak how the
7         GdkDragAction fields in GdkDragContexts are changed. Seems to help
8         the problem.
9
10         Add more debugging printout for --gdk-debug=dnd to many functions.
11
12         * gdk/win32/gdkmain-win32.c
13         * gdk/win32/gdkprivate-win32.h: (_gdk_win32_drag_protocol_to_string)
14         (_gdk_win32_drag_action_to_string): New functions for use in
15         debugging printouts.
16         
17 2009-03-11  Tor Lillqvist  <tml@iki.fi>
18
19         * gdk/win32/gdkdnd-win32.c: Use G_DEFINE_TYPE. Some debugging
20         printout changes. Hacking on the OLE2_DND code, which still
21         doesn't work, though, and is not normally compiled.
22
23 2009-03-11  Tor Lillqvist  <tml@iki.fi>
24
25         Bug 570896 - gdkevents-win32.c(2947) : error C4053: one void
26         operand for '?:'
27
28         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix
29         compilation error with MSVC. While at it add clarifying comments
30         and fix a typo in the debugging output.
31
32 2009-03-11  Tor Lillqvist  <tml@iki.fi>
33
34         Bug 574794 - Can not resize shaped windows on Windows
35
36         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On handling
37         WM_WINDOWPOSCHANGED, don't do anything if the position and size
38         hasn't changed. I am not exactly sure I understand why this helps
39         this particular bug.
40
41 2009-03-10  Matthias Clasen  <mclasen@redhat.com>
42
43         Bug 574561 – gtk_style_get "shadows" g_object_get
44
45         * gtk/gtk.symbols:
46         * gtk/gtkstyle.[hc]: Rename gtk_style_get_property to
47         gtk_style_get_style_property to avoid problems for language
48         bindings. Pointed out by Torsten Schoenfeld.
49
50 2009-03-10  Matthias Clasen  <mclasen@redhat.com>
51
52         Bug 574622 – GtkEntry: Should we wrap icon-press and icon-release
53         signals?
54
55         * gtk/gtkentry.c: ::icon-press and ::icon-release are not
56         action signals. Pointed out by Murray Cumming
57
58 2009-03-04  Michael Hasselmann <michaelh@openismus.com>
59
60         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_contents_changed):
61         Fixed regression reported in bug #574059. (search button not available in 
62         some cases.) The old implementation relied on bug #572478.
63
64 2009-03-10  Alexander Larsson  <alexl@redhat.com>
65
66         * gtk/gtkmountoperation.c:
67         (gtk_mount_operation_ask_password):
68         Clear all optionally created widget pointer in priv. Initially
69         priv is cleared so thats ok, but on a second call we may have
70         leftovers from previous calls which is problematic if for instance
71         we asked for the user the first time and not the second, then we
72         will access the old priv->username_entry.
73
74 2009-03-06  Michael Natterer  <mitch@gimp.org>
75
76         * gtk/gtkscalebutton.c (gtk_scale_button_set_property): don't call
77         gtk_orientable_set_orientation() because that calls g_object_set()
78         again -> infinite recursion. Call gtk_scale_button_set_orientation()
79         instead.
80
81 2009-03-02  Matthias Clasen  <mclasen@redhat.com>
82
83         * configure.in: Bump version
84
85 2009-03-02  Matthias Clasen  <mclasen@redhat.com>
86
87         * === Released 2.15.5 ===
88
89 2009-03-02  Matthias Clasen  <mclasen@redhat.com>
90
91         * NEWS: Updates
92
93 2009-03-02  Matthias Clasen  <mclasen@redhat.com>
94
95         Bug 546285 – Allow GtkEntry to draw progress
96
97         * gtk/gtkentry.c: Improve the drawing of progress in entries,
98         using fg/bg[SELECTED]. Add a progress-border style property.
99         Draw progress behind icons too.
100         * gtk/gtkrc.c: Add defaults for fg/bg[SELECTED] in entries.
101         Patch by Benjamin Berg.
102
103 2009-03-02  Matthias Clasen  <mclasen@redhat.com>
104
105         Bug 573688 – Don't steal update region in gtk_text_view_paint()
106
107         * gtk/gtktextview.c (gtk_text_view_paint): If additional areas got
108         invalidated, don't try to add them to the paint region: in an expose
109         handler, we cannot paint outside the area that was passed in, since
110         drawing will be clipped. So stealing the update region from the
111         window causes lost draws.
112         Patch by Owen Taylor
113
114 2009-03-02  Alexander Larsson  <alexl@redhat.com>
115
116         Bug 573087 – gdkwindow.c: {x,y}_offset used uninitialized
117
118         * gdk/gdkwindow.c (gdk_window_clear_backing_rect_redirect):
119         Don't use uninitialized vars.
120         Fix offsets for redirected pixmap, draw to pixmap not window.
121
122 2009-03-02  Theppitak Karoonboonyanan  <thep@linux.thai.net>
123
124         Bug 457086 - numpad does not work when the Thai-Lao input method is
125         used
126
127         * modules/input/gtkimcontextthai.c (is_context_lost_key): Do not count
128         character-generating keypads as context-lost keys. (patch recommitted
129         after approval)
130
131 2009-03-01  Matthias Clasen  <mclasen@redhat.com>
132
133         * gdk/gdkkeysyms.h: Fix the sorting of GDK_KP_Equal.
134
135 2009-03-01  Matthias Clasen  <mclasen@redhat.com>
136
137         Bug 552619 – File Chooser no longer automatically enters newly created
138         directories
139
140         * gtk/gtkfilechooserdefault.c (edited_idle_cb): Switch to the newly
141         created folder on success.
142
143 2009-03-01  Matthias Clasen  <mclasen@redhat.com>
144
145         Bug 573515 – po-properties/ special Makefile.in.in handling causes
146         failure to build
147
148         * configure.in: Generate po-properties/POTFILES at configure time.
149         Patch by Loïc Minier
150
151 2009-03-01  Matthias Clasen  <mclasen@redhat.com>
152
153         * demos/gtk-demo/appwindow.c: Set the program-name property
154         of the about dialog.
155
156         * docs/tools/widgets.c: Add GtkAboutDialog
157
158 2009-02-28  Matthias Clasen  <mclasen@redhat.com>
159
160         Bug 572273 – No replacement documented for gtk_action_connect_proxy()
161
162         * gtk/gtkaction.c: Make gtk-doc pick up deprecation notes.
163         Insisted on by Andre Klapper.
164
165 2009-02-28  Matthias Clasen  <mclasen@redhat.com>
166
167         Bug 573287 – Warning on startup
168
169         * gtk/gtkstatusicon.c (gtk_status_icon_finalize): Disconnect
170         all tray icon signals. Noticed by Bastien Nocera
171
172 2009-02-28  Matthias Clasen  <mclasen@redhat.com>
173
174         Bug 573211 – Setting screen for popup windows
175
176         * gtk/gtkentrycompletion.c:
177         * gtk/gtknotebook.c: Keep popups on the right screen.
178         Pointed out by Morten Welinder
179
180 2009-02-28  Matthias Clasen  <mclasen@redhat.com>
181
182         Bug 573113 – Can't build tests due to testfilechooserbutton.c...
183
184         * tests/testfilechooserbutton.c: Don't use deprecated API.
185         Reported by Tobias Mueller
186
187 2009-02-28  Matthias Clasen  <mclasen@redhat.com>
188
189         Bug 573069 – Gdk-CRITICAL warnings with Gtk 2.14 when dragging
190         GtkNotebook tabs
191
192         * gtk/gtkwidget.c (_gtk_widget_synthesize_crossing): Be a little
193         more careful when navigating up the parent chain.
194
195         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Reset the
196         pointer window thats stored on the screen when it is destroyed.
197
198 2009-02-27  Matthias Clasen  <mclasen@redhat.com>
199
200         Bug 572996 – crash in Home Folder: Trying to open the sidebar
201
202         * gtk/gtkpaned.c (get_child_panes): Handle widget being NULL.
203         Pointed out by Wouter Bolsterlee.
204
205 2009-02-27  Matthias Clasen  <mclasen@redhat.com>
206
207         Bug 572972 – GtkRecentChooserDefault: memory leak in
208         copy_activated_cb()
209
210         * gtk/gtkrecentchooserdefault.c (copy_activated_cb): Don't leak
211         a GtkRecentInfo. Found by Tommi Rantala
212
213 2009-02-27  Matthias Clasen  <mclasen@redhat.com>
214
215         Bug 572968 – GtkIconView: image_description setter function strdups
216         wrong string
217
218         * gtk/gtkiconview.c
219         (gtk_icon_view_item_accessible_image_set_image_description): Copy
220         the right string. Pointed out by Tommi Rantala
221
222 2009-02-27  David Zeuthen  <davidz@redhat.com>
223
224         Bug 573416 – GtkMountOperation fixes for ask_password()
225
226         * gtk/gtkmountoperation.c (gtk_mount_operation_ask_password):
227         Split the message from GMountOperation into primary/secondary like
228         we also do in gtk_mount_operation_ask_question()
229
230 2009-02-27  Michael Natterer  <mitch@imendio.com>
231
232         Bug 573383 – Setting a textview's buffer to NULL doesn't do a
233         complete job
234
235         * gtk/gtktextview.c (gtk_text_view_set_buffer): always set
236         text_view->layout's buffer, also if it's NULL.
237
238 2009-02-25  Tristan Van Berkom <tvb@gnome.org>
239
240         Bug 572904 – GtkRadioAction broken in trunk
241
242         * gtk/gtkradioaction.c: When setting non active state always
243         notify the action's active state (this prevents toggle type proxies
244         used with radio actions from deactivating when pressed a second time).
245
246 2009-02-25  Xan Lopez  <xan@gnome.org>
247
248         Bug 495320 - GtkRange does not use gdk_event_request_motions
249
250         * gtk/gtkrange.c:
251         (gtk_range_motion_notify): Use gdk_event_request_motions to
252         request more motion events, as suggested in the docs for widgets
253         using motion hints.
254
255 2009-02-24  Matthias Clasen <mclasen@redhat.com>
256
257         * gdk/x11/gdkevents-x11.c:
258         * gdk/x11/gdkscreen-x11.[hc]: Another attempt at getting Xrandr
259         screen size changes right. Actually handle XRRScreenChangeNotify
260         events, and ignore root ConfigureNotify events if we are using
261         Xrandr. Only emit size-changed signals if the screen size changed,
262         and only emit monitor-changed signals if the monitors changed.
263
264 2009-02-23  Matthias Clasen <mclasen@redhat.com>
265
266         Bug 565199 – Ellipsize text in Places list
267
268         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): Never scroll
269         the places horizontally. Instead, ellipsize the text.
270
271 2009-02-19  Michael Hasselmann <michaelh@openismus.com>
272
273         * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal):
274         Added a check to not emit a "changed" signal when an already invalid
275         selection was set to invalid.
276
277 2009-02-22  Matthias Clasen <mclasen@redhat.com>
278
279         * gtk/gtk.symbols:
280         * gtk/gtkactivatable.[hc]: Rename gtk_activatable_reset to
281         gtk_activatable_sync_action_properties, since the previous name
282         was deemed too generic. Update all implementations.
283
284 2009-02-19  Ray Strode  <rstrode@redhat.com>
285
286         * gdk/x11/gdkscreen-x11.c
287         (monitor_compare_function), (init_randr13):
288         After using randr to get a list of monitors,
289         sort the list such that the biggest output
290         of "cloned" outputs comes first in the list.
291         This helps apps that don't generally handle
292         overlapping outputs to work better in randr
293         clone mode.
294
295 2009-02-19  Sven Neumann  <sven@gimp.org>
296
297         * gdk/directfb/gdkwindow-directfb.c
298         (gdk_directfb_window_move_resize): looks like being called with
299         negative width and height should be interpreted as a move. Fixes
300         scrolling and makes popups work to some extent.
301
302         (_gdk_directfb_move_resize_child): formatting.
303
304 2009-02-19  Sven Neumann  <sven@gimp.org>
305
306         * gdk/directfb/gdkdisplay-directfb.c (gdk_display_open): move the
307         call to _gdk_windowing_window_init() up a little. Fixes a crash
308         when running on pseudo-color visuals. Thanks to Masse Nicolas for
309         pointing this out.
310
311 2009-02-19  Sven Neumann  <sven@gimp.org>
312
313         * gdk/directfb/gdkwindow-directfb.c
314         (gdk_window_foreign_new_for_display, gdk_directfb_window_new):
315         initialize private->impl. Thanks to Masse Nicolas for pointing
316         this out.
317
318 2009-02-19  Matthias Clasen  <mclasen@redhat.com>
319
320         Bug 572387 – gdm crashes after gtk 2.15.4 upgrade
321
322         * gdk/x11/gdkscreen-x11.c (init_xrandr13): If X is broken and returns
323         no monitors, fall back to other multihead init methods, so that we
324         at least get one monitor set up.
325
326 2009-02-19  Michael Natterer  <mitch@imendio.com>
327
328         * gtk/gtkmountoperation.c: sort functions so their order is more
329         "standard", some cosmetic cleanup (not changing any code).
330
331 2009-02-19  Michael Natterer  <mitch@imendio.com>
332
333         * tests/testgtk.c: add some orientation flipping code to the
334         "flipping" test.
335
336 2009-02-19  Michael Natterer  <mitch@imendio.com>
337
338         * gtk/gtkscalebutton.c: make the orientation flipping much simpler
339         by using the GtkOrientable features of the involved widgets:
340
341         (gtk_scale_button_init): create the frame, box and scale here,
342         they never need to be recreated because they implement GtkOrientable.
343
344         (gtk_scale_button_constructor): remove their construction here.
345
346         (gtk_scale_button_set_orientation): don't destroy and re-create
347         anything. Instead, simply set the orientation of the above created
348         widgets and fiddle a bit with the "plus" and "minus" buttons'
349         packing and the scale's "inverted" state.
350
351         Remove separate internal GtkScaleButtonHScale and
352         GtkScaleButtonVScale subclasses and simply have a
353         GtkScaleButtonScale directly inherited from GtkScale.
354
355 2009-02-19  Theppitak Karoonboonyanan  <thep@linux.thai.net>
356
357         * modules/input/gtkimcontextthai.c (is_context_lost_key): Revert the
358         unapproved patch for bug 457086.
359
360 2009-02-18  Matthias Clasen  <mclasen@redhat.com>
361
362         * gdk/x11/gdkscreen-x11.c (init_randr13): Ignore disconnected outputs,
363         and fill in name and physical dimensions.
364
365 2009-02-18  Sven Neumann  <sven@gimp.org>
366
367         Bug 533456 – Memory leak when window is destroyed
368
369         * gdk/directfb/gdkdirectfb.h
370         * gdk/directfb/gdkprivate-directfb.h
371         * gdk/directfb/gdkcursor-directfb.c
372         * gdk/directfb/gdkevents-directfb.c
373         * gdk/directfb/gdkwindow-directfb.c: removed all #ifdef checks for
374         DIRECTFB_MAJOR_VERSION >= 1 and compile that code unconditionally.
375         as we depend on DirectFB >= 1.0.0 now.  Fixes a potential build
376         issue that would lead to a memory leak as described in bug #533456.
377
378 2009-02-18  Sven Neumann  <sven@gimp.org>
379
380         Bug 513422 – Unknown meaning of translatable messages
381
382         * gdk/directfb/gdkdisplay-directfb.c: removed broken and commented
383         code and the translatable messages that belonged to it.
384
385 2009-02-18  Sven Neumann  <sven@gimp.org>
386
387         Bug 560671 – the client_message API doesn't work in DirectFB
388
389         * gdk/directfb/gdkevents-directfb.c: applied a slightly cleaned up
390         patch from Steve Lhomme that adds this functionality using
391         DirectFB's DFBUserEvent.
392
393 2009-02-18  Sven Neumann  <sven@gimp.org>
394
395         Bug 543710 – Dead keys do not work anymore with DirectFB
396
397         * gdk/directfb/gdkkeys-directfb.c (gdk_directfb_translate_key):
398         applied patch from Josselin Mouette that removes special handling
399         of dead keys as that is done by DirectFB for a long time already.
400
401 2009-02-18  Sven Neumann  <sven@gimp.org>
402
403         * configure.in: depend on DirectFB >= 1.0.0. There's no point in
404         using an earlier development version.
405
406 2009-02-18  Sven Neumann  <sven@gimp.org>
407
408         Bug 554407 – directfb backend does not implement GdkWindowImpl
409
410         * gdk/directfb/gdkgeometry-directfb.c
411         * gdk/directfb/gdkprivate-directfb.h
412         * gdk/directfb/gdkwindow-directfb.c: fix the build of the DirectFB
413         backend and resurrect basic functionality. Based on a patch from
414         the Ubuntu bug-tracker and work by Masse Nicolas.
415
416 2009-02-18  Theppitak Karoonboonyanan  <thep@linux.thai.net>
417
418         Bug 457086 - numpad does not work when the Thai-Lao input method is
419         used
420
421         * modules/input/gtkimcontextthai.c (is_context_lost_key): Do not count
422         character-generating keypads as context-lost keys.
423
424 2009-02-17  Matthias Clasen  <mclasen@redhat.com>
425
426         * configure.in: Bump version
427
428 2009-02-17  Matthias Clasen  <mclasen@redhat.com>
429
430         * === Released 2.15.4 ===
431
432         * gdk/tests/Makefile.am: Disable check-gdk-cairo for now.
433
434 2009-02-17  Andre Klapper  <a9016009@gmx.de>
435
436         * demos/gtk-demo/main.c:
437         Fix deprecated glib call.
438
439 2009-02-17  Matthias Clasen  <mclasen@redhat.com>
440
441         * NEWS: Updates
442
443 2009-02-16  Matthias Clasen  <mclasen@redhat.com>
444
445         Bug 572040 – GtkAssistant does not expose page titles
446
447         * gtk/gtkassistant.c (gtk_assistant_accessible_ref_child): Set
448         the object name to the page title. Proposed by Eitan Isaacson
449
450 2009-02-16  Matthias Clasen  <mclasen@redhat.com>
451
452         Bug 572041 – Focus should change when advancing forward in GtkAssistant
453
454         * gtk/gtkassistant.c (set_current_page): Set focus when the current
455         page changes. Pointed out by Eitan Isaacson
456
457 2009-02-16  Matthias Clasen  <mclasen@redhat.com>
458
459         * configure.in: Require GLib 2.19.7 for GMountOperation::aborted.
460
461         * gtk/gtkmountoperation.c: Implement GMountOperation::aborted.
462
463 2009-02-16  Sven Neumann  <sven@gimp.org>
464
465         * gdk/gdk.symbols
466         * gdk/directfb/gdkkeys-directfb.c: implement
467         gdk_keymap_get_caps_lock_state(). No "state-changed" signal yet.
468
469 2009-02-16  Tor Lillqvist  <tml@novell.com>
470
471         Bug 571873 - Compile error with gdk/win32/gdkselection-win32.c
472
473         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Cast
474         gpointer to char * before pointer arithmetic to avoid compilation
475         error with MSVC.
476
477         (_gdk_selection_property_delete): Remove unused variable.
478
479 2009-02-13  Matthias Clasen  <mclasen@redhat.com>
480
481         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Don't forget to
482         register randr events. Found by Søren Sandmann
483
484 2009-02-13  Matthias Clasen  <mclasen@redhat.com>
485
486         * configure.in: Check for Xrandr 1.3
487
488         * gdk/x11/gdkdisplay-x11.[ch]: Rename have_randr12 to have_randr13
489         and set if if we have randr 1.3
490
491         * gdk/x11/gdkscreen-x11.c: Go back to using randr for monitor
492         information, if we have XRRGetScreenResourcesCurrent.
493 :
494 2009-02-12  Cody Russell  <bratsche@gnome.org>
495
496         Bug 571576 – gdk_pixbuf_save_to_stream() broken
497
498         * gdk-pixbuf/gdk-pixbuf-io.c: Fix gdk_pixbuf_save_to_stream() so that
499         it does not always return FALSE (even when it succeeds), and also so
500         that it does not set error to NULL when something goes wrong.
501
502 2009-02-12  Marek Kasik  <mkasik@redhat.com>
503
504         Bug 568571 – Asian am/pm format on cups print backend's time parsing
505
506         * modules/printbackends/cups/gtkprintbackendcups.c: Add Asian am/pm
507         format into formats recognized by CUPS backend
508
509 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
510
511         Bug 570824 – [a11y] TreeView is not keyboard (re)focusable after 
512         selecting a cell in a non-sortable column
513
514         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Don't grab
515         focus to a header button if it is not focusable. Problem reported
516         by Joanmarie Diggs
517
518 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
519
520         Bug 508545 – No way to identify terminal classes from documentation
521
522         * gtk/gtkvolumebutton.[hc]: Move the _GtkVolumeButton definition
523         into the header to make it possible to derive from GtkVoumeButton.
524         Reported by Chris Lord.
525
526 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
527
528         Bug 571196 – gtk_binding_entry_add_signall deprecated without 
529         alternative
530         * gtk/gtk.symbols:
531         * gtk/gtkbindings.[hc]: Undeprecate gtk_binding_entry_add_signall
532         since its replacement is a varargs function. Complaint by
533         Torsten Schoenfeld.
534
535 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
536
537         Bug 571249 – Icons are not drawn properly when initial widget 
538         state is insensitive
539
540         * gtk/gtkentry.c (gtk_entry_ensure_pixbuf): Render icons
541         in normal state, regardless of the entrys state. Reported by
542         Enrico Tröger.
543
544 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
545
546         * gtk/gtkfilechooserbutton.c: Don't emit the file-set signal
547         if the file chooser dialog is canceled. But emit it if a file
548         is received via DND.
549
550 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
551
552         Bug 353196 – Add a file-set signal to GtkFileChooserButton
553
554         * gtk/gtkfilechooserbutton.c: Remove GTK_SIGNAL_ACTION
555         from the file-set signal, that wasn't supposed to have it.
556
557 2009-02-10  Takao Fujiwara  <takao.fujiwara@sun.com>
558
559         Bug 571015 – libprintbackend-cups has unlocalized strings
560
561         * modules/printbackends/cups/gtkprintbackendcups.c:
562         Added a translator comment with the request of translators.
563
564 2009-02-09  Richard Hughes  <richard@hughsie.com>
565
566         * docs/reference/gtk/migrating-GtkEntry-icons.sgml:
567         Fix the enumerated name in the migration document.
568
569 2009-02-09  Cody Russell  <bratsche@gnome.org>
570
571         * gdk/win32/gdkwin32.h: Add potentially missing #defines for
572         XBUTTON1, etc.  Fixes the build that was broken in r21746.
573
574 2009-02-09  Takao Fujiwara  <takao.fujiwara@sun.com>
575
576         Bug 571015 – libprintbackend-cups has unlocalized strings
577
578         Reviewed by Matthias Clasen  <mclasen@redhat.com>
579
580         * modules/printbackends/cups/gtkprintbackendcups.c (handle_option):
581         Add translatable strings from ppd files.
582
583 2009-02-06  Matthias Clasen  <mclasen@redhat.com>
584
585         Make the new GtkAction code work with PolicyKit-gnome's use of actions.
586
587         * gtk/gtkaction.c (gtk_action_[un]block_activate_from): Block
588         the action.
589
590         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_activatable_reset):
591         * gtk/gtktogglebutton. (gtk_toggle_button_activatable_reset):
592         * gtk/gtktoggletoolbutton.c (gtk_toggle_tool_button_activatable_reset):
593         Work with non-toggle actions without complaining.
594
595         * gtk/gtktoolbutton.c (gtk_tool_button_activatable_update): Updating
596         the icon-name should not remove the label.
597
598         * gtk/gtkimagemenuitem.c (activatable_update_icon_name): Also
599         update the image when the icon name is set to NULL.
600
601 2009-02-06  Matthew Barnes  <mbarnes@redhat.com>
602
603         * gtk/gtklabel.c (gtk_label_set_label): Accept a NULL string.
604
605 2009-02-03  Matthias Clasen  <mclasen@redhat.com>
606
607         Bug 538439 – tooltip may appear in upper left corner instead of 
608         over widget
609
610         * gtk/gtktooltip.c (gtk_tooltip_trigger_query): Set the root 
611         coordinates in the event correctly. Patch by Kristian Rietveld.
612
613 2009-02-02  Matthias Clasen  <mclasen@redhat.com>
614
615         * configure.in: Bump version
616
617 2009-02-02  Matthias Clasen  <mclasen@redhat.com>
618
619         * === Released 2.15.3 ===
620
621         * NEWS: Updates
622
623 2009-02-01  Behdad Esfahbod  <behdad@gnome.org>
624
625         * gtk/gtksettings.c (gtk_settings_class_init): Change the
626         "gtk-fontconfig-timestamp" property from int to uint.  Doesn't affect
627         anything in practice, except that  it overflows years later...
628
629 2009-02-01  Behdad Esfahbod  <behdad@gnome.org>
630
631         Bug 569635 – fontchooser should reload list of families/styles on
632         theme change
633
634         * gtk/gtkfontsel.c (gtk_font_selection_class_init),
635         (gtk_font_selection_init), (gtk_font_selection_finalize),
636         (gtk_font_selection_ref_family), (gtk_font_selection_ref_face),
637         (gtk_font_selection_reload_fonts),
638         (gtk_font_selection_screen_changed),
639         (gtk_font_selection_style_set),
640         (gtk_font_selection_scroll_to_selection),
641         (gtk_font_selection_scroll_on_map),
642         (gtk_font_selection_select_font),
643         (gtk_font_selection_show_available_fonts),
644         (gtk_font_selection_show_available_styles),
645         (gtk_font_selection_select_style),
646         (gtk_font_selection_select_font_desc),
647         (gtk_font_selection_set_font_name):
648         Reload Pango families and faces in style_set.  Installing/uninstalling
649         fonts shows up immediately in an open font chooser now.
650
651 2009-01-31  Matthias Clasen  <mclasen@redhat.com>
652
653         Bug 162726 – Multiple Latin layouts in XKB break keyboard shortcuts
654
655         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup): Change the handling of
656         fuzzy matches: As long there are any exact matches, only exact 
657         matches are returned. If there are no exact matches, fuzzy matches 
658         will be returned, as long as they are not shadowing a possible exact
659         match. This means that fuzzy matches won't be considered if their
660         keyval is present in the current group. Problem reported by
661         many people, patch by Simos Xenitellis.
662
663 2009-01-31  Matthias Clasen  <mclasen@redhat.com>
664
665         * NEWS: Updates
666
667 2009-01-30  Fridrich Strba  <fridrich.strba@bluewin.ch>
668
669         * configure.in: Allow linking in static jasper gdk-pixbuf loader.
670         (reviewed by Tor Lillqvist)
671
672 2009-01-30  Matthias Clasen  <mclasen@redhat.com>
673
674         * gtk/gtktextview.c (preedit_changed_handler): Be more careful
675         with the beeps, since preedit-changed is occasionally emitted 
676         without actual input. Pointed out by Tor Lillqvist.
677
678 2009-01-30  Matthias Clasen  <mclasen@redhat.com>
679
680         Bug 569918 – 64bit portability issue in gtkrecentchooser.c
681
682         * gtk/gtkrecentchooser.c (gtk_recent_chooser_set_use_action_appearance):
683         Avoid a compiler warning. Patch by Magnus Boman.
684
685 2009-01-30  Matthias Clasen  <mclasen@redhat.com>
686
687         Bug 359288 – Toolbar items are not shown after hiding
688
689         * gtk/gtktoolbar.c (slide_idle_handler): Make sure we queue
690         at least one resize. This fixes a problem with toolitems remaining
691         invisible when they shouldn't that was reported by Christian Weiske.
692
693 2009-01-30  Matthias Clasen  <mclasen@redhat.com>
694
695         * gtk/gtkrecentchoosermenu.c (gtk_recent_chooser_menu_create_item):
696         Always show images.
697
698 2009-01-29  Tor Lillqvist  <tml@novell.com>
699
700         Bug 559408 - Transparency lost when images are copied between GTK+
701         and the clipboard on Windows
702
703         The code in gdkselection-win32.c is simplified quite a lot. When
704         an image is stored on the clipboard from GTK+, only the "PNG" and
705         CF_DIB formats are advertised. PNG is our preferred format because
706         it can losslessly represent any image that gdk-pixbuf can handle,
707         even with alpha, unambiguously. CF_DIB is also advertised because
708         of its ubiquitous support in Windows software.
709
710         Delayed rendering is used as before, so for other data than text
711         nothing is actually stored on the clipboard until some app asks
712         for it.
713
714         It's pointless to advertise images formats like "image/png" or
715         "image/x-MS-bmp" that no other Windows application is going to
716         look for anyway. Likewise it's pointless to store text under
717         formats like "text/plain" or "UTF8_STRING". Just store
718         CF_UNICODETEXT. CF_TEXT will be available as a synthesized format
719         anyways.
720
721         Office 2007 offers and asks for images in PNG format using the
722         registered clipboard format name "PNG", so we do likewise. If the
723         "PNG" format is available that is preferred when copying to GTK+
724         from the clipboard.
725
726         Unfortunately Word 2007 still uses CF_DIB without handling
727         alpha. But PowerPoint 2007 uses PNG if available and handles alpha
728         correctly. Both Word and Powerpoint offer PNG with alpha nicely.
729
730         Firefox and IE7 offer images that contain alpha as 32-bit version
731         3 BI_RGB DIBs with the undocumented "extra" bytes actually being
732         alpha. Also, alpha is premultiplied into the RGB bytes, presumably
733         because that is how AlphaBlend() wants such DIBs. That is also
734         taken care of. At least for Firefox it easy to be sure that a
735         CF_DIB on the clipboard is from Firefox.
736
737         Also some general stylistic cleanup, comment improvements, and
738         improvements of debugging printout especially in the clipboard
739         handling. Those are not detailled below.
740
741         * gdk/win32/gdkprivate-win32.h
742         * gdk/win32/gdkglobals-win32.c
743         * gdk/win32/gdkgmain-win32.c: Move some globals that were used
744         only in gdkselection-win32.c to be local to that file.
745
746         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Don't
747         bother checking if text to be placed on the clipboard consists of
748         only ASCII.
749
750         * gdk/win32/gdkselection-win32.c: Add static variables for a list
751         of GdkPixbuf-supported formats, well-known registered clipboard
752         formats for images, and for GdkAtoms for well-known image and text
753         formats.
754
755         (_gdk_win32_selection_init): Initialize above static variables.
756
757         (selection_property_store) (gdk_selection_property_get)
758         (_gdk_selection_property_delete): Don't use a FIFO of GdkSelProps
759         for a window after all, it breaks testtext. See bug #163844.
760
761         (gdk_selection_convert): When converting to the TARGETS format,
762         i.e. when the caller wants to know what clipboard formats are
763         available, if PNG is available we report just that and skip
764         CF_DIB, JPEG and GIF even if advertised.
765
766         If CF_UNICODETEXT is available, report only UTF8_STRING.
767
768         When converting to the UTF8_STRING format, i.e. when the caller
769         wants text from the clipboard, try just CF_UNICODETEXT. There is
770         no point in trying CF_TEXT as Windows will synthesize
771         CF_UNICODETEXT from CF_TEXT anyway, if some app has stored just
772         CF_TEXT.
773
774         When converting to the image/bmp format, i.e. when the caller
775         wants an CF_DIB image from the clipboard, we check if the DIB is a
776         version 3 32-bit BI_RGB one that is likely to actually contain
777         alpha in the "extra" bytes. Such a DIB is likely to have
778         premultiplied alpha even, at least in the case of Firefox 3 and
779         IE7. We then edit the DIB in-place into a version 5 one in
780         BI_BITFIELDS format and undo the alpha premultiplication.
781
782         In any case, prepend a BMP file header before letting go of the
783         data which will be fed to the gdk-pixbuf bmp loader by upper
784         levels.
785
786         (gdk_win32_selection_add_targets): If some kind of pixmap image
787         format is being added, actually advertise just PNG and
788         CF_DIB. Note that alpha won't be stored on the clipboard through
789         CF_DIB. This is because gdk-pixbuf's bmp loader doesn't save
790         alpha. Furthermore, few if any non-GTK+ Windows apps seem to
791         understand a version 5 DIB with proper alpha anyway.
792
793         (_gdk_win32_selection_convert_to_dib): Simplified muchly.
794
795 2009-01-29  Tor Lillqvist  <tml@novell.com>
796
797         Bug 145058 - Inputting "^^" requires four keystrokes on Win32,
798         differs from platform default behaviour
799
800         * gtk/gtkimcontextsimple.c
801         (check_win32_special_case_after_compact_match): New
802         function. Called from check_compact_table() after a table-based
803         match has committed a character. In case there was two identical
804         dead accents in the input, another copy of the spacing accent that
805         was already committed is committed. This fixes #145058.
806
807         (check_win32_special_cases): New function. Called first from
808         gtk_im_context_simple_filter_keypress(). This fixes another
809         problem: a dead accent followed by a space should commit the
810         corresponding spacing accent. The compose tables from X commit
811         another character in two cases and we want to override that on
812         Windows.
813
814         Add GTK_NOTE (MISC) debugging output to this code.
815
816 2009-01-29  Claudio Saavedra  <csaavedra@igalia.com>
817
818         Bug 569435 – make maintainer-clean removes non-generated sources
819
820         * gdk/Makefile.am: Do not remove gdkprivate.h and gdkwindowimpl.h
821         during make maintainer-clean, as these files are not generated.
822
823 2009-01-28  Philip Withnall  <philip@tecnocode.co.uk>
824
825         * gtk/gtktreeview.c: Small documentation fix.
826
827 2009-01-27  Matthias Clasen  <mclasen@redhat.com>
828
829         * gtk/gtkentry.c: Use the get_text_area_size vfunc to make
830         alignment and icons in spin buttons work correctly.
831
832 2009-01-27  Matthias Clasen  <mclasen@redhat.com>
833         
834         Bug 569336 – change in gtkbutton klass is causing crash when 
835         activating menu item
836
837         * gtk/gtktogglebutton.c: Don't chain the clicked handler
838         up unconditionally.
839
840 2009-01-27  Matthias Clasen  <mclasen@redhat.com>
841
842         * configure.in: Bump version
843
844 2009-01-27  Matthias Clasen  <mclasen@redhat.com>
845
846         * === Released 2.15.2 ===
847
848         * NEWS: Updates
849
850 2009-01-26  Matthias Clasen  <mclasen@redhat.com>
851
852         Bug 322932 – Always show icons on panel menus
853
854         * gtk/gtk.symbols:
855         * gtk/gtkimagemenuitem.[hc]: Add a property to override the
856         show-menu-images setting for individual menuitems. Patch by
857         William Jon McCann.
858
859 2009-01-26  Matthias Clasen  <mclasen@redhat.com>
860
861         * gtk/gtkbutton.c: Activate the action in a regular clicked
862         handler instead of the default handler, to make it work with
863         derived classes which don't chain up their clicked handler.
864
865 2009-01-26  Matthias Clasen  <mclasen@redhat.com>
866
867         Bug 569104 – Toggle menu entries showed as check menu entries 
868         in nautilus
869
870         * gtk/gtkactivatable.c (gtk_activatable_do_set_related_action):
871         Block the previous action when calling reset() to prevent
872         accidental activation of the previous action.
873
874         * gtk/gtkaction.c (gtk_action_activate): Don't compare booleans.
875
876         * gtk/gtktoggleaction.c (gtk_toggle_action_set_active): Remove
877         extraneous braces.
878
879 2009-01-26  Bastien Nocera  <hadess@hadess.net>
880
881         Bug 569240 - Crasher when using markers
882
883         * gtk/gtkrange.c (gtk_range_destroy): Avoid crashes when destroying
884         a GtkRange with markers
885
886 2009-01-26  Richard Hult  <richard@imendio.com>
887
888         Bug 566628 – gdk_display_close always asserts on win32 and quartz
889
890         * gdk/quartz/gdkdisplay-quartz.c
891         (_gdk_windowing_set_default_display): Copy fix for bug #566628
892         from the win32 backend: Allow also a NULL parameter in the
893         g_assert().
894
895 2009-01-25  Matthias Clasen  <mclasen@redhat.com>
896
897         * gtk/gtktoolitem.[hc]: Export the function to create a proxy
898         menuitem from the action for use in subclasses.
899
900         * gtk/gtktoolbutton.c:
901         * gtk/gtktoggletoolbutton.c: Use it here.
902
903         * gtk/gtkrecentchoosermenu.c: Avoid temporary empty state that
904         can lead to a recent action proxy menu being erroneously hidden.
905
906 2009-01-25  Matthias Clasen  <mclasen@redhat.com>
907
908         * gtk/gtkradioaction.c: Set draw-as-radio to TRUE.
909
910 2009-01-24  Matthias Clasen  <mclasen@redhat.com>
911
912         Revert changes for bug 567124. Instead of trying to avoid
913         setting up the im context before the widget is realized, just
914         reset it when the client window is set.
915
916         * gtk/gtkimmulticontext.c: Reset the slave when a client window
917         is set.
918
919         * gtk/gtkimmodule.c
920         * gtk/gtktextview.c: Revert changes for bug 567124.
921
922 2009-01-25  Claudio Saavedra  <csaavedra@igalia.com>
923
924         * gtk/gtktreeview.c: Use gtk-doc syntax to refer to properties in
925         the docstrings.
926
927 2009-01-25  Claudio Saavedra  <csaavedra@igalia.com>
928
929         * gtk/gtkiconview.c: More docstrings improvements
930         regarding reorderable property.
931
932 2009-01-24  Claudio Saavedra  <csaavedra@igalia.com>
933
934         Bug 559420 – gtk_icon_view_enable_model_drag_[source|dest] docs
935         wrt. reorderable property
936
937         * gtk/gtkiconview.c: Improve docstrings regarding reorderable
938         property. Based on a patch by Björn Lindqvist.
939
940 2009-01-24  Matthias Clasen  <mclasen@redhat.com>
941
942         * gtk/gtktoolbutton.c (gtk_tool_button_activatable_reset):
943         Fall back from stock ids to icon names like the old code 
944         did. Patch by Tristan van Berkom.
945
946 2009-01-24  Matthias Clasen  <mclasen@redhat.com>
947
948         * tests/testactions.c: Add a testcase for toolitems using
949         icon names.
950
951 2009-01-24  Matthias Clasen  <mclasen@redhat.com>
952
953         * gdk/x11/gdkcursor-x11.c (_gdk_x11_cursor_update_theme):
954         Don't update blank cursors.
955
956 2009-01-24  Claudio Saavedra  <csaavedra@igalia.com>
957
958         * gtk/gtktreeview.c: (gtk_tree_view_class_init): Slightly
959         improve ::search-column property description.
960
961 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
962
963         * configure.in: Bump version
964
965 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
966
967         * === Released 2.15.1 ===
968
969 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
970
971         * gtk/gtkactivatable.c: Make the section docs produce some valid
972         xml.
973
974 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
975
976         * gtk/gtkactivatable.c: Fix the section docs so gtk-doc finds them.
977
978 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
979
980         * gtk/gtkrecentchooser.c:
981         * gtk/gtkuimanager.c: Fix issues found by pltcheck
982
983 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
984
985         * NEWS: Updates
986
987 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
988
989         Bug 560228 – Add "action-controller" property to GtkWidgetClass
990
991         Rework the way actions and proxies interact, to make the
992         interaction less ad hoc, more extensible, and better suited
993         for support in GUI builders like glade. 
994
995         To be used as a proxy, a widget must now implement the 
996         GtkActivatable interface, and GtkActivatable implementations 
997         are responsible for syncing their appearance with the action 
998         and for activating the action.
999
1000         All the widgets that are commonly used as proxies implement
1001         GtkActivatable now.
1002
1003         Patch by Tristan van Berkom.
1004
1005         * gtk/gtkactivatable.[hc]: The GtkActivatable interface.
1006
1007         * gtk/gtkbutton.c:
1008         * gtk/gtktogglebutton.c:
1009         * gtk/gtktoolitem.c:
1010         * gtk/gtktoolbutton.c:
1011         * gtk/gtktoggletoolbutton.c:
1012         * gtk/gtkmenuitem.c:
1013         * gtk/gtkcheckmenuitem.c:
1014         * gtk/gtkimagemenuitem.c:
1015         * gtk/gtkradiomenuitem.c:
1016         * gtk/gtkrecentchooserprivate.h:
1017         * gtk/gtkrecentchooser.c:
1018         * gtk/gtkrecentchooserdefault.c:
1019         * gtk/gtkrecentchoosermenu.c: Implement GtkActivatable.
1020         * gtk/gtkaction.[hc]: Move appearance synchronization to
1021         GtkActivatable implementations.
1022
1023         * gtk/gtkradioaction.c:
1024         * gtk/gtkrecentaction.c:
1025         * gtk/gtktoggleaction.c:
1026         * gtk/gtkactiongroup.c: Adapt.
1027
1028         * gtk/gtk.h: Include gtkactivatable.h
1029         * gtk/gtk.symbols: Add new functions
1030
1031 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1032
1033         Bug 567124 – proposal to delay doing something related to 
1034         immodule until widgets realized
1035
1036         Delay setting up immodules until the widget is realized.
1037         Patch by Akira Tagoh
1038         
1039         * gtk/gtktextview.c: Don't set up im stuff if the widget
1040         is not realized.
1041
1042         * gtk/gtkimmodule.c: Assert that we have a window.
1043  
1044 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1045
1046         Skip Desktop if it equals the home folder
1047         Patch by Christian Dywan
1048
1049         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Skip
1050         Desktop if it equals the home folder.
1051
1052 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1053
1054         Bug 536965 – GtkPlug: crash on theme change
1055
1056         Keep GtkPlug in sync with the global list of toplevels.
1057         Patch by Federico Mena Quintero
1058
1059         * gtk/gtkwindow.h:
1060         * gtk/gtkwindow.c (_gtk_window_set_is_toplevel): New internal
1061         function used when a GtkPlug parents/unparents itself by an
1062         in-process GtkSocket.  This keeps the plug's GTK_TOPLEVEL flag in
1063         sync with the global toplevel_list.
1064
1065         * gtk/gtkplug.c (gtk_plug_set_is_child): Call
1066         _gtk_window_set_is_toplevel() to keep the toplevel list updated,
1067         instead of just setting/unsetting the GTK_TOPLEVEL flag.
1068
1069 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1070
1071         Bug 568744 – Spellfixes in GtkTreeView's documentation
1072
1073         * gtk/gtktreeview.c: Fix typos in the docs.
1074
1075 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1076
1077         Bug 567761 – Spellfixes in GTK+ documentation
1078
1079         * gdk/x11/gdkselection-x11.c:
1080         * gtk/gtktestutils.c: Fix typos in the docs.
1081
1082 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1083
1084         Bug 567021 – gtkimage accessors docs
1085
1086         * gtk/gtkimage.c: Improve docs by mentioning allowed NULL values.
1087         Patch by Christian Persch
1088
1089 2009-01-23  Matthias Clasen  <mclasen@redhat.com>
1090
1091         Bug 566535 – gtk_widget_get_snapshot does not work if double buffered 
1092         is disabled
1093
1094         * gtk/gtkwidget.c (gtk_widget_get_snapshot): Use a different approach
1095         to snapshotting that is in line with what is done in the client-side
1096         windows branch, and that works for widgets regardless if they are
1097         double-buffered or not. Patch by Alex Larsson.
1098
1099         * gdk/gdkwindow.c (_gdk_window_calculate_full_clip_region): Clip
1100         to the parent.
1101
1102 2009-01-22  Federico Mena Quintero  <federico@novell.com>
1103
1104         * gtk/gtkfilechooserentry.c (autocomplete): Relax the assertion;
1105         just do nothing if the folder is not loaded or if the cursor position
1106         is not at the end of the text.  A very slow-to-load folder can get
1107         us into the latter state if the user starts typing first.
1108
1109 2008-01-22  Matthias Clasen  <mnclasen@redhat.com>
1110
1111         * gtk/gtkaction.c: Revert the last change, since it breaks
1112         epiphany.
1113
1114 2009-01-22  Federico Mena Quintero  <federico@novell.com>
1115
1116         Fix the computation of "complete but unique" in
1117         GtkFileChooserEntry.  Fix the case where "/" was not appended to a
1118         unique directory name during explicit Tab completion.
1119
1120         * gtk/gtkfilechooserentry.c (maybe_append_separator_to_file):
1121         Return whether anything was appended as well as the new string
1122         itself.
1123         (find_common_prefix): Oops, only turn on
1124         is_complete_not_unique_ret if we had a unique match!
1125         (append_common_prefix): If we appended a directory separator, we
1126         *did* expand the common prefix, so we are not in the "nothing
1127         inserted" case.
1128
1129 2009-01-22  Federico Mena Quintero  <federico@novell.com>
1130
1131         Return an error code when refreshing the entry from the user's
1132         input.  We use this in the completion code to know when completion
1133         can't happen due to (for example) having a non-local URI in a file
1134         chooser that is local_only=TRUE.
1135
1136         Also, we start maintaining an invariant that
1137         chooser_entry->current_folder_file != NULL implies that:
1138
1139                 * what the user entered is valid
1140
1141                 * we are loading that folder (chooser_entry->load_folder_cancellable != NULL) 
1142
1143                 * or we are done loading that folder, or we have a handle
1144                 to it at least (chooser_entry->current_folder != NULL)
1145
1146         The invariant also says that all of the above are NULL (and
1147         chooser_entry->current_folder_file == NULL) implies that the user
1148         typed something invalid.  This makes
1149         _gtk_file_chooser_entry_get_current_folder() not able to return
1150         an invalid folder.
1151
1152         * gtk/gtkfilechooserentry.c (RefreshStatus): New enum.
1153         (refresh_current_folder_and_file_part): Return a RefreshStatus.
1154         We filter out incomplete hostnames here (typing
1155         "sftp://incompl[tab]" will error out), as well as completely
1156         unparsable input.
1157         (start_explicit_completion): Process the result from refresh...().
1158         Here we present the actual feedback about only being able to
1159         display local folders for local_only=TRUE.
1160         (commit_completion_and_refresh): Don't do anything with the result
1161         of refresh...(), since this function doesn't get called during
1162         completion-related interaction.
1163         (start_autocompletion): Process the result from refresh...().  We
1164         only do completion in the REFRESH_OK case.  For the error cases,
1165         we don't do anything, as this is autocompletion and must not
1166         result in non-asked-for errors popping up.
1167         (discard_loading_and_current_folder_file): Factor out function to
1168         cancel the cancellable and discard the current_folder_file,
1169         i.e. to reset the invariant to the "nothing valid is loaded" case.
1170         (gtk_file_chooser_entry_dispose): Use
1171         discard_loading_and_current_folder_file().
1172         (reload_current_folder): Likewise.
1173         (refresh_current_folder_and_file_part): Likewise, and ensure that
1174         the error cases result in the invariant being held.
1175         (start_loading_current_folder): Check if the folder to be loaded
1176         is non-native for the local_only=TRUE case; if so, return an error
1177         as we are configured to load only local folders.
1178         (reload_current_folder): Pass on errors from
1179         start_loading_current_folder().  Tighten the preconditions, as we
1180         are sure that we can only receive non-NULL folder-files to load.
1181         (refresh_current_folder_and_file_part): Pass on errors from
1182         reload_current_folder().  At the very end, assert the invariant
1183         described above.
1184         
1185 2009-01-22  Matthew Barnes  <mbarnes@redhat.com>
1186
1187         Bug 568334 – Constructor properties for GtkAction
1188
1189         * gtk/gtkaction.c (gtk_action_class_init): Make all properties
1190         G_PARAM_CONSTRUCT except "action-group".
1191
1192 2009-01-22  Michael Natterer  <mitch@imendio.com>
1193
1194         * gtk/gtkicontheme.c (gtk_icon_theme_has_icon): g_return_if_fail()
1195         on icon_name != NULL so we get a warning instead of a crash here.
1196
1197 2009-01-21  Matthias Clasen <mclasen@redhat.com>
1198
1199         * NEWS: Updates
1200
1201 2009-01-21  Matthias Clasen <mclasen@redhat.com>
1202
1203         * gtk/gtkentry.c: Don't show windows that may not exist
1204
1205 2009-01-21  Matthias Clasen <mclasen@redhat.com>
1206
1207         * gtk/gtklabel.c: Implement select-by-words for selectable labels.
1208
1209 2009-01-21  Tor Lillqvist  <tml@novell.com>
1210
1211         * gdk/win32/gdkcursor-win32.c: Rename static local functions and
1212         variables to not have any unnecessary _ or _gdk_win32 prefix.
1213
1214         * gdk/win32/gdkcursor-win32.c (hcursor_from_type): Implement
1215         creating a GDK_BLANK_CURSOR.
1216
1217 2009-01-21  Matthias Clasen  <mclasen@redhat.com>
1218
1219         * gtk/gtkentry.c: Change the Caps Lock warning to the more
1220         neutral "Caps Lock is on". Requested by Wouter Bolsterlee
1221
1222 2009-01-21  Matthias Clasen  <mclasen@redhat.com>
1223
1224         Bug 568552 – gtk_combo + gtk entry in invisible mode takes 100% cpu
1225
1226         * gtk/gtkentry.c: Fix an expose loop caused by raising windows out
1227         of an expose handler. Also, don't show the 'Caps Lock' warning for
1228         activated input methods, since that makes it permanently shown
1229         for some locales. It should not be that necessary, now that we
1230         do show preedit text even in password entries. Pointed out by
1231         Frederic Crozat.
1232         (start_loading_current_folder): Check if the folder to be loaded
1233         is non-native for the local_only=TRUE case; if so, return an error
1234         as we are configured to load only local folders.
1235         (reload_current_folder): Pass on errors from
1236         start_loading_current_folder().  Tighten the preconditions, as we
1237         are sure that we can only receive non-NULL folder-files to load.
1238         (refresh_current_folder_and_file_part): Pass on errors from
1239         reload_current_folder().  At the very end, assert the invariant
1240         described above.
1241         (start_explicit_completion): Add comments for translators, to
1242         explain the purpose of the various feedback messages used during
1243         completion.
1244
1245 2009-01-21  Federico Mena Quintero  <federico@novell.com>
1246
1247         * gtk/gtkfilechooserdefault.c (save_widgets_create): Set
1248         local_only on the location entry when we create it...
1249         (set_local_only): ... and set it here only if the location entry
1250         exists.
1251
1252 2009-01-21  Marek Kasik  <mkasik@redhat.com>
1253
1254         Bug 561801 - "scheduled printing" doesn't function as expected
1255
1256         * gtk/gtkprintunixdialog: Add tooltip.
1257         * modules/printbackends/cups/gtkprintbackendcups.c: Add conversion
1258           from local time to utc time for scheduled printing.
1259
1260 2009-01-20  Federico Mena Quintero  <federico@novell.com>
1261
1262         http://bugzilla.gnome.org/show_bug.cgi?id=545980 -
1263         GtkFileChooserEntry should handle URIs
1264
1265         * gtk/gtkfilesystem.c (_gtk_file_system_parse): Detect URI schemes
1266         and parse the full URI.
1267         (has_uri_scheme): New function, stolen from the old
1268         gtkfilesystemgnomevfs.c.
1269
1270         Patch by Carlos Garnacho <carlos@imendio.com>:
1271
1272         * gtk/gtkfilechooserentry.c (discard_current_folder): New
1273         function, factored out for when we need to get rid of the
1274         current_folder.
1275         (gtk_file_chooser_entry_dispose): Use discard_current_folder().
1276         (finished_loading_cb): Fix prototype.
1277         (load_directory_get_folder_callback): Discard the completion
1278         store, as well as clearing the completion feedback, if we find an
1279         error while loading the folder.  Also, use
1280         discard_current_folder().
1281         (reload_current_folder): Use discard_current_folder().
1282
1283         Patch by Carlos Garnacho <carlos@imendio.com> - add a local_only
1284         property to GtkFileChooserEntry:
1285
1286         * gtk/gtkfilechooserentry.c (struct _GtkFileChooserEntry): Add a
1287         local_only field.
1288         (_gtk_file_chooser_entry_init): Default to local_only being true.
1289         (start_explicit_completion): Don't allow completion of non-native
1290         files if local_only is turned on.
1291         (start_loading_current_folder): Don't start loading non-native
1292         folders if local_only is turned on.
1293         (_gtk_file_chooser_entry_set_local_only): New function.
1294         (_gtk_file_chooser_entry_get_local_only): New function.
1295
1296         * gtk/gtkfilechooserentry.h (_gtk_file_chooser_entry_set_local_only,
1297         _gtk_file_chooser_entry_get_local_only): New prototypes.
1298
1299         * gtk/gtkfilechooserdefault.c (set_local_only): Set the local_only
1300         property on the entry.
1301
1302         Fix completion so it doesn't pop up for every character in a URI
1303         hostname:
1304
1305         * gtk/gtkfilechooser.h (GtkFileChooserError): Add a
1306         GTK_FILE_CHOOSER_ERROR_INCOMPLETE_HOSTNAME.
1307
1308         * gtk/gtkfilesystem.c (_gtk_file_system_parse): Return an
1309         "incomplete hostname" error if the user has not typed a full
1310         hostname yet in an URI.
1311
1312         * gtk/gtkfilechooserentry.c (append_common_prefix): If we get an
1313         incomplete hostname, just don't pop up an error, since that is a
1314         transient state and the user doesn't need to be notified about it.
1315         (refresh_current_folder_and_file_part): Don't revert to showing
1316         the base folder if we have an incomplete hostname.
1317         (reload_current_folder): Handle the passed folder being NULL, even
1318         if we must force a reload.  Also, reload the folder if we didn't
1319         have a cancellable for it (i.e. we hadn't started to load it
1320         before).
1321
1322 2009-01-20  Matthias Clasen  <mclasen@redhat.com>
1323
1324         * gtk/gtk.symbols:
1325         * gtk/gtkaction.[hc]: Add setters and getters for GtkAction
1326         properties, in preparation for bug 560228.
1327
1328 2009-01-21  Christian Dywan  <christian@twotoasts.de>
1329
1330         Bug 567413 – GtkComboBoxEntry doesn't emit "changed" signal
1331         on entry editing
1332
1333         * gtk/gtkcombobox.c (gtk_combo_box_set_active): Return only if index
1334         is set. Patch by Carl-Anton Ingmarsson.
1335
1336 2009-01-20  Torsten Schoenfeld  <kaffeetisch@gmx.de>
1337
1338         * gtk/gtkstyle.c: Add a "Since: 2.16" tag to gtk_style_get.
1339
1340 2009-01-20  Matthias Clasen  <mclasen@redhat.com>
1341
1342         Bug 565656 – Add marks to scales
1343
1344         * gtk/gtkrange.[hc]: Add internal api to define 'stop values'
1345         that have a little resistance when dragging the slider over it.
1346
1347         * gtk/gtk.symbols:
1348         * gtk/gtkscale.[hc] (gtk_scale_add_mark): New function to add
1349         a 'mark' to a scale, which will draws a tick, plus optionally
1350         some text, and makes the value a stop value.
1351         (gtk_scale_clear_values): Removes all marks.
1352
1353         * tests/testscale.c: Test for marks on scales
1354         * tests/Makefile.am: Integrate it
1355
1356 2009-01-19  Matthias Clasen  <mclasen@redhat.com>
1357
1358         * gtk/gtkentry.c:
1359         * gtk/gtkfilechooserentry.c:
1360         * gtk/gtktextview.c: Replace several implementation of
1361         blank cursor setting by GDK_BLANK_CURSOR.
1362
1363 2009-01-19  Matthias Clasen  <mclasen@redhat.com>
1364
1365         * gdk/gdkcursor.c:
1366         * gdk/gdkwindow.c: Update docs on how to create blank cursors.
1367
1368 2009-01-19  Matthias Clasen  <mclasen@redhat.com>
1369
1370         Cache cursors to avoid libXcursor theme lookup overhead.
1371         Patch by David Alan Gilbert.
1372
1373         * gdk/gdkcursor.h: Add a GDK_BLANK_CURSOR cursor type.
1374
1375         * gdk/x11/gdkcursor-x11.c: Cache font cursors and named cursors.
1376
1377         * gdk/x11/gdkprivate-x11.h:
1378         * gdk/x11/gdkcdisplay-x11.c: Remove cached cursors when a 
1379         display if finalized.
1380
1381 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1382
1383         Bug 568263 – gtk can't recognize the wrong X Selection TARGETS' 
1384         type "TARGETS" by java applications
1385
1386         * gtk/gtkselection.c (gtk_selection_data_get_targets): Accept
1387         a type of TARGETS instead of ATOM, too. Based on a patch by 
1388         Peng Wu. 
1389
1390 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1391
1392         Bug 568233 – Wrong statement about GtkEntry's "activate" signal
1393
1394         * gtk/gtkentry.c:
1395         * gtk/gtklabel.c:
1396         * gtk/gtktextview.c: Correct some copy-and-paste mistakes in
1397         keybinding signal docs. Pointed out by Pascal Terjan.
1398
1399 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1400
1401         * gtk/gtk.symbols:
1402         * gtk/gtkentry.[hc]: Add properties and getters for icon tooltips.
1403
1404 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1405
1406         Bug 563280 – stock items & translation context
1407
1408         * gtk/gtkstock.c: Solve the msgctxt problem a bit more
1409         elegantly, and add some hints about this to the docs of
1410         gtk_stock_set_translate_func. Proposed by Christian Persch
1411
1412 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1413
1414         Bug 568196 – Please change context of Forward stock label
1415
1416         * gtk/gtkstock.c: Reinstate separate translation contexts for
1417         navigation and media labels (these were lost in the transition
1418         to msgctxt. Pointed out by Gabor Kelemen.
1419
1420 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1421
1422         Bug 567887 – gtk_entry_get_storage_type() should be 
1423         gtk_entry_get_icon_storage_type()
1424
1425         * gtk/gtk.symbols:
1426         * gtk/gtkentry.[hc]: Use the last chance to get the api right,
1427         and rename things for consistency, requested by Murray Cumming. 
1428         In detail,
1429         gtk_entry_get_stock -> gtk_entry_get_icon_stock
1430         gtk_entry_get_pixbuf -> gtk_entry_get_icon_pixbuf
1431         gtk_entry_get_gicon -> gtk_entry_get_icon_gicon
1432         gtk_entry_get_storage_type -> gtk_entry_get_icon_storage_type
1433         ::prelight -> ::icon-prelight
1434         ::pixbuf-primary -> ::primary-icon-pixbuf
1435         ::stock-primary -> ::primary-icon-stock
1436         ::icon-name-primary -> ::primary-icon-name
1437         ::gicon-primary-> ::primary-icon-gicon
1438         ::storage-type-primary -> ::primary-icon-storage-type
1439         ::activatable->primary -> ::primary-icon-activatable
1440         ::sensitive-primary -> ::primary-icon-sensitive
1441         (and similar for secondary properties)
1442
1443 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1444
1445         Bug 567655 – gtk_status_icon_set_tooltip_text and 
1446         gtk_status_icon_set_tooltip_markup should use gchar*
1447
1448         * gtk/gtkstatusicon.h: Use "const gchar*" in new tooltip api.
1449         Pointed out by Torsten Schoenfeld.
1450
1451 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
1452
1453         * demos/gtk-demo/search_entry.c: End the search if the window
1454         is closed.
1455
1456         * demos/gtk-demo/search_entry.c:
1457         * demos/gtk-demo/entry_completion.c: Group the entry examples
1458         under "Entry".
1459
1460 2009-01-18  Christian Dywan  <christian@twotoasts.de>
1461
1462         Remove a redundant include from gtktoolbar.c
1463
1464         * gtk/gtktoolbar.c: Remove second inclusion of gtktoolbar.h.
1465         Patch by Enrico Tröger.
1466
1467 2009-01-16  Cody Russell  <bratsche@gnome.org>
1468
1469         Bug 567944 – [Win32] Sorted treeview columns can be unreadable
1470
1471         * modules/engines/ms-windows/msw_style.c: Draw selected treeview
1472         cells according to treeview focus, but ignore whether it is in
1473         a sorted column or not.  Otherwise the intersection of a selected
1474         row and a sorted column looks very strange if the treeview does
1475         not have focus.
1476
1477 2009-01-16  Daniel Elstner  <danielk@openismus.com>
1478
1479         * modules/input/gtkimcontextmultipress.[ch]: Remove the namespace
1480         prefix from functions defined locally only.  Clean up the code and
1481         change indentation to match the GTK+ coding style.
1482         (_GtkImContextMultipress::key_sequences): Replace array of pointers
1483         by GHashTable.  Adapt the implementation accordingly.
1484         (passthrough_enabled_for_window): Remove.  The passthrough hack is
1485         no longer necessary thanks to the recently introduced "im-module"
1486         property of GtkEntry and GtkTextView.
1487         (load_config): Rework to implement an improved configuration file
1488         format.  Just fetch all keys of the group instead of expecting the
1489         keys to be named a certain way.  This also allows interpreting the
1490         config key itself as the GDK key name to bind the character sequence
1491         to, thereby making it independent of the sequence itself.
1492
1493         * modules/input/im-multipress.conf: New example configuration using
1494         the new syntax.  The example sequences are now bound to the numeric
1495         keypad and imitate the behavior of a standard mobile phone.
1496
1497 2009-01-15  Murray Cumming  <murrayc@murrayc.com>
1498
1499         * gtk/gtkimcontext.c: documentation description: Mention the various 
1500         properties and the environment variable, with links to their 
1501         documentation.
1502         * gtk/gtksettings.c:
1503         * gtk/gtktextview.c: Make the im-module property documentation more 
1504         expansive.
1505
1506 2009-01-15  Diego Escalante Urrelo  <diegoe@gnome.org>
1507
1508         Bug 562701 – GtkEntryCompletion popup sizes its rows wrong
1509         when they span for more than one line.
1510
1511         Don't assume actions and results have equal height, this causes
1512         negative size requisitions when results are more than one
1513         line tall.
1514
1515         * gtk/gtkentrycompletion.c: change the formula used to calculate
1516         the size of the completion popup.
1517
1518 2009-01-14  Federico Mena Quintero  <federico@novell.com>
1519
1520         Remember the file chooser's geometry across invocations.
1521
1522         * gtk/gtkfilechoosersettings.h (struct _GtkFileChooserSettings):
1523         New fields geometry_x, geometry_y, geometry_width, geometry_height.
1524         (_gtk_file_chooser_settings_get_geometry): New prototype.
1525         (_gtk_file_chooser_settings_set_geometry): New prototype.
1526
1527         * gtk/gtkfilechoosersettings.c (GEOMETRY_X_KEY, GEOMETRY_Y_KEY,
1528         GEOMETRY_WIDTH_KEY, GEOMETRY_HEIGTH_KEY): New key names.
1529         (ensure_settings_read): Read the geometry keys.
1530         (_gtk_file_chooser_settings_save): Save the geometry keys.
1531         (_gtk_file_chooser_settings_init): Initialize the geometry keys to
1532         "don't have this value".
1533         (_gtk_file_chooser_settings_get_geometry): New public function.
1534         (_gtk_file_chooser_settings_set_geometry): New public function.
1535
1536         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_map):
1537         Don't change the default size in ::map() so we don't flicker...
1538         (gtk_file_chooser_default_realize): ... so do it in ::realize()
1539         instead, when the window is not yet visible.  This avoids a
1540         dialog-that-resizes when you first pop up the file chooser.
1541         (emit_default_size_changed): Just emit the signal; don't check for
1542         the widget's state so we can be emitted during the initial
1543         ::realize() when we are not mapped yet.
1544         (update_preview_widget_visibility): Only emit default_size_changed
1545         if the widget is not mapped, to avoid resizing the dialog while it
1546         is visible.
1547
1548         * gtk/gtkfilechooserdialog.c
1549         (file_chooser_widget_default_size_changed): Simply resize the
1550         dialog to the default size without any fancy clamping.  Also,
1551         leave in place ifdef-ed out code to restore the file chooser's
1552         position in addition to its size.  The code to restore the
1553         position doesn't quite work yet, but we'll leave it in as a
1554         reference.
1555
1556         * gtk/gtkfilechooserdefault.c (save_dialog_geometry): New function.
1557         (settings_save): Save the dialog's geometry.
1558         (gtk_file_chooser_default_get_default_size): Load the geometry
1559         from the settings.  If it was already saved, return that instead
1560         of computing an ad-hoc size.
1561
1562 2009-01-13  Matthias Clasen  <mclasen@redhat.com>
1563
1564         Bug 450716 – New API to change global IM
1565
1566         Requested by Daniel Elstner.
1567
1568         * gtk/gtk.symbols:
1569         * gtk/gtkimmulticontext.[hc] (gtk_im_multicontext_set_context_id):
1570         New function to set the context id on a GtkIMMulticontext.
1571
1572         * gtk/gtkentry.c:
1573         * gtk/gtktextview.c: Add a ::im-module property that can be
1574         set to override the global setting for the im module to be used.
1575
1576 2009-01-13  Christian Dywan  <christian@imendio.com>
1577
1578         Bug 566532 – GtkScaleButton implementation of GtkOrientable
1579
1580         * gtk/gtk.symbols:
1581         * gtk/gtkscalebutton.c (gtk_scale_button_class_init),
1582         (gtk_scale_button_set_property):
1583         * gtk/gtkscalebutton.h: Deprecate gtk_scale_button_get_orientation
1584         in favour of implementing GtkOrientable. Patch by Bruce Cowan.
1585
1586 2009-01-13  Tor Lillqvist  <tml@iki.fi>
1587
1588         Bug 164002 - query scripts don't work uninstalled on windows
1589
1590         * gtk/gtkmain.c (_gtk_get_libdir): If the gtk DLL is in a ".libs"
1591         folder, assume we are running uninstalled, and use the
1592         configure-time GTK_LIBDIR.
1593
1594 2009-01-12  Matthias Clasen  <mclasen@redhat.com>
1595
1596         * NEWS: Refer to tray icon spec, instead of a random email.
1597
1598 2009-01-12  Matthias Clasen  <mclasen@redhat.com>
1599
1600         * gtk/gtkwindow.c (gtk_window_set_icon_name): Don't cause lots
1601         of X traffic when the icon name doesn't actually change. Some
1602         apps like to reset their window icon frequently, without actually
1603         changing the icon name...
1604
1605 2009-01-12  Paolo Borelli  <pborelli@katamail.com>
1606
1607         Bug 492794 – Pasting external text at end of view yields wrong
1608         scrolling to mark
1609
1610         * gtk/gtktextbuffer.[ch]:
1611         * gtk/gtktextview.c:
1612         Add a "paste-done" signal and use it to propelry scroll the
1613         view at the end of the pasted text in the case of an async
1614         paste. Patch by Ignacio Casal Quintero based on a patch by
1615         Yevgen Muntyan.
1616
1617 2009-01-12  Tor Lillqvist  <tml@iki.fi>
1618
1619         * gdk/gdk.c (gdk_arg_debug_cb) (gdk_arg_no_debug_cb): A
1620         GOptionArgFunc should return gboolean and take also a GError
1621         pointer parameter, so make these two functions do that. Return
1622         FALSE (and set the GError) if the parsing of the debug string
1623         failed completely. Note that g_parse_debug_string() doesn't really
1624         have any way to return parsing status, and accepts partially
1625         incorrect strings, though.
1626
1627 2009-01-12  Claudio Saavedra  <csaavedra@igalia.com>
1628
1629         Bug 567468 – no check for trailing != NULL in
1630         gtk_text_layout_get_iter_at_position()
1631
1632         * gtk/gtktextlayout.c: (gtk_text_layout_get_iter_at_position):
1633         Check for trailing to be non-NULL.
1634         * gtk/gtktextview.c: (gtk_text_view_get_iter_at_position): document
1635         that trailing may be NULL.
1636
1637 2009-01-11  Tor Lillqvist  <tml@iki.fi>
1638
1639         Bug 523554 - Copy from GIMP to Word broken
1640
1641         * gdk/win32/gdkselection-win32.c
1642         (_gdk_win32_selection_convert_to_dib): The DIB stored in the
1643         Windows Clipboard was for some unknown reason truncated by one
1644         byte. Don't do that.
1645
1646 2009-01-11  Matthias Clasen  <mclasen@redhat.com>
1647
1648         Bug 567024 – gtktoolbutton doesn't create right proxy menu item 
1649         image with GIcon
1650
1651         * gtk/gtktoolbutton.c: Properly create a menu proxy from a GIcon.
1652         Patch by Christian Persch
1653
1654         * tests/testtoolbar.c: Add an example with a GIcon
1655
1656 2009-01-09  Christian Dywan  <christian@imendio.com>
1657
1658         Fail in gdk_window_new if _gdk_window_new failed
1659
1660         * gdk/gdkwindow.c (gdk_window_new): Add g_return_val_if_fail
1661         in case _gdk_window_new is NULL. Approved by Tim Janik
1662
1663 2009-01-08  Matthias Clasen  <mclasen@redhat.com>
1664
1665         Bug 566733 – Add GIcon to GtkAction, GtkToolButton
1666
1667         * gtk/gtkaction.c: Add a ::gicon property to GtkAction and set the 
1668         icon from it if specified. The stock icon is preferred if a stock id 
1669         is given. Based on a patch by A. Walton
1670
1671 2009-01-04  Matthias Clasen  <mclasen@redhat.com>
1672
1673         * gtk/stock-icons/{16,24}/gtk-caps-lock-warning.png: New icons
1674         * gtk/gtkstock.h: Add GTK_STOCK_CAPS_LOCK_WARNING.
1675         * gtk/gtkiconfactory.c (get_default_icons): Register the stock icon.
1676         * gtk/gtkentry.c (show_capslock_feedback): Use the new stock icon.
1677
1678 2009-01-05  Tor Lillqvist  <tml@novell.com>
1679
1680         Bug 566628 - gdk_display_close always asserts on win32
1681
1682         * gdk/win32/gdkdisplay-win32.c
1683         (_gdk_windowing_set_default_display): Allow also a NULL parameter
1684         in the g_assert(). Still don't actually do anything in this
1685         function, though.
1686
1687 2009-01-04  Matthias Clasen  <mclasen@redhat.com>
1688
1689         Bug 566568 – gtk_tree_model_get_value docs typo
1690
1691         * gtk/gtktreemodel.c (gtk_tree_model_get_value): Fix a typo
1692         in the docs, pointed out by Christian Persch.
1693
1694 2009-01-04  Matthias Clasen  <mclasen@redhat.com>
1695
1696         Bug 566391 – gtk_about_dialog_set_url_hook should activate 
1697         pre-existing website links
1698
1699         * gtk/gtkaboutdialog.c: Make setting website, website-label and
1700         url hook work independent of their order. Reported by Steven
1701         Sheehy.
1702
1703 2009-01-03  Matthias Clasen  <mclasen@redhat.com>
1704
1705         * gdk/x11/gdkscreen-x11.h:
1706         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window): Recheck
1707         _NET_SUPPORTING_WM_CHECK every now and then to avoid getting
1708         stuck on the id of a former wmcheck window that got reused by
1709         another client (see RH bug 471927)
1710
1711 2009-01-03  Matthias Clasen  <mclasen@redhat.com>
1712
1713         * gtk/gtktreesortable.c: Improve the docs
1714
1715         * gtk/gtktreemodelsort.c: Don't assert when using the "unsorted"
1716         sort column id.
1717
1718 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
1719
1720         Bug 565998 – configure script doesn't check for cairo-xlib.pc
1721
1722         * configure.in: Check for cairo-xlib when looking for
1723         gdk dependencies. Requested by Alberto Ruiz
1724
1725 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
1726
1727         Bug 566334 – compile failure for gtk+ on Mac OS X
1728
1729         * gtk/gtkstatusicon.c: Fix the build on OS X. 
1730         Reported by Bart Cortooms.
1731
1732 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
1733
1734         Bug 566083 – Icon pixmap hardcoded during DnD
1735
1736         * gtk/gtkwidget.c:
1737         * gtk/gtkentry.c: Add docs about using ::drag-begin for setting
1738         a custom drag icon. Reported by Xan Lopez
1739
1740 2009-01-01  Matthias Clasen  <mclasen@redhat.com>
1741
1742         * configure.in: Bump version
1743
1744         * === Released 2.15.0 ===
1745
1746 2009-01-01  Matthias Clasen  <mclasen@redhat.com>
1747
1748         * gtk/gtkentry.c (gtk_entry_set_icon_sensitive): Fix default
1749         value
1750
1751         * gtk/tests/builder.c: Clean up asserts, make domain
1752         test work with current GtkBuilder behaviour.
1753
1754         * Makefile.decl: Start Xvfb with -ac -noreset to try
1755         and get the gui tests working.
1756
1757 2009-01-01  Matthias Clasen  <mclasen@redhat.com>
1758
1759         * gtk/gtk.symbols: Add a few forgotten symbols
1760         * gtk/gtkprintoperation.c:
1761         * gtk/gtktrayicon-x11.c: Make some functions static
1762
1763 2008-12-31  Matthias Clasen  <mclasen@redhat.com>
1764
1765         * NEWS: Updates
1766
1767 2008-12-31  Matthias Clasen  <mclasen@redhat.com>
1768
1769         * gtk/gtk.symbols:
1770         * gtk/gtkruler.[hc]: Some more
1771
1772 2008-12-31  Matthias Clasen  <mclasen@redhat.com>
1773
1774         * gtk/gtk.symbols:
1775         * gtk/gtkpaned.[hc]:
1776         * gtk/gtkscale.[hc]:
1777         * gtk/gtkscrollbar.[hc]: 
1778         * gtk/gtkseparator.[hc]: Keep these all abstract for now.
1779
1780 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1781
1782         * gtk/gtkentry.c: Rename the icon signals to ::icon-press and
1783         ::icon-release to avoid clashes with the existing SexyIconEntry
1784         signals. Also annotate the GdkEvent parameters as static-scope.
1785
1786         * tests/testentryicons.c: Adapt
1787         * demos/gtk-demo/search-entry.c: Adapt
1788         
1789 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1790
1791         Bug 565846 – "va_end(args);" should be added into gtk_tree_store_new
1792
1793         * gtk/gtktreestore.c (gtk_tree_store_new): Add a missing
1794         va_end() call. Pointed out by Jiwon Lee.
1795
1796 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1797
1798         * gtk/gtkentry.c: Code cleanups; get rid of get_text_area_size,
1799         replace get_icon_allocation by get_icon_allocations, don't
1800         pass allocation to place_windows; other stylistic changes to 
1801         the icon-related code.
1802
1803 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1804
1805         * gtk/gtkentry.c: Avoid size allocation loops.
1806
1807 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1808
1809         * gtk/gtkentry.c: Fix errors in property definitions and
1810         get_property implementation.
1811
1812 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1813
1814         * gtk/gtkentry.c: Redo the Caps Lock warning using an icon.
1815
1816 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1817
1818         Bug 558694 – Paned window splitter keynav broken
1819
1820         * gtk/gtkpaned.c (get_child_panes): Don't add unrealized
1821         widgets.
1822
1823 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
1824
1825         * gtk/gtkstyle.c:
1826         * gtk/gtkmenutooltbutton.c:
1827         * gtk/gtkprintoperationpreview.c: Doc additions
1828
1829 2008-12-29  Matthias Clasen  <mclasen@redhat.com>
1830
1831         * gtk/gtkiconview.c:
1832         * gtk/gtklabel.c:
1833         * gtk/gtkentry.c:
1834         * gtk/gtktextview.c:
1835         * gtk/gtkeditable.c: 
1836         * gtk/gtktextbuffer.c: Doc additions.
1837
1838 2008-12-29  Tor Lillqvist  <tml@novell.com>
1839
1840         * gtk/gtk.symbols: Add missing symbols from gtkentry.c.
1841
1842 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1843
1844         * gtk/gtkwindow.c: 
1845         * gtk/gtkstyle.c: Doc additions
1846
1847 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1848
1849         * gtk/gtk[hv]scrollbar.c: Document gtk_[hv]scrollbar_new.
1850
1851 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1852
1853         * gtk/gtkwidget.c: Document gtk_mnemonic_activate.
1854
1855 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1856
1857         * gtk/gtktextlayout.c: Un-doc-commentize non-public api
1858
1859 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1860
1861         * gtk/gtkprogress.h: Fix a typo
1862
1863 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1864
1865         * gtk/gtkhsv.c:
1866         * gtk/gtkentry.c: Doc fixes
1867
1868 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1869
1870         * gtk/gtkwidget.c:
1871         * gtk/gtktextutil.c: Un-doc-commentize non-exported functions
1872         to make gtk-doc happy.
1873
1874 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1875
1876         * gtk/gtkscale.c:
1877         * gtk/gtkimagemenuitem.c: Doc fixes
1878
1879 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1880
1881         * gtk/gtkeditable.h: Match parameter names to make gtk-doc happy.
1882
1883 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1884
1885         * tk/gtkfontsel.c: Merge docs inline.
1886
1887 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1888
1889         * gtk/gtkprintsettings.c:
1890         * gtk/gtkbindings.c:
1891         * gtk/gtkstyle.c: Doc fixes
1892
1893 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1894
1895         * gtk/gtkscrolledwindow.c: 
1896         * gtk/gtkscale.c: Merge docs inline.
1897
1898 2008-12-28  Ryan Lortie  <desrt@desrt.ca>
1899
1900         small fix for "Paned Window Widgets" example
1901
1902         * docs/tutorial/gtk-tut.sgml: use gtk_container_add rather than
1903         add_with_viewport for putting a GtkTreeView into a ScrolledWindow
1904
1905         Spotted by Benjamin Herrenschmidt
1906
1907 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1908
1909         * gtk/gtkimmodule.c:
1910         * gtk/gtkseparatortoolitem.c: Doc fixes
1911
1912         * gtk/gtkfontsel.c:
1913         * gtk/gtkeditable.c: Merge docs inline.
1914
1915 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
1916
1917         * gtk/gtkhsv.c:
1918         * gtk/gtkwidget.c: 
1919         * gtk/gtkaccelgroup.c: Documentation fixes
1920
1921         * gtk/gtkstatusicon.c:
1922         * gtk/gtkentry.c:
1923         * gtk/gtkeditable.[hc]: Make parameter names match to make gtk-doc
1924         happy.
1925
1926 2008-12-27  Matthias Clasen  <mclasen@redhat.com>
1927
1928         * gtk/gtkentry.c: Expand the docs some more.
1929
1930 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
1931
1932         * gtk/gtkentry.c: Don't emit ::icon-pressed on nonactivatable
1933         icons. Fix up docs to match actual api.
1934
1935         * tests/testentryicons.c: Reshuffle tests a bit. Add a DND test.
1936
1937 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
1938
1939         * gtk/gtkentry.c: Fix interaction between icons and widget sensitivity.
1940         Also fix a few typos.
1941
1942         * tests/testentryicons.c: Add property editors.
1943         * tests/Makefile.am: Glue
1944
1945 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
1946
1947         * gtk/gtkentry.c: Allow builtin icons when loading themed icons,
1948         and don't leak a GtkIconInfo.
1949
1950 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
1951
1952         * gtk/gtkentry.c: Emit ::icon-pressed regardless which button was
1953         pressed. Also make it explicit in the signal signature that the
1954         position parameter is a GtkEntryIconPosition.
1955
1956 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
1957
1958         * gtk/gtkentry.c: Emit property notification for the text-length
1959         property.
1960
1961 2008-12-26  Matthias Clasen  <mclasen@redhat.com>
1962
1963         * demos/gtk-demo/search_entry.c: Add a demo for new entry features.
1964         * demos/gtk-demo/Makefile.am: Glue
1965
1966 2008-12-25  Matthias Clasen  <mclasen@redhat.com>
1967
1968         * gdk/gdkapplaunchcontext.c:
1969         * gdk/gdkkeys.c:
1970         * gdk/x11/gdkdnd-x11.c:
1971         * gdk/x11/gdkkeyx-x11.c:
1972         * gdk/x11/gdktestutils-x11.c: Typo fixes and other small
1973         doc improvements.
1974
1975 2008-12-23  Li Yuan  <li.yuan@sun.com>
1976
1977         * gtk/gtkiconview.c: (gtk_icon_view_accessible_model_row_changed):
1978         Bug #549251. No need to set name if there is no a11y item object.
1979
1980 2008-12-21  Yair Hershkovitz  <yairhr@gmail.com>
1981
1982         Bug 565203: RTL locales: icons are misplaced when horizontal 
1983                     gtkiconview is contained in a gtkscrolledwindow.
1984
1985         * gtk/gtkiconview.c (gtk_icon_view_layout_single_row):
1986         Fix horizontal icon positions when in RTL locale.
1987
1988 2008-12-19  Matthias Clasen  <mclasen@redhat.com>
1989
1990         * NEWS: Update
1991
1992 2008-12-19  Matthias Clasen  <mclasen@redhat.com>
1993
1994         Bug 564881 – gtkstatusicon.c: 'event' bug again
1995
1996         * gtk/gtkstatusicon.c (button_callback): Fix the build.
1997         Patch by Christian Dywan.
1998
1999 2008-12-19  Cody Russell  <bratsche@gnome.org>
2000
2001         Bug 85292 – add an icon to gtkentry
2002
2003         * gtk/gtkmarshalers.list: Add VOID:INT,BOXED
2004         * tests/testentryicons.c: Initial icon entry test
2005         * tests/Makefile.am: Add testentryicons
2006         * gtk/gtkentry.[ch]: Add API for setting primary/secondary icons
2007         and other features related to them.
2008         
2009 2008-12-19  Marek Kasik  <mkasik@redhat.com>
2010
2011         Bug 339318 - Allow page rendering to (optionally) happen in a thread
2012
2013         * gtk/gtk.symbols: API change
2014         * doc/reference/gtk/gtk-sections.txt: API change
2015         * gtk/gtkprintoperation-private.h
2016         * gtk/gtkprintoperation.h
2017         * gtk/gtkprintoperation.c: Adds 2 new functions
2018            gtk_print_operation_set_defer_drawing()
2019              - Sets up the GtkPrintOperation to wait for calling of
2020                gtk_print_operation_draw_page_finish() from application. It can
2021                be used for drawing page in another thread.
2022                This function must be called in the callback of "draw-page"
2023                signal.
2024            gtk_print_operation_draw_page_finish()
2025              - Signalize that drawing of particular page is complete.
2026                It is called after completion of page drawing (e.g. drawing
2027                in another thread).
2028                If gtk_print_operation_set_defer_drawing() was called before,
2029                then this function has to be called by application. In another
2030                case it is called by the library itself.
2031
2032 2008-12-15  Matthias Clasen  <mclasen@redhat.com>
2033
2034         * gtk/gtkprintunixdialog.c: Don't export emit_ok_response
2035
2036 2008-12-15  Tomas Bzatek  <tbzatek@redhat.com>
2037
2038         * gtk/gtkfilechooserdefault.c: (list_row_activated):
2039         * gtk/gtkfilesystem.c: (_gtk_file_info_consider_as_directory):
2040         Mask G_FILE_TYPE_SHORTCUT as a directory (#561494)
2041
2042 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2043
2044         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
2045         Mount the enclosing volume if the folder we're switching to is not
2046         mounted. Patch by Tomas Bzatek, based on work by Carlos Garnacho
2047
2048 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2049
2050         Bug 561494 – FileChooser network browsing and authentication support
2051
2052         * gtk/gtkfilesystem.[hc] (_gtk_file_info_consider_as_directory): 
2053         Privately export this method. It classifies directories and mountables
2054         the same.
2055
2056         * gtk/gtkfilesystem.c (enclosing_volume_mount_cb): Silently drop
2057         G_IO_ERROR_ALREADY_MOUNTED error for gvfs backends without visible
2058         mounts.
2059
2060         * gtk/gtkfilesystemmodel.c:
2061         * gtk/gtkfilechooserbutton.c:
2062         * gtk/gtkfilechooserentry.c: 
2063         * gtk/gtkfilechooserdefault.c: Use the new function instead of 
2064         direct checks for G_FILE_TYPE_DIRECTORY throughout.
2065
2066 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2067         
2068         Bug 562579 – Remove error dialog when directory does not exist
2069
2070         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
2071         Don't show an error dialog when changing to a non-existing folder,
2072         since this is ususally just an annoyance. 
2073
2074 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2075
2076         Bug 556233 – local-only causes G_IS_FILE warning
2077
2078         * gtk/gktfilechooserdefault.c (set_local_only): Avoid a warning
2079         in tests. Patch by Christian Dywan
2080
2081 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2082
2083         Bug 563158 – CellRendererProgress pulsing and progressing rows can 
2084         not be used together
2085
2086         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_pulse):
2087         Don't try to keep state in a cell renderer between two paint
2088         calls. It doesn't work. Patch by Kristian Mueller
2089
2090 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2091
2092         Bug 555560 – gtk_combo_box_set_active fails with no model
2093         
2094         * gtk/gtkcombobox.c: Allow out-of-order setting of model and active.
2095         Patch by Christian Dywan
2096
2097 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2098
2099         Bug 558306 – Cannot build gdk (gtk+ 2.14.4) on Solaris 8
2100
2101         * gdk/x11/gdktestutils-x11.c (gdk_test_simulate_button):
2102         Remove a C99ism. Pointed out by Eric Lamarque
2103
2104 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2105
2106         Bug 549251 – GTK icon view accessible issue.
2107
2108         * gtk/gtkiconview.c (gtk_icon_view_accessible_model_row_changed):
2109         Handle separate append/set for rows.  Patch by Li Yuan
2110
2111 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2112
2113         Bug 556839 – Crash when opening a link
2114
2115         * gtk/gtkstatusicon.c (gtk_status_icon_finalize): Destroy the
2116         image too. Patch by Carlos Garcia Campos
2117
2118 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2119
2120         Bug 563751 – xatom cache is prefilled too late
2121
2122         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize the
2123         XAtom cache earlier. Patch by Christian Persch
2124
2125 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2126
2127         Bug 564212 – gtk_icon_view_accessible_model_rows_reordered explain 
2128         new_order in the wrong way
2129
2130         * gtk/gtkiconview.c (gtk_icon_view_accessible_model_rows_reordered):
2131         Use the new order correctly.  Patch by Li Yuan
2132
2133 2008-12-13  Matthias Clasen  <mclasen@redhat.com>
2134
2135         Bug 563835 – Typo in gtk_widget_has_screen() docs
2136
2137         * gdk/directfb/gdkwindow-directfb.c:
2138         * gdk/gdkwindow.c:
2139         * gdk/x11/gdkwindow-x11.c:
2140         * gtk/gtkmenushell.c:
2141         * gtk/gtkwidget.c:
2142         * gtk/tests/builder.c:
2143         * tests/testdnd.c: s/heirarchy/hierarchy/ in docs and comments.
2144         Pointed out by Wouter Bolsterlee
2145
2146 2008-12-12  Matthias Clasen  <mclasen@redhat.com>
2147
2148         Bug 564066 – Crash in gtk_rc_parse_default_files
2149
2150         * gtk/gtkrc.c (gtk_rc_parse_default_files): Handle being called
2151         early. Bug report by Andrés G. Aragoneses
2152
2153 2008-12-12  Matthias Clasen  <mclasen@redhat.com>
2154
2155         * gtk/gtkmountoperation.c: Set an empty title on password dialogs.
2156         Pointed out by Máirín Duffy.
2157
2158 2008-12-11  Sven Herzberg  <sven@imendio.com>
2159
2160         Document the "set-scroll-adjustments" signal
2161
2162         Reviewed by Kristian Rietveld.
2163
2164         * gtk/gtkiconview.c,
2165         * gtk/gtklayout.c,
2166         * gtk/gtktextview.c,
2167         * gtk/gtktreeview.c,
2168         * gtk/gtkviewport.c: added proper documentation for the signal
2169
2170 2008-12-11  Daniel Elstner  <danielk@openismus.com>
2171
2172         Bug 563994 – Input method module interface not documented
2173
2174         * gtk/gtkimcontext.h: Add public/private markers.
2175         * gtk/gtkimcontext.c: Add section documentation which explains how
2176         to add a new input method module to GTK+.  Document the signals and
2177         virtual functions of GtkIMContextClass.
2178         * gtk/gtkimmodule.c: Document struct GtkIMContextInfo.
2179         * docs/reference/gtk/gtk-sections.txt: Add GtkIMContextClass and
2180         GtkIMContextInfo to section GtkIMContext.
2181         * docs/reference/gtk/Makefile.am (IGNORE_HFILES): Remove
2182         gtkimmodule.h from the list in order to pick up GtkIMContextInfo.
2183         * docs/reference/gtk/tmpl/gtkimcontext.sgml: Remove file from
2184         repository since all the hand-edited content has been migrated to
2185         source file comments.
2186
2187 2008-12-10  Matthias Clasen  <mclasen@redhat.com>
2188
2189         Bug 563991 – gtk_file_chooser_button_new_with_backend is deprecated
2190         -- but what should be used instead?
2191
2192         * gtk/gtkfilechooserbutton.c: Enhanced deprecation annotation.
2193
2194 2008-12-10  Daniel Elstner  <danielk@openismus.com>
2195
2196         Maintenance of Multipress input method by Openismus GmbH:
2197
2198         * modules/input/gtkimcontextmultipress.[ch]: Clean up the code
2199         a bit to follow the GTK+ coding style more closely.  Fix the code
2200         to emit "preedit-start" and "preedit-end", too, rather than only
2201         "preedit-changed".
2202         (GTK_IM_CONTEXT_MULTIPRESS*): Rename incorrectly spelled macros
2203         gtk_im_context_multipress*. Shouldn't break API or ABI as it's
2204         only used internally.
2205         * modules/input/immultipress.c: More cleanup,
2206         * modules/input/README.multipress: ditto.
2207
2208 2008-12-09  Michael Natterer  <mitch@imendio.com>
2209
2210         * gdk/gdk.symbols: add missing #ifndef GDK_DISABLE_DEPRECATED.
2211
2212 2008-12-09  Michael Natterer  <mitch@imendio.com>
2213
2214         * gtk/gtkcontainer.c (struct PackingPropertiesData): add missing
2215         semicolon.
2216
2217         * gtk/gtkcontainer.c (attributes_text_element): "value" is a
2218         gchar*, not const gchar*.
2219
2220 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
2221
2222         Bug 546378 – GtkAssistant page title is not translatable
2223
2224         * gtk/gtkbuilderparser.c: Make gtk_builder_get_translation_domain()
2225         useful for subparsers.
2226
2227         * gtk/gtkcontainer.c: Make the child property parser support
2228         translatable child properties. Patch by Antti Kaijanmäki
2229  
2230 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
2231
2232         Bug 554274 – Add default hook for GtkLinkButton
2233
2234         * gtk/gtklinkbutton.c: Call gtk_show_uri() if no uri hook has
2235         been set. Patch by Emmanuele Bassi
2236
2237 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
2238
2239         Bug 559325 – documentation for gdk_display_get_window_at_pointer() 
2240 :       is wrong
2241
2242         * gdk/gdkdisplay.c (gdk_display_get_window_at_pointer): Correct
2243         the documentation. Patch by Paul Davis
2244
2245 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
2246
2247         Bug 563285 – test print backend does not compile
2248
2249         * modules/printbackends/test/gtkprintbackendtest.c: Clean up
2250         includes. 
2251
2252 2008-12-07  Behdad Esfahbod  <behdad@gnome.org>
2253
2254         Bug 563547 – Update gdkx11 atom precache table
2255
2256         * gdk/x11/gdkdisplay-x11.c: Add more atoms to precache.
2257
2258 2008-12-05  Michael Natterer  <mitch@imendio.com>
2259
2260         Bug 546285 – Allow GtkEntry to draw progress
2261
2262         * gtk/gtkentry.[ch]: add new API similar to GtkProgressBar which
2263         allows to set the entry's progress_fraction, its progress_pulse_step
2264         and to let the entry's progress pulse.
2265
2266         * gtk/gtk.symbols: updated.
2267
2268         * tests/testgtk.c: add progress demo code to the "Entry" window.
2269
2270 2008-12-04  Johan Dahlin  <jdahlin@async.com.br>
2271
2272         * gtk/gtkstatusicon.c:
2273         Add missing space in gtk-doc deprecated syntax
2274
2275 2008-12-03  Simos Xenitellis  <simos@gnome.org>
2276
2277         Bug 557420 – Some compose sequences don't work anymore (or only in
2278         a specific order)
2279
2280         * gtk/gtkimcontextsimple.c: Update of table size, keysym boundary,
2281         to match the gtkimcontextsimpleseqs.h table.
2282         * gtk/gtkimcontextsimpleseqs.h: Update with older gtk+ compose
2283         sequences that went missing due to table update with upstream.
2284         * gtk/compose-parse.py: Updated to include gtk-compose-lookaside.txt
2285         * gtk/gtk-compose-lookaside.txt: Older gtk+ compose sequences that
2286         are not found in the X.Org Compose file.
2287
2288 2008-12-03  Sven Herzberg  <sven@imendio.com>
2289
2290         Bug 562998 – GtkFontButton documentation improvements
2291
2292         * gtk/gtkfontbutton.c: mention the way the font string should be used.
2293         Patch by Sven Herzberg and Nelson Benitez
2294
2295 2008-12-03  Marek Kasik  <mkasik@redhat.com>
2296
2297         Bug 559914 – eog doesn't apply paper setup.
2298
2299         * gtk/gtkpapersize.c: Call the gtk_paper_size_new_from_ppd() with width
2300         and height in points.
2301
2302 2008-12-02  Carlos Garcia Campos  <carlosgc@gnome.org>
2303
2304         Bug 562878 – password save incorrectly set in gtkmountoperation
2305
2306         * gtk/gtkmountoperation.c (remember_button_toggled),
2307         (gtk_mount_operation_ask_password): Remember the password save
2308         flags only when the radio button becomes active. Set also the
2309         default state of the radio buttons depending on the current value
2310         of password save flags. 
2311         
2312 2008-12-01  Matthias Clasen <mclasen@redhat.com>
2313
2314         Bug 555334 – connected server feature
2315
2316         * gtk/gtkfilesystem.c (get_volumes_list): Filter out shadow mounts.
2317         Patch by David Zeuthen.
2318
2319 2008-12-01  Matthias Clasen <mclasen@redhat.com>
2320
2321         * gtk/gtkentry.c: Revert an accidental change that sneaked
2322         in with the last commit.
2323
2324 2008-12-01  Paul Bolle  <pebolle@tiscali.nl>
2325
2326         Bug 562817 – GtkDialog: typo
2327
2328         * gtk/gtkdialog.c: Fix typo
2329
2330 2008-11-29  Matthias Clasen  <mclasen@redhat.com>
2331
2332         Bug 554453 – "typeahead find" widget of GtkTreeView appears on 
2333         wrong monitor in a multi-head environment
2334
2335         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
2336         Make sure the typeahead window follows screen changes of the
2337         treeview. Noticed by Rainer Stransky
2338
2339 2008-11-30  Christian Dywan  <christian@imendio.com>
2340
2341         Bug 559622 – GdkDevice test segfaults
2342
2343         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_dispose):
2344         * gdk/x11/gdkinput.c (gdk_device_class_init), (gdk_device_dispose):
2345         Free and reset device in dispose. Patch by Michael Natterer and myself.
2346
2347 2008-11-30  Christian Dywan  <christian@imendio.com>
2348
2349         Bug 554076 – eventually release g_new-ed supported_atoms
2350
2351         * gdk/x11/gdkevents-x11.c (cleanup_atoms),
2352         (gdk_x11_screen_supports_net_wm_hint): Set cleanup callback.
2353         Patch by Caolan McNamara.
2354
2355 2008-11-30  Christian Dywan  <christian@imendio.com>
2356
2357         Bug 539263 – Deprecate gdk_window_get_toplevels
2358
2359         * gdk/gdkwindow.c:
2360         * gdk/gdkwindow.h: Deprecate gdk_window_get_toplevels
2361
2362 2008-11-29  Federico Mena Quintero  <federico@novell.com>
2363
2364         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): If tree lines are
2365         enabled, flip them around for the right-to-left case.  Fixes
2366         https://bugzilla.novell.com/show_bug.cgi?id=447004.  Patch by
2367         Ricardo Cruz <rpmcruz@alunos.dcc.fc.up.pt>
2368
2369 2008-11-29  Christian Persch  <chpe@gnome.org>
2370
2371         * gtk/gtkselection.c: Typo fix.
2372
2373 2008-11-29  Matthias Clasen  <mclasen@redhat.com>
2374
2375         * gtk/gtkselection.c:
2376         * gtk/gtkentry.c:
2377         * gtk/gtkdnd.c:
2378         * gtk/gtkcolorsel.c:
2379         * gtk/gtkbindings.c: Improve deprecation annotations.
2380
2381 2008-11-26  Christian Dywan  <christian@imendio.com>
2382
2383         Bug 561504 – testgtk should load rc file from sub folder
2384
2385         * tests/testgtk.c (main):
2386         Make testgtk look in subfolder and warn if not found
2387
2388 2008-11-25  Johan Dahlin  <jdahlin@async.com.br>
2389
2390         Bug 559947 – Unchecked dependency on python>=2.4
2391
2392         * gtk/gtk-builder-convert:
2393         Avoid using sorted() which is only present in python 2.
2394
2395 2008-11-24  Tristan Van Berkom <tvb@gnome.org>
2396
2397         * gtk/gtkalignment.c: Bug 561539 - Fix warnings when size allocations
2398         fall short of border width and padding.
2399
2400 2008-11-22  Paul Bolle  <pebolle@tiscali.nl>
2401
2402         Bug 561335 - Fix typos in GtkToolItem documentation
2403
2404         * gtk/gtktoolitem.c: Fix typos in GtkToolItem documentation
2405
2406 2008-11-21  Matthias Clasen <mclasen@redhat.com>
2407
2408         * configure.in: Bump gtk-doc dependency to 1.11 for
2409         nicer index-generation.
2410
2411 2008-11-21  Matthias Clasen <mclasen@redhat.com>
2412
2413         * gtk/gtkmountoperation.[hc]: Declare structs in a way that
2414         gtk-doc understands.
2415
2416 2008-11-17  Christian Dywan  <christian@imendio.com>
2417
2418         Bug 377699 – realizing gtk.Progress() causes SEGV
2419
2420         * gtk/gtkprogress.c: Define GtkProgress as an abstract type
2421
2422 2008-11-13  Christian Dywan  <christian@imendio.com>
2423
2424         Bug 560602 – Wrong GtkMenuItem default value (test fails)
2425
2426         * gtk/gtkmenuitem.c (gtk_menu_item_class_init):
2427         Correct default "label" value to ""
2428
2429 2008-11-12  Christian Dywan  <christian@imendio.com>
2430
2431         Bug 560139 – GtkEntry doesn't paint with the right state
2432
2433         * gtk/gtkentry.c (gtk_entry_class_init), (gtk_entry_draw_frame),
2434         (gtk_entry_expose): Reflect the right state if state-hint is set
2435
2436 2008-11-12  Christian Dywan  <christian@imendio.com>
2437
2438         Bug 559619 – invisible-char default cannot be tested
2439
2440         * gtk/tests/defaultvalue.c (test_type):
2441         Skip invisible-char when testing
2442
2443 2008-11-12  Richard Hult  <richard@imendio.com>
2444
2445         * gtk/gtkdnd-quartz.c: (gtk_drag_set_icon_pixmap): Implement,
2446         patch from Paul Davis.
2447
2448 2008-11-12  Christian Dywan  <christian@imendio.com>
2449
2450         Bug 525550 – GTK+ 2.13.0 GtkCurve test fails
2451
2452         * gtk/tests/object.c (list_ignore_properties),
2453         (object_test_property), (main): Ignore GtkCurve when testing
2454
2455 2008-11-12  Richard Hult  <richard@imendio.com>
2456
2457         Bug 550942 – [patch] Rework of gdkeventloop-quartz.c
2458
2459         * gdk/gdk.c:
2460         * gdk/gdkinternals.h: Add eventloop debug facility.
2461         * gdk/quartz/gdkeventloop-quartz.c: Big rework of the quartz
2462         mainloop integration, patch from Owen Taylor. See bug #550942 for
2463         the details.
2464
2465 2008-11-12  Richard Hult  <richard@imendio.com>
2466
2467         Bug 558586 – handling of keyboard under darwin (quartz)
2468
2469         * gdk/quartz/gdkkeys-quartz.c: Follow up on this bug, only use the
2470         new API when building on 64-bit, since there are still old non-xml
2471         layouts used out there we don't want to break them. (For 64-bit
2472         those layouts doesn't work so we don't have a choice there.)
2473
2474 2008-11-11  Matthias Clasen  <mclasen@redhat.com>
2475
2476         * gtk/gtkspinbutton.c: Chain up in enter and leave notify handlers.
2477
2478 2008-11-11  Michael Natterer  <mitch@imendio.com>
2479
2480         Bug 553765 – Add orientation API to GtkRange
2481
2482         * gtk/gtkrange.[ch]: implement the GtkOrientable interface. Add
2483         evil code that makes sure that the stepper_detail and slider_detail
2484         set in GtkRangeClass continue to work with the hacked subclasses
2485         below.
2486
2487         * gtk/gtkscale.[ch]: swallow all code from GtkHScale and GtkVScale
2488         and add gtk_scale_new() and gtk_scale_new_with_range() which take
2489         a GtkOrientation argument. Set slider_detail to "Xscale" so above
2490         evil code works.
2491
2492         * gtk/gtkscrollbar.[ch]: add gtk_scrollbar_new() which takes a
2493         GtkOrientation argument. Set stepper_detail to "Xscrollbar" so
2494         above evil code works.
2495
2496         * gtk/gtkhscale.c
2497         * gtk/gtkvscale.c
2498         * gtk/gtkhscrollbar.c
2499         * gtk/gtkvscrollbar.c: remove all code except the constructor and
2500         call gtk_orientable_set_orientation() in init().
2501
2502         * gtk/gtk.symbols: changed accordingly.
2503
2504 2008-11-11  Michael Natterer  <mitch@imendio.com>
2505
2506         * gtk/gtktoolbar.h: move deprecated functions together, move
2507         setters and getters together, some indentation cleanup.
2508
2509 2008-11-11  Michael Natterer  <mitch@imendio.com>
2510
2511         * gtk/gtktoolbar.[ch]: implement the GtkOrientable interface
2512         and deprecate gtk_toolbar_get,set_orientation().
2513
2514         * gtk/gtk.symbols: changed accordingly.
2515
2516 2008-11-10  Marek Kasik  <mkasik@redhat.com>
2517
2518         Bug 560135 - Print when the user double clicks a printer
2519
2520         * gtk/gtkprintunixdialog.c: add handling of double click to
2521         GtkPrintUnixDialog.
2522
2523 2008-11-07  Michael Natterer  <mitch@imendio.com>
2524
2525         * gtk/gtkpaned.c: argh, actually call the newly added private
2526         gtk_paned_calc_position() instead of the deprecated public
2527         version.
2528
2529 2008-11-07  Michael Natterer  <mitch@imendio.com>
2530
2531         Bug 553586 – Add orientation API to GtkPaned
2532
2533         * gtk/gtkpaned.[ch]: implement the GtkOrientable interface
2534         and swallow all code from GtkHPaned and GtkVPaned. Add
2535         gtk_paned_new() which takes a GtkOrientation argument. Deprecate
2536         gtk_paned_compute_position() for good (also for GTK_COMPILATION).
2537
2538         * gtk/gtkhpaned.[ch]
2539         * gtk/gtkvpaned.[ch]: remove all code except the constructor and
2540         call gtk_orientable_set_orientation() in init().
2541
2542         * gtk/gtk.symbols: add gtk_box_new().
2543
2544 2008-11-07  Johan Dahlin  <jdahlin@async.com.br>
2545
2546         * gtk/gtkcontainer.c (gtk_container_buildable_add_child):
2547         Check for child->parent instead of GTK_WIDGET_TOPLEVEL.
2548
2549 2008-11-07  Michael Natterer  <mitch@imendio.com>
2550
2551         * gtk/gtkscrollbar.c: remove bogus newlines in the middle of
2552         function calls, fix broken indentation and remove trailing
2553         whitespace.
2554
2555 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
2556
2557         * gtk/gtkmenuitem.c: Made buildable and added support for adding
2558         children of type "submenu"
2559
2560         * gtk/gtkwindow.c: Added support for custom tag "accel-groups" to
2561         add GtkAccelGroups to the window.
2562
2563         * gtk/gtkcontainer.c: Added builder contextual warnings in
2564         buildable_add_child()
2565
2566         * gtk/tests/builder.c: Added tests for buildable menus (test that
2567         accelerators are properly connected on stock items, test the menu
2568         hierarchy, test permission to add alien/custom menuitem children).
2569
2570         * docs/reference/gtk/tmpl/gtkbuilder.sgml
2571         * docs/reference/gtk/tmpl/gtkwindow.sgml
2572         * docs/reference/gtk/tmpl/gtkmenuitem.sgml: Updated docs for
2573         buildable submenus and accel groups.
2574
2575 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
2576
2577         * gtk/gtkmenuitem.[ch]: added new apis
2578         gtk_menu_item_[set/get]_label() and
2579         gtk_menu_item_[set/get]_use_underline() with "label" and
2580         "use-underline" properties, constructors cleaned up to use
2581         g_object_new().  GtkMenuItemClass take new vfuncs
2582         ->get/set_label().
2583
2584         * gtk/gtkcheckmenuitem.c: constructors cleaned up to use
2585         g_object_new().
2586
2587         * gtk/gtkimagemenuitem.[ch]: added new apis
2588         gtk_image_menu_item_[get/set]_use_stock() and
2589         gtk_image_menu_item_set_accel_group() with "use-stock" and
2590         write-only "accel-group" properties. constructors cleaned up to
2591         use g_object_new().
2592
2593 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
2594
2595         * gtk/gtkbuilder.h: Fixed a crasher in
2596         GTK_BUILDER_WARN_INVALID_CHILD_TYPE()
2597
2598 2008-11-06  Tristan Van Berkom <tvb@gnome.org>
2599
2600         * gtk/gtklabel.c: gtk_label_set_attributes() now applies attributes
2601         on top of any markup or mnemonic attributes (bug 558409).
2602
2603         * README: Updated and added release notes for 2.16
2604
2605 2008-11-06  Richard Hult  <richard@imendio.com>
2606
2607         Bug 558586 – handling of keyboard under darwin (quartz)
2608
2609         * gdk/quartz/gdkkeys-quartz.c: (maybe_update_keymap): Patch from
2610         Arnaud Charlet to replace use of deprecated keyboard layout API
2611         with the new TIS API available in 10.5. The old code is still used
2612         when building for 10.4.
2613
2614 2008-11-05  Richard Hult  <richard@imendio.com>
2615
2616         * gdk/quartz/gdkevents-quartz.c:
2617         (get_keyboard_modifiers_from_ns_event), (create_key_event): Revert
2618         (at least for now) the alt/cmd switching since it breaks the
2619         "alt-gr" functionality of alt which makes it impossible to input
2620         lots of characters.
2621
2622 2008-11-05  Christian Dywan  <christian@imendio.com>
2623
2624         Bug 559404 – gtk_editable_insert_text counts length in bytes
2625
2626         * gtk/gtkeditable.c:
2627         Document new_text_length as the number of bytes
2628
2629 2008-11-05  Richard Hult  <richard@imendio.com>
2630
2631         * gdk/quartz/gdkwindow-quartz.c:
2632         (gdk_window_impl_quartz_begin_paint_region): Set the fill color
2633         outside the loop.
2634
2635 2008-11-05  Richard Hult  <richard@imendio.com>
2636
2637         * gtk/gtkstatusicon.c: (gtk_status_icon_set_has_tooltip),
2638         (gtk_status_icon_get_tooltip_markup): Fix build for win32 and
2639         quartz.
2640
2641 2008-11-04  Tor Lillqvist  <tml@novell.com>
2642
2643         Bug 557212 - Problem with which window gains focus and is visible
2644
2645         * gdk/win32/gdkevents-win32.c (ensure_stacking_on_activate_app):
2646         Only do the restacking for the active window of the
2647         application. Seems to fix the problem.
2648
2649         (gdk_event_translate): Only call ensure_stacking_on_activate_app()
2650         when the application is being activated, not deactivated.
2651
2652 2008-11-03  Matthias Clasen  <mclasen@redhat.com>
2653
2654         * gtk/gtk.symbols:
2655         * gtk/gtkstatusicon.[hc]: Add new tooltip api.
2656
2657 2008-11-03  Christian Persch  <chpe@gnome.org>
2658
2659         Bug 558001 – gtk_icon_view_enable_model_drag_[source|dest] problem
2660
2661         * gtk/gtkiconview.c: Make gtk_drag_*_add_*_targets() usable with
2662         GtkIconView.
2663
2664 2008-11-02  Matthias Clasen  <mclasen@redhat.com>
2665
2666         Bug 558929 – gtkstatusicon.c: 'event' is a member of the structure
2667
2668         * gtk/gtkstatusicon.c: Fix the build.
2669
2670 2008-11-02  Matthias Clasen  <mclasen@redhat.com>
2671
2672         * gtk/gtkimagemenuitem.c: Make it possible to overrule the
2673         gtk-menu-images setting.
2674
2675         * gtk/gtkaction.c (connect_proxy): Show the image before adding
2676         it to the image menu item.
2677
2678 2008-11-01  Tor Lillqvist  <tml@novell.com>
2679
2680         Bug 558278 - Crash when calling a callback set by
2681         gdk_add_client_message_filter()
2682
2683         * gdk/win32/gdkevents-win32.c (apply_event_filters): Rename from
2684         apply_filters() so that it is clear that this function is for
2685         GdkEventFilters only.
2686
2687         (print_event): Print more information for GDK_CLIENT_EVENT events.
2688
2689         (gdk_event_translate): When handling client filters, don't use
2690         apply_event_filters(). Use similar code as in the X11 backend,
2691         although not exactly, as the parameter list and return value
2692         semantics of gdk_event_translate() is different.
2693
2694         * tests/testclientmessage.c: New interactive test program to
2695         verify client message functionality.
2696
2697         * tests/Makefile.am: Add it.
2698
2699 2008-11-01  Matthias Clasen  <mclasen@redhat.com>
2700
2701         Bug 409435 – GtkStatusIcon enhancements: DnD, scroll events, 
2702         middle click, rich tooltips
2703
2704         * gtk/gtkstatusicon.[hc]: Add support for button press/release and
2705         scroll events. Patch by Ed Catmur
2706
2707 2008-11-01  Matthias Clasen  <mclasen@redhat.com>
2708
2709         Bug 322934 – Replace menu's proxy icons with empty space hiding icons
2710
2711         * gtk/gtkmenu.c (gtk_menu_size_request): Use consistent padding
2712         regardless of imagees or checks being in the menu. Also add
2713         padding on the right edge.
2714         Proposal by Luca Ferretti, patch by Jon McCann
2715
2716 2008-11-01  Matthias Clasen  <mclasen@redhat.com>
2717
2718         Bug 412134 – Add API to query style properties from the style
2719
2720         * gtk/gtk.symbols:
2721         * gtk/gtkstyle.[hc]: Add getters for style properties to
2722         avoid the need for ugly workarounds with dummy widget instances.
2723         Patch by Mariano Suárez-Alvarez
2724
2725 2008-10-31  Christian Dywan  <christian@imendio.com>
2726
2727         Bug 558667 – gtk_font_selection_dialog_get_apply_button - deprecate?
2728
2729         * gtk/gtk.symbols:
2730         * gtk/gtkfontsel.c:
2731         * gtk/gtkfontsel.h:
2732         Deprecate gtk_font_selection_dialog_get_apply_button
2733
2734 2008-10-31  Matthias Clasen  <mclasen@redhat.com>
2735
2736         Bug 558323 – glitches when popping up combos in treeviews
2737
2738         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_set_property):
2739         Don't set the model property on the combo box, since that leads
2740         to loops.
2741
2742 2008-10-31  Christian Dywan  <christian@imendio.com>
2743
2744         Bug 347230 – testicontheme shortcomings
2745
2746         * tests/testicontheme.c (main):
2747         Use theme for "display" and quit on window closing
2748
2749 2008-10-30  Matthias Clasen  <mclasen@redhat.com>
2750
2751         Bug 558522 – scroll arrow painted insensitive even though there
2752         are pages beyond the edge
2753
2754         * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Redraw
2755         arrows. Pointed out by Christian Persch
2756
2757 2008-10-30  Michael Natterer  <mitch@imendio.com>
2758
2759         * gtk/gtkcellrenderertext.h
2760         * gtk/gtkentry.[ch]
2761         * gtk/gtkimcontext.h
2762         * gtk/gtklabel.c
2763         * gtk/gtkstyle.h: <pango/pango.h> is pulled in by <gdk/gdk.h>,
2764         remove its inclusion here.
2765
2766 2008-10-30  Michael Natterer  <mitch@imendio.com>
2767
2768         * gtk/*.h: no need to include <gtk/gtkenums.h> in headers which
2769         somehow include gtkobject.h or another header which includes it.
2770
2771 2008-10-30  Marek Kasik  <mkasik@redhat.com>
2772
2773         Bug 339714 - Set printer dpi on cairo ps/pdf surfaces when printing
2774
2775         * gtk/gtk.symbols
2776         * gtk/gtkprintsettings.c
2777         * gtk/gtkprintsettings.h
2778         * docs/reference/gtk/gtk-sections.txt
2779         * modules/printbackends/file/gtkprintbackendfile.c
2780         * modules/printbackends/test/gtkprintbackendtest.c
2781         * modules/printbackends/cups/gtkprintbackendcups.c
2782         * modules/printbackends/lpr/gtkprintbackendlpr.c:
2783         Added lpi (lines per inch) setting to GtkPrintSettings and support
2784         for anamorphic dpi. Surface fallback resolution is set to 2*lpi.
2785
2786 2008-10-30  Michael Natterer  <mitch@imendio.com>
2787
2788         * gtk/*.h: no need to include <gdk/gdk.h> in any widget header,
2789         it's included via gtkwidget.h anyway.
2790
2791 2008-10-30  Sven Neumann  <sven@gimp.org>
2792
2793         * gtk/gtkwidget.c (gtk_widget_get_property): removed redundant
2794         conditional.
2795
2796 2008-10-30  Christian Dywan  <christian@imendio.com>
2797
2798         Bug 557316 – GtkLinkButton should consider user-defined tooltip
2799
2800         * gtk/gtklinkbutton.c (gtk_link_button_query_tooltip_cb):
2801         Only override the tooltip if not previously set
2802
2803 2008-10-29  Christian Dywan  <christian@imendio.com>
2804
2805         Bug 557762 – Misleading error message in GDK DirectFB
2806
2807         * gdk/directfb/gdkdisplay-directfb.c (gdk_display_open):
2808         Correctly say GetInputDevice instead of GetDisplayLayer
2809
2810 2008-10-29  Christian Dywan  <christian@imendio.com>
2811
2812         Bug 558397 – gtk_widget_error_bell undefined without a screen
2813
2814         * gtk/gtkwidget.c (gtk_widget_error_bell): Test the settings
2815         instance and return silently if unset
2816
2817 2008-10-28  Michael Natterer  <mitch@imendio.com>
2818
2819         * gdk/keyname-table.h: fix small typo.
2820
2821 2008-10-27  Richard Hult  <richard@imendio.com>
2822
2823         Bug 557894 – Wrong return value for
2824         gdk_pointer_grab_info_libgtk_only()
2825
2826         * gdk/quartz/gdkevents-quartz.c:
2827         (gdk_pointer_grab_info_libgtk_only): Return TRUE when there is a
2828         pointer grab. Patch by Owen Taylor.
2829
2830 2008-10-26  Matthias Clasen  <mclasen@redhat.com>
2831
2832         * gtk/gtktoolshell.c:
2833         * gtk/gtktoolitem.c: Remove markup from short descriptions.
2834
2835 2008-10-26  Matthias Clasen  <mclasen@redhat.com>
2836
2837         * gdk/keyname-table.h:
2838         * gtk/gen-paper-names.c:
2839         * gtk/paper_names_offsets.c:
2840         * gtk/gtkpapersize.c:
2841         * gtk/gtkaccellabel.c:
2842         * gtk/gtkprintoperation.c:
2843         * gtk/gtkstock.c: More conversion to C_().
2844
2845 2008-10-26  Matthias Clasen  <mclasen@redhat.com>
2846
2847         * gtk/gtkaccellabel.c:
2848         * gtk/gtkcalendar.c:
2849         * gtk/gtkcellrendereraccel.c:
2850         * gtk/gtkcellrendererprogress.c:
2851         * gtk/gtkimmulticontext.c:
2852         * gtk/gtkrecentchoosermenu.c:
2853         * gtk/gtkvolumebutton.c: Use C_() instead of Q_(). String change!
2854
2855 2008-10-26  Christian Persch  <chpe@gnome.org>
2856
2857         Bug 557065 – gtkcellrendererpixbuf spams console over and over with
2858         'could not load image' warnings
2859
2860         * gtk/gtkcellrendererpixbuf.c:
2861         (gtk_cell_renderer_pixbuf_create_themed_pixbuf): Remove noisy
2862         g_warning.
2863
2864 2008-10-26  Philip Withnall  <philip@tecnocode.co.uk>
2865
2866         Bug 530454 – Clarify page_nr when printing
2867
2868         * gtk/gtkprintoperation.c (gtk_print_operation_class_init): Point out
2869         that page_nr is 0-based in the documentation.
2870
2871 2008-10-25  Matthias Clasen  <mclasen@redhat.com>
2872         
2873         Bug 557315 – stale clipboard target cache
2874
2875         * gtk/gtkclipboard.c (gtk_clipboard_set_contents): Remove cached
2876         targets. Pointed out by Evan Stade
2877
2878 2008-10-24  Tristan Van Berkom  <tvb@gnome.org>
2879
2880         * gtk/gtkwidget.c: Added a note about GtkWidget:has-tooltip in
2881         the docs for GtkWidget::query-tooltip.
2882
2883 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
2884
2885         * gtk/gtkmountoperation.c: The "screen" property ought to have
2886         type GdkScreen, not GtkWindow. Found by Cosimo Cecchi
2887
2888 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
2889
2890         Bug 556954 – gtk+/gtk/gtkrecentchooserdefault.c: mismatching
2891         allocation and deallocation
2892
2893         * gtk/gtkrecentchooserdefault.c (remove_selected_from_list): Don't
2894         free a strdup'ed string by g_free. Pointed out by Daniel Marjamäki
2895
2896 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
2897
2898         Bug 556835 – gtkentry.c: variable is declared at middle of block
2899
2900         * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
2901         out by Kazuki Iwamoto
2902
2903 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
2904
2905         Bug 557524 – "va_end(args);" should be added into
2906         gtk_text_buffer_insert_with_tags_by_name( )
2907
2908         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_with_tags_by_name):
2909         Don't forget to call va_end. Pointed out by Boram Park
2910
2911 2008-10-23  Alexander Larsson  <alexl@redhat.com>
2912
2913         Bug 528320 - Incorrect icons displayed for files with custom
2914         mimetype icons
2915         
2916         * gtk/gtkfilesystem.c:
2917         (_gtk_file_info_render_icon):
2918         Fall back on default file icon if there was no icon or it
2919         was not found in the theme. This goes with the corresponding
2920         change in glib to not add the fallback icon, but is useful
2921         in other cases too.
2922
2923 2008-10-22  Behdad Esfahbod  <behdad@gnome.org>
2924
2925         Bug 555920 – gtkentry.c passes wrong enum to
2926         pango_layout_set_alignment()
2927
2928         * gtk/gtkentry.c (gtk_entry_create_layout): Don't set layout
2929         adjustment.
2930
2931 2008-10-22  Matthias Clasen  <mclasen@redhat.com>
2932
2933         * gdk/x11/gdkscreen-x11.c: Only emit size-changed if the screen
2934         size actually changed.
2935
2936 2008-10-21  Michael Natterer  <mitch@imendio.com>
2937
2938         * gdk/gdkdraw.c
2939         * gdk/gdkimage.c
2940         * gdk/gdkscreen.c
2941         * gdk/gdkwindow.c: replace assertions for obj != NULL by
2942         GDK_IS_OBJ(), remove redundant != NULL checks when there is
2943         already a type check, add some g_return_if_fail() that were
2944         missing entirely, fix some broken indentation and spacing.
2945
2946 2008-10-21  Tor Lillqvist  <tml@novell.com>
2947
2948         Bug 557266 - Window Management Problem
2949
2950         Also reported in mail to gtk-list, and of course it has been well
2951         known in general that window state management is messy and buggy
2952         in various ways in gdk/win32.
2953
2954         * gdk/win32/gdkwindow-win32.c (show_window_internal): Correct
2955         handling of GDK_WINDOW_STATE_ABOVE windows. It doesn't work to set
2956         the WS_EX_TOPMOST extended style bit using SetWindowLong(). We
2957         must call SetWindowPos() on the window using HWND_TOPMOST
2958         instead. The description for WS_EX_TOPMOST in the documentation
2959         for CreateWindowEx() even implies that if you read it carefully.
2960
2961 2008-10-21  Michael Natterer  <mitch@imendio.com>
2962
2963         * gdk/gdkapplaunchcontext.c: reorder functions to be in standard
2964         order, add prototypes and namespace to static functions, add
2965         g_return_if_fail()s which were missing all over the place.
2966
2967 2008-10-20  Christian Persch  <chpe@gnome.org>
2968
2969         Bug 557059 – crash when compositing emblems with icon
2970
2971         * gtk/gtkicontheme.c: (apply_emblems): Copy the pixbuf before using it
2972         with gtk_pixbuf_composite, in case its pixdata is read-only (mmaped
2973         from icon cache or builtins).
2974
2975 2008-10-20  Murray Cumming  <murrayc@murrayc.com>
2976
2977         * gtk/gtkiconview.c: gtk_icon_view_set_tooltip_row(), 
2978         gtk_icon_view_set_tooltip_item():
2979         * gtk/gtktreeview.c: gtk_icon_view_set_tooltip_row(), 
2980         gtk_icon_view_set_tooltip_cell():
2981         Documentation: Mention the simple set_tooltip_column() 
2982         alternative.
2983
2984 2008-10-18  Tor Lillqvist  <tml@novell.com>
2985
2986         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
2987         WM_WINDOWPOSCHANGING, don't dereference windowpos in the debugging
2988         output without setting it first.
2989
2990 2008-10-18  Tor Lillqvist  <tml@novell.com>
2991
2992         Bug 556578 - GIMP windows stay on top of other windows
2993
2994         * gdk/win32/gdkevents-win32.c (ensure_stacking_on_unminimize)
2995         (ensure_stacking_on_window_pos_changing)
2996         (ensure_stacking_on_activate_app): Ignore unmapped windows in the
2997         loops where we look for the lowest "transient-type" window.
2998
2999         (gdk_event_translate): Don't call
3000         ensure_stacking_on_window_pos_changing() or
3001         ensure_stacking_on_activate_app() for unmapped windows.
3002
3003 2008-10-16  Marek Kasik  <mkasik@redhat.com>
3004
3005         Bug 556527 - The current page property is not passed to
3006         GtkPrintUnixDialog
3007
3008         * gtk/gtkprintoperation-unix.c: pass current-page property
3009         to GtkPrintUnixDialog
3010
3011 2008-10-15  Michael Natterer  <mitch@imendio.com>
3012
3013         * gdk/gdkapplaunchcontext.h (GDK_IS_APP_LAUNCH_CONTEXT): fix typo
3014         in the type name so the macro becomes usable.
3015
3016 2008-10-14  Christian Dywan  <christian@imendio.com>
3017
3018         556150 – gtk 'object' property test fixing
3019
3020         * gtk/tests/object.c (list_ignore_properties):
3021         Remove some recently fixed properties from the exception list
3022
3023 2008-10-13  Matthias Clasen  <mclasen@redhat.com>
3024
3025         Bug 555779 – GtkCellRendererPixbuf crashed on failed GIcon lookup
3026
3027         * gtk/gtkcellrendererpixbuf
3028         (gtk_cell_renderer_pixbuf_create_themed_pixbuf): Don't crash
3029         if a GIcon is not present in the current theme. Patch by 
3030         Alex Larsson.
3031
3032 2008-10-13  Matthias Clasen  <mclasen@redhat.com>
3033
3034         Bug 552318 – menubar mnemonics consumed even when
3035         gtk-enable-mnemonics=false
3036
3037         * gtk/gtkwindow.c (gtk_window_activate_key): Don't let mnemonic
3038         entries block accelerator activation when gtk-enable-mnemonics is
3039         FALSE. Problem reported by Andreas Moog.
3040
3041 2008-10-13  Cody Russell <cody@jhu.edu>
3042
3043         * test/testfilechooser.c: Fix option parsing so that -a and
3044         --action work correctly.
3045
3046 2008-10-13  Christian Persch <chpe@gnome.org>
3047
3048         Bug 555386 – format not a string literal and no format arguments
3049
3050         * gtk/gtkiconfactory.c
3051         * gtk/gtkprintbackend.c
3052         * gtk/gtkprintoperation.c
3053         * gtk/gtkthemes.c
3054         * gtk/tests/builder.c
3055         * modules/other/gail/gailtextview.c
3056         * tests/testmerge.c: Use printf safely.
3057
3058 2008-10-13  Christian Persch <chpe@gnome.org>
3059
3060         Bug 555724 – gtkcellrendereraccel not initialised correctly
3061
3062         * gtk/gtkcellrendereraccel.c: Initialise the cell text.
3063
3064 2008-10-12  Simos Xenitellis  <simos@gnome.org>
3065
3066         Bug 555625 – Updated gtk_compose_seqs_compact table 
3067         (gtkimcontextsimpleseqs.h)
3068         
3069         * gtk/gtkimcontextsimpleseqs.c: Updated the compose sequence table.
3070         In this update we removed a further set of compose sequences that
3071         are otherwise covered by check_algorithmically(). 
3072
3073         * gtk/gtkimcontextsimple.c: Updated table value that shows how many 
3074         distinct first values exist in the compose sequences. 
3075         Change from 22 to 20.
3076         
3077 2008-10-11  Matthias Clasen  <mclasen@redhat.com>
3078
3079         * gtk/gtktoolbar.c: Revert the GtkSettings::gtk-toolbar-icon-size
3080         part of the previous change, since it doesn't work correctly without
3081         extra complication, and using custom icon sizes doesn't make too
3082         much sense in a desktop-wide setting.
3083
3084 2008-10-11  Matthias Clasen  <mclasen@redhat.com>
3085
3086         Bug 555186 – Setting gtk-toolbar-icon-size with custom icon_size
3087
3088         * gtk/gtktoolbar.c: Turn GtkToolbar::icon-size and
3089         GtkSettings::gtk-toolbar-icon-size into int properties, to
3090         allow the use of app-registered icon sizes.
3091
3092 2008-10-11  Christian Dywan  <christian@imendio.com>
3093
3094         Bug 555676 – gtk_widget_real_grab_focus assumes toplevel == window
3095
3096         * gtk/gtkwidget.c (gtk_widget_real_grab_focus):
3097         Actually test for GTK_IS_WINDOW *and* GTK_WIDGET_TOPLEVEL
3098
3099 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
3100
3101         Bug 551355 – [PATCH] Make glib build with libtool 2.2
3102
3103         * autogen.sh: Accept libtool 2.2.   We are moving towards having
3104         it working.
3105
3106 2008-10-10  Richard Hult  <richard@imendio.com>
3107
3108         * gdk/quartz/gdkkeys-quartz.c: (gdk_keymap_get_caps_lock_state)
3109         Add empty stub to fix linking.
3110
3111 2008-10-10  Simos Xenitellis  <simos@gnome.org>
3112
3113         Bug 555000 – Wrong treatment on non-spacing marks dead keys in 
3114         GtkIMContextSimple
3115
3116         * gtk/gtkimcontextsimple.c: Change IS_DEAD_KEY() macro so that
3117         it only checks if input is a deadkey keysym.
3118
3119 2008-10-09  Christian Dywan  <christian@imendio.com>
3120
3121         Bug 555676 – gtk_widget_real_grab_focus assumes toplevel == window
3122
3123         * gtk/gtkwidget.c (gtk_widget_real_grab_focus):
3124         Test for GTK_IS_WINDOW instead of GTK_WIDGET_TOPLEVEL
3125
3126 2008-10-09  Christian Dywan  <christian@imendio.com>
3127
3128         Bug 555573 – gtk_font_selection_set_font_name
3129         shouldn't require a screen
3130
3131         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name):
3132         Don't warn if there is no screen, just return FALSE
3133
3134 2008-10-09  Christian Dywan  <christian@imendio.com>
3135
3136         Bug 555523 – gtk_scale_button_set_adjustment should accept NULL
3137
3138         * gtk/gtkscalebutton.c (gtk_scale_button_set_adjustment):
3139         Create a new adjustment if NULL is passed, like other widgets
3140
3141 2008-10-09  Christian Dywan  <christian@imendio.com>
3142
3143         Bug 555578 – GtkTable propertiy maxima are wrong
3144
3145         * gtk/gtktable.c (gtk_table_class_init), (gtk_table_resize):
3146         Always use 65535 instead of G_MAXUINT since that is
3147         the actually supported maximum number of columns and rows
3148
3149 2008-10-09  Richard Hult  <richard@imendio.com>
3150
3151         Bug 550342 – Splash screens have a caption
3152
3153         * gdk/quartz/gdkwindow-quartz.c: (_gdk_window_new),
3154         (gdk_window_set_decorations): Patch from Marianne Gagnon to make
3155         splash windows borderless.
3156
3157 2008-10-09  Michael Natterer  <mitch@imendio.com>
3158
3159         Bug 516425 – Optionally display accelerators in popups
3160
3161         * gtk/gtkuimanager.h (enum GtkUIManagerItemType): add value
3162         GTK_UI_MANAGER_POPUP_WITH_ACCELS which works like _POPUP but
3163         shows the actions' accelerators.
3164
3165         * gtk/gtkuimanager.c: honor the new enum value for programmatically
3166         created UIs, and support <popup accelerators="true"> in the XML
3167         for the same purpose.
3168
3169 2008-10-09  Simos Xenitellis  <simos@gnome.org>
3170
3171         Bug 554192 – double press on the "circumflex" dead key 
3172         (standard french 105 keyboard) no longer produces the "^" character
3173
3174         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress):
3175         Changed the order, put check_compact_table() first, then 
3176         check_algorithmically().
3177
3178 2008-10-08  Christian Persch  <chpe@gnome.org>
3179
3180         Bug 554702 – gtkfilesystem leaks GError
3181
3182         * gtk/gtkfilesystem.c (_gtk_file_system_init): Free the GError.
3183
3184 2008-10-08  Matthias Clasen  <mclasen@redhat.com>
3185
3186         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
3187         Don't forget to reset reload_state when current_folder is already
3188         correct. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=465992
3189
3190 2008-10-08  Christian Dywan  <christian@imendio.com>
3191
3192         Bug 555270 – Allow unsetting a MessageDialog's image
3193
3194         * gtk/gtkmessagedialog.c (gtk_message_dialog_set_property),
3195         Remove a superfluous cast to GtkWidget*
3196         (gtk_message_dialog_set_image): Accept NULL for the image
3197         and unset the image in that case.
3198
3199 2008-10-08  Christian Dywan  <christian@imendio.com>
3200
3201         Bug 436533 – Allow more space efficient scroll arrows placement
3202
3203         * gtk/gtkenums.h: Add GtkArrowPlacement
3204         * gtk/gtkmenu.c (gtk_menu_class_init), (get_arrows_border),
3205         (get_arrows_visible_area), (get_double_arrows),
3206         (get_arrows_sensitive_area): Implement GtkMenu::arrow-placement
3207         to allow scrolling arrows to be placed at the start, end or both
3208         Patch by Tommi Komulainen and myself
3209
3210 2008-10-08  Christian Dywan  <christian@imendio.com>
3211
3212         Bug 555387 – Changing the sensitivity of a statusbar
3213         mistakenly requires a display
3214
3215         * gtk/gtkstatusbar.c (set_grip_cursor): Only change the cursor
3216         of the resize grip if there is a grip window.
3217
3218 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
3219
3220         * gtk/gtktooltip.c (gtk_tooltip_show_tooltip): Avoid unitialized
3221         memory warnings from valgrind.
3222
3223 2008-10-07 11:03:30  Tim Janik  <timj@imendio.com>
3224
3225         * gtk/gtkbox.h: keep GtkBox as an abstract type and keep _gtk_box_new()
3226         as private function until we settle on the exact semantics.
3227         renamed _gtk_box_set_old_defaults() as suggested by Mitch.
3228
3229 2008-10-07  Michael Natterer  <mitch@imendio.com>
3230
3231         * gtk/gtkbox.c: reindent static prototypes.
3232
3233 2008-10-07  Michael Natterer  <mitch@imendio.com>
3234
3235         Bug 553573 – Add orientation API to GtkBox
3236
3237         * gtk/gtkbox.[hh]: implement the GtkOrientable interface and
3238         swallow all code from GtkHBox and GtkVBox. Add gtk_box_new()
3239         which takes a GtkOrientation argument. Also move the newly
3240         added "spacing_set" boolean from struct GtkBox to the new
3241         private struct.
3242
3243         * gtk/gtkhbox.[ch]
3244         * gtk/gtkvbox.[ch]: remove all code except the constructor and
3245         call gtk_orientable_set_orientation() in init().
3246
3247         * gtk/gtk.symbols: add gtk_box_new().
3248
3249 2008-10-06  Björn Lindqvist  <bjourne@gmail.com>
3250
3251         Bug 539464 – gtk_cell_view_get_model is missing in GtkCellView
3252
3253         * gtk/gtkcellview.c (gtk_cell_view_get_model): Add
3254         gtk_cell_view_get_model.
3255
3256 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
3257
3258         * gtk/gtkprintunixdialog.c (create_main_page): Show the tooltip
3259         on the range entry itself, too.
3260
3261 2008-10-04  Tor Lillqvist  <tml@novell.com>
3262
3263         Bug 132501 - Make utility window translate to tool window in win32
3264
3265         Implement the utility window type hint. Such windows are kept on
3266         top of other windows of the same process. Makes GIMP's toolbox and
3267         dock windows behave more like in GNOME under metacity. Apply the
3268         same logic also to windows marked with the dialog window type
3269         hint, and windows that are transient for some other window. I'll
3270         call such windows "transient-type" below.
3271
3272         * gdk/win32/gdkevents-win32.c (doesnt_want_key): Drop unused
3273         variables.
3274
3275         (ensure_stacking_on_unminimize)
3276         (ensure_stacking_on_window_pos_changing)
3277         (ensure_stacking_on_activate_app): New functions to implement the
3278         desired stacking order. Make sure that a window that is not
3279         transient-type stays below any transient-type windows of the
3280         application. When activating a non-transient-type window make sure
3281         it rises as high as possible while still staying below the lowest
3282         transient-type window.
3283
3284         (gdk_event_translate): Call above functions on
3285         WM_WINDOWPOSCHANGING, WM_ACTIVATEAPP and on WM_SIZE when
3286         unminimizing. Improve debugging printout.
3287
3288         * gdk/win32/gdkwindow-win32.c (get_effective_window_decorations):
3289         Handle utility windows like toolbar windows.
3290
3291         (gdk_window_new_internal) (update_style_bits): Give utility
3292         windows the WS_EX_TOOLWINDOW extended style.
3293
3294         (gdk_window_set_title): If debugging "misc" or "events", make the
3295         handle of top-level windows show up in their title bars. Very
3296         useful when looking at debugging output.
3297
3298         (gdk_window_set_transient_for) (gdk_window_set_keep_above)
3299         (gdk_window_set_keep_below) (gdk_window_set_modal_hint)
3300         (gdk_window_set_skip_taskbar_hint)
3301         (gdk_window_set_skip_pager_hint): Add and improve debugging
3302         printout.
3303
3304         (gdk_window_set_type_hint): Print hint symbolically in GDK_NOTE().
3305
3306 2008-10-04  Tor Lillqvist  <tml@novell.com>
3307
3308         * gdk/win32/gdkmain-win32.c (_gdk_win32_window_exstyle_to_string)
3309         (_gdk_win32_window_pos_bits_to_string): New debugging printout
3310         functions. Decode the WS_EX_* and SWP_* bits.
3311
3312         * gdk/win32/gdkprivate-win32.h: Declare them. Define
3313         GDK_DEBUG_MISC_OR_EVENTS for use in GDK_NOTE() to match either
3314         "misc" or "events".
3315
3316 2008-10-03  Matthias Clasen <mclasen@redhat.com>
3317
3318         * gtk/gtkmodules.c (_gtk_modules_settings_changed): Add some
3319         debug output.
3320
3321 2008-10-02  Matthias Clasen <mclasen@redhat.com>
3322
3323         Bug 96431 – Can't cut and paste / DND within invisible entry
3324
3325         * gtk/gtkentry.c: Disable cut, copy and drag out of an invisible
3326         entry. Proposed by Owen Taylor
3327
3328 2008-10-02  Matthias Clasen <mclasen@redhat.com>
3329
3330         Bug 530575 – GtkEntry with invisible chars has a confused cursor in
3331         overwrite mode
3332
3333         * gtk/gtkentry.c (gtk_entry_draw_cursor): Use the visible text
3334         in the layout when positioning the cursor, not the actual text
3335         content of the entry. This makes a different when using overwrite
3336         mode in an invisible entry. 
3337         Problem noticed by Jonathan Blandford
3338
3339         * gtk/gtktextutil.c: Fix a typo in a comment
3340
3341 2008-10-02  Christian Persch
3342
3343         Bug 554704 – gtkfilesystemmodel does too much work
3344
3345         * gtk/gtkfilesystemmodel.c: Replace g_slist_length()<1 check with a
3346         simple NULL check.
3347
3348 2008-10-02  Christian Persch
3349
3350         Bug 554701 – filechooser spams console with useless warnings
3351
3352         * gtk/gtkfilesystem.c.c: Don't warn if the async call was simply
3353         cancelled.
3354
3355 2008-10-02  Christian Persch
3356
3357         Bug 554698 – mem leak in filechooser
3358
3359         * gtk/gtkfilechooserdefault.c: Plug a mem leak.
3360
3361 2008-10-02  Christian Persch
3362
3363         Bug 554696 – invalid free function used
3364
3365         * gtk/gtkfilesystemmodel.c: Use the right free func.
3366
3367 2008-10-02  Christian Persch
3368
3369         Bug 554691 – mem leak in filechooser
3370
3371         * gtk/gtkfilesystemmodel.c: Plug a mem leak.
3372
3373 2008-10-02  Christian Persch
3374
3375         Bug 554690 – mem leak in filechooser
3376
3377         * gtk/gtkfilechooserdefault.c: Plug a mem leak.
3378
3379 2008-10-02  Michael Natterer  <mitch@imendio.com>
3380
3381         Bug 553585 – Add orientation API to GtkRuler
3382
3383         * gtk/gtkruler.[ch]: implement the GtkOrientable interface and
3384         swallow all code from GtkHRuler and GtkVRuler. Add gtk_ruler_new()
3385         which takes a GtkOrientation argument.
3386
3387         * gtk/gtkhruler.c
3388         * gtk/gtkvruler.c: remove all code except the constructor and
3389         call gtk_orientable_set_orientation() in init().
3390
3391         * gtk/gtk.symbols: add gtk_ruler_new().
3392
3393 2008-10-01  Torsten Schoenfeld  <kaffeetisch@gmx.de>
3394
3395         * docs/reference/gtk/gtk-sections.txt:
3396         * gtk/gtk.symbols:
3397         * gtk/gtkselection.c:
3398         * gtk/gtkselection.h: Add gtk_selection_data_get_selection to
3399         retrieve the sealed struct field GtkSelectionData.selection.
3400
3401 2008-10-01  Tor Lillqvist  <tml@novell.com>
3402
3403         * gtk/gtkscalebutton.c: Don't #define _GNU_SOURCE on Windows as it
3404         confuses newest mingw headers.
3405
3406 2008-10-01  Tor Lillqvist  <tml@novell.com>
3407
3408         * gdk/win32/gdkkeys-win32.c (gdk_keymap_get_caps_lock_state):
3409         Implement trivially on Windows. Not sure if something more complex
3410         is actually needed, more specifically whether the function needs
3411         to differentiate between "Caps Lock" and "Shift Lock" semantics?
3412
3413 2008-10-01  Simos Xenitellis  <simos@gnome.org>
3414
3415         Bug 554506 – combining diacritics broken, became deadkeys
3416
3417         * gtk/gtkimcontextsimple.c: added check if keysym is greater
3418         than 0x1000000, in this case it is not a dead key.
3419
3420 2008-09-30  Michael Natterer  <mitch@imendio.com>
3421
3422         Bug 553582 – Add orientation API to GtkSeparator
3423
3424         * gtk/gtkseparator.[ch]: implement the GtkOrientable interface and
3425         swallow all code from GtkHSeparator and GtkVSeparator. Add
3426         gtk_separator_new() which takes a GtkOrientation argument.
3427
3428         * gtk/gtkhseparator.c
3429         * gtk/gtkvseparator.c: remove all code except the constructor and
3430         call gtk_orientable_set_orientation() in init().
3431
3432         * gtk/gtk.symbols: add gtk_separator_new().
3433
3434 2008-09-30  Marek Kasik  <mkasik@redhat.com>
3435
3436         Bug 344522 – support non-local destination files (GtkPrint):
3437
3438         * gtk/gtkprintunixdialog.c
3439         * gtk/gtkprinteroptionwidget.c: Process URI instead of filename.
3440         * modules/printbackends/file/gtkprintbackendfile.c: Add ability
3441         to save files on non-local filesystems.
3442
3443 2008-09-30  Michael Natterer  <mitch@imendio.com>
3444
3445         * gtk/gtk.symbols: forgot the G_GNUC_CONST of
3446         gtk_orientable_get_type().
3447
3448 2008-09-30  Michael Natterer  <mitch@imendio.com>
3449
3450         Bug 541009 – Get rid of separate subclasses for horizontal and
3451         vertical orientation:
3452
3453         * gtk/Makefile.am
3454         * gtk/gtk.symbols
3455         * gtk/gtk.h
3456         * gtk/gtkorientable.[ch]: add new interface GtkOrientable which
3457         will be implemented by everything that can switch orientation.
3458
3459 2008-09-30  Christian Dywan  <christian@imendio.com>
3460
3461         Fix a typo in the tutorial.
3462
3463         * docs/tutorial/gtk-tut.sgml: It's mnemonic, not 'mnemnonic'.
3464
3465 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
3466
3467         Bug 553086 – hard to see current immodule
3468
3469         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
3470         Display the actually selected context in the system menuitem.
3471         Complaint by Akira Tagoh.
3472
3473 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
3474
3475         Bug 530568 – Entries with visibility=FALSE should warn for caps-lock
3476         on
3477
3478         * gtk/gtkentry.c: Add a tooltip-like Caps Lock warning for
3479         password entries. The warning is also triggered if an input method
3480         is active. The warning can be turned off using the
3481         GtkEntry::caps-lock-warning property. 
3482         Proposed by Owen Taylor
3483
3484 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
3485
3486         * gtk/gtk.symbols:
3487         * gtk/gtkimmulticontext.[hc] (gtk_im_multicontext_get_context_id): 
3488         Add a getter for the the sealed context_id field.
3489
3490 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
3491
3492         Bug 107000 – Add signals to GdkKeymap for monitoring caps_lock, etc.
3493
3494         * gdk/gdk.symbols:
3495         * gdk/gdkkeys.[ch]: Add a new GdkKeymap::state-changed signal, and
3496         a gdk_keymap_get_caps_lock_state function.
3497
3498         * gdk/x11/gdkkeys-x11.c: Implement it here. For now, only emit
3499         state-changed when caps lock lockedness changes. 
3500
3501         * gdk/x11/gdkdisplay-x11.c: Also select for modifier lock status
3502         changes in the XkbSelectEventDetails call.
3503
3504 2008-09-29  Kristian Rietveld  <kris@imendio.com>
3505
3506         Bug 487624 - Tooltips doesn't get updated if ther's no mouse motion
3507         over widget
3508
3509         * gtk/gtkwidget.c (gtk_widget_set_property): after updating
3510         tooltip text or markup, call gtk_widget_trigger_tooltip_query()
3511         so that existing visible tooltips are updated.
3512
3513 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
3514
3515         Bug 371908 – Password Entry broken
3516         Bug 317002 – Disable input method completely in GtkEntry when it's 
3517         in invisible mode.
3518
3519         * gtk/gtkentry.c (gtk_entry_backspace): Make backspace behave
3520         properly when invisible.
3521
3522         * gtk/gtkentry.c (gtk_entry_create_layout): Show preedit even if
3523         invisible. 
3524
3525         * gtk/gtkentry.c (gtk_entry_set_visibility): Don't disable input
3526         methods when making the entry invisible.
3527         
3528 2008-09-29  Emmanuele Bassi  <ebassi@linux.intel.com>
3529
3530         * gdk/x11/gdkinput.c:
3531         (gdk_device_class_init), (gdk_device_finalize): Correctly chain
3532         up the finalize implementation.
3533
3534 2008-09-29  Richard Hult  <richard@imendio.com>
3535
3536         Bug 554141 – uninitialized data use/free in gtkclipboard-quartz.c
3537
3538         * gtk/gtkclipboard-quartz.c: (gtk_clipboard_wait_for_contents):
3539         Patch from Jon A. Cruz to initialize the allocated selection data.
3540
3541 2008-09-27  Matthias Clasen  <mclasen@redhat.com>
3542
3543         Bug 339367 – Incorrect spotlocation
3544
3545         * modules/input/gtkimcontextxim.c: Correct the spot location
3546         for on-the-spot style.
3547
3548 2008-09-27  Denis Washington  <denisw@svn.gnome.org>
3549
3550         * gtk/gtkiconview.c: only draw keyboard focus when keyboard navigation
3551         is used, like GtkTreeView. (Bug #553575)
3552
3553 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
3554
3555         Bug 552959 – GtkTrayIcon: _NET_SYSTEM_TRAY_VISUAL and real
3556         transparency
3557
3558         * gtk/gtktrayicon-x11.c: Add support for the _NET_SYSTEM_TRAY_VISUAL
3559         property described in
3560         http://lists.freedesktop.org/archives/xdg/2008-September/009919.html
3561         If _NET_SYSTEM_TRAY_VISUAL is a visual with an alpha channel, the 
3562         parent-relative-background hack is skipped and we draw with a real
3563         transparent background.
3564
3565         * gtk/gtkrc.c: Remove the default GtkTrayIcon style, since the
3566         parent-relative background is now set when realizing the tray
3567         icon.
3568
3569         Patch by Owen Taylor
3570
3571 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
3572
3573         Bug 552956 – Should check composite extension version
3574
3575         * gdk/x11/gdkdisplay-x11.c: Check that the version of the
3576         composite extension is at least 0.4.
3577         Patch by Owen Taylor
3578
3579 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
3580         
3581         Bug 553803 – eventually call XCloseDevice on XOpenDevice results
3582
3583         * gdk/x11/gdkinput.c: Add a finalize function for device objects,
3584         and call XCloseDevice there. 
3585
3586         * gdk/x11/gdkinput-x11.c:
3587         * gdk/x11/gdkdisplay-x11.c: Move freeing of device objects to
3588         the finalize function.
3589         Patch by Caolan McNamara
3590         
3591 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
3592
3593         Bug 553578 - tabs are not drawn correctly
3594
3595         * gtk/gtknotebook.c: Track the visibility state of notebook tabs 
3596         between allocations so that we know to redraw the tab labels if 
3597         tabs are hidden and shown without changing position. 
3598         Reported by Marek Kašík, patch by Owen Taylor.
3599
3600 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
3601
3602         Bug 553133 – GtkFileChooser won't ask to mount a volume
3603         Bug 553211 – GtkFileChooserButton unsets filter after first use
3604
3605         * gtk/gtkfilechooserdefault.c (shortcuts_activate_volume): Use
3606         a GtkMountOperation when mounting, so that we get a password
3607         dialog when required.  
3608
3609         * gtk/gtkfilechooserdefault.c (show_and_select_files): Also
3610         get the content-type, since it is used later on. 
3611         Pointed out by Davyd Madeley.
3612
3613 2008-09-26  Cody Russell  <bratsche@gnome.org>
3614
3615         Bug 553917 – Typo in gdkwindow-win32.c
3616
3617         * gdk/win32/gdkwindow-win32.c: Fixed a typo in
3618         update_system_menu().  Changed GDK_DECOR_ALL to GDK_FUNC_ALL.
3619
3620         Reported by Richard Hult
3621
3622 2008-09-25  Marek Kasik  <mkasik@redhat.com>
3623
3624         Bug 553241 – double freed pointer in lpr_write cause firefox3 crash
3625
3626         * modules/printbackends/lpr/gtkprintbackendlpr.c:
3627         The redundant freeing of memory was removed.
3628
3629         Patch by Chris Wang
3630
3631 2008-09-25  Michael Natterer  <mitch@imendio.com>
3632
3633         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_finalize):
3634         don't unref the file system backend, the newly added
3635         unset_file_system_backend() already does this (bug #553135).
3636
3637 2008-09-24  Michael Natterer  <mitch@imendio.com>
3638
3639         * gtk/gtkeventbox.c: events return gboolean not gint, reindented
3640         static prototypes.
3641
3642 2008-09-24  Johan Dahlin  <johan@gnome.org>
3643
3644         Bug 553385 – gtk-builder-convert creates untranslated combobox models
3645
3646         * gtk/gtk-builder-convert: Set the translatable property on
3647         col tags for converted combos.
3648
3649 2008-09-24  Tor Lillqvist  <tml@novell.com>
3650
3651         * gtk-zip.sh.in: Include all of share/man, lib/pkgconfig,
3652         share/aclocal and share/gtk-doc instead of trying to list
3653         individual files or subdirectories. We had missed gail.pc, for
3654         instance.
3655
3656 2008-09-24  Christian Dywan  <christian@imendio.com>
3657
3658         Bug 538782 – Make GtkMenu's arrow size themable
3659
3660         * gtk/gtkmenu.c (gtk_menu_class_init), (gtk_menu_paint):
3661         Implement "arrow-scaling" style property in GtkMenu.
3662
3663 2008-09-24  Christian Dywan  <christian@imendio.com>
3664
3665         Bug 408244 – add GtkDialog::content-area-spacing
3666
3667         * gtk/gtkbox.c (gtk_box_init), (gtk_box_set_spacing),
3668         (_gtk_box_set_spacing_set), (_gtk_box_get_spacing_set):
3669         * gtk/gtkbox.h:
3670         * gtk/gtkdialog.c (gtk_dialog_class_init), (update_spacings):
3671         Implement "content-area-spacing" style property in GtkDialog
3672         and internal helper _gtk_box_get_spacing_set in GtkBox.
3673         Patch by Tim Janik, Sven Herzberg and myself.
3674
3675 2008-09-24  Christian Dywan  <christian@imendio.com>
3676
3677         Bug 541391 – Unfocussable Treeview swallows focus
3678
3679         * gtk/gtktreeview.c (grab_focus_and_unset_draw_keyfocus),
3680         (gtk_tree_view_focus): Honor GTK_WIDGET_CAN_FOCUS properly
3681
3682 2008-09-24  Denis Washington  <denisw@svn.gnome.org>
3683
3684         * gtk/gtkiconview.c: draw focus as a rectangle around the
3685         complete item, not just the text. (Bug #38254)
3686
3687 2008-09-23  Michael Natterer  <mitch@imendio.com>
3688
3689         * gtk/gtkobject.c
3690         * gtk/gtksignal.[ch]: s/GtkType/GType/ and
3691         s/GtkSignalMarshaller/GSignalCMarshaller/.
3692
3693 2008-09-23  Michael Natterer  <mitch@imendio.com>
3694
3695         * gdk/x11/gdkevents-x11.c (gdk_event_translate): remove unused
3696         variable and fix indentation.
3697
3698 2008-09-23  Michael Natterer  <mitch@imendio.com>
3699
3700         * gtk/gtkclist.h
3701         * gtk/gtkctree.h
3702         * gtk/gtklist.h
3703         * gtk/gtklistitem.h
3704         * gtk/gtkobject.h
3705         * gtk/gtkoldeditable.h
3706         * gtk/gtkpixmap.h
3707         * gtk/gtkpreview.h
3708         * gtk/gtktext.h
3709         * gtk/gtktipsquery.h
3710         * gtk/gtktree.h
3711         * gtk/gtktreeitem.h: get rid of GtkType and GTK_CHECK_FOO() also
3712         in all deprecated headers.
3713
3714 2008-09-22  Matthias Clasen  <mclasen@redhat.com>
3715
3716         Bug 553135 – eog crash: assertion failed. Gtk error:
3717         shortcuts_remove_rows: code should not be reached
3718
3719         * gtk/gtkfilechooserdefault.c: Disconnect from GtkFileSystem 
3720         signals when we are destroyed, in order to avoid nasty surprises.
3721         Patch by Claudio Saavedra
3722
3723 2008-09-22  Emmanuele Bassi  <ebassi@linux.intel.com>
3724
3725         Bug 552789 – Show size column in the search and recently used
3726         files modes
3727
3728         * gtk/gtkfilechooserdefault.c: Display the file size column
3729         when in OPERATION_MODE_SEARCH. This removes a stat() call
3730         and simplifies the code a little bit by changing the query
3731         for file informations for each search engine hit.
3732
3733 2008-09-22  Michael Natterer  <mitch@imendio.com>
3734
3735         * gtk/gtksignal.[ch]
3736         * gtk/gtkclist.c
3737         * gtk/gtklist.c
3738         * gtk/gtkmain.c
3739         * gtk/gtktext.c
3740         * gtk/gtktreeitem.c: use G_CALLBACK and GCallback instead of
3741         GTK_SIGNAL_FUNC and GtkSignalFunc also in deprecated code.
3742
3743 2008-09-22  Frederic Crozat  <fcrozat@mandriva.com>
3744
3745         * gtk/gtkfilesystem.c: use the correct gi18n header.
3746         Fixes bug #553000.
3747
3748 2008-09-22  Michael Natterer  <mitch@imendio.com>
3749
3750         * gtk/gtktoolbar.[ch]: add "Deprecated: 2.4" to all the deprecated
3751         append(), prepend() and insert() functions and recommend to use
3752         gtk_toolbar_insert() instead. Use GCallback instead of
3753         GtkSignalFunc even in deprecated API.
3754
3755 2008-09-20  Matthias Clasen  <mclasen@redhat.com>
3756
3757         * gtk/gtkfilechooserbutton.c (filter_model_visible_func): Don't
3758         leak a GFile.
3759
3760 2008-09-19  Owen Taylor  <otaylor@redhat.com>
3761
3762         Small cleanups to debug messages for GtkPlug/GtkSocket
3763
3764         * gtk/gtksocket-x11.c: Fix debug message to say "Socket" not "Plug"
3765         * gtk/gtkplug-x11.c: Remove excess newlines from the ends of debug
3766         messages.
3767
3768 2008-09-19  Carlos Garnacho  <carlos@imendio.com>
3769
3770         Bug 83935 – GtkEntry's default invisible char should be U+25CF
3771
3772         * gtk/gtkentry.c (find_invisible_char) (gtk_entry_init): Find a
3773         more suitable invisible char than '*' based on the used font.
3774         (gtk_entry_class_init) (gtk_entry_set_property)
3775         (gtk_entry_get_property): Add a "invisible-char-set" property.
3776         (gtk_entry_unset_invisible_char): New function, needed now that the
3777         default invisible char isn't fixed.
3778         * gtk/gtkentry.h:
3779         * gtk/gtk.symbols:
3780         * docs/reference/gtk/gtk-sections.txt: Add the new function.
3781
3782 2008-09-19  Christian Persch  <chpe@gnome.org>
3783  
3784         Bug 552837 – mem leak in gtkimmulticontext
3785  
3786         * gtk/gtkimmulticontext.c: (gtk_im_multicontext_get_slave): Plug mem
3787         leak.
3788  
3789 2008-09-18  Emmanuele Bassi  <ebassi@linux.intel.com>
3790
3791         * gtk/gtkfilechooserdefault.c (settings_save): Save the size column
3792         visibility state with the rest of the FileChooser settings.
3793
3794 2008-09-18  Emmanuele Bassi  <ebassi@linux.intel.com>
3795
3796         Bug 325095 – show a 'size' column
3797
3798         * gtk/gtkfilechooserdefault.c:
3799         * gtk/gtkfilechooserprivate.h: Add a context menu item controlling
3800         the visibility of the file size column. This works only for the
3801         browse mode, and the column is not visible by default.
3802
3803         * gtk/gtkfilechoosersettings.[ch]: Add a ShowSizeColumn key to the
3804         settings file.
3805
3806 2008-09-18  Dominic Lachowicz  <domlachowicz@gmail.com>
3807
3808         * modules/engines/ms-windows/*: Revert most of previous patch, as
3809         it didn't work as expected; Some work toward #531086 - the new
3810         GtkTooltip widget doesn't theme properly on win32. Now, at least
3811         the background color seems okay
3812         
3813 2008-09-18  Dominic Lachowicz  <domlachowicz@gmail.com>
3814
3815         * modules/engines/ms-windows/*: MS Windows style should use
3816         pango_win32_font_description_from_logfont; Allows us to rip out a
3817         lot of potentially buggy code, and also get the font specification
3818         from the XP theme (#434987)
3819         
3820 2008-09-18  Matthias Clasen  <mclasen@redhat.com>
3821
3822         * configure.in: updated version number to 2.15.0 for development.
3823
3824         * ChangeLog.pre-2-14: rotate ChangeLog
3825
3826 === Branch for 2.14 ===