X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_macrotemplate.h;h=a8f09a04ad75af19df95e803d703f623dad6361c;hb=46880e2b9b49632c56bab2377ce9a3c826cf8d1d;hp=12bdbc0cb3df0d5c9b0e951f84a007611c3b29a1;hpb=6b954412883ed962cee39e5cdfc5d9962e893142;p=lyx.git diff --git a/src/mathed/math_macrotemplate.h b/src/mathed/math_macrotemplate.h index 12bdbc0cb3..a8f09a04ad 100644 --- a/src/mathed/math_macrotemplate.h +++ b/src/mathed/math_macrotemplate.h @@ -1,10 +1,9 @@ // -*- C++ -*- -#ifndef MATHMACROTEMPLATE -#define MATHMACROTEMPLATE +#ifndef MATH_MACROTEMPLATE_H +#define MATH_MACROTEMPLATE_H -#include - -#include "math_parinset.h" +#include "math_nestinset.h" +#include "LString.h" #ifdef __GNUG__ #pragma interface @@ -15,32 +14,35 @@ class MathMacro; /** This class contains the macro definition \author Alejandro Aguilar Sierra */ -//class MathMacroTemplate : public MathParInset, boost::noncopyable +//class MathMacroTemplate : public MathInset, boost::noncopyable -class MathMacroTemplate : public MathParInset { +class MathMacroTemplate : public MathNestInset { public: /// MathMacroTemplate(); /// - MathMacroTemplate(std::string const & name, int nargs); + MathMacroTemplate(string const & name, int nargs); + /// + MathInset * clone() const; /// - void WriteDef(std::ostream &, bool fragile) const; + void write(WriteStream & os) const; /// Number of arguments - int nargs() const; + int numargs() const; + /// + void numargs(int); /// - void draw(Painter &, int, int); + string const & name() const; /// - void Metrics(); + void draw(MathPainterInfo &, int x, int y) const; + /// + void metrics(MathMetricsInfo & st) const; + /// identifies macro templates + MathMacroTemplate * asMacroTemplate() { return this; } private: /// - int na_; + int numargs_; /// - std::set users_; - - /// unimplemented - void operator=(MathMacroTemplate const &); - /// unimplemented - MathMacroTemplate(MathMacroTemplate const &); + string name_; }; #endif