2004-03-01 10:46:58 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file src/FontIterator.cpp
|
2004-03-01 10:46:58 +00:00
|
|
|
* 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.
|
2004-04-03 08:37:12 +00:00
|
|
|
*
|
2004-03-01 10:46:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "FontIterator.h"
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2007-09-02 21:48:49 +00:00
|
|
|
#include "TextMetrics.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Paragraph.h"
|
2004-03-01 10:46:58 +00:00
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2007-09-02 21:48:49 +00:00
|
|
|
FontIterator::FontIterator(TextMetrics const & tm,
|
2007-09-02 22:28:49 +00:00
|
|
|
Paragraph const & par, pit_type pit, pos_type pos)
|
|
|
|
: tm_(tm), par_(par), pit_(pit), pos_(pos),
|
2008-02-27 23:03:26 +00:00
|
|
|
font_(tm.displayFont(pit, pos)),
|
2005-07-18 12:13:32 +00:00
|
|
|
endspan_(par.fontSpan(pos).last),
|
2004-11-30 01:59:49 +00:00
|
|
|
bodypos_(par.beginOfBody())
|
2004-03-01 10:46:58 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const & FontIterator::operator*() const
|
2004-03-01 10:46:58 +00:00
|
|
|
{
|
2004-03-25 09:16:36 +00:00
|
|
|
return font_;
|
2004-03-01 10:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
Font * FontIterator::operator->()
|
2004-03-01 10:46:58 +00:00
|
|
|
{
|
|
|
|
return &font_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FontIterator & FontIterator::operator++()
|
|
|
|
{
|
|
|
|
++pos_;
|
|
|
|
if (pos_ > endspan_ || pos_ == bodypos_) {
|
2008-02-27 23:03:26 +00:00
|
|
|
font_ = tm_.displayFont(pit_, pos_);
|
2005-07-18 12:13:32 +00:00
|
|
|
endspan_ = par_.fontSpan(pos_).last;
|
2004-03-01 10:46:58 +00:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|