]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-book.hh
* lily/sequential-music.cc: remove file.
[lilypond.git] / lily / include / paper-book.hh
index 1f481c2dd40114b8bced83baaff7e92d117b8041..e5302c298b6c84fa2c47e9ec5291765ef6eb9bd6 100644 (file)
@@ -5,37 +5,52 @@
 
   (c) 2004  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"
 
-#define PAGE_LAYOUT "ps"
+class Output_def;
+class Stencil;
+
+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:
-  Protected_scm protect_;
-  Array<SCM> headers_;
-  Array<SCM> global_headers_;
-  Link_array<Paper_def> papers_;
-  Array<SCM> scores_;
+  DECLARE_SMOBS (Paper_book, );
 
+  SCM systems_;
+  SCM pages_;
+public:
+  SCM header_;
+  Array<Score_systems> score_systems_;
+  Output_def *paper_;
+  
   Paper_book ();
-  Link_array<Page> *get_pages ();
-  SCM get_scopes (int);
-  Stencil* get_title (int);
-  void output (String);
-  void classic_output (String);
 
-  SCM smobbed_copy () const;
-
-private:
-  DECLARE_SIMPLE_SMOBS (Paper_book, )
+  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)