]> git.lyx.org Git - lyx.git/blobdiff - src/FontIterator.h
Update cursor and scrollbar after resize.
[lyx.git] / src / FontIterator.h
index 5511c420e3c93784ce61272166a218e3ae48aa6f..ce5d9369cff598c20b870a38afb87f1ce164f5b6 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
 
 namespace lyx {
 
-class Buffer;
-class LyXText;
 class Paragraph;
+class TextMetrics;
 
 
-class FontIterator : std::iterator<std::forward_iterator_tag, Font>
+class FontIterator
 {
 public:
        ///
-       FontIterator(Buffer const & buffer, LyXText const & text,
-               Paragraph const & par, pos_type pos);
+       FontIterator(TextMetrics const & tm,
+               Paragraph const & par, pit_type pit, pos_type pos);
        ///
        Font const & operator*() const;
        ///
@@ -47,12 +46,12 @@ public:
 
 private:
        ///
-       Buffer const & buffer_;
-       ///
-       LyXText const & text_;
+       TextMetrics const & tm_;
        ///
        Paragraph const & par_;
        ///
+       pit_type pit_;
+       ///
        pos_type pos_;
        ///
        Font font_;