mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 23:49:37 +00:00
732395ef1e
This is a tight matrix in script size that is suitable for using inline. Patch from our own Martin Vermeer and myself.
82 lines
1.9 KiB
C++
82 lines
1.9 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathAMSArray.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_AMSARRAYINSET_H
|
|
#define MATH_AMSARRAYINSET_H
|
|
|
|
#include "InsetMathGrid.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/// Inset for things like [pbvV]matrix, psmatrix etc
|
|
class InsetMathAMSArray : public InsetMathGrid {
|
|
public:
|
|
///
|
|
InsetMathAMSArray(Buffer * buf, docstring const &, int m, int n);
|
|
///
|
|
InsetMathAMSArray(Buffer * buf, docstring const &); ///
|
|
|
|
///
|
|
int rowsep() const;
|
|
///
|
|
int colsep() const;
|
|
///
|
|
int border() const;
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pain, int x, int y) const;
|
|
///
|
|
InsetMathAMSArray * asAMSArrayInset() { return this; }
|
|
///
|
|
InsetMathAMSArray const * asAMSArrayInset() const { return this; }
|
|
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
FuncStatus & flag) const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void infoize(odocstream & os) const;
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
// Don't need mathmlize or htmlize, as this is handled by
|
|
// InsetMathMatrix after being extracted in MathExtern.
|
|
// void mathmlize(MathStream &) const;
|
|
// void htmlize(HTMLStream &) const;
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
InsetCode lyxCode() const { return MATH_AMSARRAY_CODE; }
|
|
///
|
|
char const * name_left() const;
|
|
///
|
|
char const * name_right() const;
|
|
///
|
|
int leftMargin() const { return small() ? 3 : 6; } //override
|
|
///
|
|
int rightMargin() const { return small() ? 3: 6; } //override
|
|
///
|
|
bool handlesMulticolumn() const { return true; } //override
|
|
|
|
private:
|
|
virtual Inset * clone() const;
|
|
///
|
|
bool small() const { return name_ == "smallmatrix"; }
|
|
///
|
|
docstring name_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|