]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathSubstack.cpp
InsetLine.cpp: remove unused include
[lyx.git] / src / mathed / InsetMathSubstack.cpp
1 /**
2  * \file InsetMathSubstack.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 "InsetMathSubstack.h"
14
15 #include "LaTeXFeatures.h"
16 #include "MathData.h"
17 #include "MathStream.h"
18
19 #include "FuncRequest.h"
20 #include "FuncStatus.h"
21 #include "support/gettext.h"
22
23 #include "support/lstrings.h"
24
25 #include <ostream>
26
27 using namespace std;
28
29 namespace lyx {
30
31 using support::bformat;
32
33
34 InsetMathSubstack::InsetMathSubstack(Buffer * buf)
35         : InsetMathGrid(buf, 1, 1)
36 {}
37
38
39 Inset * InsetMathSubstack::clone() const
40 {
41         return new InsetMathSubstack(*this);
42 }
43
44
45 void InsetMathSubstack::metrics(MetricsInfo & mi, Dimension & dim) const
46 {
47         if (mi.base.style == LM_ST_DISPLAY) {
48                 StyleChanger dummy(mi.base, LM_ST_TEXT);
49                 InsetMathGrid::metrics(mi, dim);
50         } else {
51                 InsetMathGrid::metrics(mi, dim);
52         }
53 }
54
55
56 void InsetMathSubstack::draw(PainterInfo & pi, int x, int y) const
57 {
58         InsetMathGrid::draw(pi, x + 1, y);
59 }
60
61
62 bool InsetMathSubstack::getStatus(Cursor & cur, FuncRequest const & cmd,
63                 FuncStatus & flag) const
64 {
65         switch (cmd.action()) {
66         case LFUN_INSET_MODIFY: {
67                 istringstream is(to_utf8(cmd.argument()));
68                 string s;
69                 is >> s;
70                 if (s != "tabular")
71                         break;
72                 is >> s;
73                 string const name = "substack";
74                 if (s == "add-vline-left" || s == "add-vline-right") {
75                         flag.message(bformat(
76                                 from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
77                                 from_utf8(name)));
78                         flag.setEnabled(false);
79                         return true;
80                 }
81                 break;
82         }
83         default:
84                 break;
85         }
86         return InsetMathGrid::getStatus(cur, cmd, flag);
87 }
88
89
90 void InsetMathSubstack::infoize(odocstream & os) const
91 {
92         os << "Substack ";
93 }
94
95
96 void InsetMathSubstack::write(WriteStream & os) const
97 {
98         MathEnsurer ensurer(os);
99         os << "\\substack{";
100         InsetMathGrid::write(os);
101         os << "}\n";
102 }
103
104
105 void InsetMathSubstack::normalize(NormalStream & os) const
106 {
107         os << "[substack ";
108         InsetMathGrid::normalize(os);
109         os << ']';
110 }
111
112
113 void InsetMathSubstack::maple(MapleStream & os) const
114 {
115         os << "substack(";
116         InsetMathGrid::maple(os);
117         os << ')';
118 }
119
120
121 void InsetMathSubstack::htmlize(HtmlStream & os) const
122 {
123         os << MTag("span", "class='substack'");
124         for (row_type row = 0; row < nrows(); ++row) 
125                 os << MTag("span") << cell(index(row, 0)) << ETag("span");
126         os << ETag("span");
127 }
128
129         
130 void InsetMathSubstack::validate(LaTeXFeatures & features) const
131 {
132         if (features.runparams().isLaTeX())
133                 features.require("amsmath");
134         else if (features.runparams().math_flavor == OutputParams::MathAsHTML)
135                 features.addPreambleSnippet("<style type=\"text/css\">\n"
136                         "span.substack{display: inline-block; vertical-align: middle; text-align:center; font-size: 75%;}\n"
137                         "span.substack span{display: block;}\n"
138                         "</style>");
139         
140         InsetMathGrid::validate(features);
141 }
142
143
144 } // namespace lyx