X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FCommandInset.cpp;h=0cf041c23ea7e59b2ec9fc62cf30690fca02cda5;hb=c9d9309c1ecffa218dee04ce4f7991ed4fc0c9bb;hp=303ca931cac57f294987b48a92003e797e5cdcbc;hpb=31059d1741933d95403e7f07ed033cae482f778b;p=lyx.git diff --git a/src/mathed/CommandInset.cpp b/src/mathed/CommandInset.cpp index 303ca931ca..0cf041c23e 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,44 +14,41 @@ #include "MathData.h" #include "MathStream.h" #include "DispatchResult.h" -#include "FuncRequest.h" #include +using namespace std; namespace lyx { -using std::auto_ptr; -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; } -auto_ptr CommandInset::doClone() const +Inset * CommandInset::clone() const { - return auto_ptr(new CommandInset(*this)); + return new CommandInset(*this); } -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); } -InsetBase * CommandInset::editXY(Cursor & cur, int /*x*/, int /*y*/) +Inset * CommandInset::editXY(Cursor & cur, int /*x*/, int /*y*/) { edit(cur, true); return this; @@ -67,8 +64,10 @@ void CommandInset::draw(PainterInfo & pi, int x, int y) const 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) << '}'; }