67 static PangoFontMap *fontmap;
68 static PangoContext *context;
69 static PangoFontDescription *desc;
70 static char *fontname;
71 static double fontsize;
73 char *fnt, *psfnt =
NULL;
75#ifdef ENABLE_PANGO_MARKUP
80 bool text_needs_free =
false;
84 fontmap = pango_cairo_font_map_new();
86 context = pango_font_map_create_context (fontmap);
87 cairo_font_options_t*
options = cairo_font_options_create();
88 cairo_font_options_set_antialias(
options,CAIRO_ANTIALIAS_GRAY);
89 cairo_font_options_set_hint_style(
options,CAIRO_HINT_STYLE_FULL);
90 cairo_font_options_set_hint_metrics(
options,CAIRO_HINT_METRICS_ON);
91 cairo_font_options_set_subpixel_order(
options,CAIRO_SUBPIXEL_ORDER_BGR);
92 pango_cairo_context_set_font_options(context,
options);
93 pango_cairo_context_set_resolution(context,
FONT_DPI);
94 cairo_font_options_destroy(
options);
95 g_object_unref(fontmap);
98 if (!fontname || strcmp(fontname, span->
font->
name) != 0 ||
102 if (INT_MAX / PANGO_SCALE < span->
font->size) {
109 pango_font_description_free (desc);
112 bool psfnt_needs_free =
false;
117 psfnt_needs_free =
true;
123 desc = pango_font_description_from_string(fnt);
125 pango_font_description_set_size (desc, (
int)(fontsize * PANGO_SCALE));
127 if (fontpath && (
font = pango_font_map_load_font(fontmap, context, desc))) {
128 const char *fontclass = G_OBJECT_CLASS_NAME(G_OBJECT_GET_CLASS(
font));
132 agxbprint(&buf,
"(ps:pango %s) ", psfnt);
135#ifdef HAVE_PANGO_FC_FONT_LOCK_FACE
136 if (strcmp(fontclass,
"PangoCairoFcFont") == 0) {
137 PangoFcFont *fcfont = PANGO_FC_FONT(
font);
145#pragma GCC diagnostic push
146#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
148 FT_Face face = pango_fc_font_lock_face(fcfont);
150#pragma GCC diagnostic pop
153 agxbprint(&buf,
"\"%s, %s\" ", face->family_name, face->style_name);
155 FT_Stream stream = face->stream;
157 FT_StreamDesc streamdesc = stream->pathname;
158 if (streamdesc.pointer)
159 agxbput(&buf, streamdesc.pointer);
161 agxbput(&buf,
"*no pathname available*");
164 agxbput(&buf,
"*no stream available*");
167#pragma GCC diagnostic push
168#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
170 pango_fc_font_unlock_face(fcfont);
172#pragma GCC diagnostic pop
178 PangoFontDescription *tdesc = pango_font_describe(
font);
179 char *tfont = pango_font_description_to_string(tdesc);
185 if (psfnt_needs_free) {
190#ifdef ENABLE_PANGO_MARKUP
197 agxbput(&xb,
" weight=\"bold\"");
199 agxbput(&xb,
" style=\"italic\"");
201 agxbput(&xb,
" underline=\"single\"");
203 agxbput(&xb,
" strikethrough=\"true\"");
220 if (!pango_parse_markup (
agxbuse(&xb), -1, 0, &attrs, &text,
NULL, &
error)) {
221 fprintf (stderr,
"Error - pango_parse_markup: %s\n",
error->message);
225 text_needs_free =
true;
237 PangoLayout *
layout = pango_layout_new (context);
241 pango_layout_set_text (
layout, text, -1);
242 pango_layout_set_font_description (
layout, desc);
243#ifdef ENABLE_PANGO_MARKUP
245 pango_layout_set_attributes (
layout, attrs);
248 PangoRectangle logical_rect;
249 pango_layout_get_extents (
layout,
NULL, &logical_rect);
252 if (logical_rect.width == 0)
253 logical_rect.height = 0;
256 span->
size.
x = logical_rect.width * textlayout_scale;
257 span->
size.
y = logical_rect.height * textlayout_scale;
265 const bool rc = logical_rect.width != 0 || strcmp(text,
"") == 0;
266 if (text_needs_free) {
static gvtextlayout_engine_t pango_textlayout_engine
static int agxbput_int(void *buffer, const char *s)
gvplugin_installed_t gvtextlayout_pango_types[]
static char * pango_psfontResolve(PostscriptAlias *pa)
static bool pango_textlayout(textspan_t *span, char **fontpath)
static void pango_free_layout(void *layout)
PostscriptAlias * postscript_alias
double yoffset_centerline
void(* free_layout)(void *layout)