2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
* \file InsetMathStackrel.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.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathStackrel.h"
|
2007-04-26 16:05:57 +00:00
|
|
|
#include "MathData.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
#include "MathStream.h"
|
2001-08-08 17:26:30 +00:00
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
using namespace std;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathStackrel::InsetMathStackrel()
|
2001-08-08 17:26:30 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
Inset * InsetMathStackrel::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
return new InsetMathStackrel(*this);
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension dim1;
|
|
|
|
cell(1).metrics(mi, dim1);
|
2003-03-21 14:20:48 +00:00
|
|
|
FracChanger dummy(mi.base);
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension dim0;
|
|
|
|
cell(0).metrics(mi, dim0);
|
2007-12-12 19:28:07 +00:00
|
|
|
dim.wid = max(dim0.width(), dim1.width()) + 4;
|
2007-09-24 13:52:04 +00:00
|
|
|
dim.asc = dim1.ascent() + dim0.height() + 4;
|
|
|
|
dim.des = dim1.descent();
|
2004-01-30 11:41:12 +00:00
|
|
|
metricsMarkers(dim);
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2007-09-23 22:39:49 +00:00
|
|
|
Dimension const dim = dimension(*pi.base.bv);
|
2007-09-24 13:52:04 +00:00
|
|
|
Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
|
|
|
|
Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
|
2007-09-23 22:39:49 +00:00
|
|
|
int m = x + dim.width() / 2;
|
2007-09-24 13:52:04 +00:00
|
|
|
int yo = y - dim1.ascent() - dim0.descent() - 1;
|
|
|
|
cell(1).draw(pi, m - dim1.width() / 2, y);
|
2003-03-21 14:20:48 +00:00
|
|
|
FracChanger dummy(pi.base);
|
2007-09-24 13:52:04 +00:00
|
|
|
cell(0).draw(pi, m - dim0.width() / 2, yo);
|
2003-07-25 17:11:25 +00:00
|
|
|
drawMarkers(pi, x, y);
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathStackrel::write(WriteStream & os) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2008-06-17 11:10:43 +00:00
|
|
|
MathEnsurer ensurer(os);
|
2001-10-19 11:25:48 +00:00
|
|
|
os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
void InsetMathStackrel::normalize(NormalStream & os) const
|
2001-08-08 17:26:30 +00:00
|
|
|
{
|
2001-11-09 08:35:57 +00:00
|
|
|
os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|