2001-02-13 17:08:51 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATHMACROARGUMENT_H
|
|
|
|
#define MATHMACROARGUMENT_H
|
|
|
|
|
2001-09-11 15:46:51 +00:00
|
|
|
#include "math_nestinset.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/** A macro argument
|
|
|
|
\author Alejandro Aguilar Sierra
|
|
|
|
*/
|
2001-09-11 15:46:51 +00:00
|
|
|
class MathMacroArgument : public MathNestInset {
|
2001-02-13 17:08:51 +00:00
|
|
|
public:
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
2001-04-24 16:13:38 +00:00
|
|
|
explicit MathMacroArgument(int);
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
2001-08-07 05:37:18 +00:00
|
|
|
void metrics(MathStyles st) const;
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void write(std::ostream &, bool fragile) const;
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void writeNormal(std::ostream &) const;
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2001-09-11 15:46:51 +00:00
|
|
|
void substitute(MathMacro const & macro);
|
2001-09-12 14:31:18 +00:00
|
|
|
///
|
|
|
|
bool isActive() const { return false; }
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// A number between 1 and 9
|
2001-02-26 12:53:35 +00:00
|
|
|
int number_;
|
2001-08-03 17:55:10 +00:00
|
|
|
///
|
|
|
|
char str_[3];
|
2001-09-11 15:46:51 +00:00
|
|
|
///
|
|
|
|
bool expanded_;
|
2001-02-13 17:08:51 +00:00
|
|
|
};
|
2001-04-24 16:13:38 +00:00
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
#endif
|