lyx_mirror/src/mathed/math_fracbase.C

44 lines
831 B
C++
Raw Normal View History

/**
* \file math_fracbase.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Andr<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "math_fracbase.h"
#include "math_data.h"
MathFracbaseInset::MathFracbaseInset()
: MathNestInset(2)
{}
bool MathFracbaseInset::idxRight(BufferView &) const
{
return false;
}
bool MathFracbaseInset::idxLeft(BufferView &) const
{
return false;
}
bool MathFracbaseInset::idxUpDown(BufferView & bv, bool up, int targetx) const
{
CursorSlice & cur = cursorTip(bv);
MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
if (cur.idx() == target)
return false;
cur.idx() = target;
cur.pos() = cell(target).x2pos(targetx);
return true;
}