2012-01-23 01:49:49 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file InsetMathCancel.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2012-02-06 22:38:46 +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_CANCELINSET_H
|
|
|
|
#define MATH_CANCELINSET_H
|
|
|
|
|
|
|
|
#include "InsetMathNest.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
class InsetMathCancel : public InsetMathNest {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
enum Kind {
|
|
|
|
cancel,
|
|
|
|
bcancel,
|
|
|
|
xcancel
|
|
|
|
};
|
|
|
|
///
|
|
|
|
explicit InsetMathCancel(Buffer * buf, Kind);
|
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
/// write normalized content
|
|
|
|
void normalize(NormalStream & ns) const;
|
|
|
|
///
|
|
|
|
void infoize(odocstream & os) const;
|
|
|
|
///
|
|
|
|
InsetCode lyxCode() const { return MATH_CANCEL_CODE; }
|
2012-02-06 17:35:29 +00:00
|
|
|
///
|
|
|
|
void mathmlize(MathStream &) const;
|
2012-02-06 22:38:41 +00:00
|
|
|
///
|
|
|
|
void htmlize(HtmlStream &) const;
|
2012-01-23 01:49:49 +00:00
|
|
|
///
|
|
|
|
void validate(LaTeXFeatures &) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
virtual Inset * clone() const;
|
|
|
|
///
|
|
|
|
Kind kind_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|