]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_rootinset.h
try to fix rounding errors
[lyx.git] / src / mathed / math_rootinset.h
index 1b1fb2e360b2ea048ba80b0f6f7a911fc5800383..e03755e0173cf4d2cb81d4da0e7038edf5c4159a 100644 (file)
@@ -1,8 +1,8 @@
 // -*- C++ -*-
 /*
  *  File:        math_root.h
- *  Purpose:     Declaration of the root object 
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Purpose:     Declaration of the root object
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  Created:     January 1999
  *  Description: Root math object
  *
@@ -15,8 +15,7 @@
 #ifndef MATH_ROOT_H
 #define MATH_ROOT_H
 
-#include "math_inset.h"
-#include "symbol_def.h"
+#include "math_nestinset.h"
 
 #ifdef __GNUG__
 #pragma interface
     \author Alejandro Aguilar Sierra
     \version January 1999
  */
-class MathRootInset : public MathInset {
+class MathRootInset : public MathNestInset {
 public:
        ///
        MathRootInset();
        ///
        MathInset * clone() const;
        ///
-       void draw(Painter &, int x, int baseline);
+       bool idxUpDown(idx_type & idx, bool up) const;
        ///
-       void Write(std::ostream &, bool fragile) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void WriteNormal(std::ostream &) const;
+       void draw(MathPainterInfo &, int x, int y) const;
+
+       ///
+       void write(WriteStream & os) const;
        ///
-       void Metrics(MathStyles st);
+       void normalize(NormalStream &) const;
        ///
-       bool idxUp(int & idx, int & pos) const;
+       void mathmlize(MathMLStream &) const;
        ///
-       bool idxDown(int & idx, int & pos) const;
+       void octavize(OctaveStream &) const;
 };
 
 #endif