X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFontIterator.h;h=04d05dde7aa69d1df74f65476d9254ae8ea2268a;hb=608603a31d6ae4e3d08ae4e9c18a11d9e705dcf4;hp=87686bdee16994a5d306f0b8bf2ec6598600a315;hpb=eb651c3d6100eac2d3ec6d176234a0f9512671b9;p=lyx.git diff --git a/src/FontIterator.h b/src/FontIterator.h index 87686bdee1..04d05dde7a 100644 --- a/src/FontIterator.h +++ b/src/FontIterator.h @@ -9,7 +9,7 @@ * Full author contact details are available in file CREDITS. * * - * Calling LyXText::getFont is slow. While rebreaking we scan a + * 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 @@ -20,7 +20,7 @@ #ifndef FONTITERATOR_H #define FONTITERATOR_H -#include "lyxfont.h" +#include "Font.h" #include "support/types.h" @@ -28,34 +28,34 @@ namespace lyx { class Buffer; -class LyXText; +class Text; class Paragraph; -class FontIterator : std::iterator +class FontIterator : std::iterator { public: /// - FontIterator(Buffer const & buffer, LyXText const & text, + FontIterator(Buffer const & buffer, Text const & text, Paragraph const & par, pos_type pos); /// - LyXFont const & operator*() const; + Font const & operator*() const; /// FontIterator & operator++(); /// - LyXFont * operator->(); + Font * operator->(); private: /// Buffer const & buffer_; /// - LyXText const & text_; + Text const & text_; /// Paragraph const & par_; /// pos_type pos_; /// - LyXFont font_; + Font font_; /// pos_type endspan_; ///