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.
|
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
|
|
|
|
Move BufferView cached pointer out of LyXText:
* 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
2006-10-30 12:45:33 +00:00
|
|
|
#include "buffer.h"
|
2004-03-25 09:16:36 +00:00
|
|
|
#include "lyxtext.h"
|
2004-03-01 10:46:58 +00:00
|
|
|
#include "paragraph.h"
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
Move BufferView cached pointer out of LyXText:
* 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
2006-10-30 12:45:33 +00:00
|
|
|
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)),
|
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
|
|
|
{}
|
|
|
|
|
|
|
|
|
2005-04-11 13:35:15 +00:00
|
|
|
LyXFont 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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont * FontIterator::operator->()
|
|
|
|
{
|
|
|
|
return &font_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FontIterator & FontIterator::operator++()
|
|
|
|
{
|
|
|
|
++pos_;
|
|
|
|
if (pos_ > endspan_ || pos_ == bodypos_) {
|
Move BufferView cached pointer out of LyXText:
* 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
2006-10-30 12:45:33 +00:00
|
|
|
font_ = text_.getFont(buffer_, par_, 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
|