]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formula.h
small up/down tweaking
[lyx.git] / src / mathed / formula.h
index 08035e45d1616a9767bde8d2df62362f0cca553b..3b39db468eee7c4d7eda76ed576a7e0667e66b73 100644 (file)
@@ -1,47 +1,43 @@
 // -*- 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 formula.h
  *
- *  Copyright: 1996, Alejandro Aguilar Sierra
+ *  This file is part of LyX, the document processor.
+ *  Licence details can be found in the file COPYING.
  *
- *  Version: 0.4, Lyx project.
+ *  \author Alejandro Aguilar Sierra
+ *  \author André Pönitz
  *
- *   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_H 
+#ifndef INSET_FORMULA_H
 #define INSET_FORMULA_H
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "mathed/formulabase.h"
-#include "math_defs.h"
+#include "formulabase.h"
+#include "math_atom.h"
 
-class MathMatrixInset;
+#include <boost/scoped_ptr.hpp>
 
-///
+/// The main LyX math inset
 class InsetFormula : public InsetFormulaBase {
 public:
        ///
        InsetFormula();
        ///
-       InsetFormula(InsetFormula const &);
+       explicit InsetFormula(BufferView *);
        ///
-       explicit InsetFormula(MathInsetTypes);
+       explicit InsetFormula(const string & data);
        ///
-       explicit InsetFormula(string const &);
+       InsetFormula(InsetFormula const &);
        ///
        ~InsetFormula();
        ///
-       void operator=(InsetFormula const &);
-       ///
        int ascent(BufferView *, LyXFont const &) const;
        ///
        int descent(BufferView *, LyXFont const &) const;
@@ -49,22 +45,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 &, bool mixcont) const;
 
        ///
        Inset * clone(Buffer const &, bool same_id = false) const;
@@ -75,23 +68,29 @@ public:
        ///
        bool insetAllowed(Inset::Code code) const;
        ///
-       virtual RESULT localDispatch(BufferView *, kb_action, string const &);
-       ///
        std::vector<string> const getLabelList() const;
        ///
-       void handleExtern(string const & arg, BufferView * bv);
+       MathAtom const & par() const { return par_; }
        ///
-       MathInset const * par() const;
+       MathAtom & par() { return par_; }
        ///
-       bool display() const;
+       void generatePreview() const;
        ///
-       bool ams() const;
+       void addPreview(grfx::PreviewLoader &) const;
        ///
-       MathInsetTypes getType() const;
+       //void mutate(string const & type);
+
 private:
-       /// Safe setting of contents
-       void par(MathMatrixInset *);
-       ///
-       MathMatrixInset * par_;
+       /// available in AMS only?
+       bool ams() const;
+
+       /// contents
+       MathAtom par_;
+
+       /// Use the Pimpl idiom to hide the internals of the previewer.
+       class PreviewImpl;
+       friend class PreviewImpl;
+       /// The pointer never changes although *preview_'s contents may.
+       boost::scoped_ptr<PreviewImpl> const preview_;
 };
 #endif