2003-08-22 16:01:13 +00:00
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
* \file InsetMathOverset.cpp
|
2003-08-22 16:01:13 +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-22 16:01:13 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathOverset.h"
|
2016-06-04 08:41:13 +00:00
|
|
|
|
2007-04-26 16:05:57 +00:00
|
|
|
#include "MathData.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
#include "MathStream.h"
|
2004-11-07 10:13:59 +00:00
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
#include "Cursor.h"
|
2004-11-07 10:13:59 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2016-06-04 08:41:13 +00:00
|
|
|
#include "MetricsInfo.h"
|
2003-08-22 16:01:13 +00:00
|
|
|
|
2018-11-06 07:29:47 +00:00
|
|
|
#include "support/lassert.h"
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
using namespace std;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
Inset * InsetMathOverset::clone() const
|
2003-08-22 16:01:13 +00:00
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
return new InsetMathOverset(*this);
|
2003-08-22 16:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
void InsetMathOverset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2003-08-22 16:01:13 +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-10 14:50:51 +00:00
|
|
|
Changer dummy = mi.base.changeScript();
|
2018-11-06 07:29:47 +00:00
|
|
|
Dimension dim1;
|
|
|
|
cell(1).metrics(mi, dim1);
|
|
|
|
dim.wid = max(dim1.width(), dim0.wid) + 4;
|
|
|
|
dim.asc = dim0.asc + dim1.height() + 4;
|
|
|
|
dim.des = dim0.des;
|
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
|
|
|
{
|
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 & dim1 = cell(1).dimension(*pi.base.bv);
|
2018-11-06 07:29:47 +00:00
|
|
|
Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
|
2007-09-23 22:39:49 +00:00
|
|
|
int m = x + dim.wid / 2;
|
2018-11-06 07:29:47 +00:00
|
|
|
int yo = y - dim0.asc - dim1.des - 1;
|
|
|
|
cell(0).draw(pi, m - dim0.wid / 2, y);
|
2018-11-10 14:50:51 +00:00
|
|
|
Changer dummy = pi.base.changeScript();
|
2018-11-06 07:29:47 +00:00
|
|
|
cell(1).draw(pi, m - dim1.width() / 2, yo);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetMathOverset::idxUpDown(Cursor & cur, bool up) const
|
|
|
|
{
|
|
|
|
idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
|
|
|
|
if (cur.idx() == target)
|
|
|
|
return false;
|
|
|
|
cur.idx() = target;
|
|
|
|
cur.pos() = cur.cell().x2pos(&cur.bv(), cur.x_target());
|
|
|
|
return true;
|
2003-08-22 16:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-12 18:05:09 +00:00
|
|
|
bool InsetMathOverset::idxFirst(Cursor & cur) const
|
|
|
|
{
|
|
|
|
LASSERT(&cur.inset() == this, return false);
|
|
|
|
cur.idx() = 0;
|
|
|
|
cur.pos() = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetMathOverset::idxLast(Cursor & cur) const
|
|
|
|
{
|
|
|
|
LASSERT(&cur.inset() == this, return false);
|
|
|
|
cur.idx() = 0;
|
|
|
|
cur.pos() = cur.lastpos();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-26 19:04:36 +00:00
|
|
|
void InsetMathOverset::write(TeXMathStream & os) const
|
2003-08-22 16:01:13 +00:00
|
|
|
{
|
2008-06-17 11:10:43 +00:00
|
|
|
MathEnsurer ensurer(os);
|
2011-01-21 19:18:27 +00:00
|
|
|
if (os.fragile())
|
|
|
|
os << "\\protect";
|
2018-11-06 07:29:47 +00:00
|
|
|
os << "\\overset{" << cell(1) << "}{" << cell(0) << '}';
|
2003-08-22 16:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathOverset::normalize(NormalStream & os) const
|
2003-08-22 16:01:13 +00:00
|
|
|
{
|
2018-11-06 07:29:47 +00:00
|
|
|
os << "[overset " << cell(1) << ' ' << cell(0) << ']';
|
2003-08-22 16:01:13 +00:00
|
|
|
}
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
|
|
|
2020-12-26 19:02:46 +00:00
|
|
|
void InsetMathOverset::mathmlize(MathMLStream & ms) const
|
2009-12-31 21:44:12 +00:00
|
|
|
{
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << "<" << from_ascii(ms.namespacedTag("mover")) << " accent='false'>"
|
|
|
|
<< cell(0) << cell(1)
|
|
|
|
<< "</" << from_ascii(ms.namespacedTag("mover")) << ">";
|
2009-12-31 21:44:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 20:04:39 +00:00
|
|
|
void InsetMathOverset::htmlize(HtmlStream & os) const
|
|
|
|
{
|
|
|
|
os << MTag("span", "class='overset'")
|
2019-05-09 23:52:07 +00:00
|
|
|
<< MTag("span", "class='top'") << cell(1) << ETag("span")
|
|
|
|
<< MTag("span") << cell(0) << ETag("span")
|
|
|
|
<< ETag("span");
|
2010-03-31 20:04:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathOverset::validate(LaTeXFeatures & features) const
|
2004-11-07 10:13:59 +00:00
|
|
|
{
|
2010-03-31 20:04:39 +00:00
|
|
|
if (features.runparams().isLaTeX())
|
|
|
|
features.require("amsmath");
|
|
|
|
else if (features.runparams().math_flavor == OutputParams::MathAsHTML)
|
2011-12-06 22:17:13 +00:00
|
|
|
features.addCSSSnippet(
|
2010-03-31 20:04:39 +00:00
|
|
|
"span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
|
|
|
|
"span.overset span {display: block;}\n"
|
2011-12-06 22:17:13 +00:00
|
|
|
"span.top{font-size: 66%;}");
|
2010-03-31 20:04:39 +00:00
|
|
|
|
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
|