]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/spacing-spanner.hh
* lily/spacing-determine-loose-columns.cc: new file.
[lilypond.git] / lily / include / spacing-spanner.hh
1 /*
2   spacing-spanner.hh -- declare Spacing spanner
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #ifndef SPACING_SPANNER_HH
11 #define SPACING_SPANNER_HH
12
13 #include "lily-proto.hh"
14 #include "lily-guile.hh"
15 #include "rational.hh"
16
17 struct Spacing_options
18 {
19   bool packed_;
20   bool stretch_uniformly_;
21   bool float_nonmusical_columns_;
22   
23   Rational global_shortest_;
24   Real increment_;
25   
26   void init (Grob *me);
27 };
28
29 /*
30   TODO: prune to public interface.
31  */
32 class Spacing_spanner
33 {
34 public:
35   static void generate_pair_spacing (Grob *me,
36                                      Paper_column *l, Paper_column *r,
37                                      Paper_column *nextr,
38                                      Spacing_options const *options);  
39   static void standard_breakable_column_spacing (Grob *me, Item *l, Item *r,
40                                                  Real *fixed, Real *space,
41                                                  Spacing_options const*);
42   static Real default_bar_spacing (Grob *, Grob *, Grob *, Moment);
43   static Real note_spacing (Grob *, Grob *, Grob *, Spacing_options const*, bool *);
44   static Real get_duration_space (Grob *, Moment dur, Rational shortest, bool *);
45   static Rational find_shortest (Grob *, Link_array<Grob> const &);
46   static Rational effective_shortest_duration (Grob *me, Link_array<Grob> const &all);
47   static void breakable_column_spacing (Grob *, Item *l, Item *r, Spacing_options const*);
48   static void prune_loose_columns (Grob *, Link_array<Grob> *cols, Spacing_options const*);
49   static void set_explicit_neighbor_columns (Link_array<Grob> const &cols);
50   static void set_implicit_neighbor_columns (Link_array<Grob> const &cols);
51   static void generate_springs (Grob *me, Link_array<Grob> const &cols, Spacing_options const*);
52   static void musical_column_spacing (Grob *, Item *, Item *, Spacing_options const*);
53   DECLARE_SCHEME_CALLBACK (set_springs, (SCM));
54   static bool has_interface (Grob *);
55 };
56
57 #endif /* SPACING_SPANNER_HH */