math-extern: some support for things like d/dx

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3031 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-11-15 14:14:37 +00:00
parent ea35e1c460
commit a31e65aa9f
7 changed files with 316 additions and 201 deletions

View File

@ -6,9 +6,14 @@
MathExIntInset::MathExIntInset(string const & name) MathExIntInset::MathExIntInset(string const & name)
: MathNestInset(2), symbol_(name), scripts_(new MathScriptInset) : MathNestInset(4), symbol_(name)
{} {}
// 0 - core
// 1 - diff
// 2 - lower
// 3 - upper
MathInset * MathExIntInset::clone() const MathInset * MathExIntInset::clone() const
{ {
@ -16,18 +21,6 @@ MathInset * MathExIntInset::clone() const
} }
void MathExIntInset::scripts(MathAtom const & at)
{
scripts_ = at;
}
MathAtom & MathExIntInset::scripts()
{
return scripts_;
}
void MathExIntInset::symbol(string const & symbol) void MathExIntInset::symbol(string const & symbol)
{ {
symbol_ = symbol; symbol_ = symbol;
@ -37,17 +30,15 @@ void MathExIntInset::symbol(string const & symbol)
bool MathExIntInset::hasScripts() const bool MathExIntInset::hasScripts() const
{ {
// take empty upper bound as "no scripts" // take empty upper bound as "no scripts"
return !scripts_->asScriptInset()->up().data_.empty(); return !cell(3).empty();
} }
void MathExIntInset::normalize(NormalStream & os) const void MathExIntInset::normalize(NormalStream & os) const
{ {
os << '[' << symbol_.c_str() << ' ' << cell(0) << ' ' << cell(1); os << '[' << symbol_.c_str() << ' ' << cell(0) << ' ' << cell(1) << ' '
if (hasScripts()) << cell(2) << ' ' << cell(3) << ']';
os << ' ' << scripts_.nucleus();
os << ']';
} }
@ -71,10 +62,8 @@ void MathExIntInset::maplize(MapleStream & os) const
else else
os << '1'; os << '1';
os << ',' << cell(1); os << ',' << cell(1);
if (hasScripts()) { if (hasScripts())
MathScriptInset * p = scripts_->asScriptInset(); os << '=' << cell(2) << ".." << cell(3);
os << '=' << p->down().data_ << ".." << p->up().data_;
}
os << ')'; os << ')';
} }
@ -82,9 +71,9 @@ void MathExIntInset::maplize(MapleStream & os) const
void MathExIntInset::mathmlize(MathMLStream & os) const void MathExIntInset::mathmlize(MathMLStream & os) const
{ {
MathSymbolInset * sym = new MathSymbolInset(symbol_.c_str()); MathSymbolInset * sym = new MathSymbolInset(symbol_.c_str());
if (hasScripts()) //if (hasScripts())
scripts_->asScriptInset()->mathmlize(sym, os); // mathmlize(sym, os);
else //else
sym->mathmlize(os); sym->mathmlize(os);
delete sym; delete sym;
os << cell(0) << "<mo> &InvisibleTimes; </mo>" os << cell(0) << "<mo> &InvisibleTimes; </mo>"

View File

@ -5,7 +5,7 @@
// \int_l^u f(x) dx in one block (as opposed to 'f','(','x',')' or 'f','x') // \int_l^u f(x) dx in one block (as opposed to 'f','(','x',')' or 'f','x')
// or \sum, \prod... for interfacing external programs // or \sum, \prod... for interfacing external programs
#include "math_scriptinset.h" #include "math_nestinset.h"
// cell(0) is stuff before the 'd', cell(1) the stuff after // cell(0) is stuff before the 'd', cell(1) the stuff after
class MathExIntInset : public MathNestInset { class MathExIntInset : public MathNestInset {
@ -15,10 +15,6 @@ public:
/// ///
MathInset * clone() const; MathInset * clone() const;
/// ///
void scripts(MathAtom const &);
///
MathAtom & scripts();
///
void symbol(string const &); void symbol(string const &);
/// ///
void metrics(MathMetricsInfo const & st) const; void metrics(MathMetricsInfo const & st) const;
@ -39,8 +35,6 @@ private:
/// ///
string symbol_; string symbol_;
///
MathAtom scripts_;
}; };
#endif #endif

View File

@ -17,6 +17,7 @@
#include "math_scriptinset.h" #include "math_scriptinset.h"
#include "math_stringinset.h" #include "math_stringinset.h"
#include "math_symbolinset.h" #include "math_symbolinset.h"
#include "Lsstream.h"
#include "debug.h" #include "debug.h"
@ -36,6 +37,26 @@ typedef MathInset * ReplaceArgumentFunc(const MathArray & ar);
// try to extract a super/subscript
// modify iterator position to point behind the thing
bool extractScript(MathArray & ar,
MathArray::iterator & pos, MathArray::iterator last)
{
// nothing to get here
if (pos == last)
return false;
// is this a scriptinset?
if (!(*pos)->asScriptInset())
return false;
// it is a scriptinset, use it.
ar.push_back(*pos);
++pos;
return true;
}
// try to extract an "argument" to some function. // try to extract an "argument" to some function.
// returns position behind the argument // returns position behind the argument
MathArray::iterator extractArgument(MathArray & ar, MathArray::iterator extractArgument(MathArray & ar,
@ -61,13 +82,9 @@ MathArray::iterator extractArgument(MathArray & ar,
// if the next item is a subscript, it most certainly belongs to the // if the next item is a subscript, it most certainly belongs to the
// thing we have // thing we have
if ((*pos)->asScriptInset()) { extractScript(ar, pos, last);
ar.push_back(*pos);
// go ahead if possible
++pos;
if (pos == last) if (pos == last)
return pos; return pos;
}
// but it might be more than that. // but it might be more than that.
// FIXME: not implemented // FIXME: not implemented
@ -96,39 +113,38 @@ MathScriptInset const * asScript(MathArray::const_iterator it)
// returns sequence of char with same code starting at it up to end // returns sequence of char with same code starting at it up to end
// it might be less, though... // it might be less, though...
string charSequence(MathArray::const_iterator it, MathArray::const_iterator end) MathArray::const_iterator charSequence(MathArray::const_iterator it,
MathArray::const_iterator end, string & s, MathTextCodes & c)
{ {
string s; MathCharInset const * p = (*it)->asCharInset();
MathCharInset const * p = it->nucleus()->asCharInset(); c = p->code();
if (p) { for (; it != end; ++it) {
for (MathTextCodes c = p->code(); it != end; ++it) { p = (*it)->asCharInset();
p = it->nucleus()->asCharInset();
if (!p || p->code() != c) if (!p || p->code() != c)
break; break;
s += p->getChar(); s += p->getChar();
} }
} return it;
return s;
} }
void extractStrings(MathArray & dat) void extractStrings(MathArray & ar)
{ {
//lyxerr << "\nStrings from: " << ar << "\n"; //lyxerr << "\nStrings from: " << ar << "\n";
MathArray ar; for (MathArray::size_type i = 0; i < ar.size(); ++i) {
MathArray::const_iterator it = dat.begin(); MathArray::iterator it = ar.begin() + i;
while (it != dat.end()) { if (!(*it)->asCharInset())
if (it->nucleus() && it->nucleus()->asCharInset()) { continue;
string s = charSequence(it, dat.end());
MathTextCodes c = it->nucleus()->asCharInset()->code(); // create proper string inset
ar.push_back(MathAtom(new MathStringInset(s, c))); MathStringInset * p = new MathStringInset;
it += s.size(); MathArray::const_iterator
} else { jt = charSequence(it, ar.end(), p->str_, p->code_);
ar.push_back(*it);
++it; // clean up
(*it).reset(p);
ar.erase(i + 1, jt - ar.begin());
} }
}
ar.swap(dat);
//lyxerr << "\nStrings to: " << ar << "\n"; //lyxerr << "\nStrings to: " << ar << "\n";
} }
@ -156,19 +172,38 @@ void extractMatrices(MathArray & ar)
// convert this inset somehow to a string // convert this inset somehow to a string
string extractString(MathInset * p) bool extractString(MathInset * p, string & str)
{ {
if (p && p->getChar()) if (!p)
return string(1, p->getChar()); return false;
if (p && p->asStringInset()) if (p->getChar()) {
return p->asStringInset()->str(); str = string(1, p->getChar());
return string(); return true;
}
if (p->asStringInset()) {
str = p->asStringInset()->str();
return true;
}
return false;
} }
bool stringTest(MathInset * p, const string & str) // convert this inset somehow to a number
bool extractNumber(MathArray const & ar, int & i)
{ {
return extractString(p) == str; string s;
MathTextCodes c;
charSequence(ar.begin(), ar.end(), s, c);
std::istringstream is(s);
is >> i;
return is;
}
bool testString(MathInset * p, const string & str)
{
string s;
return extractString(p, s) && str == s;
} }
@ -223,23 +258,59 @@ void replaceNested(
} }
//
// split scripts into seperate super- and subscript insets. sub goes in
// front of super...
//
void splitScripts(MathArray & ar)
{
lyxerr << "\nScripts from: " << ar << "\n";
for (MathArray::size_type i = 0; i < ar.size(); ++i) {
MathArray::iterator it = ar.begin() + i;
// is this script inset?
MathScriptInset * p = (*it)->asScriptInset();
if (!p)
continue;
// no problem if we don't have both...
if (!p->hasUp() || !p->hasDown())
continue;
// create extra script inset and move superscript over
MathScriptInset * q = new MathScriptInset;
q->ensure(true);
q->up().data_.swap(p->up().data_);
p->removeScript(true);
// insert new inset behind
++i;
ar.insert(i, MathAtom(q));
}
lyxerr << "\nScripts to: " << ar << "\n";
}
// //
// search deliminiters // search deliminiters
// //
bool openParanTest(MathInset * p) bool testOpenParan(MathInset * p)
{ {
return stringTest(p, "("); return testString(p, "(");
} }
bool closeParanTest(MathInset * p) bool testCloseParan(MathInset * p)
{ {
return stringTest(p, ")"); return testString(p, ")");
} }
MathInset * delimReplacement(const MathArray & ar) MathInset * replaceDelims(const MathArray & ar)
{ {
MathDelimInset * del = new MathDelimInset("(", ")"); MathDelimInset * del = new MathDelimInset("(", ")");
del->cell(0) = ar; del->cell(0) = ar;
@ -251,7 +322,7 @@ MathInset * delimReplacement(const MathArray & ar)
void extractDelims(MathArray & ar) void extractDelims(MathArray & ar)
{ {
lyxerr << "\nDelims from: " << ar << "\n"; lyxerr << "\nDelims from: " << ar << "\n";
replaceNested(ar, openParanTest, closeParanTest, delimReplacement); replaceNested(ar, testOpenParan, testCloseParan, replaceDelims);
lyxerr << "\nDelims to: " << ar << "\n"; lyxerr << "\nDelims to: " << ar << "\n";
} }
@ -273,36 +344,34 @@ void extractFunctions(MathArray & ar)
lyxerr << "\nFunctions from: " << ar << "\n"; lyxerr << "\nFunctions from: " << ar << "\n";
for (MathArray::size_type i = 0; i + 1 < ar.size(); ++i) { for (MathArray::size_type i = 0; i + 1 < ar.size(); ++i) {
MathArray::iterator it = ar.begin() + i; MathArray::iterator it = ar.begin() + i;
// is this a well known function name?
MathFuncInset * func = (*it)->asFuncInset();
string name;
if (func)
name = func->name();
else {
// is this a user defined function?
// guess so, if this is a "string" and it is followed by
// a DelimInset
//name = extractString((*it)->nucleus());
//if (name.size() && it + 1
//if ((*it
// FIXME
continue;
}
// do we have an exponent?
// simply skippping the postion does the right thing:
// 'sin' '^2' 'x' -> 'sin(x)' '^2'
MathArray::iterator jt = it + 1; MathArray::iterator jt = it + 1;
if (MathScriptInset * script = (*jt)->asScriptInset()) {
// allow superscripts only string name;
if (script->hasDown()) // is it a function?
if ((*it)->asFuncInset()) {
// it certainly is if it is well known...
name = (*it)->asFuncInset()->name();
} else {
// is this a user defined function?
// it it probably not, if it doesn't have a name.
if (!extractString((*it).nucleus(), name))
continue; continue;
++jt; // it is not if it has no argument
if (jt == ar.end()) if (jt == ar.end())
continue; continue;
// guess so, if this is followed by
// a DelimInset with a single item in the cell
MathDelimInset * del = (*jt)->asDelimInset();
if (!del || del->cell(0).size() != 1)
continue;
// fall trough into main branch
} }
// do we have an exponent like in
// 'sin' '^2' 'x' -> 'sin(x)' '^2'
MathArray exp;
extractScript(exp, jt, ar.end());
// create a proper inset as replacement // create a proper inset as replacement
MathExFuncInset * p = new MathExFuncInset(name); MathExFuncInset * p = new MathExFuncInset(name);
@ -313,7 +382,10 @@ void extractFunctions(MathArray & ar)
(*it).reset(p); (*it).reset(p);
// remove the source of the argument from the array // remove the source of the argument from the array
ar.erase(jt, st); ar.erase(it + 1, st);
// re-insert exponent
ar.insert(i + 1, exp);
lyxerr << "\nFunctions to: " << ar << "\n"; lyxerr << "\nFunctions to: " << ar << "\n";
} }
} }
@ -323,21 +395,21 @@ void extractFunctions(MathArray & ar)
// search integrals // search integrals
// //
bool symbolTest(MathInset * p, string const & name) bool testSymbol(MathInset * p, string const & name)
{ {
return p->asSymbolInset() && p->asSymbolInset()->name() == name; return p->asSymbolInset() && p->asSymbolInset()->name() == name;
} }
bool intSymbolTest(MathInset * p) bool testIntSymbol(MathInset * p)
{ {
return symbolTest(p, "int"); return testSymbol(p, "int");
} }
bool intDiffTest(MathInset * p) bool testIntDiff(MathInset * p)
{ {
return stringTest(p, "d"); return testString(p, "d");
} }
@ -354,12 +426,12 @@ void extractIntegrals(MathArray & ar)
MathArray::iterator it = ar.begin() + i; MathArray::iterator it = ar.begin() + i;
// is this a integral name? // is this a integral name?
if (!intSymbolTest(it->nucleus())) if (!testIntSymbol(it->nucleus()))
continue; continue;
// search 'd' // search 'd'
MathArray::iterator jt = MathArray::iterator jt =
endNestSearch(it, ar.end(), intSymbolTest, intDiffTest); endNestSearch(it, ar.end(), testIntSymbol, testIntDiff);
// something sensible found? // something sensible found?
if (jt == ar.end()) if (jt == ar.end())
@ -368,16 +440,27 @@ void extractIntegrals(MathArray & ar)
// create a proper inset as replacement // create a proper inset as replacement
MathExIntInset * p = new MathExIntInset("int"); MathExIntInset * p = new MathExIntInset("int");
// collect scripts // collect subscript if any
MathArray::iterator st = it + 1; MathArray::iterator st = it + 1;
if ((*st)->asScriptInset()) { if (st != ar.end())
p->scripts(*st); if (MathScriptInset * sub = (*st)->asScriptInset())
p->cell(0) = MathArray(st + 1, jt); if (sub->hasDown()) {
} else { p->cell(2) = sub->down().data_;
p->cell(0) = MathArray(st, jt); ++st;
} }
// use the atom behind the 'd' as differential // collect superscript if any
if (st != ar.end())
if (MathScriptInset * sup = (*st)->asScriptInset())
if (sup->hasUp()) {
p->cell(3) = sup->up().data_;
++st;
}
// core ist part from behind the scripts to the 'd'
p->cell(0) = MathArray(st, jt);
// use the "thing" behind the 'd' as differential
MathArray::iterator tt = extractArgument(p->cell(1), jt + 1, ar.end()); MathArray::iterator tt = extractArgument(p->cell(1), jt + 1, ar.end());
// remove used parts // remove used parts
@ -392,21 +475,15 @@ void extractIntegrals(MathArray & ar)
// search sums // search sums
// //
bool sumSymbolTest(MathInset * p) bool testSumSymbol(MathInset * p)
{ {
return p->asSymbolInset() && p->asSymbolInset()->name() == "sum"; return testSymbol(p, "sum");
} }
bool equalSign(MathInset * p) bool testEqualSign(MathAtom const & at)
{ {
return stringTest(p, "="); return testString(at.nucleus(), "=");
}
bool equalSign1(MathAtom const & at)
{
return equalSign(at.nucleus());
} }
@ -424,34 +501,39 @@ void extractSums(MathArray & ar)
MathArray::iterator it = ar.begin() + i; MathArray::iterator it = ar.begin() + i;
// is this a sum name? // is this a sum name?
if (!sumSymbolTest(it->nucleus())) if (!testSumSymbol(it->nucleus()))
continue; continue;
// create a proper inset as replacement // create a proper inset as replacement
MathExIntInset * p = new MathExIntInset("sum"); MathExIntInset * p = new MathExIntInset("sum");
// collect scripts // collect lower bound and summation index
MathArray::iterator st = it + 1; MathArray::iterator st = it + 1;
if (st != ar.end() && (*st)->asScriptInset()) { if (st != ar.end())
p->scripts(*st); if (MathScriptInset * sub = (*st)->asScriptInset())
++st; if (sub->hasDown()) {
// try to figure out the summation index from the subscript // try to figure out the summation index from the subscript
MathScriptInset * script = p->scripts()->asScriptInset(); MathArray & ar = sub->down().data_;
if (script->hasDown()) {
MathArray & ar = script->down().data_;
MathArray::iterator it = MathArray::iterator it =
std::find_if(ar.begin(), ar.end(), &equalSign1); std::find_if(ar.begin(), ar.end(), &testEqualSign);
if (it != ar.end()) { if (it != ar.end()) {
// we found a '=', use everything in front of that as index, // we found a '=', use everything in front of that as index,
// and everything behind as start value // and everything behind as lower index
p->cell(1) = MathArray(ar.begin(), it); p->cell(1) = MathArray(ar.begin(), it);
ar.erase(ar.begin(), it + 1); p->cell(2) = MathArray(it + 1, ar.end());
} else { } else {
// use everything as summation index, don't use scripts. // use everything as summation index, don't use scripts.
p->cell(1) = ar; p->cell(1) = ar;
} }
++st;
} }
// collect upper bound
if (st != ar.end())
if (MathScriptInset * sup = (*st)->asScriptInset())
if (sup->hasUp()) {
p->cell(3) = sup->up().data_;
++st;
} }
// use some behind the script as core // use some behind the script as core
@ -470,26 +552,40 @@ void extractSums(MathArray & ar)
// //
// tests for 'd' or '\partial' // tests for 'd' or '\partial'
bool diffItemTest(MathInset * p) bool testDiffItem(MathAtom const & at)
{ {
return stringTest(p, "d"); return testString(at.nucleus(), "d");
} }
bool diffItemTest(MathArray const & ar) bool testDiffArray(MathArray const & ar)
{ {
return ar.size() && diffItemTest(ar.front().nucleus()); return ar.size() && testDiffItem(ar.front());
} }
bool diffFracTest(MathInset * p) bool testDiffFrac(MathInset * p)
{ {
return MathFracInset * f = p->asFracInset();
p->asFracInset() && return f && testDiffArray(f->cell(0)) && testDiffArray(f->cell(1));
diffItemTest(p->asFracInset()->cell(0)) &&
diffItemTest(p->asFracInset()->cell(1));
} }
// is this something like ^number?
bool extractDiffExponent(MathArray::iterator it, int & i)
{
if (!(*it)->asScriptInset())
return false;
string s;
if (!extractString((*it).nucleus(), s))
return false;
std::istringstream is(s);
is >> i;
return is;
}
void extractDiff(MathArray & ar) void extractDiff(MathArray & ar)
{ {
lyxerr << "\nDiffs from: " << ar << "\n"; lyxerr << "\nDiffs from: " << ar << "\n";
@ -497,7 +593,7 @@ void extractDiff(MathArray & ar)
MathArray::iterator it = ar.begin() + i; MathArray::iterator it = ar.begin() + i;
// is this a "differential fraction"? // is this a "differential fraction"?
if (!diffFracTest(it->nucleus())) if (!testDiffFrac(it->nucleus()))
continue; continue;
MathFracInset * f = (*it)->asFracInset(); MathFracInset * f = (*it)->asFracInset();
@ -507,7 +603,7 @@ void extractDiff(MathArray & ar)
} }
// create a proper diff inset // create a proper diff inset
MathDiffInset * p = new MathDiffInset; MathDiffInset * diff = new MathDiffInset;
// collect function, let jt point behind last used item // collect function, let jt point behind last used item
MathArray::iterator jt = it + 1; MathArray::iterator jt = it + 1;
@ -515,37 +611,47 @@ void extractDiff(MathArray & ar)
MathArray & numer = f->cell(0); MathArray & numer = f->cell(0);
if (numer.size() > 1 && numer.at(1)->asScriptInset()) { if (numer.size() > 1 && numer.at(1)->asScriptInset()) {
// this is something like d^n f(x) / d... or d^n / d... // this is something like d^n f(x) / d... or d^n / d...
n = 1; // FIXME // FIXME
n = 1;
if (numer.size() > 2) if (numer.size() > 2)
p->cell(0) = MathArray(numer.begin() + 2, numer.end()); diff->cell(0) = MathArray(numer.begin() + 2, numer.end());
else else
jt = extractArgument(p->cell(0), jt, ar.end()); jt = extractArgument(diff->cell(0), jt, ar.end());
} else { } else {
// simply d f(x) / d... or d/d... // simply d f(x) / d... or d/d...
if (numer.size() > 1) if (numer.size() > 1)
p->cell(0) = MathArray(numer.begin() + 1, numer.end()); diff->cell(0) = MathArray(numer.begin() + 1, numer.end());
else else
jt = extractArgument(p->cell(0), jt, ar.end()); jt = extractArgument(diff->cell(0), jt, ar.end());
} }
// collect denominator // collect denominator parts
MathArray & denom = f->cell(1); MathArray & denom = f->cell(1);
for (MathArray::iterator dt = denom.begin(); dt + 1 != denom.end(); ) { for (MathArray::iterator dt = denom.begin(); dt != denom.end(); ) {
if (!diffItemTest((*dt).nucleus())) { // find the next 'd'
lyxerr << "extractDiff: should not happen 2\n"; MathArray::iterator et = std::find_if(dt + 1, denom.end(), &testDiffItem);
return;
// point before this
MathArray::iterator st = et - 1;
MathScriptInset * script = (*st)->asScriptInset();
if (script && script->hasUp()) {
// things like d.../dx^n
int mult = 1;
if (extractNumber(script->up().data_, mult)) {
lyxerr << "mult: " << mult << endl;
for (int i = 0; i < mult; ++i)
diff->addDer(MathArray(dt + 1, st));
} }
MathArray diff; } else {
dt = extractArgument(diff, dt + 1, denom.end()); // just d.../dx
p->addDer(diff); diff->addDer(MathArray(dt + 1, et));
// safeguard }
if (dt == denom.end()) dt = et;
break;
} }
// cleanup // cleanup
ar.erase(it + 1, jt); ar.erase(it + 1, jt);
(*it).reset(p); (*it).reset(diff);
} }
lyxerr << "\nDiffs to: " << ar << "\n"; lyxerr << "\nDiffs to: " << ar << "\n";
} }
@ -556,6 +662,7 @@ void extractDiff(MathArray & ar)
void extractStructure(MathArray & ar) void extractStructure(MathArray & ar)
{ {
splitScripts(ar);
extractMatrices(ar); extractMatrices(ar);
extractDelims(ar); extractDelims(ar);
extractFunctions(ar); extractFunctions(ar);

View File

@ -21,19 +21,6 @@ MathInset * MathSpaceInset::clone() const
} }
void MathSpaceInset::write(WriteStream & os) const
{
if (space_ >= 0 && space_ < 6)
os << '\\' << latex_mathspace[space_] << ' ';
}
void MathSpaceInset::normalize(NormalStream & os) const
{
os << "[space " << space_ << "] ";
}
void MathSpaceInset::metrics(MathMetricsInfo const & mi) const void MathSpaceInset::metrics(MathMetricsInfo const & mi) const
{ {
width_ = space_ ? space_ * 2 : 2; width_ = space_ ? space_ * 2 : 2;
@ -70,3 +57,30 @@ void MathSpaceInset::incSpace()
{ {
space_ = (space_ + 1) % 6; space_ = (space_ + 1) % 6;
} }
void MathSpaceInset::maplize(MapleStream & os) const
{
os << ' ';
}
void MathSpaceInset::octavize(OctaveStream & os) const
{
os << ' ';
}
void MathSpaceInset::normalize(NormalStream & os) const
{
os << "[space " << space_ << "] ";
}
void MathSpaceInset::write(WriteStream & os) const
{
if (space_ >= 0 && space_ < 6)
os << '\\' << latex_mathspace[space_] << ' ';
}

View File

@ -17,19 +17,24 @@ public:
/// ///
MathInset * clone() const; MathInset * clone() const;
/// ///
void draw(Painter &, int x, int y) const;
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
///
void metrics(MathMetricsInfo const & st) const;
///
MathSpaceInset const * asSpaceInset() const { return this; } MathSpaceInset const * asSpaceInset() const { return this; }
/// ///
MathSpaceInset * asSpaceInset() { return this; } MathSpaceInset * asSpaceInset() { return this; }
/// ///
void incSpace(); void incSpace();
///
void metrics(MathMetricsInfo const & st) const;
///
void draw(Painter &, int x, int y) const;
///
void normalize(NormalStream &) const;
///
void maplize(MapleStream &) const;
///
void octavize(OctaveStream &) const;
///
void write(WriteStream & os) const;
private: private:
/// ///
int space_; int space_;

View File

@ -13,6 +13,10 @@
#include "debug.h" #include "debug.h"
MathStringInset::MathStringInset()
: str_(), code_(LM_TC_MIN)
{}
MathStringInset::MathStringInset(string const & s, MathTextCodes t) MathStringInset::MathStringInset(string const & s, MathTextCodes t)
: str_(s), code_(t) : str_(s), code_(t)
{} {}

View File

@ -14,6 +14,8 @@
class MathStringInset : public MathInset { class MathStringInset : public MathInset {
public: public:
///
MathStringInset();
/// ///
MathStringInset(string const & s, MathTextCodes t = LM_TC_TEXTRM); MathStringInset(string const & s, MathTextCodes t = LM_TC_TEXTRM);
/// ///
@ -44,7 +46,7 @@ public:
/// ///
void write(WriteStream & os) const; void write(WriteStream & os) const;
private: public:
/// the string /// the string
string str_; string str_;
/// the font to be used on screen /// the font to be used on screen