]> git.donarmstrong.com Git - lilypond.git/blob - lily/font-select.cc
(get_font_by_design_size): retrieve
[lilypond.git] / lily / font-select.cc
1 /*
2   font-select.cc -- implement property -> font_metric routines. 
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2003--2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include <math.h>
10
11 #include "dimensions.hh"
12 #include "all-font-metrics.hh"
13 #include "output-def.hh"
14 #include "font-interface.hh"
15 #include "warn.hh"
16 #include "pango-font.hh"
17 #include "main.hh"
18
19
20 Font_metric *
21 get_font_by_design_size (Output_def *layout, Real requested,
22                          SCM font_vector)
23 {
24   int n = SCM_VECTOR_LENGTH (font_vector);
25   Real size = 1e6;
26   Real last_size = -1e6;
27   int i = 0;
28
29   String pango_description_string;
30   for (; i < n; i++)
31     {
32       SCM entry = SCM_VECTOR_REF (font_vector, i);
33       
34       if (scm_promise_p (entry) == SCM_BOOL_T)
35         {
36           Font_metric *fm = unsmob_metrics (scm_force (entry));
37           size = fm->design_size ();
38         }
39 #if HAVE_PANGO_FT2
40       else if (scm_is_pair (entry)
41                && scm_is_number (scm_car (entry))
42                && scm_is_string (scm_cdr (entry)))
43         {
44           size = scm_to_double (scm_car (entry));
45           pango_description_string
46             = ly_scm2string (scm_cdr (entry));
47         }
48 #endif
49       
50       if (size > requested)
51         break;
52       last_size = size;
53     }
54
55   if (i == n)
56     i = n - 1;
57   else if (i > 0)
58     {
59       if ((requested / last_size) < (size / requested))
60         {
61           i--;
62           size = last_size;
63         }
64     }
65   
66   Font_metric *fm = 0;
67   if (pango_description_string != "")
68     {
69 #if HAVE_PANGO_FT2
70       PangoFontDescription *description
71         = pango_font_description_from_string (pango_description_string.to_str0 ());
72       fm = all_fonts_global->find_pango_font (description);
73 #else
74       error ("Trying to retrieve pango font without HAVE_PANGO_FT2."); 
75 #endif
76     }
77   else
78     {
79       fm = unsmob_metrics (scm_force (SCM_VECTOR_REF (font_vector, i)));
80     }
81
82   return find_scaled_font (layout, fm, requested / size);
83 }
84
85 Font_metric *
86 get_font_by_mag_step (Output_def *layout, Real requested_step,
87                       SCM font_vector, Real default_size)
88 {
89   return get_font_by_design_size (layout, default_size
90                                   * pow (2.0, requested_step / 6.0),
91                                   font_vector);
92 }
93
94 SCM
95 properties_to_font_size_family (SCM fonts, SCM alist_chain)
96 {
97   return scm_call_2 (ly_lily_module_constant ("lookup-font"), fonts, alist_chain);
98 }
99
100 Font_metric *
101 select_encoded_font (Output_def *layout, SCM chain)
102 {
103   SCM name = ly_chain_assoc (ly_symbol2scm ("font-name"), chain);
104
105   if (!scm_is_pair (name) || !scm_is_string (scm_cdr (name)))
106     {
107       SCM fonts = layout->lookup_variable (ly_symbol2scm ("fonts"));
108       name = properties_to_font_size_family (fonts, chain);
109     }
110   else
111     name = scm_cdr (name);
112
113 #if HAVE_PANGO_FT2
114   if (scm_is_string (name)
115       && is_pango_format_global)
116     {
117       select_pango_font (layout, chain);
118     }
119   else
120 #endif
121     if (scm_is_string (name))
122       {
123         SCM mag = ly_chain_assoc (ly_symbol2scm ("font-magnification"), chain);
124         Real rmag = (scm_is_pair (mag)
125                      ? robust_scm2double (scm_cdr (mag), 1.0)
126                      : 1);
127         Font_metric *fm = all_fonts_global->find_font (ly_scm2string (name));
128                 
129         return find_scaled_font (layout, fm, rmag);
130       }
131     else if (scm_instance_p (name))
132       {
133         SCM base_size  = scm_slot_ref (name, ly_symbol2scm ("default-size"));
134         SCM vec = scm_slot_ref (name, ly_symbol2scm ("size-vector"));
135
136         SCM font_size = ly_chain_assoc (ly_symbol2scm ("font-size"), chain);
137         Real req = 0;
138         if (scm_is_pair (font_size))
139           req = scm_to_double (scm_cdr (font_size));
140
141         return get_font_by_mag_step (layout, req, vec,
142                                      scm_to_double (base_size));
143       }
144
145   assert (0);
146   return 0;
147 }
148
149 Font_metric *
150 select_font (Output_def *layout, SCM chain)
151 {
152   return select_encoded_font (layout, chain);
153 }