aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-01-26 19:26:07 +0800
committerChris Lahey <clahey@src.gnome.org>2000-01-26 19:26:07 +0800
commitbbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d (patch)
tree84869ce42558686480e2d03c82e7aebc7f6fdb77 /widgets/text/e-text.h
parenteb1bc09da68d0b049e95ea3ef30cee798445b857 (diff)
downloadgsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.tar
gsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.tar.gz
gsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.tar.bz2
gsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.tar.lz
gsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.tar.xz
gsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.tar.zst
gsoc2013-evolution-bbcecaf6b73f9dd315823ffbbd9aa9574b18aa7d.zip
Added an arrow cursor for the draggable columns. Made the clickable column
2000-01-27 Christopher James Lahey <clahey@helixcode.com> * 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
Diffstat (limited to 'widgets/text/e-text.h')
-rw-r--r--widgets/text/e-text.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/widgets/text/e-text.h b/widgets/text/e-text.h
index e1f250c678..f4f43a156b 100644
--- a/widgets/text/e-text.h
+++ b/widgets/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 {