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 "mathed/math_data.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
|
|
|
|
|
|
|
CoordCache theCoords;
|
2005-01-12 10:30:46 +00:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void lyxaborter(int x, int y)
|
|
|
|
{
|
2005-01-12 10:30:46 +00:00
|
|
|
lyxerr << "abort on x: " << x << " y: " << y << std::endl;
|
2004-11-30 01:59:49 +00:00
|
|
|
BOOST_ASSERT(false);
|
2004-08-14 14:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
2004-08-14 14:04:37 +00:00
|
|
|
}
|
|
|
|
|
2004-11-30 01:59:49 +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;
|
|
|
|
}
|