X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_macrotemplate.h;h=a8f09a04ad75af19df95e803d703f623dad6361c;hb=d359dd8fca52c4f0100f7cf4bf636113c5c4e49f;hp=64283ab14c802e281a3e161d776a58b649a926a5;hpb=96a1cc78b20bf28eebb15cfebd33f78ed108c75a;p=lyx.git diff --git a/src/mathed/math_macrotemplate.h b/src/mathed/math_macrotemplate.h index 64283ab14c..a8f09a04ad 100644 --- a/src/mathed/math_macrotemplate.h +++ b/src/mathed/math_macrotemplate.h @@ -2,7 +2,8 @@ #ifndef MATH_MACROTEMPLATE_H #define MATH_MACROTEMPLATE_H -#include "math_inset.h" +#include "math_nestinset.h" +#include "LString.h" #ifdef __GNUG__ #pragma interface @@ -13,9 +14,9 @@ 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 MathInset { +class MathMacroTemplate : public MathNestInset { public: /// MathMacroTemplate(); @@ -24,20 +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, int); + string const & name() const; /// - void Metrics(MathStyles st, int asc = 0, int des = 0); + void draw(MathPainterInfo &, int x, int y) const; + /// + void metrics(MathMetricsInfo & st) const; + /// identifies macro templates + MathMacroTemplate * asMacroTemplate() { return this; } private: /// int numargs_; - /// unimplemented - void operator=(MathMacroTemplate const &); + /// + string name_; }; #endif