]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-book.hh
* flower/include/axis.hh: rename from axes.hh
[lilypond.git] / lily / include / paper-book.hh
index a770536b6f87ac80213c2bbd4bc00d60ab47496d..310a321d99fa3457d96758495365e1410a854e8f 100644 (file)
@@ -3,49 +3,43 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004  Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2004--2005  Jan Nieuwenhuizen <janneke@gnu.org>
 */
 #ifndef PAPER_BOOK_HH
 #define PAPER_BOOK_HH
 
-#include "lily-guile.hh"
 #include "parray.hh"
 #include "protected-scm.hh"
 #include "smobs.hh"
 
-struct Score_systems
-{
-  SCM systems_;
-  SCM header_;
+class Output_def;
+class Stencil;
 
-  Score_systems () ;
-  void gc_mark ();
-};
+/** Paper_book collects headers, systems (Paper_system) and texts, and
+    exports them to the output backend, either as systems or as
+    completely formatted pages.  */
 
-/*
-  
-This class is rather empty. It collects systems (Paper_system), and
-exports them to the output backend, either as systems or as completely
-formatted pages.
-  
-*/
 class Paper_book
 {
-  DECLARE_SMOBS (Paper_book, );
+  DECLARE_SMOBS (Paper_book,);
 
   SCM systems_;
   SCM pages_;
+
+  void add_score_title (SCM);
 public:
   SCM header_;
-  Array<Score_systems> score_systems_;
+  SCM header_0_;
+  SCM scores_;
   Output_def *paper_;
-  
+
   Paper_book ();
 
+  void add_score (SCM);
   SCM systems ();
   SCM pages ();
   Stencil book_title ();
-  Stencil score_title (int);
+  Stencil score_title (SCM);
   void classic_output (String);
   void output (String);
   void post_processing (SCM, SCM);
@@ -54,4 +48,3 @@ public:
 DECLARE_UNSMOB (Paper_book, paper_book)
 
 #endif /* PAPER_BOOK_HH */
-