]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-system.hh
* lily/include/paper-system.hh (class Paper_system): remove
[lilypond.git] / lily / include / paper-system.hh
index 879ed05b00b70550707956156fe077397f6aa785..e35077b9cb1d219dd25e329e60ef3bcf7953eb03 100644 (file)
@@ -3,41 +3,39 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004  Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2004--2005  Jan Nieuwenhuizen <janneke@gnu.org>
 */
 #ifndef PAPER_SYSTEM_HH
 #define PAPER_SYSTEM_HH
 
-#include "lily-proto.hh"
-#include "smobs.hh"
-#include "offset.hh"
 #include "stencil.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.
-  
- */
+  formatted content of the grob is put into a
+  Paper_system. Page-breaking handles Paper_system objects.
+*/
 class Paper_system
 {
-  DECLARE_SMOBS (Paper_system, );
+  DECLARE_SMOBS (Paper_system,);
   Stencil stencil_;
-  bool is_title_;
-  
-public:
-  Real penalty_;
-  int number_;
+  SCM mutable_property_alist_;
+  SCM immutable_property_alist_;
 
-  Paper_system (Stencil, bool);
+  void init_vars ();
+public:
+  Interval staff_refpoints_;
 
-  Offset dim () const;
+  Paper_system (Stencil, SCM);
   Stencil to_stencil () const;
   SCM stencils () const;
+  SCM internal_get_property (SCM sym) const;
+  void internal_set_property (SCM sym, SCM val);
   bool is_title () const;
-  Real penalty () const;
+  Real break_before_penalty () const;
+  Interval staff_refpoints () const;
 };
 
 DECLARE_UNSMOB (Paper_system, paper_system);