diff options
author | Havoc Pennington <hp@pobox.com> | 2000-12-16 06:46:40 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-12-16 06:46:40 +0000 |
commit | cf11e920312b335c5eaa21021a1176fe9f913d9b (patch) | |
tree | d81ec1b8fb3d1abd4fff624d4892369c28d1b364 /pango/pango-glyph.h | |
parent | f4c71c29b3b9b67d746ea23b17ce28b126911f54 (diff) | |
download | pango-cf11e920312b335c5eaa21021a1176fe9f913d9b.tar.gz |
move pango_shape and pango_reorder_items in here.
2000-12-15 Havoc Pennington <hp@pobox.com>
* pango/pango-glyph.h: move pango_shape and pango_reorder_items in
here.
* pango/pango-break.h: move most of pango.h in here, so that
pango.h can be the only file that includes pango-enum-types.h, so
that changing any header doesn't end up rebuilding all of pango
due to a rebuild of pango-enum-types.h.
* pango/makeenums.pl: script to generate pango-enum-types.[hc]
* pango/Makefile.am (pango_headers): built pango-enum-types.h,
pango-enum-types.c that do enum type registration; add
pango-break.h; do some assorted rearranging to handle the
built headers
* pango/pango.h: moved most of it to pango-break.h
* pango/break.c: include individual headers, not pango.h
* pango/shape.c: ditto
* pango/reorder-items.c: ditto
* pango/querymodules.c: ditto
* pango/pango-layout.c: ditto
* pango/pango-indic.c: ditto
* pango/mapping.c: ditto
* pango/itemize.c: ditto
* pango/fonts.c: ditto
Diffstat (limited to 'pango/pango-glyph.h')
-rw-r--r-- | pango/pango-glyph.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pango/pango-glyph.h b/pango/pango-glyph.h index 789ae897..aefe833d 100644 --- a/pango/pango-glyph.h +++ b/pango/pango-glyph.h @@ -122,6 +122,16 @@ void pango_justify (PangoGlyphString *glyphs, gint new_line_width, gint min_kashida_width); + +/* Turn a string of characters into a string of glyphs + */ +void pango_shape (const gchar *text, + gint length, + PangoAnalysis *analysis, + PangoGlyphString *glyphs); + +GList *pango_reorder_items (GList *logical_items); + #ifdef __cplusplus } #endif /* __cplusplus */ |