mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 19:14:51 +00:00
99d1627a47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
535 B
C
32 lines
535 B
C
|
|
#include "math_fracbase.h"
|
|
|
|
|
|
MathFracbaseInset::MathFracbaseInset()
|
|
: MathNestInset(2)
|
|
{}
|
|
|
|
|
|
bool MathFracbaseInset::idxRight(idx_type &, pos_type &) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
bool MathFracbaseInset::idxUpDown(idx_type & idx, pos_type & pos, bool up,
|
|
int targetx) const
|
|
{
|
|
MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
|
|
if (idx == target)
|
|
return false;
|
|
idx = target;
|
|
pos = cell(idx).x2pos(targetx);
|
|
return true;
|
|
}
|