]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.h
simplify GuiToc / TocWidget interaction. Much can still be simplified...
[lyx.git] / src / mathed / InsetMathHull.h
index b76a8c2be1e851e41d41875001fc7bab78602064..7e67c6e52f1cb4b1144047f2fd7912d656caee04 100644 (file)
@@ -35,7 +35,7 @@ public:
        ///
        mode_type currentMode() const;
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
@@ -85,9 +85,9 @@ public:
        ///
        char defaultColAlign(col_type col);
        ///
-       bool idxFirst(LCursor &) const;
+       bool idxFirst(Cursor &) const;
        ///
-       bool idxLast(LCursor &) const;
+       bool idxLast(Cursor &) const;
 
        ///
        void write(WriteStream & os) const;
@@ -104,36 +104,39 @@ public:
        void read(Buffer const &, Lexer & lex);
        ///
        int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+                     OutputParams const &) const;
        ///
        int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+                   OutputParams const &) const;
        /// the string that is passed to the TOC
        virtual void textString(Buffer const &, odocstream &) const;
 
        /// get notification when the cursor leaves this inset
-       bool notifyCursorLeaves(LCursor & cur);
+       bool notifyCursorLeaves(Cursor & cur);
        ///
-       //bool insetAllowed(Code code) const;
+       //bool insetAllowed(InsetCode code) const;
        ///
        void addPreview(graphics::PreviewLoader &) const;
 
        ///
        static int displayMargin() { return 12; }
+       
+       /// Force inset into LTR environment if surroundings are RTL?
+       virtual bool forceLTR() const { return true; }
 
 protected:
        InsetMathHull(InsetMathHull const &);
 
-       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
 
        /// do we want to handle this event?
-       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & status) const;
        ///
        docstring eolString(row_type row, bool emptyline, bool fragile) const;
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        ///
        void setType(HullType type);
        ///
@@ -145,7 +148,7 @@ private:
        ///
        docstring nicelabel(row_type row) const;
        ///
-       void doExtern(LCursor & cur, FuncRequest & func);
+       void doExtern(Cursor & cur, FuncRequest & func);
        ///
        void glueall();
        /*!
@@ -192,24 +195,25 @@ public:
        ///
        virtual void mutateToText();
        ///
-       virtual void revealCodes(LCursor & cur) const;
+       virtual void revealCodes(Cursor & cur) const;
        ///
        EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       void edit(LCursor & cur, bool left);
+       void edit(Cursor & cur, bool front, 
+               EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
        ///
-       InsetBase * editXY(LCursor & cur, int x, int y);
+       Inset * editXY(Cursor & cur, int x, int y);
        ///
-       bool display() const;
+       DisplayType display() const;
        ///
-       Code lyxCode() const;
+       InsetCode lyxCode() const;
 
 protected:
        ///
-       void handleFont(LCursor & cur, docstring const & arg,
+       void handleFont(Cursor & cur, docstring const & arg,
                docstring const & font);
        ///
-       void handleFont2(LCursor & cur, docstring const & arg);
+       void handleFont2(Cursor & cur, docstring const & arg);
        ///
        bool previewState(BufferView * bv) const;
 };