lyx_mirror/src/mathed/math_macroarg.h
André Pönitz 2bc240251e bring red color back
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2434 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-07 05:37:18 +00:00

45 lines
751 B
C++

// -*- 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) const;
///
void draw(Painter &, int x, int y) const;
///
void write(std::ostream &, bool fragile) const;
///
void writeNormal(std::ostream &) const;
///
void substitute(MathArray & array, MathMacro const & macro) const;
///
int ascent() const;
///
int descent() const;
///
int width() const;
private:
/// A number between 1 and 9
int number_;
///
char str_[3];
};
#endif