]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.C
remove unneeded member
[lyx.git] / src / mathed / math_dotsinset.C
index 2615aed1df585f187a82160e35373763ad2c5006..b6c460acb1352e3fc82b10c0fa2b703363580e6d 100644 (file)
@@ -18,33 +18,37 @@ MathDotsInset::MathDotsInset(string const & 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) const
+void MathDotsInset::draw(MathPainterInfo & pain, int x, int y) const
 {
        mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
-       char const c = name_[0];
-       if (c == 'v' || c == 'd')
+       if (name_ == "vdots" || name_ == "ddots")
                ++x;
-       if (c != 'v')
+       if (name_ != "vdots")
                --y;
        mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
 }
 
 
-void MathDotsInset::metrics(MathMetricsInfo const & mi) const
-{
-       mathed_char_dim(LM_TC_VAR, mi, 'M', ascent_, descent_, width_);
-       switch (name_[0]) {
-               case 'l': dh_ = 0; break;
-               case 'c': dh_ = ascent_ / 2; break;
-               case 'v': width_ /= 2;
-               case 'd': dh_ = ascent_; break;
-       }
-} 
-
-
 void MathDotsInset::write(WriteStream & os) const
 {
        os << '\\' << name_ << ' ';