]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_scriptinset.C
no special treatment for scriptinsets
[lyx.git] / src / mathed / math_scriptinset.C
index a8bf9d6b7b64d1c0489437d7c13406c3bc6ba661..10223d75b15adf06231067900fa59fe24472da80 100644 (file)
@@ -1,18 +1,42 @@
-#include <config.h>
-#include "debug.h"
-#include "support.h"
-#include "support/LOstream.h"
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_scriptinset.h"
+#include "math_support.h"
+#include "math_symbolinset.h"
+#include "math_mathmlstream.h"
+#include "support/LAssert.h"
+#include "debug.h"
+
+
+using std::max;
+
+
+MathScriptInset::MathScriptInset()
+       : MathNestInset(3), limits_(0)
+{
+       script_[0] = false;
+       script_[1] = false;
+}
 
 
 MathScriptInset::MathScriptInset(bool up)
-       : MathNestInset(1), up_(up)
-{}
+       : MathNestInset(3), limits_(0)
+{
+       script_[0] = !up;
+       script_[1] = up;
+}
+
+
+MathScriptInset::MathScriptInset(MathAtom const & at, bool up)
+       : MathNestInset(3), limits_(0)
+{
+       script_[0] = !up;
+       script_[1] = up;
+       cell(2).push_back(at);
+}
+
 
 
 MathInset * MathScriptInset::clone() const
@@ -20,112 +44,423 @@ MathInset * MathScriptInset::clone() const
        return new MathScriptInset(*this);
 }
 
-#if 0
 
-bool MathScriptInset::idxUp(int & idx, int & pos) const
+MathScriptInset const * MathScriptInset::asScriptInset() const
 {
-       if (idx == 0 || !up()) 
-               return false;
-       idx = 0;
-       pos = 0;
-       return true;
+       return this;
 }
 
-bool MathScriptInset::idxDown(int & idx, int & pos) const
+
+MathScriptInset * MathScriptInset::asScriptInset()
 {
-       if (idx == 1 || !down()) 
-               return false;
-       idx = 1;
-       pos = 0;
-       return true;
+       return this;
 }
 
-bool MathScriptInset::idxFirst(int & idx, int & pos) const
+
+bool MathScriptInset::idxFirst(idx_type & idx, pos_type & pos) const
 {
-       idx = up() ? 0 : 1;
+       idx = 2;
        pos = 0;
        return true;
 }
 
-bool MathScriptInset::idxLast(int & idx, int & pos) const
+
+bool MathScriptInset::idxLast(idx_type & idx, pos_type & pos) const
 {
-       idx = down() ? 1 : 0;
-       pos = cell(idx).size();
+       idx = 2;
+       pos = nuc().size();
        return true;
 }
 
 
-bool MathScriptInset::idxFirstUp(int & idx, int & pos) const
+MathXArray const & MathScriptInset::down() const
 {
-       if (!up()) 
-               return false;
-       idx = 0;
-       pos = 0;
-       return true;
+       return xcell(0);
 }
 
 
-bool MathScriptInset::idxFirstDown(int & idx, int & pos) const
+MathXArray & MathScriptInset::down()
 {
-       if (!down()) 
-               return false;
-       idx = 1;
-       pos = 0;
-       return true;
+       return xcell(0);
 }
 
 
