mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
f1cba8ff64
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
76 lines
1.6 KiB
C++
76 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetFormulaMacro.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é Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_FORMULA_MACRO_H
|
|
#define INSET_FORMULA_MACRO_H
|
|
|
|
#include "InsetMathNest.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class MathMacroTemplate;
|
|
class Lexer;
|
|
|
|
|
|
// An InsetFormulaMacro only knows its name and asks the global
|
|
// MathMacroTable if it needs to know more.
|
|
|
|
/// Main LyX Inset for defining math macros
|
|
class InsetFormulaMacro : public InsetMathNest {
|
|
public:
|
|
///
|
|
InsetFormulaMacro();
|
|
/// construct a macro hull from its name and the number of arguments
|
|
InsetFormulaMacro(docstring const & name, int nargs, docstring const & t);
|
|
/// constructs a mocro from its LaTeX definition
|
|
explicit InsetFormulaMacro(docstring const & s);
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
int latex(odocstream & os, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
|
|
///
|
|
InsetCode lyxCode() const { return MATHMACRO_CODE; }
|
|
///
|
|
docstring const & getInsetName() const { return name_; }
|
|
///
|
|
EDITABLE editable() const { return HIGHLY_EDITABLE; }
|
|
private:
|
|
///
|
|
MathAtom & tmpl() const;
|
|
///
|
|
void read(std::istream & is);
|
|
/// prefix in inset
|
|
docstring prefix() const;
|
|
///
|
|
docstring name_;
|
|
///
|
|
Inset * clone() const;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|