X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathMacroArgument.h;h=4a52b1a1d20fda1e63a2bae1096a095cd63f694b;hb=10c8d51b9032ebc968c50c740c9cb883b3b3cfb9;hp=1fe0f2ea9ff1ab7cf1a6931c40b043bf4ad61bcb;hpb=e24bf64c68102691fc76081de9fb57926b482726;p=lyx.git diff --git a/src/mathed/MathMacroArgument.h b/src/mathed/MathMacroArgument.h index 1fe0f2ea9f..4a52b1a1d2 100644 --- a/src/mathed/MathMacroArgument.h +++ b/src/mathed/MathMacroArgument.h @@ -5,7 +5,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -13,25 +13,29 @@ #ifndef MATHMACROARGUMENT_H #define MATHMACROARGUMENT_H -#include "InsetMathDim.h" +#include "InsetMath.h" + +#include "support/docstring.h" namespace lyx { /// A macro argument. -class MathMacroArgument : public InsetMathDim { +class MathMacroArgument : public InsetMath { public: /// - explicit MathMacroArgument(std::size_t); + explicit MathMacroArgument(int number); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo &, int x, int y) const; /// - std::size_t number() const { return number_; } + int number() const { return number_; } + /// + void setNumber(int n); /// - InsetBase::Code lyxCode() const { return MATHMACROARG_CODE; } + InsetCode lyxCode() const { return MATH_MACROARG_CODE; } /// void normalize(NormalStream &) const; @@ -39,9 +43,9 @@ public: void write(WriteStream & os) const; private: - virtual std::auto_ptr doClone() const; + Inset * clone() const; /// A number between 1 and 9 - std::size_t number_; + int number_; /// docstring str_; };