2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_undersetinset.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>
|
|
|
|
|
|
2002-02-01 10:33:06 +00:00
|
|
|
|
#include "math_undersetinset.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
|
#include "math_data.h"
|
2002-02-01 10:33:06 +00:00
|
|
|
|
#include "math_mathmlstream.h"
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include "cursor.h"
|
2004-11-07 10:13:59 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2002-02-01 10:33:06 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
using std::max;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
auto_ptr<InsetBase> MathUndersetInset::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new MathUndersetInset(*this));
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void MathUndersetInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2002-02-01 10:33:06 +00:00
|
|
|
|
{
|
2002-08-02 14:29:42 +00:00
|
|
|
|
cell(1).metrics(mi);
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FracChanger dummy(mi.base);
|
2002-08-02 14:29:42 +00:00
|
|
|
|
cell(0).metrics(mi);
|
2004-04-07 16:54:15 +00:00
|
|
|
|
dim.wid = max(cell(0).width(), cell(1).width()) + 4;
|
|
|
|
|
dim.asc = cell(1).ascent();
|
|
|
|
|
dim.des = cell(1).descent() + cell(0).height() + 4;
|
|
|
|
|
metricsMarkers(dim);
|
|
|
|
|
dim_ = dim;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
|
2002-02-01 10:33:06 +00:00
|
|
|
|
{
|
2004-04-08 15:57:32 +00:00
|
|
|
|
int m = x + width() / 2;
|
2002-08-02 14:29:42 +00:00
|
|
|
|
int yo = y + cell(1).descent() + cell(0).ascent() + 1;
|
|
|
|
|
cell(1).draw(pi, m - cell(1).width() / 2, y);
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FracChanger dummy(pi.base);
|
2002-08-02 14:29:42 +00:00
|
|
|
|
cell(0).draw(pi, m - cell(0).width() / 2, yo);
|
2004-04-07 16:54:15 +00:00
|
|
|
|
drawMarkers(pi, x, y);
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-16 12:36:23 +00:00
|
|
|
|
bool MathUndersetInset::idxFirst(LCursor & cur) const
|
2003-08-22 16:14:26 +00:00
|
|
|
|
{
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = 1;
|
|
|
|
|
cur.pos() = 0;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-16 12:36:23 +00:00
|
|
|
|
bool MathUndersetInset::idxLast(LCursor & cur) const
|
2003-08-22 16:14:26 +00:00
|
|
|
|
{
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = 1;
|
|
|
|
|
cur.pos() = cur.lastpos();
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
bool MathUndersetInset::idxUpDown(LCursor & cur, bool up) const
|
2003-08-22 16:14:26 +00:00
|
|
|
|
{
|
|
|
|
|
idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
|
2004-01-15 17:34:44 +00:00
|
|
|
|
if (cur.idx() == target)
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return false;
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = target;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
cur.pos() = cur.cell().x2pos(cur.x_target());
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-02-01 10:33:06 +00:00
|
|
|
|
void MathUndersetInset::write(WriteStream & os) const
|
|
|
|
|
{
|
|
|
|
|
os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathUndersetInset::normalize(NormalStream & os) const
|
|
|
|
|
{
|
|
|
|
|
os << "[underset " << cell(0) << ' ' << cell(1) << ']';
|
|
|
|
|
}
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathUndersetInset::validate(LaTeXFeatures & features) const
|
|
|
|
|
{
|
|
|
|
|
features.require("amsmath");
|
|
|
|
|
}
|
|
|
|
|
|