2001-06-25 00:06:33 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-12-01 22:59:25 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathArray.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.
|
2002-09-11 08:26:02 +00:00
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-11 08:26:02 +00:00
|
|
|
|
*/
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
#ifndef MATH_ARRAYINSET_H
|
|
|
|
|
#define MATH_ARRAYINSET_H
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathGrid.h"
|
2003-08-19 13:00:56 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// Inset for things like \begin{array}...\end{array}
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathArray : public InsetMathGrid {
|
2002-03-21 17:42:56 +00:00
|
|
|
|
public:
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathArray(docstring const &, int m, int n);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathArray(docstring const &, int m, int n,
|
|
|
|
|
char valign, docstring const & halign);
|
2001-11-28 13:09:40 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathArray(docstring const &, char valign, docstring const & halign);
|
2005-03-30 09:05:30 +00:00
|
|
|
|
/// convenience constructor from whitespace/newline separated data
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathArray(docstring const &, docstring const & str);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-10-02 06:38:49 +00:00
|
|
|
|
///
|
2007-09-23 22:39:49 +00:00
|
|
|
|
Dimension const dimension(BufferView const &) const;
|
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-09-10 09:35:12 +00:00
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathArray * asArrayInset() { return this; }
|
2002-08-09 10:22:35 +00:00
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathArray const * asArrayInset() const { return this; }
|
2001-11-09 08:35:57 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void infoize(odocstream & os) const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
///
|
2003-05-02 07:42:08 +00:00
|
|
|
|
void normalize(NormalStream & os) const;
|
|
|
|
|
///
|
|
|
|
|
void maple(MapleStream & os) const;
|
2005-03-30 09:05:30 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2002-02-14 14:52:23 +00:00
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2002-02-14 14:52:23 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring name_;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#endif
|