]> Pileus Git - ~andy/gtk/blob - ChangeLog
Bug 557524 – "va_end(args);" should be added into
[~andy/gtk] / ChangeLog
1 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
2
3         Bug 557524 – "va_end(args);" should be added into
4         gtk_text_buffer_insert_with_tags_by_name( )
5
6         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_with_tags_by_name):
7         Don't forget to call va_end. Pointed out by Boram Park
8
9 2008-10-23  Alexander Larsson  <alexl@redhat.com>
10
11         Bug 528320 - Incorrect icons displayed for files with custom mimetype icons
12         
13         * gtk/gtkfilesystem.c:
14         (_gtk_file_info_render_icon):
15         Fall back on default file icon if there was no icon or it
16         was not found in the theme. This goes with the corresponding
17         change in glib to not add the fallback icon, but is useful
18         in other cases too.
19
20 2008-10-22  Behdad Esfahbod  <behdad@gnome.org>
21
22         Bug 555920 – gtkentry.c passes wrong enum to
23         pango_layout_set_alignment()
24
25         * gtk/gtkentry.c (gtk_entry_create_layout): Don't set layout
26         adjustment.
27
28 2008-10-22  Matthias Clasen  <mclasen@redhat.com>
29
30         * gdk/x11/gdkscreen-x11.c: Only emit size-changed if the screen
31         size actually changed.
32
33 2008-10-21  Michael Natterer  <mitch@imendio.com>
34
35         * gdk/gdkdraw.c
36         * gdk/gdkimage.c
37         * gdk/gdkscreen.c
38         * gdk/gdkwindow.c: replace assertions for obj != NULL by
39         GDK_IS_OBJ(), remove redundant != NULL checks when there is
40         already a type check, add some g_return_if_fail() that were
41         missing entirely, fix some broken indentation and spacing.
42
43 2008-10-21  Tor Lillqvist  <tml@novell.com>
44
45         Bug 557266 - Window Management Problem
46
47         Also reported in mail to gtk-list, and of course it has been well
48         known in general that window state management is messy and buggy
49         in various ways in gdk/win32.
50
51         * gdk/win32/gdkwindow-win32.c (show_window_internal): Correct
52         handling of GDK_WINDOW_STATE_ABOVE windows. It doesn't work to set
53         the WS_EX_TOPMOST extended style bit using SetWindowLong(). We
54         must call SetWindowPos() on the window using HWND_TOPMOST
55         instead. The description for WS_EX_TOPMOST in the documentation
56         for CreateWindowEx() even implies that if you read it carefully.
57
58 2008-10-21  Michael Natterer  <mitch@imendio.com>
59
60         * gdk/gdkapplaunchcontext.c: reorder functions to be in standard
61         order, add prototypes and namespace to static functions, add
62         g_return_if_fail()s which were missing all over the place.
63
64 2008-10-20  Christian Persch  <chpe@gnome.org>
65
66         Bug 557059 – crash when compositing emblems with icon
67
68         * gtk/gtkicontheme.c: (apply_emblems): Copy the pixbuf before using it
69         with gtk_pixbuf_composite, in case its pixdata is read-only (mmaped
70         from icon cache or builtins).
71
72 2008-10-20  Murray Cumming  <murrayc@murrayc.com>
73
74         * gtk/gtkiconview.c: gtk_icon_view_set_tooltip_row(), 
75         gtk_icon_view_set_tooltip_item():
76         * gtk/gtktreeview.c: gtk_icon_view_set_tooltip_row(), 
77         gtk_icon_view_set_tooltip_cell():
78         Documentation: Mention the simple set_tooltip_column() 
79         alternative.
80
81 2008-10-18  Tor Lillqvist  <tml@novell.com>
82
83         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
84         WM_WINDOWPOSCHANGING, don't dereference windowpos in the debugging
85         output without setting it first.
86
87 2008-10-18  Tor Lillqvist  <tml@novell.com>
88
89         Bug 556578 - GIMP windows stay on top of other windows
90
91         * gdk/win32/gdkevents-win32.c (ensure_stacking_on_unminimize)
92         (ensure_stacking_on_window_pos_changing)
93         (ensure_stacking_on_activate_app): Ignore unmapped windows in the
94         loops where we look for the lowest "transient-type" window.
95
96         (gdk_event_translate): Don't call
97         ensure_stacking_on_window_pos_changing() or
98         ensure_stacking_on_activate_app() for unmapped windows.
99
100 2008-10-16  Marek Kasik  <mkasik@redhat.com>
101
102         Bug 556527 - The current page property is not passed to
103         GtkPrintUnixDialog
104
105         * gtk/gtkprintoperation-unix.c: pass current-page property
106         to GtkPrintUnixDialog
107
108 2008-10-15  Michael Natterer  <mitch@imendio.com>
109
110         * gdk/gdkapplaunchcontext.h (GDK_IS_APP_LAUNCH_CONTEXT): fix typo
111         in the type name so the macro becomes usable.
112
113 2008-10-14  Christian Dywan  <christian@imendio.com>
114
115         556150 – gtk 'object' property test fixing
116
117         * gtk/tests/object.c (list_ignore_properties):
118         Remove some recently fixed properties from the exception list
119
120 2008-10-13  Matthias Clasen  <mclasen@redhat.com>
121
122         Bug 555779 – GtkCellRendererPixbuf crashed on failed GIcon lookup
123
124         * gtk/gtkcellrendererpixbuf
125         (gtk_cell_renderer_pixbuf_create_themed_pixbuf): Don't crash
126         if a GIcon is not present in the current theme. Patch by 
127         Alex Larsson.
128
129 2008-10-13  Matthias Clasen  <mclasen@redhat.com>
130
131         Bug 552318 – menubar mnemonics consumed even when
132         gtk-enable-mnemonics=false
133
134         * gtk/gtkwindow.c (gtk_window_activate_key): Don't let mnemonic
135         entries block accelerator activation when gtk-enable-mnemonics is
136         FALSE. Problem reported by Andreas Moog.
137
138 2008-10-13  Cody Russell <cody@jhu.edu>
139
140         * test/testfilechooser.c: Fix option parsing so that -a and
141         --action work correctly.
142
143 2008-10-13  Christian Persch <chpe@gnome.org>
144
145         Bug 555386 – format not a string literal and no format arguments
146
147         * gtk/gtkiconfactory.c
148         * gtk/gtkprintbackend.c
149         * gtk/gtkprintoperation.c
150         * gtk/gtkthemes.c
151         * gtk/tests/builder.c
152         * modules/other/gail/gailtextview.c
153         * tests/testmerge.c: Use printf safely.
154
155 2008-10-13  Christian Persch <chpe@gnome.org>
156
157         Bug 555724 – gtkcellrendereraccel not initialised correctly
158
159         * gtk/gtkcellrendereraccel.c: Initialise the cell text.
160
161 2008-10-12  Simos Xenitellis  <simos@gnome.org>
162
163         Bug 555625 – Updated gtk_compose_seqs_compact table 
164         (gtkimcontextsimpleseqs.h)
165         
166         * gtk/gtkimcontextsimpleseqs.c: Updated the compose sequence table.
167         In this update we removed a further set of compose sequences that
168         are otherwise covered by check_algorithmically(). 
169
170         * gtk/gtkimcontextsimple.c: Updated table value that shows how many 
171         distinct first values exist in the compose sequences. 
172         Change from 22 to 20.
173         
174 2008-10-11  Matthias Clasen  <mclasen@redhat.com>
175
176         * gtk/gtktoolbar.c: Revert the GtkSettings::gtk-toolbar-icon-size
177         part of the previous change, since it doesn't work correctly without
178         extra complication, and using custom icon sizes doesn't make too
179         much sense in a desktop-wide setting.
180
181 2008-10-11  Matthias Clasen  <mclasen@redhat.com>
182
183         Bug 555186 – Setting gtk-toolbar-icon-size with custom icon_size
184
185         * gtk/gtktoolbar.c: Turn GtkToolbar::icon-size and
186         GtkSettings::gtk-toolbar-icon-size into int properties, to
187         allow the use of app-registered icon sizes.
188
189 2008-10-11  Christian Dywan  <christian@imendio.com>
190
191         Bug 555676 – gtk_widget_real_grab_focus assumes toplevel == window
192
193         * gtk/gtkwidget.c (gtk_widget_real_grab_focus):
194         Actually test for GTK_IS_WINDOW *and* GTK_WIDGET_TOPLEVEL
195
196 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
197
198         Bug 551355 – [PATCH] Make glib build with libtool 2.2
199
200         * autogen.sh: Accept libtool 2.2.   We are moving towards having
201         it working.
202
203 2008-10-10  Richard Hult  <richard@imendio.com>
204
205         * gdk/quartz/gdkkeys-quartz.c: (gdk_keymap_get_caps_lock_state)
206         Add empty stub to fix linking.
207
208 2008-10-10  Simos Xenitellis  <simos@gnome.org>
209
210         Bug 555000 – Wrong treatment on non-spacing marks dead keys in 
211         GtkIMContextSimple
212
213         * gtk/gtkimcontextsimple.c: Change IS_DEAD_KEY() macro so that
214         it only checks if input is a deadkey keysym.
215
216 2008-10-09  Christian Dywan  <christian@imendio.com>
217
218         Bug 555676 – gtk_widget_real_grab_focus assumes toplevel == window
219
220         * gtk/gtkwidget.c (gtk_widget_real_grab_focus):
221         Test for GTK_IS_WINDOW instead of GTK_WIDGET_TOPLEVEL
222
223 2008-10-09  Christian Dywan  <christian@imendio.com>
224
225         Bug 555573 – gtk_font_selection_set_font_name
226         shouldn't require a screen
227
228         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name):
229         Don't warn if there is no screen, just return FALSE
230
231 2008-10-09  Christian Dywan  <christian@imendio.com>
232
233         Bug 555523 – gtk_scale_button_set_adjustment should accept NULL
234
235         * gtk/gtkscalebutton.c (gtk_scale_button_set_adjustment):
236         Create a new adjustment if NULL is passed, like other widgets
237
238 2008-10-09  Christian Dywan  <christian@imendio.com>
239
240         Bug 555578 – GtkTable propertiy maxima are wrong
241
242         * gtk/gtktable.c (gtk_table_class_init), (gtk_table_resize):
243         Always use 65535 instead of G_MAXUINT since that is
244         the actually supported maximum number of columns and rows
245
246 2008-10-09  Richard Hult  <richard@imendio.com>
247
248         Bug 550342 – Splash screens have a caption
249
250         * gdk/quartz/gdkwindow-quartz.c: (_gdk_window_new),
251         (gdk_window_set_decorations): Patch from Marianne Gagnon to make
252         splash windows borderless.
253
254 2008-10-09  Michael Natterer  <mitch@imendio.com>
255
256         Bug 516425 – Optionally display accelerators in popups
257
258         * gtk/gtkuimanager.h (enum GtkUIManagerItemType): add value
259         GTK_UI_MANAGER_POPUP_WITH_ACCELS which works like _POPUP but
260         shows the actions' accelerators.
261
262         * gtk/gtkuimanager.c: honor the new enum value for programmatically
263         created UIs, and support <popup accelerators="true"> in the XML
264         for the same purpose.
265
266 2008-10-09  Simos Xenitellis  <simos@gnome.org>
267
268         Bug 554192 – double press on the "circumflex" dead key 
269         (standard french 105 keyboard) no longer produces the "^" character
270
271         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress):
272         Changed the order, put check_compact_table() first, then 
273         check_algorithmically().
274
275 2008-10-08  Christian Persch  <chpe@gnome.org>
276
277         Bug 554702 – gtkfilesystem leaks GError
278
279         * gtk/gtkfilesystem.c (_gtk_file_system_init): Free the GError.
280
281 2008-10-08  Matthias Clasen  <mclasen@redhat.com>
282
283         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
284         Don't forget to reset reload_state when current_folder is already
285         correct. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=465992
286
287 2008-10-08  Christian Dywan  <christian@imendio.com>
288
289         Bug 555270 – Allow unsetting a MessageDialog's image
290
291         * gtk/gtkmessagedialog.c (gtk_message_dialog_set_property),
292         Remove a superfluous cast to GtkWidget*
293         (gtk_message_dialog_set_image): Accept NULL for the image
294         and unset the image in that case.
295
296 2008-10-08  Christian Dywan  <christian@imendio.com>
297
298         Bug 436533 – Allow more space efficient scroll arrows placement
299
300         * gtk/gtkenums.h: Add GtkArrowPlacement
301         * gtk/gtkmenu.c (gtk_menu_class_init), (get_arrows_border),
302         (get_arrows_visible_area), (get_double_arrows),
303         (get_arrows_sensitive_area): Implement GtkMenu::arrow-placement
304         to allow scrolling arrows to be placed at the start, end or both
305         Patch by Tommi Komulainen and myself
306
307 2008-10-08  Christian Dywan  <christian@imendio.com>
308
309         Bug 555387 – Changing the sensitivity of a statusbar
310         mistakenly requires a display
311
312         * gtk/gtkstatusbar.c (set_grip_cursor): Only change the cursor
313         of the resize grip if there is a grip window.
314
315 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
316
317         * gtk/gtktooltip.c (gtk_tooltip_show_tooltip): Avoid unitialized
318         memory warnings from valgrind.
319
320 2008-10-07 11:03:30  Tim Janik  <timj@imendio.com>
321
322         * gtk/gtkbox.h: keep GtkBox as an abstract type and keep _gtk_box_new()
323         as private function until we settle on the exact semantics.
324         renamed _gtk_box_set_old_defaults() as suggested by Mitch.
325
326 2008-10-07  Michael Natterer  <mitch@imendio.com>
327
328         * gtk/gtkbox.c: reindent static prototypes.
329
330 2008-10-07  Michael Natterer  <mitch@imendio.com>
331
332         Bug 553573 – Add orientation API to GtkBox
333
334         * gtk/gtkbox.[hh]: implement the GtkOrientable interface and
335         swallow all code from GtkHBox and GtkVBox. Add gtk_box_new()
336         which takes a GtkOrientation argument. Also move the newly
337         added "spacing_set" boolean from struct GtkBox to the new
338         private struct.
339
340         * gtk/gtkhbox.[ch]
341         * gtk/gtkvbox.[ch]: remove all code except the constructor and
342         call gtk_orientable_set_orientation() in init().
343
344         * gtk/gtk.symbols: add gtk_box_new().
345
346 2008-10-06  Björn Lindqvist  <bjourne@gmail.com>
347
348         Bug 539464 – gtk_cell_view_get_model is missing in GtkCellView
349
350         * gtk/gtkcellview.c (gtk_cell_view_get_model): Add
351         gtk_cell_view_get_model.
352
353 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
354
355         * gtk/gtkprintunixdialog.c (create_main_page): Show the tooltip
356         on the range entry itself, too.
357
358 2008-10-04  Tor Lillqvist  <tml@novell.com>
359
360         Bug 132501 - Make utility window translate to tool window in win32
361
362         Implement the utility window type hint. Such windows are kept on
363         top of other windows of the same process. Makes GIMP's toolbox and
364         dock windows behave more like in GNOME under metacity. Apply the
365         same logic also to windows marked with the dialog window type
366         hint, and windows that are transient for some other window. I'll
367         call such windows "transient-type" below.
368
369         * gdk/win32/gdkevents-win32.c (doesnt_want_key): Drop unused
370         variables.
371
372         (ensure_stacking_on_unminimize)
373         (ensure_stacking_on_window_pos_changing)
374         (ensure_stacking_on_activate_app): New functions to implement the
375         desired stacking order. Make sure that a window that is not
376         transient-type stays below any transient-type windows of the
377         application. When activating a non-transient-type window make sure
378         it rises as high as possible while still staying below the lowest
379         transient-type window.
380
381         (gdk_event_translate): Call above functions on
382         WM_WINDOWPOSCHANGING, WM_ACTIVATEAPP and on WM_SIZE when
383         unminimizing. Improve debugging printout.
384
385         * gdk/win32/gdkwindow-win32.c (get_effective_window_decorations):
386         Handle utility windows like toolbar windows.
387
388         (gdk_window_new_internal) (update_style_bits): Give utility
389         windows the WS_EX_TOOLWINDOW extended style.
390
391         (gdk_window_set_title): If debugging "misc" or "events", make the
392         handle of top-level windows show up in their title bars. Very
393         useful when looking at debugging output.
394
395         (gdk_window_set_transient_for) (gdk_window_set_keep_above)
396         (gdk_window_set_keep_below) (gdk_window_set_modal_hint)
397         (gdk_window_set_skip_taskbar_hint)
398         (gdk_window_set_skip_pager_hint): Add and improve debugging
399         printout.
400
401         (gdk_window_set_type_hint): Print hint symbolically in GDK_NOTE().
402
403 2008-10-04  Tor Lillqvist  <tml@novell.com>
404
405         * gdk/win32/gdkmain-win32.c (_gdk_win32_window_exstyle_to_string)
406         (_gdk_win32_window_pos_bits_to_string): New debugging printout
407         functions. Decode the WS_EX_* and SWP_* bits.
408
409         * gdk/win32/gdkprivate-win32.h: Declare them. Define
410         GDK_DEBUG_MISC_OR_EVENTS for use in GDK_NOTE() to match either
411         "misc" or "events".
412
413 2008-10-03  Matthias Clasen <mclasen@redhat.com>
414
415         * gtk/gtkmodules.c (_gtk_modules_settings_changed): Add some
416         debug output.
417
418 2008-10-02  Matthias Clasen <mclasen@redhat.com>
419
420         Bug 96431 – Can't cut and paste / DND within invisible entry
421
422         * gtk/gtkentry.c: Disable cut, copy and drag out of an invisible
423         entry. Proposed by Owen Taylor
424
425 2008-10-02  Matthias Clasen <mclasen@redhat.com>
426
427         Bug 530575 – GtkEntry with invisible chars has a confused cursor in
428         overwrite mode
429
430         * gtk/gtkentry.c (gtk_entry_draw_cursor): Use the visible text
431         in the layout when positioning the cursor, not the actual text
432         content of the entry. This makes a different when using overwrite
433         mode in an invisible entry. 
434         Problem noticed by Jonathan Blandford
435
436         * gtk/gtktextutil.c: Fix a typo in a comment
437
438 2008-10-02  Christian Persch
439
440         Bug 554704 – gtkfilesystemmodel does too much work
441
442         * gtk/gtkfilesystemmodel.c: Replace g_slist_length()<1 check with a
443         simple NULL check.
444
445 2008-10-02  Christian Persch
446
447         Bug 554701 – filechooser spams console with useless warnings
448
449         * gtk/gtkfilesystem.c.c: Don't warn if the async call was simply
450         cancelled.
451
452 2008-10-02  Christian Persch
453
454         Bug 554698 – mem leak in filechooser
455
456         * gtk/gtkfilechooserdefault.c: Plug a mem leak.
457
458 2008-10-02  Christian Persch
459
460         Bug 554696 – invalid free function used
461
462         * gtk/gtkfilesystemmodel.c: Use the right free func.
463
464 2008-10-02  Christian Persch
465
466         Bug 554691 – mem leak in filechooser
467
468         * gtk/gtkfilesystemmodel.c: Plug a mem leak.
469
470 2008-10-02  Christian Persch
471
472         Bug 554690 – mem leak in filechooser
473
474         * gtk/gtkfilechooserdefault.c: Plug a mem leak.
475
476 2008-10-02  Michael Natterer  <mitch@imendio.com>
477
478         Bug 553585 – Add orientation API to GtkRuler
479
480         * gtk/gtkruler.[ch]: implement the GtkOrientable interface and
481         swallow all code from GtkHRuler and GtkVRuler. Add gtk_ruler_new()
482         which takes a GtkOrientation argument.
483
484         * gtk/gtkhruler.c
485         * gtk/gtkvruler.c: remove all code except the constructor and
486         call gtk_orientable_set_orientation() in init().
487
488         * gtk/gtk.symbols: add gtk_ruler_new().
489
490 2008-10-01  Torsten Schoenfeld  <kaffeetisch@gmx.de>
491
492         * docs/reference/gtk/gtk-sections.txt:
493         * gtk/gtk.symbols:
494         * gtk/gtkselection.c:
495         * gtk/gtkselection.h: Add gtk_selection_data_get_selection to
496         retrieve the sealed struct field GtkSelectionData.selection.
497
498 2008-10-01  Tor Lillqvist  <tml@novell.com>
499
500         * gtk/gtkscalebutton.c: Don't #define _GNU_SOURCE on Windows as it
501         confuses newest mingw headers.
502
503 2008-10-01  Tor Lillqvist  <tml@novell.com>
504
505         * gdk/win32/gdkkeys-win32.c (gdk_keymap_get_caps_lock_state):
506         Implement trivially on Windows. Not sure if something more complex
507         is actually needed, more specifically whether the function needs
508         to differentiate between "Caps Lock" and "Shift Lock" semantics?
509
510 2008-10-01  Simos Xenitellis  <simos@gnome.org>
511
512         Bug 554506 – combining diacritics broken, became deadkeys
513
514         * gtk/gtkimcontextsimple.c: added check if keysym is greater
515         than 0x1000000, in this case it is not a dead key.
516
517 2008-09-30  Michael Natterer  <mitch@imendio.com>
518
519         Bug 553582 – Add orientation API to GtkSeparator
520
521         * gtk/gtkseparator.[ch]: implement the GtkOrientable interface and
522         swallow all code from GtkHSeparator and GtkVSeparator. Add
523         gtk_separator_new() which takes a GtkOrientation argument.
524
525         * gtk/gtkhseparator.c
526         * gtk/gtkvseparator.c: remove all code except the constructor and
527         call gtk_orientable_set_orientation() in init().
528
529         * gtk/gtk.symbols: add gtk_separator_new().
530
531 2008-09-30  Marek Kasik  <mkasik@redhat.com>
532
533         Bug 344522 – support non-local destination files (GtkPrint):
534
535         * gtk/gtkprintunixdialog.c
536         * gtk/gtkprinteroptionwidget.c: Process URI instead of filename.
537         * modules/printbackends/file/gtkprintbackendfile.c: Add ability
538         to save files on non-local filesystems.
539
540 2008-09-30  Michael Natterer  <mitch@imendio.com>
541
542         * gtk/gtk.symbols: forgot the G_GNUC_CONST of
543         gtk_orientable_get_type().
544
545 2008-09-30  Michael Natterer  <mitch@imendio.com>
546
547         Bug 541009 – Get rid of separate subclasses for horizontal and
548         vertical orientation:
549
550         * gtk/Makefile.am
551         * gtk/gtk.symbols
552         * gtk/gtk.h
553         * gtk/gtkorientable.[ch]: add new interface GtkOrientable which
554         will be implemented by everything that can switch orientation.
555
556 2008-09-30  Christian Dywan  <christian@imendio.com>
557
558         Fix a typo in the tutorial.
559
560         * docs/tutorial/gtk-tut.sgml: It's mnemonic, not 'mnemnonic'.
561
562 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
563
564         Bug 553086 – hard to see current immodule
565
566         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
567         Display the actually selected context in the system menuitem.
568         Complaint by Akira Tagoh.
569
570 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
571
572         Bug 530568 – Entries with visibility=FALSE should warn for caps-lock
573         on
574
575         * gtk/gtkentry.c: Add a tooltip-like Caps Lock warning for
576         password entries. The warning is also triggered if an input method
577         is active. The warning can be turned off using the
578         GtkEntry::caps-lock-warning property. 
579         Proposed by Owen Taylor
580
581 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
582
583         * gtk/gtk.symbols:
584         * gtk/gtkimmulticontext.[hc] (gtk_im_multicontext_get_context_id): 
585         Add a getter for the the sealed context_id field.
586
587 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
588
589         Bug 107000 – Add signals to GdkKeymap for monitoring caps_lock, etc.
590
591         * gdk/gdk.symbols:
592         * gdk/gdkkeys.[ch]: Add a new GdkKeymap::state-changed signal, and
593         a gdk_keymap_get_caps_lock_state function.
594
595         * gdk/x11/gdkkeys-x11.c: Implement it here. For now, only emit
596         state-changed when caps lock lockedness changes. 
597
598         * gdk/x11/gdkdisplay-x11.c: Also select for modifier lock status
599         changes in the XkbSelectEventDetails call.
600
601 2008-09-29  Kristian Rietveld  <kris@imendio.com>
602
603         Bug 487624 - Tooltips doesn't get updated if ther's no mouse motion
604         over widget
605
606         * gtk/gtkwidget.c (gtk_widget_set_property): after updating
607         tooltip text or markup, call gtk_widget_trigger_tooltip_query()
608         so that existing visible tooltips are updated.
609
610 2008-09-29  Matthias Clasen  <mclasen@redhat.com>
611
612         Bug 371908 – Password Entry broken
613         Bug 317002 – Disable input method completely in GtkEntry when it's 
614         in invisible mode.
615
616         * gtk/gtkentry.c (gtk_entry_backspace): Make backspace behave
617         properly when invisible.
618
619         * gtk/gtkentry.c (gtk_entry_create_layout): Show preedit even if
620         invisible. 
621
622         * gtk/gtkentry.c (gtk_entry_set_visibility): Don't disable input
623         methods when making the entry invisible.
624         
625 2008-09-29  Emmanuele Bassi  <ebassi@linux.intel.com>
626
627         * gdk/x11/gdkinput.c:
628         (gdk_device_class_init), (gdk_device_finalize): Correctly chain
629         up the finalize implementation.
630
631 2008-09-29  Richard Hult  <richard@imendio.com>
632
633         Bug 554141 – uninitialized data use/free in gtkclipboard-quartz.c
634
635         * gtk/gtkclipboard-quartz.c: (gtk_clipboard_wait_for_contents):
636         Patch from Jon A. Cruz to initialize the allocated selection data.
637
638 2008-09-27  Matthias Clasen  <mclasen@redhat.com>
639
640         Bug 339367 – Incorrect spotlocation
641
642         * modules/input/gtkimcontextxim.c: Correct the spot location
643         for on-the-spot style.
644
645 2008-09-27  Denis Washington  <denisw@svn.gnome.org>
646
647         * gtk/gtkiconview.c: only draw keyboard focus when keyboard navigation
648         is used, like GtkTreeView. (Bug #553575)
649
650 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
651
652         Bug 552959 – GtkTrayIcon: _NET_SYSTEM_TRAY_VISUAL and real
653         transparency
654
655         * gtk/gtktrayicon-x11.c: Add support for the _NET_SYSTEM_TRAY_VISUAL
656         property described in
657         http://lists.freedesktop.org/archives/xdg/2008-September/009919.html
658         If _NET_SYSTEM_TRAY_VISUAL is a visual with an alpha channel, the 
659         parent-relative-background hack is skipped and we draw with a real
660         transparent background.
661
662         * gtk/gtkrc.c: Remove the default GtkTrayIcon style, since the
663         parent-relative background is now set when realizing the tray
664         icon.
665
666         Patch by Owen Taylor
667
668 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
669
670         Bug 552956 – Should check composite extension version
671
672         * gdk/x11/gdkdisplay-x11.c: Check that the version of the
673         composite extension is at least 0.4.
674         Patch by Owen Taylor
675
676 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
677         
678         Bug 553803 – eventually call XCloseDevice on XOpenDevice results
679
680         * gdk/x11/gdkinput.c: Add a finalize function for device objects,
681         and call XCloseDevice there. 
682
683         * gdk/x11/gdkinput-x11.c:
684         * gdk/x11/gdkdisplay-x11.c: Move freeing of device objects to
685         the finalize function.
686         Patch by Caolan McNamara
687         
688 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
689
690         Bug 553578 - tabs are not drawn correctly
691
692         * gtk/gtknotebook.c: Track the visibility state of notebook tabs 
693         between allocations so that we know to redraw the tab labels if 
694         tabs are hidden and shown without changing position. 
695         Reported by Marek Kašík, patch by Owen Taylor.
696
697 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
698
699         Bug 553133 – GtkFileChooser won't ask to mount a volume
700         Bug 553211 – GtkFileChooserButton unsets filter after first use
701
702         * gtk/gtkfilechooserdefault.c (shortcuts_activate_volume): Use
703         a GtkMountOperation when mounting, so that we get a password
704         dialog when required.  
705
706         * gtk/gtkfilechooserdefault.c (show_and_select_files): Also
707         get the content-type, since it is used later on. 
708         Pointed out by Davyd Madeley.
709
710 2008-09-26  Cody Russell  <bratsche@gnome.org>
711
712         Bug 553917 – Typo in gdkwindow-win32.c
713
714         * gdk/win32/gdkwindow-win32.c: Fixed a typo in
715         update_system_menu().  Changed GDK_DECOR_ALL to GDK_FUNC_ALL.
716
717         Reported by Richard Hult
718
719 2008-09-25  Marek Kasik  <mkasik@redhat.com>
720
721         Bug 553241 – double freed pointer in lpr_write cause firefox3 crash
722
723         * modules/printbackends/lpr/gtkprintbackendlpr.c:
724         The redundant freeing of memory was removed.
725
726         Patch by Chris Wang
727
728 2008-09-25  Michael Natterer  <mitch@imendio.com>
729
730         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_finalize):
731         don't unref the file system backend, the newly added
732         unset_file_system_backend() already does this (bug #553135).
733
734 2008-09-24  Michael Natterer  <mitch@imendio.com>
735
736         * gtk/gtkeventbox.c: events return gboolean not gint, reindented
737         static prototypes.
738
739 2008-09-24  Johan Dahlin  <johan@gnome.org>
740
741         Bug 553385 – gtk-builder-convert creates untranslated combobox models
742
743         * gtk/gtk-builder-convert: Set the translatable property on
744         col tags for converted combos.
745
746 2008-09-24  Tor Lillqvist  <tml@novell.com>
747
748         * gtk-zip.sh.in: Include all of share/man, lib/pkgconfig,
749         share/aclocal and share/gtk-doc instead of trying to list
750         individual files or subdirectories. We had missed gail.pc, for
751         instance.
752
753 2008-09-24  Christian Dywan  <christian@imendio.com>
754
755         Bug 538782 – Make GtkMenu's arrow size themable
756
757         * gtk/gtkmenu.c (gtk_menu_class_init), (gtk_menu_paint):
758         Implement "arrow-scaling" style property in GtkMenu.
759
760 2008-09-24  Christian Dywan  <christian@imendio.com>
761
762         Bug 408244 – add GtkDialog::content-area-spacing
763
764         * gtk/gtkbox.c (gtk_box_init), (gtk_box_set_spacing),
765         (_gtk_box_set_spacing_set), (_gtk_box_get_spacing_set):
766         * gtk/gtkbox.h:
767         * gtk/gtkdialog.c (gtk_dialog_class_init), (update_spacings):
768         Implement "content-area-spacing" style property in GtkDialog
769         and internal helper _gtk_box_get_spacing_set in GtkBox.
770         Patch by Tim Janik, Sven Herzberg and myself.
771
772 2008-09-24  Christian Dywan  <christian@imendio.com>
773
774         Bug 541391 – Unfocussable Treeview swallows focus
775
776         * gtk/gtktreeview.c (grab_focus_and_unset_draw_keyfocus),
777         (gtk_tree_view_focus): Honor GTK_WIDGET_CAN_FOCUS properly
778
779 2008-09-24  Denis Washington  <denisw@svn.gnome.org>
780
781         * gtk/gtkiconview.c: draw focus as a rectangle around the
782         complete item, not just the text. (Bug #38254)
783
784 2008-09-23  Michael Natterer  <mitch@imendio.com>
785
786         * gtk/gtkobject.c
787         * gtk/gtksignal.[ch]: s/GtkType/GType/ and
788         s/GtkSignalMarshaller/GSignalCMarshaller/.
789
790 2008-09-23  Michael Natterer  <mitch@imendio.com>
791
792         * gdk/x11/gdkevents-x11.c (gdk_event_translate): remove unused
793         variable and fix indentation.
794
795 2008-09-23  Michael Natterer  <mitch@imendio.com>
796
797         * gtk/gtkclist.h
798         * gtk/gtkctree.h
799         * gtk/gtklist.h
800         * gtk/gtklistitem.h
801         * gtk/gtkobject.h
802         * gtk/gtkoldeditable.h
803         * gtk/gtkpixmap.h
804         * gtk/gtkpreview.h
805         * gtk/gtktext.h
806         * gtk/gtktipsquery.h
807         * gtk/gtktree.h
808         * gtk/gtktreeitem.h: get rid of GtkType and GTK_CHECK_FOO() also
809         in all deprecated headers.
810
811 2008-09-22  Matthias Clasen  <mclasen@redhat.com>
812
813         Bug 553135 – eog crash: assertion failed. Gtk error:
814         shortcuts_remove_rows: code should not be reached
815
816         * gtk/gtkfilechooserdefault.c: Disconnect from GtkFileSystem 
817         signals when we are destroyed, in order to avoid nasty surprises.
818         Patch by Claudio Saavedra
819
820 2008-09-22  Emmanuele Bassi  <ebassi@linux.intel.com>
821
822         Bug 552789 – Show size column in the search and recently used
823         files modes
824
825         * gtk/gtkfilechooserdefault.c: Display the file size column
826         when in OPERATION_MODE_SEARCH. This removes a stat() call
827         and simplifies the code a little bit by changing the query
828         for file informations for each search engine hit.
829
830 2008-09-22  Michael Natterer  <mitch@imendio.com>
831
832         * gtk/gtksignal.[ch]
833         * gtk/gtkclist.c
834         * gtk/gtklist.c
835         * gtk/gtkmain.c
836         * gtk/gtktext.c
837         * gtk/gtktreeitem.c: use G_CALLBACK and GCallback instead of
838         GTK_SIGNAL_FUNC and GtkSignalFunc also in deprecated code.
839
840 2008-09-22  Frederic Crozat  <fcrozat@mandriva.com>
841
842         * gtk/gtkfilesystem.c: use the correct gi18n header.
843         Fixes bug #553000.
844
845 2008-09-22  Michael Natterer  <mitch@imendio.com>
846
847         * gtk/gtktoolbar.[ch]: add "Deprecated: 2.4" to all the deprecated
848         append(), prepend() and insert() functions and recommend to use
849         gtk_toolbar_insert() instead. Use GCallback instead of
850         GtkSignalFunc even in deprecated API.
851
852 2008-09-20  Matthias Clasen  <mclasen@redhat.com>
853
854         * gtk/gtkfilechooserbutton.c (filter_model_visible_func): Don't
855         leak a GFile.
856
857 2008-09-19  Owen Taylor  <otaylor@redhat.com>
858
859         Small cleanups to debug messages for GtkPlug/GtkSocket
860
861         * gtk/gtksocket-x11.c: Fix debug message to say "Socket" not "Plug"
862         * gtk/gtkplug-x11.c: Remove excess newlines from the ends of debug
863         messages.
864
865 2008-09-19  Carlos Garnacho  <carlos@imendio.com>
866
867         Bug 83935 – GtkEntry's default invisible char should be U+25CF
868
869         * gtk/gtkentry.c (find_invisible_char) (gtk_entry_init): Find a
870         more suitable invisible char than '*' based on the used font.
871         (gtk_entry_class_init) (gtk_entry_set_property)
872         (gtk_entry_get_property): Add a "invisible-char-set" property.
873         (gtk_entry_unset_invisible_char): New function, needed now that the
874         default invisible char isn't fixed.
875         * gtk/gtkentry.h:
876         * gtk/gtk.symbols:
877         * docs/reference/gtk/gtk-sections.txt: Add the new function.
878
879 2008-09-19  Christian Persch  <chpe@gnome.org>
880  
881         Bug 552837 – mem leak in gtkimmulticontext
882  
883         * gtk/gtkimmulticontext.c: (gtk_im_multicontext_get_slave): Plug mem
884         leak.
885  
886 2008-09-18  Emmanuele Bassi  <ebassi@linux.intel.com>
887
888         * gtk/gtkfilechooserdefault.c (settings_save): Save the size column
889         visibility state with the rest of the FileChooser settings.
890
891 2008-09-18  Emmanuele Bassi  <ebassi@linux.intel.com>
892
893         Bug 325095 – show a 'size' column
894
895         * gtk/gtkfilechooserdefault.c:
896         * gtk/gtkfilechooserprivate.h: Add a context menu item controlling
897         the visibility of the file size column. This works only for the
898         browse mode, and the column is not visible by default.
899
900         * gtk/gtkfilechoosersettings.[ch]: Add a ShowSizeColumn key to the
901         settings file.
902
903 2008-09-18  Dominic Lachowicz  <domlachowicz@gmail.com>
904
905         * modules/engines/ms-windows/*: Revert most of previous patch, as
906         it didn't work as expected; Some work toward #531086 - the new
907         GtkTooltip widget doesn't theme properly on win32. Now, at least
908         the background color seems okay
909         
910 2008-09-18  Dominic Lachowicz  <domlachowicz@gmail.com>
911
912         * modules/engines/ms-windows/*: MS Windows style should use
913         pango_win32_font_description_from_logfont; Allows us to rip out a
914         lot of potentially buggy code, and also get the font specification
915         from the XP theme (#434987)
916         
917 2008-09-18  Matthias Clasen  <mclasen@redhat.com>
918
919         * configure.in: updated version number to 2.15.0 for development.
920
921         * ChangeLog.pre-2-14: rotate ChangeLog
922
923 === Branch for 2.14 ===