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-08-09 09:19:18 +00:00
|
|
|
#include "LString.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
class MathMacro;
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/** This class contains the macro definition
|
2002-09-11 08:26:02 +00:00
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-02-16 09:25:43 +00:00
|
|
|
*/
|
2002-03-21 17:42:56 +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
|
|
|
///
|
2002-07-12 14:24:47 +00:00
|
|
|
MathMacroTemplate(string const & name, int nargs,
|
|
|
|
MathArray const & = MathArray(), MathArray const & = MathArray());
|
|
|
|
///
|
|
|
|
explicit MathMacroTemplate(std::istream & is);
|
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-11-09 08:35:57 +00:00
|
|
|
void write(WriteStream & os) 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
|
|
|
///
|
2002-08-01 15:53:46 +00:00
|
|
|
string name() const;
|
2001-08-08 17:26:30 +00:00
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
Dimension metrics(MetricsInfo & mi) const;
|
2001-10-12 12:02:49 +00:00
|
|
|
/// identifies macro templates
|
|
|
|
MathMacroTemplate * asMacroTemplate() { return this; }
|
2002-08-09 07:01:17 +00:00
|
|
|
/// identifies macro templates
|
|
|
|
MathMacroTemplate const * asMacroTemplate() const { return this; }
|
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
|