mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
2a5ab60ce8
Some mathed internal renamings to prepare further IU git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7173 a592a061-630c-0410-9148-cb99ea01b6c8
43 lines
757 B
C++
43 lines
757 B
C++
// -*- C++ -*-
|
|
#ifndef MATHMACROARGUMENT_H
|
|
#define MATHMACROARGUMENT_H
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
|
|
/** A macro argument
|
|
* \author Alejandro Aguilar Sierra
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
class MathMacroArgument : public MathNestInset {
|
|
public:
|
|
///
|
|
explicit MathMacroArgument(int);
|
|
///
|
|
InsetBase * clone() const;
|
|
///
|
|
bool isActive() const { return false; }
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo &, 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_;
|
|
};
|
|
|
|
#endif
|