2001-11-12 16:45:09 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
* \file InsetMathCases.h
|
2003-08-19 13:00:56 +00:00
|
|
|
* 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
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2001-11-12 16:45:09 +00:00
|
|
|
#ifndef MATH_CASESINSET_H
|
|
|
|
#define MATH_CASESINSET_H
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathGrid.h"
|
2001-11-12 16:45:09 +00:00
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2003-03-06 08:10:50 +00:00
|
|
|
class LaTeXFeatures;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathCases : public InsetMathGrid {
|
2002-03-21 17:42:56 +00:00
|
|
|
public:
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
explicit InsetMathCases(Buffer * buf, row_type rows = 1u);
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const override;
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const override;
|
2005-03-24 16:26:15 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd) override;
|
2005-03-24 16:26:15 +00:00
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
2020-10-01 07:42:11 +00:00
|
|
|
FuncStatus & flag) const override;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
2002-07-08 16:20:53 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void infoize(odocstream & os) const override;
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void normalize(NormalStream &) const override;
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void maple(MapleStream &) const override;
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2020-12-26 19:02:46 +00:00
|
|
|
void mathmlize(MathMLStream &) const override;
|
2009-12-31 21:01:00 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void htmlize(HtmlStream &) const override;
|
2010-03-30 02:57:05 +00:00
|
|
|
///
|
2020-12-26 19:04:36 +00:00
|
|
|
void write(TeXMathStream & os) const override;
|
2003-03-06 08:10:50 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void validate(LaTeXFeatures & features) const override;
|
2009-07-16 19:00:24 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
InsetCode lyxCode() const override { return MATH_CASES_CODE; }
|
2016-04-08 18:24:12 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
int displayColSpace(col_type) const override;
|
2016-09-29 18:20:33 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
int leftMargin() const override { return 8; }
|
2016-09-29 18:20:33 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
int rightMargin() const override { return 0; }
|
2016-11-03 22:23:11 +00:00
|
|
|
/// see e.g. https://tex.stackexchange.com/a/133283/87201
|
2020-10-01 07:42:11 +00:00
|
|
|
bool handlesMulticolumn() const override { return true; }
|
2016-09-29 18:20:33 +00:00
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
private:
|
2020-10-01 07:42:11 +00:00
|
|
|
Inset * clone() const override;
|
2001-11-12 16:45:09 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2001-11-12 16:45:09 +00:00
|
|
|
#endif
|