]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stringinset.h
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_stringinset.h
index 1a63f7c7721ffac77be71d32187c4ec2c79115b3..bbbd670348893bdab95da87e4e4d0b26c0f48ac5 100644 (file)
@@ -1,44 +1,47 @@
 // -*- C++ -*-
+/**
+ * \file math_stringinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_STRINGINSET_H
 #define MATH_STRINGINSET_H
 
 #include "math_inset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** Some cllection of chars with similar properties
-    \author André Pönitz
+/** Some collection of chars with similar properties
+ *  mainly for math-extern
  */
 
 class MathStringInset : public MathInset {
 public:
        ///
-       MathStringInset(string const & s, MathTextCodes t = LM_TC_TEXTRM);
-       ///
-       MathInset * clone() const;
+       explicit MathStringInset(std::string const & s);
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void draw(Painter &, int x, int y) const;
-       /// 
-       int ascent() const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       int descent() const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       int width() const;
-       ///
-       string str() const { return str_; }
+       std::string str() const { return str_; }
        ///
        MathStringInset * asStringInset() { return this; }
 
        ///
        void normalize(NormalStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void octave(OctaveStream &) const;
+       ///
+       void maple(MapleStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void mathematica(MathematicaStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
@@ -46,10 +49,6 @@ public:
 
 private:
        /// the string
-       string str_;
-       /// the font to be used on screen
-       MathTextCodes code_;
-       ///
-       mutable MathMetricsInfo mi_;
+       std::string str_;
 };
 #endif