2001-06-25 00:06:33 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
#ifndef MATH_GRID_H
|
|
|
|
|
#define MATH_GRID_H
|
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
|
#include "math_nestinset.h"
|
2001-08-09 09:19:18 +00:00
|
|
|
|
#include "LString.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/** Gridded math inset base class.
|
|
|
|
|
This is the base to all grid-like editable math objects
|
|
|
|
|
like array and eqnarray.
|
|
|
|
|
\author Andr<EFBFBD> P<EFBFBD>nitz 2001
|
|
|
|
|
*/
|
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
|
class MathGridInset : public MathNestInset {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
/// additional per-row information
|
|
|
|
|
struct RowInfo {
|
|
|
|
|
///
|
|
|
|
|
RowInfo();
|
2001-08-06 17:20:26 +00:00
|
|
|
|
/// cached descent
|
|
|
|
|
mutable int descent_;
|
|
|
|
|
/// cached ascent
|
|
|
|
|
mutable int ascent_;
|
|
|
|
|
/// cached offset
|
|
|
|
|
mutable int offset_;
|
|
|
|
|
/// hline abow this row?
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool upperline_;
|
2001-08-06 17:20:26 +00:00
|
|
|
|
/// hline below this row?
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool lowerline_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// additional per-row information
|
|
|
|
|
struct ColInfo {
|
|
|
|
|
///
|
|
|
|
|
ColInfo();
|
|
|
|
|
///
|
|
|
|
|
char h_align_;
|
|
|
|
|
/// cache for drawing
|
|
|
|
|
int h_offset;
|
2001-08-06 17:20:26 +00:00
|
|
|
|
/// cached width
|
|
|
|
|
mutable int width_;
|
|
|
|
|
/// cached offset
|
|
|
|
|
mutable int offset_;
|
|
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool leftline_;
|
|
|
|
|
///
|
|
|
|
|
bool rightline_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
///
|
2001-08-08 17:26:30 +00:00
|
|
|
|
MathGridInset(int m, int n);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
|
void write(std::ostream &, bool fragile) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
|
void metrics(MathStyles st) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
|
|
|
|
void halign(string const &);
|
|
|
|
|
///
|
|
|
|
|
void halign(char c, int col);
|
|
|
|
|
///
|
2001-06-27 14:10:35 +00:00
|
|
|
|
char halign(int col) const;
|
|
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
|
void valign(char c);
|
|
|
|
|
///
|
2001-06-27 14:10:35 +00:00
|
|
|
|
char valign() const;
|
|
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
|
void resize(short int type, int cols);
|
|
|
|
|
///
|
|
|
|
|
const RowInfo & rowinfo(int row) const;
|
|
|
|
|
///
|
|
|
|
|
RowInfo & rowinfo(int row);
|
2001-08-01 13:28:45 +00:00
|
|
|
|
///
|
|
|
|
|
bool isGrid() const { return true; }
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
int ncols() const { return colinfo_.size(); }
|
|
|
|
|
///
|
|
|
|
|
int nrows() const { return rowinfo_.size(); }
|
|
|
|
|
///
|
|
|
|
|
int col(int idx) const { return idx % ncols(); }
|
|
|
|
|
///
|
|
|
|
|
int row(int idx) const { return idx / ncols(); }
|
2001-08-08 09:31:36 +00:00
|
|
|
|
///
|
|
|
|
|
int cellXOffset(int idx) const;
|
|
|
|
|
///
|
|
|
|
|
int cellYOffset(int idx) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
bool idxUp(int &, int &) const;
|
|
|
|
|
///
|
|
|
|
|
bool idxDown(int &, int &) const;
|
|
|
|
|
///
|
|
|
|
|
bool idxLeft(int &, int &) const;
|
|
|
|
|
///
|
|
|
|
|
bool idxRight(int &, int &) const;
|
|
|
|
|
///
|
|
|
|
|
bool idxFirst(int &, int &) const;
|
|
|
|
|
///
|
|
|
|
|
bool idxLast(int &, int &) const;
|
2001-07-09 16:59:57 +00:00
|
|
|
|
///
|
|
|
|
|
void idxDelete(int &, bool &, bool &);
|
2001-07-16 15:53:25 +00:00
|
|
|
|
///
|
|
|
|
|
void idxDeleteRange(int, int);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void addRow(int);
|
|
|
|
|
///
|
|
|
|
|
void delRow(int);
|
|
|
|
|
///
|
|
|
|
|
void addCol(int);
|
|
|
|
|
///
|
|
|
|
|
void delCol(int);
|
|
|
|
|
///
|
|
|
|
|
virtual void appendRow();
|
|
|
|
|
///
|
|
|
|
|
int index(int row, int col) const;
|
2001-07-16 15:53:25 +00:00
|
|
|
|
///
|
|
|
|
|
std::vector<int> idxBetween(int from, int to) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
|
protected:
|
2001-08-10 10:39:56 +00:00
|
|
|
|
/// returns proper 'end of line' code for LaTeX
|
|
|
|
|
string eolString(int row) const;
|
|
|
|
|
/// returns proper 'end of column' code for LaTeX
|
|
|
|
|
string eocString(int col) const;
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
/// row info
|
|
|
|
|
std::vector<RowInfo> rowinfo_;
|
|
|
|
|
/// column info
|
|
|
|
|
std::vector<ColInfo> colinfo_;
|
|
|
|
|
///
|
|
|
|
|
char v_align_; // add approp. type
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|