X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=ChangeLog;h=159e0b529b1cfea7622432ccbd518d7363c49f98;hb=52b1bac8ecd7eae9aa682a0d99eeed4894df114c;hp=b35671aa96cfec72bdff3fff8f2fe8b7343ce713;hpb=e049989bc3e6fa419da48259caacb38c088413cf;p=~andy%2Fgtk diff --git a/ChangeLog b/ChangeLog index b35671aa9..159e0b529 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,310 @@ +2006-10-29 Tor Lillqvist + + * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Improve handling + of the small icon of the window class. (#152620, Kazuki Iwamoto) + +2006-10-27 Kristian Rietveld + + * gtk/gtktreeview.c (validate_visible_area): rework the area_above == 0 + case to not overwrite the variables in the lower scope (which are + used later on ...), get the path correctly and bail out when there + isn't a node above us. (#359231). + +2006-10-26 Christian Persch + + * gtk/gtkaboutdialog.c: Put initial focus on Close button (#337261). + +2006-10-25 Johan Dahlin + + * gtk/gtk.symbols: Add missing symbols to so make check can pass + +2006-10-23 Dom Lachowicz + + * src/modules/engines/ms-windows/msw_style.c (draw_expander): Remember + to free GDI Pen resources, introduced by bug 340201.(#364514) + +2006-10-18 Kristian Rietveld + + * tests/testcombo.c (main): connect to notify::popup-shown instead of + popup-show (the latter does not exist). + +2006-10-15 Paolo Borelli + + * gtk/gtkicontheme.c (pixbuf_supports_svg): plug memory leak. + Fixes bug #362439. + +2006-10-12 Michael Natterer + + * gtk/gtkcombobox.c (gtk_combo_box_class_init): fix commit below + (committed the wrong patch). + +2006-10-12 Michael Natterer + + * gtk/gtkcombobox.c: added "move-active" and "popup" signals and + bindings to trigger them. Removed gtk_combo_box_key_press(), it's + obsolete now. Fixes bug #358293. + +2006-10-11 Michael Emmel + + * gdkpixmap-directfb.c: add missing RGB24 case (#361176) + +2006-10-11 Tor Lillqvist + + * configure.in: Enable having some gdk-pixbuf loaders built-in + even if loading the others dynamically. Define Automake + conditional INCLUDE_FOO for each loader as TRUE if that loader is + built-in. See also gdk-pixbuf/ChangeLog. + +Wed Oct 11 14:31:30 2006 Tim Janik + + * docs/reference/gtk/gtk-sections.txt: + * gtk/gtkbindings.c: document gtk_binding_entry_skip(). + +2006-10-11 Tor Lillqvist + + * gtk/gtk.symbols: Remove gtk_combo_string_key, which is a static + variable. + +2006-10-11 Tor Lillqvist + + Merge from 2.10 branch: + + * gtk/gtkmain.c (do_pre_parse_initialization): On Win32, if + environment variable LC_ALL or LANG is set, set the Win32 thread + locale to the corresponding locale. Then call the C library + setlocale() to set the C library locale accordingly. The + inconsistency mentioned below is gone. (#339756) Do some special + casing for Serbia and Montenegro. Handle the Latin and Cyrillic + scripts for Azeri, Uzbek and Serbian. + (enum_locale_proc): Helper function for the above functionality. + + * gtk/gtkcalendar.c (gtk_calendar_init): No longer need to check + if the environment variables are set here, as they have already + been taken into account and the Win32 thread locale has been + set. + +Tue Oct 10 16:38:23 2006 Tim Janik + + * gtk/tmpl/gtkbindings.sgml: + * gtk/gtkbindings.c: applied patch from Michael Natterer to move to + inline docs. applied wording fixes suggested by Martyn Russell. + +2006-10-09 Matthias Clasen + + * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state): + Update the docs to state which out parameters may be NULL. + (#360870, Attilio Fiandrotti) + +2006-10-08 Matthias Clasen + + * gtk/gtkprintunixdialog.c (update_dialog_from_capabilities): Fix + a typo. (#359542, Ghee Teo) + +2006-10-08 Matthias Clasen + + * gtk/gtknotebook.c (gtk_notebook_reorder_tab): Only + reorder tabs if the focus is in the tab. (#350342, Carlos + Garnacho Parro) + +2006-10-08 Michael Emmel + + * gdk/directfb/gdkproperty-directfb.c strdup atom name (#357611) + +2006-10-08 Kristian Rietveld + + * gtk/gtktreeview.[ch] (gtk_tree_view_set_property), + (gtk_tree_view_set_show_expanders), + (gtk_tree_view_get_show_expanders): add getter/setter for + show-expanders property, queue a redraw when this property + is toggled (#351167, Martin Ejdestig), + (gtk_tree_view_set_level_indentation), + (gtk_tree_view_get_level_indentation): also add getter/setter + and docs for level-indentation property. + +2006-10-08 Matthias Clasen + + * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't + leak a list. (#360350, Benjamin Berg) + + * Apply a cleanup patch by Kjartan Maraas (#341812) + +2006-10-07 Tor Lillqvist + + * gtk/gtkcalendar.c (gtk_calendar_init): Use the Win32 thread + locale's first day of week setting on Win32. (#339752, Bogdan + Nicula) Don't do this if one of the environment variables that + affect gettext is set, though. In that case use the week start day + from the corresponding message catalog. + + Unfortunately the same logic isn't possible in the weekday and + month name lookup; there even if you have set one of the + aforementioned environment variables, you still get the weekday + and month names from the Win32 thread locale. Yes, this is + inconsistent. + + Use only wide-character API in the Win32 code in this file, too. + +2006-10-06 Matthias Clasen + + * gtk/gtkfilechooser.c (gtk_file_chooser_set_select_multiple): + Fix the docs. (#360112) + + * gtk/gtkcellview.c: Don't set the background of the + window in a no-window widget. (#359581, Xan Lopez) + + +2006-10-05 Behdad Esfahbod + + * gtk/Makefile.am, gtk/aliasfilescheck.sh: Propagate srcdir into the + test correctly. (#359845) + +2006-10-05 Michael Natterer + + * gtk/gtkrc.[ch]: added new scanner token "unbind" which gets + rid of a key binding (in fact, it only lets it appear unbound). + + * gtk/gtkbindings.[ch] (struct GtkBindingEntry): added + "guint marks_unbound : 1" + + (gtk_binding_entry_skip): new API which marks the entry as unbound. + + Changed code so it returns FALSE when "marks_unbound == TRUE" is + encountered while activating bindings, effectively letting the + binding appear unbound (regardless of still existing bindings in + lower binding priority levels). Fixes bug #358329. + + (gtk_binding_entry_add) + (gtk_binding_entry_clear) + (gtk_binding_entry_add_signall) + (gtk_binding_parse_binding): deprected these functions. + + (_gtk_binding_parse_binding) + (_gtk_binding_entry_add_signall): new internal API. + + * gtk/gtk.symbols: changed accordingly. + +2006-10-03 Matthias Clasen + + Fix interaction of GtkEntryCompletion with input + methods. (#354495, Diego Escalante Urrelo) + + * gtk/gtkentry.c (gtk_entry_completion_key_press): Only reset + the im context if we actually handle the key event. + + * gtk/gtkentrycompletion.c: Also propagate key release events + to the entry. + +2006-10-03 Matthias Clasen + + * gtk/gtkprintsettings.c (gtk_print_settings_get_duplex): + Fix a typo. (#359052, Ghee Teo) + + * gtk/*.c, gdk/*.c: Apply a patch by Behdad Esfahbod to + reduce relocations. (#359053) + +2006-10-03 Matthias Clasen + + * modules/printbackends/cups/gtkcupsutils.c: + * modules/printbackends/cups/gtkprintbackendcups.c: Complete + the fix for bug 357280. + +2006-10-02 Behdad Esfahbod + + * gdk-pixbuf/Makefile.am: + * gdk/Makefile.am: + * gtk/Makefile.am: + Include pltcheck.sh in EXTRA_DIST. + +2006-10-02 Behdad Esfahbod + + * gdk/x11/gdkevents-x11.c: Move all includes before including + gdkalias.h. + +2006-10-02 Behdad Esfahbod + + * gtk/Makefile.am: Fix typo in file name. (#358931) + +2006-10-02 Matthias Clasen + + * modules/printbackends/cups/gtkprintbackendcups.c (available_choices): + Only use the group name field if cups is new enough. (#357280) + + * gtk/gtksizegroup.c: Make sure that the quarks are + initialized before using them. (#353736) + + * gtk/Makefile.am (stamp-icons): Use rm instead of ln -f to + replace existing links. (#354849, James Evans) + +2006-10-01 Matthias Clasen + + * gtk/gtkexpander.c (gtk_expander_realize) + (gtk_expander_size_allocate): Make the event_window large + enough to cover the full height of the label_widget. (#358351, + Scott Horowitz) + +2006-10-01 Tor Lillqvist + + * gtk/gtkfilesystemwin32.c: Same change as to gtkfilesystemunix.c. + +2006-09-30 Matthias Clasen + + * gtk/gtkfilechooserbutton.c (update_combo_box): Protect + against base_path being NULL. (#358405, many reporters) + +2006-09-29 Matthias Clasen + + * gtk/gtkfilesystemunix.c: Apply a patch by Padraig O'Briain + to avoid a deadlock. + +2006-09-27 Kristian Rietveld + + * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_free_level), + (gtk_tree_model_filter_ref_node), + (gtk_tree_model_filter_real_unref_node): bring zero ref count loops + in sync with each other and the sort model. + +2006-09-27 Kristian Rietveld + + * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_init), + (gtk_tree_model_filter_finalize), (gtk_tree_model_filter_row_deleted), + (gtk_tree_model_filter_new): unref the virtual root path once that + node (or one if its ancestors) is deleted, set virtual_root_deleted + so we only unref it once. + +2006-09-27 Kristian Rietveld + + * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_changed), + (gtk_tree_model_sort_sort_level): ref count nodes the proper way, + (gtk_tree_model_sort_ref_node), (gtk_tree_model_sort_real_unref_node), + (gtk_tree_model_sort_free_level): bring zero ref count loops in + sync, + (gtk_tree_model_sort_free_level): free child levels before + decreasing the zero ref count of the current level, + (gtk_tree_model_sort_clear_cache): only clear cache if zero_ref_count + is > 0. + +2006-09-25 Matthias Clasen + + * demos/gtk-demo/*.c: + * gtk/gtkeventbox.c: + * gtk/gtkprintoperation.c: Fix typos. String change. + +2006-09-25 Kristian Rietveld + + * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): if the tree view + has already been realized; scroll to background area instead of + cell area. (Fixes #330683, Johan Dahlin, Tommi Komulainen). + +2006-09-25 Kristian Rietveld + + * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): only attempt + to create the GCs if the widget is realized. (Fixes #357578). + +2006-09-25 Matthias Clasen + + * gtk/gtkuimanager.c (_gtk_menu_is_empty): Don't leak + the list of children (#357454, Paolo Borelli) + 2006-09-25 Michael Natterer * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_finalize): free