]> 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 ffbe2d1377746811072309bcd61b8839a4537faf..fd2585452304cfef55f29777960a16efcbc8365e 100644 (file)
@@ -1,48 +1,59 @@
 #include <config.h>
 
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "math_dotsinset.h"
-#include "mathed/support.h"
-#include "support/LOstream.h"
+#include "math_mathmlstream.h"
+#include "math_streamstr.h"
+#include "math_support.h"
+
 
-using std::ostream;
+MathDotsInset::MathDotsInset(string const & name)
+       : name_(name)
+{}
 
 
-MathDotsInset::MathDotsInset(string const & nam, int id, short st)
-       : MathedInset(nam, LM_OT_DOTS, st), code_(id) {}
+MathInset * MathDotsInset::clone() const
+{
+       return new MathDotsInset(*this);
+}
 
 
-MathedInset * MathDotsInset::Clone()
+void MathDotsInset::metrics(MathMetricsInfo const & mi) const
 {
-       return new MathDotsInset(name, code_, GetStyle());
-}     
+       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::draw(Painter & pain, int x, int y)
+void MathDotsInset::draw(Painter & 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) ++x;
-       if (code_ != LM_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_);
+       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::Metrics()
+void MathDotsInset::write(WriteStream & os) const
 {
-       mathed_char_height(LM_TC_VAR, size(), 'M', ascent, descent);
-       width = mathed_char_width(LM_TC_VAR, size(), 'M');   
-       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;
-       }
-} 
+       os << '\\' << name_ << ' ';
+}
 
 
-void
-MathDotsInset::Write(ostream & os, bool /* fragile */)
+void MathDotsInset::normalize(NormalStream & os) const
 {
-       os << '\\' << name << ' ';
+       os << "[" << name_ << "] ";
 }