X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDelim.cpp;h=45dd1ffcf39389c26c97f3089a783e6886bb0d42;hb=58ab972f714309aa87e7d956ceda00e18337875f;hp=f7c1f24aa5e6a7adff8c30a40e6208caaa5c19da;hpb=31059d1741933d95403e7f07ed033cae482f778b;p=lyx.git diff --git a/src/mathed/InsetMathDelim.cpp b/src/mathed/InsetMathDelim.cpp index f7c1f24aa5..45dd1ffcf3 100644 --- a/src/mathed/InsetMathDelim.cpp +++ b/src/mathed/InsetMathDelim.cpp @@ -19,19 +19,14 @@ #include "frontends/FontMetrics.h" -namespace lyx { - - -using std::string; -using std::max; -using std::auto_ptr; +namespace lyx { static docstring convertDelimToLatexName(docstring const & name) { if (name.size() == 1) { char_type const c = name[0]; - if (c == '<' || c == '(' || c == '[' || c == '.' + if (c == '<' || c == '(' || c == '[' || c == '.' || c == '>' || c == ')' || c == ']' || c == '/' || c == '|') return name; } @@ -52,9 +47,9 @@ InsetMathDelim::InsetMathDelim } -auto_ptr InsetMathDelim::doClone() const +Inset * InsetMathDelim::clone() const { - return auto_ptr(new InsetMathDelim(*this)); + return new InsetMathDelim(*this); } @@ -72,35 +67,36 @@ void InsetMathDelim::normalize(NormalStream & os) const } -bool InsetMathDelim::metrics(MetricsInfo & mi, Dimension & dim) const +void InsetMathDelim::metrics(MetricsInfo & mi, Dimension & dim) const { - cell(0).metrics(mi); + using std::max; + Dimension dim0; + cell(0).metrics(mi, dim0); Dimension t = theFontMetrics(mi.base.font).dimension('I'); int h0 = (t.asc + t.des) / 2; - int a0 = max(cell(0).ascent(), t.asc) - h0; - int d0 = max(cell(0).descent(), t.des) + h0; - dw_ = cell(0).height() / 5; + int a0 = max(dim0.asc, t.asc) - h0; + int d0 = max(dim0.des, t.des) + h0; + dw_ = dim0.height() / 5; if (dw_ > 8) dw_ = 8; if (dw_ < 4) dw_ = 4; - dim.wid = cell(0).width() + 2 * dw_ + 8; + dim.wid = dim0.width() + 2 * dw_ + 8; dim.asc = max(a0, d0) + h0; dim.des = max(a0, d0) - h0; - if (dim_ == dim) - return false; - dim_ = dim; - return true; + // Cache the inset dimension. + setDimCache(mi, dim); } void InsetMathDelim::draw(PainterInfo & pi, int x, int y) const { - int const b = y - dim_.asc; + Dimension const dim = dimension(*pi.base.bv); + int const b = y - dim.asc; cell(0).draw(pi, x + dw_ + 4, y); - mathed_draw_deco(pi, x + 4, b, dw_, dim_.height(), left_); - mathed_draw_deco(pi, x + dim_.width() - dw_ - 4, - b, dw_, dim_.height(), right_); + mathed_draw_deco(pi, x + 4, b, dw_, dim.height(), left_); + mathed_draw_deco(pi, x + dim.width() - dw_ - 4, + b, dw_, dim.height(), right_); setPosCache(pi, x, y); }