mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 02:35:20 +00:00
8b7b3a5895
- make all cache variables mutable, remove const_casts git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2426 a592a061-630c-0410-9148-cb99ea01b6c8
94 lines
1.6 KiB
C++
94 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
#ifndef MATH_MATRIXINSET_H
|
|
#define MATH_MATRIXINSET_H
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
/** Multiline math paragraph base class.
|
|
This is the base to all multiline editable math objects
|
|
like array and eqnarray.
|
|
\author Alejandro Aguilar Sierra
|
|
*/
|
|
|
|
class LaTeXFeatures;
|
|
|
|
class MathMatrixInset : public MathGridInset {
|
|
public:
|
|
///
|
|
MathMatrixInset();
|
|
///
|
|
explicit MathMatrixInset(MathInsetTypes t);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void write(std::ostream &, bool fragile) const;
|
|
///
|
|
void metrics(MathStyles st) const;
|
|
///
|
|
void draw(Painter &, int x, int y) const;
|
|
///
|
|
string label(int row) const;
|
|
///
|
|
void label(int row, string const & label);
|
|
///
|
|
void numbered(int row, bool num);
|
|
///
|
|
bool numbered(int row) const;
|
|
///
|
|
bool numberedType() const;
|
|
///
|
|
bool display() const;
|
|
///
|
|
bool ams() const;
|
|
///
|
|
std::vector<string> const getLabelList() const;
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
|
void addRow(int);
|
|
///
|
|
void delRow(int);
|
|
///
|
|
void addCol(int);
|
|
///
|
|
void delCol(int);
|
|
///
|
|
void appendRow();
|
|
|
|
/// change type
|
|
void mutate(string const &);
|
|
///
|
|
void mutate(short);
|
|
|
|
///
|
|
MathInsetTypes getType() const;
|
|
|
|
private:
|
|
///
|
|
virtual void setType(MathInsetTypes t);
|
|
///
|
|
void validate1(LaTeXFeatures & features);
|
|
///
|
|
void header_write(std::ostream &) const;
|
|
///
|
|
void footer_write(std::ostream &) const;
|
|
///
|
|
void glueall();
|
|
///
|
|
string nicelabel(int row) const;
|
|
|
|
///
|
|
MathInsetTypes objtype_;
|
|
///
|
|
std::vector<int> nonum_;
|
|
///
|
|
std::vector<string> label_;
|
|
};
|
|
|
|
#endif
|