]> 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 511bcc68f7f6c48df0d97d0e02fd29b73e9f6db0..204ddaffe45738af5eefbf3c47fea846f47a77d3 100644 (file)
@@ -6,7 +6,7 @@
  *  Created:     January 1996
  *  Description: Allows the edition of math paragraphs inside Lyx. 
  *
- *  Copyright: (c) 1996, Alejandro Aguilar Sierra
+ *  Copyright: 1996, Alejandro Aguilar Sierra
  *
  *  Version: 0.4, Lyx project.
  *
 #ifndef INSET_FORMULA_MACRO_H 
 #define INSET_FORMULA_MACRO_H
 
+#include "formulabase.h"
+
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "formula.h"
-
 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();
        ///
-       InsetFormulaMacro(string name, int na = 0, bool env = false);
+       explicit InsetFormulaMacro(string name, int na);
        ///
-       ~InsetFormulaMacro();
+       int ascent(BufferView *, LyXFont const &) const;
        ///
-       int ascent(Painter &, LyXFont const &) const;
+       int descent(BufferView *, LyXFont const &) const;
        ///
-       int descent(Painter &, LyXFont const &) const;
+       int width(BufferView *, LyXFont const &) const;
        ///
-       int width(Painter &, LyXFont const &) const;
-       ///
-       void draw(Painter &, LyXFont const &, int baseline, float & x) const;
+       void draw(BufferView *,LyXFont const &, int, float &, bool) const;
+
        ///
-       void Read(LyXLex & lex);
-        ///
-       void Write(ostream & os) const;
+       void read(LyXLex & lex);
        ///
-       int Latex(ostream & os, signed char fragile) const;
+       void write(std::ostream & os) const;
        ///
-       int Latex(string & file, signed char fragile) const;
+       int ascii(std::ostream &, int linelen) const;
        ///
-       int Linuxdoc(string & file) const;
+       int latex(std::ostream & os, bool fragile, bool free_spc) const;
        ///
-       int DocBook(string & file) const;
+       int linuxdoc(std::ostream & os) const;
        ///
-       Inset * Clone() const;
+       int docBook(std::ostream &) const;
 
-       /// what appears in the minibuffer when opening
-       char const * EditMessage() const {return _("Math macro editor mode");}
        ///
-       void Edit(BufferView *, int x, int y);
+       Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       void InsetUnlock(BufferView *);
+       Inset::Code lyxCode() const;
        ///
-       bool LocalDispatch(BufferView *, int, char const *);
-protected:
-       ///
-       //void UpdateLocal();
+       RESULT localDispatch(BufferView *, kb_action, string const &);
 private:
+       /// prefix in inset
+       string prefix() const;
        ///
-        bool opened;
-       ///
-        string name;
-       ///
-        MathMacroTemplate * tmacro;
+       MathMacroTemplate * tmacro() const;
 };
 
 #endif