]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formulabase.h
try to fix rounding errors
[lyx.git] / src / mathed / formulabase.h
index 21e856578c53e0b969d603b221f0ee6021088bbe..a91eed0b38d80c09e101176f92d2e6920096ca2d 100644 (file)
@@ -4,7 +4,7 @@
  *  Purpose:     Common parts of the math LyX insets
  *  Author:      André Pönitz
  *  Created:     May 2001
- *  Description: Allows the edition of math paragraphs inside Lyx. 
+ *  Description: Allows the edition of math paragraphs inside Lyx.
  *
  *  Copyright: 2001, The LyX Project
  *
  *   the GNU General Public Licence version 2 or later.
  */
 
-#ifndef INSET_FORMULABASE_H 
+#ifndef INSET_FORMULABASE_H
 #define INSET_FORMULABASE_H
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include <iosfwd>
 #include "insets/inset.h"
+#include "frontends/mouse_state.h"
 #include "lyxfont.h"
 
 // only for getType():
 #include "math_defs.h"
 
+#include <iosfwd>
+
 class Buffer;
 class BufferView;
 class MathAtom;
 
-///
+/// An abstract base class for all math related LyX insets
 class InsetFormulaBase : public UpdatableInset {
 public:
        ///
@@ -64,7 +66,7 @@ public:
        /// what appears in the minibuffer when opening
        virtual string const editMessage() const;
        ///
-       virtual void edit(BufferView *, int x, int y, unsigned int button);
+       virtual void edit(BufferView *, int x, int y, mouse_button::state button);
        ///
        virtual void edit(BufferView *, bool front = true);
        ///
@@ -78,19 +80,17 @@ public:
        ///
        virtual void toggleInsetSelection(BufferView * bv);
        ///
-       virtual void insetButtonPress(BufferView *, int x, int y, int button);
-       ///
-       virtual bool insetButtonRelease(BufferView *, int x, int y, int button);
+       virtual void insetButtonPress(BufferView *, int x, int y, mouse_button::state button);
        ///
-       virtual void insetKeyPress(XKeyEvent * ev);
+       virtual bool insetButtonRelease(BufferView *, int x, int y, mouse_button::state button);
        ///
-       virtual void insetMotionNotify(BufferView *, int x, int y, int state);
+       virtual void insetMotionNotify(BufferView *, int x, int y, mouse_button::state state);
        ///
        virtual void insetUnlock(BufferView *);
-   
+
        /// To allow transparent use of math editing functions
        virtual RESULT localDispatch(BufferView *, kb_action, string const &);
-    
+
        ///
        virtual std::vector<string> const getLabelList() const;
        ///
@@ -102,12 +102,30 @@ public:
        ///
        BufferView * view() const { return view_; }
 
+       ///
+       virtual bool searchForward(BufferView *, string const &,
+                                  bool = true, bool = false);
+       ///
+       virtual bool searchBackward(BufferView *, string const &,
+                                   bool = true, bool = false);
+       ///
+       virtual bool isTextInset() const { return true; }
+       ///
+       virtual void mutateToText();
+       ///
+       virtual void revealCodes(BufferView *) const;
+       ///
+       virtual Inset::EDITABLE editable() const { return HIGHLY_EDITABLE; }
+
+
 private:
        /// unimplemented
        void operator=(const InsetFormulaBase &);
+       /// common base for handling accents
+       void handleAccent(BufferView * bv, string const & arg, string const & name);
 
        ///
-       mutable BufferView * view_;     
+       mutable BufferView * view_;
        ///
        mutable LyXFont font_;
 
@@ -116,6 +134,8 @@ protected:
        void metrics(BufferView * bv, LyXFont const & font) const;
        ///
        void metrics(BufferView * bv = 0) const;
+       ///
+       void handleFont(BufferView * bv, string const & arg, string const & font);
 
        ///
        mutable int xo_;