]> 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 e000e0aa67a9c3ee8cac50e3acb0db1d77884f84..54ff52f3174f6b04f2c211741d344c8cd99c1fbf 100644 (file)
@@ -1,62 +1,75 @@
 // -*- C++ -*-
-#ifndef MATHMACROTEMPLATE
-#define MATHMACROTEMPLATE
-
-#include <vector>
-
-#include <boost/utility.hpp>
-//#include <boost/smart_ptr.hpp>
+/**
+ * \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.
+ */
 
-#include "math_parinset.h"
-#include "math_macroarg.h"
+#ifndef MATH_MACROTEMPLATE_H
+#define MATH_MACROTEMPLATE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "math_data.h"
+#include "math_macrotable.h"
+#include "math_nestinset.h"
 
-class MathMacro;
 
-/** This class contains the macro definition
-    \author Alejandro Aguilar Sierra
- */
-class MathMacroTemplate : public MathParInset, public boost::noncopyable {
+/// This class contains the macro definition.
+class MathMacroTemplate : public MathNestInset {
 public:
-       friend class MathMacro;
-       
-       /// A template constructor needs all the data
-       explicit
-       MathMacroTemplate(string const &, int na);
        ///
-       void draw(Painter &, int, int);
+       MathMacroTemplate();
+       ///
+       MathMacroTemplate(std::string const & name, int nargs,
+               std::string const & type,
+               MathArray const & = MathArray(),
+               MathArray const & = MathArray());
+       ///
+       explicit MathMacroTemplate(std::istream & is);
        ///
-       void Metrics();
+       void edit(LCursor & cur, bool left);
        ///
-       void WriteDef(std::ostream &, bool fragile);
-       /// useful for special insets
-       void setTCode(MathedTextCodes t);
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       MathedTextCodes getTCode() const;
+       void read(Buffer const &, LyXLex & lex);
+       ///
+       void write(Buffer const &, std::ostream & os) const;
+       ///
+       void write(WriteStream & os) const;
        /// Number of arguments
-       int getNoArgs() const;
+       int numargs() const;
        ///
-       void GetMacroXY(int, int &, int &) const;
+       void numargs(int);
        ///
-       MathParInset * getMacroPar(int) const;
+       std::string name() const;
        ///
-       void setMacroPar(int, MathedArray const &);
+       MacroData asMacroData() const;
        ///
-       void SetMacroFocus(int &, int, int);
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void setEditMode(bool);
-private:
-       /// Are we in edit mode or not?
-       bool edit_;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
+       /// identifies macro templates
+       MathMacroTemplate const * asMacroTemplate() const { return this; }
        ///
-       MathedTextCodes tcode_;
+       InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
+
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+       /// prefix in inset
+       std::string prefix() const;
+
        ///
-       //std::vector<boost::shared_ptr<MathMacroArgument> > args_;
-       std::vector<MathMacroArgument> args_;
+       int numargs_;
        ///
-       int nargs_;
+       std::string name_;
+       /// newcommand or renewcommand or def
+       std::string type_;
 };
+
 #endif