]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.h
the DocIterator stuff
[lyx.git] / src / mathed / math_diminset.h
index e9e612450f09329efa2b29b05192db58da119c83..908b23f01aecb87c6dff6e84e7efc03973c5c965 100644 (file)
@@ -1,27 +1,52 @@
 // -*- C++ -*-
+/**
+ * \file math_diminset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_DIMINSET_H
 #define MATH_DIMINSET_H
 
 #include "math_inset.h"
+#include "dimension.h"
 
-/// things that need the dimension cache
+class PainterInfo;
 
+
+/// things that need the dimension cache
 class MathDimInset : public MathInset {
 public:
-       MathDimInset();
-       /// 
+       ///
+       MathDimInset(); 
+
+       ///
+       Dimension dimensions() const { return dim_; }
+       ///
        int ascent() const;
        ///
        int descent() const;
        ///
        int width() const;
 
+       ///
+       int xo() const { return xo_; }
+       ///
+       int yo() const { return yo_; }
+       ///
+       void setPosCache(PainterInfo const & pi, int x, int y) const;
+
 protected:
        ///
-       mutable int width_;
+       mutable Dimension dim_;
        ///
-       mutable int ascent_;
+       mutable int xo_;
        ///
-       mutable int descent_;
+       mutable int yo_;
 };
+
 #endif