X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscore-scheme.cc;h=083ef65c0698c0889dd69a30db885c1a9c543633;hb=c1922825f7419f28127cd4987da66dcb58b10265;hp=c10347530251767fc8bfafd5e98f08b49f96bf3f;hpb=a667c0fbd789c30b782bae277456bb1f940ddccc;p=lilypond.git diff --git a/lily/score-scheme.cc b/lily/score-scheme.cc index c103475302..083ef65c06 100644 --- a/lily/score-scheme.cc +++ b/lily/score-scheme.cc @@ -41,7 +41,17 @@ LY_DEFINE (ly_score_output_defs, "ly:score-output-defs", return scm_reverse_x (l, SCM_EOL); } - +LY_DEFINE (ly_score_add_output_def_x, "ly:score-add-output-def!", + 2, 0, 0, (SCM score, SCM def), + "Add an output definition @var{def} to @var{score}.") +{ + LY_ASSERT_SMOB (Score, score, 1); + LY_ASSERT_SMOB (Output_def, def, 2); + Score *sc = unsmob_score (score); + Output_def *output_def = unsmob_output_def (def); + sc->add_output_def (output_def); + return SCM_UNSPECIFIED; +} LY_DEFINE (ly_score_header, "ly:score-header", 1, 0, 0, (SCM score), @@ -49,7 +59,21 @@ LY_DEFINE (ly_score_header, "ly:score-header", { LY_ASSERT_SMOB (Score, score, 1); Score *sc = unsmob_score (score); - return sc->header_; + return sc->get_header (); +} + + +LY_DEFINE (ly_score_set_header_x, "ly:score-set-header!", + 2, 0, 0, (SCM score, SCM module), + "Set the score header.") +{ + LY_ASSERT_SMOB (Score, score, 1); + SCM_ASSERT_TYPE (ly_is_module (module), module, SCM_ARG2, __FUNCTION__, + "module"); + + Score *sc = unsmob_score (score); + sc->set_header (module); + return SCM_UNSPECIFIED; }