2002-08-14 15:13:07 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_commentinset.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.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-08-14 15:13:07 +00:00
|
|
|
|
#ifndef MATH_COMMENTINSET_H
|
|
|
|
|
#define MATH_COMMENTINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class latexkeys;
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// Inset for end-of-line comments
|
2002-08-14 15:13:07 +00:00
|
|
|
|
class MathCommentInset : public MathNestInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
MathCommentInset();
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
explicit MathCommentInset(std::string const &);
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
|
|
|
|
void drawT(TextPainter & pi, int x, int y) const;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maple(MapleStream &) const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void mathematica(MathematicaStream &) const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void octave(OctaveStream &) const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
///
|
|
|
|
|
void mathmlize(MathMLStream &) const;
|
|
|
|
|
///
|
|
|
|
|
void infoize(std::ostream & os) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2002-08-14 15:13:07 +00:00
|
|
|
|
};
|
|
|
|
|
#endif
|