]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
mathed uglyfication
[lyx.git] / src / mathed / math_fracbase.C
index 9736d348fd368ea8437fd393a05bd27e0dc1bd54..ecc16c71d7ac66c0cccba9731adbe10f8952f9a4 100644 (file)
@@ -1,8 +1,17 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+/**
+ * \file math_fracbase.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_fracbase.h"
+#include "math_data.h"
 
 
 MathFracbaseInset::MathFracbaseInset()
@@ -10,63 +19,25 @@ MathFracbaseInset::MathFracbaseInset()
 {}
 
 
-bool MathFracbaseInset::idxRight(int &, int &) const
+bool MathFracbaseInset::idxRight(BufferView &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxLeft(int &, int &) const
+bool MathFracbaseInset::idxLeft(BufferView &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxUp(int & idx, int &) const
+bool MathFracbaseInset::idxUpDown(BufferView & bv, bool up, int targetx) const
 {
-       if (idx == 0)
+       CursorSlice & cur = cursorTip(bv);
+       MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
+       if (cur.idx() == target)
                return false;
-       idx = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxDown(int & idx, int &) const
-{
-       if (idx == 1)
-               return false;
-       idx = 1;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxFirstUp(int & idx, int & pos) const
-{
-       idx = 0;
-       pos = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxFirstDown(int & idx, int & pos) const
-{
-       idx = 1;
-       pos = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxLastUp(int & idx, int & pos) const
-{
-       idx = 0;
-       pos = cell(idx).size();
-       return true;
-}
-
-
-bool MathFracbaseInset::idxLastDown(int & idx, int & pos) const
-{
-       idx = 1;
-       pos = cell(idx).size();
+       cur.idx() = target;
+       cur.pos() = cell(target).x2pos(targetx);
        return true;
 }