2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1999--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "all-font-metrics.hh"
22 #include "string-convert.hh"
23 #include "international.hh"
25 #include "open-type-font.hh"
26 #include "pango-font.hh"
27 #include "scm-hash.hh"
31 Index_to_charcode_map
const *
32 All_font_metrics::get_index_to_charcode_map (string filename
,
36 string key
= filename
+ String_convert::int_string (face_index
);
37 if (filename_charcode_maps_map_
.find (key
)
38 == filename_charcode_maps_map_
.end ())
39 filename_charcode_maps_map_
[key
] = make_index_to_charcode_map (face
);
41 return &filename_charcode_maps_map_
[key
];
45 All_font_metrics::All_font_metrics (string path
)
47 otf_dict_
= new Scheme_hash_table
;
50 PangoFontMap
*pfm
= pango_ft2_font_map_new ();
52 pango_ft2_fontmap_
= PANGO_FT2_FONT_MAP (pfm
);
54 pango_dpi_
= PANGO_RESOLUTION
;
55 pango_ft2_font_map_set_resolution (pango_ft2_fontmap_
,
56 pango_dpi_
, pango_dpi_
);
58 pango_dict_
= new Scheme_hash_table
;
61 search_path_
.parse_path (path
);
64 All_font_metrics::~All_font_metrics ()
66 otf_dict_
->unprotect ();
69 pango_dict_
->unprotect ();
70 g_object_unref (pango_ft2_fontmap_
);
74 All_font_metrics::All_font_metrics (All_font_metrics
const &)
81 All_font_metrics::find_pango_font (PangoFontDescription
const *description
,
85 gchar
*pango_fn
= pango_font_description_to_filename (description
);
86 SCM key
= ly_symbol2scm (pango_fn
);
89 if (!pango_dict_
->try_retrieve (key
, &val
))
91 if (be_verbose_global
)
92 progress_indication ("\n[" + string (pango_fn
));
94 Pango_font
*pf
= new Pango_font (pango_ft2_fontmap_
,
99 val
= pf
->self_scm ();
100 pango_dict_
->set (key
, val
);
103 if (be_verbose_global
)
104 progress_indication ("]");
106 pf
->description_
= scm_cons (SCM_BOOL_F
,
107 scm_from_double (1.0));
110 return dynamic_cast<Pango_font
*> (unsmob_metrics (val
));
117 All_font_metrics::find_otf (string name
)
119 SCM sname
= ly_symbol2scm (name
.c_str ());
121 if (!otf_dict_
->try_retrieve (sname
, &val
))
125 if (file_name
.empty ())
126 file_name
= search_path_
.find (name
+ ".otf");
127 if (file_name
.empty ())
130 if (be_verbose_global
)
131 progress_indication ("\n[" + file_name
);
133 val
= Open_type_font::make_otf (file_name
);
135 if (be_verbose_global
)
136 progress_indication ("]");
138 unsmob_metrics (val
)->file_name_
= file_name
;
139 SCM name_string
= ly_string2scm (name
);
140 unsmob_metrics (val
)->description_
= scm_cons (name_string
,
141 scm_from_double (1.0));
142 otf_dict_
->set (sname
, val
);
143 unsmob_metrics (val
)->unprotect ();
146 return dynamic_cast<Open_type_font
*> (unsmob_metrics (val
));
150 All_font_metrics::find_font (string name
)
152 Font_metric
*f
= find_otf (name
);
156 error (_f ("cannot find font: `%s'", name
.c_str ()));
162 All_font_metrics
*all_fonts_global
;