]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exfuncinset.C
fix #1073
[lyx.git] / src / mathed / math_exfuncinset.C
index 3ca79da57f1f19731f680d3b5dbca095b9f1776e..e81c032fb7dbcffb7ee71ce2b6f69f3b5932079f 100644 (file)
@@ -1,10 +1,10 @@
-#include "math_exfuncinset.h"
-#include "support.h"
-#include "debug.h"
-#include "support/LOstream.h"
 
+#include <config.h>
 
-using std::ostream;
+#include "math_exfuncinset.h"
+#include "math_support.h"
+#include "math_mathmlstream.h"
+#include "math_streamstr.h"
 
 
 MathExFuncInset::MathExFuncInset(string const & name)
@@ -12,44 +12,90 @@ MathExFuncInset::MathExFuncInset(string const & name)
 {}
 
 
+MathExFuncInset::MathExFuncInset(string const & name, MathArray const & ar)
+       : MathNestInset(1), name_(name)
+{
+       cell(0) = ar;
+}
+
+
 MathInset * MathExFuncInset::clone() const
 {
        return new MathExFuncInset(*this);
 }
 
 
-void MathExFuncInset::write(MathWriteInfo & os) const
+void MathExFuncInset::metrics(MetricsInfo & mi) const
+{
+       mathed_string_dim(mi.base.font, name_, dim_);
+}
+
+
+void MathExFuncInset::draw(PainterInfo & pi, int x, int y) const
+{
+       drawStrBlack(pi, x, y, name_);
+}
+
+
+string MathExFuncInset::name() const
+{
+       return name_;
+}
+
+
+void MathExFuncInset::maple(MapleStream & os) const
+{
+       if (name_ == "det")
+               os << "linalg[det](" << cell(0) << ')';
+       else
+               os << name_ << '(' << cell(0) << ')';
+}
+
+
+void MathExFuncInset::maxima(MaximaStream & os) const
 {
-       os << '\\' << name_ << '{';
-       cell(0).write(os);
-       os << '}';
+       if (name_ == "det")
+               os << "determinant(" << cell(0) << ')';
+       else
+               os << name_ << '(' << cell(0) << ')';
 }
 
 
-void MathExFuncInset::writeNormal(ostream & os) const
+string asMathematicaName(string const & name)
 {
-       os << "[" << name_ << ' ';
-       cell(0).writeNormal(os);
-       os << "] ";
+       if (name == "sin")    return "Sin";
+       if (name == "sinh")   return "Sinh";
+       if (name == "arcsin") return "ArcSin";
+       if (name == "cos")    return "Cos";
+       if (name == "cosh")   return "Cosh";
+       if (name == "arcos")  return "ArcCos";
+       if (name == "tan")    return "Tan";
+       if (name == "tanh")   return "Tanh";
+       if (name == "arctan") return "ArcTan";
+       if (name == "cot")    return "Cot";
+       if (name == "coth")   return "Coth";
+       if (name == "csc")    return "Csc";
+       if (name == "sec")    return "Sec";
+       if (name == "exp")    return "Exp";
+       if (name == "log")    return "Log";
+       if (name == "ln" )    return "Log";
+       return name;
 }
 
 
-void MathExFuncInset::metrics(MathMetricsInfo const & mi) const
+void MathExFuncInset::mathematica(MathematicaStream & os) const
 {
-       mi_ = mi;
-       mathed_string_dim(LM_TC_TEXTRM, mi_, name_, ascent_, descent_, width_);
-       lyxerr << "should not happen\n";
+       os << asMathematicaName(name_) << '[' << cell(0) << ']';
 }
 
 
-void MathExFuncInset::draw(Painter & pain, int x, int y) const
-{  
-       drawStr(pain, LM_TC_TEXTRM, mi_, x, y, name_);
-       lyxerr << "should not happen\n";
+void MathExFuncInset::mathmlize(MathMLStream & os) const
+{
+       os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
 }
 
 
-void MathExFuncInset::octavize(OctaveStream & os) const
+void MathExFuncInset::octave(OctaveStream & os) const
 {
-       os << name_.c_str() << '(' << cell(0) << ')';
+       os << name_ << '(' << cell(0) << ')';
 }