2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_lefteqninset.C
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-10-18 13:21:21 +00:00
|
|
|
|
#include "math_lefteqninset.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
|
#include "math_data.h"
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_ostream.h"
|
2001-10-18 13:21:21 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
|
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
2001-10-18 13:21:21 +00:00
|
|
|
|
|
|
|
|
|
MathLefteqnInset::MathLefteqnInset()
|
|
|
|
|
: MathNestInset(1)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
auto_ptr<InsetBase> MathLefteqnInset::doClone() const
|
2001-10-18 13:21:21 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new MathLefteqnInset(*this));
|
2001-10-18 13:21:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void MathLefteqnInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-11-08 12:06:56 +00:00
|
|
|
|
{
|
2004-01-30 11:41:12 +00:00
|
|
|
|
cell(0).metrics(mi, dim);
|
|
|
|
|
dim.asc += 2;
|
|
|
|
|
dim.des += 2;
|
|
|
|
|
dim.wid = 4;
|
|
|
|
|
metricsMarkers(dim);
|
|
|
|
|
dim_ = dim;
|
2001-11-08 12:06:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void MathLefteqnInset::draw(PainterInfo & pi, int x, int y) const
|
2001-10-18 13:21:21 +00:00
|
|
|
|
{
|
2002-09-10 15:53:33 +00:00
|
|
|
|
cell(0).draw(pi, x + 2, y);
|
2003-05-28 13:22:36 +00:00
|
|
|
|
drawMarkers(pi, x, y);
|
2001-10-18 13:21:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-05 07:09:11 +00:00
|
|
|
|
string MathLefteqnInset::name() const
|
2001-10-18 13:21:21 +00:00
|
|
|
|
{
|
2002-08-05 07:09:11 +00:00
|
|
|
|
return "lefteqn";
|
2001-10-18 13:21:21 +00:00
|
|
|
|
}
|
2002-09-10 15:53:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathLefteqnInset::infoize(std::ostream & os) const
|
|
|
|
|
{
|
|
|
|
|
os << "Lefteqn ";
|
|
|
|
|
}
|