diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-16 20:03:40 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-16 20:03:40 +0000 |
commit | e6b83e4264b4ad2ab73a3239d902b4064c75634d (patch) | |
tree | d17827e323d1df9a5cd580293e7b5e86d77b25ae /pango/pango-layout-private.h | |
parent | 29263f589d82036fd50742061834a5de81e4aff3 (diff) | |
download | pango-e6b83e4264b4ad2ab73a3239d902b4064c75634d.tar.gz |
Bug 328585 – Need to know if a layout has unknown glyphs Patch from
2007-01-16 Behdad Esfahbod <behdad@gnome.org>
Bug 328585 – Need to know if a layout has unknown glyphs
Patch from LingNing Zhang
* pango/pango-layout-private.h:
* pango/pango-layout.c (pango_layout_init), (pango_layout_copy),
(pango_layout_get_unknown_glyphs_count),
(pango_layout_clear_lines):
* pango/pango-layout.h:
New public function:
pango_layout_get_unknown_glyphs_count()
* pango/pango.def:
* docs/tmpl/layout.sgml:
* docs/pango-sections.txt:
Update.
svn path=/trunk/; revision=2162
Diffstat (limited to 'pango/pango-layout-private.h')
-rw-r--r-- | pango/pango-layout-private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/pango-layout-private.h b/pango/pango-layout-private.h index c3def007..6751ae60 100644 --- a/pango/pango-layout-private.h +++ b/pango/pango-layout-private.h @@ -44,6 +44,8 @@ struct _PangoLayout int indent; /* amount by which first line should be shorter */ int spacing; /* spacing between lines */ + int unknown_glyphs_count; /* number of unknown glyphs */ + guint justify : 1; guint alignment : 2; |