Package ch.bailu.gtk.gtk
Interface WrapMode
public interface WrapMode
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
wrap text, breaking lines anywhere the cursor can
appear (between characters, usually - if you want to be technical,
between graphemes, see pango_get_log_attrs())static final int
do not wrap lines; just make the text area widerstatic final int
wrap text, breaking lines in between wordsstatic final int
wrap text, breaking lines in between words, or if
that is not enough, also between graphemes
-
Field Details
-
NONE
static final int NONEdo not wrap lines; just make the text area wider- See Also:
-
CHAR
static final int CHARwrap text, breaking lines anywhere the cursor can
appear (between characters, usually - if you want to be technical,
between graphemes, see pango_get_log_attrs())- See Also:
-
WORD
static final int WORDwrap text, breaking lines in between words- See Also:
-
WORD_CHAR
static final int WORD_CHARwrap text, breaking lines in between words, or if
that is not enough, also between graphemes- See Also:
-