2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2003--2014 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 "dimensions.hh"
21 #include "all-font-metrics.hh"
22 #include "output-def.hh"
23 #include "font-interface.hh"
25 #include "pango-font.hh"
29 get_font_by_design_size (Output_def *layout, Real requested,
32 int n = scm_c_vector_length (font_vector);
34 Real last_size = -1e6;
37 SCM pango_description_string = SCM_EOL;
38 SCM last_pango_description_string = SCM_EOL;
41 SCM entry = scm_c_vector_ref (font_vector, i);
43 if (scm_promise_p (entry) == SCM_BOOL_T)
45 Font_metric *fm = Font_metric::unsmob (scm_force (entry));
46 size = fm->design_size ();
49 else if (scm_is_pair (entry)
50 && scm_is_number (scm_car (entry))
51 && scm_is_string (scm_cdr (entry)))
53 size = scm_to_double (scm_car (entry));
54 pango_description_string
62 last_pango_description_string = pango_description_string;
69 if ((requested / last_size) < (size / requested))
73 pango_description_string = last_pango_description_string;
78 if (scm_is_string (pango_description_string))
81 return find_pango_font (layout,
82 pango_description_string,
85 error ("Trying to retrieve pango font without HAVE_PANGO_FT2.");
89 fm = Font_metric::unsmob (scm_force (scm_c_vector_ref (font_vector, i)));
91 return find_scaled_font (layout, fm, requested / size);
95 get_font_by_mag_step (Output_def *layout, Real requested_step,
96 SCM font_vector, Real default_size)
98 return get_font_by_design_size (layout, default_size
99 * pow (2.0, requested_step / 6.0),
104 properties_to_font_size_family (SCM fonts, SCM alist_chain)
106 return scm_call_2 (ly_lily_module_constant ("lookup-font"), fonts,
111 select_encoded_font (Output_def *layout, SCM chain)
113 SCM name = ly_chain_assoc_get (ly_symbol2scm ("font-name"), chain, SCM_BOOL_F);
115 if (!scm_is_string (name))
117 SCM fonts = layout->lookup_variable (ly_symbol2scm ("fonts"));
118 name = properties_to_font_size_family (fonts, chain);
122 if (scm_is_string (name))
123 return select_pango_font (layout, chain);
126 if (scm_is_true (scm_instance_p (name)))
128 SCM base_size = scm_slot_ref (name, ly_symbol2scm ("default-size"));
129 SCM vec = scm_slot_ref (name, ly_symbol2scm ("size-vector"));
131 Real req = robust_scm2double (ly_chain_assoc_get (ly_symbol2scm ("font-size"), chain, SCM_BOOL_F),
134 return get_font_by_mag_step (layout, req, vec,
135 scm_to_double (base_size));
143 select_font (Output_def *layout, SCM chain)
145 return select_encoded_font (layout, chain);