]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-system.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / paper-system.hh
index 755e66f7358b021d589502cb720d77d7ee8eaf5f..71785b32e500b5bf849eb8976fa814ac569a3e11 100644 (file)
@@ -3,43 +3,21 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004  Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2004--2008  Jan Nieuwenhuizen <janneke@gnu.org>
 */
-#ifndef PAPER_LINE_HH
-#define PAPER_LINE_HH
+#ifndef PAPER_SYSTEM_HH
+#define PAPER_SYSTEM_HH
 
-#include "lily-proto.hh"
-#include "smobs.hh"
-#include "offset.hh"
-#include "stencil.hh"
+#include "prob.hh"
 
 /*
   A formatted "system" (A block of titling also is a Paper_system)
 
   To save memory, we don't keep around the System grobs, but put the
-  formatted content of the grob is put into a Paper_system. Page-breaking handles
-  Paper_system objects.
-  
- */
-class Paper_system
-{
-  DECLARE_SMOBS (Paper_system, );
-  Stencil stencil_;
-  bool is_title_;
-  
-public:
-  Real penalty_;
-  int number_;
-
-  Paper_system (Stencil, bool);
-
-  Offset dim () const;
-  Stencil to_stencil () const;
-  SCM stencils () const;
-  bool is_title () const;
-  Real penalty () const;
-};
-
-DECLARE_UNSMOB (Paper_system, paper_line);
+  formatted content of the grob is put into a
+  Paper_system. Page-breaking handles Paper_system objects.
+*/
+Prob *make_paper_system (SCM immutable_init);
+void paper_system_set_stencil (Prob *prob, Stencil s);
 
-#endif /* PAPER_LINE_HH */
+#endif /* PAPER_SYSTEM_HH */