lyx_mirror/src/mathed/math_spaceinset.h
André Pönitz 2a5ab60ce8 IU of clone() and getLabelList()
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
2003-06-16 11:49:38 +00:00

45 lines
854 B
C++

// -*- C++ -*-
#ifndef MATH_SPACEINSET_H
#define MATH_SPACEINSET_H
#include "math_inset.h"
/// Smart spaces
class MathSpaceInset : public MathInset {
public:
///
explicit MathSpaceInset(int sp);
///
explicit MathSpaceInset(string const & name);
///
InsetBase * clone() const;
///
MathSpaceInset const * asSpaceInset() const { return this; }
///
MathSpaceInset * asSpaceInset() { return this; }
///
void incSpace();
///
void metrics(MetricsInfo & mi, Dimension & dim) const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
void normalize(NormalStream &) const;
///
void validate(LaTeXFeatures & features) const;
///
void maple(MapleStream &) const;
///
void mathematica(MathematicaStream &) const;
///
void octave(OctaveStream &) const;
///
void write(WriteStream & os) const;
private:
///
int space_;
};
#endif