mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
cbf29c8fdc
'native' \stackrel support remove MathInset::name_ member (sizeof(MathInset) == 20 on IA32 now); git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2457 a592a061-630c-0410-9148-cb99ea01b6c8
73 lines
961 B
C
73 lines
961 B
C
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_fracbase.h"
|
|
|
|
|
|
MathFracbaseInset::MathFracbaseInset()
|
|
: MathNestInset(2)
|
|
{}
|
|
|
|
|
|
bool MathFracbaseInset::idxRight(int &, int &) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
bool MathFracbaseInset::idxLeft(int &, int &) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
bool MathFracbaseInset::idxUp(int & idx, int &) const
|
|
{
|
|
if (idx == 0)
|
|
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();
|
|
return true;
|
|
}
|