X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fspacing-spanner.hh;h=61ed8dc4ac0c3ee8ac5df1b8262e5997f992f1e1;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=fb249675c38273ece2d744581e433b4ae9c12b67;hpb=9bc467a994787949def91708bf3bd50d088db982;p=lilypond.git diff --git a/lily/include/spacing-spanner.hh b/lily/include/spacing-spanner.hh index fb249675c3..61ed8dc4ac 100644 --- a/lily/include/spacing-spanner.hh +++ b/lily/include/spacing-spanner.hh @@ -1,32 +1,56 @@ -/* - spacing-spanner.hh -- declare Spacing_spanner - - source file of the GNU LilyPond music typesetter - - (c) 1999 Han-Wen Nienhuys - - */ +/* + This file is part of LilyPond, the GNU music typesetter. + + Copyright (C) 2005--2015 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 + 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 . +*/ #ifndef SPACING_SPANNER_HH #define SPACING_SPANNER_HH -#include "spanner.hh" +#include "lily-proto.hh" +#include "rational.hh" +#include "std-vector.hh" +#include "grob-interface.hh" +#include "spring.hh" -class Spacing_spanner : public Spanner +class Spacing_spanner { +private: + static void set_distances_for_loose_col (Grob *me, Grob *c, Drul_array next_door, Spacing_options const *); + static void generate_pair_spacing (Grob *me, + Paper_column *l, Paper_column *r, + Paper_column *nextr, + Spacing_options const *options); + static Real default_bar_spacing (Grob *, Grob *, Grob *, Moment); + static Rational effective_shortest_duration (Grob *me, vector const &all); + static void breakable_column_spacing (Grob *, Item *l, Item *r, Spacing_options const *); + static void prune_loose_columns (Grob *, vector *cols, Spacing_options *); + static void set_explicit_neighbor_columns (vector const &cols); + static void set_implicit_neighbor_columns (vector const &cols); + static void generate_springs (Grob *me, vector const &cols, Spacing_options const *); + static void musical_column_spacing (Grob *, Item *, Item *, Spacing_options const *); + static bool fills_measure (Grob *, Item *, Item *); public: - Spacing_spanner (); + static vector get_columns (Grob *me); + static Spring note_spacing (Grob *, Grob *, Grob *, Spacing_options const *); + static Spring standard_breakable_column_spacing (Grob *me, Item *l, Item *r, Spacing_options const *); - VIRTUAL_COPY_CONS(Score_element); - Array do_measure (Link_array) const; - -protected: - virtual Array get_springs () const; - - Real stem_dir_correction (Score_column*,Score_column*) const; - Real default_bar_spacing (Score_column*,Score_column*,Moment) const; - Real note_spacing (Score_column*,Score_column*,Moment) const; + DECLARE_SCHEME_CALLBACK (set_springs, (SCM)); + DECLARE_SCHEME_CALLBACK (calc_common_shortest_duration, (SCM)); + DECLARE_GROB_INTERFACE (); }; #endif /* SPACING_SPANNER_HH */ -