]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics-scheme.cc
Run grand-replace (issue 3765)
[lilypond.git] / lily / all-font-metrics-scheme.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2007--2014 Han-Wen Nienhuys <hanwen@lilypond.org>
5
6
7   LilyPond is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   LilyPond is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "all-font-metrics.hh"
22 #include "main.hh"
23
24 LY_DEFINE (ly_reset_all_fonts, "ly:reset-all-fonts", 0, 0, 0,
25            (),
26            "Forget all about previously loaded fonts.")
27 {
28   delete all_fonts_global;
29   all_fonts_global = new All_font_metrics (global_path.to_string ());
30
31   return SCM_UNSPECIFIED;
32 }
33
34 LY_DEFINE (ly_system_font_load, "ly:system-font-load", 1, 0, 0,
35            (SCM name),
36            "Load the OpenType system font @file{@var{name}.otf}."
37            "  Fonts loaded with this command must contain three"
38            " additional SFNT font tables called @code{LILC},"
39            " @code{LILF}, and @code{LILY}, needed for typesetting"
40            " musical elements.  Currently, only the Emmentaler and"
41            " the Emmentaler-Brace fonts fulfill these requirements.\n"
42            "\n"
43            "Note that only @code{ly:font-get-glyph} and derived"
44            " code (like @code{\\lookup}) can access glyphs from"
45            " the system fonts; text strings are handled exclusively"
46            " via the Pango interface.")
47 {
48   LY_ASSERT_TYPE (scm_is_string, name, 1);
49
50   string name_str = ly_scm2string (name);
51   Font_metric *fm = all_fonts_global->find_font (name_str);
52
53   return fm->self_scm ();
54 }