From bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 26 Jan 2000 11:26:07 +0000 Subject: Added an arrow cursor for the draggable columns. Made the clickable column 2000-01-27 Christopher James Lahey * widgets/e-reflow.h, widgets/e-reflow.c: Added an arrow cursor for the draggable columns. Made the clickable column area larger. * widgets/e-text.h, widgets/e-text.c: Added an I beam cursor for the text item when it is editable. * widgets/e-minicard-label.c: Forward enter and leave notifications to the contained editable text item. svn path=/trunk/; revision=1647 --- widgets/e-text/e-text.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'widgets/e-text/e-text.h') diff --git a/widgets/e-text/e-text.h b/widgets/e-text/e-text.h index e1f250c678..f4f43a156b 100644 --- a/widgets/e-text/e-text.h +++ b/widgets/e-text/e-text.h @@ -167,6 +167,12 @@ struct _EText { gint primary_length; /* Primary selection text length */ gchar *clipboard_selection; /* Clipboard selection text */ gint clipboard_length; /* Clipboard selection text length*/ + + guint pointer_in : 1; + guint default_cursor_shown : 1; + + GdkCursor *default_cursor; + GdkCursor *i_cursor; }; struct _ETextClass { -- cgit