2001-08-03 17:10:22 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_nestinset.h"
|
2002-02-11 15:55:13 +00:00
|
|
|
#include "math_cursor.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2002-06-27 18:12:50 +00:00
|
|
|
#include "formulabase.h"
|
2002-07-05 21:24:15 +00:00
|
|
|
#include "BufferView.h"
|
2001-08-03 17:10:22 +00:00
|
|
|
#include "debug.h"
|
2002-06-14 10:48:27 +00:00
|
|
|
#include "frontends/Painter.h"
|
2002-07-05 21:24:15 +00:00
|
|
|
#include "graphics/PreviewLoader.h"
|
|
|
|
#include "graphics/Previews.h"
|
2001-08-03 17:10:22 +00:00
|
|
|
|
2002-07-28 18:13:51 +00:00
|
|
|
using std::vector;
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathNestInset::MathNestInset(idx_type nargs)
|
2002-05-30 07:09:54 +00:00
|
|
|
: MathDimInset(), cells_(nargs), lock_(false)
|
2001-08-08 17:26:30 +00:00
|
|
|
{}
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathInset::idx_type MathNestInset::nargs() const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
return cells_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathXArray & MathNestInset::xcell(idx_type i)
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
return cells_[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathXArray const & MathNestInset::xcell(idx_type i) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
return cells_[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathArray & MathNestInset::cell(idx_type i)
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
2002-07-08 14:57:12 +00:00
|
|
|
return cells_[i].data();
|
2001-08-03 17:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathArray const & MathNestInset::cell(idx_type i) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
2002-07-08 14:57:12 +00:00
|
|
|
return cells_[i].data();
|
2001-08-03 17:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-16 18:22:45 +00:00
|
|
|
void MathNestInset::getPos(idx_type idx, pos_type pos, int & x, int & y) const
|
|
|
|
{
|
2002-07-26 13:13:20 +00:00
|
|
|
MathXArray const & ar = xcell(idx);
|
|
|
|
x = ar.xo() + ar.pos2x(pos);
|
|
|
|
y = ar.yo();
|
2002-07-16 18:22:45 +00:00
|
|
|
// move cursor visually into empty cells ("blue rectangles");
|
2002-07-26 13:13:20 +00:00
|
|
|
if (cell(idx).empty())
|
2002-07-16 18:22:45 +00:00
|
|
|
x += 2;
|
|
|
|
}
|
|
|
|
|
2001-09-11 15:46:51 +00:00
|
|
|
void MathNestInset::substitute(MathMacro const & m)
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
2001-09-26 16:52:34 +00:00
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
2001-09-11 15:46:51 +00:00
|
|
|
cell(i).substitute(m);
|
2001-08-03 17:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
void MathNestInset::metrics(MathMetricsInfo const & mi) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
2002-02-11 08:19:02 +00:00
|
|
|
MathMetricsInfo m = mi;
|
2002-07-10 15:51:28 +00:00
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
2002-02-11 08:19:02 +00:00
|
|
|
xcell(i).metrics(m);
|
2001-08-03 17:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-11 11:27:24 +00:00
|
|
|
void MathNestInset::metricsMarkers(int frame) const
|
2002-07-11 10:20:31 +00:00
|
|
|
{
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.d += frame;
|
|
|
|
dim_.w += 2 * frame;
|
2002-07-11 10:20:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-11 11:27:24 +00:00
|
|
|
void MathNestInset::metricsMarkers2(int frame) const
|
2002-07-11 10:20:31 +00:00
|
|
|
{
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.a += frame;
|
|
|
|
dim_.d += frame;
|
|
|
|
dim_.w += 2 * frame;
|
2002-07-11 10:20:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxNext(idx_type & idx, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
if (idx + 1 >= nargs())
|
|
|
|
return false;
|
|
|
|
++idx;
|
|
|
|
pos = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxRight(idx_type & idx, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
return idxNext(idx, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxPrev(idx_type & idx, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
if (idx == 0)
|
|
|
|
return false;
|
|
|
|
--idx;
|
|
|
|
pos = cell(idx).size();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxLeft(idx_type & idx, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
return idxPrev(idx, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxFirst(idx_type & i, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
if (nargs() == 0)
|
|
|
|
return false;
|
|
|
|
i = 0;
|
|
|
|
pos = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxLast(idx_type & i, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
if (nargs() == 0)
|
|
|
|
return false;
|
|
|
|
i = nargs() - 1;
|
|
|
|
pos = cell(i).size();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxHome(idx_type & /* idx */, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
|
|
|
if (pos == 0)
|
|
|
|
return false;
|
|
|
|
pos = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathNestInset::idxEnd(idx_type & idx, pos_type & pos) const
|
2001-08-03 17:10:22 +00:00
|
|
|
{
|
2001-09-26 16:52:34 +00:00
|
|
|
pos_type n = cell(idx).size();
|
2001-09-14 14:05:57 +00:00
|
|
|
if (pos == n)
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-09-14 14:05:57 +00:00
|
|
|
pos = n;
|
2001-08-03 17:10:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathNestInset::dump() const
|
|
|
|
{
|
2001-11-09 08:35:57 +00:00
|
|
|
WriteStream os(lyxerr);
|
2001-10-19 11:25:48 +00:00
|
|
|
os << "---------------------------------------------\n";
|
|
|
|
write(os);
|
|
|
|
os << "\n";
|
2001-09-26 16:52:34 +00:00
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
2001-10-19 11:25:48 +00:00
|
|
|
os << cell(i) << "\n";
|
|
|
|
os << "---------------------------------------------\n";
|
2001-08-03 17:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
//void MathNestInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
|
|
void MathNestInset::draw(MathPainterInfo &, int, int) const
|
2002-06-14 10:48:27 +00:00
|
|
|
{
|
2002-06-18 15:44:30 +00:00
|
|
|
#if 0
|
2002-06-14 12:24:28 +00:00
|
|
|
if (lock_)
|
2002-06-14 10:48:27 +00:00
|
|
|
pi.pain.fillRectangle(x, y - ascent(), width(), height(),
|
|
|
|
LColor::mathlockbg);
|
2002-06-18 15:44:30 +00:00
|
|
|
#endif
|
2002-06-14 10:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-26 17:23:44 +00:00
|
|
|
void MathNestInset::drawSelection(MathPainterInfo & pi,
|
|
|
|
idx_type idx1, pos_type pos1, idx_type idx2, pos_type pos2) const
|
|
|
|
{
|
|
|
|
if (idx1 == idx2) {
|
|
|
|
MathXArray const & c = xcell(idx1);
|
|
|
|
int x1 = c.xo() + c.pos2x(pos1);
|
|
|
|
int y1 = c.yo() - c.ascent();
|
|
|
|
int x2 = c.xo() + c.pos2x(pos2);
|
|
|
|
int y2 = c.yo() + c.descent();
|
|
|
|
pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
|
|
|
|
} else {
|
|
|
|
vector<MathInset::idx_type> indices = idxBetween(idx1, idx2);
|
|
|
|
for (unsigned i = 0; i < indices.size(); ++i) {
|
|
|
|
MathXArray const & c = xcell(indices[i]);
|
|
|
|
int x1 = c.xo();
|
|
|
|
int y1 = c.yo() - c.ascent();
|
|
|
|
int x2 = c.xo() + c.width();
|
|
|
|
int y2 = c.yo() + c.descent();
|
|
|
|
pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 15:37:14 +00:00
|
|
|
void MathNestInset::drawMarkers(MathPainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
if (!editing())
|
|
|
|
return;
|
|
|
|
int t = x + width() - 1;
|
|
|
|
int d = y + descent();
|
2002-07-28 18:13:51 +00:00
|
|
|
pi.pain.line(x, d - 3, x, d, LColor::mathframe);
|
|
|
|
pi.pain.line(t, d - 3, t, d, LColor::mathframe);
|
|
|
|
pi.pain.line(x, d, x + 3, d, LColor::mathframe);
|
|
|
|
pi.pain.line(t - 2, d, t, d, LColor::mathframe);
|
2002-06-24 15:37:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-09 09:46:31 +00:00
|
|
|
void MathNestInset::drawMarkers2(MathPainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
if (!editing())
|
|
|
|
return;
|
2002-07-28 18:13:51 +00:00
|
|
|
drawMarkers(pi, x, y);
|
2002-07-09 09:46:31 +00:00
|
|
|
int t = x + width() - 1;
|
|
|
|
int a = y - ascent();
|
2002-07-28 18:13:51 +00:00
|
|
|
pi.pain.line(x, a + 3, x, a, LColor::mathframe);
|
|
|
|
pi.pain.line(t, a + 3, t, a, LColor::mathframe);
|
|
|
|
pi.pain.line(x, a, x + 3, a, LColor::mathframe);
|
|
|
|
pi.pain.line(t - 2, a, t, a, LColor::mathframe);
|
2002-07-09 09:46:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
void MathNestInset::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
2001-09-26 16:52:34 +00:00
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
2001-08-03 17:10:22 +00:00
|
|
|
cell(i).validate(features);
|
|
|
|
}
|
2001-10-24 09:16:06 +00:00
|
|
|
|
|
|
|
|
2001-11-16 09:07:40 +00:00
|
|
|
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;
|
|
|
|
}
|
2001-11-16 09:55:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathNestInset::replace(ReplaceData & rep)
|
|
|
|
{
|
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
|
|
cell(i).replace(rep);
|
|
|
|
}
|
2002-02-01 17:01:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool MathNestInset::contains(MathArray const & ar)
|
|
|
|
{
|
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
|
|
|
if (cell(i).contains(ar))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2002-02-11 15:55:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool MathNestInset::editing() const
|
|
|
|
{
|
|
|
|
return mathcursor && mathcursor->isInside(this);
|
|
|
|
}
|
2002-05-30 07:09:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool MathNestInset::lock() const
|
|
|
|
{
|
|
|
|
return lock_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathNestInset::lock(bool l)
|
|
|
|
{
|
|
|
|
lock_ = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathNestInset::isActive() const
|
|
|
|
{
|
2002-06-14 10:48:27 +00:00
|
|
|
return nargs() > 0;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
2002-06-18 15:44:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
MathArray MathNestInset::glue() const
|
|
|
|
{
|
|
|
|
MathArray ar;
|
|
|
|
for (unsigned i = 0; i < nargs(); ++i)
|
2002-07-30 13:56:02 +00:00
|
|
|
ar.append(cell(i));
|
2002-06-18 15:44:30 +00:00
|
|
|
return ar;
|
|
|
|
}
|
2002-06-27 18:12:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathNestInset::notifyCursorLeaves()
|
|
|
|
{
|
2002-07-23 14:47:31 +00:00
|
|
|
// Generate a preview only if previews are active and we are leaving
|
|
|
|
// the InsetFormula itself
|
|
|
|
if (!grfx::Previews::activated() ||
|
|
|
|
!mathcursor || mathcursor->depth() != 1)
|
2002-07-05 21:24:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
InsetFormulaBase * inset = mathcursor->formula();
|
|
|
|
BufferView * bufferview = inset->view();
|
2002-07-23 14:47:31 +00:00
|
|
|
|
|
|
|
// Paranoia check
|
2002-07-05 21:24:15 +00:00
|
|
|
if (!bufferview || !bufferview->buffer())
|
|
|
|
return;
|
|
|
|
|
|
|
|
grfx::Previews & previews = grfx::Previews::get();
|
|
|
|
grfx::PreviewLoader & loader = previews.loader(bufferview->buffer());
|
|
|
|
|
|
|
|
inset->generatePreview(loader);
|
|
|
|
loader.startLoading();
|
2002-06-27 18:12:50 +00:00
|
|
|
}
|