2001-11-05 17:08:45 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_stringinset.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-11-05 17:08:45 +00:00
|
|
|
|
#ifndef MATH_STRINGINSET_H
|
|
|
|
|
#define MATH_STRINGINSET_H
|
|
|
|
|
|
2003-05-28 13:22:36 +00:00
|
|
|
|
#include "math_inset.h"
|
2001-11-05 17:08:45 +00:00
|
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
/** Some collection of chars with similar properties
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* mainly for math-extern
|
2001-11-05 17:08:45 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2003-05-28 13:22:36 +00:00
|
|
|
|
class MathStringInset : public MathInset {
|
2001-11-05 17:08:45 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
explicit MathStringInset(std::string const & s);
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string str() const { return str_; }
|
2001-11-09 12:01:10 +00:00
|
|
|
|
///
|
|
|
|
|
MathStringInset * asStringInset() { return this; }
|
2006-09-02 01:57:36 +00:00
|
|
|
|
///
|
|
|
|
|
MathStringInset const * asStringInset() const { return this; }
|
2001-11-09 12:01:10 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void octave(OctaveStream &) const;
|
2001-11-07 08:51:35 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maple(MapleStream &) const;
|
2001-11-07 08:51:35 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void mathematica(MathematicaStream &) const;
|
2002-07-01 11:17:14 +00:00
|
|
|
|
///
|
2001-11-07 17:30:26 +00:00
|
|
|
|
void mathmlize(MathMLStream &) const;
|
2001-11-09 12:01:10 +00:00
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
private:
|
2004-11-23 23:04:52 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
/// the string
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string str_;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
#endif
|