]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphMetrics.h
BufferParams.cpp: change the package loading to:
[lyx.git] / src / ParagraphMetrics.h
index 5cf587f788820ee430d7cf87dece138fc3a34818..63c9edb76eee13678a0559ce0fb81d413defd26b 100644 (file)
@@ -21,6 +21,8 @@
 #include "Paragraph.h"
 #include "Row.h"
 
+#include <map>
+
 namespace lyx {
 
 /**
@@ -82,13 +84,28 @@ public:
        /// 
        void computeRowSignature(Row &, BufferParams const & bparams);
 
+       ///
+       int position() const { return position_; }
+       void setPosition(int position);
+
+       ///
+       Dimension const & insetDimension(Inset const * inset) const;
+       ///
+       void setInsetDimension(Inset const *, Dimension const & dim);
+
 private:
+       ///
+       int position_;
        ///
        mutable RowList rows_;
        /// cached dimensions of paragraph
        Dimension dim_;
        ///
        Paragraph const * par_;
+       
+       typedef std::map<Inset const *, Dimension> InsetDims;
+       ///
+       InsetDims inset_dims_;
 };
 
 } // namespace lyx