]> git.donarmstrong.com Git - lilypond.git/blob - lily/context-mod-scheme.cc
Web-ja: update introduction
[lilypond.git] / lily / context-mod-scheme.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2010--2015 Jan Nieuwenhuizen <janneke@gnu.org>
5   Han-Wen Nienhuys <hanwen@xs4all.nl>
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 "context.hh"
22 #include "context-mod.hh"
23
24 LY_DEFINE (ly_get_context_mods, "ly:get-context-mods",
25            1, 0, 0, (SCM contextmod),
26            "Returns the list of context modifications stored in"
27            " @var{contextmod}.")
28 {
29   Context_mod *tr = unsmob<Context_mod> (contextmod);
30   LY_ASSERT_SMOB (Context_mod, contextmod, 1);
31   return tr->get_mods ();
32 }
33
34 LY_DEFINE (ly_add_context_mod, "ly:add-context-mod",
35            2, 0, 0, (SCM contextmods, SCM modification),
36            "Adds the given context @var{modification} to the list"
37            " @var{contextmods} of context modifications.")
38 {
39   Context_mod *ctxmod = unsmob<Context_mod> (contextmods);
40   LY_ASSERT_SMOB (Context_mod, contextmods, 1);
41   ctxmod->add_context_mod (modification);
42   return SCM_UNSPECIFIED;
43 }
44
45 LY_DEFINE (ly_make_context_mod, "ly:make-context-mod",
46            0, 1, 0, (SCM mod_list),
47            "Creates a context modification, optionally initialized"
48            " via the list of modifications @var{mod-list}.")
49 {
50   if (!SCM_UNBNDP (mod_list))
51     {
52       LY_ASSERT_TYPE (ly_cheap_is_list, mod_list, 1);
53       return Context_mod (mod_list).smobbed_copy ();
54     }
55   else
56     return Context_mod ().smobbed_copy ();
57 }
58
59 LY_DEFINE (ly_context_mod_apply_x, "ly:context-mod-apply!",
60            2, 0, 0, (SCM context, SCM mod),
61            "Apply the context modification @var{mod} to @var{context}.")
62 {
63   LY_ASSERT_SMOB (Context, context, 1);
64   LY_ASSERT_SMOB (Context_mod, mod, 2);
65
66   apply_property_operations (unsmob<Context> (context),
67                              unsmob<Context_mod> (mod)->get_mods ());
68   scm_remember_upto_here_1 (context);
69   return SCM_UNSPECIFIED;
70 }