]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathExFunc.C
Fix command-line export
[lyx.git] / src / mathed / InsetMathExFunc.C
1 /**
2  * \file InsetMathExFunc.C
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 "MathMLStream.h"
16 #include "MathStream.h"
17 #include "MathSupport.h"
18
19
20 using std::string;
21 using std::auto_ptr;
22
23
24 InsetMathExFunc::InsetMathExFunc(string const & name)
25         : InsetMathNest(1), name_(name)
26 {}
27
28
29 InsetMathExFunc::InsetMathExFunc(string const & name, MathArray const & ar)
30         : InsetMathNest(1), name_(name)
31 {
32         cell(0) = ar;
33 }
34
35
36 auto_ptr<InsetBase> InsetMathExFunc::doClone() const
37 {
38         return auto_ptr<InsetBase>(new InsetMathExFunc(*this));
39 }
40
41
42 void InsetMathExFunc::metrics(MetricsInfo & mi, Dimension & /*dim*/) const
43 {
44         mathed_string_dim(mi.base.font, name_, dim_);
45 }
46
47
48 void InsetMathExFunc::draw(PainterInfo & pi, int x, int y) const
49 {
50         drawStrBlack(pi, x, y, name_);
51 }
52
53
54 string InsetMathExFunc::name() const
55 {
56         return name_;
57 }
58
59
60 void InsetMathExFunc::maple(MapleStream & os) const
61 {
62         if (name_ == "det")
63                 os << "linalg[det](" << cell(0) << ')';
64         else
65                 os << name_ << '(' << cell(0) << ')';
66 }
67
68
69 void InsetMathExFunc::maxima(MaximaStream & os) const
70 {
71         if (name_ == "det")
72                 os << "determinant(" << cell(0) << ')';
73         else
74                 os << name_ << '(' << cell(0) << ')';
75 }
76
77
78 string asMathematicaName(string const & name)
79 {
80         if (name == "sin")    return "Sin";
81         if (name == "sinh")   return "Sinh";
82         if (name == "arcsin") return "ArcSin";
83         if (name == "asin")   return "ArcSin";
84         if (name == "cos")    return "Cos";
85         if (name == "cosh")   return "Cosh";
86         if (name == "arccos") return "ArcCos";
87         if (name == "acos")   return "ArcCos";
88         if (name == "tan")    return "Tan";
89         if (name == "tanh")   return "Tanh";
90         if (name == "arctan") return "ArcTan";
91         if (name == "atan")   return "ArcTan";
92         if (name == "cot")    return "Cot";
93         if (name == "coth")   return "Coth";
94         if (name == "csc")    return "Csc";
95         if (name == "sec")    return "Sec";
96         if (name == "exp")    return "Exp";
97         if (name == "log")    return "Log";
98         if (name == "ln" )    return "Log";
99         if (name == "arg" )   return "Arg";
100         if (name == "det" )   return "Det";
101         if (name == "gcd" )   return "GCD";
102         if (name == "max" )   return "Max";
103         if (name == "min" )   return "Min";
104         if (name == "erf" )   return "Erf";
105         if (name == "erfc" )  return "Erfc";
106         return name;
107 }
108
109
110 void InsetMathExFunc::mathematica(MathematicaStream & os) const
111 {
112         os << asMathematicaName(name_) << '[' << cell(0) << ']';
113 }
114
115
116 void InsetMathExFunc::mathmlize(MathMLStream & os) const
117 {
118         os << MTag(name_.c_str()) << cell(0) << ETag(name_.c_str());
119 }
120
121
122 void InsetMathExFunc::octave(OctaveStream & os) const
123 {
124         os << name_ << '(' << cell(0) << ')';
125 }