Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / all-font-metrics.cc
blob23119125aa593db391b513ea0bb0cc827e7532d6
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1999--2011 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"
24 #include "main.hh"
25 #include "open-type-font.hh"
26 #include "pango-font.hh"
27 #include "scm-hash.hh"
28 #include "warn.hh"
31 Index_to_charcode_map const *
32 All_font_metrics::get_index_to_charcode_map (string filename,
33 int face_index,
34 FT_Face face)
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;
49 #if HAVE_PANGO_FT2
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;
59 #endif
61 search_path_.parse_path (path);
64 All_font_metrics::~All_font_metrics ()
66 otf_dict_->unprotect ();
68 #if HAVE_PANGO_FT2
69 pango_dict_->unprotect ();
70 g_object_unref (pango_ft2_fontmap_);
71 #endif
74 All_font_metrics::All_font_metrics (All_font_metrics const &)
78 #if HAVE_PANGO_FT2
80 Pango_font *
81 All_font_metrics::find_pango_font (PangoFontDescription const *description,
82 Real output_scale
85 gchar *pango_fn = pango_font_description_to_filename (description);
86 SCM key = ly_symbol2scm (pango_fn);
88 SCM val;
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_,
95 description,
96 output_scale
99 val = pf->self_scm ();
100 pango_dict_->set (key, val);
101 pf->unprotect ();
103 if (be_verbose_global)
104 progress_indication ("]");
106 pf->description_ = scm_cons (SCM_BOOL_F,
107 scm_from_double (1.0));
109 g_free (pango_fn);
110 return dynamic_cast<Pango_font *> (unsmob_metrics (val));
113 #endif
116 Open_type_font *
117 All_font_metrics::find_otf (string name)
119 SCM sname = ly_symbol2scm (name.c_str ());
120 SCM val;
121 if (!otf_dict_->try_retrieve (sname, &val))
123 string file_name;
125 if (file_name.empty ())
126 file_name = search_path_.find (name + ".otf");
127 if (file_name.empty ())
128 return 0;
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));
149 Font_metric *
150 All_font_metrics::find_font (string name)
152 Font_metric *f = find_otf (name);
154 if (!f)
156 error (_f ("cannot find font: `%s'", name.c_str ()));
159 return f;
162 All_font_metrics *all_fonts_global;