2003-08-19 13:00:56 +00:00
|
|
|
/**
|
|
|
|
* \file math_makeboxinset.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Ling Li
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
2003-05-07 07:46:04 +00:00
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
#include <config.h>
|
2003-05-07 07:46:04 +00:00
|
|
|
|
|
|
|
#include "math_makeboxinset.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
#include "math_data.h"
|
2003-05-07 07:46:04 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
#include "math_support.h"
|
2003-05-07 07:46:04 +00:00
|
|
|
|
2003-10-02 13:41:00 +00:00
|
|
|
#include "support/std_ostream.h"
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
using std::auto_ptr;
|
2003-05-07 07:46:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
MathMakeboxInset::MathMakeboxInset()
|
|
|
|
: MathNestInset(3)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
auto_ptr<InsetBase> MathMakeboxInset::clone() const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
return auto_ptr<InsetBase>(new MathMakeboxInset(*this));
|
2003-05-07 07:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
void MathMakeboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
|
|
|
FontSetChanger dummy(mi.base, "textnormal");
|
|
|
|
w_ = mathed_char_width(mi.base.font, '[');
|
|
|
|
MathNestInset::metrics(mi);
|
2004-01-30 11:41:12 +00:00
|
|
|
dim = cell(0).dim();
|
|
|
|
dim += cell(1).dim();
|
|
|
|
dim += cell(2).dim();
|
|
|
|
dim.wid += 4 * w_ + 4;
|
|
|
|
metricsMarkers(dim);
|
|
|
|
dim_ = dim;
|
2003-05-07 07:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathMakeboxInset::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
FontSetChanger dummy(pi.base, "textnormal");
|
2003-05-28 13:22:36 +00:00
|
|
|
drawMarkers(pi, x, y);
|
2003-05-07 07:46:04 +00:00
|
|
|
|
|
|
|
drawStrBlack(pi, x, y, "[");
|
|
|
|
x += w_;
|
|
|
|
cell(0).draw(pi, x, y);
|
|
|
|
x += cell(0).width();
|
|
|
|
drawStrBlack(pi, x, y, "]");
|
|
|
|
x += w_ + 2;
|
|
|
|
|
|
|
|
drawStrBlack(pi, x, y, "[");
|
|
|
|
x += w_;
|
|
|
|
cell(1).draw(pi, x, y);
|
|
|
|
x += cell(1).width();
|
|
|
|
drawStrBlack(pi, x, y, "]");
|
|
|
|
x += w_ + 2;
|
|
|
|
|
|
|
|
cell(2).draw(pi, x, y);
|
2004-04-07 16:54:15 +00:00
|
|
|
setPosCache(pi, x, y);
|
2003-05-07 07:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathMakeboxInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
os << "\\makebox";
|
|
|
|
os << '[' << cell(0) << ']';
|
|
|
|
if (cell(1).size())
|
|
|
|
os << '[' << cell(1) << ']';
|
|
|
|
os << '{' << cell(2) << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathMakeboxInset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[makebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
|
|
|
|
}
|
2003-10-02 13:41:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathMakeboxInset::infoize(std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "Makebox (width: " << cell(0)
|
|
|
|
<< " pos: " << cell(1) << ")";
|
|
|
|
}
|