diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-06 22:54:38 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-07 11:28:33 -0400 |
commit | 50b1e8532c5211cebd3cea935f9ac91a087d5c35 (patch) | |
tree | af1ca619f55780c9e64991e1ed97740774fe5eaa /pango/pango-break.h | |
parent | 78eb39adf81e2c0de43ae7e3e33ca13cea46330a (diff) | |
download | pango-50b1e8532c5211cebd3cea935f9ac91a087d5c35.tar.gz |
break: Mark breaks induced by soft hyphens
Use a bit in PangoLogAttr to mark line breaks
that are due to soft hyphens; we want to insert
hyphens here later, if the break is taken.
Diffstat (limited to 'pango/pango-break.h')
-rw-r--r-- | pango/pango-break.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pango/pango-break.h b/pango/pango-break.h index 92af390b..66d81631 100644 --- a/pango/pango-break.h +++ b/pango/pango-break.h @@ -79,6 +79,9 @@ G_BEGIN_DECLS * This flag implements Unicode's * <ulink url="http://www.unicode.org/reports/tr29/">Word * Boundaries</ulink> semantics. (Since: 1.22) + * @is_soft_hyphen: is a line break due to a Soft Hyphen (0x00AD). + * This indicates a position where a hyphen should be inserted + * if the break is taken. * * The #PangoLogAttr structure stores information * about the attributes of a single character. @@ -86,7 +89,6 @@ G_BEGIN_DECLS struct _PangoLogAttr { guint is_line_break : 1; /* Can break line in front of character */ - guint is_mandatory_break : 1; /* Must break line in front of character */ guint is_char_break : 1; /* Can break here when doing char wrap */ @@ -130,6 +132,7 @@ struct _PangoLogAttr /* Word boundary as defined by UAX#29 */ guint is_word_boundary : 1; /* is NOT in the middle of a word */ + guint is_soft_hyphen : 1; /* line break due to a soft hyphen */ }; /* Determine information about cluster/word/line breaks in a string |