]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/pango-font.cc
trim duplicate headers.
[lilypond.git] / lily / pango-font.cc
index 7da47e6672a3e9885b52984eea3eca86b9238d62..ca08a4b0d23c8fc42357d77d38a3b57456d9406d 100644 (file)
@@ -8,14 +8,20 @@
 
 #define PANGO_ENABLE_BACKEND // ugh, why necessary?
 #include <pango/pangoft2.h>
+#include <freetype/ftxf86.h>
+
+#include <map>
 
 /* Ugh.  */
+
 #include "pango-font.hh"
 
+#include "open-type-font.hh"   // Index_to_charcode_map
+
 #include "dimensions.hh"
 #include "file-name.hh"
 #include "international.hh"
-#include "lookup.hh"
+#include "lookup.hh"           // debugging
 #include "main.hh"
 #include "string-convert.hh"
 #include "warn.hh"
@@ -160,8 +166,8 @@ Pango_font::pango_item_string_stencil (PangoItem const *item, string str,
   bool has_glyph_names = ftface->face_flags & FT_FACE_FLAG_GLYPH_NAMES;
   if  (! has_glyph_names)
     cmap = get_index_to_charcode_map (file_name, ftface);
-  bool is_ttf = (file_name.find (".ttf") != NPOS
-                || file_name.find (".TTF") != NPOS);
+
+  bool is_ttf = string (FT_Get_X11_Font_Format (ftface)) == "TrueType";
   bool cid_keyed = false;
   for (int i = 0; i < pgs->num_glyphs; i++)
     {
@@ -177,12 +183,10 @@ Pango_font::pango_item_string_stencil (PangoItem const *item, string str,
          if (errorcode)
            programming_error ("FT_Get_Glyph_Name returns error");
        }
-      
+
       SCM char_id = SCM_EOL;
       if (glyph_name[0] == '\0'
          && cmap
-
-         /* Ugh should ask FreeType about font type. */
          && is_ttf
          && cmap->find (pg) != cmap->end ())
        {
@@ -199,6 +203,10 @@ Pango_font::pango_item_string_stencil (PangoItem const *item, string str,
          continue;
        }
 
+      
+      if (glyph_name == string (".notdef") && is_ttf)
+       glyph_name[0] = '\0';
+         
       if (glyph_name[0] == '\0' && is_ttf)
        {
          // access by glyph index directly.