]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
remove unneeded member
[lyx.git] / src / mathed / math_macrotemplate.h
index e000e0aa67a9c3ee8cac50e3acb0db1d77884f84..a8f09a04ad75af19df95e803d703f623dad6361c 100644 (file)
@@ -1,14 +1,9 @@
 // -*- C++ -*-
-#ifndef MATHMACROTEMPLATE
-#define MATHMACROTEMPLATE
+#ifndef MATH_MACROTEMPLATE_H
+#define MATH_MACROTEMPLATE_H
 
-#include <vector>
-
-#include <boost/utility.hpp>
-//#include <boost/smart_ptr.hpp>
-
-#include "math_parinset.h"
-#include "math_macroarg.h"
+#include "math_nestinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
@@ -19,44 +14,35 @@ class MathMacro;
 /** This class contains the macro definition
     \author Alejandro Aguilar Sierra
  */
-class MathMacroTemplate : public MathParInset, public boost::noncopyable {
+//class MathMacroTemplate : public MathInset, boost::noncopyable
+
+class MathMacroTemplate : public MathNestInset {
 public:
-       friend class MathMacro;
-       
-       /// A template constructor needs all the data
-       explicit
-       MathMacroTemplate(string const &, int na);
        ///
-       void draw(Painter &, int, int);
+       MathMacroTemplate();
        ///
-       void Metrics();
+       MathMacroTemplate(string const & name, int nargs);
        ///
-       void WriteDef(std::ostream &, bool fragile);
-       /// useful for special insets
-       void setTCode(MathedTextCodes t);
+       MathInset * clone() const;
        ///
-       MathedTextCodes getTCode() const;
+       void write(WriteStream & os) const;
        /// Number of arguments
-       int getNoArgs() const;
+       int numargs() const;
        ///
-       void GetMacroXY(int, int &, int &) const;
+       void numargs(int);
        ///
-       MathParInset * getMacroPar(int) const;
+       string const & name() const;
        ///
-       void setMacroPar(int, MathedArray const &);
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
-       void SetMacroFocus(int &, int, int);
-       ///
-       void setEditMode(bool);
+       void metrics(MathMetricsInfo & st) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
 private:
-       /// Are we in edit mode or not?
-       bool edit_;
-       ///
-       MathedTextCodes tcode_;
        ///
-       //std::vector<boost::shared_ptr<MathMacroArgument> > args_;
-       std::vector<MathMacroArgument> args_;
+       int numargs_;
        ///
-       int nargs_;
+       string name_;
 };
+
 #endif