]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_sqrtinset.h
index e3e153de39c82e81a702e2e8e73ab5e81c85699f..57517e49595d74c7ae9c93f104205e6757f37940 100644 (file)
@@ -2,7 +2,7 @@
 #ifndef MATH_SQRTINSET_H
 #define MATH_SQRTINSET_H
 
-#include "math_inset.h"
+#include "math_nestinset.h"
 
 #ifdef __GNUG__
 #pragma interface
 /** The square root inset.
     \author Alejandro Aguilar Siearra
  */
-class MathSqrtInset : public MathInset {
+class MathSqrtInset : public MathNestInset {
 public:
        ///
        MathSqrtInset();
        ///
        MathInset * clone() const;
        ///
-       void draw(Painter &, int x, int baseline);
+       void draw(Painter &, int x, int y) const;
        ///
-       void Write(std::ostream &, bool fragile) const;
+       void metrics(MathMetricsInfo const & st) const;
+
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void normalize(NormalStream &) const;
        ///
-       void WriteNormal(std::ostream &) const;
+       void maplize(MapleStream &) const;
        ///
-       void Metrics(MathStyles st, int asc = 0, int des = 0);
+       void mathmlize(MathMLStream &) const;
 };
 #endif