X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_macrotemplate.h;h=a8f09a04ad75af19df95e803d703f623dad6361c;hb=46880e2b9b49632c56bab2377ce9a3c826cf8d1d;hp=7e64b1e2dbdcbcfc4e66be2c1506bc06d53b7d06;hpb=d7525e974053df6bf1345a2cd772473b3042c27b;p=lyx.git diff --git a/src/mathed/math_macrotemplate.h b/src/mathed/math_macrotemplate.h index 7e64b1e2db..a8f09a04ad 100644 --- a/src/mathed/math_macrotemplate.h +++ b/src/mathed/math_macrotemplate.h @@ -3,6 +3,7 @@ #define MATH_MACROTEMPLATE_H #include "math_nestinset.h" +#include "LString.h" #ifdef __GNUG__ #pragma interface @@ -13,7 +14,7 @@ class MathMacro; /** This class contains the macro definition \author Alejandro Aguilar Sierra */ -//class MathMacroTemplate : public MathInset, boost::noncopyable +//class MathMacroTemplate : public MathInset, boost::noncopyable class MathMacroTemplate : public MathNestInset { public: @@ -24,18 +25,24 @@ public: /// MathInset * clone() const; /// - void write(std::ostream &, bool fragile) const; + void write(WriteStream & os) const; /// Number of arguments int numargs() const; /// void numargs(int); /// - void draw(Painter &, int x, int y) const; + string const & name() const; /// - void metrics(MathStyles st) const; + void draw(MathPainterInfo &, int x, int y) const; + /// + void metrics(MathMetricsInfo & st) const; + /// identifies macro templates + MathMacroTemplate * asMacroTemplate() { return this; } private: /// int numargs_; + /// + string name_; }; #endif