A bit more re-organization.
[lyx.git] / src / mathed / InsetMathSubstack.cpp
blob1736da409fa6ac16cfa52e95a3188ded9ab364cd
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.
6 * \author André Pönitz
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "InsetMathSubstack.h"
15 #include "LaTeXFeatures.h"
16 #include "MathData.h"
17 #include "MathStream.h"
19 #include "FuncRequest.h"
20 #include "FuncStatus.h"
21 #include "support/gettext.h"
23 #include "support/lstrings.h"
25 #include <ostream>
27 using namespace std;
29 namespace lyx {
31 using support::bformat;
34 InsetMathSubstack::InsetMathSubstack(Buffer * buf)
35 : InsetMathGrid(buf, 1, 1)
39 Inset * InsetMathSubstack::clone() const
41 return new InsetMathSubstack(*this);
45 void InsetMathSubstack::metrics(MetricsInfo & mi, Dimension & dim) const
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);
56 void InsetMathSubstack::draw(PainterInfo & pi, int x, int y) const
58 InsetMathGrid::draw(pi, x + 1, y);
62 bool InsetMathSubstack::getStatus(Cursor & cur, FuncRequest const & cmd,
63 FuncStatus & flag) const
65 switch (cmd.action) {
66 case LFUN_TABULAR_FEATURE: {
67 string const name = "substack";
68 docstring const & s = cmd.argument();
69 if (s == "add-vline-left" || s == "add-vline-right") {
70 flag.message(bformat(
71 from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
72 from_utf8(name)));
73 flag.setEnabled(false);
74 return true;
76 return InsetMathGrid::getStatus(cur, cmd, flag);
78 default:
79 return InsetMathGrid::getStatus(cur, cmd, flag);
84 void InsetMathSubstack::infoize(odocstream & os) const
86 os << "Substack ";
90 void InsetMathSubstack::write(WriteStream & os) const
92 MathEnsurer ensurer(os);
93 os << "\\substack{";
94 InsetMathGrid::write(os);
95 os << "}\n";
99 void InsetMathSubstack::normalize(NormalStream & os) const
101 os << "[substack ";
102 InsetMathGrid::normalize(os);
103 os << ']';
107 void InsetMathSubstack::maple(MapleStream & os) const
109 os << "substack(";
110 InsetMathGrid::maple(os);
111 os << ')';
115 void InsetMathSubstack::validate(LaTeXFeatures & features) const
117 features.require("amsmath");
118 InsetMathGrid::validate(features);
122 } // namespace lyx