]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-system.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / paper-system.hh
index c2640e6548e16af4047d59087a912f539208c95d..71785b32e500b5bf849eb8976fa814ac569a3e11 100644 (file)
@@ -3,12 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004--2005  Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2004--2008  Jan Nieuwenhuizen <janneke@gnu.org>
 */
 #ifndef PAPER_SYSTEM_HH
 #define PAPER_SYSTEM_HH
 
-#include "stencil.hh"
+#include "prob.hh"
 
 /*
   A formatted "system" (A block of titling also is a Paper_system)
   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_;
-  SCM details_;
-public:
-  Interval staff_refpoints_;
-  Real break_before_penalty_;
-  int number_;
-
-  Paper_system (Stencil, bool);
-  void read_left_bound (Item*);
-  Stencil to_stencil () const;
-  SCM stencils () const;
-  SCM internal_get_property (SCM sym) const;
-  bool is_title () const;
-  Real break_before_penalty () const;
-  Interval staff_refpoints () const;
-};
-
-DECLARE_UNSMOB (Paper_system, paper_system);
+Prob *make_paper_system (SCM immutable_init);
+void paper_system_set_stencil (Prob *prob, Stencil s);
 
 #endif /* PAPER_SYSTEM_HH */