-bool MathScriptInset::idxLastUp(int & idx, int & pos) const
+MathXArray const & MathScriptInset::up() const
 {
-       if (!up()) 
+       return xcell(1);
+}
+
+
+MathXArray & MathScriptInset::up()
+{
+       return xcell(1);
+}
+
+
+void MathScriptInset::ensure(bool up)
+{
+       script_[up] = true;
+}
+
+
+MathXArray const & MathScriptInset::nuc() const
+{
+       return xcell(2);
+}
+
+
+MathXArray & MathScriptInset::nuc()
+{
+       return xcell(2);
+}
+
+
+int MathScriptInset::dy0() const
+{
+       int nd = ndes();
+       if (!hasDown())
+               return nd;
+       int des = down().ascent();
+       if (hasLimits())
+               des += nd + 2;
+       else
+               des = max(des, nd);
+       return des;
+}
+
+
+int MathScriptInset::dy1() const
+{
+       int na = nasc();
+       if (!hasUp())
+               return na;
+       int asc = up().descent();
+       if (hasLimits())
+               asc += na + 2;
+       else
+               asc = max(asc, na);
+       asc = max(asc, mathed_char_ascent(font_, 'I'));
+       return asc;
+}
+
+
+int MathScriptInset::dx0() const
+{
+       lyx::Assert(hasDown());
+       return hasLimits() ? (dim_.w - down().width()) / 2 : nwid();
+}
+
+
+int MathScriptInset::dx1() const
+{
+       lyx::Assert(hasUp());
+       return hasLimits() ? (dim_.w - up().width()) / 2 : nwid();
+}
+
+
+int MathScriptInset::dxx() const
+{
+       return hasLimits() ? (dim_.w - nwid()) / 2  :  0;
+}
+
+
+int MathScriptInset::nwid() const
+{
+       return nuc().size() ? nuc().width() : mathed_char_width(font_, '.');
+}
+
+
+int MathScriptInset::nasc() const
+{
+       return nuc().size() ? nuc().ascent() : mathed_char_ascent(font_, 'I');
+}
+
+
+int MathScriptInset::ndes() const
+{
+       return nuc().size() ? nuc().descent() : mathed_char_descent(font_, 'I');
+}
+
+
+void MathScriptInset::metrics(MathMetricsInfo & mi) const
+{
+       MathNestInset::metrics(mi);
+       MathScriptChanger dummy(mi.base);
+       dim_.w = 0;
+       if (hasLimits()) {
+               dim_.w = nwid();
+               if (hasUp())
+                       dim_.w = max(dim_.w, up().width());
+               if (hasDown())
+                       dim_.w = max(dim_.w, down().width());
+       } else {
+               if (hasUp())
+                       dim_.w = max(dim_.w, up().width());
+               if (hasDown())
+                       dim_.w = max(dim_.w, down().width());
+               dim_.w += nwid();
+       }
+       dim_.a = dy1() + (hasUp() ? up().ascent() : 0);
+       dim_.d = dy0() + (hasDown() ? down().descent() : 0);
+       metricsMarkers2();
+}
+
+
+void MathScriptInset::draw(MathPainterInfo & pi, int x, int y) const
+{
+       if (nuc().size())
+               nuc().draw(pi, x + dxx(), y);
+       else if (editing())
+               drawStr(pi, font_, x + dxx(), y, ".");
+       MathScriptChanger dummy(pi.base);
+       if (hasUp())
+               up().draw(pi, x + dx1(), y - dy1());
+       if (hasDown())
+               down().draw(pi, x + dx0(), y + dy0());
+       drawMarkers2(pi, x, y);
+}
+
+
+void MathScriptInset::metricsT(TextMetricsInfo const & mi) const
+{
+       if (hasUp())
+               up().metricsT(mi);
+       if (hasDown())
+               down().metricsT(mi);
+       nuc().metricsT(mi);
+}
+
+
+void MathScriptInset::drawT(TextPainter & pain, int x, int y) const
+{
+       if (nuc().size())
+               nuc().drawT(pain, x + dxx(), y);
+       if (hasUp())
+               up().drawT(pain, x + dx1(), y - dy1());
+       if (hasDown())
+               down().drawT(pain, x + dx0(), y + dy0());
+}
+
+
+
+bool MathScriptInset::hasLimits() const
+{
+       // obvious cases
+       if (limits_ == 1)
+               return true;
+       if (limits_ == -1)
+               return false;
+
+       // we can only display limits if the nucleus wants some
+       if (!nuc().size())
                return false;
-       idx = 0;
-       pos = cell(idx).size();
+       if (!nuc().back()->isScriptable())
+               return false;
+
+       // per default \int has limits beside the \int even in displayed formulas
+       if (nuc().back()->asSymbolInset())
+               if (nuc().back()->asSymbolInset()->name().find("int") != string::npos)
+                       return false;
+
+       // assume "real" limits for everything else
        return true;
 }
 
 
-bool MathScriptInset::idxLastDown(int & idx, int & pos) const
+void MathScriptInset::removeEmptyScripts()
+{
+       for (int i = 0; i <= 1; ++i)
+               if (script_[i] && cell(i).size() == 0) {
+                       cell(i).clear();
+                       script_[i] = false;
+               }
+}
+
+
+void MathScriptInset::removeScript(bool up)
+{
+       cell(up).clear();
+       script_[up] = false;
+}
+
+
+bool MathScriptInset::has(bool up) const
+{
+       return script_[up];
+}
+
+
+bool MathScriptInset::empty() const
+{
+       return !script_[0] && !script_[1] && cell(2).empty();
+}
+
+
+bool MathScriptInset::hasUp() const
+{
+       return script_[1];
+}
+
+
+bool MathScriptInset::hasDown() const
+{
+       return script_[0];
+}
+
+
+bool MathScriptInset::idxRight(idx_type &, pos_type &) const
+{
+       return false;
+}
+
+
+bool MathScriptInset::idxLeft(idx_type &, pos_type &) const
 {
-       if (!down()) 
+       return false;
+}
+
+
+bool MathScriptInset::idxUpDown(idx_type & idx, pos_type & pos, bool up,
+       int) const
+{
+       if ((idx == 1 && up) || (idx == 0 && !up))
                return false;
-       idx = 1;
-       pos = cell(idx).size();
+
+       // in nuclues?
+       if (idx == 2) {
+               idx = up;
+               pos = 0;
+       } else {
+               idx = 2;
+               pos = cell(2).size();   
+       }
        return true;
 }
 
