]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.h
fix pullArg when pressing <Delete> at the end of an cell
[lyx.git] / src / mathed / math_macro.h
index d5d519123b02407db00abfeeda331b4a444a2b48..f40f3df82905160247fc2608802b40bd47af02ed 100644 (file)
@@ -6,25 +6,26 @@
  *  Created:     November 1996
  *  Description: WYSIWYG math macros
  *
- *  Dependencies: Mathed
+ *  Dependencies: Math
  *
  *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
  *
- *   Version: 0.2, Mathed & Lyx project.
+ *   Version: 0.2, Math & Lyx project.
  *
  *   This code is under the GNU General Public Licence version 2 or later.
  */
-#ifndef MATH_MACRO
-#define MATH_MACRO
+#ifndef MATH_MACRO_H
+#define MATH_MACRO_H
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
 #include <vector>
-#include <boost/smart_ptr.hpp>
+#include <iosfwd>
 
-#include "math_parinset.h"
+#include "math_inset.h"
+#include "math_macroarg.h"
 
 class MathMacroTemplate;
 
@@ -33,63 +34,50 @@ class MathMacroTemplate;
     \author Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
     \version November 1996
  */
-class MathMacro : public MathParInset {
+class MathMacro : public MathInset {
 public:
-       /// A macro can only be built from an existing template
-       explicit
-       MathMacro(boost::shared_ptr<MathMacroTemplate> const &);
+       /// A macro can be built from an existing template
+       explicit MathMacro(MathMacroTemplate const &);
        ///
-       void draw(Painter &, int, int);
-       ///
-       void Metrics();
-       ///
-       MathedInset * Clone();
-       ///
-       void Write(std::ostream &, bool fragile);
+       MathMacro(MathMacro const &);
        ///
-       bool setArgumentIdx(int);
-       ///
-       int getArgumentIdx() const;
+       void draw(Painter &, int, int);
        ///
-       int getMaxArgumentIdx() const;
+       void Metrics(MathStyles st, int asc = 0, int des = 0);
        ///
-       int GetColumns() const;
+       MathInset * clone() const;
        ///
-       void GetXY(int &, int &) const;
+       void Write(std::ostream &, bool fragile) const;
        ///
-       void SetFocus(int, int);
+       void WriteNormal(std::ostream &) const;
        ///
-       MathedArray & GetData();
+       void dump(std::ostream & os) const;
+
        ///
-       MathedArray const & GetData() const;
+       bool idxUp(int &, int &) const;
        ///
-       MathedRowSt * getRowSt() const;
+       bool idxDown(int &, int &) const;
        ///
-       void setData(MathedArray const &);
+       bool idxLeft(int &, int &) const;
        ///
-       MathedTextCodes getTCode() const;
+       bool idxRight(int &, int &) const;
+
        ///
-       bool Permit(short) const;
+       void Validate(LaTeXFeatures &) const;
+
 private:
        ///
-       boost::shared_ptr<MathMacroTemplate> tmplate_;
-       ///
-       struct MacroArgumentBase {
-               ///
-               MathedRowSt * row;
-               ///
-               MathedArray array;
-               ///
-               MacroArgumentBase()
-                       :  row(0)
-                       {}
-       };
-       std::vector<MacroArgumentBase> args_;
+       MathMacroTemplate const * const tmplate_;
        ///
-       int idx_;
+       MathXArray expanded_;
        ///
-       int nargs_;
-       ///
-       MathedTextCodes tcode_;
+       void operator=(MathMacro const &);
 };
+
+
+inline std::ostream & operator<<(std::ostream & os, MathMacro const & m)
+{
+       m.dump(os);
+       return os;
+}
 #endif