X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSubstack.cpp;h=fb29077067d087d5467bb53c69651abd43379361;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=56d253e3b27e2b13e6c6ad25b8368babed0a2b4e;hpb=77185fe83d28a0a1dc48980a9db3c34110e02e31;p=lyx.git diff --git a/src/mathed/InsetMathSubstack.cpp b/src/mathed/InsetMathSubstack.cpp index 56d253e3b2..fb29077067 100644 --- a/src/mathed/InsetMathSubstack.cpp +++ b/src/mathed/InsetMathSubstack.cpp @@ -12,14 +12,15 @@ #include "InsetMathSubstack.h" -#include "LaTeXFeatures.h" #include "MathData.h" #include "MathStream.h" #include "FuncRequest.h" #include "FuncStatus.h" -#include "support/gettext.h" +#include "LaTeXFeatures.h" +#include "MetricsInfo.h" +#include "support/gettext.h" #include "support/lstrings.h" #include @@ -44,17 +45,16 @@ Inset * InsetMathSubstack::clone() const void InsetMathSubstack::metrics(MetricsInfo & mi, Dimension & dim) const { - if (mi.base.style == LM_ST_DISPLAY) { - StyleChanger dummy(mi.base, LM_ST_TEXT); - InsetMathGrid::metrics(mi, dim); - } else { - InsetMathGrid::metrics(mi, dim); - } + Changer dummy2 = mi.base.changeEnsureMath(); + Changer dummy = mi.base.changeArray(); + InsetMathGrid::metrics(mi, dim); } void InsetMathSubstack::draw(PainterInfo & pi, int x, int y) const { + Changer dummy2 = pi.base.changeEnsureMath(); + Changer dummy = pi.base.changeArray(); InsetMathGrid::draw(pi, x + 1, y); } @@ -63,27 +63,21 @@ bool InsetMathSubstack::getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const { switch (cmd.action()) { - case LFUN_INSET_MODIFY: { - istringstream is(to_utf8(cmd.argument())); - string s; - is >> s; - if (s != "tabular") - break; - is >> s; - string const name = "substack"; + case LFUN_TABULAR_FEATURE: { + string s = cmd.getArg(0); if (s == "add-vline-left" || s == "add-vline-right") { flag.message(bformat( from_utf8(N_("Can't add vertical grid lines in '%1$s'")), - from_utf8(name))); + from_utf8("substack"))); flag.setEnabled(false); return true; } - // in contrary to \subaray, the columns in \substack + // in contrary to \subarray, the columns in \substack // are always centered and this cannot be changed if (s == "align-left" || s == "align-right") { flag.message(bformat( from_utf8(N_("Can't change horizontal alignment in '%1$s'")), - from_utf8(name))); + from_utf8("substack"))); flag.setEnabled(false); return true; } @@ -107,8 +101,11 @@ void InsetMathSubstack::write(WriteStream & os) const { MathEnsurer ensurer(os); os << "\\substack{"; + bool open = os.startOuterRow(); InsetMathGrid::write(os); os << "}\n"; + if (open) + os.startOuterRow(); } @@ -158,10 +155,9 @@ void InsetMathSubstack::validate(LaTeXFeatures & features) const if (features.runparams().isLaTeX()) features.require("amsmath"); else if (features.runparams().math_flavor == OutputParams::MathAsHTML) - features.addPreambleSnippet(""); + "span.substack span{display: block;}"); InsetMathGrid::validate(features); }