X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpaper-system.cc;h=c0b70121fa84dc89d59b199fb06f39ffecbbfb94;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=ea9c0c4346f23a69776d06c6568fd9508982d705;hpb=75eebcb49e52d296b1da3e1074e0825d2c780db4;p=lilypond.git diff --git a/lily/paper-system.cc b/lily/paper-system.cc index ea9c0c4346..c0b70121fa 100644 --- a/lily/paper-system.cc +++ b/lily/paper-system.cc @@ -1,88 +1,94 @@ /* - paper-system.cc -- implement Paper_system + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2004--2015 Jan Nieuwenhuizen - (c) 2004--2006 Jan Nieuwenhuizen + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "paper-system.hh" +#include "international.hh" #include "item.hh" -#include "ly-smobs.icc" +Prob * +make_paper_system (SCM immutable_init) +{ + Prob *prob = new Prob (ly_symbol2scm ("paper-system"), immutable_init); + return prob; +} -IMPLEMENT_SMOBS (Paper_system); -IMPLEMENT_TYPE_P (Paper_system, "ly:paper-system?"); -IMPLEMENT_DEFAULT_EQUAL_P (Paper_system); +/* + TODO + it might be interesting to split off the footnotes as well, ie. -Paper_system::Paper_system (Stencil s, SCM immutable_init) + get_footnotes(SCM expr, SCM* footnotes, SCM* cleaned) + + by doing it this way and overwriting the old expr in the caller, + you can make sure nobody tries to handle footnotes differently + downstream. +*/ +SCM +get_footnotes (SCM expr) { - mutable_property_alist_ = SCM_EOL; - immutable_property_alist_ = immutable_init; - smobify_self (); + if (!scm_is_pair (expr)) + return SCM_EOL; - SCM yext = get_property ("Y-extent"); + SCM head = scm_car (expr); - if (is_number_pair (yext)) + if (head == ly_symbol2scm ("delay-stencil-evaluation")) { - - Box b = s.extent_box(); - b[Y_AXIS] = ly_scm2interval (yext); - - s = Stencil (b, s.expr ()); + // we likely need to do something here...just don't know what... + return SCM_EOL; } - set_property ("stencil", s.smobbed_copy ()); -} -Paper_system::~Paper_system () -{ -} + if (head == ly_symbol2scm ("combine-stencil")) + { + SCM out = SCM_EOL; + SCM *tail = &out; + + for (SCM x = scm_cdr (expr); scm_is_pair (x); x = scm_cdr (x)) + { + SCM footnote = get_footnotes (scm_car (x)); + if (SCM_EOL != footnote) + { + *tail = scm_cons (footnote, SCM_EOL); + tail = SCM_CDRLOC (*tail); + } + } + return scm_append (out); + } + if (head == ly_symbol2scm ("translate-stencil")) + return get_footnotes (scm_caddr (expr)); -SCM -Paper_system::mark_smob (SCM smob) -{ - Paper_system *system = (Paper_system *) SCM_CELL_WORD_1 (smob); - scm_gc_mark (system->mutable_property_alist_); - return system->immutable_property_alist_; -} + if (head == ly_symbol2scm ("footnote")) + return scm_list_1 (scm_cdr (expr)); -int -Paper_system::print_smob (SCM smob, SCM port, scm_print_state*) -{ - Paper_system *p = (Paper_system *) SCM_CELL_WORD_1 (smob); - scm_puts ("#<", port); - scm_puts ("Paper_system", port); - scm_display (p->mutable_property_alist_, port); - scm_display (p->immutable_property_alist_, port); - - scm_puts (" >\n", port); - return 1; + return SCM_EOL; } void -Paper_system::init_vars () -{ - -} - -SCM -Paper_system::internal_get_property (SCM sym) const +paper_system_set_stencil (Prob *prob, Stencil s) { - /* - TODO: type checking - */ - SCM s = scm_sloppy_assq (sym, mutable_property_alist_); - if (s != SCM_BOOL_F) - return scm_cdr (s); + SCM yext = prob->get_property ("Y-extent"); - s = scm_sloppy_assq (sym, immutable_property_alist_); + if (is_number_pair (yext)) + { + Box b = s.extent_box (); + b[Y_AXIS] = ly_scm2interval (yext); - - return (s == SCM_BOOL_F) ? SCM_EOL : scm_cdr (s); -} + s = Stencil (b, s.expr ()); + } -void -Paper_system::internal_set_property (SCM sym, SCM val) -{ - mutable_property_alist_ = scm_assq_set_x (mutable_property_alist_, sym, val); + prob->set_property ("stencil", s.smobbed_copy ()); }