]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stringinset.h
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_stringinset.h
index 54021486bbf3c63009ab6c9eea32e94e4d809302..d38a7cddf9d3ac04b2fe9a38098058c2b24e119e 100644 (file)
@@ -4,26 +4,24 @@
 
 #include "math_diminset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** Some cllection of chars with similar properties
-    \author André Pönitz
+/** Some collection of chars with similar properties
+ *  maily for math-extern
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 class MathStringInset : public MathDimInset {
 public:
-       ///
-       MathStringInset();
        ///
        explicit MathStringInset(string const & s);
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathMetricsInfo & st) const;
+       void metrics(MathMetricsInfo & mi) const;
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       void draw(MathPainterInfo & pi, int x, int y) const;
        ///
        string str() const { return str_; }
        ///
@@ -32,15 +30,17 @@ public:
        ///
        void normalize(NormalStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void octave(OctaveStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
+       ///
+       void mathematica(MathematicaStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
        void write(WriteStream & os) const;
 
-public:
+private:
        /// the string
        string str_;
 };