]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formulamacro.h
fix pullArg when pressing <Delete> at the end of an cell
[lyx.git] / src / mathed / formulamacro.h
index 3ab9c44acb40b2324f37fecce601924c341270c1..204ddaffe45738af5eefbf3c47fea846f47a77d3 100644 (file)
@@ -17,9 +17,7 @@
 #ifndef INSET_FORMULA_MACRO_H 
 #define INSET_FORMULA_MACRO_H
 
-#include <boost/smart_ptr.hpp>
-
-#include "formula.h"
+#include "formulabase.h"
 
 #ifdef __GNUG__
 #pragma interface
 
 class MathMacroTemplate;
 
+// InsetFormulaMacro's ParInset is the ParInset of the macro definition
+// which in turn is stored in the global MathMacroTable.
+// No copying/updating needed anymore...
 
 ///
-class InsetFormulaMacro: public InsetFormula {
+class InsetFormulaMacro: public InsetFormulaBase {
 public:
        ///
-       InsetFormulaMacro();
-       ///
-       explicit
-       InsetFormulaMacro(string name, int na);
+       explicit InsetFormulaMacro();
        ///
-       ~InsetFormulaMacro();
+       explicit InsetFormulaMacro(string name, int na);
        ///
        int ascent(BufferView *, LyXFont const &) const;
        ///
@@ -46,43 +44,31 @@ public:
        int width(BufferView *, LyXFont const &) const;
        ///
        void draw(BufferView *,LyXFont const &, int, float &, bool) const;
+
        ///
-       void Read(Buffer const *, LyXLex & lex);
-        ///
-       void Write(Buffer const *, std::ostream & os) const;
+       void read(LyXLex & lex);
        ///
-       int Latex(Buffer const *, std::ostream & os, bool fragile,
-                 bool free_spc) const;
+       void write(std::ostream & os) const;
        ///
-       int Linuxdoc(Buffer const *, std::ostream & os) const;
+       int ascii(std::ostream &, int linelen) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int latex(std::ostream & os, bool fragile, bool free_spc) const;
        ///
-       Inset * Clone(Buffer const &) const;
+       int linuxdoc(std::ostream & os) const;
        ///
-       Inset::Code LyxCode() const;
-       /// what appears in the minibuffer when opening
-       string const EditMessage() const;
+       int docBook(std::ostream &) const;
+
        ///
-       void Edit(BufferView *, int x, int y, unsigned int button);
+       Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       void InsetUnlock(BufferView *);
+       Inset::Code lyxCode() const;
        ///
-       RESULT LocalDispatch(BufferView *, kb_action, string const &);
-
+       RESULT localDispatch(BufferView *, kb_action, string const &);
 private:
+       /// prefix in inset
+       string prefix() const;
        ///
-        bool opened_;
-       ///
-        string name_;
-       ///
-        boost::shared_ptr<MathMacroTemplate> tmacro_;
+       MathMacroTemplate * tmacro() const;
 };
 
-
-inline
-Inset::Code InsetFormulaMacro::LyxCode() const
-{
-       return Inset::MATHMACRO_CODE;
-}
 #endif