aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text.h
diff options
context:
space:
mode:
authorChris Lahey <clahey@umich.edu>2000-02-28 17:03:20 +0800
committerChris Lahey <clahey@src.gnome.org>2000-02-28 17:03:20 +0800
commit486e3906ec0be1b28f7a5122ff882e894df02f5f (patch)
tree1973d11bb7312f2c3019eed28c99c0b1521a8c49 /widgets/text/e-text.h
parent32646815a482886c48a779690acefdcf0e7f5980 (diff)
downloadgsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.tar
gsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.tar.gz
gsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.tar.bz2
gsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.tar.lz
gsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.tar.xz
gsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.tar.zst
gsoc2013-evolution-486e3906ec0be1b28f7a5122ff882e894df02f5f.zip
Updated these to use the canvas ::update system properly.
2000-02-28 Chris Lahey <clahey@umich.edu> * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Updated these to use the canvas ::update system properly. svn path=/trunk/; revision=1972
Diffstat (limited to 'widgets/text/e-text.h')
-rw-r--r--widgets/text/e-text.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/widgets/text/e-text.h b/widgets/text/e-text.h
index 2f29fb189b..710d6d1e64 100644
--- a/widgets/text/e-text.h
+++ b/widgets/text/e-text.h
@@ -177,6 +177,11 @@ struct _EText {
gint tooltip_timeout; /* Timeout for the tooltip */
GtkWidget *tooltip_window; /* GtkWindow for displaying the tooltip */
gint tooltip_count; /* GDK_ENTER_NOTIFY count. */
+
+ guint needs_redraw : 1; /* Needs redraw */
+ guint needs_recalc_bounds : 1; /* Need recalc_bounds */
+ guint needs_calc_line_widths : 1; /* Needs calc_line_widths */
+ guint needs_split_into_lines : 1; /* Needs split_into_lines */
};
struct _ETextClass {