]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.C
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_macroarg.C
index 57d0e04c247d1217407945ca25f46557c9b4f198..8033d70b84fb7bf58ab289b0078202cf49424c8f 100644 (file)
@@ -1,71 +1,79 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include "math_macro.h"
 #include "math_macroarg.h"
-#include "mathed/support.h"
-#include "Lsstream.h"
+#include "math_macro.h"
+#include "math_defs.h"
+#include "math_mathmlstream.h"
+#include "math_support.h"
 #include "debug.h"
 
 
-using namespace std;
+using std::endl;
+
 
-MathMacroArgument::MathMacroArgument(int n)
-       : MathedInset(string(), LM_OT_MACRO_ARG, LM_ST_TEXT),
-               number_(n)
+MathMacroArgument::MathMacroArgument(int n, MathTextCodes code)
+       : MathNestInset(1), number_(n), expanded_(false), code_(code)
 {
        if (n < 1 || n > 9) {
                lyxerr << "MathMacroArgument::MathMacroArgument: wrong Argument id: "
                        << n << endl;
-               lyx::Assert(0);
        }
+       str_[0] = '#';
+       str_[1] = static_cast<unsigned char>('0' + n);
+       str_[2] = '\0';
 }
 
-MathedInset * MathMacroArgument::Clone()
-{
-       //return new MathMacroArgument(*this);
-       return this;
-}
 
-int MathMacroArgument::number() const
+MathInset * MathMacroArgument::clone() const
 {
-       return number_;
+       return new MathMacroArgument(*this);
 }
 
-void MathMacroArgument::substitute(MathMacro * /*m*/)
+
+void MathMacroArgument::write(WriteStream & os) const
 {
-       lyxerr << "Calling MathMacroArgument::substitute!\n";
-       //return m->arg(number_)->Clone();
+       if (code_ == LM_TC_MIN)
+               os << str_;
+       else
+               os << '\\' << math_font_name(code_) << '{' << str_ << '}';
 }
 
 
-void MathMacroArgument::draw(Painter & pain, int x, int y)
+void MathMacroArgument::metrics(MathMetricsInfo const & mi) const
 {
-       char str[] = "#0";
-       str[1] += number_; 
-       drawStr(pain, LM_TC_TEX, size(), x, y, str);
+       whichFont(font_, LM_TC_TEX, mi);
+       if (expanded_) {
+               xcell(0).metrics(mi);
+               width_   = xcell(0).width();
+               ascent_  = xcell(0).ascent();
+               descent_ = xcell(0).descent();
+       } else
+               mathed_string_dim(font_, str_, ascent_, descent_, width_);
 }
 
 
-void MathMacroArgument::Metrics()
+void MathMacroArgument::draw(Painter & pain, int x, int y) const
 {
-       char str[] = "#0";
-       str[1] += number_; 
-       width = mathed_string_width(LM_TC_TEX, size(), str);
-       mathed_string_height(LM_TC_TEX, size(), str, ascent, descent);
+       if (expanded_)
+               xcell(0).draw(pain, x, y);
+       else
+               drawStr(pain, font_, x, y, str_);
 }
 
 
-void MathMacroArgument::Write(std::ostream & os, bool /*fragile*/)
+void MathMacroArgument::normalize(NormalStream & os) const
 {
-       os << '#' << number_ << ' ';
+       os << "[macroarg " << str_ << "] ";
 }
 
 
-void MathMacroArgument::WriteNormal(std::ostream & os)
+void MathMacroArgument::substitute(MathMacro const & m)
 {
-       os << "{macroarg " << number_ << "} ";
+       cell(0) = m.cell(number_ - 1);
+       if (code_ != LM_TC_MIN)
+               for (MathArray::iterator it = cell(0).begin(); it != cell(0).end(); ++it)
+                       it->nucleus()->handleFont(code_);
+       expanded_ = true;
 }