]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathAMSArray.C
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathAMSArray.C
1 /**
2  * \file InsetMathAMSArray.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 "LaTeXFeatures.h"
14 #include "InsetMathAMSArray.h"
15 #include "MathData.h"
16 #include "MathStream.h"
17 #include "MathStream.h"
18 #include "MathSupport.h"
19
20 #include "funcrequest.h"
21 #include "FuncStatus.h"
22 #include "gettext.h"
23
24 #include "support/lstrings.h"
25 #include "support/std_ostream.h"
26
27 using std::auto_ptr;
28
29 namespace lyx {
30
31 using support::bformat;
32
33
34 InsetMathAMSArray::InsetMathAMSArray(docstring const & name, int m, int n)
35         : InsetMathGrid(m, n), name_(name)
36 {}
37
38
39 InsetMathAMSArray::InsetMathAMSArray(docstring const & name)
40         : InsetMathGrid(1, 1), name_(name)
41 {}
42
43
44 auto_ptr<InsetBase> InsetMathAMSArray::doClone() const
45 {
46         return auto_ptr<InsetBase>(new InsetMathAMSArray(*this));
47 }
48
49
50 char const * InsetMathAMSArray::name_left() const
51 {
52         if (name_ == "bmatrix")
53                 return "[";
54         if (name_ == "Bmatrix")
55                 return "{";
56         if (name_ == "vmatrix")
57                 return "|";
58         if (name_ == "Vmatrix")
59                 return "Vert";
60         if (name_ == "pmatrix")
61                 return "(";
62         return ".";
63 }
64
65
66 char const * InsetMathAMSArray::name_right() const
67 {
68         if (name_ == "bmatrix")
69                 return "]";
70         if (name_ == "Bmatrix")
71                 return "}";
72         if (name_ == "vmatrix")
73                 return "|";
74         if (name_ == "Vmatrix")
75                 return "Vert";
76         if (name_ == "pmatrix")
77                 return ")";
78         return ".";
79 }
80
81
82 void InsetMathAMSArray::metrics(MetricsInfo & mi, Dimension & dim) const
83 {
84         ArrayChanger dummy(mi.base);
85         InsetMathGrid::metrics(mi, dim);
86         dim.wid += 14;
87         dim_ = dim;
88 }
89
90
91 void InsetMathAMSArray::draw(PainterInfo & pi, int x, int y) const
92 {
93         int const yy = y - dim_.ascent();
94         // Drawing the deco after an ArrayChanger does not work
95         mathed_draw_deco(pi, x + 1, yy, 5, dim_.height(), from_ascii(name_left()));
96         mathed_draw_deco(pi, x + dim_.width() - 8, yy, 5, dim_.height(), from_ascii(name_right()));
97         ArrayChanger dummy(pi.base);
98         InsetMathGrid::drawWithMargin(pi, x, y, 6, 8);
99 }
100
101
102 bool InsetMathAMSArray::getStatus(LCursor & cur, FuncRequest const & cmd,
103                 FuncStatus & flag) const
104 {
105         switch (cmd.action) {
106         case LFUN_TABULAR_FEATURE: {
107                 docstring const & s = cmd.argument();
108                 if (s == "add-vline-left" || s == "add-vline-right") {
109                         flag.message(bformat(
110                                 from_utf8(N_("Can't add vertical grid lines in '%1$s'")),       name_));
111                         flag.enabled(false);
112                         return true;
113                 }
114                 return InsetMathGrid::getStatus(cur, cmd, flag);
115         }
116         default:
117                 return InsetMathGrid::getStatus(cur, cmd, flag);
118         }
119 }
120
121
122 void InsetMathAMSArray::write(WriteStream & os) const
123 {
124         os << "\\begin{" << name_ << '}';
125         InsetMathGrid::write(os);
126         os << "\\end{" << name_ << '}';
127 }
128
129
130 void InsetMathAMSArray::infoize(odocstream & os) const
131 {
132         docstring name = name_;
133         name[0] = support::uppercase(name[0]);
134         os << name << ' ';
135 }
136
137
138 void InsetMathAMSArray::normalize(NormalStream & os) const
139 {
140         os << '[' << name_ << ' ';
141         InsetMathGrid::normalize(os);
142         os << ']';
143 }
144
145
146 void InsetMathAMSArray::validate(LaTeXFeatures & features) const
147 {
148         features.require("amsmath");
149         InsetMathGrid::validate(features);
150 }
151
152
153 } // namespace lyx