lyx_mirror/src/mathed/math_macroarg.h

37 lines
647 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATHMACROARGUMENT_H
#define MATHMACROARGUMENT_H
#include "math_inset.h"
#ifdef __GNUG__
#pragma interface
#endif
/** A macro argument
\author Alejandro Aguilar Sierra
*/
class MathMacroArgument : public MathInset {
public:
///
explicit MathMacroArgument(int);
///
MathInset * Clone() const;
///
void Metrics(MathStyles st);
///
void draw(Painter &, int x, int baseline);
///
void Write(std::ostream &, bool fragile) const;
///
void WriteNormal(std::ostream &) const;
///
void substitute(MathArray & array, MathMacro const & macro) const;
private:
/// A number between 1 and 9
int number_;
};
#endif