]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.C
remove unneeded member
[lyx.git] / src / mathed / math_macro.C
index 24d31eeccc6c9061218b431d9cbe986311ee8775..9983cf5f78b523af9c7425a1a17867bf75460d45 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  File:        math_macro.C
- *  Purpose:     Implementation of macro class for mathed 
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Purpose:     Implementation of macro class for mathed
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  Created:     November 1996
  *  Description: WYSIWYG math macros
  *
 #endif
 
 #include "math_macro.h"
-#include "array.h"
+#include "math_support.h"
+#include "math_extern.h"
+#include "math_macrotable.h"
+#include "math_macrotemplate.h"
+#include "math_mathmlstream.h"
+#include "math_streamstr.h"
 #include "support/lstrings.h"
 #include "support/LAssert.h"
 #include "debug.h"
-#include "mathed/support.h"
-#include "mathed/math_cursor.h"
-#include "math_macrotable.h"
-#include "math_macrotemplate.h"
-#include "Painter.h"
 #include "LaTeXFeatures.h"
 
-using std::endl;
 
-MathMacro::MathMacro(MathMacroTemplate const & t)
-       : MathNestInset(t.numargs(), t.name()), tmplate_(&t)
+using std::max;
+
+
+MathMacro::MathMacro(string const & name)
+       : MathNestInset(MathMacroTable::provide(name)->asMacroTemplate()->numargs()),
+               tmplate_(MathMacroTable::provide(name))
 {}
 
 
-MathMacro::MathMacro(MathMacro const & t)
-       : MathNestInset(t), tmplate_(t.tmplate_) // don't copy 'expanded_'!
+MathMacro::MathMacro(MathMacro const & m)
+       : MathNestInset(m),
+               tmplate_(m.tmplate_) // don't copy 'expanded_'!
 {}
 
 
@@ -49,146 +53,191 @@ MathInset * MathMacro::clone() const
 }
 
 
