]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-6
stylecontext: Do invalidation on first resize container
[~andy/gtk] / ChangeLog.pre-2-6
index 2eb9a70ef242391d7c9ce0c0e0533bd9a3275a35..7f1551ff776e45f3c1bc2912b4854691785f1130 100644 (file)
@@ -1,5 +1,182 @@
+2004-12-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Bump version
+
+       * === Released 2.6.0 ===
+
+       * gtk/gtkmenuitem.c: Add a forgotten cast.  (Morten Welinder) 
+
+       * gtk/gtkfilechooserbutton.c: Add another forgotten include. (Morten
+       Welinder)
+
+2004-12-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c (dialog_response_cb): Only unblock the handlers
+       if they are blocked.
+
+       * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): Don't
+       crash if enable_search is FALSE.  (#161267, Jorn Baayen)
+
+       * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_mnemonic_activate): 
+       Re-fix #152925, reported by Dennis Cranston.
+
+2004-12-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c: Add missing includes.
+
+       * configure.in: Require glib 2.6.0 for 
+       g_filename_display_basename.
+
+       * gtk/gtkentrycompletion.[hc]: Make the prefix parameter 
+       to the insert-prefix signal a const gchar* instead of a 
+       gchar*.  (#161415, Murray Cumming)
+       Also remove an unused static function.
+
+2004-12-15  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtkfilesystemunix.c (gtk_file_folder_unix_get_info):
+       Use g_filename_display_basename to calculate display name.
+
+2004-12-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/abicheck.sh: Strip out PRIVATE
+
+       * NEWS: Updates
+
+       * gtk/gtkmenushell.c (gtk_menu_shell_select_submenu_first) 
+       (gtk_real_menu_shell_activate_current): Use 
+       _gtk_menu_item_popup_submenu() to make keynav into submenus work
+       instantaneously, independent of the popup delay.  (#161140)
+
+       * gtk/gtkmenuitem.[hc]: _-prefix gtk_menu_item_popup_submenu() and
+       make it non-static.
+
+       * gtk/gtkmenuitem.c (gtk_menu_item_paint): Remove unused variables.
+
+2004-12-15  James M. Cape  <jcape@ignore-your.tv>
+
+       * gtk/gtkfilechooserbutton.c (struct _GtkFileChooserButtonPrivate)
+       (gtk_file_chooser_button_init)
+       (gtk_file_chooser_button_file_chooser_iface_init)
+       (gtk_file_chooser_button_add_shortcut_folder)
+       (gtk_file_chooser_button_remove_shortcut_folder) 
+       (gtk_file_chooser_button_constructor)
+       (gtk_file_chooser_button_set_property)
+       (gtk_file_chooser_button_destroy)
+       (gtk_file_chooser_button_finalize)
+       (get_icon_theme) (get_display_name_for_path) (model_get_type_position)
+       (model_free_row_data) (model_add_special) (model_add_other)
+       (model_add_volumes) (model_add_bookmarks)
+       (model_update_current_folder) (model_remove_rows)
+       (filter_model_visible_func) (combo_box_row_separator_func)
+       (name_cell_data_func) (update_combo_box) (fs_volumes_changed_cb)
+       (fs_bookmarks_changed_cb) (combo_box_changed_cb)
+       (change_icon_size): Use a GtkComboBox in SELECT_FOLDER mode (#157726).
+
+       * gtk/gtkfilechooserbutton.c:
+       * gtk/gtkfilechooserbutton.h (gtk_file_chooser_button_new)
+       (gtk_file_chooser_button_new_with_backend): Add @action to constructors
+       to match other GtkFileChooser impls. API CHANGE.
+
+       * docs/tools/widgets.c (create_file_button):
+       * tests/testfilechooserbutton.c (main): Update callers.
+
+       * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml: Reflect API
+       change.
+
+       * tests/testfilechooserbutton.c: Add LGPL license.
+       (main): Added GOption parser for --backend and --right-to-left cmd line
+       args.
+       (add_pwds_parent_as_shortcut_clicked_cb)
+       (del_pwds_parent_as_shortcut_clicked_cb) (tests_button_clicked_cb):
+       Add shortcut_folders test.
+       (chooser_current_folder_changed_cb) (chooser_selection_changed_cb)
+       (chooser_file_activated_cb) (chooser_update_preview_cb): Print URIS,
+       not filenames.
+
+2004-12-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (get_is_file_filtered): Don't 
+       try to filter if impl->current_filter is NULL.  (#161329, 
+       R. McFarland) 
+
+2004-12-14  Federico Mena Quintero  <federico@ximian.com>
+
+       Merged from gtk-2-4:
+
+       Fix #145470:
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_initial_focus): Queue a pending
+       operation to select the first row if we are not finished loading
+       yet.
+       (gtk_file_chooser_default_class_init): Override GtkWidget::map().
+       (gtk_file_chooser_default_map): New ::map() handler; refresh the
+       file and bookmark lists.
+
+       * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_class_init):
+       Override GtkWidget::map() and GtkWidget::unmap().
+       (gtk_file_chooser_dialog_constructor): Don't call initial_focus()
+       here.
+       (gtk_file_chooser_dialog_map): Map the file chooser widget if
+       needed.  Call initial_focus() here.
+       (gtk_file_chooser_dialog_unmap): Unmap the file chooser widget.
+       When we are re-mapped, the widget will get mapped as well and it
+       will have a chance to refresh.
+
+2004-12-14  Matthias Clasen  <mclasen@redhat.com>
+
+       * README.win32: Fix a typo
+
+       * README.in: Updates
+
+       * tests/testcombo.c (main): Don't use gtk_cell_renderer_set_values().
+
+       * gtk/gtk.symbols: 
+       * gtk/gtkcellview.[hc]: Remove gtk_cell_renderer_set_value[s]
+       for now.
+
+       * configure.in: Bump version to 2.6.0
+
+       * NEWS: Updates
+
+       * tests/testiconview.c: Test oversized items.
+
+       * gtk/gtk.symbols: Add new symbols.
+
+       * gtk/gtkiconview.[hc]: Make the icon view lay out its
+       items in a grid, allocating multiple grid cells to oversized
+       items. Also convert hardwired spacing constants into 
+       properties.  (#152483)
+
 2004-12-13  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtklabel.c: s/maximal/maximum/g  (#161195, David Lodge)
+
+       * gtk/gtkmenuitem.c (gtk_real_menu_item_select): Reintroduce
+       the reverted change, since it is necessary to prevent lost
+       submenus. But make it work for torn-off menus as well.
+
+       * gtk/gtktearoffmenuitem.c (tearoff_state_changed): Fix the signature
+       to avoid overwriting a pspec.  
+
+       * gtk/gtkmenuitem.c (gtk_real_menu_item_select): Revert a change
+       which prevented torn-off menus from being shown normally.
+
+       * gtk/gtkmenu.c (gtk_menu_scroll): Implement scroll wheel scrolling
+       for menus. (#88532)
+
+       * gtk/gtkwindow.c (gtk_window_real_set_focus): Compare only
+       the HAS_DEFAULT flags.  (#160711, Tommi Komulainen)
+
+       * gtk/gtkimage.c (gtk_image_set_property): Add a missing break
+       statement.  (#161172, Damon Chaplin)
+
+       * gtk/gtkcellrenderertext.c: Add a width-chars property like
+       GtkLabel has.  (#160496, James M. Cape)
+
+       * NEWS: Updates
+
        * gtk/gtkwidget.c (gtk_widget_class_init): Add some docs for
        GtkWidget::delete-event and GtkWidget::destroy-event.  (#161142,
        Paolo Borelli)
@@ -186,8 +363,7 @@ Fri Dec 10 13:59:32 2004  Manish Singh  <yosh@gimp.org>
 
 2004-12-07  Marco Pesenti Gritti  <marco@gnome.org>
 
-       * gtk/gtkcellview.c: (gtk_cell_view_set_background_color):
-
+       * gtk/gtkcellview.c (gtk_cell_view_set_background_color):
        Fix a typo in last commit
 
 2004-12-07  Matthias Clasen  <mclasen@redhat.com>