]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/p-score.hh
release: 0.0.65
[lilypond.git] / lily / include / p-score.hh
1 /*
2   p-score.hh -- declare PScore
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996,1997 Han-Wen Nienhuys <hanwen@stack.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 "plist.hh"
17
18 /** all stuff which goes onto paper. notes, signs, symbols in a score
19      #PScore# contains the items, the columns.
20     
21     */
22
23 class PScore {
24 public:
25     Paper_def *paper_l_;
26
27     /// the columns, ordered left to right
28     Pointer_list<PCol *> cols;
29
30     /// the idealspacings, no particular order
31     Pointer_list<Idealspacing*> suz;
32
33     /// crescs etc; no particular order
34     Pointer_list<Spanner *> spanners;
35
36     /// other elements
37     Pointer_list<Score_elem*> elem_p_list_;
38     
39     Super_elem *super_elem_l_;
40
41     /* *************** */
42     /* CONSTRUCTION */
43     
44     PScore(Paper_def*);
45     /// add a line to the broken stuff. Positions given in #config#
46     void set_breaking(Array<Col_hpositions> const &);
47
48     /** add an item.
49        add the item in specified containers. If breakstatus is set
50        properly, add it to the {pre,post}break of the pcol.
51        */
52     void typeset_item(Item *item_p,  PCol *pcol_l,int breakstatus=1);
53
54     ///    add to bottom of pcols
55     void add(PCol*);
56
57     /**
58       @return argument as a cursor of the list
59       */
60     PCursor<PCol *> find_col(PCol const *)const;
61
62     Link_array<PCol> col_range(PCol *left_l, PCol *right_l) const;
63     
64     /* MAIN ROUTINES */
65     void process();
66
67     /// last deed of this struct
68     void output(Tex_stream &ts);
69
70     /* UTILITY ROUTINES */
71
72     /// get the spacing between c1 and c2, create one if necessary.
73     Idealspacing* get_spacing(PCol *c1, PCol *c2);
74
75     /// connect c1 and c2
76     void do_connect(PCol *c1, PCol *c2, Real distance_f, Real strength_f);
77
78     /// connect c1 and c2 and any children of c1 and c2
79     void connect(PCol* c1, PCol *c2, Real distance_f,Real  strength_f= 1.0);
80     
81     /* STANDARD ROUTINES */
82     void OK()const;
83     void print() const;
84     ~PScore();
85     void typeset_element(Score_elem*);
86     void typeset_broken_spanner(Spanner*);
87     /// add a Spanner
88     void typeset_unbroken_spanner(Spanner*);
89  
90     
91 private:
92     /// before calc_breaking
93     void preprocess();
94
95     /// calculate where the lines are to be broken, and use results
96     void calc_breaking();
97
98     /// after calc_breaking
99     void postprocess();
100     
101     /// delete unused columns
102     void clean_cols();
103 };
104
105 #endif