]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
rename Inset to InsetOld
[lyx.git] / src / lyxrow.h
index cbb72cec7cba4170977a119cdd6e64a7c45855c2..e7c1183958acb70fb816be65a10b42b937bee228 100644 (file)
@@ -24,7 +24,7 @@ public:
        ///
        Row();
        ///
-       Row(ParagraphList::iterator pit, lyx::pos_type po);
+       Row(ParagraphList::iterator pit, lyx::pos_type pos);
        ///
        void par(ParagraphList::iterator pit);
        ///
@@ -61,18 +61,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);
 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