]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.h
Fixed longstanding bug in Advanced Find&Replace, when dealing with documents containi...
[lyx.git] / src / mathed / InsetMathHull.h
index b69b55f75ebeab2156796bd4c47d3659988053a2..8c0ed98265d36663420dfefc5edb8cf69fd245ed 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 #define MATH_HULLINSET_H
 
 #include "InsetMathGrid.h"
+
+#include "Color.h"
+#include "DocIterator.h"
+#include "OutputEnums.h"
+
 #include <boost/scoped_ptr.hpp>
 
 
 namespace lyx {
 
+class InsetLabel;
+class ParConstIterator;
 class RenderPreview;
 
 
@@ -25,17 +32,25 @@ class RenderPreview;
 class InsetMathHull : public InsetMathGrid {
 public:
        ///
-       InsetMathHull();
+       InsetMathHull(Buffer * buf);
+       ///
+       InsetMathHull(Buffer * buf, HullType type);
+       ///
+       virtual ~InsetMathHull();
+       ///
+       void setBuffer(Buffer &);
        ///
-       explicit InsetMathHull(HullType type);
+       void updateBuffer(ParIterator const &, UpdateType);
        ///
-       ~InsetMathHull();
+       void addToToc(DocIterator const &) 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;
        ///
@@ -47,6 +62,10 @@ public:
        ///
        void label(row_type row, docstring const & label);
        ///
+       std::vector<InsetLabel *> const & getLabels() { return label_; }
+       ///
+       ColorCode backgroundColor(PainterInfo const &) const;
+       ///
        void numbered(row_type row, bool num);
        ///
        bool numbered(row_type row) const;
@@ -54,9 +73,6 @@ public:
        bool numberedType() const;
        ///
        bool ams() const;
-       /// Appends \c list with all labels found within this inset.
-       void getLabelList(Buffer const &,
-                         std::vector<docstring> & list) const;
        ///
        void validate(LaTeXFeatures & features) const;
        /// identifies HullInset
@@ -92,34 +108,61 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       void mathmlize(MathStream &) const;
-       ///
        void normalize(NormalStream &) const;
        ///
        void infoize(odocstream & os) const;
 
        ///
-       void write(Buffer const &, std::ostream & os) const;
+       void write(std::ostream & os) const;
+       ///
+       void header_write(WriteStream &) const;
+       ///
+       void footer_write(WriteStream &) const;
+       ///
+       void read(Lexer & lex);
+       ///
+       bool readQuiet(Lexer & lex);
+       ///
+       int plaintext(odocstream &, OutputParams const &) const;
+       ///
+       int docbook(odocstream &, OutputParams const &) const;
        ///
-       void read(Buffer const &, Lexer & lex);
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
+       void mathAsLatex(WriteStream &) const;
+       /// 
+       void toString(odocstream &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
-       /// the string that is passed to the TOC
-       virtual void textString(Buffer const &, odocstream &) const;
+       void forToc(docstring &, size_t) const;
 
        /// get notification when the cursor leaves this inset
-       bool notifyCursorLeaves(Cursor & cur);
+       bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
        ///
        //bool insetAllowed(InsetCode code) const;
        ///
-       void addPreview(graphics::PreviewLoader &) const;
+       void addPreview(DocIterator const & inset_pos,
+               graphics::PreviewLoader &) const;
+       /// Recreates the preview if preview is enabled.
+       void reloadPreview(DocIterator const & pos) const;
+       ///
+       void initUnicodeMath() const;
 
        ///
        static int displayMargin() { return 12; }
+       
+       /// Force inset into LTR environment if surroundings are RTL
+       virtual bool forceLTR() const { return true; }
+       ///
+       void recordLocation(DocIterator const & di);
+
+       ///
+       docstring contextMenuName() const;
+       ///
+       InsetCode lyxCode() const { return MATH_HULL_CODE; }
 
 protected:
        InsetMathHull(InsetMathHull const &);
@@ -130,24 +173,29 @@ protected:
        bool getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & status) const;
        ///
-       docstring eolString(row_type row, bool emptyline, bool fragile) const;
+       docstring eolString(row_type row, bool fragile, bool latex,
+                       bool last_eoln) const;
 
 private:
        virtual Inset * clone() const;
+       /// Prepare the preview if preview is enabled.
+       /// \param forexport: whether this is intended for export
+       /// 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 
+       /// used by image export
+       void loadPreview(DocIterator const & pos) const;
        ///
        void setType(HullType type);
        ///
        void validate1(LaTeXFeatures & features);
        ///
-       void header_write(WriteStream &) const;
-       ///
-       void footer_write(WriteStream &) const;
-       ///
        docstring nicelabel(row_type row) const;
        ///
        void doExtern(Cursor & cur, FuncRequest & func);
        ///
-       void glueall();
+       void glueall(HullType type);
        /*!
         * split every row at the first relation operator.
         * The number of columns must be 1. One column is added.
@@ -166,43 +214,52 @@ private:
        void changeCols(col_type);
        ///
        docstring standardFont() const;
+       ///
+       ColorCode standardColor() 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;
+       /// are any of the equations numbered?
+       bool haveNumbers() const;
 
        /// "none", "simple", "display", "eqnarray",...
        HullType type_;
        ///
-       std::vector<int> nonum_;
+       std::vector<bool> numbered_;
        ///
-       std::vector<docstring> label_;
+       std::vector<docstring> numbers_;
+       ///
+       std::vector<InsetLabel *> label_;
        ///
        boost::scoped_ptr<RenderPreview> preview_;
        ///
        mutable bool use_preview_;
+       ///
+       DocIterator docit_;
+       ///
+       typedef std::map<docstring, int> CounterMap;
+       /// used to store current values of important counters
+       CounterMap counter_map;
 //
 // Incorporate me
 //
 public:
-       /// what appears in the minibuffer when opening
-       virtual docstring const editMessage() const;
        ///
        virtual void mutateToText();
        ///
        virtual void revealCodes(Cursor & cur) const;
        ///
-       EDITABLE editable() const { return HIGHLY_EDITABLE; }
+       bool editable() const { return true; }
        ///
-       void edit(Cursor & cur, bool left);
+       void edit(Cursor & cur, bool front, 
+               EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
        ///
        Inset * editXY(Cursor & cur, int x, int y);
        ///
        DisplayType display() const;
-       ///
-       InsetCode lyxCode() const;
 
 protected:
        ///