]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDelim.cpp
Limit multirow to 100 columns in mathed
[lyx.git] / src / mathed / InsetMathDelim.cpp
1 /**
2  * \file InsetMathDelim.cpp
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
16 #include "MathData.h"
17 #include "MathFactory.h"
18 #include "MathStream.h"
19 #include "MathSupport.h"
20 #include "MetricsInfo.h"
21
22 #include "LaTeXFeatures.h"
23
24 #include "support/docstring.h"
25
26 #include "frontends/FontMetrics.h"
27
28 #include <algorithm>
29
30 using namespace std;
31
32 namespace lyx {
33
34 static docstring convertDelimToLatexName(docstring const & name)
35 {
36         if (name.size() == 1) {
37                 char_type const c = name[0];
38                 if (c == '<' || c == '(' || c == '[' || c == '.'
39                     || c == '>' || c == ')' || c == ']' || c == '/' || c == '|')
40                         return name;
41         }
42         return '\\' + name + ' ';
43 }
44
45
46 InsetMathDelim::InsetMathDelim(Buffer * buf, docstring const & l,
47                 docstring const & r)
48         : InsetMathNest(buf, 1), left_(l), right_(r), dw_(0)
49 {}
50
51
52 InsetMathDelim::InsetMathDelim(Buffer * buf, docstring const & l, docstring const & r,
53         MathData const & ar)
54         : InsetMathNest(buf, 1), left_(l), right_(r), dw_(0)
55 {
56         cell(0) = ar;
57 }
58
59
60 Inset * InsetMathDelim::clone() const
61 {
62         return new InsetMathDelim(*this);
63 }
64
65
66 void InsetMathDelim::validate(LaTeXFeatures & features) const
67 {
68         InsetMathNest::validate(features);
69         // The delimiters may be used without \left or \right as well.
70         // Therefore they are listed in lib/symbols, and if they have
71         // requirements, we need to add them here.
72         validate_math_word(features, left_);
73         validate_math_word(features, right_);
74 }
75
76
77 void InsetMathDelim::write(WriteStream & os) const
78 {
79         MathEnsurer ensurer(os);
80         os << "\\left" << convertDelimToLatexName(left_) << cell(0)
81            << "\\right" << convertDelimToLatexName(right_);
82 }
83
84
85 void InsetMathDelim::normalize(NormalStream & os) const
86 {
87         os << "[delim " << convertDelimToLatexName(left_) << ' '
88            << convertDelimToLatexName(right_) << ' ' << cell(0) << ']';
89 }
90
91
92 void InsetMathDelim::metrics(MetricsInfo & mi, Dimension & dim) const
93 {
94         Changer dummy = mi.base.changeEnsureMath();
95         Dimension dim0;
96         cell(0).metrics(mi, dim0);
97         Dimension t = theFontMetrics(mi.base.font).dimension('I');
98         int h0 = (t.asc + t.des) / 2;
99         int a0 = max(dim0.asc, t.asc)   - h0;
100         int d0 = max(dim0.des, t.des)  + h0;
101         dw_ = dim0.height() / 5;
102         if (dw_ > 8)
103                 dw_ = 8;
104         if (dw_ < 4)
105                 dw_ = 4;
106         dim.wid = dim0.width() + 2 * dw_;
107         dim.asc = max(a0, d0) + h0;
108         dim.des = max(a0, d0) - h0;
109 }
110
111
112 void InsetMathDelim::draw(PainterInfo & pi, int x, int y) const
113 {
114         Changer dummy = pi.base.changeEnsureMath();
115         Dimension const dim = dimension(*pi.base.bv);
116         int const b = y - dim.asc;
117         cell(0).draw(pi, x + dw_, y);
118         mathed_draw_deco(pi, x, b, dw_, dim.height(), left_);
119         mathed_draw_deco(pi, x + dim.width() - dw_,
120                 b, dw_, dim.height(), right_);
121 }
122
123
124 bool InsetMathDelim::isParenthesis() const
125 {
126         return left_ == "(" && right_ == ")";
127 }
128
129
130 bool InsetMathDelim::isBrackets() const
131 {
132         return left_ == "[" && right_ == "]";
133 }
134
135
136 bool InsetMathDelim::isAbs() const
137 {
138         return left_ == "|" && right_ == "|";
139 }
140
141
142 void InsetMathDelim::maple(MapleStream & os) const
143 {
144         if (isAbs()) {
145                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
146                         os << "linalg[det](" << cell(0) << ')';
147                 else
148                         os << "abs(" << cell(0) << ')';
149         }
150         else
151                 os << left_ << cell(0) << right_;
152 }
153
154
155 void InsetMathDelim::maxima(MaximaStream & os) const
156 {
157         if (isAbs()) {
158                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
159                         os << "determinant(" << cell(0) << ')';
160                 else
161                         os << "abs(" << cell(0) << ')';
162         }
163         else
164                 os << left_ << cell(0) << right_;
165 }
166
167
168 void InsetMathDelim::mathematica(MathematicaStream & os) const
169 {
170         if (isAbs()) {
171                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
172                         os << "Det" << cell(0) << ']';
173                 else
174                         os << "Abs[" << cell(0) << ']';
175         }
176         else
177                 os << left_ << cell(0) << right_;
178 }
179
180
181 void InsetMathDelim::mathmlize(MathStream & os) const
182 {
183         os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>"
184            << convertDelimToXMLEscape(left_) 
185            << "</mo>\n"
186            << cell(0) 
187            << "\n<mo form='postfix' fence='true' stretchy='true' symmetric='true'>" 
188            << convertDelimToXMLEscape(right_) 
189            << "</mo>\n";
190 }
191
192
193 void InsetMathDelim::htmlize(HtmlStream & os) const
194 {
195         os << convertDelimToXMLEscape(left_) 
196            << cell(0) 
197            << convertDelimToXMLEscape(right_);
198 }
199
200
201 void InsetMathDelim::octave(OctaveStream & os) const
202 {
203         if (isAbs())
204                 os << "det(" << cell(0) << ')';
205         else
206                 os << left_ << cell(0) << right_;
207 }
208
209
210 } // namespace lyx