]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_macro.h
index 6b824f6846cc4f3cdff48b2b168696bbb75cfd00..ee8059c03dc7d6409ec93883d656b4de651e309c 100644 (file)
@@ -1,21 +1,21 @@
 // -*- C++ -*-
 /*
  *  File:        math_macro.h
- *  Purpose:     Declaration of macro class for mathed 
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Purpose:     Declaration of macro class for mathed
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  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
 
 #include <vector>
 #include <iosfwd>
-#include <boost/smart_ptr.hpp>
 
-#include "math_parinset.h"
+#include "math_nestinset.h"
 #include "math_macroarg.h"
+#include "LString.h"
 
 class MathMacroTemplate;
 
@@ -35,73 +35,67 @@ class MathMacroTemplate;
     \author Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
     \version November 1996
  */
-class MathMacro : public MathParInset {
+class MathMacro : public MathNestInset {
 public:
        /// A macro can be built from an existing template
-       explicit MathMacro(MathMacroTemplate const &);
+       explicit MathMacro(string const &);
        ///
-       void draw(Painter &, int, int);
+       MathMacro(MathMacro const &);
        ///
-       void Metrics();
+       void draw(Painter &, int x, int y) const;
        ///
-       MathedInset * Clone();
+       void metrics(MathMetricsInfo const & st) const;
        ///
-       void Write(std::ostream &, bool fragile);
+       MathInset * clone() const;
        ///
-       void WriteNormal(std::ostream &);
-       /// Index 0 is the template, index 1..nargs() are the parameters
-       bool setArgumentIdx(int);
+       void dump() const;
+
+       ///
+       bool idxUpDown(idx_type &, bool up) const;
        ///
-       int getArgumentIdx() const;
+       bool idxLeft(idx_type &, pos_type &) const;
        ///
-       int getMaxArgumentIdx() const;
+       bool idxRight(idx_type &, pos_type &) const;
+
        ///
-       int nargs() const;
+       void validate(LaTeXFeatures &) const;
        ///
-       int GetColumns() const;
+       bool isMacro() const { return true; }
        ///
-       void GetXY(int &, int &) const;
+       bool match(MathInset *) const { return false; }
+
        ///
-       void SetFocus(int, int);
+       void normalize(NormalStream &) const;
        ///
-       MathedArray & GetData();
+       void maplize(MapleStream &) const;
        ///
-       MathedArray const & GetData() const;
+       void mathmlize(MathMLStream &) const;
        ///
-       void setData(MathedArray const &);
+       void octavize(OctaveStream &) const;
        ///
-       void setData(MathedArray const &, int);
+       void write(WriteStream & os) const;
+
+private:
        ///
-       MathedTextCodes getTCode() const;
+       void operator=(MathMacro const &);
        ///
-       bool Permit(short) const;
+       char const * name() const;
        ///
-       void expand();
+       bool defining() const;
        ///
-       void dump(std::ostream & os) const;
+       void updateExpansion() const;
        ///
-       MathParInset const * arg(int) const;
+       void expand() const;
+
        ///
-       MathParInset * arg(int);
+       MathAtom & tmplate_;
        ///
-       MathMacroTemplate * tmplate() const;
-private:
+       mutable MathXArray expanded_;
        ///
-       MathMacroTemplate * tmplate_;
-       /// our arguments
-       std::vector< boost::shared_ptr<MathParInset> > args_;
-       /// the expanded version fror drawing
-       boost::shared_ptr<MathParInset> expanded_;
+       mutable MathMetricsInfo mi_;
        ///
-       int idx_;
-
-       /// unimplemented
-       void operator=(MathMacro const &);
+       mutable LyXFont font_;
 };
 
-inline std::ostream & operator<<(std::ostream & os, MathMacro const & m)
-{
-       m.dump(os);
-       return os;
-}
+
 #endif