]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_decorationinset.C
fix build, thesaurus
[lyx.git] / src / mathed / math_decorationinset.C
index 7c76cee6eb7b1a85225a0a7dd48720522a7aa4a7..bbfdf2005f4730ba5360129a11f1bbd6c71e7191 100644 (file)
@@ -1,14 +1,14 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_decorationinset.h"
-#include "mathed/support.h"
+#include "math_support.h"
 #include "math_parser.h"
-#include "support/LOstream.h"
-
-
-using std::ostream;
+#include "math_mathmlstream.h"
+#include "math_streamstr.h"
 
 
 MathDecorationInset::MathDecorationInset(string const & name)
@@ -24,7 +24,10 @@ MathInset * MathDecorationInset::clone() const
 
 bool MathDecorationInset::upper() const
 {
-       return name_ != "underline" && name_ != "underbrace";
+       return
+                       name_ != "underbar" &&
+                       name_ != "underline" &&
+                       name_ != "underbrace";
 }
 
 
@@ -94,17 +97,15 @@ void MathDecorationInset::draw(Painter & pain, int x, int y) const
 }
 
 
-void MathDecorationInset::write(MathWriteInfo & os) const
+void MathDecorationInset::write(WriteStream & os) const
 {
-       if (os.fragile && protect())
+       if (os.fragile() && protect())
                os << "\\protect";
        os << '\\' << name_ << '{' << cell(0) << '}';
 }
 
 
-void MathDecorationInset::writeNormal(ostream & os) const
+void MathDecorationInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_ << " ";
-       cell(0).writeNormal(os);
-       os << "] ";
+       os << "[deco " << name_ << ' ' <<  cell(0) << ']';
 }