File indexing completed on 2025-12-18 10:28:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #ifndef __PANGO_FONTSET_SIMPLE_H__
0023 #define __PANGO_FONTSET_SIMPLE_H__
0024
0025 #include <pango/pango-coverage.h>
0026 #include <pango/pango-types.h>
0027 #include <pango/pango-fontset.h>
0028
0029 #include <glib-object.h>
0030
0031 G_BEGIN_DECLS
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042 #define PANGO_TYPE_FONTSET_SIMPLE (pango_fontset_simple_get_type ())
0043 #define PANGO_FONTSET_SIMPLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FONTSET_SIMPLE, PangoFontsetSimple))
0044 #define PANGO_IS_FONTSET_SIMPLE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONTSET_SIMPLE))
0045
0046 typedef struct _PangoFontsetSimple PangoFontsetSimple;
0047 typedef struct _PangoFontsetSimpleClass PangoFontsetSimpleClass;
0048
0049
0050 PANGO_AVAILABLE_IN_ALL
0051 GType pango_fontset_simple_get_type (void) G_GNUC_CONST;
0052
0053 PANGO_AVAILABLE_IN_ALL
0054 PangoFontsetSimple * pango_fontset_simple_new (PangoLanguage *language);
0055 PANGO_AVAILABLE_IN_ALL
0056 void pango_fontset_simple_append (PangoFontsetSimple *fontset,
0057 PangoFont *font);
0058 PANGO_AVAILABLE_IN_ALL
0059 int pango_fontset_simple_size (PangoFontsetSimple *fontset);
0060
0061
0062 G_END_DECLS
0063
0064 #endif