]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
More 'standard conformant blurb' nonsense.
[lyx.git] / src / lyxrow.h
index cbb72cec7cba4170977a119cdd6e64a7c45855c2..b1612974e8d60c6f28151fb3f7f68e609f5d6530 100644 (file)
@@ -15,7 +15,6 @@
 #ifndef LYXROW_H
 #define LYXROW_H
 
-#include "ParagraphList.h"
 #include "support/types.h"
 
 ///
@@ -24,13 +23,7 @@ public:
        ///
        Row();
        ///
-       Row(ParagraphList::iterator pit, lyx::pos_type po);
-       ///
-       void par(ParagraphList::iterator pit);
-       ///
-       ParagraphList::iterator par();
-       ///
-       ParagraphList::iterator par() const;
+       Row(lyx::pos_type pos);
        ///
        void pos(lyx::pos_type p);
        ///
@@ -61,18 +54,24 @@ public:
        unsigned int baseline() const;
        /// return true if this row is the start of a paragraph
        bool isParStart() const;
+       /// return the cached y position
+       unsigned int y() const;
+       /// cache the y position
+       void y(unsigned int newy);
+       /// current debugging only
+       void dump(const char * = "") const;
 private:
-       ///
-       ParagraphList::iterator pit_;
        ///
        lyx::pos_type pos_;
-       /** what is missing to a full row can be negative.
+       /** what is missing to a full row. Can be negative.
          Needed for hfills, flushright, block etc. */
        mutable int fill_;
        ///
        unsigned short height_;
        ///
        unsigned int width_;
+       /// cached y position
+       unsigned int y_;
        /// ascent from baseline including prelude space
        unsigned short ascent_of_text_;
        /// the top of the real text in the row