]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exfuncinset.C
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_exfuncinset.C
index ceb4d621fba05baace15c1e9d99a57f1ed08e52e..1655e7fd958052f7fab5ed9d3b8dcc607e88a0ff 100644 (file)
@@ -1,9 +1,24 @@
+/**
+ * \file math_exfuncinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "math_exfuncinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
+#include "math_support.h"
+
+
+using std::string;
+using std::auto_ptr;
 
 
 MathExFuncInset::MathExFuncInset(string const & name)
@@ -11,49 +26,90 @@ MathExFuncInset::MathExFuncInset(string const & 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 & mi) const
+auto_ptr<InsetBase> MathExFuncInset::doClone() const
 {
-       mathed_string_dim(mi.base.font, name_, ascent_, descent_, width_);
+       return auto_ptr<InsetBase>(new MathExFuncInset(*this));
 }
 
 
-void MathExFuncInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathExFuncInset::metrics(MetricsInfo & mi, Dimension & /*dim*/) const
+{
+       mathed_string_dim(mi.base.font, name_, dim_);
+}
+
+
+void MathExFuncInset::draw(PainterInfo & pi, int x, int y) const
 {
        drawStrBlack(pi, x, y, name_);
 }
 
 
-void MathExFuncInset::normalize(NormalStream & os) const
+string MathExFuncInset::name() const
 {
-       os << '[' << name_ << ' ' << cell(0) << ']';
+       return name_;
 }
 
 
-void MathExFuncInset::maplize(MapleStream & os) const
+void MathExFuncInset::maple(MapleStream & os) const
 {
-       os << name_ << '(' << cell(0) << ')';
+       if (name_ == "det")
+               os << "linalg[det](" << cell(0) << ')';
+       else
+               os << name_ << '(' << cell(0) << ')';
 }
 
 
-void MathExFuncInset::mathmlize(MathMLStream & os) const
+void MathExFuncInset::maxima(MaximaStream & os) const
 {
-       os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
+       if (name_ == "det")
+               os << "determinant(" << cell(0) << ')';
+       else
+               os << name_ << '(' << cell(0) << ')';
 }
 
 
-void MathExFuncInset::octavize(OctaveStream & os) const
+string asMathematicaName(string const & name)
 {
-       os << name_ << '(' << cell(0) << ')';
+       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::mathmlize(MathMLStream & os) const
+{
+       os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
 }
 
 
-void MathExFuncInset::write(WriteStream & os) const
+void MathExFuncInset::octave(OctaveStream & os) const
 {
-       os << '\\' << name_ << '{' << cell(0) << '}';
+       os << name_ << '(' << cell(0) << ')';
 }