2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathUnderset.C
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* 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>
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathUnderset.h"
|
|
|
|
|
#include "MathData.h"
|
|
|
|
|
#include "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
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
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
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetMathUnderset::doClone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2006-09-16 18:11:38 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetMathUnderset(*this));
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
bool InsetMathUnderset::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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
bool InsetMathUnderset::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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
bool InsetMathUnderset::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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::write(WriteStream & os) const
|
2002-02-01 10:33:06 +00:00
|
|
|
|
{
|
|
|
|
|
os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::normalize(NormalStream & os) const
|
2002-02-01 10:33:06 +00:00
|
|
|
|
{
|
|
|
|
|
os << "[underset " << cell(0) << ' ' << cell(1) << ']';
|
|
|
|
|
}
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::validate(LaTeXFeatures & features) const
|
2004-11-07 10:13:59 +00:00
|
|
|
|
{
|
|
|
|
|
features.require("amsmath");
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathNest::validate(features);
|
2004-11-07 10:13:59 +00:00
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|