]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphMetrics.h
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[lyx.git] / src / ParagraphMetrics.h
index 42f6d8720472fb629b4ba0705080fa7696e7a4ee..69ac74df417aa567bef66a8a8e841b059ca1ee87 100644 (file)
@@ -57,13 +57,13 @@ public:
        Dimension const & dim() const { return dim_; }
        Dimension & dim() { return dim_; }
        /// total height of paragraph
-       unsigned int height() const { return dim_.height(); }
+       int height() const { return dim_.height(); }
        /// total width of paragraph, may differ from workwidth
-       unsigned int width() const { return dim_.width(); }
+       int width() const { return dim_.width(); }
        /// ascend of paragraph above baseline
-       unsigned int ascent() const { return dim_.ascent(); }
+       int ascent() const { return dim_.ascent(); }
        /// descend of paragraph below baseline
-       unsigned int descent() const { return dim_.descent(); }
+       int descent() const { return dim_.descent(); }
        /// Text updates the rows using this access point
        RowList & rows() { return rows_; }
        /// The painter and others use this
@@ -82,7 +82,14 @@ public:
        /// 
        void computeRowSignature(Row &, BufferParams const & bparams);
 
+       ///
+       int position() const { return position_; }
+       void setPosition(int position);
+
+
 private:
+       ///
+       int position_;
        ///
        mutable RowList rows_;
        /// cached dimensions of paragraph