lilypond-1.1.44
[lilypond.git] / lily / include / p-score.hh
blobe3a5174f945c99a43dcfde2063c6754d091cdd2b
1 /*
2 p-score.hh -- declare Paper_score
4 source file of the GNU LilyPond music typesetter
6 (c) 1996, 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef P_SCORE_HH
11 #define P_SCORE_HH
13 #include "colhpos.hh"
14 #include "parray.hh"
15 #include "lily-proto.hh"
16 #include "music-output.hh"
18 /** all stuff which goes onto paper. notes, signs, symbols in a score
19 #Paper_score# contains the items, the columns.
23 class Paper_score : public Music_output
25 /// crescs etc; no particular order
26 Link_array<Spanner> span_p_arr_;
28 /// other elements
29 Link_array<Score_element> elem_p_arr_;
31 Link_array<Score_element> to_delete_arr_;
32 Link_array<Score_element> break_helpers_arr_;
34 public:
35 Paper_def *paper_l_;
37 /// the columns, ordered left to right
38 Link_array<Paper_column> col_l_arr_;
40 Paper_outputter *outputter_l_;
41 Line_of_score * line_l_;
43 Paper_score ();
46 /// add to bottom of pcols
47 void add_column (Paper_column*);
49 /**
50 @return index of argument.
52 int find_col_idx (Paper_column const *) const;
54 Link_array<Item> broken_col_range (Item const*,Item const*) const;
57 /* STANDARD ROUTINES */
58 void print() const;
60 void typeset_element (Score_element*);
61 void typeset_broken_spanner (Spanner*);
62 /// add a Spanner
63 void typeset_unbroken_spanner (Spanner*);
65 void schedule_for_delete (Score_element*);
67 virtual ~Paper_score();
68 protected:
71 /* MAIN ROUTINES */
72 virtual void process();
74 private:
77 Link_array<Score_element> remove_line (Line_of_score*);
78 Link_array<Score_element> remove_break_helpers ();
80 /// before calc_breaking
81 void preprocess();
83 void calc_idealspacing();
84 /// calculate where the lines are to be broken, and use results
85 Array<Column_x_positions> calc_breaking();
87 /// after calc_breaking
88 void postprocess();
89 Paper_score (Paper_score const &);
92 #endif