2001-11-12 16:45:09 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_casesinset.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
|
|
|
2003-03-06 08:10:50 +00:00
|
|
|
|
class LaTeXFeatures;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
|
|
|
|
|
class MathCasesInset : public MathGridInset {
|
2002-03-21 17:42:56 +00:00
|
|
|
|
public:
|
2001-11-12 16:45:09 +00:00
|
|
|
|
///
|
|
|
|
|
explicit MathCasesInset(row_type rows = 1u);
|
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
///
|
2004-04-07 16:54:15 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2005-03-24 16:26:15 +00:00
|
|
|
|
///
|
|
|
|
|
virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
|
|
|
|
|
///
|
|
|
|
|
bool getStatus(LCursor & cur, FuncRequest const & cmd,
|
|
|
|
|
FuncStatus & flag) const;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
|
2002-07-08 16:20:53 +00:00
|
|
|
|
///
|
|
|
|
|
void infoize(std::ostream & os) const;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
///
|
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maple(MapleStream &) const;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
2003-03-06 08:10:50 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|