lyx_mirror/src/mathed/math_macrotemplate.h
André Pönitz a92d23883e save inset lock state in the .lyx file
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4828 a592a061-630c-0410-9148-cb99ea01b6c8
2002-08-01 15:53:46 +00:00

52 lines
1.0 KiB
C++

// -*- C++ -*-
#ifndef MATH_MACROTEMPLATE_H
#define MATH_MACROTEMPLATE_H
#include "math_nestinset.h"
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
class MathMacro;
/** This class contains the macro definition
\author Alejandro Aguilar Sierra
*/
//class MathMacroTemplate : public MathInset, boost::noncopyable
class MathMacroTemplate : public MathNestInset {
public:
///
MathMacroTemplate();
///
MathMacroTemplate(string const & name, int nargs,
MathArray const & = MathArray(), MathArray const & = MathArray());
///
explicit MathMacroTemplate(std::istream & is);
///
MathInset * clone() const;
///
void write(WriteStream & os) const;
/// Number of arguments
int numargs() const;
///
void numargs(int);
///
string name() 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