mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
c9e78a825b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6150 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
851 B
C++
45 lines
851 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_SPACEINSET_H
|
|
#define MATH_SPACEINSET_H
|
|
|
|
#include "math_diminset.h"
|
|
|
|
|
|
/// Smart spaces
|
|
class MathSpaceInset : public MathDimInset {
|
|
public:
|
|
///
|
|
explicit MathSpaceInset(int sp);
|
|
///
|
|
explicit MathSpaceInset(string const & name);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
MathSpaceInset const * asSpaceInset() const { return this; }
|
|
///
|
|
MathSpaceInset * asSpaceInset() { return this; }
|
|
///
|
|
void incSpace();
|
|
///
|
|
void metrics(MathMetricsInfo & mi) const;
|
|
///
|
|
void draw(MathPainterInfo & 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
|