]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-book.hh
release commit
[lilypond.git] / lily / include / paper-book.hh
index 42945d5434e579ec30fcb489d609d34ef0cacdc6..72fa47dff3407ca4a45f59462da8b12a3bf2d679 100644 (file)
@@ -5,24 +5,53 @@
 
   (c) 2004  Jan Nieuwenhuizen <janneke@gnu.org>
 */
-
 #ifndef PAPER_BOOK_HH
 #define PAPER_BOOK_HH
 
-//#define PAGE_LAYOUT 1
-
+#include "lily-guile.hh"
 #include "parray.hh"
-class Page;
+#include "protected-scm.hh"
+#include "smobs.hh"
+
+struct Score_systems
+{
+  SCM systems_;
+  SCM header_;
+
+  Score_systems () ;
+  void gc_mark ();
+};
 
+/*
+  
+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, );
+
+  SCM systems_;
+  SCM pages_;
 public:
-  Link_array<Paper_score> paper_scores_;
+  SCM header_;
+  Array<Score_systems> score_systems_;
+  Output_def *bookpaper_;
+  
   Paper_book ();
 
-  Link_array<Page> *get_pages ();
-  void output ();
+  SCM systems ();
+  SCM pages ();
+  Stencil book_title ();
+  Stencil score_title (int);
+  void classic_output (String);
+  void output (String);
+  void post_processing (SCM, SCM);
 };
 
+DECLARE_UNSMOB (Paper_book, paper_book)
+
 #endif /* PAPER_BOOK_HH */