2001-09-05 12:57:13 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
* \file InsetMathSplit.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-09-05 12:57:13 +00:00
|
|
|
#ifndef MATH_SPLITINSET_H
|
|
|
|
#define MATH_SPLITINSET_H
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathGrid.h"
|
2001-09-05 12:57:13 +00:00
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathSplit : public InsetMathGrid {
|
2002-03-21 17:42:56 +00:00
|
|
|
public:
|
2001-09-05 12:57:13 +00:00
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
explicit InsetMathSplit(Buffer * buf, docstring const & name,
|
2014-02-27 20:25:19 +00:00
|
|
|
char valign = 'c', bool numbered = false);
|
2005-04-04 13:40:27 +00:00
|
|
|
///
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-09-05 12:57:13 +00:00
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
2005-04-03 12:07:49 +00:00
|
|
|
FuncStatus & flag) const;
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void write(WriteStream & os) const;
|
2001-09-05 12:57:13 +00:00
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
void infoize(odocstream & os) const;
|
2005-04-03 12:07:49 +00:00
|
|
|
///
|
2009-12-31 23:28:19 +00:00
|
|
|
void mathmlize(MathStream &) const;
|
|
|
|
///
|
2010-03-31 20:50:29 +00:00
|
|
|
void htmlize(HtmlStream &) const;
|
|
|
|
///
|
2006-04-13 10:31:32 +00:00
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
2001-11-20 17:16:21 +00:00
|
|
|
int defaultColSpace(col_type) { return 0; }
|
2001-09-05 12:57:13 +00:00
|
|
|
///
|
2015-12-20 20:56:34 +00:00
|
|
|
int displayColSpace(col_type col) const;
|
|
|
|
///
|
2002-02-15 14:50:40 +00:00
|
|
|
char defaultColAlign(col_type);
|
2009-07-16 19:00:24 +00:00
|
|
|
///
|
2015-12-13 03:32:32 +00:00
|
|
|
char displayColAlign(idx_type idx) const;
|
|
|
|
///
|
2009-07-16 19:00:24 +00:00
|
|
|
InsetCode lyxCode() const { return MATH_SPLIT_CODE; }
|
|
|
|
|
2002-02-15 14:50:40 +00:00
|
|
|
private:
|
2006-10-22 10:15:23 +00:00
|
|
|
///
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
2002-02-15 14:50:40 +00:00
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
docstring name_;
|
2014-02-27 20:25:19 +00:00
|
|
|
///
|
|
|
|
bool numbered_;
|
2001-09-05 12:57:13 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
2001-09-05 12:57:13 +00:00
|
|
|
#endif
|