mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
e89625ef28
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15026 a592a061-630c-0410-9148-cb99ea01b6c8
72 lines
1.5 KiB
C
72 lines
1.5 KiB
C
/**
|
|
* \file InsetMathDots.C
|
|
* 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 "MathMLStream.h"
|
|
#include "MathSupport.h"
|
|
#include "MathParser.h"
|
|
|
|
|
|
using std::string;
|
|
using std::auto_ptr;
|
|
|
|
|
|
InsetMathDots::InsetMathDots(latexkeys const * key)
|
|
: key_(key)
|
|
{}
|
|
|
|
|
|
auto_ptr<InsetBase> InsetMathDots::doClone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new InsetMathDots(*this));
|
|
}
|
|
|
|
|
|
void InsetMathDots::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
mathed_char_dim(mi.base.font, 'M', dim);
|
|
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")
|
|
dh_ = dim.asc;
|
|
dim_ = dim;
|
|
}
|
|
|
|
|
|
void InsetMathDots::draw(PainterInfo & pain, int x, int y) const
|
|
{
|
|
mathed_draw_deco(pain, x + 2, y - dh_, dim_.width() - 2, dim_.ascent(),
|
|
key_->name);
|
|
if (key_->name == "vdots" || key_->name == "ddots")
|
|
++x;
|
|
if (key_->name != "vdots")
|
|
--y;
|
|
mathed_draw_deco(pain, x + 2, y - dh_, dim_.width() - 2, dim_.ascent(),
|
|
key_->name);
|
|
setPosCache(pain, x, y);
|
|
}
|
|
|
|
|
|
string InsetMathDots::name() const
|
|
{
|
|
return key_->name;
|
|
}
|