2001-12-05 08:04:20 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
#include "math_hullinset.h"
|
2001-12-11 15:04:02 +00:00
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
#include "math_streamstr.h"
|
2001-11-08 12:15:12 +00:00
|
|
|
#include "math_support.h"
|
2002-08-14 16:43:16 +00:00
|
|
|
#include "math_extern.h"
|
|
|
|
#include "math_charinset.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "debug.h"
|
2002-05-02 07:30:49 +00:00
|
|
|
#include "textpainter.h"
|
2002-08-13 17:43:40 +00:00
|
|
|
#include "funcrequest.h"
|
2002-05-02 07:30:49 +00:00
|
|
|
#include "Lsstream.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2001-12-11 15:04:02 +00:00
|
|
|
#include "support/LAssert.h"
|
2002-08-14 16:11:55 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "BufferView.h"
|
2001-12-05 08:04:20 +00:00
|
|
|
|
|
|
|
#include <vector>
|
2001-02-14 15:00:50 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::max;
|
2001-12-05 08:04:20 +00:00
|
|
|
using std::endl;
|
2002-08-14 18:31:53 +00:00
|
|
|
using std::pair;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
namespace {
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
int getCols(string const & type)
|
2001-10-18 13:21:21 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type == "eqnarray")
|
|
|
|
return 3;
|
|
|
|
if (type == "align")
|
|
|
|
return 2;
|
|
|
|
if (type == "alignat")
|
|
|
|
return 2;
|
|
|
|
if (type == "xalignat")
|
|
|
|
return 2;
|
|
|
|
if (type == "xxalignat")
|
|
|
|
return 2;
|
2001-10-18 13:21:21 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-10-18 13:21:21 +00:00
|
|
|
|
|
|
|
// returns position of first relation operator in the array
|
|
|
|
// used for "intelligent splitting"
|
2002-01-08 13:31:14 +00:00
|
|
|
MathArray::size_type firstRelOp(MathArray const & ar)
|
2001-10-18 13:21:21 +00:00
|
|
|
{
|
|
|
|
for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it)
|
|
|
|
if ((*it)->isRelOp())
|
|
|
|
return it - ar.begin();
|
|
|
|
return ar.size();
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2001-10-18 13:21:21 +00:00
|
|
|
char const * star(bool numbered)
|
|
|
|
{
|
|
|
|
return numbered ? "" : "*";
|
|
|
|
}
|
2001-07-09 16:59:57 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
|
|
|
|
int typecode(string const & s)
|
2001-10-18 13:21:21 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (s == "none") return 0;
|
|
|
|
if (s == "simple") return 1;
|
|
|
|
if (s == "equation") return 2;
|
|
|
|
if (s == "eqnarray") return 3;
|
|
|
|
if (s == "align") return 4;
|
|
|
|
if (s == "alignat") return 5;
|
|
|
|
if (s == "xalignat") return 6;
|
|
|
|
if (s == "xxalignat") return 7;
|
|
|
|
if (s == "multline") return 8;
|
|
|
|
if (s == "gather") return 9;
|
|
|
|
lyxerr << "unknown hull type '" << s << "'\n";
|
|
|
|
return 0;
|
2002-03-21 17:42:56 +00:00
|
|
|
}
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
bool smaller(string const & s, string const & t)
|
2001-10-18 13:21:21 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
return typecode(s) < typecode(t);
|
2002-03-21 17:42:56 +00:00
|
|
|
}
|
2001-10-18 13:21:21 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
|
2001-10-18 13:21:21 +00:00
|
|
|
} // end anon namespace
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-09-04 08:48:23 +00:00
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
MathHullInset::MathHullInset()
|
2002-07-03 10:36:44 +00:00
|
|
|
: MathGridInset(1, 1), type_("none"), nonum_(1), label_(1)
|
2001-09-04 13:32:06 +00:00
|
|
|
{
|
|
|
|
setDefaults();
|
|
|
|
}
|
2001-09-04 08:48:23 +00:00
|
|
|
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
MathHullInset::MathHullInset(string const & type)
|
|
|
|
: MathGridInset(getCols(type), 1), type_(type), nonum_(1), label_(1)
|
2002-02-14 13:25:26 +00:00
|
|
|
{
|
|
|
|
setDefaults();
|
|
|
|
}
|
|
|
|
|
2002-07-18 11:02:33 +00:00
|
|
|
|
|
|
|
MathInset * MathHullInset::clone() const
|
2001-08-02 09:59:09 +00:00
|
|
|
{
|
2002-07-18 11:02:33 +00:00
|
|
|
return new MathHullInset(*this);
|
2001-08-02 09:59:09 +00:00
|
|
|
}
|
2001-09-04 08:48:23 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-18 11:02:33 +00:00
|
|
|
MathInset::mode_type MathHullInset::currentMode() const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2002-07-18 11:02:33 +00:00
|
|
|
if (type_ == "none")
|
|
|
|
return UNDECIDED_MODE;
|
|
|
|
// definitely math mode ...
|
|
|
|
return MATH_MODE;
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
bool MathHullInset::idxFirst(idx_type & idx, pos_type & pos) const
|
|
|
|
{
|
|
|
|
idx = 0;
|
|
|
|
pos = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathHullInset::idxLast(idx_type & idx, pos_type & pos) const
|
|
|
|
{
|
|
|
|
idx = nargs() - 1;
|
|
|
|
pos = cell(idx).size();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
char MathHullInset::defaultColAlign(col_type col)
|
2001-09-04 13:32:06 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "eqnarray")
|
|
|
|
return "rcl"[col];
|
|
|
|
if (typecode(type_) >= typecode("align"))
|
|
|
|
return "rl"[col & 1];
|
2001-09-04 13:32:06 +00:00
|
|
|
return 'c';
|
|
|
|
}
|
|
|
|
|
2001-09-11 10:58:17 +00:00
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
int MathHullInset::defaultColSpace(col_type col)
|
2001-09-04 13:32:06 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "align" || type_ == "alignat")
|
|
|
|
return 0;
|
|
|
|
if (type_ == "xalignat")
|
|
|
|
return (col & 1) ? 20 : 0;
|
|
|
|
if (type_ == "xxalignat")
|
|
|
|
return (col & 1) ? 40 : 0;
|
2001-11-28 13:09:40 +00:00
|
|
|
return 0;
|
2001-09-04 13:32:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-24 15:37:14 +00:00
|
|
|
char const * MathHullInset::standardFont() const
|
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "none")
|
2002-06-24 15:37:14 +00:00
|
|
|
return "lyxnochange";
|
|
|
|
return "mathnormal";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathHullInset::metrics(MathMetricsInfo & mi) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2002-08-07 08:36:31 +00:00
|
|
|
MathFontSetChanger dummy1(mi.base, standardFont());
|
|
|
|
MathStyleChanger dummy2(mi.base, display() ? LM_ST_DISPLAY : LM_ST_TEXT);
|
2002-06-04 09:06:04 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
// let the cells adjust themselves
|
2002-05-30 07:09:54 +00:00
|
|
|
MathGridInset::metrics(mi);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
if (display()) {
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.a += 12;
|
|
|
|
dim_.d += 12;
|
2002-03-21 17:42:56 +00:00
|
|
|
}
|
2001-03-06 17:44:53 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
if (numberedType()) {
|
2002-06-04 09:45:41 +00:00
|
|
|
MathFontSetChanger dummy(mi.base, "mathbf");
|
2001-06-25 00:06:33 +00:00
|
|
|
int l = 0;
|
2001-09-26 16:52:34 +00:00
|
|
|
for (row_type row = 0; row < nrows(); ++row)
|
2002-06-04 09:06:04 +00:00
|
|
|
l = max(l, mathed_string_width(mi.base.font, nicelabel(row)));
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
if (l)
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.w += 30 + l;
|
2001-02-16 09:25:43 +00:00
|
|
|
}
|
2001-09-03 11:38:04 +00:00
|
|
|
|
|
|
|
// make it at least as high as the current font
|
|
|
|
int asc = 0;
|
|
|
|
int des = 0;
|
2002-06-04 09:06:04 +00:00
|
|
|
math_font_max_dim(mi.base.font, asc, des);
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.a = max(dim_.a, asc);
|
|
|
|
dim_.d = max(dim_.d, des);
|
2002-07-08 06:39:40 +00:00
|
|
|
|
|
|
|
// for markers
|
2002-07-11 11:27:24 +00:00
|
|
|
metricsMarkers2();
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathHullInset::draw(MathPainterInfo & pi, int x, int y) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-08-07 08:36:31 +00:00
|
|
|
MathFontSetChanger dummy1(pi.base, standardFont());
|
|
|
|
MathStyleChanger dummy2(pi.base, display() ? LM_ST_DISPLAY : LM_ST_TEXT);
|
2002-07-08 06:39:40 +00:00
|
|
|
MathGridInset::draw(pi, x + 1, y);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
if (numberedType()) {
|
2001-10-19 17:46:13 +00:00
|
|
|
int const xx = x + colinfo_.back().offset_ + colinfo_.back().width_ + 20;
|
2001-09-26 16:52:34 +00:00
|
|
|
for (row_type row = 0; row < nrows(); ++row) {
|
2001-10-19 17:46:13 +00:00
|
|
|
int const yy = y + rowinfo_[row].offset_;
|
2002-06-24 15:37:14 +00:00
|
|
|
MathFontSetChanger dummy(pi.base, "mathrm");
|
|
|
|
drawStr(pi, pi.base.font, xx, yy, nicelabel(row));
|
2001-07-20 14:54:13 +00:00
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
2002-07-08 06:39:40 +00:00
|
|
|
|
2002-07-09 13:38:27 +00:00
|
|
|
drawMarkers2(pi, x, y);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2002-05-02 07:30:49 +00:00
|
|
|
|
2002-07-11 15:04:43 +00:00
|
|
|
void MathHullInset::metricsT(TextMetricsInfo const & mi) const
|
2002-03-18 11:45:53 +00:00
|
|
|
{
|
2002-05-02 07:30:49 +00:00
|
|
|
if (display()) {
|
|
|
|
MathGridInset::metricsT(mi);
|
2002-07-11 15:04:43 +00:00
|
|
|
} else {
|
2002-05-02 07:30:49 +00:00
|
|
|
ostringstream os;
|
|
|
|
WriteStream wi(os, false, true);
|
|
|
|
write(wi);
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.w = os.str().size();
|
|
|
|
dim_.a = 1;
|
|
|
|
dim_.d = 0;
|
2002-05-02 07:30:49 +00:00
|
|
|
}
|
2002-03-18 11:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 06:57:13 +00:00
|
|
|
void MathHullInset::drawT(TextPainter & pain, int x, int y) const
|
2002-03-18 11:45:53 +00:00
|
|
|
{
|
2002-05-02 07:30:49 +00:00
|
|
|
if (display()) {
|
|
|
|
MathGridInset::drawT(pain, x, y);
|
2002-07-11 15:04:43 +00:00
|
|
|
} else {
|
2002-05-02 07:30:49 +00:00
|
|
|
ostringstream os;
|
|
|
|
WriteStream wi(os, false, true);
|
|
|
|
write(wi);
|
|
|
|
pain.draw(x, y, os.str().c_str());
|
|
|
|
}
|
2002-03-18 11:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
string MathHullInset::label(row_type row) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-12-11 15:04:02 +00:00
|
|
|
row_type n = nrows();
|
|
|
|
lyx::Assert(row < n);
|
2001-06-25 00:06:33 +00:00
|
|
|
return label_[row];
|
|
|
|
}
|
|
|
|
|
2001-09-04 08:48:23 +00:00
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
void MathHullInset::label(row_type row, string const & label)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-08-08 14:22:44 +00:00
|
|
|
//lyxerr << "setting label '" << label << "' for row " << row << endl;
|
2002-03-21 17:42:56 +00:00
|
|
|
label_[row] = label;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
void MathHullInset::numbered(row_type row, bool num)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-03-21 17:42:56 +00:00
|
|
|
nonum_[row] = !num;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
bool MathHullInset::numbered(row_type row) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
return !nonum_[row];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
bool MathHullInset::ams() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-03-21 17:42:56 +00:00
|
|
|
return
|
2002-07-03 10:36:44 +00:00
|
|
|
type_ == "align" ||
|
|
|
|
type_ == "multline" ||
|
|
|
|
type_ == "gather" ||
|
|
|
|
type_ == "alignat" ||
|
|
|
|
type_ == "xalignat" ||
|
|
|
|
type_ == "xxalignat";
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
bool MathHullInset::display() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
return type_ != "simple" && type_ != "none";
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-02 13:35:05 +00:00
|
|
|
void MathHullInset::getLabelList(std::vector<string> & labels) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-09-26 16:52:34 +00:00
|
|
|
for (row_type row = 0; row < nrows(); ++row)
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!label_[row].empty() && nonum_[row] != 1)
|
2002-08-02 13:35:05 +00:00
|
|
|
labels.push_back(label_[row]);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
bool MathHullInset::numberedType() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "none")
|
2002-06-24 15:37:14 +00:00
|
|
|
return false;
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "simple")
|
2002-06-24 15:37:14 +00:00
|
|
|
return false;
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "xxalignat")
|
2001-06-25 00:06:33 +00:00
|
|
|
return false;
|
2001-09-26 16:52:34 +00:00
|
|
|
for (row_type row = 0; row < nrows(); ++row)
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!nonum_[row])
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
void MathHullInset::validate(LaTeXFeatures & features) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-11-19 15:34:11 +00:00
|
|
|
if (ams())
|
2002-01-10 10:05:45 +00:00
|
|
|
features.require("amsmath");
|
2001-11-19 15:34:11 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
// Validation is necessary only if not using AMS math.
|
2001-07-26 06:56:43 +00:00
|
|
|
// To be safe, we will always run mathedvalidate.
|
2001-06-25 00:06:33 +00:00
|
|
|
//if (features.amsstyle)
|
|
|
|
// return;
|
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
features.require("boldsymbol");
|
2001-07-13 14:54:56 +00:00
|
|
|
//features.binom = true;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
MathNestInset::validate(features);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-19 19:06:05 +00:00
|
|
|
void MathHullInset::header_write(WriteStream & os) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
bool n = numberedType();
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "none")
|
|
|
|
;
|
|
|
|
|
|
|
|
else if (type_ == "simple") {
|
|
|
|
os << '$';
|
|
|
|
if (cell(0).empty())
|
|
|
|
os << ' ';
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "equation") {
|
|
|
|
if (n)
|
|
|
|
os << "\\begin{equation" << star(n) << "}\n";
|
|
|
|
else
|
|
|
|
os << "\\[\n";
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "eqnarray" || type_ == "align")
|
|
|
|
os << "\\begin{" << type_ << star(n) << "}\n";
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-08-14 18:31:53 +00:00
|
|
|
else if (type_ == "alignat" || type_ == "xalignat")
|
2002-07-03 10:36:44 +00:00
|
|
|
os << "\\begin{" << type_ << star(n) << "}"
|
2002-07-17 15:57:03 +00:00
|
|
|
<< "{" << static_cast<unsigned int>((ncols() + 1)/2) << "}\n";
|
2002-08-14 18:31:53 +00:00
|
|
|
|
|
|
|
else if (type_ == "xxalignat")
|
2002-07-17 11:21:22 +00:00
|
|
|
os << "\\begin{" << type_ << "}"
|
2002-07-17 15:57:03 +00:00
|
|
|
<< "{" << static_cast<unsigned int>((ncols() + 1)/2) << "}\n";
|
2002-08-14 18:31:53 +00:00
|
|
|
|
|
|
|
else if (type_ == "multline" || type_ == "gather")
|
2002-07-03 10:36:44 +00:00
|
|
|
os << "\\begin{" << type_ << "}\n";
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-08-14 18:31:53 +00:00
|
|
|
else
|
2002-07-03 10:36:44 +00:00
|
|
|
os << "\\begin{unknown" << star(n) << "}";
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
void MathHullInset::footer_write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
bool n = numberedType();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "none")
|
|
|
|
os << "\n";
|
2001-07-06 12:09:32 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "simple")
|
|
|
|
os << '$';
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "equation")
|
|
|
|
if (n)
|
|
|
|
os << "\\end{equation" << star(n) << "}\n";
|
|
|
|
else
|
|
|
|
os << "\\]\n";
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "eqnarray" || type_ == "align" || type_ == "alignat"
|
|
|
|
|| type_ == "xalignat")
|
|
|
|
os << "\n\\end{" << type_ << star(n) << "}\n";
|
2001-09-04 14:56:30 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "xxalignat" || type_ == "multline" || type_ == "gather")
|
|
|
|
os << "\n\\end{" << type_ << "}\n";
|
2001-09-04 14:56:30 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else
|
|
|
|
os << "\\end{unknown" << star(n) << "}";
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
void MathHullInset::addRow(row_type row)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
nonum_.insert(nonum_.begin() + row + 1, !numberedType());
|
|
|
|
label_.insert(label_.begin() + row + 1, string());
|
|
|
|
MathGridInset::addRow(row);
|
|
|
|
}
|
|
|
|
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
void MathHullInset::delRow(row_type row)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
MathGridInset::delRow(row);
|
|
|
|
nonum_.erase(nonum_.begin() + row);
|
|
|
|
label_.erase(label_.begin() + row);
|
|
|
|
}
|
|
|
|
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2002-06-03 07:31:08 +00:00
|
|
|
void MathHullInset::addFancyCol(col_type col)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
if (type_ == "equation")
|
|
|
|
mutate("eqnarray");
|
2002-08-14 18:31:53 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "eqnarray") {
|
|
|
|
mutate("align");
|
|
|
|
addFancyCol(col);
|
|
|
|
}
|
|
|
|
|
2002-07-17 17:25:17 +00:00
|
|
|
else if (type_ == "align" || type_ == "alignat"
|
2002-08-14 18:31:53 +00:00
|
|
|
|| type_ == "xalignat" || type_ == "xxalignat")
|
2002-07-03 10:36:44 +00:00
|
|
|
MathGridInset::addCol(col);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2001-09-04 13:32:06 +00:00
|
|
|
|
2002-06-03 07:31:08 +00:00
|
|
|
void MathHullInset::delFancyCol(col_type col)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-08-14 18:31:53 +00:00
|
|
|
if (type_ == "alignat" || type_ == "xalignat" || type_ == "xxalignat")
|
2002-07-03 10:36:44 +00:00
|
|
|
MathGridInset::delCol(col);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
string MathHullInset::nicelabel(row_type row) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
if (nonum_[row])
|
|
|
|
return string();
|
|
|
|
if (label_[row].empty())
|
|
|
|
return string("(#)");
|
|
|
|
return "(" + label_[row] + ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:30:26 +00:00
|
|
|
void MathHullInset::glueall()
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
MathArray ar;
|
2001-09-26 16:52:34 +00:00
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
2002-07-30 13:56:02 +00:00
|
|
|
ar.append(cell(i));
|
2002-07-03 10:36:44 +00:00
|
|
|
*this = MathHullInset("simple");
|
2001-06-25 00:06:33 +00:00
|
|
|
cell(0) = ar;
|
2002-07-03 10:36:44 +00:00
|
|
|
setDefaults();
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2001-08-01 13:28:45 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
string const & MathHullInset::getType() const
|
2001-08-01 13:28:45 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
return type_;
|
2001-08-01 13:28:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
void MathHullInset::setType(string const & type)
|
2001-08-01 13:28:45 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
type_ = type;
|
2001-09-04 13:32:06 +00:00
|
|
|
setDefaults();
|
2001-08-01 13:28:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
void MathHullInset::mutate(string const & newtype)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
//lyxerr << "mutating from '" << type_ << "' to '" << newtype << "'\n";
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
// we try to move along the chain
|
2002-08-14 18:31:53 +00:00
|
|
|
// none <-> simple <-> equation <-> eqnarray
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
if (newtype == "dump") {
|
|
|
|
dump();
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (newtype == type_) {
|
|
|
|
// done
|
|
|
|
}
|
2001-07-09 16:59:57 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "none") {
|
|
|
|
setType("simple");
|
|
|
|
numbered(0, false);
|
|
|
|
mutate(newtype);
|
|
|
|
}
|
2001-08-07 12:02:21 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "simple") {
|
|
|
|
if (newtype == "none") {
|
|
|
|
setType("none");
|
|
|
|
} else {
|
|
|
|
setType("equation");
|
|
|
|
numbered(0, false);
|
|
|
|
mutate(newtype);
|
|
|
|
}
|
|
|
|
}
|
2001-07-09 16:59:57 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "equation") {
|
|
|
|
if (smaller(newtype, type_)) {
|
|
|
|
setType("simple");
|
|
|
|
mutate(newtype);
|
|
|
|
} else if (newtype == "eqnarray") {
|
|
|
|
MathGridInset::addCol(1);
|
|
|
|
MathGridInset::addCol(1);
|
|
|
|
|
|
|
|
// split it "nicely" on the firest relop
|
|
|
|
pos_type pos = firstRelOp(cell(0));
|
2002-07-30 13:56:02 +00:00
|
|
|
cell(1) = MathArray(cell(0).begin() + pos, cell(0).end());
|
2002-07-03 10:36:44 +00:00
|
|
|
cell(0).erase(pos, cell(0).size());
|
|
|
|
|
|
|
|
if (cell(1).size()) {
|
2002-07-30 13:56:02 +00:00
|
|
|
cell(2) = MathArray(cell(1).begin() + 1, cell(1).end());
|
2002-07-03 10:36:44 +00:00
|
|
|
cell(1).erase(1, cell(1).size());
|
|
|
|
}
|
|
|
|
setType("eqnarray");
|
|
|
|
mutate(newtype);
|
2002-08-08 12:45:38 +00:00
|
|
|
} else if (newtype == "multline" || newtype == "gather") {
|
2002-08-08 16:08:11 +00:00
|
|
|
setType(newtype);
|
2002-08-08 12:45:38 +00:00
|
|
|
numbered(0, false);
|
2002-08-14 18:31:53 +00:00
|
|
|
} else {
|
2002-07-03 10:36:44 +00:00
|
|
|
MathGridInset::addCol(1);
|
|
|
|
// split it "nicely"
|
|
|
|
pos_type pos = firstRelOp(cell(0));
|
|
|
|
cell(1) = cell(0);
|
|
|
|
cell(0).erase(pos, cell(0).size());
|
|
|
|
cell(1).erase(0, pos);
|
|
|
|
setType("align");
|
|
|
|
mutate(newtype);
|
|
|
|
}
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "eqnarray") {
|
|
|
|
if (smaller(newtype, type_)) {
|
|
|
|
// set correct (no)numbering
|
|
|
|
bool allnonum = true;
|
|
|
|
for (row_type row = 0; row < nrows(); ++row)
|
|
|
|
if (!nonum_[row])
|
|
|
|
allnonum = false;
|
|
|
|
|
|
|
|
// set first non-empty label
|
|
|
|
string label;
|
|
|
|
for (row_type row = 0; row < nrows(); ++row) {
|
|
|
|
if (!label_[row].empty()) {
|
|
|
|
label = label_[row];
|
2001-06-25 00:06:33 +00:00
|
|
|
break;
|
2001-07-09 16:59:57 +00:00
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
glueall();
|
|
|
|
nonum_[0] = allnonum;
|
|
|
|
label_[0] = label;
|
|
|
|
mutate(newtype);
|
|
|
|
} else { // align & Co.
|
|
|
|
for (row_type row = 0; row < nrows(); ++row) {
|
|
|
|
idx_type c = 3 * row + 1;
|
2002-07-30 13:56:02 +00:00
|
|
|
cell(c).append(cell(c + 1));
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
2002-07-03 10:36:44 +00:00
|
|
|
MathGridInset::delCol(2);
|
|
|
|
setType("align");
|
|
|
|
mutate(newtype);
|
|
|
|
}
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "align") {
|
|
|
|
if (smaller(newtype, type_)) {
|
|
|
|
MathGridInset::addCol(1);
|
|
|
|
setType("eqnarray");
|
|
|
|
mutate(newtype);
|
|
|
|
} else {
|
|
|
|
setType(newtype);
|
|
|
|
}
|
|
|
|
}
|
2001-09-04 14:56:30 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else if (type_ == "multline") {
|
|
|
|
if (newtype == "gather") {
|
|
|
|
setType("gather");
|
|
|
|
} else {
|
|
|
|
lyxerr << "mutation from '" << type_
|
|
|
|
<< "' to '" << newtype << "' not implemented"
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (type_ == "gather") {
|
|
|
|
if (newtype == "multline") {
|
|
|
|
setType("multline");
|
|
|
|
} else {
|
|
|
|
lyxerr << "mutation from '" << type_
|
|
|
|
<< "' to '" << newtype << "' not implemented" << endl;
|
|
|
|
}
|
|
|
|
}
|
2001-09-04 14:56:30 +00:00
|
|
|
|
2002-07-03 10:36:44 +00:00
|
|
|
else {
|
|
|
|
lyxerr << "mutation from '" << type_
|
|
|
|
<< "' to '" << newtype << "' not implemented" << endl;
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
}
|
2001-11-08 12:06:56 +00:00
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathHullInset::write(WriteStream & os) const
|
2001-11-08 12:06:56 +00:00
|
|
|
{
|
2001-12-05 08:04:20 +00:00
|
|
|
header_write(os);
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-11-08 12:06:56 +00:00
|
|
|
bool n = numberedType();
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-11-08 12:06:56 +00:00
|
|
|
for (row_type row = 0; row < nrows(); ++row) {
|
2002-03-21 17:42:56 +00:00
|
|
|
for (col_type col = 0; col < ncols(); ++col)
|
2001-12-05 08:04:20 +00:00
|
|
|
os << cell(index(row, col)) << eocString(col);
|
2001-11-08 12:06:56 +00:00
|
|
|
if (n) {
|
|
|
|
if (!label_[row].empty())
|
2001-12-05 08:04:20 +00:00
|
|
|
os << "\\label{" << label_[row] << "}";
|
2001-11-08 12:06:56 +00:00
|
|
|
if (nonum_[row])
|
|
|
|
os << "\\nonumber ";
|
|
|
|
}
|
2001-12-05 08:04:20 +00:00
|
|
|
os << eolString(row);
|
2001-11-08 12:06:56 +00:00
|
|
|
}
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-12-05 08:04:20 +00:00
|
|
|
footer_write(os);
|
2001-11-08 12:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathHullInset::normalize(NormalStream & os) const
|
2001-11-08 12:06:56 +00:00
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
os << "[formula " << type_ << " ";
|
2001-11-09 08:35:57 +00:00
|
|
|
MathGridInset::normalize(os);
|
2001-11-08 12:06:56 +00:00
|
|
|
os << "] ";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 18:02:20 +00:00
|
|
|
void MathHullInset::mathmlize(MathMLStream & os) const
|
|
|
|
{
|
|
|
|
MathGridInset::mathmlize(os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathHullInset::infoize(std::ostream & os) const
|
|
|
|
{
|
2002-07-03 10:36:44 +00:00
|
|
|
os << "Type: " << type_;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
|
|
|
|
2002-06-24 15:37:14 +00:00
|
|
|
|
2001-12-11 15:04:02 +00:00
|
|
|
void MathHullInset::check() const
|
|
|
|
{
|
|
|
|
lyx::Assert(nonum_.size() == nrows());
|
|
|
|
lyx::Assert(label_.size() == nrows());
|
|
|
|
}
|
2002-08-13 17:43:40 +00:00
|
|
|
|
|
|
|
|
2002-08-14 16:43:16 +00:00
|
|
|
void MathHullInset::doExtern
|
|
|
|
(FuncRequest const & func, idx_type & idx, pos_type & pos)
|
|
|
|
{
|
|
|
|
string lang;
|
|
|
|
string extra;
|
|
|
|
istringstream iss(func.argument.c_str());
|
|
|
|
iss >> lang >> extra;
|
|
|
|
if (extra.empty())
|
|
|
|
extra = "noextra";
|
|
|
|
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning temporarily disabled
|
|
|
|
//if (selection()) {
|
|
|
|
// MathArray ar;
|
|
|
|
// selGet(ar);
|
|
|
|
// lyxerr << "use selection: " << ar << "\n";
|
|
|
|
// insert(pipeThroughExtern(lang, extra, ar));
|
|
|
|
// return;
|
|
|
|
//}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
MathArray eq;
|
|
|
|
eq.push_back(MathAtom(new MathCharInset('=')));
|
|
|
|
|
|
|
|
// go to first item in line
|
|
|
|
idx -= idx % ncols();
|
|
|
|
pos = 0;
|
|
|
|
|
|
|
|
if (getType() == "simple") {
|
|
|
|
size_type pos = cell(idx).find_last(eq);
|
|
|
|
MathArray ar;
|
|
|
|
if (pos == cell(idx).size()) {
|
|
|
|
ar = cell(idx);
|
|
|
|
lyxerr << "use whole cell: " << ar << "\n";
|
|
|
|
} else {
|
|
|
|
ar = MathArray(cell(idx).begin() + pos + 1, cell(idx).end());
|
|
|
|
lyxerr << "use partial cell form pos: " << pos << "\n";
|
|
|
|
}
|
|
|
|
cell(idx).append(eq);
|
|
|
|
cell(idx).append(pipeThroughExtern(lang, extra, ar));
|
|
|
|
pos = cell(idx).size();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getType() == "equation") {
|
|
|
|
lyxerr << "use equation inset\n";
|
|
|
|
mutate("eqnarray");
|
|
|
|
MathArray & ar = cell(idx);
|
|
|
|
lyxerr << "use cell: " << ar << "\n";
|
|
|
|
cell(idx + 1) = eq;
|
|
|
|
cell(idx + 2) = pipeThroughExtern(lang, extra, ar);
|
|
|
|
// move to end of line
|
|
|
|
idx += 2;
|
|
|
|
pos = cell(idx).size();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
lyxerr << "use eqnarray\n";
|
|
|
|
idx -= idx % ncols();
|
|
|
|
idx += 2;
|
|
|
|
pos = 0;
|
|
|
|
MathArray ar = cell(idx);
|
|
|
|
lyxerr << "use cell: " << ar << "\n";
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning temporarily disabled
|
|
|
|
#endif
|
|
|
|
addRow(row(idx));
|
|
|
|
cell(idx + 2) = eq;
|
|
|
|
cell(idx + 3) = pipeThroughExtern(lang, extra, ar);
|
|
|
|
idx += 3;
|
|
|
|
pos = cell(idx).size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-13 17:43:40 +00:00
|
|
|
MathInset::result_type MathHullInset::dispatch
|
|
|
|
(FuncRequest const & cmd, idx_type & idx, pos_type & pos)
|
|
|
|
{
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
|
|
|
case LFUN_BREAKLINE:
|
|
|
|
if (type_ == "simple" || type_ == "equation") {
|
|
|
|
mutate("eqnarray");
|
|
|
|
idx = 1;
|
|
|
|
pos = 0;
|
|
|
|
return DISPATCHED_POP;
|
2002-08-14 18:31:53 +00:00
|
|
|
}
|
2002-08-13 17:43:40 +00:00
|
|
|
return MathGridInset::dispatch(cmd, idx, pos);
|
|
|
|
|
|
|
|
case LFUN_MATH_NUMBER:
|
|
|
|
//lyxerr << "toggling all numbers\n";
|
|
|
|
if (display()) {
|
|
|
|
//bv->lockedInsetStoreUndo(Undo::INSERT);
|
|
|
|
bool old = numberedType();
|
|
|
|
for (row_type row = 0; row < nrows(); ++row)
|
|
|
|
numbered(row, !old);
|
|
|
|
//bv->owner()->message(old ? _("No number") : _("Number"));
|
|
|
|
//updateLocal(bv, true);
|
|
|
|
}
|
2002-08-14 18:31:53 +00:00
|
|
|
return DISPATCHED;
|
|
|
|
|
|
|
|
case LFUN_MATH_NONUMBER:
|
2002-08-13 17:43:40 +00:00
|
|
|
if (display()) {
|
|
|
|
//bv->lockedInsetStoreUndo(Undo::INSERT);
|
|
|
|
bool old = numbered(row(idx));
|
|
|
|
//bv->owner()->message(old ? _("No number") : _("Number"));
|
|
|
|
numbered(row(idx), !old);
|
|
|
|
//updateLocal(bv, true);
|
|
|
|
}
|
2002-08-14 18:31:53 +00:00
|
|
|
return DISPATCHED;
|
2002-08-13 17:43:40 +00:00
|
|
|
|
2002-08-14 16:11:55 +00:00
|
|
|
case LFUN_INSERT_LABEL: {
|
|
|
|
row_type r = row(idx);
|
|
|
|
string old_label = label(r);
|
|
|
|
string new_label = cmd.argument;
|
|
|
|
|
|
|
|
if (new_label.empty()) {
|
|
|
|
string const default_label =
|
|
|
|
(lyxrc.label_init_length >= 0) ? "eq:" : "";
|
|
|
|
pair<bool, string> const res = old_label.empty()
|
|
|
|
? Alert::askForText(_("Enter new label to insert:"), default_label)
|
|
|
|
: Alert::askForText(_("Enter label:"), old_label);
|
|
|
|
if (!res.first)
|
|
|
|
break;
|
|
|
|
new_label = trim(res.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
//if (new_label == old_label)
|
|
|
|
// break; // Nothing to do
|
|
|
|
|
|
|
|
if (!new_label.empty())
|
|
|
|
numbered(r, true);
|
|
|
|
|
|
|
|
#warning FIXME: please check you really mean repaint() ... is it needed,
|
|
|
|
#warning and if so, should it be update() instead ?
|
|
|
|
if (!new_label.empty()
|
|
|
|
&& cmd.view()->ChangeRefsIfUnique(old_label, new_label))
|
|
|
|
cmd.view()->repaint();
|
|
|
|
|
|
|
|
label(r, new_label);
|
2002-08-14 18:31:53 +00:00
|
|
|
return DISPATCHED;
|
2002-08-14 16:11:55 +00:00
|
|
|
}
|
|
|
|
|
2002-08-14 15:13:07 +00:00
|
|
|
case LFUN_MATH_HALIGN:
|
|
|
|
case LFUN_MATH_VALIGN:
|
|
|
|
// we explicitly don't want the default behaviour here
|
|
|
|
return UNDISPATCHED;
|
|
|
|
|
2002-08-14 16:43:16 +00:00
|
|
|
case LFUN_MATH_EXTERN:
|
|
|
|
doExtern(cmd, idx, pos);
|
|
|
|
return DISPATCHED_POP;
|
|
|
|
|
2002-08-13 17:43:40 +00:00
|
|
|
default:
|
2002-08-14 15:13:07 +00:00
|
|
|
return MathGridInset::dispatch(cmd, idx, pos);
|
|
|
|
|
2002-08-13 17:43:40 +00:00
|
|
|
}
|
|
|
|
return UNDISPATCHED;
|
|
|
|
}
|