]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formulamacro.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / formulamacro.h
index 938eab80cfe21c14e5917e4935a4cb2935b29bb3..f55fdbffba71250194a14f4c8aba25846801d409 100644 (file)
@@ -1,81 +1,75 @@
 // -*- C++ -*-
-/*
- *  File:        formula.h
- *  Purpose:     Declaration of formula inset
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
- *  Created:     January 1996
- *  Description: Allows the edition of math paragraphs inside Lyx. 
+/**
+ * \file formulamacro.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  Copyright: (c) 1996, Alejandro Aguilar Sierra
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
  *
- *  Version: 0.4, Lyx project.
- *
- *   You are free to use and modify this code under the terms of
- *   the GNU General Public Licence version 2 or later.
+ * Full author contact details are available in file CREDITS.
  */
 
-#ifndef INSET_FORMULA_MACRO_H 
+#ifndef INSET_FORMULA_MACRO_H
 #define INSET_FORMULA_MACRO_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "formula.h"
+#include "math_nestinset.h"
 
 class MathMacroTemplate;
+class LyXLex;
 
 
-///
-class InsetFormulaMacro: public InsetFormula {
+// An InsetFormulaMacro only knows its name and asks the global
+// MathMacroTable if it needs to know more.
+
+/// Main LyX Inset for defining math macros
+class InsetFormulaMacro : public MathNestInset {
 public:
        ///
        InsetFormulaMacro();
+       /// construct a macro hull from its name and the number of arguments
+       InsetFormulaMacro(std::string const & name, int nargs, std::string const & t);
+       /// constructs a mocro from its LaTeX definition
+       explicit InsetFormulaMacro(std::string const & s);
        ///
-       InsetFormulaMacro(string name, int na = 0, bool env = false);
-       ///
-       ~InsetFormulaMacro();
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       int ascent(Painter &, LyXFont const &) const;
-       ///
-       int descent(Painter &, LyXFont const &) const;
-       ///
-       int width(Painter &, LyXFont const &) const;
-       ///
-       void draw(Painter &, LyXFont const &, int baseline, float & x) const;
+       void draw(PainterInfo & pi, int x, int y) const;
+
        ///
-       void Read(LyXLex & lex);
-        ///
-       void Write(ostream & os);
+       void read(Buffer const &, LyXLex & lex);
        ///
-       int Latex(ostream & os, signed char fragile);
+       void write(Buffer const &, std::ostream & os) const;
        ///
-       int Latex(string & file, signed char fragile);
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int Linuxdoc(string & file);
+       int latex(Buffer const &, std::ostream & os,
+                 OutputParams const &) const;
        ///
-       int DocBook(string & file);
+       int linuxdoc(Buffer const &, std::ostream & os,
+                    OutputParams const &) const;
        ///
-       Inset * Clone() const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
 
-       /// what appears in the minibuffer when opening
-       char const * EditMessage() const {return _("Math macro editor mode");}
        ///
-       void Edit(int x, int y);
+       std::auto_ptr<InsetBase> clone() const;
        ///
-       void InsetUnlock();
+       InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
        ///
-       bool LocalDispatch(int, char const *);
-protected:
+       std::string const & getInsetName() const { return name_; }
        ///
-       void UpdateLocal();
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
 private:
        ///
-        bool opened;
+       MathAtom & tmpl() const;
        ///
-        string name;
+       void read(std::istream & is);
+       /// prefix in inset
+       std::string prefix() const;
        ///
-        MathMacroTemplate * tmacro;
+       std::string name_;
 };
 
 #endif