]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathExFunc.cpp
* Inset:
[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 void InsetMathExFunc::metrics(MetricsInfo & mi, Dimension & dim) const
44 {
45         mathed_string_dim(mi.base.font, name_, dim);
46         dim_ = dim;
47 }
48
49
50 void InsetMathExFunc::draw(PainterInfo & pi, int x, int y) const
51 {
52         drawStrBlack(pi, x, y, name_);
53 }
54
55
56 docstring InsetMathExFunc::name() const
57 {
58         return name_;
59 }
60
61
62 void InsetMathExFunc::maple(MapleStream & os) const
63 {
64         if (name_ == "det")
65                 os << "linalg[det](" << cell(0) << ')';
66         else
67                 os << name_ << '(' << cell(0) << ')';
68 }
69
70
71 void InsetMathExFunc::maxima(MaximaStream & os) const
72 {
73         if (name_ == "det")
74                 os << "determinant(" << cell(0) << ')';
75         else
76                 os << name_ << '(' << cell(0) << ')';
77 }
78
79
80 static string asMathematicaName(string const & name)
81 {
82         if (name == "sin")    return "Sin";
83         if (name == "sinh")   return "Sinh";
84         if (name == "arcsin") return "ArcSin";
85         if (name == "asin")   return "ArcSin";
86         if (name == "cos")    return "Cos";
87         if (name == "cosh")   return "Cosh";
88         if (name == "arccos") return "ArcCos";
89         if (name == "acos")   return "ArcCos";
90         if (name == "tan")    return "Tan";
91         if (name == "tanh")   return "Tanh";
92         if (name == "arctan") return "ArcTan";
93         if (name == "atan")   return "ArcTan";
94         if (name == "cot")    return "Cot";
95         if (name == "coth")   return "Coth";
96         if (name == "csc")    return "Csc";
97         if (name == "sec")    return "Sec";
98         if (name == "exp")    return "Exp";
99         if (name == "log")    return "Log";
100         if (name == "ln" )    return "Log";
101         if (name == "arg" )   return "Arg";
102         if (name == "det" )   return "Det";
103         if (name == "gcd" )   return "GCD";
104         if (name == "max" )   return "Max";
105         if (name == "min" )   return "Min";
106         if (name == "erf" )   return "Erf";
107         if (name == "erfc" )  return "Erfc";
108         return name;
109 }
110
111
112 static docstring asMathematicaName(docstring const & name)
113 {
114         return from_utf8(asMathematicaName(to_utf8(name)));
115 }
116
117
118 void InsetMathExFunc::mathematica(MathematicaStream & os) const
119 {
120         os << asMathematicaName(name_) << '[' << cell(0) << ']';
121 }
122
123
124 void InsetMathExFunc::mathmlize(MathStream & os) const
125 {
126         os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
127 }
128
129
130 void InsetMathExFunc::octave(OctaveStream & os) const
131 {
132         os << name_ << '(' << cell(0) << ')';
133 }
134
135
136 } // namespace lyx