lyx_mirror/src/mathed/math_macrotemplate.h
Lars Gullik Bjønnes 2b8ef58dc0 ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3804 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 17:42:56 +00:00

49 lines
909 B
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);
///
MathInset * clone() const;
///
void write(WriteStream & os) const;
/// Number of arguments
int numargs() const;
///
void numargs(int);
///
string const & name() const;
///
void draw(Painter &, int x, int y) const;
///
void metrics(MathMetricsInfo const & st) const;
/// identifies macro templates
MathMacroTemplate * asMacroTemplate() { return this; }
private:
///
int numargs_;
///
string name_;
};
#endif