]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathRow.h
typo
[lyx.git] / src / mathed / MathRow.h
index 6d1a410372b9582b7abeba5683d0d2253b45eedc..9efab92e8535c03c52c73ddab6ffd3ad5200a10a 100644 (file)
 #ifndef MATH_ROW_H
 #define MATH_ROW_H
 
-#include "InsetMath.h"
 #include "MathClass.h"
 
 #include "ColorCode.h"
+#include "Dimension.h"
 
 #include "support/docstring.h"
 
 namespace lyx {
 
 class BufferView;
-class Dimension;
+class InsetMath;
+class MathData;
 class MetricsInfo;
 class PainterInfo;
 
-class InsetMath;
-class MathData;
+enum class marker_type : int;
 
 /*
  * While for editing purpose it is important that macros are counted
@@ -68,7 +68,7 @@ public:
                /// count whether the current mathdata is nested in macro(s)
                int macro_nesting;
                /// Marker type
-               InsetMath::marker_type marker;
+               marker_type marker;
 
                /// When type is INSET
                /// the math inset (also for BEGIN and END)
@@ -86,7 +86,9 @@ public:
        };
 
        ///
-       MathRow(int asc = 0, int des = 0) : caret_ascent(asc), caret_descent(des) {};
+       MathRow() {}
+       ///
+       MathRow(Dimension const & dim) : caret_dim(dim) {}
        ///
        typedef std::vector<Element> Elements;
        ///
@@ -119,7 +121,7 @@ public:
        int kerning(BufferView const *) const;
 
        /// useful when the caret visits this cell
-       int caret_ascent, caret_descent;
+       Dimension caret_dim;
 
 
 private: