mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
eb651c3d61
* LyXText - bv(), bv_owner, : deleted. - These methods now need a (Buffer const &) argument: getFont(), applyOuterFont(), getLayoutFont(), getLabelFont(), setCharFont(), setLayout(), singleWidth(), leftMargin(), rightMargin(), computeRowMetrics(), isMainText(), spacing(), isRTL(), cursorX(), rowBreakPoint(), setRowWidth(), labelFill(), labelEnd(). - These methods now need a (BufferView const &) argument and are propably candidates for future removal when 1.6 is opened for development: redoParagraph(), x2pos(), getRowNearY(), getColumnNearX(), checkInsetHit(), setHeightOfRow(). - recUndo(): now need a LCursor argument. * CoordCache::get(LyXText const *, pit_type): - now const. - use const_iterator instead of iterator. * FontIterator: - add (Buffer const &) argument to ctor - buffer_: new const reference to applicable BufferView. * InsetBase - xo(), yo(), covers() and neverIndent() are now const. * InsetText::setViewCache(): deleted All other changes are due to the LyXText and InsetBase API changes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15618 a592a061-630c-0410-9148-cb99ea01b6c8
89 lines
2.3 KiB
C
89 lines
2.3 KiB
C
/* \file coordcache.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "coordcache.h"
|
|
#include "debug.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "insets/insetbase.h"
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
Point::Point(int x, int y)
|
|
: x_(x), y_(y)
|
|
{
|
|
BOOST_ASSERT(x > -1000000);
|
|
BOOST_ASSERT(x < 1000000);
|
|
BOOST_ASSERT(y > -1000000);
|
|
BOOST_ASSERT(y < 1000000);
|
|
}
|
|
|
|
// just a helper to be able to set a breakpoint
|
|
void lyxbreaker(void const * data, const char * hint, int size)
|
|
{
|
|
lyxerr << "break on pointer: " << data << " hint: " << hint
|
|
<< " size: " << size << std::endl;
|
|
BOOST_ASSERT(false);
|
|
}
|
|
|
|
|
|
void CoordCache::clear()
|
|
{
|
|
arrays_.clear();
|
|
insets_.clear();
|
|
pars_.clear();
|
|
slices0_.clear();
|
|
slices1_.clear();
|
|
}
|
|
|
|
|
|
Point CoordCache::get(LyXText const * text, pit_type pit) const
|
|
{
|
|
ParPosCache::const_iterator const it = pars_.find(text);
|
|
BOOST_ASSERT(it != pars_.end());
|
|
InnerParPosCache::const_iterator const posit = it->second.find(pit);
|
|
BOOST_ASSERT(posit != it->second.end());
|
|
return posit->second;
|
|
}
|
|
|
|
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(static_cast<lyx::pos_type>(10), par.size()); ++k) {
|
|
lyxerr << to_utf8(docstring(1,par.getChar(k)));
|
|
}
|
|
lyxerr << "\" has point " << p.x_ << "," << p.y_ << std::endl;
|
|
}
|
|
}
|
|
|
|
lyxerr << "InsetCache contains:" << std::endl;
|
|
for (CoordCacheBase<InsetBase>::cache_type::const_iterator i = getInsets().getData().begin(); i != getInsets().getData().end(); ++i) {
|
|
InsetBase const * inset = (*i).first;
|
|
Point p = (*i).second;
|
|
lyxerr << "Inset " << inset << "(" << to_utf8(inset->getInsetName()) << ") has point " << p.x_ << "," << p.y_ << std::endl;
|
|
}
|
|
}
|
|
|
|
} // namespace lyx
|