]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_undersetinset.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_undersetinset.C
index 03441d8f97458a504dff89c36dc4d5bf7d971259..74b8f0494d1b092e0557417fc84b8e2931867221 100644 (file)
@@ -1,19 +1,28 @@
+/**
+ * \file math_undersetinset.C
+ * 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.
+ */
+
+#include <config.h>
 
 #include "math_undersetinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_support.h"
-
+#include "cursor.h"
 
 using std::max;
+using std::auto_ptr;
 
 
-MathUndersetInset::MathUndersetInset()
-{}
 
-
-InsetBase * MathUndersetInset::clone() const
+auto_ptr<InsetBase> MathUndersetInset::clone() const
 {
-       return new MathUndersetInset(*this);
+       return auto_ptr<InsetBase>(new MathUndersetInset(*this));
 }
 
 
@@ -39,6 +48,33 @@ void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
 }
 
 
+bool MathUndersetInset::idxFirst(LCursor & cur) const
+{
+       cur.idx() = 1;
+       cur.pos() = 0;
+       return true;
+}
+
+
+bool MathUndersetInset::idxLast(LCursor & cur) const
+{
+       cur.idx() = 1;
+       cur.pos() = cur.lastpos();
+       return true;
+}
+
+
+bool MathUndersetInset::idxUpDown(LCursor & cur, bool up) const
+{
+       idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
+       if (cur.idx() == target)
+               return false;
+       cur.idx() = target;
+       cur.pos() = cur.cell().x2pos(cur.x_target());
+       return true;
+}
+
+
 void MathUndersetInset::write(WriteStream & os) const
 {
        os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';