]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-score.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / paper-score.hh
index 3e82beb44822acd4a6c20a31a2cf058a7ad8b07f..7ec8fe8ce3c2f0af591533843f980cc8d9244ca3 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef PAPER_SCORE_HH
 /* LAYOUT output */
 class Paper_score : public Music_output
 {
-public:
   Output_def *layout_;
   System *system_;
+  SCM systems_;
+  SCM paper_systems_;
 
-  Paper_score ();
-
-  int find_col_idx (Paper_column const *) const;
-  Link_array<Item> broken_col_range (Item const*, Item const*) const;
-  void typeset_line (System*);
-  void output ();
-
+  mutable vector<Grob*> cols_;
+  mutable vector<vsize> break_indices_;
+public:
+  Paper_score (Output_def *);
+  
+  DECLARE_CLASSNAME(Paper_score);
+
+  Output_def *layout () const;
+  System *root_system () const;
+
+  void typeset_system (System *);
+  vector<Column_x_positions> calc_breaking ();
+  vector<vsize> find_break_indices () const;
+  vector<vsize> get_break_indices () const;
+  vector<Grob*> get_columns () const;
+  SCM get_paper_systems ();
 protected:
-  virtual SCM process (String);
+  virtual void process ();
+  virtual void derived_mark () const;
 
 private:
-  Protected_scm systems_;
-
-  void preprocess ();
-  void calc_idealspacing ();
-  Array<Column_x_positions> calc_breaking ();
-  void postprocess ();
   Paper_score (Paper_score const &);
 };