mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
40b2b89d4d
- fix math font sizes in headings etc - remove unused static member int MathInset::workwidth git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2909 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
761 B
C++
45 lines
761 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);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void metrics(MathMetricsInfo const & st) const;
|
|
///
|
|
void draw(Painter &, int x, int y) const;
|
|
///
|
|
void write(MathWriteInfo & os) const;
|
|
///
|
|
void writeNormal(std::ostream &) const;
|
|
///
|
|
void substitute(MathMacro const & macro);
|
|
///
|
|
bool isActive() const { return false; }
|
|
|
|
private:
|
|
/// A number between 1 and 9
|
|
int number_;
|
|
///
|
|
char str_[3];
|
|
///
|
|
bool expanded_;
|
|
///
|
|
mutable MathMetricsInfo mi_;
|
|
};
|
|
|
|
#endif
|