]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.C
use stream-like syntax for LaTeX output
[lyx.git] / src / mathed / math_macrotemplate.C
index 6d64a524c6651073359bc6eb27f05dc1a71c9749..c217cd1b57c8bbc49056521b9d840bca2b91c24a 100644 (file)
@@ -7,19 +7,24 @@
 #include "debug.h"
 
 
-MathMacroTemplate::MathMacroTemplate() :
-       MathInset(1, "undefined", LM_OT_MACRO), numargs_(0)
+MathMacroTemplate::MathMacroTemplate()
+       : MathNestInset(1), numargs_(0), name_()
 {}
 
 
-MathMacroTemplate::MathMacroTemplate(string const & nm, int numargs) :
-       MathInset(1, nm, LM_OT_MACRO), numargs_(numargs)
-{}
+MathMacroTemplate::MathMacroTemplate(string const & nm, int numargs)
+       : MathNestInset(1), numargs_(numargs), name_(nm)
+{
+       if (numargs_ > 9) {
+               lyxerr << "MathMacroTemplate::MathMacroTemplate: wrong # of arguments: "
+                       << numargs_ << std::endl;
+       }
+}
 
 
 MathInset * MathMacroTemplate::clone() const
 {
-       lyxerr << "cloning MacroTemplate!\n";
+       //lyxerr << "cloning MacroTemplate!\n";
        return new MathMacroTemplate(*this);
 }
 
@@ -36,22 +41,24 @@ void MathMacroTemplate::numargs(int numargs)
 }
 
 
-void MathMacroTemplate::Write(std::ostream & os, bool fragile) const
+string const & MathMacroTemplate::name() const
 {
-       os << "\n\\newcommand{\\" << name_ << "}";
+       return name_;
+}
 
-       if (numargs_ > 0)
-               os << "[" << numargs_ << "]";
 
-       os << "{";
-       cell(0).Write(os, fragile);
-       os << "}\n";
+void MathMacroTemplate::write(MathWriteInfo & os) const
+{
+       os << "\n\\newcommand{\\" << name_ << '}';
+       if (numargs_ > 0)
+               os << '[' << numargs_ << ']';
+       os << '{' << cell(0) << "}\n";
 }
 
 
-void MathMacroTemplate::Metrics(MathStyles st)
+void MathMacroTemplate::metrics(MathMetricsInfo const & st) const
 {
-       xcell(0).Metrics(st);
+       xcell(0).metrics(st);
        size_    = st;
        width_   = xcell(0).width() + 4;
        ascent_  = xcell(0).ascent() + 2;
@@ -59,7 +66,7 @@ void MathMacroTemplate::Metrics(MathStyles st)
 }
 
 
-void MathMacroTemplate::draw(Painter & pain, int x, int y)
+void MathMacroTemplate::draw(Painter & pain, int x, int y) const
 {
        xo(x);
        yo(y);