mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathEnsureMath.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
* \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:
|
|
explicit InsetMathEnsureMath(Buffer * buf);
|
|
///
|
|
mode_type currentMode() const override { return MATH_MODE; }
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const override;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const override;
|
|
///
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const override;
|
|
///
|
|
void drawT(TextPainter & pi, int x, int y) const override;
|
|
///
|
|
void write(WriteStream & os) const override;
|
|
///
|
|
void mathmlize(MathStream &) const override;
|
|
///
|
|
void htmlize(HtmlStream &) const override;
|
|
///
|
|
void infoize(odocstream & os) const override;
|
|
///
|
|
void validate(LaTeXFeatures & features) const override;
|
|
///
|
|
InsetCode lyxCode() const override { return MATH_ENSUREMATH_CODE; }
|
|
private:
|
|
Inset * clone() const override;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|