mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
99d1627a47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
#include <config.h>
|
|
|
|
|
|
#include "math_dotsinset.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
#include "math_support.h"
|
|
#include "math_parser.h"
|
|
|
|
|
|
MathDotsInset::MathDotsInset(latexkeys const * key)
|
|
: key_(key)
|
|
{}
|
|
|
|
|
|
MathInset * MathDotsInset::clone() const
|
|
{
|
|
return new MathDotsInset(*this);
|
|
}
|
|
|
|
|
|
void MathDotsInset::metrics(MathMetricsInfo & mi) 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_ = ascent() / 2;
|
|
else if (key_->name == "dotsc")
|
|
dh_ = ascent() / 4;
|
|
else if (key_->name == "vdots") {
|
|
dim_.w = (dim_.w / 2) + 1;
|
|
dh_ = ascent();
|
|
}
|
|
else if (key_->name == "ddots")
|
|
dh_ = ascent();
|
|
}
|
|
|
|
|
|
void MathDotsInset::draw(MathPainterInfo & pain, int x, int y) const
|
|
{
|
|
mathed_draw_deco(pain, x + 2, y - dh_, width() - 2, ascent(), key_->name);
|
|
if (key_->name == "vdots" || key_->name == "ddots")
|
|
++x;
|
|
if (key_->name != "vdots")
|
|
--y;
|
|
mathed_draw_deco(pain, x + 2, y - dh_, width() - 2, ascent(), key_->name);
|
|
}
|
|
|
|
|
|
string MathDotsInset::name() const
|
|
{
|
|
return key_->name;
|
|
}
|