2003-08-22 16:01:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_oversetinset.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>
|
|
|
|
|
|
|
|
|
|
#include "math_oversetinset.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
|
#include "math_data.h"
|
2003-08-22 16:01:13 +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"
|
2003-08-22 16:01:13 +00:00
|
|
|
|
|
|
|
|
|
using std::max;
|
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetMathOverset::doClone() const
|
2003-08-22 16:01:13 +00:00
|
|
|
|
{
|
2006-09-16 18:11:38 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetMathOverset(*this));
|
2003-08-22 16:01:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathOverset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2003-08-22 16:01:13 +00:00
|
|
|
|
{
|
|
|
|
|
cell(1).metrics(mi);
|
|
|
|
|
FracChanger dummy(mi.base);
|
|
|
|
|
cell(0).metrics(mi);
|
2004-04-08 15:45:11 +00:00
|
|
|
|
dim.wid = max(cell(0).width(), cell(1).width()) + 4;
|
|
|
|
|
dim.asc = cell(1).ascent() + cell(0).height() + 4;
|
|
|
|
|
dim.des = cell(1).descent();
|
|
|
|
|
metricsMarkers(dim);
|
|
|
|
|
dim_ = dim;
|
2003-08-22 16:01:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathOverset::draw(PainterInfo & pi, int x, int y) const
|
2003-08-22 16:01:13 +00:00
|
|
|
|
{
|
2004-04-08 15:45:11 +00:00
|
|
|
|
int m = x + width() / 2;
|
2003-08-22 16:01:59 +00:00
|
|
|
|
int yo = y - cell(1).ascent() + cell(0).descent() - 1;
|
2003-08-22 16:01:13 +00:00
|
|
|
|
cell(1).draw(pi, m - cell(1).width() / 2, y);
|
|
|
|
|
FracChanger dummy(pi.base);
|
|
|
|
|
cell(0).draw(pi, m - cell(0).width() / 2, yo);
|
2004-04-08 15:45:11 +00:00
|
|
|
|
drawMarkers(pi, x, y);
|
2003-08-22 16:01:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
bool InsetMathOverset::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 InsetMathOverset::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
|
|
|
|
void InsetMathOverset::write(WriteStream & os) const
|
2003-08-22 16:01:13 +00:00
|
|
|
|
{
|
|
|
|
|
os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathOverset::normalize(NormalStream & os) const
|
2003-08-22 16:01:13 +00:00
|
|
|
|
{
|
|
|
|
|
os << "[overset " << cell(0) << ' ' << cell(1) << ']';
|
|
|
|
|
}
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathOverset::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
|
|
|
|
}
|