]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
remove unneeded member
[lyx.git] / src / mathed / math_macrotemplate.h
index 7fa1f4b2a4749f69dbe5ef4fc8880be466a22cd4..a8f09a04ad75af19df95e803d703f623dad6361c 100644 (file)
@@ -1,61 +1,48 @@
 // -*- 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"
+#ifdef __GNUG__
+#pragma interface
+#endif
 
 class MathMacro;
 
 /** This class contains the macro definition
     \author Alejandro Aguilar Sierra
  */
-class MathMacroTemplate : public MathParInset {
+//class MathMacroTemplate : public MathInset, boost::noncopyable
+
+class MathMacroTemplate : public MathNestInset {
 public:
-       /// A template constructor needs all the data
-       explicit
-       MathMacroTemplate(string const &, int na = 0, int f = 0);
        ///
-       ~MathMacroTemplate();
+       MathMacroTemplate();
        ///
-       void draw(Painter &, int, int);
+       MathMacroTemplate(string const & name, int nargs);
        ///
-       void Metrics();
+       MathInset * clone() const;
        ///
-       void WriteDef(std::ostream &, bool fragile);
-       /// useful for special insets
-       void  setTCode(MathedTextCodes t);
-       ///
-       MathedTextCodes getTCode() const;
-       /// 
-       void setArgument(MathedArray *, int i= 0);
+       void write(WriteStream & os) const;
        /// Number of arguments
-       int getNoArgs() const;
-       ///
-       void GetMacroXY(int, int &, int &) const;
+       int numargs() const;
        ///
-       MathParInset * getMacroPar(int) const;
+       void numargs(int);
        ///
-       void SetMacroFocus(int &, int, int);
+       string const & name() const;
        ///
-       void setEditMode(bool);
-       
-       /// Replace the appropriate arguments with a specific macro's data
-       void update(MathMacro * m = 0);
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
-       short flags() const {
-               return flags_;
-       }
+       void metrics(MathMetricsInfo & st) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
 private:
        ///
-       short flags_;
+       int numargs_;
        ///
-       MathedTextCodes tcode_;
-       ///
-       std::vector<MathMacroArgument> args_;
-       ///
-       int nargs_;
+       string name_;
 };
+
 #endif