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"
|
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"
|
2003-08-22 16:01:13 +00:00
|
|
|
|
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
|
|
|
{
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension dim1;
|
|
|
|
cell(1).metrics(mi, dim1);
|
2003-08-22 16:01:13 +00:00
|
|
|
FracChanger dummy(mi.base);
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension dim0;
|
|
|
|
cell(0).metrics(mi, dim0);
|
2007-12-12 19:28:07 +00:00
|
|
|
dim.wid = max(dim0.width(), dim1.wid) + 4;
|
2007-09-24 13:52:04 +00:00
|
|
|
dim.asc = dim1.asc + dim0.height() + 4;
|
|
|
|
dim.des = dim1.des;
|
2004-04-08 15:45:11 +00:00
|
|
|
metricsMarkers(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
|
|
|
{
|
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.wid / 2;
|
2007-09-24 13:52:04 +00:00
|
|
|
int yo = y - dim1.asc - dim0.des - 1;
|
|
|
|
cell(1).draw(pi, m - dim1.wid / 2, y);
|
2003-08-22 16:01:13 +00:00
|
|
|
FracChanger dummy(pi.base);
|
2007-09-24 13:52:04 +00:00
|
|
|
cell(0).draw(pi, m - dim0.width() / 2, yo);
|
2004-04-08 15:45:11 +00:00
|
|
|
drawMarkers(pi, x, y);
|
2003-08-22 16:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
bool InsetMathOverset::idxFirst(Cursor & 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
bool InsetMathOverset::idxLast(Cursor & 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
|
|
|
{
|
2008-06-17 11:10:43 +00:00
|
|
|
MathEnsurer ensurer(os);
|
2011-01-21 19:18:27 +00:00
|
|
|
if (os.fragile())
|
|
|
|
os << "\\protect";
|
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
|
|
|
|
|
|
|
|
2009-12-31 21:44:12 +00:00
|
|
|
void InsetMathOverset::mathmlize(MathStream & ms) const
|
|
|
|
{
|
2009-12-31 21:48:56 +00:00
|
|
|
ms << "<mover accent='false'>" << cell(1) << cell(0) << "</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'")
|
|
|
|
<< MTag("span", "class='top'") << cell(0) << ETag("span")
|
|
|
|
<< MTag("span") << cell(1) << ETag("span")
|
|
|
|
<< ETag("span");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
features.addPreambleSnippet("<style type=\"text/css\">\n"
|
|
|
|
"span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
|
|
|
|
"span.overset span {display: block;}\n"
|
|
|
|
"span.top{font-size: 66%;}\n"
|
|
|
|
"</style>");
|
|
|
|
|
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
|