]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-def.cc
* scm/output-tex.scm (named-glyph): new function. This fixes TeX output.
[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
14 Real
15 output_scale (Output_def *od)
16 {
17   return scm_to_double (od->lookup_variable (ly_symbol2scm ("outputscale")));
18 }
19
20 /* TODO: should add nesting for Output_def here too. */
21 Font_metric *
22 find_scaled_font (Output_def *mod, Font_metric *f, Real m,
23                   SCM font_encoding, SCM input_encoding)
24 {
25   if (mod->parent_)
26     return find_scaled_font (mod->parent_, f, m, font_encoding, input_encoding);
27   
28   Real lookup_mag = m;
29
30   SCM font_table = mod->lookup_variable (ly_symbol2scm ("scaled-fonts"));
31   if (scm_hash_table_p (font_table) != SCM_BOOL_T)
32     {
33       font_table = scm_c_make_hash_table (11);
34       mod->set_variable (ly_symbol2scm ("scaled-fonts"), font_table);
35     }
36   
37   SCM sizes = scm_hashq_ref (font_table, f->self_scm (), SCM_BOOL_F);
38   if (sizes != SCM_BOOL_F)
39     {
40       SCM met = scm_assoc (scm_make_real (lookup_mag), sizes);
41       if (scm_is_pair (met))
42         return unsmob_metrics (scm_cdr (met));
43     }
44   else
45     sizes = SCM_EOL;
46   
47   SCM val = Modified_font_metric::make_scaled_font_metric (f, lookup_mag,
48                                                          font_encoding,
49                                                          input_encoding);
50
51   sizes = scm_acons (scm_make_real (lookup_mag), val, sizes);
52   scm_gc_unprotect_object (val);
53   scm_hashq_set_x (font_table, f->self_scm (), sizes);
54   return unsmob_metrics (val);
55 }
56
57 /* TODO: this is a nasty interface. During formatting,
58    the Output_def should be scaled to the output_scale_
59    specified in the toplevel Output_def.  */
60 Output_def * 
61 scale_output_def (Output_def *o, Real amount)
62 {
63   SCM proc = ly_scheme_function ("scale-layout");
64   SCM new_pap = scm_call_2 (proc, o->self_scm (), scm_double2num (amount));
65   scm_gc_protect_object (new_pap);
66
67   return unsmob_output_def (new_pap);
68 }
69
70 LY_DEFINE (ly_paper_fonts, "ly:paper-fonts",
71            1, 0, 0,
72            (SCM bp),
73            "Return fonts scaled up BP")
74 {
75   Output_def *b = unsmob_output_def (bp);
76
77   SCM font_table = b->lookup_variable (ly_symbol2scm ("scaled-fonts"));
78   
79   SCM_ASSERT_TYPE (b, bp, SCM_ARG1, __FUNCTION__, "paper");
80
81   SCM ell = SCM_EOL;
82   if (scm_hash_table_p (font_table) == SCM_BOOL_T)
83     {
84       SCM func = ly_scheme_function ("hash-table->alist");
85
86       for (SCM s = scm_call_1 (func, font_table); scm_is_pair (s);
87            s = scm_cdr (s))
88         {
89           SCM entry = scm_car (s);
90           for (SCM t = scm_cdr (entry); scm_is_pair (t); t = scm_cdr (t))
91             {
92               Font_metric *fm = unsmob_metrics (scm_cdar (t));
93
94               if (dynamic_cast<Modified_font_metric*> (fm))
95                 ell = scm_cons (fm->self_scm (), ell);
96             }
97         }
98     }
99   return ell;
100 }