-void MathMacro::metrics(MathStyles st) const
+string const & MathMacro::name() const
 {
-       if (mathcursor && mathcursor->isInside(this)) {
-               expanded_ = tmplate_->xcell(0);
-               expanded_.metrics(st);
-               size_    = st;
+       return tmplate_->asMacroTemplate()->name();
+}
+
+
+bool MathMacro::defining() const
+{
+       return 0;
+       //return mathcursor && mathcursor->formula()->getInsetName() == name();
+}
+
+
+void MathMacro::expand() const
+{
+       expanded_ = tmplate_->xcell(tmplate_->cell(1).empty() ? 0 : 1);
+}
+
+
+void MathMacro::metrics(MathMetricsInfo & mi) const
+{
+       augmentFont(font_, "lyxtex");
+       mi_ = mi;
+
+       if (defining()) {
+               mathed_string_dim(font_, name(), ascent_, descent_, width_);
+               return;
+       }
+
+       if (editing()) {
+               expand();
+               expanded_.metrics(mi_);
                width_   = expanded_.width()   + 4;
                ascent_  = expanded_.ascent()  + 2;
                descent_ = expanded_.descent() + 2;
 
-               width_ +=  mathed_string_width(LM_TC_TEXTRM, size_, name_) + 10;
+               width_ +=  mathed_string_width(font_, name()) + 10;
 
                int lasc;
                int ldes;
                int lwid;
-               mathed_string_dim(LM_TC_TEXTRM, size_, "#1: ", lasc, ldes, lwid);
+               mathed_string_dim(font_, "#1: ", lasc, ldes, lwid);
 
-               for (int i = 0; i < nargs(); ++i) {
+               for (idx_type i = 0; i < nargs(); ++i) {
                        MathXArray const & c = xcell(i);
-                       c.metrics(st);
-                       width_    = std::max(width_, c.width() + lwid);
-                       descent_ += std::max(c.ascent(),  lasc) + 5;
-                       descent_ += std::max(c.descent(), ldes) + 5;
+                       c.metrics(mi_);
+                       width_    = max(width_, c.width() + lwid);
+                       descent_ += max(c.ascent(),  lasc) + 5;
+                       descent_ += max(c.descent(), ldes) + 5;
                }
-       } else {
-               expanded_ = tmplate_->xcell(0);
-               expanded_.data_.substitute(*this);
-               expanded_.metrics(st);
-               size_    = st;
-               width_   = expanded_.width()   + 6;
-               ascent_  = expanded_.ascent()  + 3;
-               descent_ = expanded_.descent() + 3;
+               return;
        }
+
+       expand();
+       expanded_.data().substitute(*this);
+       expanded_.metrics(mi_);
+       width_   = expanded_.width();
+       ascent_  = expanded_.ascent();
+       descent_ = expanded_.descent();
 }
 
 
-void MathMacro::draw(Painter & pain, int x, int y) const
+void MathMacro::draw(MathPainterInfo & pi, int x, int y) const
 {
-       xo(x);
-       yo(y);
+       metrics(mi_);
 
-       metrics(size());
+       LyXFont texfont;
+       augmentFont(texfont, "lyxtex");
 
-       LColor::color col;
-
-       if (mathcursor && mathcursor->isInside(this)) {
+       if (defining()) {
+               drawStr(pi, texfont, x, y, name());
+               return;
+       }
 
+       if (editing()) {
                int h = y - ascent() + 2 + expanded_.ascent();
-               drawStr(pain, LM_TC_TEXTRM, size(), x + 3, h, name_);
+               drawStr(pi, font_, x + 3, h, name());
 
-               int const w = mathed_string_width(LM_TC_TEXTRM, size(), name_);
-               expanded_.draw(pain, x + w + 12, h);
+               int const w = mathed_string_width(font_, name());
+               expanded_.draw(pi, x + w + 12, h);
                h += expanded_.descent();
 
                int lasc;
                int ldes;
                int lwid;
-               mathed_string_dim(LM_TC_TEXTRM, size_, "#1: ", lasc, ldes, lwid);
+               mathed_string_dim(font_, "#1: ", lasc, ldes, lwid);
 
-               for (int i = 0; i < nargs(); ++i) {
+               for (idx_type i = 0; i < nargs(); ++i) {
                        MathXArray const & c = xcell(i);
-                       h += std::max(c.ascent(), lasc) + 5;
-                       c.draw(pain, x + lwid, h);
+                       h += max(c.ascent(), lasc) + 5;
+                       c.draw(pi, x + lwid, h);
                        char str[] = "#1:";
-                       str[1] += i;
-                       drawStr(pain, LM_TC_TEX, size(), x + 3, h, str);
-                       h += std::max(c.descent(), ldes) + 5;
+                       str[1] += static_cast<char>(i);
+                       drawStr(pi, texfont, x + 3, h, str);
+                       h += max(c.descent(), ldes) + 5;
                }
-               col = LColor::red;
-       } else {
-               expanded_.draw(pain, x + 3, y);
-               col = LColor::black;
+               return;
        }
 
-       if (nargs() > 0)
-               pain.rectangle(x + 1, y - ascent() + 1, width() - 2, height() - 2, col);
+       expanded_.draw(pi, x, y);
 }
 
 
-void MathMacro::dump(std::ostream & os) const
+void MathMacro::dump() const
 {
        MathMacroTable::dump();
-       os << "\n macro: '" << this << "'\n";
-       os << " name: '" << name_ << "'\n";
-       os << " template: '" << tmplate_ << "'\n";
-       os << " template: '" << *tmplate_ << "'\n";
-       os << endl;
+       lyxerr << "\n macro: '" << this << "'\n";
+       lyxerr << " name: '" << name() << "'\n";
+       lyxerr << " template: '";
+       WriteStream wi(lyxerr);
+       tmplate_->write(wi);
+       lyxerr << "'\n";
+}
+
+
+bool MathMacro::idxUpDown(idx_type & idx, bool up) const
+{
+       pos_type pos;
+       return
+               up ? MathNestInset::idxLeft(idx, pos) : MathNestInset::idxRight(idx, pos);
 }
 
-void MathMacro::write(std::ostream & os, bool fragile) const
+
+bool MathMacro::idxLeft(idx_type &, pos_type &) const
 {
-       os << '\\' << name_;
-       for (int i = 0; i < nargs(); ++i) {
-               os << '{';
-               cell(i).write(os, fragile);
-               os << '}';
-       }
-       if (nargs() == 0) 
-               os << ' ';
+       return false;
 }
 
 
-void MathMacro::writeNormal(std::ostream & os) const
+bool MathMacro::idxRight(idx_type &, pos_type &) const
 {
-       os << "[macro " << name_ << " ";
-       for (int i = 0; i < nargs(); ++i) {
-               cell(i).writeNormal(os);
-               os << ' ';
-       }
-       os << "] ";
+       return false;
 }
 
 
-bool MathMacro::idxUp(int & idx, int & pos) const
+void MathMacro::validate(LaTeXFeatures & features) const
 {
-       return MathNestInset::idxLeft(idx, pos);
+       if (name() == "binom" || name() == "mathcircumflex")
+               features.require(name());
+       //MathInset::validate(features);
 }
 
 
-bool MathMacro::idxDown(int & idx, int & pos) const
+void MathMacro::maplize(MapleStream & os) const
 {
-       return MathNestInset::idxRight(idx, pos);
+       updateExpansion();
+       ::maplize(expanded_.data(), os);
 }
 
 
-bool MathMacro::idxLeft(int &, int &) const
+void MathMacro::mathmlize(MathMLStream & os) const
 {
-       return false;
+       updateExpansion();
+       ::mathmlize(expanded_.data(), os);
 }
 
 
-bool MathMacro::idxRight(int &, int &) const
+void MathMacro::octavize(OctaveStream & os) const
 {
-       return false;
+       updateExpansion();
+       ::octavize(expanded_.data(), os);
 }
 
 
-void MathMacro::validate(LaTeXFeatures & features) const
+void MathMacro::normalize(NormalStream & os) const
 {
-       if (name_ == "binom")
-               features.binom = true;
-       //MathInset::validate(features);
+       os << "[macro " << name() << " ";
+       for (idx_type i = 0; i < nargs(); ++i)
+               os << cell(i) << ' ';
+       os << ']';
+}
+
+
+void MathMacro::write(WriteStream & os) const
+{
+       os << '\\' << name();
+       for (idx_type i = 0; i < nargs(); ++i)
+               os << '{' << cell(i) << '}';
+       if (nargs() == 0)
+               os << ' ';
+}
+
+
+void MathMacro::updateExpansion() const
+{
+       expand();
+       expanded_.data().substitute(*this);
 }