X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBrace.cpp;h=52ccc01b83055169b456241f980d95242a8eaa93;hb=bf56e2c8e1afa857cd5e313c19948040e41b8227;hp=3f88fc52edb94ccfdf2dbfc13bbb6aba5985cd5d;hpb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;p=lyx.git diff --git a/src/mathed/InsetMathBrace.cpp b/src/mathed/InsetMathBrace.cpp index 3f88fc52ed..52ccc01b83 100644 --- a/src/mathed/InsetMathBrace.cpp +++ b/src/mathed/InsetMathBrace.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,63 +11,65 @@ #include #include "InsetMathBrace.h" + #include "MathData.h" #include "MathStream.h" #include "MathSupport.h" -#include "Color.h" +#include "MetricsInfo.h" #include "frontends/FontMetrics.h" #include "frontends/Painter.h" -#include "support/std_ostream.h" - -namespace lyx { +#include +#include -using std::max; -using std::auto_ptr; +using namespace std; +namespace lyx { -InsetMathBrace::InsetMathBrace() - : InsetMathNest(1) +InsetMathBrace::InsetMathBrace(Buffer * buf) + : InsetMathNest(buf, 1) {} InsetMathBrace::InsetMathBrace(MathData const & ar) - : InsetMathNest(1) + : InsetMathNest(const_cast(ar.buffer()), 1) { cell(0) = ar; } -auto_ptr InsetMathBrace::doClone() const +Inset * InsetMathBrace::clone() const { - return auto_ptr(new InsetMathBrace(*this)); + return new InsetMathBrace(*this); } -bool InsetMathBrace::metrics(MetricsInfo & mi, Dimension & dim) const +void InsetMathBrace::metrics(MetricsInfo & mi, Dimension & dim) const { - cell(0).metrics(mi); - Dimension t = theFontMetrics(mi.base.font).dimension('{'); - dim.asc = max(cell(0).ascent(), t.asc); - dim.des = max(cell(0).descent(), t.des); - dim.wid = cell(0).width() + 2 * t.wid; + Dimension dim0; + cell(0).metrics(mi, dim0); + FontInfo font = mi.base.font; + augmentFont(font, "mathnormal"); + Dimension t = theFontMetrics(font).dimension('{'); + dim.asc = max(dim0.asc, t.asc); + dim.des = max(dim0.des, t.des); + dim.wid = dim0.width() + 2 * t.wid; metricsMarkers(dim); - if (dim_ == dim) - return false; - dim_ = dim; - return true; } void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const { - Font font = pi.base.font; - font.setColor(Color::latex); + FontInfo font = pi.base.font; + augmentFont(font, "mathnormal"); + font.setShape(UP_SHAPE); + font.setColor(Color_latex); Dimension t = theFontMetrics(font).dimension('{'); pi.pain.text(x, y, '{', font); cell(0).draw(pi, x + t.wid, y); - pi.pain.text(x + t.wid + cell(0).width(), y, '}', font); + Dimension const & dim0 = cell(0).dimension(*pi.base.bv); + pi.pain.text(x + t.wid + dim0.width(), y, '}', font); drawMarkers(pi, x, y); } @@ -102,6 +104,12 @@ void InsetMathBrace::mathmlize(MathStream & os) const } +void InsetMathBrace::htmlize(HtmlStream & os) const +{ + os << cell(0); +} + + void InsetMathBrace::mathematica(MathematicaStream & os) const { os << cell(0);