]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formula.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / formula.h
index f3f49374cd5ea305f8038efbc87a4a2f33e07d1c..3c7381ee24a172e7fac38c634fcfe75a5b368da5 100644 (file)
@@ -1,34 +1,27 @@
 // -*- 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
 #define INSET_FORMULA_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "formulabase.h"
 #include "math_atom.h"
-#include "graphics/GraphicsTypes.h"
-#include "graphics/GraphicsLoader.h"
 
-class MathHullInset;
+#include <boost/scoped_ptr.hpp>
 
-///
+/// The main LyX math inset
 class InsetFormula : public InsetFormulaBase {
 public:
        ///
@@ -38,13 +31,17 @@ public:
        ///
        explicit InsetFormula(const string & data);
        ///
+       InsetFormula(InsetFormula const &);
+       ///
+       ~InsetFormula();
+       ///
        int ascent(BufferView *, LyXFont const &) const;
        ///
        int descent(BufferView *, LyXFont const &) const;
        ///
        int width(BufferView *, LyXFont const &) const;
        ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
+       void draw(BufferView *, LyXFont const &, int, float &) const;
 
        ///
        void write(Buffer const *, std::ostream &) const;
@@ -68,39 +65,29 @@ public:
        ///
        bool insetAllowed(Inset::Code code) const;
        ///
-       virtual RESULT localDispatch(BufferView *, kb_action, string const &);
-       ///
        std::vector<string> const getLabelList() const;
        ///
-       string hullType() const;
-       ///
        MathAtom const & par() const { return par_; }
        ///
        MathAtom & par() { return par_; }
        ///
-       void mutate(string const & type);
+       void generatePreview() const;
+       ///
+       void addPreview(grfx::PreviewLoader &) const;
+       ///
+       //void mutate(string const & type);
 
 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;
-       ///
-       void handleExtern(string const & arg);
-       ///
-       void statusChanged();
-       ///
-       void updatePreview();
-       ///
-       bool canPreview() const;
 
        /// contents
        MathAtom par_;
-       /// non owning pointer
-       mutable grfx::Loader * loader_;
+
+       /// 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