X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fdimension-cache.hh;h=24f2615b388a36de4fd2634d633b425a67b1fbfe;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=806ec2704eddf9f3e3d659e075a272621821e807;hpb=8aad615ea7bb31f49a0c2afc21eea5ff5de20437;p=lilypond.git diff --git a/lily/include/dimension-cache.hh b/lily/include/dimension-cache.hh index 806ec2704e..24f2615b38 100644 --- a/lily/include/dimension-cache.hh +++ b/lily/include/dimension-cache.hh @@ -1,66 +1,45 @@ -/* - dimension-cache.hh -- declare Dimension_cache - - source file of the GNU LilyPond music typesetter - - (c) 1998--1999 Han-Wen Nienhuys - - */ +/* + This file is part of LilyPond, the GNU music typesetter. + + Copyright (C) 1998--2015 Han-Wen Nienhuys + + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ #ifndef DIMENSION_CACHE_HH #define DIMENSION_CACHE_HH -#include "interval.hh" -#include "real.hh" #include "lily-proto.hh" -#include "parray.hh" - -/** - Adminstration of offset dimension info. - */ +/* + XY offset/refpoint/extent structure. +*/ class Dimension_cache { - bool valid_b_; - /** Is this element dimensionless?. - This is private to guarantee correctness of the cache - */ - bool empty_b_; - Interval dim_; - /** - The offset wrt. to the center of #parent_l_# - */ - Real offset_; - Graphical_element *elt_l_; - friend class Graphical_element; - + Interval *extent_; + Real *offset_; + Grob *parent_; void init (); -public: - /** The #offset_# is defined with regard to this graphical_element/ - dimension_cache. */ - - Dimension_cache * parent_l_; - Link_array dependencies_l_arr_; - Graphical_element *element_l () { return elt_l_; } - Real absolute_coordinate () const; - void invalidate (); - void invalidate_dependencies (); - - Dimension_cache(Dimension_cache const&); - Dimension_cache (); + void clear (); - Real relative_coordinate (Dimension_cache *d) const; - Dimension_cache*common_group (Dimension_cache const* s) const; - Dimension_cache*common_group (Link_array caches) const; - void set_empty (bool); - void translate (Real); - void set_offset (Real); - bool valid_b () const { return valid_b_; } - bool empty_b() const { return empty_b_; } - void set_dim (Interval); - Interval get_dim () const; -}; + friend class Grob; + Dimension_cache (Dimension_cache const &); + Dimension_cache & operator = (Dimension_cache const &d); + ~Dimension_cache (); + Dimension_cache (); +}; #endif /* DIMENSION_CACHE_HH */