]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathExFunc.cpp
1ab74b0eddc9b9ae591028618fdd8901d9a73787
[lyx.git] / src / mathed / InsetMathExFunc.cpp
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.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathExFunc.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16 #include "MathStream.h"
17 #include "MathSupport.h"
18
19
20 namespace lyx {
21
22 using std::string;
23
24
25 InsetMathExFunc::InsetMathExFunc(docstring const & name)
26         : InsetMathNest(1), name_(name)
27 {}
28
29
30 InsetMathExFunc::InsetMathExFunc(docstring const & name, MathData const & ar)
31         : InsetMathNest(1), name_(name)
32 {
33         cell(0) = ar;
34 }
35
36
37 Inset * InsetMathExFunc::clone() const
38 {
39         return new InsetMathExFunc(*this);
40 }
41
42
43 bool InsetMathExFunc::metrics(MetricsInfo & mi, Dimension & dim) const
44 {
45         mathed_string_dim(mi.base.font, name_, dim);
46         if (dim_ == dim)
47                 return false;
48         dim_ = dim;
49         return true;
50 }
51
52
53 void InsetMathExFunc::draw(PainterInfo & pi, int x, int y) const
54 {
55         drawStrBlack(pi, x, y, name_);
56 }
57
58
59 docstring InsetMathExFunc::name() const
60 {
61         return name_;
62 }
63
64
65 void InsetMathExFunc::maple(MapleStream & os) const
66 {
67         if (name_ == "det")
68                 os << "linalg[det](" << cell(0) << ')';
69         else
70                 os << name_ << '(' << cell(0) << ')';
71 }
72
73
74 void InsetMathExFunc::maxima(MaximaStream & os) const
75 {
76         if (name_ == "det")
77                 os << "determinant(" << cell(0) << ')';
78         else
79                 os << name_ << '(' << cell(0) << ')';
80 }
81
82
83 static string asMathematicaName(string const & name)
84 {
85         if (name == "sin")    return "Sin";
86         if (name == "sinh")   return "Sinh";
87         if (name == "arcsin") return "ArcSin";
88         if (name == "asin")   return "ArcSin";
89         if (name == "cos")    return "Cos";
90         if (name == "cosh")   return "Cosh";
91         if (name == "arccos") return "ArcCos";
92         if (name == "acos")   return "ArcCos";
93         if (name == "tan")    return "Tan";
94         if (name == "tanh")   return "Tanh";
95         if (name == "arctan") return "ArcTan";
96         if (name == "atan")   return "ArcTan";
97         if (name == "cot")    return "Cot";
98         if (name == "coth")   return "Coth";
99         if (name == "csc")    return "Csc";
100         if (name == "sec")    return "Sec";
101         if (name == "exp")    return "Exp";
102         if (name == "log")    return "Log";
103         if (name == "ln" )    return "Log";
104         if (name == "arg" )   return "Arg";
105         if (name == "det" )   return "Det";
106         if (name == "gcd" )   return "GCD";
107         if (name == "max" )   return "Max";
108         if (name == "min" )   return "Min";
109         if (name == "erf" )   return "Erf";
110         if (name == "erfc" )  return "Erfc";
111         return name;
112 }
113
114
115 static docstring asMathematicaName(docstring const & name)
116 {
117         return from_utf8(asMathematicaName(to_utf8(name)));
118 }
119
120
121 void InsetMathExFunc::mathematica(MathematicaStream & os) const
122 {
123         os << asMathematicaName(name_) << '[' << cell(0) << ']';
124 }
125
126
127 void InsetMathExFunc::mathmlize(MathStream & os) const
128 {
129         os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
130 }
131
132
133 void InsetMathExFunc::octave(OctaveStream & os) const
134 {
135         os << name_ << '(' << cell(0) << ')';
136 }
137
138
139 } // namespace lyx