]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_macroarg.h
index ba2290df30718b4e22528b7d109f44a995206f28..26f76ed033929e88efdbb545698ddaec863c642d 100644 (file)
@@ -2,36 +2,41 @@
 #ifndef MATHMACROARGUMENT_H
 #define MATHMACROARGUMENT_H
 
-#include "math_inset.h"
+#include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** A macro argument
-    \author Alejandro Aguilar Sierra
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
 */
-class MathMacroArgument : public MathedInset {
+class MathMacroArgument : public MathNestInset {
 public:
        ///
        explicit MathMacroArgument(int);
        ///
-       MathedInset * Clone();
-       ///
-       void substitute(MathMacro *);
+       MathInset * clone() const;
        ///
-       void Metrics();
+       bool isActive() const { return false; }
        ///
-       void draw(Painter &, int x, int baseline);
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void Write(std::ostream &, bool fragile);
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
-       int number() const;
+       void substitute(MathMacro const & macro);
 
+       ///
+       void normalize(NormalStream &) const;
+       ///
+       void write(WriteStream & os) const;
 
 private:
        /// A number between 1 and 9
        int number_;
+       ///
+       char str_[3];
+       ///
+       bool expanded_;
 };
 
 #endif