]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exfuncinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_exfuncinset.C
index f9c4f663aa3e91963e613ec6efc48167156cb4bf..a7079179c639d5e5c0a5630e0fb85fc07486010a 100644 (file)
@@ -5,58 +5,98 @@
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
+using std::auto_ptr;
+
 
 MathExFuncInset::MathExFuncInset(string const & name)
        : MathNestInset(1), name_(name)
 {}
 
 
-MathInset * MathExFuncInset::clone() const
+MathExFuncInset::MathExFuncInset(string const & name, MathArray const & ar)
+       : MathNestInset(1), name_(name)
 {
-       return new MathExFuncInset(*this);
+       cell(0) = ar;
 }
 
 
-void MathExFuncInset::metrics(MathMetricsInfo const & mi) const
+auto_ptr<InsetBase> MathExFuncInset::clone() const
 {
-       whichFont(font_, LM_TC_TEXTRM, mi);
-       mathed_string_dim(font_, name_, ascent_, descent_, width_);
+       return auto_ptr<InsetBase>(new MathExFuncInset(*this));
 }
 
 
-void MathExFuncInset::draw(Painter & pain, int x, int y) const
-{  
-       drawStr(pain, font_, x, y, name_);
+void MathExFuncInset::metrics(MetricsInfo & mi, Dimension & /*dim*/) const
+{
+       mathed_string_dim(mi.base.font, name_, dim_);
 }
 
 
-void MathExFuncInset::normalize(NormalStream & os) const
+void MathExFuncInset::draw(PainterInfo & pi, int x, int y) const
 {
-       os << '[' << name_ << ' ' << cell(0) << ']';
+       drawStrBlack(pi, x, y, name_);
 }
 
 
-void MathExFuncInset::maplize(MapleStream & os) const
+string MathExFuncInset::name() const
 {
-       os << name_ << '(' << cell(0) << ')';
+       return name_;
 }
 
 
-void MathExFuncInset::mathmlize(MathMLStream & os) const
+void MathExFuncInset::maple(MapleStream & os) const
 {
-       os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
+       if (name_ == "det")
+               os << "linalg[det](" << cell(0) << ')';
+       else
+               os << name_ << '(' << cell(0) << ')';
 }
 
 
-void MathExFuncInset::octavize(OctaveStream & os) const
+void MathExFuncInset::maxima(MaximaStream & os) const
 {
-       os << name_ << '(' << cell(0) << ')';
+       if (name_ == "det")
+               os << "determinant(" << cell(0) << ')';
+       else
+               os << name_ << '(' << cell(0) << ')';
+}
+
+
+string asMathematicaName(string const & name)
+{
+       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::mathematica(MathematicaStream & os) const
+{
+       os << asMathematicaName(name_) << '[' << cell(0) << ']';
 }
 
 
-void MathExFuncInset::write(WriteStream & os) const
+void MathExFuncInset::mathmlize(MathMLStream & os) const
 {
-       os << '\\' << name_ << '{' << cell(0) << '}';
+       os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
 }
 
 
+void MathExFuncInset::octave(OctaveStream & os) const
+{
+       os << name_ << '(' << cell(0) << ')';
+}