X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathMacro.h;h=276cbdb21f222fda328bce6d05e45f3524e537e8;hb=7ac601f4292412b289178fc3108ad9e715a7c221;hp=bab83a44939b0d8650f0101af3110349776d8872;hpb=36dbec45069bf3d9db923200835e44f44d904eb8;p=lyx.git diff --git a/src/mathed/MathMacro.h b/src/mathed/MathMacro.h index bab83a4493..276cbdb21f 100644 --- a/src/mathed/MathMacro.h +++ b/src/mathed/MathMacro.h @@ -18,8 +18,9 @@ #include "MacroTable.h" #include "MathData.h" -namespace lyx { +#include +namespace lyx { /// This class contains the data for a macro. class MathMacro : public InsetMathNest { @@ -40,7 +41,7 @@ public: /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// - int kerning() const; + int kerning(BufferView const * bv) const; /// get cursor position void cursorPos(BufferView const & bv, CursorSlice const & sl, bool boundary, int & x, int & y) const; @@ -98,7 +99,6 @@ public: /// bool extraBraces() const { return displayMode_ == DISPLAY_NORMAL && arity() > 0; } - /// docstring name() const; /// @@ -139,28 +139,24 @@ protected: /// including the optional ones (even if it can be empty here) void attachArguments(std::vector const & args, size_t arity, int optionals); /// - bool editing() { return editing_; } - /// MacroData const * macro() { return macro_; } - + /// + bool editMetrics(BufferView const * bv) const; + private: /// virtual Inset * clone() const; - /// the index of the cursor slice of the macro, or -1 if it is not edited - int cursorIdx(Cursor const & cur) const; /// - bool editMode(Cursor const & cur) const; + bool editMode(BufferView const * bv) const; /// name of macro docstring name_; /// current display mode DisplayMode displayMode_; - /// display mode before change + /// expanded macro with ArgumentProxies InsetMathSqrt expanded_; /// number of arguments that were really attached size_t attachedArgsNum_; - /// cursor position during last draw - idx_type previousCurIdx_; /// optional argument attached? (only in DISPLAY_NORMAL mode) size_t optionals_; /// fold mode to be set in next metrics call? @@ -172,7 +168,7 @@ private: /// this might invalidate after metrics was called MacroData const * macro_; /// - bool editing_; + mutable std::map editing_; /// std::string requires_; /// update macro representation