X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_dotsinset.C;h=b6c460acb1352e3fc82b10c0fa2b703363580e6d;hb=d359dd8fca52c4f0100f7cf4bf636113c5c4e49f;hp=4466879a5523a4c05b54a6e94f26c2fbe4224380;hpb=fda98080ccb5d208bd961fb9f73af578622f7d42;p=lyx.git diff --git a/src/mathed/math_dotsinset.C b/src/mathed/math_dotsinset.C index 4466879a55..b6c460acb1 100644 --- a/src/mathed/math_dotsinset.C +++ b/src/mathed/math_dotsinset.C @@ -1,56 +1,61 @@ +#include + #ifdef __GNUG__ #pragma implementation #endif #include "math_dotsinset.h" -#include "mathed/support.h" -#include "support/LOstream.h" - -using std::ostream; +#include "math_mathmlstream.h" +#include "math_streamstr.h" +#include "math_support.h" -MathDotsInset::MathDotsInset(string const & name, int id) - : MathInset(0, name), code_(id) +MathDotsInset::MathDotsInset(string const & name) + : name_(name) {} MathInset * MathDotsInset::clone() const { return new MathDotsInset(*this); -} +} + +void MathDotsInset::metrics(MathMetricsInfo & mi) const +{ + mathed_char_dim(mi.base.font, 'M', ascent_, descent_, width_); + if (name_ == "ldots" || name_ == "dotsm") + dh_ = 0; + else if (name_ == "cdots" || name_ == "dotsb" + || name_ == "dotsm" || name_ == "dotsi") + dh_ = ascent_ / 2; + else if (name_ == "dotsc") + dh_ = ascent_ / 4; + else if (name_ == "vdots") + width_ /= 2; + else if (name_ == "ddots") + dh_ = ascent_; +} -void MathDotsInset::draw(Painter & pain, int x, int y) + +void MathDotsInset::draw(MathPainterInfo & pain, int x, int y) const { - mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, code_); - if (code_ == LM_vdots || code_ == LM_ddots) + mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_); + if (name_ == "vdots" || name_ == "ddots") ++x; - if (code_ != LM_vdots) + if (name_ != "vdots") --y; - mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, code_); + mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_); } -void MathDotsInset::metrics(MathStyles st) -{ - size(st); - mathed_char_dim(LM_TC_VAR, size(), 'M', ascent_, descent_, width_); - switch (code_) { - case LM_ldots: dh_ = 0; break; - case LM_cdots: dh_ = ascent_/2; break; - case LM_vdots: width_ /= 2; - case LM_ddots: dh_ = ascent_; break; - } -} - - -void MathDotsInset::write(ostream & os, bool /* fragile */) const +void MathDotsInset::write(WriteStream & os) const { - os << '\\' << name() << ' '; + os << '\\' << name_ << ' '; } -void MathDotsInset::writeNormal(ostream & os) const +void MathDotsInset::normalize(NormalStream & os) const { - os << "[" << name() << "] "; + os << "[" << name_ << "] "; }