]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_hullinset.h
Make Helge happy: no more crash on arrow up/down in math macro
[lyx.git] / src / mathed / math_hullinset.h
index a951d77da276c205a5b08d53a4faf1128d0cc590..d82b845c5b37a6cb450aff5990d38145742c029d 100644 (file)
 #define MATH_HULLINSET_H
 
 #include "math_gridinset.h"
+#include <boost/scoped_ptr.hpp>
 
+class RenderPreview;
 
-class LaTeXFeatures;
 
 /// This provides an interface between "LyX insets" and "LyX math insets"
 class MathHullInset : public MathGridInset {
@@ -25,7 +26,9 @@ public:
        ///
        explicit MathHullInset(std::string const & type);
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       ~MathHullInset();
+       ///
+       MathHullInset & operator=(MathHullInset const &);
        ///
        mode_type currentMode() const;
        ///
@@ -62,7 +65,7 @@ public:
        void addRow(row_type row);
        /// delete a row
        void delRow(row_type row);
-       ///
+       /// swap two rows
        void swapRow(row_type row);
        /// add a column
        void addCol(col_type col);
@@ -83,8 +86,6 @@ public:
        ///
        bool idxLast(LCursor &) const;
 
-       ///
-       std::string fileInsetLabel() const;
        ///
        void write(WriteStream & os) const;
        ///
@@ -94,13 +95,41 @@ public:
        ///
        void infoize(std::ostream & os) const;
 
-protected:
        ///
-       DispatchResult priv_dispatch(LCursor & cur, FuncRequest const & cmd);
+       void write(Buffer const &, std::ostream & os) const;
+       ///
+       void read(Buffer const &, LyXLex & lex);
+       ///
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
+       ///
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
+       ///
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
+
+       /// get notification when the cursor leaves this inset
+       void notifyCursorLeaves(LCursor & cur);
+       ///
+       //bool insetAllowed(Code code) const;
+       ///
+       void addPreview(lyx::graphics::PreviewLoader &) const;
+
+
+protected:
+       MathHullInset(MathHullInset const &);
+
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+
+       /// do we want to handle this event?
+       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+               FuncStatus & status) const;
        ///
        std::string eolString(row_type row, bool fragile) const;
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
        void setType(std::string const & type);
        ///
@@ -112,13 +141,31 @@ private:
        ///
        std::string nicelabel(row_type row) const;
        ///
-       void doExtern(LCursor & cur, FuncRequest const & func);
+       void doExtern(LCursor & cur, FuncRequest & func);
        ///
        void glueall();
+       /*!
+        * split every row at the first relation operator.
+        * The number of columns must be 1. One column is added.
+        * The first relation operator and everything after it goes to the
+        * second column.
+        */
+       void splitTo2Cols();
+       /*!
+        * split every row at the first relation operator.
+        * The number of columns must be < 3. One or two columns are added.
+        * The first relation operator goes to the second column.
+        * Everything after it goes to the third column.
+        */
+       void splitTo3Cols();
+       /// change number of columns, split or combine columns if necessary.
+       void changeCols(col_type);
        ///
        char const * standardFont() const;
        /// consistency check
        void check() const;
+       /// can this change its number of rows?
+       bool rowChangeOK() const;
        /// can this change its number of cols?
        bool colChangeOK() const;
 
@@ -128,93 +175,36 @@ private:
        std::vector<int> nonum_;
        ///
        std::vector<std::string> label_;
-
+       ///
+       boost::scoped_ptr<RenderPreview> preview_;
 //
 // Incorporate me
 //
 public:
-       /// lowest x coordinate
-       int xlow() const;
-       /// highest x coordinate
-       int xhigh() const;
-       /// lowest y coordinate
-       int ylow() const;
-       /// highest y coordinate
-       int yhigh() const;
-
-
        /// what appears in the minibuffer when opening
        virtual std::string const editMessage() const;
-       /// get the absolute document x,y of the cursor
-       virtual void getCursorPos(BufferView & bv, int & x, int & y) const;
        ///
        virtual void getCursorDim(int &, int &) const;
        ///
-       virtual void insetUnlock(BufferView & bv);
-
-       /// To allow transparent use of math editing functions
-       //virtual void status(FuncRequest const &);
-
-       ///
-       virtual bool searchForward(BufferView *, std::string const &,
-                                  bool = true, bool = false);
-       ///
-       virtual bool searchBackward(BufferView *, std::string const &,
-                                   bool = true, bool = false);
-       ///
        virtual bool isTextInset() const { return true; }
        ///
        virtual void mutateToText();
        ///
        virtual void revealCodes(LCursor & cur) const;
        ///
-       virtual EDITABLE editable() const { return HIGHLY_EDITABLE; }
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       bool display() const;
-       ///
-       void edit(LCursor & cur, bool);
-       ///
-       void edit(LCursor & cur, int, int);
+       void edit(LCursor & cur, bool left);
        ///
-       Code MathHullInset::lyxCode() const;
-
-private:
-       /// common base for handling accents
-       void handleAccent(BufferView & bv, std::string const & arg,
-               std::string const & name);
-
-       /// lfun handler
-       DispatchResult lfunMousePress(LCursor &, FuncRequest const &);
-       ///
-       DispatchResult lfunMouseRelease(LCursor &, FuncRequest const &);
-       ///
-       DispatchResult lfunMouseMotion(LCursor &, FuncRequest const &);
-       ///
-       int x() const { return xo_; }
-       ///
-       int y() const { return yo_; }
-       ///
-       int yo_;
+       bool display() const;
        ///
-       int xo_;
+       Code lyxCode() const;
 
 protected:
-
-       /** Find the PreviewLoader, add a LaTeX snippet to it and
-        *  start the loading process.
-        *
-        *  Most insets have no interest in this capability, so the method
-        *  defaults to empty.
-        */
-       virtual void generatePreview(Buffer const &) const {}
-
        ///
        void handleFont(LCursor &, std::string const & arg, std::string const & font);
        ///
        void handleFont2(LCursor &, std::string const & arg);
 };
 
-// We don't really mess want around with mathed stuff outside mathed.
-// So do it here.
-void mathDispatch(LCursor & cur, FuncRequest const & cmd);
 #endif