lyx_mirror/src/mathed/math_macro.h
André Pönitz fa494db882 simplified search in mathed
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8325 a592a061-630c-0410-9148-cb99ea01b6c8
2004-01-07 18:28:50 +00:00

87 lines
1.6 KiB
C++

// -*- C++ -*-
/**
* \file math_macro.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 MATH_MACRO_H
#define MATH_MACRO_H
#include "math_data.h"
#include "math_nestinset.h"
#include "metricsinfo.h"
class MathMacroTemplate;
/// This class contains the data for a macro.
class MathMacro : public MathNestInset {
public:
/// A macro can be built from an existing template
explicit MathMacro(std::string const &);
///
MathMacro(MathMacro const &);
///
void draw(PainterInfo & pi, int x, int y) const;
///
void metrics(MetricsInfo & mi, Dimension & dim) const;
///
virtual std::auto_ptr<InsetBase> clone() const;
///
void dump() const;
///
bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
///
bool idxLeft(idx_type & idx, pos_type & pos) const;
///
bool idxRight(idx_type & idx, pos_type & pos) const;
///
void validate(LaTeXFeatures &) const;
///
bool isMacro() const { return true; }
///
void maple(MapleStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void octave(OctaveStream &) const;
///
void infoize(std::ostream &) const;
///
void infoize2(std::ostream &) const;
private:
///
void operator=(MathMacro const &);
///
std::string name() const;
///
bool defining() const;
///
void updateExpansion() const;
///
void expand() const;
///
MathAtom & tmplate_;
///
mutable MathArray expanded_;
///
mutable MetricsInfo mi_;
///
mutable LyXFont font_;
};
#endif