]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.C
fix compilation error
[lyx.git] / src / mathed / math_macrotemplate.C
index cfb1b36b80b01465284ab6b9fa408766a2dace9a..22186a52ee52fff2d81898f46f026ba39f9957a9 100644 (file)
@@ -1,66 +1,90 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_macrotemplate.h"
-#include "math_macro.h"
-#include "macro_support.h"
-#include "support/LOstream.h"
-#include "support/LAssert.h"
+#include "math_mathmlstream.h"
+#include "frontends/Painter.h"
 #include "debug.h"
-#include "Painter.h"
 
-using namespace std;
 
-MathMacroTemplate::MathMacroTemplate() :
-       MathParInset(LM_ST_TEXT, "undefined", LM_OT_MACRO),
-       na_(0), users_()
+MathMacroTemplate::MathMacroTemplate()
+       : MathNestInset(2), numargs_(0), name_()
 {}
 
-MathMacroTemplate::MathMacroTemplate(string const & nm, int na) :
-       MathParInset(LM_ST_TEXT, nm, LM_OT_MACRO),
-       na_(na), users_()
-{}
+
+MathMacroTemplate::MathMacroTemplate(string const & nm, int numargs)
+       : MathNestInset(2), numargs_(numargs), name_(nm)
+{
+       if (numargs_ > 9)
+               lyxerr << "MathMacroTemplate::MathMacroTemplate: wrong # of arguments: "
+                       << numargs_ << std::endl;
+}
 
 
-int MathMacroTemplate::nargs() const
+MathInset * MathMacroTemplate::clone() const
 {
-       return na_;
+       //lyxerr << "cloning MacroTemplate!\n";
+       return new MathMacroTemplate(*this);
 }
 
 
-void MathMacroTemplate::WriteDef(ostream & os, bool fragile) const
+int MathMacroTemplate::numargs() const
 {
-       os << "\n\\newcommand{\\" << name << "}";
+       return numargs_;
+}
 
-       if (na_ > 0 )
-               os << "[" << na_ << "]";
 
-       os << "{";
-#ifdef WITH_WARNINGS
-#warning stupid cast
-#endif
-       const_cast<MathMacroTemplate *>(this)->Write(os, fragile);
-       os << "}\n";
+void MathMacroTemplate::numargs(int numargs)
+{
+       numargs_ = numargs;
+}
+
+
+string const & MathMacroTemplate::name() const
+{
+       return name_;
+}
+
+
+void MathMacroTemplate::metrics(MathMetricsInfo & mi) const
+{
+       xcell(0).metrics(mi);
+       xcell(1).metrics(mi);
+       width_   = xcell(0).width() + xcell(1).width() + 10;
+       ascent_  = std::max(xcell(0).ascent(),  xcell(1).ascent())  + 2;
+       descent_ = std::max(xcell(0).descent(), xcell(1).descent()) + 2;
 }
 
 
-void MathMacroTemplate::Metrics()
+void MathMacroTemplate::draw(MathPainterInfo & pi, int x, int y) const
 {
-       MathParInset::Metrics();
-       width   += 4;
-       ascent  += 2;
-       descent += 2;
+       int const w0 = xcell(0).width();
+       int const w1 = xcell(1).width();
+       xcell(0).draw(pi, x + 2, y + 1);
+       pi.pain.rectangle(x, y - ascent() + 1, w0 + 4, height(),
+                       LColor::blue);
+       xcell(1).draw(pi, x + 8 + w0, y + 1);
+       pi.pain.rectangle(x + w0 + 6 , y - ascent() + 1, w1 + 4,
+                       height(), LColor::blue);
 }
 
 
-void MathMacroTemplate::draw(Painter & pain, int x, int y)
+void MathMacroTemplate::write(WriteStream & os) const
 {
-       MathParInset::draw(pain, x + 2, y + 1);
-       int w = Width();
-       int a = Ascent();
-       int h = Height();
-       pain.rectangle(x, y - a, w, h, LColor::blue);
+       if (os.latex()) {
+               os << "\n\\newcommand{\\" << name_.c_str() << '}';
+               if (numargs_ > 0)
+                       os << '[' << numargs_ << ']';
+               os << '{' << cell(0) << "}\n";
+       } else {
+               // writing .lyx
+               os << "\n\\newcommand{\\" << name_.c_str() << '}';
+               if (numargs_ > 0)
+                       os << '[' << numargs_ << ']';
+               os << '{' << cell(0) << '}';
+               // write special .tex export only if necessary
+               if (!cell(1).empty())
+                       os << "\n{" << cell(1) << '}';
+       }
 }