]> git.donarmstrong.com Git - lilypond.git/blob - pscore.hh
release: 0.0.6
[lilypond.git] / pscore.hh
1 // the breaking problem for a score.
2
3 #ifndef PSCORE_HH
4 #define PSCORE_HH
5
6
7 #include "vray.hh"
8 #include "pcol.hh"
9 #include "pstaff.hh"
10
11 /// all stuff which goes onto paper
12 struct PScore {
13     Paperdef *paper_;           // indirection.
14     
15     /// the columns, ordered left to right
16     PointerList<PCol *> cols;
17
18     /// the idealspacings, no particular order
19     PointerList<Idealspacing*> suz;
20
21     /// the staffs ordered top to bottom
22     PointerList<PStaff*> staffs;
23
24     /// all symbols in score. No particular order.
25     PointerList<Item*> its;
26
27     /// if broken, the different lines
28     PointerList<Line_of_score*> lines;
29
30     /// crescs etc; no particular order
31     PointerList<Spanner *> spanners;
32
33     /****************************************************************/
34
35     svec<Item*> select_items(PStaff*, PCol*);
36     
37     void calc_breaking();
38     /**
39       calculate where the lines are to be broken.
40
41       POST
42     
43       lines contain the broken lines.
44      */
45
46     /// search all pcols which are breakable.
47     svec<const PCol *> find_breaks() const;
48
49     /// add a line to the broken stuff. Positions given in #config#
50     void add_line(svec<const PCol *> curline, svec<Real> config);
51
52     /// helper: solve for the columns in #curline#.
53     svec<Real> solve_line(svec<const PCol *> curline) const;
54
55     void add(PStaff *);
56     /// add item
57     void typeset_item(Item *,  PCol *,PStaff*,int=1);
58     ///    add to bottom of pcols
59     void add(PCol*);
60     /**
61
62     */
63     void output(Tex_stream &ts);
64
65     Idealspacing* get_spacing(PCol *, PCol *);
66     /*
67     get the spacing between c1 and c2, create one if necessary.
68     */
69
70
71     PCursor<PCol *> find_col(PCol *);
72     void clean_cols();
73     void problem_OK()const ;
74     void OK()const ;
75     PScore(Paperdef*);
76     void print() const;
77 };
78 /** notes, signs, symbols in a score can be grouped in two ways:
79     horizontally (staffwise), and vertically (columns). #PScore#
80     contains the items, the columns and the staffs.
81  */
82 #endif