mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
fe87869cb7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4289 a592a061-630c-0410-9148-cb99ea01b6c8
203 lines
3.1 KiB
C
203 lines
3.1 KiB
C
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_nestinset.h"
|
|
#include "math_cursor.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "debug.h"
|
|
|
|
|
|
MathNestInset::MathNestInset(idx_type nargs)
|
|
: MathDimInset(), cells_(nargs), lock_(false)
|
|
{}
|
|
|
|
|
|
MathInset::idx_type MathNestInset::nargs() const
|
|
{
|
|
return cells_.size();
|
|
}
|
|
|
|
|
|
MathXArray & MathNestInset::xcell(idx_type i)
|
|
{
|
|
return cells_[i];
|
|
}
|
|
|
|
|
|
MathXArray const & MathNestInset::xcell(idx_type i) const
|
|
{
|
|
return cells_[i];
|
|
}
|
|
|
|
|
|
MathArray & MathNestInset::cell(idx_type i)
|
|
{
|
|
return cells_[i].data_;
|
|
}
|
|
|
|
|
|
MathArray const & MathNestInset::cell(idx_type i) const
|
|
{
|
|
return cells_[i].data_;
|
|
}
|
|
|
|
|
|
void MathNestInset::substitute(MathMacro const & m)
|
|
{
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
cell(i).substitute(m);
|
|
}
|
|
|
|
|
|
void MathNestInset::metrics(MathMetricsInfo const & mi) const
|
|
{
|
|
MathMetricsInfo m = mi;
|
|
m.inset = this;
|
|
for (idx_type i = 0; i < nargs(); ++i) {
|
|
m.idx = i;
|
|
xcell(i).metrics(m);
|
|
}
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxNext(idx_type & idx, pos_type & pos) const
|
|
{
|
|
if (idx + 1 >= nargs())
|
|
return false;
|
|
++idx;
|
|
pos = 0;
|
|
return true;
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxRight(idx_type & idx, pos_type & pos) const
|
|
{
|
|
return idxNext(idx, pos);
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxPrev(idx_type & idx, pos_type & pos) const
|
|
{
|
|
if (idx == 0)
|
|
return false;
|
|
--idx;
|
|
pos = cell(idx).size();
|
|
return true;
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxLeft(idx_type & idx, pos_type & pos) const
|
|
{
|
|
return idxPrev(idx, pos);
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxFirst(idx_type & i, pos_type & pos) const
|
|
{
|
|
if (nargs() == 0)
|
|
return false;
|
|
i = 0;
|
|
pos = 0;
|
|
return true;
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxLast(idx_type & i, pos_type & pos) const
|
|
{
|
|
if (nargs() == 0)
|
|
return false;
|
|
i = nargs() - 1;
|
|
pos = cell(i).size();
|
|
return true;
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxHome(idx_type & /* idx */, pos_type & pos) const
|
|
{
|
|
if (pos == 0)
|
|
return false;
|
|
pos = 0;
|
|
return true;
|
|
}
|
|
|
|
|
|
bool MathNestInset::idxEnd(idx_type & idx, pos_type & pos) const
|
|
{
|
|
pos_type n = cell(idx).size();
|
|
if (pos == n)
|
|
return false;
|
|
pos = n;
|
|
return true;
|
|
}
|
|
|
|
|
|
void MathNestInset::dump() const
|
|
{
|
|
WriteStream os(lyxerr);
|
|
os << "---------------------------------------------\n";
|
|
write(os);
|
|
os << "\n";
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
os << cell(i) << "\n";
|
|
os << "---------------------------------------------\n";
|
|
}
|
|
|
|
|
|
void MathNestInset::validate(LaTeXFeatures & features) const
|
|
{
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
cell(i).validate(features);
|
|
}
|
|
|
|
|
|
bool MathNestInset::match(MathInset * p) const
|
|
{
|
|
if (nargs() != p->nargs())
|
|
return false;
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
if (!cell(i).match(p->cell(i)))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
|
|
void MathNestInset::replace(ReplaceData & rep)
|
|
{
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
cell(i).replace(rep);
|
|
}
|
|
|
|
|
|
bool MathNestInset::contains(MathArray const & ar)
|
|
{
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
if (cell(i).contains(ar))
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
|
|
bool MathNestInset::editing() const
|
|
{
|
|
return mathcursor && mathcursor->isInside(this);
|
|
}
|
|
|
|
|
|
bool MathNestInset::lock() const
|
|
{
|
|
return lock_;
|
|
}
|
|
|
|
|
|
void MathNestInset::lock(bool l)
|
|
{
|
|
lock_ = l;
|
|
}
|
|
|
|
|
|
bool MathNestInset::isActive() const
|
|
{
|
|
return !lock_ && nargs() > 0;
|
|
}
|