]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_macroarg.h
index 9d5f221fe49698f948cc27c582dda221025f2287..cb45e631003c8f55b4ff0e146d5b8fbe9d25b1d2 100644 (file)
@@ -2,7 +2,7 @@
 #ifndef MATHMACROARGUMENT_H
 #define MATHMACROARGUMENT_H
 
-#include "math_inset.h"
+#include "math_nestinset.h"
 
 #ifdef __GNUG__
 #pragma interface
 /** A macro argument
     \author Alejandro Aguilar Sierra
 */
-class MathMacroArgument : public MathInset {
+class MathMacroArgument : public MathNestInset {
 public:
        ///
-       explicit MathMacroArgument(int);
+       explicit MathMacroArgument(int, MathTextCodes = LM_TC_MIN);
        ///
        MathInset * clone() const;
        ///
-       //void metrics(MathStyles st) const;
+       bool isActive() const { return false; }
        ///
-       void draw(Painter &, int x, int y) const;
-       ///
-       void write(std::ostream &, bool fragile) const;
+       void metrics(MathMetricsInfo const & st) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(Painter &, int x, int y) const;
        ///
-       void substitute(MathArray & array, MathMacro const & macro) const;
-       /// 
-       int ascent() const;
+       void substitute(MathMacro const & macro);
+
        ///
-       int descent() const;
+       void normalize(NormalStream &) const;
        ///
-       int width() const;
+       void write(WriteStream & os) const;
 
 private:
        /// A number between 1 and 9
        int number_;
        ///
        char str_[3];
+       ///
+       bool expanded_;
+       ///
+       mutable LyXFont font_;
+       ///
+       MathTextCodes code_;
 };
 
 #endif