]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-8
Pass the ref_node and unref_node calls through to the child model.
[~andy/gtk] / ChangeLog.pre-2-8
index ba413242ead90eb790bdffdf1d716bc1dbf43f76..555002c443c65980678f0dd28a06a7214613c630 100644 (file)
@@ -1,3 +1,107 @@
+2002-02-08  Darin Adler  <darin@bentspoon.com>
+
+       * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_ref_node),
+       (gtk_tree_model_sort_unref_node): Pass the ref_node and
+       unref_node calls through to the child model.
+
+2002-02-08  Laszlo Peter  <laca@ireland.sun.com>
+
+       * gtk/gtktextchild.c: s/__FUNCTION__/G_GNUC_FUNCTION/
+       * gtk/gtktextview.c: ditto
+
+2002-02-07  Havoc Pennington  <hp@pobox.com>
+
+       * gtk/gtkspinbutton.h (struct _GtkSpinButtonClass): add
+       change_value virtual function, to fix build
+
+       * gtk/gtkpixmap.c (gtk_pixmap_class_init): parent_class was 
+       from GtkWidget not GtkMisc. Not that it ever mattered.
+
+Thu Feb  7 19:52:00 2002  Owen Taylor  <otaylor@redhat.com>
+
+        * gtk/gtknotebook.[ch]: Add ::move-focus-out signal
+       to handle Control[-Shift]-Tab and Control-arrow
+       bindings and implement bindings as per #53612.
+
+       * gtk/gtktextview.c (gtk_text_view_move_focus): Fix 
+       fetching the toplevel for plug-socket.
+
+       * gtk/gtknotebook.c (gtk_notebook_class_init): Remove
+       bindings for Return/Enter to select the page.
+
+       * gtk/gtknotebook.c (gtk_notebook_change_current_page):
+       Beep at ends.
+
+       * gtk/gtknotebook.c (focus_tabs_move): Don't wrap around
+       and beep at ends.
+
+       * gtk/gtknotebook.c (gtk_notebook_focus): When focusing into
+       the page with the arrow keys, focus the first widget,
+       not the directionally closest widget.
+
+Thu Feb  7 19:00:10 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkspinbutton.c (gtk_spin_button_key_release): Convert
+       to using  binding set for doing key bindings. (#62622,
+       Requested by Skip Montaro)
+
+       * gtk/gtkwindow.c (gtk_window_class_init): Add control-arrow
+       bindings as overrides along with control-tab bindings.
+
+       * gtk/gtknotebook.c (gtk_notebook_class_init): Fix return
+       type for ::focus_tab signal.
+
+Thu Feb  7 19:39:27 2002  Kristian Rietveld  <kris@gtk.org>
+
+       Fixes #70782 and some drag dest rectangle/line issues
+
+       * gtk/gtktreeview.c (gtk_tree_view_set_model): set
+       GTK_TREE_VIEW_IS_LIST flag (we can switch from a TreeStore to a
+       ListStore for example)
+       (gtk_tree_view_get_path_at_pos): revert previous change, we
+       shouldn't correct for the header, because we are taking bin_window
+       coordinates here
+       (gtk_tree_view_set_drag_dest_row): queue old drag_dest row and
+       upper/lower neighbors for draw, so the drag dest rectangle/line will
+       be cleared correctly
+       (gtk_tree_view_get_dest_row_at_pos): correct for treeview header
+       here, as drag_y is relative to the widget and _get_path_at_pos wants
+       coords relative to bin_window, draw black outline rectangle after
+       drawing the cells
+
+Thu Feb  7 10:53:12 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkentry.c (gtk_entry_draw_text): Use layout text
+       (which may be affected by invisible char) to compute
+       selection bounds, not entry text. (#70733, Alex Larsson)
+
+2002-02-07 Padraig O'Briain <padraig.obriain@sun.com>
+
+       * gtk/gtkwidget.[ch]:
+       Change show_help signal to return gboolean instead of void. This
+       allows the keypress which invokes the signal to be propagated to the
+       focus widgets ancestors if not handled by the focus widget.
+       
+       * gtk/gtktoolips.[ch]
+       Change _gtk_tooltips_show_tip () to return a gboolean indicating
+       whether widget has tooltip to display.
+       
+2002-02-07 Padraig O'Briain <padraig.obriain@sun.com>
+
+       * gtk/gtkwidget.[ch]:
+       Change popup_menu signal to return gboolean instead of void. This
+       allows the keypress which invokes the signal to be propagated to the
+       focus widgets ancestors if not handled by the focus widget.
+
+       * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtktextview.c:
+       Change signature of popup_menu signal handler to return gboolean
+       instead of void and return TRUE in the signal handler
+
+2002-02-07  Anders Carlsson  <andersca@gnu.org>
+
+       * gdk/x11/xsettings-common.c (xsettings_setting_free): Free 
+       the setting name.
+
 Wed Feb  6 23:28:39 2002  Kristian Rietveld  <kris@gtk.org>
 
        Fixes #70708