]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.h
Fix text direction of references with XeTeX/bidi
[lyx.git] / src / mathed / InsetMathHull.h
index 53062d329840f37a6a37f51cf1f38bdca8d83bd3..a6fc8c9d6415efd79d0eb437732553849bd54cc9 100644 (file)
 
 #include "InsetMathGrid.h"
 
-#include "Color.h"
 #include "DocIterator.h"
 #include "OutputEnums.h"
 
-#include <boost/scoped_ptr.hpp>
+#include "support/unique_ptr.h"
 
 
 namespace lyx {
 
 class InsetLabel;
+class MacroNameSet;
 class ParConstIterator;
 class RenderPreview;
 
@@ -31,6 +31,15 @@ class RenderPreview;
 /// This provides an interface between "LyX insets" and "LyX math insets"
 class InsetMathHull : public InsetMathGrid {
 public:
+       /// How a line is numbered
+       enum Numbered {
+               /// not numbered, LaTeX code \\nonumber if line differs from inset
+               NONUMBER,
+               /// numbered, LaTeX code \\number if line differs from inset
+               NUMBER,
+               /// not numbered, LaTeX code \\notag if line differs from inset
+               NOTAG
+       };
        ///
        InsetMathHull(Buffer * buf);
        ///
@@ -42,14 +51,15 @@ public:
        ///
        void updateBuffer(ParIterator const &, UpdateType);
        ///
-       void addToToc(DocIterator const &);
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const;
        ///
        InsetMathHull & operator=(InsetMathHull const &);
        ///
        mode_type currentMode() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
-       /// 
+       ///
        void drawBackground(PainterInfo & pi, int x, int y) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
@@ -66,7 +76,9 @@ public:
        ///
        ColorCode backgroundColor(PainterInfo const &) const;
        ///
-       void numbered(row_type row, bool num);
+       void numbered(row_type row, bool num) { numbered(row, num ? NUMBER : NONUMBER); }
+       ///
+       void numbered(row_type row, Numbered num);
        ///
        bool numbered(row_type row) const;
        ///
@@ -74,6 +86,8 @@ public:
        ///
        bool ams() const;
        ///
+       bool outerDisplay() const;
+       ///
        void validate(LaTeXFeatures & features) const;
        /// identifies HullInset
        InsetMathHull const * asHullInset() const { return this; }
@@ -93,17 +107,19 @@ public:
 
        /// get type
        HullType getType() const;
+       /// is mutation implemented for this type?
+       static bool isMutable(HullType type);
        /// change type
        void mutate(HullType newtype);
 
        ///
        int defaultColSpace(col_type col);
        ///
-       char defaultColAlign(col_type col);
+       int displayColSpace(col_type col) const;
        ///
-       bool idxFirst(Cursor &) const;
+       char defaultColAlign(col_type col);
        ///
-       bool idxLast(Cursor &) const;
+       char displayColAlign(idx_type idx) const;
 
        ///
        void write(WriteStream & os) const;
@@ -123,7 +139,8 @@ public:
        ///
        bool readQuiet(Lexer & lex);
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream &, OutputParams const &,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
@@ -132,10 +149,12 @@ public:
        void mathmlize(MathStream &) const;
        ///
        void htmlize(HtmlStream &) const;
-       /// 
+       ///
+       void mathAsLatex(WriteStream &) const;
+       ///
        void toString(odocstream &) const;
        ///
-       void forToc(docstring &, size_t) const;
+       void forOutliner(docstring &, size_t const, bool const) const;
 
        /// get notification when the cursor leaves this inset
        bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
@@ -147,20 +166,24 @@ public:
        /// Recreates the preview if preview is enabled.
        void reloadPreview(DocIterator const & pos) const;
        ///
+       void usedMacros(MathData const & md, DocIterator const & pos,
+                       MacroNameSet & macros, MacroNameSet & defs) const;
+       ///
        void initUnicodeMath() const;
 
-       ///
-       static int displayMargin() { return 12; }
-       
        /// Force inset into LTR environment if surroundings are RTL
-       virtual bool forceLTR() const { return true; }
+       virtual bool forceLTR(OutputParams const &) const { return true; }
        ///
        void recordLocation(DocIterator const & di);
 
        ///
-       docstring contextMenuName() const;
+       std::string contextMenuName() const;
        ///
        InsetCode lyxCode() const { return MATH_HULL_CODE; }
+       ///
+       bool canPaintChange(BufferView const &) const;
+       ///
+       bool confirmDeletion() const { return nargs() != 1 || !cell(0).empty(); }
 
 protected:
        InsetMathHull(InsetMathHull const &);
@@ -170,6 +193,12 @@ protected:
        /// do we want to handle this event?
        bool getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & status) const;
+       /// override to set to 0 for inline equation
+       int leftMargin() const;
+       /// override to set to 0 for inline equation
+       int rightMargin() const;
+       /// override to set to 0 for inline equation
+       int border() const;
        ///
        docstring eolString(row_type row, bool fragile, bool latex,
                        bool last_eoln) const;
@@ -181,7 +210,7 @@ private:
        /// If so, we ignore LyXRC and wait for the image to be generated.
        void preparePreview(DocIterator const & pos,
                            bool forexport = false) const;
-       /// like reloadPreview, but forces load 
+       /// like reloadPreview, but forces load
        /// used by image export
        void loadPreview(DocIterator const & pos) const;
        ///
@@ -211,30 +240,38 @@ private:
        /// change number of columns, split or combine columns if necessary.
        void changeCols(col_type);
        ///
-       docstring standardFont() const;
+       std::string standardFont() const;
        ///
        ColorCode standardColor() const;
        /// consistency check
        void check() const;
+       /// does it understand tabular-feature commands?
+       bool allowsTabularFeatures() const;
        /// can this change its number of rows?
        bool rowChangeOK() const;
        /// can this change its number of cols?
        bool colChangeOK() const;
+       /// are any of the equations numbered?
+       bool haveNumbers() const;
+       /// draw four angular markers
+       virtual void drawMarkers(PainterInfo & pi, int x, int y) const;
 
        /// "none", "simple", "display", "eqnarray",...
        HullType type_;
        ///
-       std::vector<bool> numbered_;
+       std::vector<Numbered> numbered_;
        ///
        std::vector<docstring> numbers_;
        ///
        std::vector<InsetLabel *> label_;
        ///
-       boost::scoped_ptr<RenderPreview> preview_;
-       ///
-       mutable bool use_preview_;
+       unique_ptr<RenderPreview> preview_;
        ///
        DocIterator docit_;
+       ///
+       typedef std::map<docstring, int> CounterMap;
+       /// used to store current values of important counters
+       CounterMap counter_map;
 //
 // Incorporate me
 //
@@ -242,16 +279,16 @@ public:
        ///
        virtual void mutateToText();
        ///
-       virtual void revealCodes(Cursor & cur) const;
-       ///
        bool editable() const { return true; }
        ///
-       void edit(Cursor & cur, bool front, 
+       void edit(Cursor & cur, bool front,
                EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
        ///
        Inset * editXY(Cursor & cur, int x, int y);
        ///
        DisplayType display() const;
+       ///
+       int indent(BufferView const &) const;
 
 protected:
        ///
@@ -260,7 +297,7 @@ protected:
        ///
        void handleFont2(Cursor & cur, docstring const & arg);
        ///
-       bool previewState(BufferView * bv) const;
+       bool previewState(BufferView const * const bv) const;
 };