]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathArray.cpp
Account for old versions of Pygments
[lyx.git] / src / mathed / InsetMathArray.cpp
1 /**
2  * \file InsetMathArray.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 "InsetMathArray.h"
14
15 #include "LaTeXFeatures.h"
16 #include "MathData.h"
17 #include "MathParser.h"
18 #include "MathStream.h"
19 #include "MetricsInfo.h"
20
21 #include "support/lstrings.h"
22
23 #include <iterator>
24 #include <sstream>
25
26 using namespace std;
27
28 namespace lyx {
29
30
31 InsetMathArray::InsetMathArray(Buffer * buf, docstring const & name, int m,
32                 int n)
33         : InsetMathGrid(buf, m, n), name_(name)
34 {}
35
36
37 InsetMathArray::InsetMathArray(Buffer * buf, docstring const & name, int m,
38                 int n, char valign, docstring const & halign)
39         : InsetMathGrid(buf, m, n, valign, halign), name_(name)
40 {}
41
42
43 InsetMathArray::InsetMathArray(Buffer * buf, docstring const & name,
44                 docstring const & str)
45         : InsetMathGrid(buf, 1, 1), name_(name)
46 {
47         vector< vector<string> > dat;
48         istringstream is(to_utf8(str));
49         string line;
50         while (getline(is, line)) {
51                 istringstream ls(line);
52                 typedef istream_iterator<string> iter;
53                 vector<string> v = vector<string>(iter(ls), iter());
54                 if (!v.empty())
55                         dat.push_back(v);
56         }
57
58         for (row_type row = 1; row < dat.size(); ++row)
59                 addRow(0);
60         for (col_type col = 1; col < dat[0].size(); ++col)
61                 addCol(0);
62         for (row_type row = 0; row < dat.size(); ++row)
63                 for (col_type col = 0; col < dat[0].size(); ++col)
64                         mathed_parse_cell(cell(index(row, col)),
65                                           from_utf8(dat[row][col]), Parse::NORMAL);
66 }
67
68
69 Inset * InsetMathArray::clone() const
70 {
71         return new InsetMathArray(*this);
72 }
73
74
75 void InsetMathArray::metrics(MetricsInfo & mi, Dimension & dim) const
76 {
77         Changer dummy2 = mi.base.changeEnsureMath();
78         Changer dummy = mi.base.changeArray();
79         InsetMathGrid::metrics(mi, dim);
80 }
81
82
83 void InsetMathArray::draw(PainterInfo & pi, int x, int y) const
84 {
85         Changer dummy2 = pi.base.changeEnsureMath();
86         Changer dummy = pi.base.changeArray();
87         InsetMathGrid::draw(pi, x, y);
88 }
89
90
91 void InsetMathArray::write(WriteStream & os) const
92 {
93         MathEnsurer ensurer(os);
94
95         if (os.fragile())
96                 os << "\\protect";
97         os << "\\begin{" << name_ << '}';
98         bool open = os.startOuterRow();
99
100         char const v = verticalAlignment();
101         if (v == 't' || v == 'b')
102                 os << '[' << v << ']';
103         os << '{' << horizontalAlignments() << "}\n";
104
105         InsetMathGrid::write(os);
106
107         if (os.fragile())
108                 os << "\\protect";
109         os << "\\end{" << name_ << '}';
110         if (open)
111                 os.startOuterRow();
112         // adding a \n here is bad if the array is the last item
113         // in an \eqnarray...
114 }
115
116
117 void InsetMathArray::infoize(odocstream & os) const
118 {
119         docstring name = name_;
120         name[0] = support::uppercase(name[0]);
121         os << name << ' ';
122 }
123
124
125 void InsetMathArray::normalize(NormalStream & os) const
126 {
127         os << '[' << name_ << ' ';
128         InsetMathGrid::normalize(os);
129         os << ']';
130 }
131
132
133 void InsetMathArray::maple(MapleStream & os) const
134 {
135         os << "array(";
136         InsetMathGrid::maple(os);
137         os << ')';
138 }
139
140
141 void InsetMathArray::validate(LaTeXFeatures & features) const
142 {
143         if (name_ == "subarray")
144                 features.require("amsmath");
145         InsetMathGrid::validate(features);
146 }
147
148
149 } // namespace lyx