2001-02-13 17:08:51 +00:00
|
|
|
// -*- C++ -*-
|
2001-06-25 00:06:33 +00:00
|
|
|
#ifndef MATH_MACROTEMPLATE_H
|
|
|
|
#define MATH_MACROTEMPLATE_H
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
#include "math_nestinset.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
class MathMacro;
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/** This class contains the macro definition
|
|
|
|
\author Alejandro Aguilar Sierra
|
|
|
|
*/
|
2001-06-25 00:06:33 +00:00
|
|
|
//class MathMacroTemplate : public MathInset, boost::noncopyable
|
2001-04-24 16:13:38 +00:00
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
class MathMacroTemplate : public MathNestInset {
|
2001-02-15 12:22:01 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-04-24 16:13:38 +00:00
|
|
|
MathMacroTemplate();
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-05-02 08:18:00 +00:00
|
|
|
MathMacroTemplate(string const & name, int nargs);
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * clone() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void write(std::ostream &, bool fragile) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
/// Number of arguments
|
2001-06-25 00:06:33 +00:00
|
|
|
int numargs() const;
|
|
|
|
///
|
|
|
|
void numargs(int);
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-08 17:26:30 +00:00
|
|
|
string const & name() const;
|
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void metrics(MathStyles st) const;
|
2001-02-13 17:08:51 +00:00
|
|
|
private:
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
int numargs_;
|
2001-08-08 17:26:30 +00:00
|
|
|
///
|
|
|
|
string name_;
|
2001-02-13 17:08:51 +00:00
|
|
|
};
|
2001-04-24 16:13:38 +00:00
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
#endif
|