]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_macro.h
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_macro.h
index 39fb630aff559ffd141de4738293dccc0166724e..5f356d861a31f8c2d2894ee10ffdd45a80cc1616 100644 (file)
@@ -1,40 +1,28 @@
 // -*- 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
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include <vector>
-#include <iosfwd>
 
 #include "math_nestinset.h"
+#include "metricsinfo.h"
 #include "math_macroarg.h"
-#include "LString.h"
+#include "support/std_string.h"
 
 class MathMacroTemplate;
 
 
-/** This class contains the data for a macro
-    \author Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
-    \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
@@ -42,48 +30,59 @@ public:
        ///
        MathMacro(MathMacro const &);
        ///
-       void draw(Painter &, int x, int y) const;
-       ///
-       void metrics(MathMetricsInfo const & st) const;
-       ///
-       MathInset * clone() const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void write(MathWriteInfo & os) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(std::ostream &) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        void dump() const;
 
        ///
-       bool idxUp(idx_type &, pos_type &) const;
+       bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
        ///
-       bool idxDown(idx_type &, pos_type &) const;
+       bool idxLeft(idx_type & idx, pos_type & pos) const;
        ///
-       bool idxLeft(idx_type &, pos_type &) const;
-       ///
-       bool idxRight(idx_type &, pos_type &) const;
+       bool idxRight(idx_type & idx, pos_type & pos) const;
 
        ///
        void validate(LaTeXFeatures &) const;
        ///
        bool isMacro() const { return true; }
+       ///
+       bool match(MathAtom const &) const { return false; }
+
+       ///
+       void maple(MapleStream &) const;
+       ///
+       void mathmlize(MathMLStream &) const;
+       ///
+       void octave(OctaveStream &) const;
+       ///
+       void infoize(std::ostream &) const;
+       ///
+       void infoize2(std::ostream &) const;
 
 private:
        ///
        void operator=(MathMacro const &);
        ///
-       char const * name() const;
-       ///
-       bool editing() const;
+       string name() const;
        ///
        bool defining() const;
+       ///
+       void updateExpansion() const;
+       ///
+       void expand() const;
 
        ///
        MathAtom & tmplate_;
        ///
-       mutable MathXArray expanded_;
+       mutable MathArray expanded_;
+       ///
+       mutable MetricsInfo mi_;
        ///
-       mutable MathMetricsInfo mi_;
+       mutable LyXFont font_;
 };