]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/p-score.hh
release: 1.1.49
[lilypond.git] / lily / include / p-score.hh
1 /*
2   p-score.hh -- declare Paper_score
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996, 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef P_SCORE_HH
11 #define P_SCORE_HH
12
13 #include "colhpos.hh"
14 #include "parray.hh"
15 #include "lily-proto.hh"
16 #include "music-output.hh"
17 #include "lily-guile.hh"
18
19 /** all stuff which goes onto paper. notes, signs, symbols in a score
20      #Paper_score# contains the items, the columns.
21     
22     */
23
24 class Paper_score : public Music_output
25 {
26   /// crescs etc; no particular order
27   Link_array<Spanner> span_p_arr_;
28
29   /// other elements
30   Link_array<Score_element> elem_p_arr_;
31   Link_array<Score_element> break_helpers_arr_;
32
33   SCM protected_scms_;
34 public:
35   Paper_def *paper_l_;
36
37   /// the columns, ordered left to right
38   Link_array<Paper_column> col_l_arr_;
39
40   Paper_outputter *outputter_l_;  
41   Line_of_score * line_l_;
42   
43   Paper_score ();
44
45
46   /// add to bottom of pcols
47   void add_column (Paper_column*);
48
49   /**
50     @return index of argument.
51     */
52   int find_col_idx (Paper_column const *) const;
53
54   Link_array<Item> broken_col_range (Item const*,Item const*) const;
55     
56     
57   /* STANDARD ROUTINES */
58   void print() const;
59   
60   void typeset_element (Score_element*);
61   void typeset_broken_spanner (Spanner*);
62   /// add a Spanner
63   void typeset_unbroken_spanner (Spanner*);
64   
65     
66   virtual ~Paper_score();
67 protected:
68     /* MAIN ROUTINES */
69   virtual void process();
70
71 private:
72   /// before calc_breaking
73   void preprocess();
74
75   void calc_idealspacing();
76   /// calculate where the lines are to be broken, and use results
77   Array<Column_x_positions> calc_breaking();
78
79   /// after calc_breaking
80   void postprocess();
81   Paper_score (Paper_score const &);
82 };
83
84 #endif