X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fsystem.hh;h=97fee80117d2d2a8b838611cdbd718b1b2f526b2;hb=0b544cfb7332615ef809b71b57ab656741311ae1;hp=5ce98171b81647d3cd4d8b9cd9e3f48038a73e10;hpb=66336e13517363e4603368d42fae23227a760ab4;p=lilypond.git diff --git a/lily/include/system.hh b/lily/include/system.hh index 5ce98171b8..97fee80117 100644 --- a/lily/include/system.hh +++ b/lily/include/system.hh @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1996--2011 Han-Wen Nienhuys + Copyright (C) 1996--2014 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,7 +32,6 @@ class System : public Spanner { int rank_; - vector simple_spacers_; Grob_array *all_elements_; void init_elements (); friend class Paper_score; // ugh. @@ -40,13 +39,11 @@ class System : public Spanner public: Paper_score *paper_score () const; - Grob *get_vertical_alignment (); Grob *get_extremal_staff (Direction dir, Interval const &); + Grob *get_neighboring_staff (Direction dir, Grob *vertical_axis_group, Interval_t bounds); Grob *get_pure_bound (Direction dir, int start, int end); Grob *get_maybe_pure_bound (Direction dir, bool pure, int start, int end); int get_rank () const; - vector get_simple_spacers (Real line_len, Real indent, bool ragged); - void gen_simple_spacers (Real line_len, Real indent, bool ragged); vector get_footnote_heights_in_range (vsize st, vsize end); vector get_in_note_heights_in_range (vsize st, vsize end); vector internal_get_note_heights_in_range (vsize st, vsize end, bool foot); @@ -61,12 +58,14 @@ public: DECLARE_SCHEME_CALLBACK (footnotes_before_line_breaking, (SCM)); DECLARE_SCHEME_CALLBACK (footnotes_after_line_breaking, (SCM)); + DECLARE_SCHEME_CALLBACK (vertical_skyline_elements, (SCM)); DECLARE_SCHEME_CALLBACK (calc_pure_relevant_grobs, (SCM)); DECLARE_SCHEME_CALLBACK (height, (SCM)); DECLARE_SCHEME_CALLBACK (calc_pure_height, (SCM, SCM, SCM)); DECLARE_SCHEME_CALLBACK (get_staves, (SCM)); DECLARE_SCHEME_CALLBACK (get_spaceable_staves, (SCM)); DECLARE_SCHEME_CALLBACK (get_nonspaceable_staves, (SCM)); + DECLARE_SCHEME_CALLBACK (get_vertical_alignment, (SCM)); System (SCM); System (System const &);