2004-03-01 10:46:58 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file src/FontIterator.h
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*
|
2007-04-29 23:33:02 +00:00
|
|
|
* Calling Text::getFont is slow. While rebreaking we scan a
|
2004-03-01 10:46:58 +00:00
|
|
|
* paragraph from left to right calling getFont for every char. This
|
|
|
|
* simple class address this problem by hidding an optimization trick
|
|
|
|
* (not mine btw -AB): the font is reused in the whole font span. The
|
|
|
|
* class handles transparently the "hidden" (not part of the fontlist)
|
|
|
|
* label font (as getFont does).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FONTITERATOR_H
|
|
|
|
#define FONTITERATOR_H
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
#include "Font.h"
|
2004-03-01 10:46:58 +00:00
|
|
|
|
|
|
|
#include "support/types.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
|
|
|
class Buffer;
|
2007-04-29 23:33:02 +00:00
|
|
|
class Text;
|
2004-11-30 01:59:49 +00:00
|
|
|
class Paragraph;
|
2004-03-01 10:46:58 +00:00
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
class FontIterator : std::iterator<std::forward_iterator_tag, Font>
|
2004-03-01 10:46:58 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2007-04-29 23:33:02 +00:00
|
|
|
FontIterator(Buffer const & buffer, Text const & text,
|
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
|
|
|
Paragraph const & par, pos_type pos);
|
2004-04-03 08:37:12 +00:00
|
|
|
///
|
2007-04-29 18:17:15 +00:00
|
|
|
Font const & operator*() const;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
FontIterator & operator++();
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2007-04-29 18:17:15 +00:00
|
|
|
Font * operator->();
|
2004-03-01 10:46:58 +00:00
|
|
|
|
|
|
|
private:
|
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
|
|
|
///
|
|
|
|
Buffer const & buffer_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2007-04-29 23:33:02 +00:00
|
|
|
Text const & text_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2004-11-30 01:59:49 +00:00
|
|
|
Paragraph const & par_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
pos_type pos_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2007-04-29 18:17:15 +00:00
|
|
|
Font font_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
pos_type endspan_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
pos_type bodypos_;
|
2004-03-01 10:46:58 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
#endif // FONTITERATOR_H
|