2004-03-01 10:46:58 +00:00
|
|
|
/**
|
|
|
|
* \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"
|
2004-03-25 09:16:36 +00:00
|
|
|
|
|
|
|
#include "lyxtext.h"
|
2004-03-01 10:46:58 +00:00
|
|
|
#include "paragraph.h"
|
|
|
|
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
FontIterator::FontIterator(LyXText const & text, lyx::par_type pit,
|
2004-03-01 10:46:58 +00:00
|
|
|
lyx::pos_type pos)
|
|
|
|
: text_(text), pit_(pit), pos_(pos),
|
|
|
|
font_(text.getFont(pit, pos)),
|
2004-03-25 09:16:36 +00:00
|
|
|
endspan_(text.getPar(pit).getEndPosOfFontSpan(pos)),
|
|
|
|
bodypos_(text.getPar(pit).beginOfBody())
|
2004-03-01 10:46:58 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont FontIterator::operator*() const
|
|
|
|
{
|
2004-03-25 09:16:36 +00:00
|
|
|
return font_;
|
2004-03-01 10:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont * FontIterator::operator->()
|
|
|
|
{
|
|
|
|
return &font_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FontIterator & FontIterator::operator++()
|
|
|
|
{
|
|
|
|
++pos_;
|
|
|
|
if (pos_ > endspan_ || pos_ == bodypos_) {
|
|
|
|
font_ = text_.getFont(pit_, pos_);
|
2004-03-25 09:16:36 +00:00
|
|
|
endspan_ = text_.getPar(pit_).getEndPosOfFontSpan(pos_);
|
2004-03-01 10:46:58 +00:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|