mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
a8cd9a4b8f
in header files when possible. Adjust .cpp files. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21358 a592a061-630c-0410-9148-cb99ea01b6c8
68 lines
1.2 KiB
C++
68 lines
1.2 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 Text::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 "Font.h"
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Paragraph;
|
|
class TextMetrics;
|
|
|
|
|
|
class FontIterator
|
|
{
|
|
public:
|
|
///
|
|
FontIterator(TextMetrics const & tm,
|
|
Paragraph const & par, pit_type pit, pos_type pos);
|
|
///
|
|
Font const & operator*() const;
|
|
///
|
|
FontIterator & operator++();
|
|
///
|
|
Font * operator->();
|
|
|
|
private:
|
|
///
|
|
TextMetrics const & tm_;
|
|
///
|
|
Paragraph const & par_;
|
|
///
|
|
pit_type pit_;
|
|
///
|
|
pos_type pos_;
|
|
///
|
|
Font font_;
|
|
///
|
|
pos_type endspan_;
|
|
///
|
|
pos_type bodypos_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // FONTITERATOR_H
|