mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
eb651c3d61
* 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
69 lines
1.3 KiB
C++
69 lines
1.3 KiB
C++
// -*- 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.
|
|
*
|
|
*
|
|
* Calling LyXText::getFont is slow. While rebreaking we scan a
|
|
* 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
|
|
|
|
#include "lyxfont.h"
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Buffer;
|
|
class LyXText;
|
|
class Paragraph;
|
|
|
|
|
|
class FontIterator : std::iterator<std::forward_iterator_tag, LyXFont>
|
|
{
|
|
public:
|
|
///
|
|
FontIterator(Buffer const & buffer, LyXText const & text,
|
|
Paragraph const & par, pos_type pos);
|
|
///
|
|
LyXFont const & operator*() const;
|
|
///
|
|
FontIterator & operator++();
|
|
///
|
|
LyXFont * operator->();
|
|
|
|
private:
|
|
///
|
|
Buffer const & buffer_;
|
|
///
|
|
LyXText const & text_;
|
|
///
|
|
Paragraph const & par_;
|
|
///
|
|
pos_type pos_;
|
|
///
|
|
LyXFont font_;
|
|
///
|
|
pos_type endspan_;
|
|
///
|
|
pos_type bodypos_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // FONTITERATOR_H
|