aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/e-text.h
diff options
context:
space:
mode:
authorChris Lahey <clahey@src.gnome.org>2000-01-12 13:05:30 +0800
committerChris Lahey <clahey@src.gnome.org>2000-01-12 13:05:30 +0800
commit4d2a782588b3d7b7a24b5838be9a9b280a089895 (patch)
tree64f7b2cfe89c29f86988144e6725f9e18a3904c1 /widgets/e-text.h
parentc1209c281ed79b5dcc9c201f1968fba972c3641a (diff)
downloadgsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.tar
gsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.tar.gz
gsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.tar.bz2
gsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.tar.lz
gsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.tar.xz
gsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.tar.zst
gsoc2013-evolution-4d2a782588b3d7b7a24b5838be9a9b280a089895.zip
Added a resize signal for when the card changes height. Made it so that
* widgets/e-minicard.c, widgets/e-minicard.h: Added a resize signal for when the card changes height. Made it so that when you press tab inside of a field, it goes to the next field. * widgets/e-minicard-label.c, widgets/e-minicard-label.h: Added a resize signal for when the label changes height. * widgets/e-text.c, widgets/e-text.h: Added a resize signal for multiple lines. Added scrolling based on cursor position. * widgets/Makefile.am: Removed an extraneous build target. svn path=/trunk/; revision=1562
Diffstat (limited to 'widgets/e-text.h')
-rw-r--r--widgets/e-text.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/e-text.h b/widgets/e-text.h
index 23713563c3..42683a6a74 100644
--- a/widgets/e-text.h
+++ b/widgets/e-text.h
@@ -164,6 +164,9 @@ struct _EText {
struct _ETextClass {
GnomeCanvasItemClass parent_class;
+
+ void (* resize) (EText *text);
+ void (* change) (EText *text);
};