]> 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 f63466cd0b53808e374da0e1c47619eec1fd5b50..6afbab1b3f620009c3147029d671a5a12c9ebe9d 100644 (file)
 // -*- 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: Mathed
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
  *
- *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
- *
- *   Version: 0.2, Mathed & 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
-#define MATH_MACRO
-
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include <vector>
 
-#include "math_parinset.h"
-#include "debug.h"
+#ifndef MATH_MACRO_H
+#define MATH_MACRO_H
 
-class MathMacroTemplate;
+#include "math_nestinset.h"
+#include "math_data.h"
+#include "math_nestinset.h"
+#include "math_macrotable.h"
 
 
-/// This class contains the data for a macro
-class MathMacro : public MathParInset
-{
+/// This class contains the data for a macro.
+class MathMacro : public MathNestInset {
 public:
-       /// A macro can only be builded from an existing template
-       explicit
-       MathMacro(MathMacroTemplate *);
-       /// or from another macro.
-       explicit
-       MathMacro(MathMacro *);
-       ///
-       ~MathMacro();
-       ///
-       void draw(Painter &, int, int);
-       ///
-       void Metrics();
-       ///
-       MathedInset * Clone();
+       /// A macro can be built from an existing template
+       MathMacro(std::string const & name, int numargs);
        ///
-       void Write(std::ostream &, bool fragile);
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       bool setArgumentIdx(int);
+       void drawExpanded(PainterInfo & pi, int x, int y) const;
+       /// draw selection background
+       void drawSelection(PainterInfo & pi, int x, int y) const;
        ///
-       int getArgumentIdx() const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       /// get cursor position
+       void cursorPos(CursorSlice const & sl, bool boundary, int & x, int & y) const;
        ///
-       int getMaxArgumentIdx() const;
+       InsetBase * editXY(LCursor & cur, int x, int y);
        ///
-       int GetColumns() const;
+       std::string name() const;
        ///
-       void GetXY(int &, int &) const;
+       void setExpansion(MathArray const & exp, MathArray const & args) const;
+
        ///
-       void SetFocus(int, int);
+       void validate(LaTeXFeatures &) const;
+
        ///
-       MathedArray * GetData();
+       void maple(MapleStream &) const;
        ///
-       MathedRowSt * getRowSt() const;
+       void mathmlize(MathMLStream &) const;
        ///
-       void SetData(MathedArray *);
+       void octave(OctaveStream &) const;
        ///
-       MathedTextCodes getTCode() const;
+       void infoize(std::ostream &) const;
        ///
-       bool Permit(short) const;
-    
+       void infoize2(std::ostream &) const;
+
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       MathMacroTemplate * tmplate;
-       ///
-       struct MacroArgumentBase {
-               /// Position of the macro
-               int x, y;
-               ///
-               MathedRowSt * row;
-               ///
-               MathedArray * array;
-               ///
-               MacroArgumentBase() { x = y = 0;  array = 0; row = 0; }
-       };
-       std::vector<MacroArgumentBase> args_;
+       void updateExpansion() const;
        ///
-       int idx;
-       ///
-       int nargs;
-       ///
-       MathedTextCodes tcode;
-       ///
-       friend class MathMacroTemplate;
+       void expand() const;
+
+       /// name of macro
+       std::string name_;
+       /// the unexpanded macro defintition
+       mutable MathArray tmpl_;
+       /// the macro substituted with our args
+       mutable MathArray expanded_;
 };
 
-///
-//typedef MathMacro * MathMacroP;
-///
-//typedef MathMacroTemplate * MathMacroTemplateP;
 
 #endif