mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
6e600e84f8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8545 a592a061-630c-0410-9148-cb99ea01b6c8
72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file formulamacro.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 "math_nestinset.h"
|
|
|
|
class MathMacroTemplate;
|
|
class LyXLex;
|
|
|
|
|
|
// 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 MathNestInset {
|
|
public:
|
|
///
|
|
InsetFormulaMacro();
|
|
/// construct a macro hull from its name and the number of arguments
|
|
InsetFormulaMacro(std::string const & name, int nargs, std::string const & t);
|
|
/// constructs a mocro from its LaTeX definition
|
|
explicit InsetFormulaMacro(std::string const & s);
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
void read(Buffer const &, LyXLex & lex);
|
|
///
|
|
void write(Buffer const &, std::ostream & os) const;
|
|
///
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int latex(Buffer const &, std::ostream & os,
|
|
OutputParams const &) const;
|
|
///
|
|
int linuxdoc(Buffer const &, std::ostream & os,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
|
|
///
|
|
std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
|
|
private:
|
|
///
|
|
MathAtom & tmpl() const;
|
|
///
|
|
void read(std::istream & is);
|
|
/// prefix in inset
|
|
std::string prefix() const;
|
|
///
|
|
std::string name_;
|
|
};
|
|
|
|
#endif
|