]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-book.hh
release commit
[lilypond.git] / lily / include / paper-book.hh
index 7496ed4646a8a588bf051e58589ee4bf289b84c5..72fa47dff3407ca4a45f59462da8b12a3bf2d679 100644 (file)
@@ -5,7 +5,6 @@
 
   (c) 2004  Jan Nieuwenhuizen <janneke@gnu.org>
 */
-
 #ifndef PAPER_BOOK_HH
 #define PAPER_BOOK_HH
 
 #include "protected-scm.hh"
 #include "smobs.hh"
 
-#define PAGE_LAYOUT "ps"
+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
 {
-public:
-  Array<SCM> headers_;
-  Array<SCM> global_headers_;
-  Link_array<Paper_def> papers_;
-  Array<SCM> scores_;
-  Real height_;
-  SCM copyright_;
-  SCM tagline_;
+  DECLARE_SMOBS (Paper_book, );
 
+  SCM systems_;
+  SCM pages_;
+public:
+  SCM header_;
+  Array<Score_systems> score_systems_;
+  Output_def *bookpaper_;
+  
   Paper_book ();
-  void init ();
-  Link_array<Page> *get_pages ();
-  Link_array<Page> *fill_pages (Page*, int, Real);
-  SCM get_scopes (int);
-  Stencil* get_title (int);
-  void output (String);
+
+  SCM systems ();
+  SCM pages ();
+  Stencil book_title ();
+  Stencil score_title (int);
   void classic_output (String);
-  DECLARE_SMOBS (Paper_book, )
+  void output (String);
+  void post_processing (SCM, SCM);
 };
 
 DECLARE_UNSMOB (Paper_book, paper_book)