lyx_mirror/src/mathed/InsetMathSqrt.C
Abdelrazak Younes e24bf64c68 * dimension.h: new operator!=() and operator=()
* InsetBase and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim) now returns a bool (true if metrics changed).

* MathData and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim): ditto.

* RenderBase and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim): ditto.

* lyxtext.h/text.C:
  - LyXText::metrics(MetricsInfo & mi, Dimension & dim): ditto.
  - LyXText::redoParagraph(): take into account potential change in inset metrics.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16091 a592a061-630c-0410-9148-cb99ea01b6c8
2006-11-28 15:15:49 +00:00

119 lines
2.3 KiB
C

/**
* \file InsetMathSqrt.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetMathSqrt.h"
#include "MathData.h"
#include "MathStream.h"
#include "TextPainter.h"
#include "LColor.h"
#include "frontends/Painter.h"
namespace lyx {
using std::auto_ptr;
InsetMathSqrt::InsetMathSqrt()
: InsetMathNest(1)
{}
auto_ptr<InsetBase> InsetMathSqrt::doClone() const
{
return auto_ptr<InsetBase>(new InsetMathSqrt(*this));
}
bool InsetMathSqrt::metrics(MetricsInfo & mi, Dimension & dim) const
{
cell(0).metrics(mi, dim);
dim.asc += 4;
dim.des += 2;
dim.wid += 12;
metricsMarkers(dim);
if (dim_ == dim)
return false;
dim_ = dim;
return true;
}
void InsetMathSqrt::draw(PainterInfo & pi, int x, int y) const
{
cell(0).draw(pi, x + 10, y);
int const a = dim_.ascent();
int const d = dim_.descent();
int xp[4];
int yp[4];
xp[0] = x + dim_.width(); yp[0] = y - a + 1;
xp[1] = x + 8; yp[1] = y - a + 1;
xp[2] = x + 5; yp[2] = y + d - 1;
xp[3] = x; yp[3] = y + (d - a)/2;
pi.pain.lines(xp, yp, 4, LColor::math);
drawMarkers(pi, x, y);
}
void InsetMathSqrt::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
{
cell(0).metricsT(mi, dim);
dim.asc += 1;
dim.wid += 2;
}
void InsetMathSqrt::drawT(TextPainter & pain, int x, int y) const
{
cell(0).drawT(pain, x + 2, y);
pain.horizontalLine(x + 2, y - cell(0).ascent(), cell(0).width(), '_');
pain.verticalLine (x + 1, y - cell(0).ascent() + 1, cell(0).height());
pain.draw(x, y + cell(0).descent(), '\\');
}
void InsetMathSqrt::write(WriteStream & os) const
{
os << "\\sqrt{" << cell(0) << '}';
}
void InsetMathSqrt::normalize(NormalStream & os) const
{
os << "[sqrt " << cell(0) << ']';
}
void InsetMathSqrt::maple(MapleStream & os) const
{
os << "sqrt(" << cell(0) << ')';
}
void InsetMathSqrt::mathematica(MathematicaStream & os) const
{
os << "Sqrt[" << cell(0) << ']';
}
void InsetMathSqrt::octave(OctaveStream & os) const
{
os << "sqrt(" << cell(0) << ')';
}
void InsetMathSqrt::mathmlize(MathStream & os) const
{
os << MTag("msqrt") << cell(0) << ETag("msqrt");
}
} // namespace lyx