]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.h
more IU
[lyx.git] / src / mathed / math_macro.h
index 1e0923026d00c3c2fe71431376bd8feaafc2f225..8912501b5e32711aa6c8a39ed61df1c0bce99460 100644 (file)
@@ -1,49 +1,39 @@
 // -*- C++ -*-
 /**
- *  File:        math_macro.h
- *  Purpose:     Declaration of macro class for mathed
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
- *  Created:     November 1996
- *  Description: WYSIWYG math macros
+ * \file math_macro.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  Dependencies: Math
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
  *
- *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
- *
- *   Version: 0.2, Math & Lyx project.
- *
- *   This code is under the GNU General Public Licence version 2 or later.
+ * Full author contact details are available in file CREDITS.
  */
+
 #ifndef MATH_MACRO_H
 #define MATH_MACRO_H
 
-
+#include "math_data.h"
 #include "math_nestinset.h"
-#include "math_metricsinfo.h"
-#include "math_macroarg.h"
-#include "LString.h"
+#include "metricsinfo.h"
+
 
 class MathMacroTemplate;
 
 
-/** This class contains the data for a macro
- *  \author Alejandro Aguilar Sierra
- *
- * Full author contact details are available in file CREDITS
-    \version November 1996
- */
+/// This class contains the data for a macro.
 class MathMacro : public MathNestInset {
 public:
        /// A macro can be built from an existing template
-       explicit MathMacro(string const &);
+       explicit MathMacro(std::string const &);
        ///
        MathMacro(MathMacro const &);
        ///
-       void draw(MathPainterInfo & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        void dump() const;
 
@@ -58,15 +48,13 @@ public:
        void validate(LaTeXFeatures &) const;
        ///
        bool isMacro() const { return true; }
-       ///
-       bool match(MathAtom const &) const { return false; }
 
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void octave(OctaveStream &) const;
        ///
        void infoize(std::ostream &) const;
        ///
@@ -76,7 +64,7 @@ private:
        ///
        void operator=(MathMacro const &);
        ///
-       string name() const;
+       std::string name() const;
        ///
        bool defining() const;
        ///
@@ -89,7 +77,7 @@ private:
        ///
        mutable MathArray expanded_;
        ///
-       mutable MathMetricsInfo mi_;
+       mutable MetricsInfo mi_;
        ///
        mutable LyXFont font_;
 };