X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpage-layout-problem.cc;h=aaf86815dc2ea55540423c9f91cb3808974786d6;hb=999b5321b8a9ba9a2b01e792ba710a2f6b710d51;hp=fa0689bf8f285738af61a02f3654a12ad12fed66;hpb=82a9add4f1d4790bddb79459d5f63b01b3e7cc97;p=lilypond.git diff --git a/lily/page-layout-problem.cc b/lily/page-layout-problem.cc index fa0689bf8f..aaf86815dc 100644 --- a/lily/page-layout-problem.cc +++ b/lily/page-layout-problem.cc @@ -32,89 +32,6 @@ #include "prob.hh" #include "skyline-pair.hh" #include "system.hh" -#include "text-interface.hh" - -SCM -Page_layout_problem::get_footnotes_from_lines (SCM lines, Real padding) -{ - SCM footnotes = SCM_EOL; - // ugh...code dup - for (SCM s = lines; scm_is_pair (s); s = scm_cdr (s)) - { - if (Grob *g = unsmob_grob (scm_car (s))) - { - System *sys = dynamic_cast (g); - if (!sys) - { - programming_error ("got a grob for footnotes that wasn't a System"); - continue; - } - footnotes = scm_cons (sys->make_footnote_stencil (padding).smobbed_copy (), footnotes); - } - else if (Prob *p = unsmob_prob (scm_car (s))) - { - SCM stencils = p->get_property ("footnotes"); - if (stencils == SCM_EOL) - continue; - Stencil footnote_stencil; - - for (SCM st = stencils; scm_is_pair (st); st = scm_cdr (st)) - footnote_stencil.add_at_edge (Y_AXIS, DOWN, *unsmob_stencil (scm_car (st)), padding); - footnotes = scm_cons (footnote_stencil.smobbed_copy (), footnotes); - } - } - - if (!scm_is_pair (footnotes)) - return SCM_EOL; - - return scm_reverse (footnotes); -} - -Stencil* -Page_layout_problem::get_footnote_separator_stencil (Output_def *paper) -{ - SCM props = scm_call_1 (ly_lily_module_constant ("layout-extract-page-properties"), - paper->self_scm ()); - - SCM markup = paper->c_variable ("footnote-separator-markup"); - - if (!Text_interface::is_markup (markup)) - return NULL; - - SCM footnote_stencil = Text_interface::interpret_markup (paper->self_scm (), - props, markup); - - Stencil *footnote_separator = unsmob_stencil (footnote_stencil); - - return footnote_separator; -} - -void -Page_layout_problem::add_footnotes_to_footer (SCM footnotes, Stencil *foot, Paper_book *pb) -{ - bool are_footnotes = false; - Real footnote_padding = robust_scm2double (pb->paper_->c_variable ("footnote-padding"), 0.0); - - footnotes = scm_reverse (footnotes); - for (SCM s = footnotes; scm_is_pair (s); s = scm_cdr (s)) - { - if (scm_car (s) == SCM_EOL) - continue; - Stencil *stencil = unsmob_stencil (scm_car (s)); - if (stencil->extent (Y_AXIS).length() > 0.0) - { - foot->add_at_edge (Y_AXIS, UP, *stencil, footnote_padding); - are_footnotes = true; - } - } - - if (are_footnotes) - { - Stencil *separator = get_footnote_separator_stencil (pb->paper_); - if (separator) - foot->add_at_edge (Y_AXIS, UP, *separator, footnote_padding); - } -} Page_layout_problem::Page_layout_problem (Paper_book *pb, SCM page_scm, SCM systems) : bottom_skyline_ (DOWN) @@ -130,13 +47,7 @@ Page_layout_problem::Page_layout_problem (Paper_book *pb, SCM page_scm, SCM syst { Stencil *head = unsmob_stencil (page->get_property ("head-stencil")); Stencil *foot = unsmob_stencil (page->get_property ("foot-stencil")); - - Real footnote_padding = 0.0; - if (pb && pb->paper_) - footnote_padding = robust_scm2double (pb->paper_->c_variable ("footnote-padding"), 0.0); - SCM footnotes = get_footnotes_from_lines (systems, footnote_padding); - add_footnotes_to_footer (footnotes, foot, pb); - + header_height_ = head ? head->extent (Y_AXIS).length () : 0; footer_height_ = foot ? foot->extent (Y_AXIS).length () : 0; page_height_ = robust_scm2double (page->get_property ("paper-height"), 100); @@ -408,10 +319,10 @@ Page_layout_problem::solve_rod_spring_problem (bool ragged) Real overflow = spacer.configuration_length (spacer.force ()) - page_height_; if (ragged && overflow < 1e-6) - warning (_ ("couldn't fit music on page: ragged-spacing was requested, but page was compressed")); + warning (_ ("cannot fit music on page: ragged-spacing was requested, but page was compressed")); else { - warning (_f ("couldn't fit music on page: overflow is %f", + warning (_f ("cannot fit music on page: overflow is %f", overflow)); warning (_ ("compressing music to fit")); vsize space_count = solution_.size ();