lyx_mirror/src/mathed/math_macroarg.h
André Pönitz 32253ab4d1 make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
No editing possible, though...


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3328 a592a061-630c-0410-9148-cb99ea01b6c8
2002-01-10 14:02:37 +00:00

48 lines
812 B
C++

// -*- C++ -*-
#ifndef MATHMACROARGUMENT_H
#define MATHMACROARGUMENT_H
#include "math_nestinset.h"
#ifdef __GNUG__
#pragma interface
#endif
/** A macro argument
\author Alejandro Aguilar Sierra
*/
class MathMacroArgument : public MathNestInset {
public:
///
explicit MathMacroArgument(int, MathTextCodes = LM_TC_MIN);
///
MathInset * clone() const;
///
bool isActive() const { return false; }
///
void metrics(MathMetricsInfo const & st) const;
///
void draw(Painter &, int x, int y) const;
///
void substitute(MathMacro const & macro);
///
void normalize(NormalStream &) const;
///
void write(WriteStream & os) const;
private:
/// A number between 1 and 9
int number_;
///
char str_[3];
///
bool expanded_;
///
mutable MathMetricsInfo mi_;
///
MathTextCodes code_;
};
#endif