mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
da26079578
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33986 a592a061-630c-0410-9148-cb99ea01b6c8
86 lines
1.8 KiB
C++
86 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathSpace.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_SPACEINSET_H
|
|
#define MATH_SPACEINSET_H
|
|
|
|
#include "InsetMath.h"
|
|
#include "Length.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
struct InsetSpaceParams;
|
|
|
|
/// Smart spaces
|
|
class InsetMathSpace : public InsetMath {
|
|
public:
|
|
///
|
|
explicit InsetMathSpace();
|
|
///
|
|
explicit InsetMathSpace(std::string const & name, std::string const & length);
|
|
///
|
|
explicit InsetMathSpace(Length const & length);
|
|
///
|
|
InsetMathSpace const * asSpaceInset() const { return this; }
|
|
///
|
|
InsetMathSpace * 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 mathmlize(MathStream & ms) const;
|
|
///
|
|
void htmlize(HtmlStream & ms) const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
/// generate something that will be understood by the Dialogs.
|
|
InsetSpaceParams params() const;
|
|
///
|
|
bool hasSettings() const { return true; }
|
|
///
|
|
docstring contextMenu(BufferView const &, int, int) const;
|
|
///
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
|
///
|
|
InsetCode lyxCode() const { return MATH_SPACE_CODE; }
|
|
|
|
protected:
|
|
///
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
private:
|
|
virtual Inset * clone() const;
|
|
///
|
|
bool isNegative() const;
|
|
///
|
|
int space_;
|
|
/// amount of space for \\hspace
|
|
Length length_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
#endif
|