lyx_mirror/src/mathed/InsetMathSpace.h
Vincent van Ravesteijn 4c9fe33c83 * Move handling of LFUN_INSET_SETTINGS to Inset,
* Remove the EDITABLE enum,
* add functions hasSettings() for all insets.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29375 a592a061-630c-0410-9148-cb99ea01b6c8
2009-04-22 20:55:13 +00:00

80 lines
1.7 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 {
/// 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();
///
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 write(WriteStream & os) const;
/// generate something that will be understood by the Dialogs.
std::string const createDialogStr() const;
///
bool hasSettings() const { return true; }
///
docstring contextMenu(BufferView const &, int, int) const;
///
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
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