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
|
|
|
|
|
2007-04-25 16:11:45 +00:00
|
|
|
|
#include "MathArray.h"
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "MathMacroTable.h"
|
|
|
|
|
#include "InsetMathNest.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
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// This class contains the macro definition.
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class MathMacroTemplate : public InsetMathNest {
|
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
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
MathMacroTemplate(docstring const & name, int nargs,
|
|
|
|
|
docstring const & type,
|
2004-04-13 06:27:29 +00:00
|
|
|
|
MathArray const & = MathArray(),
|
|
|
|
|
MathArray const & = MathArray());
|
2002-07-12 14:24:47 +00:00
|
|
|
|
///
|
2006-10-22 14:37:32 +00:00
|
|
|
|
explicit MathMacroTemplate(const docstring & str);
|
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;
|
2007-02-24 18:00:13 +00:00
|
|
|
|
///
|
2007-02-25 09:27:11 +00:00
|
|
|
|
int plaintext(Buffer const &, odocstream &,
|
|
|
|
|
OutputParams const &) const;
|
2007-02-24 18:00:13 +00:00
|
|
|
|
|
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
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring 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
|
|
|
|
///
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool 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-10-21 00:16:43 +00:00
|
|
|
|
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
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring name_;
|
2003-07-04 15:55:18 +00:00
|
|
|
|
/// newcommand or renewcommand or def
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring type_;
|
2001-02-13 17:08:51 +00:00
|
|
|
|
};
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
|
#endif
|