]> git.lyx.org Git - lyx.git/blobdiff - src/FontIterator.h
[the "translation" patch series] Part 2: fixing document label translations
[lyx.git] / src / FontIterator.h
index 497915cea423c960654f5c0c10e70bf953f237d6..04d05dde7aa69d1df74f65476d9254ae8ea2268a 100644 (file)
@@ -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
 #ifndef FONTITERATOR_H
 #define FONTITERATOR_H
 
-#include "lyxfont.h"
+#include "Font.h"
 
 #include "support/types.h"
 
 
 namespace lyx {
 
-class LyXText;
+class Buffer;
+class Text;
 class Paragraph;
 
 
-class FontIterator : std::iterator<std::forward_iterator_tag, LyXFont>
+class FontIterator : std::iterator<std::forward_iterator_tag, Font>
 {
 public:
        ///
-       FontIterator(LyXText const & text, Paragraph const & par, pos_type pos);
+       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:
        ///
-       LyXText const & text_;
+       Buffer const & buffer_;
+       ///
+       Text const & text_;
        ///
        Paragraph const & par_;
        ///
        pos_type pos_;
        ///
-       LyXFont font_;
+       Font font_;
        ///
        pos_type endspan_;
        ///