A bit more re-organization.
[lyx.git] / src / mathed / InsetMathExFunc.cpp
blob3398e9049addec135e74611d96ed394d5c492e40
1 /**
2 * \file InsetMathExFunc.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author André Pönitz
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "InsetMathExFunc.h"
15 #include "MathData.h"
16 #include "MathStream.h"
17 #include "MathSupport.h"
18 #include "MetricsInfo.h"
20 #include "support/docstream.h"
22 using namespace std;
24 namespace lyx {
27 InsetMathExFunc::InsetMathExFunc(Buffer * buf, docstring const & name)
28 : InsetMathNest(buf, 1), name_(name)
32 InsetMathExFunc::InsetMathExFunc(Buffer * buf, docstring const & name, MathData const & ar)
33 : InsetMathNest(buf, 1), name_(name)
35 cell(0) = ar;
39 Inset * InsetMathExFunc::clone() const
41 return new InsetMathExFunc(*this);
45 void InsetMathExFunc::metrics(MetricsInfo & mi, Dimension & dim) const
47 mathed_string_dim(mi.base.font, name_, dim);
51 void InsetMathExFunc::draw(PainterInfo & pi, int x, int y) const
53 drawStrBlack(pi, x, y, name_);
57 docstring InsetMathExFunc::name() const
59 return name_;
63 void InsetMathExFunc::maple(MapleStream & os) const
65 if (name_ == "det")
66 os << "linalg[det](" << cell(0) << ')';
67 else
68 os << name_ << '(' << cell(0) << ')';
72 void InsetMathExFunc::maxima(MaximaStream & os) const
74 if (name_ == "det")
75 os << "determinant(" << cell(0) << ')';
76 else
77 os << name_ << '(' << cell(0) << ')';
81 static string asMathematicaName(string const & name)
83 if (name == "sin") return "Sin";
84 if (name == "sinh") return "Sinh";
85 if (name == "arcsin") return "ArcSin";
86 if (name == "asin") return "ArcSin";
87 if (name == "cos") return "Cos";
88 if (name == "cosh") return "Cosh";
89 if (name == "arccos") return "ArcCos";
90 if (name == "acos") return "ArcCos";
91 if (name == "tan") return "Tan";
92 if (name == "tanh") return "Tanh";
93 if (name == "arctan") return "ArcTan";
94 if (name == "atan") return "ArcTan";
95 if (name == "cot") return "Cot";
96 if (name == "coth") return "Coth";
97 if (name == "csc") return "Csc";
98 if (name == "sec") return "Sec";
99 if (name == "exp") return "Exp";
100 if (name == "log") return "Log";
101 if (name == "ln" ) return "Log";
102 if (name == "arg" ) return "Arg";
103 if (name == "det" ) return "Det";
104 if (name == "gcd" ) return "GCD";
105 if (name == "max" ) return "Max";
106 if (name == "min" ) return "Min";
107 if (name == "erf" ) return "Erf";
108 if (name == "erfc" ) return "Erfc";
109 return name;
113 static docstring asMathematicaName(docstring const & name)
115 return from_utf8(asMathematicaName(to_utf8(name)));
119 void InsetMathExFunc::mathematica(MathematicaStream & os) const
121 os << asMathematicaName(name_) << '[' << cell(0) << ']';
125 void InsetMathExFunc::mathmlize(MathStream & os) const
127 ++os.tab(); os.cr(); os.os() << '<' << name_ << '>';
128 os << cell(0);
129 os.cr(); --os.tab(); os.os() << "</" << name_ << '>';
133 void InsetMathExFunc::octave(OctaveStream & os) const
135 os << name_ << '(' << cell(0) << ')';
139 } // namespace lyx