]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDelim.C
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathDelim.C
1 /**
2  * \file InsetMathDelim.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetMathDelim.h"
15 #include "MathData.h"
16 #include "MathStream.h"
17 #include "MathStream.h"
18 #include "MathSupport.h"
19
20
21 namespace lyx {
22
23
24 using std::string;
25 using std::max;
26 using std::auto_ptr;
27
28
29 static docstring convertDelimToLatexName(docstring const & name)
30 {
31         if (name.size() == 1) {
32                 char_type const c = name[0];
33                 if (c == '<' || c == '(' || c == '[' || c == '.' 
34                     || c == '>' || c == ')' || c == ']' || c == '/' || c == '|')
35                         return name;
36         }
37         return '\\' + name + ' ';
38 }
39
40
41 InsetMathDelim::InsetMathDelim(docstring const & l, docstring const & r)
42         : InsetMathNest(1), left_(l), right_(r)
43 {}
44
45
46 InsetMathDelim::InsetMathDelim
47                 (docstring const & l, docstring const & r, MathArray const & ar)
48         : InsetMathNest(1), left_(l), right_(r)
49 {
50         cell(0) = ar;
51 }
52
53
54 auto_ptr<InsetBase> InsetMathDelim::doClone() const
55 {
56         return auto_ptr<InsetBase>(new InsetMathDelim(*this));
57 }
58
59
60 void InsetMathDelim::write(WriteStream & os) const
61 {
62         os << "\\left" << convertDelimToLatexName(left_) << cell(0)
63            << "\\right" << convertDelimToLatexName(right_);
64 }
65
66
67 void InsetMathDelim::normalize(NormalStream & os) const
68 {
69         os << "[delim " << convertDelimToLatexName(left_) << ' '
70            << convertDelimToLatexName(right_) << ' ' << cell(0) << ']';
71 }
72
73
74 void InsetMathDelim::metrics(MetricsInfo & mi, Dimension & dim) const
75 {
76         cell(0).metrics(mi);
77         Dimension t;
78         mathed_char_dim(mi.base.font, 'I', t);
79         int h0 = (t.asc + t.des) / 2;
80         int a0 = max(cell(0).ascent(), t.asc)   - h0;
81         int d0 = max(cell(0).descent(), t.des)  + h0;
82         dw_ = cell(0).height() / 5;
83         if (dw_ > 8)
84                 dw_ = 8;
85         if (dw_ < 4)
86                 dw_ = 4;
87         dim_.wid = cell(0).width() + 2 * dw_ + 8;
88         dim_.asc = max(a0, d0) + h0;
89         dim_.des = max(a0, d0) - h0;
90         dim = dim_;
91 }
92
93
94 void InsetMathDelim::draw(PainterInfo & pi, int x, int y) const
95 {
96         int const b = y - dim_.asc;
97         cell(0).draw(pi, x + dw_ + 4, y);
98         mathed_draw_deco(pi, x + 4, b, dw_, dim_.height(), left_);
99         mathed_draw_deco(pi, x + dim_.width() - dw_ - 4,
100                 b, dw_, dim_.height(), right_);
101         setPosCache(pi, x, y);
102 }
103
104
105 bool InsetMathDelim::isParenthesis() const
106 {
107         return left_ == "(" && right_ == ")";
108 }
109
110
111 bool InsetMathDelim::isBrackets() const
112 {
113         return left_ == "[" && right_ == "]";
114 }
115
116
117 bool InsetMathDelim::isAbs() const
118 {
119         return left_ == "|" && right_ == "|";
120 }
121
122
123 void InsetMathDelim::maple(MapleStream & os) const
124 {
125         if (isAbs()) {
126                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
127                         os << "linalg[det](" << cell(0) << ')';
128                 else
129                         os << "abs(" << cell(0) << ')';
130         }
131         else
132                 os << left_ << cell(0) << right_;
133 }
134
135
136 void InsetMathDelim::maxima(MaximaStream & os) const
137 {
138         if (isAbs()) {
139                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
140                         os << "determinant(" << cell(0) << ')';
141                 else
142                         os << "abs(" << cell(0) << ')';
143         }
144         else
145                 os << left_ << cell(0) << right_;
146 }
147
148
149 void InsetMathDelim::mathematica(MathematicaStream & os) const
150 {
151         if (isAbs()) {
152                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
153                         os << "Det" << cell(0) << ']';
154                 else
155                         os << "Abs[" << cell(0) << ']';
156         }
157         else
158                 os << left_ << cell(0) << right_;
159 }
160
161
162 void InsetMathDelim::mathmlize(MathStream & os) const
163 {
164         os << "<fenced open=\"" << left_ << "\" close=\""
165                 << right_ << "\">" << cell(0) << "</fenced>";
166 }
167
168
169 void InsetMathDelim::octave(OctaveStream & os) const
170 {
171         if (isAbs())
172                 os << "det(" << cell(0) << ')';
173         else
174                 os << left_ << cell(0) << right_;
175 }
176
177
178 } // namespace lyx