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"
|
2004-04-13 06:27:29 +00:00
|
|
|
|
#include "math_macrotable.h"
|
2001-08-03 17:10:22 +00:00
|
|
|
|
#include "math_nestinset.h"
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
2006-09-03 11:54:17 +00:00
|
|
|
|
#include "support/types.h"
|
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
|
|
|
|
///
|
2004-04-13 06:27:29 +00:00
|
|
|
|
MathMacroTemplate(std::string const & name, int nargs,
|
|
|
|
|
std::string const & type,
|
|
|
|
|
MathArray const & = MathArray(),
|
|
|
|
|
MathArray const & = MathArray());
|
2002-07-12 14:24:47 +00:00
|
|
|
|
///
|
|
|
|
|
explicit MathMacroTemplate(std::istream & is);
|
2001-02-15 12:22:01 +00:00
|
|
|
|
///
|
2004-04-13 06:27:29 +00:00
|
|
|
|
void edit(LCursor & cur, bool left);
|
|
|
|
|
///
|
|
|
|
|
EDITABLE editable() const { return HIGHLY_EDITABLE; }
|
|
|
|
|
///
|
|
|
|
|
void read(Buffer const &, LyXLex & lex);
|
|
|
|
|
///
|
|
|
|
|
void write(Buffer const &, std::ostream & os) 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
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string name() const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
2004-04-13 06:27:29 +00:00
|
|
|
|
MacroData asMacroData() const;
|
|
|
|
|
///
|
|
|
|
|
void draw(PainterInfo & pi, 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; }
|
2004-04-13 06:27:29 +00:00
|
|
|
|
///
|
|
|
|
|
InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
|
|
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
|
private:
|
2004-11-23 23:04:52 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2004-04-13 06:27:29 +00:00
|
|
|
|
/// prefix in inset
|
2006-09-03 11:54:17 +00:00
|
|
|
|
lyx::docstring prefix() const;
|
2004-04-13 06:27:29 +00:00
|
|
|
|
|
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
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string name_;
|
2003-07-04 15:55:18 +00:00
|
|
|
|
/// newcommand or renewcommand or def
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::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
|