lyx_mirror/src/mathed/math_hullinset.h
André Pönitz 1d8a1db27f fix nasty bug when inserting labels when cursor was in nested array
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3189 a592a061-630c-0410-9148-cb99ea01b6c8
2001-12-11 15:04:02 +00:00

111 lines
2.0 KiB
C++

// -*- C++ -*-
#ifndef MATH_HULLINSET_H
#define MATH_HULLINSET_H
#include "math_gridinset.h"
#ifdef __GNUG__
#pragma interface
#endif
/** This provides an interface between "LyX insets" and "LyX math insets"
* \author André Pönitz
*/
class LaTeXFeatures;
class MathHullInset : public MathGridInset {
public:
///
MathHullInset();
///
explicit MathHullInset(MathInsetTypes t);
///
MathHullInset(MathInsetTypes t, col_type cols);
///
MathInset * clone() const;
///
void metrics(MathMetricsInfo const & st) const;
///
void draw(Painter &, int x, int y) const;
///
string label(row_type row) const;
///
void label(row_type row, string const & label);
///
void numbered(row_type row, bool num);
///
bool numbered(row_type row) const;
///
bool numberedType() const;
///
bool display() const;
///
bool ams() const;
///
std::vector<string> const getLabelList() const;
///
void validate(LaTeXFeatures & features) const;
/// identifies MatrixInsets
MathHullInset const * asHullInset() const { return this; }
/// identifies HullInset
MathHullInset * asHullInset() { return this; }
///
void addRow(row_type);
///
void delRow(row_type);
///
void addCol(col_type);
///
void delCol(col_type);
///
void appendRow();
/// change type
void mutate(string const &);
///
void mutate(MathInsetTypes);
///
int defaultColSpace(col_type col);
///
char defaultColAlign(col_type col);
///
MathInsetTypes getType() const;
///
void write(WriteStream & os) const;
///
void mathmlize(MathMLStream &) const;
///
void normalize(NormalStream &) const;
private:
///
void setType(MathInsetTypes t);
///
void validate1(LaTeXFeatures & features);
///
void header_write(WriteStream &) const;
///
void footer_write(WriteStream &) const;
///
void glueall();
///
string nicelabel(row_type row) const;
/// consistency check
void check() const;
///
MathInsetTypes objtype_;
///
std::vector<int> nonum_;
///
std::vector<string> label_;
///
mutable MathMetricsInfo mi_;
};
#endif