]> git.donarmstrong.com Git - lilypond.git/blob - lily/font-interface.cc
(LY_DEFINE): use Scheme style naming for
[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
10 #include "all-font-metrics.hh"
11 #include "font-metric.hh"
12 #include "font-interface.hh"
13 #include "grob.hh"
14 #include "paper-def.hh"
15 #include "warn.hh"
16
17
18 /*
19   todo: split up this func, reuse in text_item? 
20  */
21 Font_metric *
22 Font_interface::get_default_font (Grob*me)
23 {
24   Font_metric * fm =  unsmob_metrics (me->get_property ("font"));
25   if (fm)
26     return fm;
27
28   fm = select_font (me->get_paper (),  font_alist_chain (me));
29   me->set_property ("font", fm->self_scm ());
30   return fm;
31 }
32
33
34 LY_DEFINE(ly_font_interface_get_default_font,
35           "ly:get-default-font", 1 , 0, 0,
36           (SCM grob), "Return the default font for grob @var{gr}.")
37 {
38   Grob * gr  = unsmob_grob (grob);
39   SCM_ASSERT_TYPE(gr, grob, SCM_ARG1, __FUNCTION__, "grob");
40
41   return Font_interface::get_default_font (gr)->self_scm ();
42 }
43
44
45 SCM
46 Font_interface::font_alist_chain (Grob*g)
47 {
48   SCM defaults = g->get_paper ()->lookup_variable (ly_symbol2scm ("font-defaults"));
49   
50   return g->get_property_alist_chain (defaults);
51 }
52
53
54   
55
56
57 ADD_INTERFACE (Font_interface, "font-interface",
58                "Any symbol that is typeset through fixed sets of glyphs (ie. fonts)",
59                "font-magnification font font-series font-shape "
60                "font-family font-name font-size");