]> git.donarmstrong.com Git - lilypond.git/blob - lily/font-interface.cc
* lily/stencil-scheme.cc:
[lilypond.git] / lily / font-interface.cc
1 /*
2   font-interface.cc --  implement Font_interface
3   
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "all-font-metrics.hh"
10 #include "font-metric.hh"
11 #include "font-interface.hh"
12 #include "grob.hh"
13 #include "paper-def.hh"
14 #include "warn.hh"
15
16
17 /* todo: split up this func, reuse in text_item?  */
18 Font_metric *
19 Font_interface::get_default_font (Grob *me)
20 {
21   Font_metric *fm = unsmob_metrics (me->get_property ("font"));
22   if (!fm)
23     {
24       fm = select_font (me->get_paper (), font_alist_chain (me));
25       me->set_property ("font", fm->self_scm ());
26     }
27   return fm;
28 }
29
30 LY_DEFINE (ly_font_interface_get_default_font, "ly:get-default-font",
31           1 , 0, 0, (SCM grob),
32           "Return the default font for grob @var{gr}.")
33 {
34   Grob *gr = unsmob_grob (grob);
35   SCM_ASSERT_TYPE (gr, grob, SCM_ARG1, __FUNCTION__, "grob");
36
37   return Font_interface::get_default_font (gr)->self_scm ();
38 }
39
40 SCM
41 Font_interface::font_alist_chain (Grob *g)
42 {
43   SCM defaults = g->get_paper ()->lookup_variable (ly_symbol2scm ("font-defaults"));
44   return g->get_property_alist_chain (defaults);
45 }
46
47 ADD_INTERFACE (Font_interface, "font-interface",
48                "Any symbol that is typeset through fixed sets of glyphs, "
49                " (ie. fonts)",
50                "font-magnification font font-series font-shape "
51                "font-family font-name font-size");