]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_notinset.C
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_notinset.C
index 5b72fc88b2b8b0226f491f1525db8769d7617f04..1929286e129397e7fb6aa4ed854058cd1768dcda 100644 (file)
@@ -1,11 +1,9 @@
 #include "math_notinset.h"
 #include "math_parser.h"
-#include "support.h"
-#include "support/LOstream.h"
+#include "math_mathmlstream.h"
+#include "math_support.h"
 
 
-using std::ostream;
-
 MathNotInset::MathNotInset()
 {}
 
@@ -16,30 +14,33 @@ MathInset * MathNotInset::clone() const
 }
 
 
-void MathNotInset::write(ostream & os, bool /* fragile */) const
+void MathNotInset::write(WriteStream & os) const
 {
        os << "\\not ";
 }
 
 
-void MathNotInset::writeNormal(ostream & os) const
+void MathNotInset::normalize(NormalStream & os) const
 {
        os << "[not] ";
 }
 
 
-void MathNotInset::metrics(MathStyles st) const
+void MathNotInset::metrics(MathMetricsInfo const & mi) const
 {
-       size(st);
-       mathed_char_dim(LM_TC_VAR, size_, '/', ascent_, descent_, width_);
-       width_ = 1;
+       mi_ = mi;
+       if (math_font_available(LM_TC_CMSY))
+               mathed_char_dim(LM_TC_CMSY, mi_, 54, ascent_, descent_, width_);
+       else
+               mathed_char_dim(LM_TC_VAR, mi_, '/', ascent_, descent_, width_);
+       width_ = 0;
 }
 
 
 void MathNotInset::draw(Painter & pain, int x, int y) const
 {  
-       xo(x);
-       yo(y);
-
-       drawChar(pain, LM_TC_VAR, size_, x + 4, y, '/');
+       if (math_font_available(LM_TC_CMSY))
+               drawChar(pain, LM_TC_CMSY, mi_, x, y, 54);
+       else
+               drawChar(pain, LM_TC_VAR, mi_, x, y, '/');
 }