]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_macrotemplate.h
index c1cc9eb94c2da964762055ae13d8a7773ff11b1d..54ff52f3174f6b04f2c211741d344c8cd99c1fbf 100644 (file)
@@ -1,43 +1,75 @@
 // -*- C++ -*-
+/**
+ * \file math_macrotemplate.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_MACROTEMPLATE_H
 #define MATH_MACROTEMPLATE_H
 
-#include "math_inset.h"
-
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-class MathMacro;
+#include "math_data.h"
+#include "math_macrotable.h"
+#include "math_nestinset.h"
 
-/** This class contains the macro definition
-    \author Alejandro Aguilar Sierra
- */
-//class MathMacroTemplate : public MathInset, boost::noncopyable 
 
-class MathMacroTemplate : public MathInset {
+/// This class contains the macro definition.
+class MathMacroTemplate : public MathNestInset {
 public:
        ///
        MathMacroTemplate();
        ///
-       MathMacroTemplate(string const & name, int nargs);
+       MathMacroTemplate(std::string const & name, int nargs,
+               std::string const & type,
+               MathArray const & = MathArray(),
+               MathArray const & = MathArray());
+       ///
+       explicit MathMacroTemplate(std::istream & is);
+       ///
+       void edit(LCursor & cur, bool left);
        ///
-       MathInset * clone() const;
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       void Write(std::ostream &, bool fragile) const;
+       void read(Buffer const &, LyXLex & lex);
+       ///
+       void write(Buffer const &, std::ostream & os) const;
+       ///
+       void write(WriteStream & os) const;
        /// Number of arguments
        int numargs() const;
        ///
        void numargs(int);
        ///
-       void draw(Painter &, int, int);
+       std::string name() const;
+       ///
+       MacroData asMacroData() const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void Metrics(MathStyles st);
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
+       /// identifies macro templates
+       MathMacroTemplate const * asMacroTemplate() const { return this; }
+       ///
+       InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
+
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+       /// prefix in inset
+       std::string prefix() const;
+
        ///
        int numargs_;
-       /// unimplemented
-       void operator=(MathMacroTemplate const &);
+       ///
+       std::string name_;
+       /// newcommand or renewcommand or def
+       std::string type_;
 };
 
 #endif