]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/dimension-cache.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / dimension-cache.hh
index ca4fad3c16c370485ce2a3c6b5b51d0e6f819a39..f3b7b88eaab8aac406b851e1457818c11604e3ab 100644 (file)
@@ -1,50 +1,33 @@
-/*   
+/*
   dimension-cache.hh -- declare Dimension_cache
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1998--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #ifndef DIMENSION_CACHE_HH
 #define DIMENSION_CACHE_HH
 
-#include "interval.hh"
-#include "real.hh"
 #include "lily-proto.hh"
-#include "parray.hh"
-#include "dimension-cache-callback.hh"
-
 
-/**
-  Adminstration of offset dimension info. 
- */
-struct Dimension_cache
+/*
+  XY offset/refpoint/extent structure.
+*/
+class Dimension_cache
 {
-  bool valid_b_;
-  Interval dim_;
-  /**
-    The offset wrt. to the center of #parent_l_#
-   */
-
-  Real offset_;
-
-
+  Interval *extent_;
+  Real *offset_;
+  Grob *parent_;
+  void init ();
+  void clear ();
   
-  Array<Offset_callback> off_callbacks_;
-
-  /**
-     What to call to find extent.  Nil means empty. 
-   */
-  Dim_cache_callback extent_callback_l_;
-  Score_element * parent_l_;
-
-  Dimension_cache(Dimension_cache const&);
+  friend class Grob;
+  
+  Dimension_cache (Dimension_cache const &);
+  ~Dimension_cache ();
   Dimension_cache ();
-  void init ();
 };
 
-
 #endif /* DIMENSION_CACHE_HH */