-void MathScriptInset::idxDelete(int & idx, bool & popit, bool & deleteit)
+
+void MathScriptInset::write(WriteStream & os) const
 {
-       if (idx == 0) 
-               up(false);
+       if (nuc().size()) {
+               os << nuc().data();
+               if (nuc().back()->takesLimits()) {
+                       if (limits_ == -1)
+                               os << "\\nolimits ";
+                       if (limits_ == 1)
+                               os << "\\limits ";
+               }
+       } else {
+               if (os.firstitem())
+                       lyxerr[Debug::MATHED] << "suppressing {} when writing\n";
+               else
+                       os << "{}";
+       }
+
+       if (hasDown() && down().size())
+               os << "_{" << down().data() << '}';
+
+       if (hasUp() && up().size())
+               os << "^{" << up().data() << '}';
+}
+
+
+void MathScriptInset::normalize(NormalStream & os) const
+{
+       bool d = hasDown() && down().size();
+       bool u = hasUp() && up().size();
+
+       if (u && d)
+               os << "[subsup ";
+       else if (u)
+               os << "[sup ";
+       else if (d)
+               os << "[sub ";
+
+       if (nuc().size())
+               os << nuc().data() << ' ';
        else
-               down(false);
-       popit = true;
-       deleteit = !(up() || down());
+               os << "[par]";
+
+       if (u && d)
+               os << down().data() << ' ' << up().data() << ']';
+       else if (d)
+               os << down().data() << ']';
+       else if (u)
+               os << up().data() << ']';
+}
+
+
+void MathScriptInset::maplize(MapleStream & os) const
+{
+       if (nuc().size())
+               os << nuc().data();
+       if (hasDown() && down().size())
+               os << '[' << down().data() << ']';
+       if (hasUp() && up().size())
+               os << "^(" << up().data() << ')';
 }
 
-#endif
 
+void MathScriptInset::mathematicize(MathematicaStream & os) const
+{
+       bool d = hasDown() && down().size();
+       bool u = hasUp() && up().size();
+
+       if (nuc().size()) {
+               if (d) 
+                       os << "Subscript[" << nuc().data();
+               else
+                       os << nuc().data();
+       }
+
+       if (u)
+               os << "^(" << up().data() << ")";
+
+       if (nuc().size())
+               if (d)
+                       os << "," << down().data() << "]"; 
+}
 
-void MathScriptInset::write(std::ostream & os, bool fragile) const
+
+void MathScriptInset::mathmlize( MathMLStream & os) const
 {
-       cell(0).write(os, fragile);
+       bool d = hasDown() && down().size();
+       bool u = hasUp() && up().size();
+
+       if (u && d)
+               os << MTag("msubsup");
+       else if (u)
+               os << MTag("msup");
+       else if (d)
+               os << MTag("msub");
+
+       if (nuc().size())
+               os << nuc().data();
+       else
+               os << "<mrow/>";
+
+       if (u && d)
+               os << down().data() << up().data() << ETag("msubsup");
+       else if (u)
+               os << up().data() << ETag("msup");
+       else if (d)
+               os << down().data() << ETag("msub");
 }
 
 
-void MathScriptInset::metrics(MathStyles st) const
+void MathScriptInset::octavize(OctaveStream & os) const
 {
-       size_    = st;
-       xcell(0).metrics(st);   
-       width_   = xcell(0).width();
-       ascent_  = xcell(0).ascent();
-       descent_ = xcell(0).descent();
+       if (nuc().size())
+               os << nuc().data();
+       if (hasDown() && down().size())
+               os << '[' << down().data() << ']';
+       if (hasUp() && up().size())
+               os << "^(" << up().data() << ')';
 }
 
 
-void MathScriptInset::draw(Painter & pain, int x, int y) const
+void MathScriptInset::infoize(std::ostream & os) const
 {
-       xo(x);
-       yo(y);
-       xcell(0).draw(pain, x, y);
+       os << "Scripts";
+       if (limits_)
+               os << (limits_ == 1 ? ", Displayed limits" : ", Inlined limits");
 }