diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-08 02:39:43 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-08 02:39:43 +0800 |
commit | 053cdfdbc36a8100ac5e7dfe33e05f82a7e50ea2 (patch) | |
tree | 86d5177a13563363bbe4bfb3eb4d68789c8b88b8 /widgets/text/e-text.h | |
parent | cf61f7c4dd6f445be551bea4b55e7902edf4a816 (diff) | |
download | gsoc2013-evolution-053cdfdbc36a8100ac5e7dfe33e05f82a7e50ea2.tar.gz gsoc2013-evolution-053cdfdbc36a8100ac5e7dfe33e05f82a7e50ea2.tar.zst gsoc2013-evolution-053cdfdbc36a8100ac5e7dfe33e05f82a7e50ea2.zip |
Set "anchor" and "fill_clip_rectangle" arguments.
2000-07-07 Christopher James Lahey <clahey@helixcode.com>
* widgets/e-text/e-entry.c: Set "anchor" and "fill_clip_rectangle"
arguments.
* widgets/e-text/e-text.c, widgets/e-text/e-text.h: Added
"fill_clip_rectangle" argument which describes whether to accept
clicks throughout the clipping rectangle.
svn path=/trunk/; revision=3956
Diffstat (limited to 'widgets/text/e-text.h')
-rw-r--r-- | widgets/text/e-text.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/text/e-text.h b/widgets/text/e-text.h index cde023fb08..a233501293 100644 --- a/widgets/text/e-text.h +++ b/widgets/text/e-text.h @@ -53,6 +53,7 @@ BEGIN_GNOME_DECLS * clip_width double RW Width of clip rectangle * clip_height double RW Height of clip rectangle * clip boolean RW Use clipping rectangle? + * fill_clip_rect boolean RW Whether the text item represents itself as being the size of the clipping rectangle. * x_offset double RW Horizontal offset distance from anchor position * y_offset double RW Vertical offset distance from anchor position * text_width double R Used to query the width of the rendered text @@ -129,6 +130,7 @@ struct _EText { int height; /* Rendered text height in pixels */ guint clip : 1; /* Use clip rectangle? */ + guint fill_clip_rectangle : 1; /* Fill the clipping rectangle. */ /* Antialiased specific stuff follows */ ETextSuckFont *suckfont; /* Sucked font */ |