2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathFrameBox.C
|
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 Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-08-29 09:57:57 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathFrameBox.h"
|
|
|
|
|
#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-09-16 09:01:15 +00:00
|
|
|
|
#include "LColor.h"
|
2002-08-29 09:57:57 +00:00
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
2002-08-29 09:57:57 +00:00
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathFrameBox::InsetMathFrameBox()
|
|
|
|
|
: InsetMathNest(3)
|
2002-08-29 09:57:57 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetMathFrameBox::doClone() const
|
2002-08-29 09:57:57 +00:00
|
|
|
|
{
|
2006-09-16 18:11:38 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetMathFrameBox(*this));
|
2002-08-29 09:57:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool InsetMathFrameBox::metrics(MetricsInfo & mi, Dimension & dim) const
|
2002-08-29 09:57:57 +00:00
|
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(mi.base, "textnormal");
|
2002-08-29 09:57:57 +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();
|
|
|
|
|
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;
|
2002-08-29 09:57:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathFrameBox::draw(PainterInfo & pi, int x, int y) const
|
2002-08-29 09:57:57 +00:00
|
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(pi.base, "textnormal");
|
2003-05-28 13:22:36 +00:00
|
|
|
|
pi.pain.rectangle(x + 1, y - dim_.ascent() + 1,
|
|
|
|
|
dim_.width() - 2, dim_.height() - 2, LColor::foreground);
|
2002-08-29 09:57:57 +00:00
|
|
|
|
x += 5;
|
2003-03-03 12:02:28 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
drawStrBlack(pi, x, y, from_ascii("["));
|
2002-08-29 09:57:57 +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("]"));
|
2002-08-29 09:57:57 +00:00
|
|
|
|
x += w_ + 4;
|
2003-03-03 12:02:28 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
drawStrBlack(pi, x, y, from_ascii("["));
|
2003-03-03 12:02:28 +00:00
|
|
|
|
x += w_;
|
2002-08-29 09:57:57 +00:00
|
|
|
|
cell(1).draw(pi, x, y);
|
2003-03-03 12:02:28 +00:00
|
|
|
|
x += cell(1).width();
|
2006-10-21 00:16:43 +00:00
|
|
|
|
drawStrBlack(pi, x, y, from_ascii("]"));
|
2003-03-03 12:02:28 +00:00
|
|
|
|
x += w_ + 4;
|
|
|
|
|
|
|
|
|
|
cell(2).draw(pi, x, y);
|
2004-04-07 16:54:15 +00:00
|
|
|
|
drawMarkers(pi, x, y);
|
2002-08-29 09:57:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathFrameBox::write(WriteStream & os) const
|
2002-08-29 09:57:57 +00:00
|
|
|
|
{
|
|
|
|
|
os << "\\framebox";
|
2003-03-03 12:02:28 +00:00
|
|
|
|
os << '[' << cell(0) << ']';
|
|
|
|
|
if (cell(1).size())
|
|
|
|
|
os << '[' << cell(1) << ']';
|
|
|
|
|
os << '{' << cell(2) << '}';
|
2002-08-29 09:57:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathFrameBox::normalize(NormalStream & os) const
|
2002-08-29 09:57:57 +00:00
|
|
|
|
{
|
2003-03-03 12:02:28 +00:00
|
|
|
|
os << "[framebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
|
2002-08-29 09:57:57 +00:00
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|