]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formula.h
oh well
[lyx.git] / src / mathed / formula.h
index 69a34579eb9a5dafada29bc1178a382801efb300..cefe8a8ed8467c3e1c0131e94b9faaeeaed87232 100644 (file)
@@ -2,9 +2,9 @@
 /*
  *  File:        formula.h
  *  Purpose:     Declaration of formula inset
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  Created:     January 1996
- *  Description: Allows the edition of math paragraphs inside Lyx. 
+ *  Description: Allows the edition of math paragraphs inside Lyx.
  *
  *  Copyright: 1996, Alejandro Aguilar Sierra
  *
  *   the GNU General Public Licence version 2 or later.
  */
 
-#ifndef INSET_FORMULA_H 
+#ifndef INSET_FORMULA_H
 #define INSET_FORMULA_H
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "mathed/formulabase.h"
+#include "formulabase.h"
 #include "math_defs.h"
+#include "math_atom.h"
 
-class MathMatrixInset;
+class MathHullInset;
 
 ///
 class InsetFormula : public InsetFormulaBase {
@@ -43,22 +44,19 @@ public:
        int width(BufferView *, LyXFont const &) const;
        ///
        void draw(BufferView *, LyXFont const &, int, float &, bool) const;
-       ///
-       void metrics() const;
 
        ///
-       void write(std::ostream &) const;
+       void write(Buffer const *, std::ostream &) const;
        ///
-       void read(LyXLex & lex);
+       void read(Buffer const *, LyXLex & lex);
        ///
-       int latex(std::ostream &,
-                 bool fragile, bool free_spc) const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const;
        ///
-       int ascii(std::ostream &, int linelen) const;
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int linuxdoc(std::ostream &) const;
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
 
        ///
        Inset * clone(Buffer const &, bool same_id = false) const;
@@ -73,17 +71,25 @@ public:
        ///
        std::vector<string> const getLabelList() const;
        ///
-       void handleExtern(string const & arg, BufferView * bv);
+       MathInsetTypes getType() const;
        ///
-       MathMatrixInset * par() const;
+       MathAtom const & par() const { return par_; }
        ///
+       MathAtom & par() { return par_; }
+
+private:
+       /// Is this a displayed environment?
        bool display() const;
-       ///
+       /// available in AMS only?
        bool ams() const;
+       /// access to hull
+       MathHullInset * hull();
+       /// access to hull
+       MathHullInset const * hull() const;
        ///
-       MathInsetTypes getType() const;
-private:
-       /// Safe setting of contents
-       void par(MathInset *);
+       void handleExtern(string const & arg);
+
+       ///
+       MathAtom par_;
 };
 #endif