]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-score.hh
*** empty log message ***
[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   SCM paper_systems_;
22
23 public:
24   Paper_score (Output_def *);
25
26   DECLARE_CLASSNAME(Paper_score);
27
28   Output_def *layout () const;
29   System *root_system () const;
30
31   void typeset_system (System *);
32   Array<Column_x_positions> calc_breaking ();
33
34   SCM get_paper_systems () const;
35 protected:
36   virtual void process ();
37   virtual void derived_mark () const;
38
39 private:
40   Paper_score (Paper_score const &);
41 };
42
43 #endif /* PAPER_SCORE_HH */