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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
class LyXText;
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
|
2004-03-01 10:46:58 +00:00
|
|
|
class FontIterator : std::iterator<std::forward_iterator_tag, LyXFont>
|
|
|
|
{
|
|
|
|
public:
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
|
|
|
FontIterator(LyXText const & text, lyx::par_type pit, lyx::pos_type pos);
|
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
LyXFont 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
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
LyXFont * operator->();
|
|
|
|
|
|
|
|
private:
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
LyXText const & text_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
|
|
|
lyx::par_type pit_;
|
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
lyx::pos_type pos_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
LyXFont font_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
lyx::pos_type endspan_;
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
2004-03-01 10:46:58 +00:00
|
|
|
lyx::pos_type bodypos_;
|
|
|
|
};
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
#endif // FONTITERATOR_H
|