2008-09-04 22:24:07 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file InsetMathEnsureMath.h
|
|
|
|
* 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
|
2008-09-04 22:24:07 +00:00
|
|
|
* \author Enrico Forestieri
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MATH_ENSUREMATHINSET_H
|
|
|
|
#define MATH_ENSUREMATHINSET_H
|
|
|
|
|
|
|
|
#include "InsetMathNest.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
|
/// Inset for ensuring math mode
|
|
|
|
class InsetMathEnsureMath : public InsetMathNest {
|
|
|
|
public:
|
|
|
|
InsetMathEnsureMath();
|
|
|
|
///
|
|
|
|
mode_type currentMode() const { return MATH_MODE; }
|
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void drawT(TextPainter & pi, int x, int y) const;
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
///
|
|
|
|
void infoize(odocstream & os) const;
|
|
|
|
private:
|
|
|
|
virtual Inset * clone() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif
|