lyx_mirror/src/mathed/InsetMathDots.cpp

89 lines
1.9 KiB
C++
Raw Normal View History

/**
* \file InsetMathDots.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Alejandro Aguilar Sierra
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetMathDots.h"
#include "LaTeXFeatures.h"
#include "MathStream.h"
#include "MathSupport.h"
#include "MathParser.h"
#include "MetricsInfo.h"
#include "frontends/FontMetrics.h"
namespace lyx {
InsetMathDots::InsetMathDots(latexkeys const * key)
: key_(key)
{}
Inset * InsetMathDots::clone() const
{
return new InsetMathDots(*this);
}
void InsetMathDots::metrics(MetricsInfo & mi, Dimension & dim) const
{
dim = theFontMetrics(mi.base.font).dimension('M');
dh_ = 0;
if (key_->name == "cdots" || key_->name == "dotsb"
|| key_->name == "dotsm" || key_->name == "dotsi")
dh_ = dim.asc / 2;
else if (key_->name == "dotsc")
dh_ = dim.asc / 4;
else if (key_->name == "vdots") {
dim.wid = (dim.wid / 2) + 1;
dh_ = dim.asc;
}
else if (key_->name == "ddots" || key_->name == "adots" || key_->name == "iddots")
dh_ = dim.asc;
}
void InsetMathDots::draw(PainterInfo & pain, int x, int y) const
{
Dimension const dim = dimension(*pain.base.bv);
if (key_->name == "adots" || key_->name == "iddots")
--y;
mathed_draw_deco(pain, x + 2, y - dh_, dim.width() - 2, dim.ascent(),
key_->name);
if (key_->name == "vdots" || key_->name == "ddots" || key_->name == "adots" || key_->name == "iddots")
++x;
if (key_->name == "adots" || key_->name == "iddots")
++y;
else if (key_->name != "vdots")
--y;
mathed_draw_deco(pain, x + 2, y - dh_, dim.width() - 2, dim.ascent(),
key_->name);
setPosCache(pain, x, y);
}
docstring InsetMathDots::name() const
{
return key_->name;
}
void InsetMathDots::validate(LaTeXFeatures & features) const
{
if (!key_->requires.empty())
features.require(to_utf8(key_->requires));
}
} // namespace lyx