diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-09 20:38:16 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-09 20:38:16 +0800 |
commit | 80206f6b32b1ff0aac3f5a54c66176a8c112b547 (patch) | |
tree | de4ca3aecab51c61f4dbc20835f7dcf288433a97 /widgets/text/e-text.h | |
parent | 26279f186a6c7ee5b500dbff8a2b7f227cf6f564 (diff) | |
download | gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.tar gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.tar.gz gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.tar.bz2 gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.tar.lz gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.tar.xz gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.tar.zst gsoc2013-evolution-80206f6b32b1ff0aac3f5a54c66176a8c112b547.zip |
Removed some border padding and set the "draw_borders" argument of the
2000-07-09 Christopher James Lahey <clahey@helixcode.com>
* widgets/e-text/e-entry.c: Removed some border padding and set
the "draw_borders" argument of the contained GtkText.
* widgets/e-text/e-text.c, widget/e-text/e-text.h: Added a
"draw_borders" argument which, if set, makes the EText look more
like a GtkEntry.
svn path=/trunk/; revision=4011
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 a233501293..125804cf72 100644 --- a/widgets/text/e-text.h +++ b/widgets/text/e-text.h @@ -68,6 +68,7 @@ BEGIN_GNOME_DECLS * line_wrap boolean RW Line wrap when not editing. * break_characters string RW List of characters to optionally break on. * max_lines int RW Number of lines possible when doing line wrap. + * draw_borders boolean RW Whether to draw borders. */ #define E_TYPE_TEXT (e_text_get_type ()) @@ -175,6 +176,7 @@ struct _EText { guint pointer_in : 1; /* Is the pointer currently over us? */ guint default_cursor_shown : 1; /* Is the default cursor currently shown? */ + guint draw_borders : 1; /* Draw borders? */ guint line_wrap : 1; /* Do line wrap */ gchar *break_characters; /* Characters to optionally break after */ |