]> 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 09e52cccf0e6fbdda0c4543f7526eb30eb316dfe..10223d75b15adf06231067900fa59fe24472da80 100644 (file)
 #endif
 
 #include "math_scriptinset.h"
-#include "support/LOstream.h"
+#include "math_support.h"
+#include "math_symbolinset.h"
+#include "math_mathmlstream.h"
+#include "support/LAssert.h"
+#include "debug.h"
 
 
-MathScriptInset::MathScriptInset(bool up, bool down)
-       : MathUpDownInset(up, down)
-{}
+using std::max;
+
+
+MathScriptInset::MathScriptInset()
+       : MathNestInset(3), limits_(0)
+{
+       script_[0] = false;
+       script_[1] = false;
+}
+
+
+MathScriptInset::MathScriptInset(bool 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
-{   
+{
        return new MathScriptInset(*this);
 }
 
 
-void MathScriptInset::WriteNormal(std::ostream & os) const
+MathScriptInset const * MathScriptInset::asScriptInset() const
+{
+       return this;
+}
+
+
+MathScriptInset * MathScriptInset::asScriptInset()
+{
+       return this;
+}
+
+
+bool MathScriptInset::idxFirst(idx_type & idx, pos_type & pos) const
+{
+       idx = 2;
+       pos = 0;
+       return true;
+}
+
+
+bool MathScriptInset::idxLast(idx_type & idx, pos_type & pos) const
+{
+       idx = 2;
+       pos = nuc().size();
+       return true;
+}
+
+
+MathXArray const & MathScriptInset::down() const
+{
+       return xcell(0);
+}
+
+
+MathXArray & MathScriptInset::down()
+{
+       return xcell(0);
+}
+
+
+MathXArray const & MathScriptInset::up() const
+{
+       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
 {
-       if (up()) {
-               os << "[superscript ";
-               cell(0).WriteNormal(os);
-               os << "] ";
+       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();
        }
-       if (down()) {
-               os << "[subscript ";
-               cell(1).WriteNormal(os);
-               os << "] ";
+       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;
+       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;
+}
+
+
+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
+{
+       return false;
+}
+
+
+bool MathScriptInset::idxUpDown(idx_type & idx, pos_type & pos, bool up,
+       int) const
+{
+       if ((idx == 1 && up) || (idx == 0 && !up))
+               return false;
+
+       // in nuclues?
+       if (idx == 2) {
+               idx = up;
+               pos = 0;
+       } else {
+               idx = 2;
+               pos = cell(2).size();   
+       }
+       return true;
+}
+
+
+void MathScriptInset::write(WriteStream & os) const
+{
+       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
+               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() << ')';
+}
+
+
+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::idxDelete(int & idx, bool & popit, bool & deleteit)
+void MathScriptInset::mathmlize( MathMLStream & os) const
 {
-       if (idx == 0) 
-               up(false);
+       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
-               down(false);
-       popit = true;
-       deleteit = !(up() || down());
+               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::octavize(OctaveStream & os) const
+{
+       if (nuc().size())
+               os << nuc().data();
+       if (hasDown() && down().size())
+               os << '[' << down().data() << ']';
+       if (hasUp() && up().size())
+               os << "^(" << up().data() << ')';
+}
+
+
+void MathScriptInset::infoize(std::ostream & os) const
+{
+       os << "Scripts";
+       if (limits_)
+               os << (limits_ == 1 ? ", Displayed limits" : ", Inlined limits");
 }