]> 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 26fad2dad06d05e58bb1c3ece7641bd5977380a8..d7d763d878a1e74eb949921b80b8e20c2ed93afc 100644 (file)
@@ -1,42 +1,45 @@
 // -*- C++ -*-
+/**
+ * \file math_macroarg.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATHMACROARGUMENT_H
 #define MATHMACROARGUMENT_H
 
-#include "math_inset.h"
+#include "math_diminset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** A macro argument
-    \author Alejandro Aguilar Sierra
-*/
-class MathMacroArgument : public MathInset {
+/// A macro argument.
+class MathMacroArgument : public MathDimInset {
 public:
        ///
-       explicit MathMacroArgument(int);
+       explicit MathMacroArgument(std::size_t);
        ///
-       MathInset * clone() const;
+       std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MathStyles st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       std::size_t number() const { return number_; }
        ///
-       void writeNormal(std::ostream &) const;
-       ///
-       void substitute(MathArray & array, MathMacro const & macro) const;
-       /// 
-       int ascent() const;
+       InsetBase::Code lyxCode() const { return MATHMACROARG_CODE; }
+
        ///
-       int descent() const;
+       void normalize(NormalStream &) const;
        ///
-       int width() const;
+       void write(WriteStream & os) const;
 
 private:
        /// A number between 1 and 9
-       int number_;
+       std::size_t number_;
        ///
        char str_[3];
 };