mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2ea432bab1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20015 a592a061-630c-0410-9148-cb99ea01b6c8
57 lines
965 B
C++
57 lines
965 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 "TextMetrics.h"
|
|
#include "Paragraph.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
FontIterator::FontIterator(TextMetrics const & tm,
|
|
Paragraph const & par, pit_type pit, pos_type pos)
|
|
: tm_(tm), par_(par), pit_(pit), pos_(pos),
|
|
font_(tm.getDisplayFont(pit, 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_ = tm_.getDisplayFont(pit_, pos_);
|
|
endspan_ = par_.fontSpan(pos_).last;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|