]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-system.hh
* The grand 2005-2006 replace.
[lilypond.git] / lily / include / paper-system.hh
index 5a7ff284460358dc06f3bd4a652a1e3e907a1ebe..5df57abf0341fcaab043a02fdb740250eb3ab382 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004--2005  Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2004--2006  Jan Nieuwenhuizen <janneke@gnu.org>
 */
 #ifndef PAPER_SYSTEM_HH
 #define PAPER_SYSTEM_HH
   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_;
+  DECLARE_SMOBS (Paper_system,);
+  SCM mutable_property_alist_;
+  SCM immutable_property_alist_;
+
+  void init_vars ();
 public:
-  Interval staff_refpoints_;
-  Real break_before_penalty_;
-  int number_;
-
-  Paper_system (Stencil, bool);
-  
-  Stencil to_stencil () const;
-  SCM stencils () const;
-  bool is_title () const;
+
+  Paper_system (Stencil, SCM);
+  SCM internal_get_property (SCM sym) const;
+  void internal_set_property (SCM sym, SCM val);
   Real break_before_penalty () const;
 };
-//
+
 DECLARE_UNSMOB (Paper_system, paper_system);
 
 #endif /* PAPER_SYSTEM_HH */