X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_macrotemplate.h;h=405eeb331172e24ade293c1d44c44dfd69455dc3;hb=92d522b7f1be6046adcac062c558bbf0bf021612;hp=179f4da10a3919721d73e3692214ee79b31ac136;hpb=d5905fabf640bac1abda9ac7174000c3f2e34260;p=lyx.git diff --git a/src/mathed/math_macrotemplate.h b/src/mathed/math_macrotemplate.h index 179f4da10a..405eeb3311 100644 --- a/src/mathed/math_macrotemplate.h +++ b/src/mathed/math_macrotemplate.h @@ -1,59 +1,52 @@ // -*- C++ -*- -#ifndef MATHMACROTEMPLATE -#define MATHMACROTEMPLATE +#ifndef MATH_MACROTEMPLATE_H +#define MATH_MACROTEMPLATE_H -#include +#include "math_nestinset.h" +#include "LString.h" -#include "math_parinset.h" -#include "math_macroarg.h" class MathMacro; -/// This class contains the macro definition -class MathMacroTemplate : public MathParInset { +/** This class contains the macro definition + * \author Alejandro Aguilar Sierra + * + * Full author contact details are available in file CREDITS + */ +//class MathMacroTemplate : public MathInset, boost::noncopyable + +class MathMacroTemplate : public MathNestInset { public: - /// A template constructor needs all the data - explicit - MathMacroTemplate(string const &, int na = 0, int f = 0); /// - ~MathMacroTemplate(); + MathMacroTemplate(); /// - void draw(Painter &, int, int); + MathMacroTemplate(string const & name, int nargs, + MathArray const & = MathArray(), MathArray const & = MathArray()); /// - void Metrics(); + explicit MathMacroTemplate(std::istream & is); /// - void WriteDef(std::ostream &, bool fragile); - /// useful for special insets - void setTCode(MathedTextCodes t); + InsetBase * clone() const; /// - MathedTextCodes getTCode() const; - /// - void setArgument(MathedArray *, int i= 0); + void write(WriteStream & os) const; /// Number of arguments - int getNoArgs() const; - /// - void GetMacroXY(int, int &, int &) const; + int numargs() const; /// - MathParInset * getMacroPar(int) const; + void numargs(int); /// - void SetMacroFocus(int &, int, int); + string name() const; /// - void setEditMode(bool); - - /// Replace the appropriate arguments with a specific macro's data - void update(MathMacro * m = 0); + void draw(PainterInfo &, int x, int y) const; /// - short flags() const { - return flags_; - } + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// identifies macro templates + MathMacroTemplate * asMacroTemplate() { return this; } + /// identifies macro templates + MathMacroTemplate const * asMacroTemplate() const { return this; } private: /// - short flags_; - /// - MathedTextCodes tcode_; + int numargs_; /// - std::vector args_; - /// - int nargs_; + string name_; }; + #endif