]> 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 5fb3b4e1c6571476b3e2094865f1f902575e550a..f55fdbffba71250194a14f4c8aba25846801d409 100644 (file)
@@ -1,77 +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: 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
 #define INSET_FORMULA_MACRO_H
 
-#include "formulabase.h"
-
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "math_nestinset.h"
 
 class MathMacroTemplate;
+class LyXLex;
 
-// InsetFormulaMacro's only knows its name and asks the global
+
+// An InsetFormulaMacro only knows its name and asks the global
 // MathMacroTable if it needs to know more.
 
-///
-class InsetFormulaMacro: public InsetFormulaBase {
+/// 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
-       explicit InsetFormulaMacro(string name, int na);
+       InsetFormulaMacro(std::string const & name, int nargs, std::string const & t);
        /// constructs a mocro from its LaTeX definition
-       explicit InsetFormulaMacro(string const & s);
-       ///
-       int ascent(BufferView *, LyXFont const &) const;
+       explicit InsetFormulaMacro(std::string const & s);
        ///
-       int descent(BufferView *, LyXFont const &) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       int width(BufferView *, LyXFont const &) const;
-       ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 
        ///
-       void read(Buffer const *, LyXLex & lex);
+       void read(Buffer const &, LyXLex & lex);
        ///
-       void write(Buffer const *, std::ostream & os) const;
+       void write(Buffer const &, std::ostream & os) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int latex(Buffer const *, std::ostream & os, bool fragile, bool free_spc) const;
+       int latex(Buffer const &, std::ostream & os,
+                 OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream & os) const;
+       int linuxdoc(Buffer const &, std::ostream & os,
+                    OutputParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
 
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
-       ///
-       Inset::Code lyxCode() const;
+       std::auto_ptr<InsetBase> clone() const;
        ///
-       MathInsetTypes getType() const;
+       InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
        ///
-       MathAtom const & par() const;
+       std::string const & getInsetName() const { return name_; }
        ///
-       MathAtom & par();
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
 private:
+       ///
+       MathAtom & tmpl() const;
+       ///
+       void read(std::istream & is);
        /// prefix in inset
-       string prefix() const;
+       std::string prefix() const;
+       ///
+       std::string name_;
 };
 
 #endif