]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_rootinset.h
fix #1073
[lyx.git] / src / mathed / math_rootinset.h
index 0e3c81287e685757b94b3cbe1fe2c2775fd14983..d483027fcfcb66f4a7cea34384bb222312306950 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
  *
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** The general n-th root inset.
-    \author Alejandro Aguilar Sierra
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
     \version January 1999
  */
 class MathRootInset : public MathNestInset {
@@ -32,13 +31,11 @@ public:
        ///
        MathInset * clone() const;
        ///
-       bool idxUp(idx_type & idx, pos_type & pos) const;
+       bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
        ///
-       bool idxDown(idx_type & idx, pos_type & pos) const;
+       void metrics(MetricsInfo & mi) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
-       ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 
        ///
        void write(WriteStream & os) const;
@@ -47,7 +44,9 @@ public:
        ///
        void mathmlize(MathMLStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void maple(MapleStream &) const;
+       ///
+       void octave(OctaveStream &) const;
 };
 
 #endif