]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_macrotemplate.h
index bf34520575337c80772ea773fada396d8129b7cb..405eeb331172e24ade293c1d44c44dfd69455dc3 100644 (file)
@@ -1,57 +1,52 @@
 // -*- C++ -*-
-#ifndef MATHMACROTEMPLATE
-#define MATHMACROTEMPLATE
+#ifndef MATH_MACROTEMPLATE_H
+#define MATH_MACROTEMPLATE_H
 
-#include <vector>
+#include "math_nestinset.h"
+#include "LString.h"
 
-#include "math_parinset.h"
-#include "math_macroarg.h"
 
 class MathMacro;
 
-/// This class contains the macro definition
-class MathMacroTemplate: public MathParInset {
-  public:
-  /// A template constructor needs all the data
-    explicit
-    MathMacroTemplate(string const &, int na = 0, int f = 0);
-    ///
-    ~MathMacroTemplate();
-    ///
-    void draw(Painter &, int, int);
-    ///
-    void Metrics();
-    ///
-    void WriteDef(std::ostream &, bool fragile);
-    /// useful for special insets
-    void  setTCode(MathedTextCodes t);
-    ///
-    MathedTextCodes getTCode() const;
-    /// 
-    void setArgument(MathedArray *, int i= 0);
-    /// Number of arguments
-    int getNoArgs() const;
-    ///
-    void GetMacroXY(int, int &, int &) const;
-    ///
-    MathParInset * getMacroPar(int) const;
-    ///
-    void SetMacroFocus(int &, int, int);
-    ///
-    void setEditMode(bool);
+/** This class contains the macro definition
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
+ */
+//class MathMacroTemplate : public MathInset, boost::noncopyable
 
-    /// Replace the appropriate arguments with a specific macro's data
-    void update(MathMacro * m = 0);
+class MathMacroTemplate : public MathNestInset {
+public:
+       ///
+       MathMacroTemplate();
+       ///
+       MathMacroTemplate(string const & name, int nargs,
+               MathArray const & = MathArray(), MathArray const & = MathArray());
+       ///
+       explicit MathMacroTemplate(std::istream & is);
+       ///
+       InsetBase * clone() const;
+       ///
+       void write(WriteStream & os) const;
+       /// Number of arguments
+       int numargs() const;
+       ///
+       void numargs(int);
+       ///
+       string name() const;
+       ///
+       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:
-    ///
-    short flags;
-    ///
-    MathedTextCodes tcode;
-    ///
-    std::vector<MathMacroArgument> args_;
-    ///
-    int nargs;
-    ///
-    friend class MathMacro;
+       ///
+       int numargs_;
+       ///
+       string name_;
 };
+
 #endif