2005-04-26 10:30:24 +00:00
|
|
|
|
/* \file coordcache.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2004-08-14 14:04:37 +00:00
|
|
|
|
|
|
|
|
|
#include "coordcache.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
|
|
|
|
|
#include "insets/insetbase.h"
|
|
|
|
|
|
|
|
|
|
#include <boost/assert.hpp>
|
2004-08-14 14:04:37 +00:00
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
|
|
2006-10-15 22:32:56 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2004-08-14 14:04:37 +00:00
|
|
|
|
// just a helper to be able to set a breakpoint
|
|
|
|
|
void lyxbreaker(void const * data, const char * hint, int size)
|
|
|
|
|
{
|
2004-10-05 10:11:42 +00:00
|
|
|
|
lyxerr << "break on pointer: " << data << " hint: " << hint
|
2004-08-14 14:04:37 +00:00
|
|
|
|
<< " size: " << size << std::endl;
|
2004-11-30 01:59:49 +00:00
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-10-05 10:11:42 +00:00
|
|
|
|
void CoordCache::clear()
|
2004-08-14 14:04:37 +00:00
|
|
|
|
{
|
|
|
|
|
arrays_.clear();
|
|
|
|
|
insets_.clear();
|
2004-11-30 01:59:49 +00:00
|
|
|
|
pars_.clear();
|
2005-07-18 12:13:32 +00:00
|
|
|
|
slices0_.clear();
|
|
|
|
|
slices1_.clear();
|
2004-08-14 14:04:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-07-16 17:54:25 +00:00
|
|
|
|
|
2005-01-12 10:30:46 +00:00
|
|
|
|
Point CoordCache::get(LyXText const * text, lyx::pit_type pit)
|
2004-11-30 01:59:49 +00:00
|
|
|
|
{
|
|
|
|
|
ParPosCache::iterator const it = pars_.find(text);
|
|
|
|
|
BOOST_ASSERT(it != pars_.end());
|
|
|
|
|
InnerParPosCache::iterator const posit = it->second.find(pit);
|
|
|
|
|
BOOST_ASSERT(posit != it->second.end());
|
|
|
|
|
return posit->second;
|
|
|
|
|
}
|
2006-10-15 22:32:56 +00:00
|
|
|
|
|
2006-10-20 20:57:21 +00:00
|
|
|
|
void
|
|
|
|
|
CoordCache::dump() const {
|
|
|
|
|
lyxerr << "ParPosCache contains:" << std::endl;
|
|
|
|
|
for (ParPosCache::const_iterator i = getParPos().begin(); i != getParPos().end(); ++i) {
|
|
|
|
|
LyXText const * lt = (*i).first;
|
|
|
|
|
InnerParPosCache const & cache = (*i).second;
|
|
|
|
|
lyxerr << "LyXText:" << lt << std::endl;
|
|
|
|
|
for (InnerParPosCache::const_iterator j = cache.begin(); j != cache.end(); ++j) {
|
|
|
|
|
pit_type pit = (*j).first;
|
|
|
|
|
Paragraph const & par = lt->getPar(pit);
|
|
|
|
|
Point p = (*j).second;
|
|
|
|
|
lyxerr << "Paragraph " << pit << ": \"";
|
|
|
|
|
for (int k = 0; k < std::min(10, par.size()); ++k) {
|
|
|
|
|
lyxerr << lyx::to_utf8(docstring(1,par.getChar(k)));
|
|
|
|
|
}
|
|
|
|
|
lyxerr << "\" has point " << p.x_ << "," << p.y_ << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-15 22:32:56 +00:00
|
|
|
|
} // namespace lyx
|