2001-02-28 11:56:36 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
* \file InsetMathSpace.h
|
2003-08-19 13:00:56 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_SPACEINSET_H
|
|
|
|
#define MATH_SPACEINSET_H
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMath.h"
|
2008-12-22 18:12:32 +00:00
|
|
|
#include "Length.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
/// Smart spaces
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathSpace : public InsetMath {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2008-12-22 18:12:32 +00:00
|
|
|
explicit InsetMathSpace();
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2008-12-22 18:12:32 +00:00
|
|
|
explicit InsetMathSpace(std::string const & name, std::string const & length);
|
|
|
|
///
|
|
|
|
explicit InsetMathSpace(Length const & length);
|
|
|
|
///
|
|
|
|
~InsetMathSpace();
|
2002-06-25 13:19:50 +00:00
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathSpace const * asSpaceInset() const { return this; }
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathSpace * asSpaceInset() { return this; }
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
void incSpace();
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-11-15 14:14:37 +00:00
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
void normalize(NormalStream &) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-09-20 12:36:36 +00:00
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void maple(MapleStream &) const;
|
2001-11-15 14:14:37 +00:00
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void mathematica(MathematicaStream &) const;
|
2002-07-01 11:17:14 +00:00
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void octave(OctaveStream &) const;
|
2001-11-15 14:14:37 +00:00
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
2008-12-22 18:12:32 +00:00
|
|
|
/// generate something that will be understood by the Dialogs.
|
|
|
|
std::string const createDialogStr() const;
|
|
|
|
///
|
|
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
|
|
///
|
|
|
|
docstring contextMenu(BufferView const &, int, int) const;
|
|
|
|
///
|
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
|
|
|
protected:
|
|
|
|
///
|
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2001-02-28 11:56:36 +00:00
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2008-12-22 18:12:32 +00:00
|
|
|
bool isNegative() const;
|
2007-09-21 20:39:47 +00:00
|
|
|
///
|
2008-12-22 18:12:32 +00:00
|
|
|
int space_;
|
|
|
|
/// amount of space for \\hspace
|
|
|
|
Length length_;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2001-02-13 13:28:32 +00:00
|
|
|
#endif
|