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
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathNest.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
|
#include "MacroTable.h"
|
|
|
|
|
#include "MathData.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
|
|
|
|
///
|
2007-11-01 11:13:07 +00:00
|
|
|
|
MathMacroTemplate(docstring const & name, int nargs, int optional,
|
|
|
|
|
docstring const & type,
|
|
|
|
|
std::vector<MathData> const & optionalValues = std::vector<MathData>(),
|
|
|
|
|
MathData const & def = MathData(),
|
|
|
|
|
MathData const & display = MathData());
|
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
|
|
|
|
EDITABLE editable() const { return HIGHLY_EDITABLE; }
|
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void read(Buffer const &, Lexer & lex);
|
2004-04-13 06:27:29 +00:00
|
|
|
|
///
|
|
|
|
|
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 &,
|
2007-11-01 11:13:07 +00:00
|
|
|
|
OutputParams const &) const;
|
2007-02-24 18:00:13 +00:00
|
|
|
|
|
2001-02-15 12:22:01 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring name() const;
|
2007-11-01 11:13:07 +00:00
|
|
|
|
/// check name and possible other formal properties
|
|
|
|
|
bool validMacro() const;
|
|
|
|
|
///
|
|
|
|
|
bool validName() 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
|
|
|
|
///
|
2007-09-21 20:39:47 +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
|
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
|
InsetCode lyxCode() const { return MATHMACRO_CODE; }
|
2004-04-13 06:27:29 +00:00
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
|
protected:
|
|
|
|
|
///
|
|
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
|
|
|
/// do we want to handle this event?
|
|
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
|
|
|
FuncStatus & status) const;
|
|
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2004-04-13 06:27:29 +00:00
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
|
/// remove #n with from<=n<=to
|
|
|
|
|
void removeArguments(Cursor & cur, int from, int to);
|
|
|
|
|
/// shift every #n with from<=n, i.e. #n -> #(n-by)
|
|
|
|
|
void shiftArguments(size_t from, int by);
|
|
|
|
|
///
|
|
|
|
|
void insertParameter(Cursor & cur, int pos, bool greedy = false);
|
|
|
|
|
///
|
|
|
|
|
void removeParameter(Cursor & cur, int pos, bool greedy = false );
|
|
|
|
|
///
|
|
|
|
|
void makeOptional(Cursor & cur);
|
|
|
|
|
///
|
|
|
|
|
void makeNonOptional(Cursor & cur);
|
|
|
|
|
///
|
|
|
|
|
pos_type defIdx() const { return optionals_ + 1; }
|
|
|
|
|
/// index of default value cell of optional parameter (#1 -> n=0)
|
|
|
|
|
pos_type optIdx(int n) const { return n + 1; }
|
|
|
|
|
///
|
|
|
|
|
pos_type displayIdx() const { return optionals_ + 2; }
|
|
|
|
|
/// The label with some holes to edit
|
|
|
|
|
mutable MathData label_;
|
2001-02-15 12:22:01 +00:00
|
|
|
|
///
|
2007-11-01 11:13:07 +00:00
|
|
|
|
mutable int numargs_;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
2007-11-01 11:13:07 +00:00
|
|
|
|
int optionals_;
|
|
|
|
|
/// keeps the old optional default value when an optional argument is disabled
|
|
|
|
|
std::vector<MathData> optionalValues_;
|
2003-07-04 15:55:18 +00:00
|
|
|
|
/// newcommand or renewcommand or def
|
2007-11-01 11:13:07 +00:00
|
|
|
|
mutable 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
|