]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.h
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / InsetMathHull.h
index a2c4e2e728f78331da66cc03ad485f9b4423a677..9f850b240e71891bf37971e863f03ae31bf3a670 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.
  */
@@ -19,6 +19,7 @@
 
 namespace lyx {
 
+class InsetLabel;
 class ParConstIterator;
 class RenderPreview;
 
@@ -33,13 +34,19 @@ public:
        ///
        ~InsetMathHull();
        ///
-       void addToToc(ParConstIterator const &) const;
+       void setBuffer(Buffer &);
+       ///
+       void updateLabels(ParIterator const &);
+       ///
+       void addToToc(DocIterator 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;
        ///
@@ -51,6 +58,8 @@ public:
        ///
        void label(row_type row, docstring const & label);
        ///
+       ColorCode backgroundColor() const { return Color_mathbg; }
+       ///
        void numbered(row_type row, bool num);
        ///
        bool numbered(row_type row) const;
@@ -58,8 +67,6 @@ public:
        bool numberedType() const;
        ///
        bool ams() const;
-       /// Appends \c list with all labels found within this inset.
-       void getLabelList(std::vector<docstring> & list) const;
        ///
        void validate(LaTeXFeatures & features) const;
        /// identifies HullInset
@@ -104,8 +111,14 @@ public:
        ///
        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;
@@ -118,6 +131,8 @@ public:
        //bool insetAllowed(InsetCode code) const;
        ///
        void addPreview(graphics::PreviewLoader &) const;
+       ///
+       void initUnicodeMath() const;
 
        ///
        static int displayMargin() { return 12; }
@@ -125,6 +140,9 @@ public:
        /// Force inset into LTR environment if surroundings are RTL?
        virtual bool forceLTR() const { return true; }
 
+       ///
+       virtual docstring contextMenu(BufferView const &, int, int) const;
+
 protected:
        InsetMathHull(InsetMathHull const &);
 
@@ -143,10 +161,6 @@ private:
        ///
        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);
@@ -180,9 +194,9 @@ private:
        /// "none", "simple", "display", "eqnarray",...
        HullType type_;
        ///
-       std::vector<int> nonum_;
+       std::vector<bool> nonum_;
        ///
-       std::vector<docstring> label_;
+       std::vector<InsetLabel *> label_;
        ///
        boost::scoped_ptr<RenderPreview> preview_;
        ///