2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
|
* \file InsetMathUnderset.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 Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathUnderset.h"
|
2007-04-26 16:05:57 +00:00
|
|
|
|
#include "MathData.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
|
#include "MathStream.h"
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
|
#include "Cursor.h"
|
2004-11-07 10:13:59 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2002-02-01 10:33:06 +00:00
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
|
using namespace std;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
|
Inset * InsetMathUnderset::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
|
return new InsetMathUnderset(*this);
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void InsetMathUnderset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2002-02-01 10:33:06 +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();
|
|
|
|
|
dim.des = dim1.descent() + dim0.height() + 4;
|
2004-04-07 16:54:15 +00:00
|
|
|
|
metricsMarkers(dim);
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::draw(PainterInfo & pi, int x, int y) const
|
2002-02-01 10:33:06 +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.wid / 2;
|
2007-09-24 13:52:04 +00:00
|
|
|
|
int yo = y + dim1.descent() + dim0.ascent() + 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);
|
2004-04-07 16:54:15 +00:00
|
|
|
|
drawMarkers(pi, x, y);
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool InsetMathUnderset::idxFirst(Cursor & cur) const
|
2003-08-22 16:14:26 +00:00
|
|
|
|
{
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = 1;
|
|
|
|
|
cur.pos() = 0;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool InsetMathUnderset::idxLast(Cursor & cur) const
|
2003-08-22 16:14:26 +00:00
|
|
|
|
{
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = 1;
|
|
|
|
|
cur.pos() = cur.lastpos();
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool InsetMathUnderset::idxUpDown(Cursor & cur, bool up) const
|
2003-08-22 16:14:26 +00:00
|
|
|
|
{
|
|
|
|
|
idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
|
2004-01-15 17:34:44 +00:00
|
|
|
|
if (cur.idx() == target)
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return false;
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = target;
|
2007-12-24 10:52:58 +00:00
|
|
|
|
cur.pos() = cur.cell().x2pos(&cur.bv(), cur.x_target());
|
2003-08-22 16:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::write(WriteStream & os) const
|
2002-02-01 10:33:06 +00:00
|
|
|
|
{
|
2008-06-16 14:32:51 +00:00
|
|
|
|
bool brace = ensureMath(os);
|
2002-02-01 10:33:06 +00:00
|
|
|
|
os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
|
2008-06-16 01:21:17 +00:00
|
|
|
|
os.pendingBrace(brace);
|
2002-02-01 10:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::normalize(NormalStream & os) const
|
2002-02-01 10:33:06 +00:00
|
|
|
|
{
|
|
|
|
|
os << "[underset " << cell(0) << ' ' << cell(1) << ']';
|
|
|
|
|
}
|
2004-11-07 10:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathUnderset::validate(LaTeXFeatures & features) const
|
2004-11-07 10:13:59 +00:00
|
|
|
|
{
|
|
|
|
|
features.require("amsmath");
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathNest::validate(features);
|
2004-11-07 10:13:59 +00:00
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|