]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.C
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_dotsinset.C
index 35cb29396438af4dd3e5d17bef123d121d20e192..fd2585452304cfef55f29777960a16efcbc8365e 100644 (file)
@@ -1,57 +1,59 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_dotsinset.h"
-#include "mathed/support.h"
-#include "mathed/math_parser.h"
-#include "support/LOstream.h"
-
-using std::ostream;
+#include "math_mathmlstream.h"
+#include "math_streamstr.h"
+#include "math_support.h"
 
 
-MathDotsInset::MathDotsInset(latexkeys const * key)
-       : key_(key)
+MathDotsInset::MathDotsInset(string const & name)
+       : name_(name)
 {}
 
 
 MathInset * MathDotsInset::clone() const
 {
        return new MathDotsInset(*this);
-}     
+}
 
 
-void MathDotsInset::draw(Painter & pain, int x, int y)
+void MathDotsInset::metrics(MathMetricsInfo const & mi) const
 {
-       mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, key_->id);
-       if (key_->id == LM_vdots || key_->id == LM_ddots)
-               ++x;
-       if (key_->id != LM_vdots)
-               --y;
-       mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, key_->id);
+       LyXFont font;
+       whichFont(font, LM_TC_VAR, mi);
+       mathed_char_dim(font, '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::metrics(MathStyles st)
+void MathDotsInset::draw(Painter & pain, int x, int y) const
 {
-       size(st);
-       mathed_char_dim(LM_TC_VAR, size(), 'M', ascent_, descent_, width_);
-       switch (key_->id) {
-               case LM_ldots: dh_ = 0; break;
-               case LM_cdots: dh_ = ascent_ / 2; break;
-               case LM_vdots: width_ /= 2;
-               case LM_ddots: dh_ = ascent_; break;
-       }
-} 
+       mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
+       char const c = name_[0];
+       if (c == 'v' || c == 'd')
+               ++x;
+       if (c != 'v')
+               --y;
+       mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
+}
 
 
-void MathDotsInset::write(ostream & os, bool /* fragile */) const
+void MathDotsInset::write(WriteStream & os) const
 {
-       os << '\\' << key_->name << ' ';
+       os << '\\' << name_ << ' ';
 }
 
 
-void MathDotsInset::writeNormal(ostream & os) const
+void MathDotsInset::normalize(NormalStream & os) const
 {
-       os << "[" << key_->name << "] ";
+       os << "[" << name_ << "] ";
 }