2001-02-13 17:08:51 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_macrotemplate.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#ifndef MATH_MACROTEMPLATE_H
|
|
|
|
|
#define MATH_MACROTEMPLATE_H
|
2001-02-13 17:08:51 +00:00
|
|
|
|
|
2003-09-07 21:25:37 +00:00
|
|
|
|
#include "math_data.h"
|
2001-08-03 17:10:22 +00:00
|
|
|
|
#include "math_nestinset.h"
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_string.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;
|
|
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
|
//class MathMacroTemplate : public MathInset, boost::noncopyable
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// This class contains the macro definition.
|
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
|
|
|
|
///
|
2003-07-04 15:55:18 +00:00
|
|
|
|
MathMacroTemplate(string const & name, int nargs, string const & type,
|
2002-07-12 14:24:47 +00:00
|
|
|
|
MathArray const & = MathArray(), MathArray const & = MathArray());
|
|
|
|
|
///
|
|
|
|
|
explicit MathMacroTemplate(std::istream & is);
|
2001-02-15 12:22:01 +00:00
|
|
|
|
///
|
2003-07-25 17:11:25 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> 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-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) 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_;
|
2003-07-04 15:55:18 +00:00
|
|
|
|
/// newcommand or renewcommand or def
|
|
|
|
|
string type_;
|
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
|