]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formulabase.h
whichFont down to 5.3%
[lyx.git] / src / mathed / formulabase.h
index ad398baf84769ecea8b8d202c0ecabb990fa06ad..25048df783059caa7eb7abaa2ba81b7f46c3e86a 100644 (file)
@@ -30,7 +30,7 @@ class Buffer;
 class BufferView;
 class MathAtom;
 
-///
+/// An abstract base class for all math related LyX insets
 class InsetFormulaBase : public UpdatableInset {
 public:
        ///
@@ -45,10 +45,14 @@ public:
        virtual void draw(BufferView *,LyXFont const &, int, float &, bool) const = 0;
        ///
        virtual MathInsetTypes getType() const = 0;
-       /// upper y coordinate
-       virtual int upperY() const;
-       /// lower y coordinate
-       virtual int lowerY() const;
+       /// lowest x coordinate
+       virtual int xlow() const;
+       /// highest x coordinate
+       virtual int xhigh() const;
+       /// lowest y coordinate
+       virtual int ylow() const;
+       /// highest y coordinate
+       virtual int yhigh() const;
 
 public:
        ///
@@ -76,7 +80,7 @@ public:
        ///
        virtual void insetButtonPress(BufferView *, int x, int y, int button);
        ///
-       virtual void insetButtonRelease(BufferView *, int x, int y, int button);
+       virtual bool insetButtonRelease(BufferView *, int x, int y, int button);
        ///
        virtual void insetKeyPress(XKeyEvent * ev);
        ///
@@ -96,15 +100,27 @@ public:
        ///
        virtual void updateLocal(BufferView * bv, bool mark_dirty);
        ///
-       int xo() const { return xo_; }
+       BufferView * view() const { return view_; }
+
        ///
-       int yo() const { return yo_; }
+       virtual bool searchForward(BufferView *, string const &,
+                                  bool = true, bool = false);
        ///
-       BufferView * view() const { return view_; }
+       virtual bool searchBackward(BufferView *, string const &,
+                                   bool = true, bool = false);
+       ///
+       virtual bool isTextInset() const { return true; }
+       ///
+       virtual void mutateToText();
+       ///
+       virtual void revealCodes(BufferView *) const;
+
 
 private:
        /// unimplemented
        void operator=(const InsetFormulaBase &);
+       /// common base for handling accents
+       void handleAccent(BufferView * bv, string const & arg, string const & name);
 
        ///
        mutable BufferView * view_;