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 "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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-10-05 10:11:42 +00:00
|
|
|
|
void CoordCache::clear()
|
2004-08-14 14:04:37 +00:00
|
|
|
|
{
|
2005-01-31 16:29:48 +00:00
|
|
|
|
BOOST_ASSERT(updating);
|
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
|
|
|
|
}
|
|
|
|
|
|
2005-01-31 16:29:48 +00:00
|
|
|
|
void CoordCache::startUpdating() {
|
|
|
|
|
BOOST_ASSERT(!updating);
|
|
|
|
|
updating = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CoordCache::doneUpdating() {
|
|
|
|
|
BOOST_ASSERT(updating);
|
|
|
|
|
updating = false;
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|