2004-11-07 19:33:30 +00:00
|
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
|
* \file InsetMathDFrac.cpp
|
2004-11-07 19:33:30 +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 "InsetMathTFrac.h"
|
2004-11-07 19:33:30 +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 19:33:30 +00:00
|
|
|
|
|
|
|
|
|
#include "LaTeXFeatures.h"
|
2007-04-26 17:34:20 +00:00
|
|
|
|
#include "Color.h"
|
2004-11-07 19:33:30 +00:00
|
|
|
|
|
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2004-11-07 19:33:30 +00:00
|
|
|
|
using std::string;
|
|
|
|
|
using std::max;
|
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathTFrac::InsetMathTFrac()
|
|
|
|
|
: InsetMathFrac()
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
auto_ptr<Inset> InsetMathTFrac::doClone() const
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{
|
2007-04-29 13:39:47 +00:00
|
|
|
|
return auto_ptr<Inset>(new InsetMathTFrac(*this));
|
2004-11-07 19:33:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool InsetMathTFrac::metrics(MetricsInfo & mi, Dimension & dim) const
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{
|
|
|
|
|
StyleChanger dummy(mi.base, LM_ST_SCRIPT);
|
|
|
|
|
cell(0).metrics(mi);
|
|
|
|
|
cell(1).metrics(mi);
|
2006-11-28 15:15:49 +00:00
|
|
|
|
dim.wid = max(cell(0).width(), cell(1).width()) + 2;
|
|
|
|
|
dim.asc = cell(0).height() + 2 + 5;
|
|
|
|
|
dim.des = cell(1).height() + 2 - 5;
|
|
|
|
|
if (dim_ == dim)
|
|
|
|
|
return false;
|
|
|
|
|
dim_ = dim;
|
|
|
|
|
return true;
|
2004-11-07 19:33:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathTFrac::draw(PainterInfo & pi, int x, int y) const
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{
|
|
|
|
|
StyleChanger dummy(pi.base, LM_ST_SCRIPT);
|
|
|
|
|
int m = x + dim_.wid / 2;
|
|
|
|
|
cell(0).draw(pi, m - cell(0).width() / 2, y - cell(0).descent() - 2 - 5);
|
|
|
|
|
cell(1).draw(pi, m - cell(1).width() / 2, y + cell(1).ascent() + 2 - 5);
|
2007-04-26 17:34:20 +00:00
|
|
|
|
pi.pain.line(x + 1, y - 5, x + dim_.wid - 2, y - 5, Color::math);
|
2004-11-07 19:33:30 +00:00
|
|
|
|
setPosCache(pi, x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring InsetMathTFrac::name() const
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
|
return from_ascii("tfrac");
|
2004-11-07 19:33:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void InsetMathTFrac::mathmlize(MathStream & os) const
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{
|
|
|
|
|
os << MTag("mtfrac") << cell(0) << cell(1) << ETag("mtfrac");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathTFrac::validate(LaTeXFeatures & features) const
|
2004-11-07 19:33:30 +00:00
|
|
|
|
{
|
|
|
|
|
features.require("amsmath");
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathNest::validate(features);
|
2004-11-07 19:33:30 +00:00
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|