2 pango-font-scheme.cc -- implement Pango_font
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #define PANGO_ENABLE_BACKEND // ugh, why necessary?
11 #include <pango/pangoft2.h>
15 #include "dimensions.hh"
16 #include "pango-font.hh"
22 LY_DEFINE (ly_pango_font_p
, "ly:pango-font?",
25 "Is @var{f} a pango font?")
27 return scm_from_bool (dynamic_cast<Pango_font
*> (unsmob_metrics (f
)));
30 LY_DEFINE (ly_pango_font_physical_fonts
, "ly:pango-font-physical-fonts",
33 "Return alist of @code{(ps-name file-name font-index)} lists"
34 " for Pango font@tie{}@var{f}.")
36 Pango_font
*pf
= dynamic_cast<Pango_font
*> (unsmob_metrics (f
));
40 alist
= ly_hash2alist (pf
->physical_font_tab ());