2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
* \file InsetMathMakebox.cpp
|
2003-08-19 13:00:56 +00:00
|
|
|
* 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
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathMakebox.h"
|
2007-04-26 16:05:57 +00:00
|
|
|
#include "MathData.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
#include "MathStream.h"
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "MathSupport.h"
|
2003-05-07 07:46:04 +00:00
|
|
|
|
2003-10-02 13:41:00 +00:00
|
|
|
#include "support/std_ostream.h"
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathMakebox::InsetMathMakebox()
|
|
|
|
: InsetMathNest(3)
|
2003-05-07 07:46:04 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
Inset * InsetMathMakebox::clone() const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
return new InsetMathMakebox(*this);
|
2003-05-07 07:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-28 15:15:49 +00:00
|
|
|
bool InsetMathMakebox::metrics(MetricsInfo & mi, Dimension & dim) const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
FontSetChanger dummy(mi.base, from_ascii("textnormal"));
|
2003-05-07 07:46:04 +00:00
|
|
|
w_ = mathed_char_width(mi.base.font, '[');
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathNest::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);
|
2006-11-28 15:15:49 +00:00
|
|
|
if (dim_ == dim)
|
|
|
|
return false;
|
2004-01-30 11:41:12 +00:00
|
|
|
dim_ = dim;
|
2006-11-28 15:15:49 +00:00
|
|
|
return true;
|
2003-05-07 07:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathMakebox::draw(PainterInfo & pi, int x, int y) const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
FontSetChanger dummy(pi.base, from_ascii("textnormal"));
|
2003-05-28 13:22:36 +00:00
|
|
|
drawMarkers(pi, x, y);
|
2003-05-07 07:46:04 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
drawStrBlack(pi, x, y, from_ascii("["));
|
2003-05-07 07:46:04 +00:00
|
|
|
x += w_;
|
|
|
|
cell(0).draw(pi, x, y);
|
|
|
|
x += cell(0).width();
|
2006-10-21 00:16:43 +00:00
|
|
|
drawStrBlack(pi, x, y, from_ascii("]"));
|
2003-05-07 07:46:04 +00:00
|
|
|
x += w_ + 2;
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
drawStrBlack(pi, x, y, from_ascii("["));
|
2003-05-07 07:46:04 +00:00
|
|
|
x += w_;
|
|
|
|
cell(1).draw(pi, x, y);
|
|
|
|
x += cell(1).width();
|
2006-10-21 00:16:43 +00:00
|
|
|
drawStrBlack(pi, x, y, from_ascii("]"));
|
2003-05-07 07:46:04 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathMakebox::write(WriteStream & os) const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
|
|
|
os << "\\makebox";
|
|
|
|
os << '[' << cell(0) << ']';
|
|
|
|
if (cell(1).size())
|
|
|
|
os << '[' << cell(1) << ']';
|
|
|
|
os << '{' << cell(2) << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathMakebox::normalize(NormalStream & os) const
|
2003-05-07 07:46:04 +00:00
|
|
|
{
|
|
|
|
os << "[makebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
|
|
|
|
}
|
2003-10-02 13:41:00 +00:00
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
void InsetMathMakebox::infoize(odocstream & os) const
|
2003-10-02 13:41:00 +00:00
|
|
|
{
|
|
|
|
os << "Makebox (width: " << cell(0)
|
|
|
|
<< " pos: " << cell(1) << ")";
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|