X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBrace.cpp;h=8b06f6d546d06c9095814b75dd12c8209b764d61;hb=c9d9309c1ecffa218dee04ce4f7991ed4fc0c9bb;hp=fc5058972330b93573284a8c6dca34d0f83573d6;hpb=137158532b1ac0cde1557226ee486b3fda39b545;p=lyx.git diff --git a/src/mathed/InsetMathBrace.cpp b/src/mathed/InsetMathBrace.cpp index fc50589723..8b06f6d546 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,25 +11,29 @@ #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" +#include +#include + +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; } @@ -43,25 +47,29 @@ Inset * InsetMathBrace::clone() const void InsetMathBrace::metrics(MetricsInfo & mi, Dimension & dim) const { - cell(0).metrics(mi); - Dimension t = theFontMetrics(mi.base.font).dimension('{'); - dim.asc = std::max(cell(0).ascent(), t.asc); - dim.des = std::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, from_ascii("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); - // Cache the inset dimension. - setDimCache(mi, dim); } 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, from_ascii("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); } @@ -96,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);