X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fdimension-cache.hh;h=d5433d59629a84c10778366146d49ef8c07ceb76;hb=c39d188d28fdc84cef8cbaea7b8d6e2fb718c30f;hp=00480e9fcb8b1a88cda016e05076e33a92cb57db;hpb=31a6650e2b2a5c1cae3237ee47b80cd43d084d53;p=lilypond.git diff --git a/lily/include/dimension-cache.hh b/lily/include/dimension-cache.hh index 00480e9fcb..d5433d5962 100644 --- a/lily/include/dimension-cache.hh +++ b/lily/include/dimension-cache.hh @@ -1,43 +1,44 @@ /* - dimension-cache.hh -- declare Dimension_cache + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1998--2014 Han-Wen Nienhuys - (c) 1998--2005 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 "lily-proto.hh" -#include "parray.hh" -#include "dimension-cache-callback.hh" -#include "lily-guile.hh" -/** - Adminstration of offset dimension info. +/* + XY offset/refpoint/extent structure. */ class Dimension_cache { - /** - The offset wrt. to the center of #parent_# - */ Interval *extent_; - Real offset_; - SCM offset_callbacks_; - - char offsets_left_; - - /** - What to call to find extent. Nil means empty. - */ + Real *offset_; Grob *parent_; + void init (); + void clear (); + friend class Grob; - + Dimension_cache (Dimension_cache const &); + Dimension_cache & operator = (Dimension_cache const &d); ~Dimension_cache (); Dimension_cache (); - void init (); }; #endif /* DIMENSION_CACHE_HH */