]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_macrotemplate.h
index c1cc9eb94c2da964762055ae13d8a7773ff11b1d..405eeb331172e24ade293c1d44c44dfd69455dc3 100644 (file)
@@ -2,42 +2,51 @@
 #ifndef MATH_MACROTEMPLATE_H
 #define MATH_MACROTEMPLATE_H
 
-#include "math_inset.h"
+#include "math_nestinset.h"
+#include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 class MathMacro;
 
 /** This class contains the macro definition
-    \author Alejandro Aguilar Sierra
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
  */
-//class MathMacroTemplate : public MathInset, boost::noncopyable 
+//class MathMacroTemplate : public MathInset, boost::noncopyable
 
-class MathMacroTemplate : public MathInset {
+class MathMacroTemplate : public MathNestInset {
 public:
        ///
        MathMacroTemplate();
        ///
-       MathMacroTemplate(string const & name, int nargs);
+       MathMacroTemplate(string const & name, int nargs,
+               MathArray const & = MathArray(), MathArray const & = MathArray());
+       ///
+       explicit MathMacroTemplate(std::istream & is);
        ///
-       MathInset * clone() const;
+       InsetBase * clone() const;
        ///
-       void Write(std::ostream &, bool fragile) const;
+       void write(WriteStream & os) const;
        /// Number of arguments
        int numargs() const;
        ///
        void numargs(int);
        ///
-       void draw(Painter &, int, int);
+       string name() const;
        ///
-       void Metrics(MathStyles st);
+       void draw(PainterInfo &, int x, int y) const;
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
+       /// identifies macro templates
+       MathMacroTemplate const * asMacroTemplate() const { return this; }
 private:
        ///
        int numargs_;
-       /// unimplemented
-       void operator=(MathMacroTemplate const &);
+       ///
+       string name_;
 };
 
 #endif