]> 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 45fc2c91e9ffd5d16dfb128bde8eb206232690ca..f40f3df82905160247fc2608802b40bd47af02ed 100644 (file)
@@ -6,16 +6,16 @@
  *  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
@@ -23,9 +23,8 @@
 
 #include <vector>
 #include <iosfwd>
-#include <boost/smart_ptr.hpp>
 
-#include "math_parinset.h"
+#include "math_inset.h"
 #include "math_macroarg.h"
 
 class MathMacroTemplate;
@@ -35,69 +34,48 @@ 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 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);
-       /// Index 0 is the template, index 1..nargs() are the parameters
-       bool setArgumentIdx(int);
-       ///
-       int getArgumentIdx() const;
-       ///
-       int getMaxArgumentIdx() const;
-       ///
-       int nargs() const;
-       ///
-       int GetColumns() const;
-       ///
-       void GetXY(int &, int &) const;
+       MathMacro(MathMacro const &);
        ///
-       void SetFocus(int, int);
-       ///
-       MathedArray & GetData();
+       void draw(Painter &, int, int);
        ///
-       MathedArray const & GetData() const;
+       void Metrics(MathStyles st, int asc = 0, int des = 0);
        ///
-       void setData(MathedArray const &);
+       MathInset * clone() const;
        ///
-       void setData(MathedArray const &, int);
+       void Write(std::ostream &, bool fragile) const;
        ///
-       MathedTextCodes getTCode() const;
+       void WriteNormal(std::ostream &) const;
        ///
-       bool Permit(short) const;
+       void dump(std::ostream & os) const;
+
        ///
-       void expand();
+       bool idxUp(int &, int &) const;
        ///
-       void dump(ostream & os) const;
+       bool idxDown(int &, int &) const;
        ///
-       MathParInset const * arg(int) const;
+       bool idxLeft(int &, int &) const;
        ///
-       MathParInset * arg(int);
+       bool idxRight(int &, int &) const;
+
        ///
-       MathMacroTemplate * tmplate() const;
+       void Validate(LaTeXFeatures &) const;
+
 private:
        ///
-       MathMacroTemplate * tmplate_;
-       /// our arguments
-       std::vector< boost::shared_ptr<MathParInset> > args_;
-       /// the expanded version fror drawing
-       boost::shared_ptr<MathParInset> expanded_;
+       MathMacroTemplate const * const tmplate_;
+       ///
+       MathXArray expanded_;
        ///
-       int idx_;
-
-       /// unimplemented
        void operator=(MathMacro const &);
 };
 
-inline ostream & operator<<(ostream & os, MathMacro const & m)
+
+inline std::ostream & operator<<(std::ostream & os, MathMacro const & m)
 {
        m.dump(os);
        return os;