2012-01-23 01:49:49 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file InsetMathCancelto.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2015-12-05 19:32:39 +00:00
|
|
|
* \author Uwe Stöhr
|
2012-01-23 01:49:49 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MATH_CANCELTOINSET_H
|
|
|
|
#define MATH_CANCELTOINSET_H
|
|
|
|
|
|
|
|
#include "InsetMathNest.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
class InsetMathCancelto : public InsetMathNest {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
explicit InsetMathCancelto(Buffer * buf);
|
|
|
|
///
|
2020-10-03 12:42:14 +00:00
|
|
|
bool idxUpDown(Cursor & cur, bool up) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
2020-12-26 19:04:36 +00:00
|
|
|
void write(TeXMathStream & os) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
/// write normalized content
|
2020-10-01 07:42:11 +00:00
|
|
|
void normalize(NormalStream & ns) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void infoize(odocstream & os) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
InsetCode lyxCode() const override { return MATH_CANCELTO_CODE; }
|
2012-01-23 01:49:49 +00:00
|
|
|
/// Nothing for now
|
2020-12-26 19:02:46 +00:00
|
|
|
void mathmlize(MathMLStream &) const override {}
|
2012-01-23 01:49:49 +00:00
|
|
|
/// Nothing for HTML
|
2020-10-01 07:42:11 +00:00
|
|
|
void htmlize(HtmlStream &) const override {}
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void validate(LaTeXFeatures &) const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
Inset * clone() const override;
|
2012-01-23 01:49:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|