mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +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
58 lines
1009 B
C
58 lines
1009 B
C
/**
|
|
* \file src/FontIterator.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alfredo Braunstein
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "FontIterator.h"
|
|
|
|
#include "buffer.h"
|
|
#include "lyxtext.h"
|
|
#include "paragraph.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
FontIterator::FontIterator(Buffer const & buffer, LyXText const & text,
|
|
Paragraph const & par, pos_type pos)
|
|
: buffer_(buffer), text_(text), par_(par), pos_(pos),
|
|
font_(text.getFont(buffer, par, pos)),
|
|
endspan_(par.fontSpan(pos).last),
|
|
bodypos_(par.beginOfBody())
|
|
{}
|
|
|
|
|
|
LyXFont const & FontIterator::operator*() const
|
|
{
|
|
return font_;
|
|
}
|
|
|
|
|
|
LyXFont * FontIterator::operator->()
|
|
{
|
|
return &font_;
|
|
}
|
|
|
|
|
|
FontIterator & FontIterator::operator++()
|
|
{
|
|
++pos_;
|
|
if (pos_ > endspan_ || pos_ == bodypos_) {
|
|
font_ = text_.getFont(buffer_, par_, pos_);
|
|
endspan_ = par_.fontSpan(pos_).last;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|