]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-def.cc
* input/regression/new-markup-scheme.ly: oops. font-family=music
[lilypond.git] / lily / paper-def.cc
1 /* 
2   paper-def.cc -- implement Paper_def
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "dimensions.hh"
10 #include "ly-module.hh"
11 #include "output-def.hh"
12 #include "modified-font-metric.hh"
13 #include "pango-font.hh"
14
15 Real
16 output_scale (Output_def *od)
17 {
18   return scm_to_double (od->lookup_variable (ly_symbol2scm ("outputscale")));
19 }
20
21
22 SCM
23 get_font_table (Output_def *def)
24 {
25   SCM font_table = def->lookup_variable (ly_symbol2scm ("scaled-fonts"));
26   if (scm_hash_table_p (font_table) != SCM_BOOL_T)
27     {
28       font_table = scm_c_make_hash_table (11);
29       def->set_variable (ly_symbol2scm ("scaled-fonts"), font_table);
30     }
31   return font_table;
32 }
33   
34
35
36 /* TODO: should add nesting for Output_def here too. */
37 Font_metric *
38 find_scaled_font (Output_def *mod, Font_metric *f, Real m)
39 {
40   if (mod->parent_)
41     return find_scaled_font (mod->parent_, f, m);
42   
43   Real lookup_mag = m / output_scale (mod);
44
45   
46   
47   SCM font_table = get_font_table (mod);
48   SCM sizes = scm_hashq_ref (font_table, f->self_scm (), SCM_BOOL_F);
49   if (sizes != SCM_BOOL_F)
50     {
51       SCM met = scm_assoc (scm_make_real (lookup_mag), sizes);
52       if (scm_is_pair (met))
53         return unsmob_metrics (scm_cdr (met));
54     }
55   else
56     sizes = SCM_EOL;
57   
58   SCM val = Modified_font_metric::make_scaled_font_metric (f, lookup_mag);
59   
60   sizes = scm_acons (scm_make_real (lookup_mag), val, sizes);
61   scm_gc_unprotect_object (val);
62   scm_hashq_set_x (font_table, f->self_scm (), sizes);
63   return unsmob_metrics (val);
64 }
65
66 /* TODO: this is a nasty interface. During formatting,
67    the Output_def should be scaled to the output_scale_
68    specified in the toplevel Output_def.  */
69 Output_def * 
70 scale_output_def (Output_def *o, Real amount)
71 {
72   SCM proc = ly_lily_module_constant ("scale-layout");
73   SCM new_pap = scm_call_2 (proc, o->self_scm (), scm_double2num (amount));
74   scm_gc_protect_object (new_pap);
75
76   return unsmob_output_def (new_pap);
77 }
78
79 LY_DEFINE (ly_paper_fonts, "ly:paper-fonts",
80            1, 0, 0,
81            (SCM bp),
82            "Return fonts from the @code{\\paper} block @var{bp}.")
83 {
84   Output_def *b = unsmob_output_def (bp);
85
86   SCM font_table = b->lookup_variable (ly_symbol2scm ("scaled-fonts"));
87   
88   SCM_ASSERT_TYPE (b, bp, SCM_ARG1, __FUNCTION__, "paper");
89
90   SCM ell = SCM_EOL;
91   if (scm_hash_table_p (font_table) == SCM_BOOL_T)
92     {
93       SCM func = ly_lily_module_constant ("hash-table->alist");
94
95       for (SCM s = scm_call_1 (func, font_table); scm_is_pair (s);
96            s = scm_cdr (s))
97         {
98           SCM entry = scm_car (s);
99           for (SCM t = scm_cdr (entry); scm_is_pair (t); t = scm_cdr (t))
100             {
101               Font_metric *fm = unsmob_metrics (scm_cdar (t));
102
103               if (dynamic_cast<Modified_font_metric*> (fm)
104                   || dynamic_cast<Pango_font*> (fm))
105                 ell = scm_cons (fm->self_scm (), ell);
106             }
107         }
108     }
109   return ell;
110 }