X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathHull.h;h=f3ea8a8166d5a4036907d3aa06e0214c730a47a7;hb=3bc08a76c42cd350a3141f00f37082bc9fab8967;hp=0284e6e43f0f4e00ae4726190b9fbedfc6e87c5b;hpb=86994bf75320524ec656fd70950633c83d445a6c;p=lyx.git diff --git a/src/mathed/InsetMathHull.h b/src/mathed/InsetMathHull.h index 0284e6e43f..f3ea8a8166 100644 --- a/src/mathed/InsetMathHull.h +++ b/src/mathed/InsetMathHull.h @@ -14,16 +14,16 @@ #include "InsetMathGrid.h" -#include "Color.h" #include "DocIterator.h" #include "OutputEnums.h" -#include +#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,7 +51,8 @@ public: /// void updateBuffer(ParIterator const &, UpdateType); /// - void addToToc(DocIterator const & di, bool output_active) const; + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype) const; /// InsetMathHull & operator=(InsetMathHull 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; /// @@ -93,16 +105,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; /// + char defaultColAlign(col_type col); /// - char displayColAlign(col_type col, row_type row) const; + char displayColAlign(idx_type idx) const; /// bool idxFirst(Cursor &) const; /// @@ -141,7 +156,7 @@ public: /// 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); @@ -153,6 +168,9 @@ 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; /// @@ -167,6 +185,8 @@ public: std::string contextMenuName() const; /// InsetCode lyxCode() const { return MATH_HULL_CODE; } + /// + bool canPaintChange(BufferView const &) const; protected: InsetMathHull(InsetMathHull const &); @@ -217,11 +237,13 @@ 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? @@ -232,15 +254,13 @@ private: /// "none", "simple", "display", "eqnarray",... HullType type_; /// - std::vector numbered_; + std::vector numbered_; /// std::vector numbers_; /// std::vector label_; /// - boost::scoped_ptr preview_; - /// - mutable bool use_preview_; + unique_ptr preview_; /// DocIterator docit_; /// @@ -272,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; };