diff options
author | Jonathan Blandford <jrb@redhat.com> | 2001-06-08 22:59:37 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2001-06-08 22:59:37 +0000 |
commit | f92ccfc08c6a098f06355003a393921d7cd7299b (patch) | |
tree | 099e44e938e778ace4ebafb3436c71c4911ba2eb /gtk/gtktreeprivate.h | |
parent | 30d3e85d96550d9cc305757673b5a37948ad44c2 (diff) | |
download | gdk-pixbuf-f92ccfc08c6a098f06355003a393921d7cd7299b.tar.gz |
new function to clean up cursor handling.
Fri Jun 8 18:41:30 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_set_cursor): new function to
clean up cursor handling.
Pretty much nailed single selection motion, and multi-selection
focus minus the fact that the anchor isn't quite right.
Diffstat (limited to 'gtk/gtktreeprivate.h')
-rw-r--r-- | gtk/gtktreeprivate.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtktreeprivate.h b/gtk/gtktreeprivate.h index 643f16b23..f9eb494fd 100644 --- a/gtk/gtktreeprivate.h +++ b/gtk/gtktreeprivate.h @@ -158,6 +158,9 @@ struct _GtkTreeViewPrivate guint drag_column_window_state : 3; /* hint to display rows in alternating colors */ guint has_rules : 1; + + guint in_extended_selection : 1; + guint in_free_motion : 1; }; #ifdef __GNUC__ |