X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathHull.h;h=f3ea8a8166d5a4036907d3aa06e0214c730a47a7;hb=3bc08a76c42cd350a3141f00f37082bc9fab8967;hp=7e72cef6373eb4084cec604ebad5b2b8b4cd78c2;hpb=c036ecb649c275bd55f022f6d20d778895148951;p=lyx.git diff --git a/src/mathed/InsetMathHull.h b/src/mathed/InsetMathHull.h index 7e72cef637..f3ea8a8166 100644 --- a/src/mathed/InsetMathHull.h +++ b/src/mathed/InsetMathHull.h @@ -17,12 +17,13 @@ #include "DocIterator.h" #include "OutputEnums.h" -#include +#include "support/unique_ptr.h" namespace lyx { class InsetLabel; +class MacroNameSet; class ParConstIterator; class RenderPreview; @@ -30,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); /// @@ -41,7 +51,8 @@ public: /// void updateBuffer(ParIterator const &, UpdateType); /// - void addToToc(DocIterator const &); + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype) const; /// InsetMathHull & operator=(InsetMathHull const &); /// @@ -65,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; /// @@ -92,22 +105,26 @@ 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); /// + int displayColSpace(col_type col) const; + /// char defaultColAlign(col_type col); /// + char displayColAlign(idx_type idx) const; + /// bool idxFirst(Cursor &) const; /// bool idxLast(Cursor &) const; /// - void write(WriteStream & os, bool do_header = true) const; - /// - void mathmlize(MathStream &) const; + void write(WriteStream & os) const; /// void normalize(NormalStream &) const; /// @@ -124,13 +141,22 @@ 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; /// docstring xhtml(XHTMLStream &, OutputParams const &) const; - /// the string that is passed to the TOC - void tocString(odocstream &) const; + /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// + void mathAsLatex(WriteStream &) const; + /// + void toString(odocstream &) 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); @@ -139,10 +165,11 @@ public: /// 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, bool wait = false) const; + void reloadPreview(DocIterator const & pos) const; + /// + void usedMacros(MathData const & md, DocIterator const & pos, + MacroNameSet & macros, MacroNameSet & defs) const; /// void initUnicodeMath() const; @@ -155,9 +182,11 @@ public: void recordLocation(DocIterator const & di); /// - virtual docstring contextMenu(BufferView const &, int, int) const; + std::string contextMenuName() const; /// InsetCode lyxCode() const { return MATH_HULL_CODE; } + /// + bool canPaintChange(BufferView const &) const; protected: InsetMathHull(InsetMathHull const &); @@ -168,10 +197,19 @@ protected: bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const; /// - docstring eolString(row_type row, bool fragile, bool last_eoln) 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); /// @@ -181,7 +219,7 @@ private: /// 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. @@ -199,28 +237,36 @@ private: /// change number of columns, split or combine columns if necessary. void changeCols(col_type); /// - docstring standardFont() const; + std::string standardFont() const; /// - docstring standardColor() 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; /// "none", "simple", "display", "eqnarray",... HullType type_; /// - std::vector nonum_; + std::vector numbered_; /// - std::vector label_; + std::vector numbers_; /// - boost::scoped_ptr preview_; + std::vector label_; /// - mutable bool use_preview_; + unique_ptr preview_; /// DocIterator docit_; + /// + typedef std::map CounterMap; + /// used to store current values of important counters + CounterMap counter_map; // // Incorporate me // @@ -246,7 +292,9 @@ protected: /// void handleFont2(Cursor & cur, docstring const & arg); /// - bool previewState(BufferView * bv) const; + bool previewState(BufferView const * const bv) const; + /// + bool previewTooSmall(Dimension const & dim) const; };