]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / mathed / InsetMathHull.h
index 41123a4cc82309fbe6062e3fc121ebaadc3d3f48..db4d2ff89cca83f0e7cd911559c139b0ff06ad80 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 <boost/scoped_ptr.hpp>
 
 
 namespace lyx {
 
+class InsetLabel;
+class ParConstIterator;
 class RenderPreview;
 
 
@@ -25,17 +28,25 @@ class RenderPreview;
 class InsetMathHull : public InsetMathGrid {
 public:
        ///
-       InsetMathHull();
+       InsetMathHull(Buffer * buf);
        ///
-       explicit InsetMathHull(HullType type);
+       InsetMathHull(Buffer * buf, HullType type);
        ///
        ~InsetMathHull();
        ///
+       void setBuffer(Buffer &);
+       ///
+       void updateLabels(ParIterator const &, bool);
+       ///
+       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;
        ///
@@ -47,6 +58,8 @@ public:
        ///
        void label(row_type row, docstring const & label);
        ///
+       ColorCode backgroundColor(PainterInfo const &) const;
+       ///
        void numbered(row_type row, bool num);
        ///
        bool numbered(row_type row) const;
@@ -54,9 +67,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
@@ -85,9 +95,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;
@@ -99,54 +109,70 @@ public:
        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);
        ///
-       void read(Buffer const &, LyXLex & lex);
+       bool readQuiet(Lexer & lex);
        ///
-       int plaintext(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        /// the string that is passed to the TOC
-       virtual int textString(Buffer const &, odocstream &,
-               OutputParams const &) const;
+       void tocString(odocstream &) const;
 
        /// get notification when the cursor leaves this inset
-       bool notifyCursorLeaves(LCursor & cur);
+       bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
+       ///
+       //bool insetAllowed(InsetCode code) const;
        ///
-       //bool insetAllowed(Code code) const;
+       void addPreview(DocIterator const & inset_pos,
+               graphics::PreviewLoader &) const;
+       /// Prepare the preview if preview is enabled.
+       void preparePreview(DocIterator const & pos) const;
+       /// Recreates the preview if preview is enabled.
+       void reloadPreview(DocIterator const & pos) const;
        ///
-       void addPreview(graphics::PreviewLoader &) 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 docstring contextMenu(BufferView const &, int, int) const;
+       ///
+       InsetCode lyxCode() const { return MATH_HULL_CODE; }
 
 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;
+       docstring eolString(row_type row, bool fragile) const;
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() 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(LCursor & cur, FuncRequest & func);
+       void doExtern(Cursor & cur, FuncRequest & func);
        ///
        void glueall();
        /*!
@@ -177,9 +203,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_;
        ///
@@ -188,29 +214,26 @@ private:
 // Incorporate me
 //
 public:
-       /// what appears in the minibuffer when opening
-       virtual docstring const editMessage() const;
        ///
        virtual void mutateToText();
        ///
-       virtual void revealCodes(LCursor & cur) const;
-       ///
-       EDITABLE editable() const { return HIGHLY_EDITABLE; }
+       virtual void revealCodes(Cursor & cur) const;
        ///
-       void edit(LCursor & cur, bool left);
+       bool editable() const { return true; }
        ///
-       InsetBase * editXY(LCursor & cur, int x, int y);
+       void edit(Cursor & cur, bool front, 
+               EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
        ///
-       bool display() const;
+       Inset * editXY(Cursor & cur, int x, int y);
        ///
-       Code lyxCode() const;
+       DisplayType display() 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;
 };