]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.h
updates to latexfeatures stuff; allow empty \document_path
[lyx.git] / src / mathed / math_sqrtinset.h
index 122c0f0a8fa65ac54b3d5323c937886611f46694..57517e49595d74c7ae9c93f104205e6757f37940 100644 (file)
@@ -2,7 +2,7 @@
 #ifndef MATH_SQRTINSET_H
 #define MATH_SQRTINSET_H
 
-#include "math_parinset.h"
+#include "math_nestinset.h"
 
 #ifdef __GNUG__
 #pragma interface
 /** The square root inset.
     \author Alejandro Aguilar Siearra
  */
-class MathSqrtInset : public MathParInset {
+class MathSqrtInset : public MathNestInset {
 public:
        ///
-       MathSqrtInset(short st = LM_ST_TEXT);
+       MathSqrtInset();
        ///
-       MathedInset * Clone();
+       MathInset * clone() const;
        ///
-       void draw(Painter &, int x, int baseline);
+       void draw(Painter &, int x, int y) const;
        ///
-       void Write(std::ostream &, bool fragile);
-       ///
-       void WriteNormal(std::ostream &);
+       void metrics(MathMetricsInfo const & st) const;
+
        ///
-       void Metrics();
+       void write(WriteStream & os) const;
        ///
-       bool Inside(int, int);
-private:
+       void normalize(NormalStream &) const;
        ///
-       int hmax_;
+       void maplize(MapleStream &) const;
        ///
-       int wbody_;
+       void mathmlize(MathMLStream &) const;
 };
 #endif