mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
e0d54dd3b4
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18103 a592a061-630c-0410-9148-cb99ea01b6c8
58 lines
999 B
C++
58 lines
999 B
C++
/**
|
|
* \file src/FontIterator.cpp
|
|
* 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 "Text.h"
|
|
#include "Paragraph.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
FontIterator::FontIterator(Buffer const & buffer, Text 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())
|
|
{}
|
|
|
|
|
|
Font const & FontIterator::operator*() const
|
|
{
|
|
return font_;
|
|
}
|
|
|
|
|
|
Font * 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
|