diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-08-20 10:09:41 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-08-20 10:16:45 -0400 |
commit | bd816f9f4568a75c19455202a6ab1e7fa72a254d (patch) | |
tree | 6f890cf066e18fefecf406150209028efd67aca0 /pango/pango-context.h | |
parent | dba200b2d9dc56431fc2fb598f60d11eb2b037b8 (diff) | |
download | pango-bd816f9f4568a75c19455202a6ab1e7fa72a254d.tar.gz |
Cosmetics: Clean up pango-context.h
Move itemize functions to pango-item.h, and move
the PangoContext typedef to pango-types.h.
Diffstat (limited to 'pango/pango-context.h')
-rw-r--r-- | pango/pango-context.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/pango/pango-context.h b/pango/pango-context.h index b44bd623..b25c777d 100644 --- a/pango/pango-context.h +++ b/pango/pango-context.h @@ -22,6 +22,7 @@ #ifndef __PANGO_CONTEXT_H__ #define __PANGO_CONTEXT_H__ +#include <pango/pango-types.h> #include <pango/pango-font.h> #include <pango/pango-fontmap.h> #include <pango/pango-attributes.h> @@ -33,7 +34,6 @@ G_BEGIN_DECLS * to handle scripts */ -/* PangoContext typedefed in pango-fontmap.h */ typedef struct _PangoContextClass PangoContextClass; #define PANGO_TYPE_CONTEXT (pango_context_get_type ()) @@ -119,22 +119,6 @@ void pango_context_set_round_glyph_positions (PangoContext PANGO_AVAILABLE_IN_1_44 gboolean pango_context_get_round_glyph_positions (PangoContext *context); -PANGO_AVAILABLE_IN_ALL -GList *pango_itemize (PangoContext *context, - const char *text, - int start_index, - int length, - PangoAttrList *attrs, - PangoAttrIterator *cached_iter); -PANGO_AVAILABLE_IN_1_4 -GList *pango_itemize_with_base_dir (PangoContext *context, - PangoDirection base_dir, - const char *text, - int start_index, - int length, - PangoAttrList *attrs, - PangoAttrIterator *cached_iter); - G_END_DECLS #endif /* __PANGO_CONTEXT_H__ */ |