2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
* \file InsetMathStackrel.cpp
|
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.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathStackrel.h"
|
2010-03-31 20:54:27 +00:00
|
|
|
|
2007-04-26 16:05:57 +00:00
|
|
|
#include "MathData.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
#include "MathStream.h"
|
2001-08-08 17:26:30 +00:00
|
|
|
|
2016-06-04 08:41:13 +00:00
|
|
|
#include "Cursor.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
#include "MetricsInfo.h"
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
using namespace std;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2012-12-28 18:51:28 +00:00
|
|
|
InsetMathStackrel::InsetMathStackrel(Buffer * buf, bool sub)
|
|
|
|
: InsetMathFracBase(buf, sub ? 3 : 2)
|
2001-08-08 17:26:30 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
Inset * InsetMathStackrel::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
return new InsetMathStackrel(*this);
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-28 18:51:28 +00:00
|
|
|
bool InsetMathStackrel::idxUpDown(Cursor & cur, bool up) const
|
|
|
|
{
|
2018-11-06 07:29:47 +00:00
|
|
|
idx_type const npos = 1234; // impossible number
|
|
|
|
idx_type target = npos;
|
2012-12-28 18:51:28 +00:00
|
|
|
if (up) {
|
2018-11-06 07:29:47 +00:00
|
|
|
idx_type const targets[] = { 1, npos, 0 };
|
|
|
|
target = targets[cur.idx()];
|
2012-12-28 18:51:28 +00:00
|
|
|
} else {
|
2018-11-06 07:29:47 +00:00
|
|
|
idx_type const targets[] = { 2, 0, npos };
|
|
|
|
target = targets[cur.idx()];
|
2012-12-28 18:51:28 +00:00
|
|
|
}
|
2018-11-06 07:29:47 +00:00
|
|
|
|
|
|
|
if (target == npos || target == nargs())
|
2012-12-28 18:51:28 +00:00
|
|
|
return false;
|
|
|
|
cur.idx() = target;
|
|
|
|
cur.pos() = cell(target).x2pos(&cur.bv(), cur.x_target());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-30 08:33:35 +00:00
|
|
|
MathClass InsetMathStackrel::mathClass() const
|
|
|
|
{
|
|
|
|
// FIXME: update this when/if \stackbin is supported
|
|
|
|
return MC_REL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2016-11-22 10:26:15 +00:00
|
|
|
Changer dummy2 = mi.base.changeEnsureMath();
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension dim0;
|
|
|
|
cell(0).metrics(mi, dim0);
|
2018-11-06 07:29:47 +00:00
|
|
|
Changer dummy = mi.base.changeFrac();
|
|
|
|
Dimension dim1;
|
|
|
|
cell(1).metrics(mi, dim1);
|
2012-12-28 18:51:28 +00:00
|
|
|
if (nargs() > 2) {
|
|
|
|
Dimension dim2;
|
|
|
|
cell(2).metrics(mi, dim2);
|
2018-11-06 07:29:47 +00:00
|
|
|
dim.wid = max(max(dim1.width(), dim0.width()), dim2.width()) + 4;
|
|
|
|
dim.asc = dim0.ascent() + dim1.height() + 4;
|
|
|
|
dim.des = dim0.descent() + dim2.height() + dim2.descent() + 1;
|
2012-12-28 18:51:28 +00:00
|
|
|
} else {
|
2018-11-06 07:29:47 +00:00
|
|
|
dim.wid = max(dim1.width(), dim0.width()) + 4;
|
|
|
|
dim.asc = dim0.ascent() + dim1.height() + 4;
|
|
|
|
dim.des = dim0.descent();
|
2012-12-28 18:51:28 +00:00
|
|
|
}
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2016-11-22 10:26:15 +00:00
|
|
|
Changer dummy2 = pi.base.changeEnsureMath();
|
2007-09-23 22:39:49 +00:00
|
|
|
Dimension const dim = dimension(*pi.base.bv);
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
|
|
|
|
Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
|
2007-09-23 22:39:49 +00:00
|
|
|
int m = x + dim.width() / 2;
|
2018-11-06 07:29:47 +00:00
|
|
|
int yo = y - dim0.ascent() - dim1.descent() - 1;
|
|
|
|
cell(0).draw(pi, m - dim0.width() / 2, y);
|
2016-05-23 21:30:23 +00:00
|
|
|
Changer dummy = pi.base.changeFrac();
|
2018-11-06 07:29:47 +00:00
|
|
|
cell(1).draw(pi, m - dim1.width() / 2, yo);
|
2012-12-28 18:51:28 +00:00
|
|
|
if (nargs() > 2) {
|
|
|
|
Dimension const & dim2 = cell(2).dimension(*pi.base.bv);
|
2018-11-06 07:29:47 +00:00
|
|
|
int y2 = y + dim0.descent() + dim2.ascent() + 1;
|
2012-12-28 18:51:28 +00:00
|
|
|
cell(2).draw(pi, m - dim2.width() / 2, y2);
|
|
|
|
}
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathStackrel::write(WriteStream & os) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2008-06-17 11:10:43 +00:00
|
|
|
MathEnsurer ensurer(os);
|
2012-12-28 18:51:28 +00:00
|
|
|
os << "\\stackrel";
|
|
|
|
if (nargs() > 2)
|
|
|
|
os << '[' << cell(2) << ']';
|
2018-11-06 07:29:47 +00:00
|
|
|
os << '{' << cell(1) << "}{" << cell(0) << '}';
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathStackrel::normalize(NormalStream & os) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2018-11-06 07:29:47 +00:00
|
|
|
os << "[stackrel " << cell(1) << ' ' << cell(0);
|
2012-12-28 18:51:28 +00:00
|
|
|
if (nargs() > 2)
|
|
|
|
os << ' ' << cell(2);
|
|
|
|
os << ']';
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
2009-12-31 21:54:00 +00:00
|
|
|
void InsetMathStackrel::mathmlize(MathStream & ms) const
|
|
|
|
{
|
2012-12-28 18:51:28 +00:00
|
|
|
if (nargs() > 2)
|
2018-11-06 07:29:47 +00:00
|
|
|
ms << "<munderover>" << cell(0) << cell(2) << cell(1) << "</munderover>";
|
2012-12-28 18:51:28 +00:00
|
|
|
else
|
2018-11-06 07:29:47 +00:00
|
|
|
ms << "<mover accent='false'>" << cell(0) << cell(1) << "</mover>";
|
2009-12-31 21:54:00 +00:00
|
|
|
}
|
|
|
|
|
2010-03-31 20:54:27 +00:00
|
|
|
|
|
|
|
void InsetMathStackrel::htmlize(HtmlStream & os) const
|
|
|
|
{
|
2012-12-28 18:51:28 +00:00
|
|
|
if (nargs() > 2) {
|
|
|
|
os << MTag("span", "class='underoverset'")
|
2018-11-06 07:29:47 +00:00
|
|
|
<< MTag("span", "class='top'") << cell(1) << ETag("span")
|
|
|
|
<< MTag("span") << cell(0) << ETag("span")
|
2012-12-28 18:51:28 +00:00
|
|
|
<< MTag("span", "class='bottom'") << cell(2) << ETag("span");
|
|
|
|
} else {
|
|
|
|
// at the moment, this is exactly the same as overset
|
|
|
|
os << MTag("span", "class='overset'")
|
2018-11-06 07:29:47 +00:00
|
|
|
<< MTag("span", "class='top'") << cell(1) << ETag("span")
|
|
|
|
<< MTag("span") << cell(0) << ETag("span");
|
2012-12-28 18:51:28 +00:00
|
|
|
}
|
|
|
|
os << ETag("span");
|
2010-03-31 20:54:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathStackrel::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
2012-12-28 18:51:28 +00:00
|
|
|
if (features.runparams().math_flavor == OutputParams::MathAsHTML) {
|
|
|
|
if (nargs() > 2) {
|
|
|
|
// FIXME: "vertical-align: middle" works only if the
|
|
|
|
// height of sub and super script is approximately equal.
|
|
|
|
features.addCSSSnippet(
|
|
|
|
"span.underoverset{display: inline-block; vertical-align: middle; text-align:center;}\n"
|
|
|
|
"span.underoverset span {display: block;}\n"
|
|
|
|
"span.bottom{font-size: 66%;}\n"
|
|
|
|
"span.top{font-size: 66%;}");
|
|
|
|
} else {
|
|
|
|
// from overset
|
|
|
|
features.addCSSSnippet(
|
|
|
|
"span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
|
|
|
|
"span.overset span {display: block;}\n"
|
|
|
|
"span.top{font-size: 66%;}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nargs() > 2)
|
|
|
|
features.require("stackrel");
|
2010-03-31 20:54:27 +00:00
|
|
|
|
|
|
|
InsetMathNest::validate(features);
|
|
|
|
}
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|