X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathEnv.cpp;h=4e8229b77501070ac7ee9aa5754c6e6fd3c83db9;hb=c609e9cbcf;hp=a0051ade0a003c470cfa0280b37b900bc356836f;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathEnv.cpp b/src/mathed/InsetMathEnv.cpp index a0051ade0a..4e8229b775 100644 --- a/src/mathed/InsetMathEnv.cpp +++ b/src/mathed/InsetMathEnv.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -11,16 +11,23 @@ #include #include "InsetMathEnv.h" + #include "MathData.h" #include "MathStream.h" -#include "MathStream.h" -#include "support/std_ostream.h" +#include "MetricsInfo.h" + +#include "support/gettext.h" +#include "support/lstrings.h" + +#include + +using namespace lyx::support; namespace lyx { -InsetMathEnv::InsetMathEnv(docstring const & name) - : InsetMathNest(1), name_(name) +InsetMathEnv::InsetMathEnv(Buffer * buf, docstring const & name) + : InsetMathNest(buf, 1), name_(name) {} @@ -30,26 +37,23 @@ Inset * InsetMathEnv::clone() const } -bool InsetMathEnv::metrics(MetricsInfo & mi, Dimension & dim) const +void InsetMathEnv::metrics(MetricsInfo & mi, Dimension & dim) const { + Changer dummy = mi.base.changeEnsureMath(); cell(0).metrics(mi, dim); - metricsMarkers(dim); - if (dim_ == dim) - return false; - dim_ = dim; - return true; } void InsetMathEnv::draw(PainterInfo & pi, int x, int y) const { - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + Changer dummy = pi.base.changeEnsureMath(); + cell(0).draw(pi, x, y); } -void InsetMathEnv::write(WriteStream & os) const +void InsetMathEnv::write(TeXMathStream & os) const { + MathEnsurer ensurer(os); os << "\\begin{" << name_ << '}' << cell(0) << "\\end{" << name_ << '}'; } @@ -62,7 +66,7 @@ void InsetMathEnv::normalize(NormalStream & os) const void InsetMathEnv::infoize(odocstream & os) const { - os << "Env: " << name_; + os << bformat(_("Environment: %1$s"), name_); }