X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FCommandInset.cpp;h=6b9466481cd44c8a948130ee409208c164ccb1fb;hb=02e82157ec583c3900e359de86be79fac6512387;hp=67b56f506e688f2b707242250ccdb0cfbc145dd3;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/CommandInset.cpp b/src/mathed/CommandInset.cpp index 67b56f506e..6b9466481c 100644 --- a/src/mathed/CommandInset.cpp +++ b/src/mathed/CommandInset.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. */ @@ -14,17 +14,17 @@ #include "MathData.h" #include "MathStream.h" #include "DispatchResult.h" -#include "FuncRequest.h" #include +using namespace std; namespace lyx { -using std::string; -CommandInset::CommandInset(docstring const & name) - : InsetMathNest(2), name_(name), set_label_(false) +CommandInset::CommandInset(Buffer * buf, docstring const & name, bool needs_math_mode) + : InsetMathNest(buf, 2), name_(name), needs_math_mode_(needs_math_mode), + set_label_(false) { lock_ = true; } @@ -36,17 +36,15 @@ Inset * CommandInset::clone() const } -bool CommandInset::metrics(MetricsInfo & mi, Dimension & dim) const +void CommandInset::metrics(MetricsInfo & mi, Dimension & dim) const { if (!set_label_) { set_label_ = true; button_.update(screenLabel(), true); } button_.metrics(mi, dim); - if (dim_ == dim) - return false; - dim_ = dim; - return true; + // Cache the inset dimension. + setDimCache(mi, dim); } @@ -60,14 +58,15 @@ Inset * CommandInset::editXY(Cursor & cur, int /*x*/, int /*y*/) void CommandInset::draw(PainterInfo & pi, int x, int y) const { button_.draw(pi, x, y); - setPosCache(pi, x, y); } void CommandInset::write(WriteStream & os) const { - os << '\\' << name_.c_str(); - if (cell(1).size()) + ModeSpecifier specifier(os, currentMode(), lockedMode(), asciiOnly()); + MathEnsurer ensurer(os, needs_math_mode_); + os << '\\' << name_; + if (!cell(1).empty()) os << '[' << cell(1) << ']'; os << '{' << cell(0) << '}'; }