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
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
explicit InsetMathCases(row_type rows = 1u);
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-11-12 16:45:09 +00:00
|
|
|
///
|
2007-09-23 22:39:49 +00:00
|
|
|
Dimension const dimension(BufferView const &) const;
|
|
|
|
///
|
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
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2005-03-24 16:26:15 +00:00
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
2005-03-24 16:26:15 +00:00
|
|
|
FuncStatus & flag) const;
|
2001-11-12 16:45:09 +00:00
|
|
|
|
2002-07-08 16:20:53 +00:00
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
void infoize(odocstream & 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;
|
2009-07-16 19:00:24 +00:00
|
|
|
///
|
|
|
|
InsetCode lyxCode() const { return MATH_CASES_CODE; }
|
2004-11-23 23:04:52 +00:00
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
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
|