mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
0355e7d391
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5169 a592a061-630c-0410-9148-cb99ea01b6c8
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_frameboxinset.h"
|
|
#include "math_support.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
MathFrameboxInset::MathFrameboxInset()
|
|
: MathNestInset(2)
|
|
{}
|
|
|
|
|
|
MathInset * MathFrameboxInset::clone() const
|
|
{
|
|
return new MathFrameboxInset(*this);
|
|
}
|
|
|
|
|
|
void MathFrameboxInset::metrics(MathMetricsInfo & mi) const
|
|
{
|
|
w_ = mathed_char_width(mi.base.font, '[');
|
|
MathNestInset::metrics(mi);
|
|
dim_ = cell(0).dim();
|
|
dim_ += cell(1).dim();
|
|
dim_.w += 2 * w_ + 4;
|
|
metricsMarkers2(5); // 5 pixels margin
|
|
}
|
|
|
|
|
|
void MathFrameboxInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
{
|
|
pi.pain.rectangle(x + 1, y - ascent() + 1, width() - 2, height() - 2,
|
|
LColor::black);
|
|
x += 5;
|
|
drawStrBlack(pi, x, y, "[");
|
|
x += w_;
|
|
cell(0).draw(pi, x, y);
|
|
x += cell(0).width();
|
|
drawStrBlack(pi, x, y, "]");
|
|
x += w_ + 4;
|
|
cell(1).draw(pi, x, y);
|
|
}
|
|
|
|
|
|
void MathFrameboxInset::write(WriteStream & os) const
|
|
{
|
|
os << "\\framebox";
|
|
if (cell(0).size())
|
|
os << '[' << cell(0) << ']';
|
|
os << '{' << cell(1) << '}';
|
|
}
|
|
|
|
|
|
void MathFrameboxInset::normalize(NormalStream & os) const
|
|
{
|
|
os << "[framebox " << cell(0) << ' ' << cell(1) << ']';
|
|
}
|