2003-03-03 16:15:38 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathTabular.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.
|
2003-03-03 16:15:38 +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.
|
2003-03-03 16:15:38 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
#ifndef MATH_TABULARINSET_H
|
|
|
|
|
#define MATH_TABULARINSET_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{tabular}...\end{tabular}
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathTabular : public InsetMathGrid {
|
2003-03-03 16:15:38 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathTabular(docstring const &, int m, int n);
|
2003-03-03 16:15:38 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathTabular(docstring const &, int m, int n,
|
|
|
|
|
char valign, docstring const & halign);
|
2003-03-03 16:15:38 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathTabular(docstring const &, char valign, docstring const & halign);
|
2003-03-03 16:15:38 +00:00
|
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2003-03-03 16:15:38 +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;
|
2003-03-03 16:15:38 +00:00
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathTabular * asTabularInset() { return this; }
|
2003-03-03 16:15:38 +00:00
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathTabular const * asTabularInset() const { return this; }
|
2003-03-03 16:15:38 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void infoize(odocstream & os) const;
|
2005-04-03 12:07:49 +00:00
|
|
|
|
///
|
2003-03-03 16:15:38 +00:00
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
///
|
|
|
|
|
void maple(MapleStream &) const;
|
|
|
|
|
|
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2003-03-03 16:15:38 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring name_;
|
2003-03-03 16:15:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
2006-10-22 10:15:23 +00:00
|
|
|
|
|
2003-03-03 16:15:38 +00:00
|
|
|
|
#endif
|