]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-score.hh
10f60042423cbea1ce32b96cbd60ff04042f431e
[lilypond.git] / lily / include / paper-score.hh
1 /*
2   paper-score.hh -- declare Paper_score
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef PAPER_SCORE_HH
10 #define PAPER_SCORE_HH
11
12 #include "column-x-positions.hh"
13 #include "music-output.hh"
14
15 /* LAYOUT output */
16 class Paper_score : public Music_output
17 {
18   Output_def *layout_;
19   System *system_;
20   SCM systems_;
21
22 public:
23   Paper_score (Output_def *);
24
25   Output_def *layout () const;
26   System *root_system () const;
27   
28   void typeset_system (System *);
29   Array<Column_x_positions> calc_breaking ();
30
31   SCM get_systems () const;
32 protected:
33   virtual void process ();
34   virtual void derived_mark () const;
35
36 private:
37   Paper_score (Paper_score const &);
38 };
39
40 #endif /* PAPER_SCORE_HH */