]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_macro.h
index 94395953a9001c0af93cff2d3f48186e2d95d812..6afbab1b3f620009c3147029d671a5a12c9ebe9d 100644 (file)
@@ -1,65 +1,48 @@
 // -*- 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_nestinset.h"
-#include "metricsinfo.h"
-#include "math_macroarg.h"
-#include "LString.h"
-
-class MathMacroTemplate;
+#include "math_data.h"
+#include "math_nestinset.h"
+#include "math_macrotable.h"
 
 
-/** 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 &);
-       ///
-       MathMacro(MathMacro const &);
+       MathMacro(std::string const & name, int numargs);
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
-       ///
-       InsetBase * clone() const;
+       void drawExpanded(PainterInfo & pi, int x, int y) const;
+       /// draw selection background
+       void drawSelection(PainterInfo & pi, int x, int y) const;
        ///
-       void dump() const;
-
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       /// get cursor position
+       void cursorPos(CursorSlice const & sl, bool boundary, int & x, int & y) const;
        ///
-       bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
+       InsetBase * editXY(LCursor & cur, int x, int y);
        ///
-       bool idxLeft(idx_type & idx, pos_type & pos) const;
+       std::string name() const;
        ///
-       bool idxRight(idx_type & idx, pos_type & pos) const;
+       void setExpansion(MathArray const & exp, MathArray const & args) const;
 
        ///
        void validate(LaTeXFeatures &) const;
-       ///
-       bool isMacro() const { return true; }
-       ///
-       bool match(MathAtom const &) const { return false; }
 
        ///
        void maple(MapleStream &) const;
@@ -73,25 +56,18 @@ public:
        void infoize2(std::ostream &) const;
 
 private:
-       ///
-       void operator=(MathMacro const &);
-       ///
-       string name() const;
-       ///
-       bool defining() const;
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
        void updateExpansion() const;
        ///
        void expand() const;
 
-       ///
-       MathAtom & tmplate_;
-       ///
+       /// name of macro
+       std::string name_;
+       /// the unexpanded macro defintition
+       mutable MathArray tmpl_;
+       /// the macro substituted with our args
        mutable MathArray expanded_;
-       ///
-       mutable MetricsInfo mi_;
-       ///
-       mutable LyXFont font_;
 };