]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.h
tfracinset files is missing so all usage of tfrac is commented out
[lyx.git] / src / mathed / math_macroarg.h
index 0c4e440dd60271dc1c2ecb56e14b803d5515326d..d7d763d878a1e74eb949921b80b8e20c2ed93afc 100644 (file)
 #ifndef MATHMACROARGUMENT_H
 #define MATHMACROARGUMENT_H
 
-#include "math_nestinset.h"
+#include "math_diminset.h"
 
 
 /// A macro argument.
-class MathMacroArgument : public MathNestInset {
+class MathMacroArgument : public MathDimInset {
 public:
        ///
-       explicit MathMacroArgument(int);
+       explicit MathMacroArgument(std::size_t);
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
-       bool isActive() const { return false; }
+       std::auto_ptr<InsetBase> clone() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
-       void substitute(MathMacro const & macro);
+       std::size_t number() const { return number_; }
+       ///
+       InsetBase::Code lyxCode() const { return MATHMACROARG_CODE; }
 
        ///
        void normalize(NormalStream &) const;
@@ -39,11 +39,9 @@ public:
 
 private:
        /// A number between 1 and 9
-       int number_;
+       std::size_t number_;
        ///
        char str_[3];
-       ///
-       bool expanded_;
 };
 
 #endif