2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
* \file InsetMathSize.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.
|
|
|
|
*/
|
|
|
|
|
2001-12-05 08:04:20 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathSize.h"
|
2007-11-06 21:45:24 +00:00
|
|
|
|
2007-04-26 16:05:57 +00:00
|
|
|
#include "MathData.h"
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "MathParser.h"
|
|
|
|
#include "MathStream.h"
|
2010-01-21 20:48:12 +00:00
|
|
|
#include "output_xhtml.h"
|
2004-11-07 13:27:20 +00:00
|
|
|
|
2005-01-27 21:05:44 +00:00
|
|
|
#include "support/convert.h"
|
2007-11-06 21:45:24 +00:00
|
|
|
|
2010-01-21 20:48:12 +00:00
|
|
|
#include <string>
|
2008-05-06 10:36:32 +00:00
|
|
|
#include <ostream>
|
|
|
|
|
2010-01-21 20:48:12 +00:00
|
|
|
using namespace std;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetMathSize::InsetMathSize(Buffer * buf, latexkeys const * l)
|
|
|
|
: InsetMathNest(buf, 1), key_(l), style_(Styles(convert<int>(l->extra)))
|
2001-08-08 17:26:30 +00:00
|
|
|
{}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-06-27 15:33:55 +00:00
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
Inset * InsetMathSize::clone() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
return new InsetMathSize(*this);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
StyleChanger dummy(mi.base, style_);
|
2004-01-30 11:41:12 +00:00
|
|
|
cell(0).metrics(mi, dim);
|
|
|
|
metricsMarkers(dim);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathSize::draw(PainterInfo & pi, int x, int y) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
StyleChanger dummy(pi.base, style_);
|
2002-08-02 14:29:42 +00:00
|
|
|
cell(0).draw(pi, x + 1, y);
|
2003-05-28 13:22:36 +00:00
|
|
|
drawMarkers(pi, x, y);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathSize::write(WriteStream & os) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2008-06-17 11:10:43 +00:00
|
|
|
MathEnsurer ensurer(os);
|
2001-12-05 08:04:20 +00:00
|
|
|
os << "{\\" << key_->name << ' ' << cell(0) << '}';
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-21 20:48:12 +00:00
|
|
|
// From the MathML documentation:
|
|
|
|
// MathML uses two attributes, displaystyle and scriptlevel, to control
|
|
|
|
// orthogonal presentation features that TeX encodes into one "style"
|
|
|
|
// attribute with values \displaystyle, \textstyle, \scriptstyle, and
|
|
|
|
// \scriptscriptstyle. The corresponding values of displaystyle and scriptlevel
|
|
|
|
// for those TeX styles would be "true" and "0", "false" and "0", "false" and "1",
|
|
|
|
// and "false" and "2", respectively.
|
|
|
|
void InsetMathSize::mathmlize(MathStream & ms) const
|
|
|
|
{
|
|
|
|
string const & name = to_utf8(key_->name);
|
|
|
|
bool dispstyle = (name == "displaystyle");
|
|
|
|
int scriptlevel = 0;
|
|
|
|
if (name == "scriptstyle")
|
|
|
|
scriptlevel = 1;
|
|
|
|
else if (name == "scriptscriptstyle")
|
|
|
|
scriptlevel = 2;
|
|
|
|
stringstream attrs;
|
|
|
|
attrs << "displaystyle='" << (dispstyle ? "true" : "false")
|
|
|
|
<< "' scriptlevel='" << scriptlevel << "'";
|
2010-01-21 21:06:44 +00:00
|
|
|
ms << MTag("mstyle", attrs.str()) << ">"
|
|
|
|
<< cell(0) << ETag("mstyle");
|
2010-01-21 20:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathSize::normalize(NormalStream & os) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
os << '[' << key_->name << ' ' << cell(0) << ']';
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
2002-07-10 06:52:05 +00:00
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
void InsetMathSize::infoize(odocstream & os) const
|
2002-07-10 06:52:05 +00:00
|
|
|
{
|
|
|
|
os << "Size: " << key_->name;
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|