]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathAMSArray.cpp
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathAMSArray.cpp
1 /**
2  * \file InsetMathAMSArray.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 "InsetMathAMSArray.h"
14
15 #include "LaTeXFeatures.h"
16 #include "MathData.h"
17 #include "MathStream.h"
18 #include "MathSupport.h"
19 #include "MetricsInfo.h"
20
21 #include "FuncRequest.h"
22 #include "FuncStatus.h"
23
24 #include "support/gettext.h"
25 #include "support/lstrings.h"
26
27 #include <sstream>
28 #include <ostream>
29
30
31 using namespace std;
32 using namespace lyx::support;
33
34 namespace lyx {
35
36
37 InsetMathAMSArray::InsetMathAMSArray(Buffer * buf, docstring const & name,
38                 int m, int n)
39         : InsetMathGrid(buf, m, n), name_(name)
40 {}
41
42
43 InsetMathAMSArray::InsetMathAMSArray(Buffer * buf, docstring const & name)
44         : InsetMathGrid(buf, 1, 1), name_(name)
45 {}
46
47
48 Inset * InsetMathAMSArray::clone() const
49 {
50         return new InsetMathAMSArray(*this);
51 }
52
53
54 char const * InsetMathAMSArray::name_left() const
55 {
56         if (name_ == "bmatrix")
57                 return "[";
58         if (name_ == "Bmatrix")
59                 return "{";
60         if (name_ == "vmatrix")
61                 return "|";
62         if (name_ == "Vmatrix")
63                 return "Vert";
64         if (name_ == "pmatrix")
65                 return "(";
66         return ".";
67 }
68
69
70 char const * InsetMathAMSArray::name_right() const
71 {
72         if (name_ == "bmatrix")
73                 return "]";
74         if (name_ == "Bmatrix")
75                 return "}";
76         if (name_ == "vmatrix")
77                 return "|";
78         if (name_ == "Vmatrix")
79                 return "Vert";
80         if (name_ == "pmatrix")
81                 return ")";
82         return ".";
83 }
84
85
86 int InsetMathAMSArray::rowsep() const
87 {
88         return small() ? 0 : InsetMathGrid::rowsep();
89 }
90
91
92 int InsetMathAMSArray::colsep() const
93 {
94         return small() ? InsetMathGrid::colsep() / 2 : InsetMathGrid::colsep();
95 }
96
97
98 int InsetMathAMSArray::border() const
99 {
100         return small() ? 0 : InsetMathGrid::border();
101 }
102
103
104 void InsetMathAMSArray::metrics(MetricsInfo & mi, Dimension & dim) const
105 {
106         Changer dummy2 = mi.base.changeEnsureMath();
107         Changer dummy = mi.base.changeArray(small());
108         InsetMathGrid::metrics(mi, dim);
109 }
110
111
112 void InsetMathAMSArray::draw(PainterInfo & pi, int x, int y) const
113 {
114         Changer dummy2 = pi.base.changeEnsureMath();
115         if (name_ != "smallmatrix") {
116                 Dimension const dim = dimension(*pi.base.bv);
117                 int const yy = y - dim.ascent();
118                 // Drawing the deco after changeStyle does not work
119                 mathed_draw_deco(pi, x + 1, yy, 5, dim.height(), from_ascii(name_left()));
120                 mathed_draw_deco(pi, x + dim.width() - 8, yy, 5, dim.height(), from_ascii(name_right()));
121         }
122         Changer dummy = pi.base.changeArray(small());
123         InsetMathGrid::draw(pi, x, y);
124 }
125
126
127 bool InsetMathAMSArray::getStatus(Cursor & cur, FuncRequest const & cmd,
128                 FuncStatus & flag) const
129 {
130         switch (cmd.action()) {
131         case LFUN_TABULAR_FEATURE: {
132                 string s = cmd.getArg(0);
133                 if (s == "add-vline-left" || s == "add-vline-right") {
134                         flag.message(bformat(
135                                 from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
136                                 name_));
137                         flag.setEnabled(false);
138                         return true;
139                 }
140                 break;
141         }
142         default:
143                 break;
144         }
145         return InsetMathGrid::getStatus(cur, cmd, flag);
146 }
147
148
149 void InsetMathAMSArray::write(WriteStream & os) const
150 {
151         MathEnsurer ensurer(os);
152         os << "\\begin{" << name_ << '}';
153         bool open = os.startOuterRow();
154         InsetMathGrid::write(os);
155         os << "\\end{" << name_ << '}';
156         if (open)
157                 os.startOuterRow();
158 }
159
160
161 void InsetMathAMSArray::infoize(odocstream & os) const
162 {
163         docstring name = name_;
164         name[0] = support::uppercase(name[0]);
165         os << name << ' ';
166 }
167
168
169 void InsetMathAMSArray::normalize(NormalStream & os) const
170 {
171         os << '[' << name_ << ' ';
172         InsetMathGrid::normalize(os);
173         os << ']';
174 }
175
176
177 void InsetMathAMSArray::validate(LaTeXFeatures & features) const
178 {
179         if (name_ == "CD")
180                 // amscd is independent of amsmath although it is part of
181                 // the amsmath bundle
182                 features.require("amscd");
183         else
184                 features.require("amsmath");
185         InsetMathGrid::validate(features);
186 }
187
188
189 } // namespace lyx