1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/*
|
|
|
|
* File: math_inset.h
|
|
|
|
* Purpose: Declaration of insets for mathed
|
|
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
|
|
* Created: January 1996
|
|
|
|
* Description: Math paragraph and objects for a WYSIWYG math editor.
|
|
|
|
*
|
|
|
|
* Dependencies: Xlib, XForms
|
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
* Copyright: 1996, 1997 Alejandro Aguilar Sierra
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
2001-06-25 00:06:33 +00:00
|
|
|
* Version: 0.8beta, Math & Lyx project.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* You are free to use and modify this code under the terms of
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
*/
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
// Note: These math insets are internal to Math and are not derived
|
1999-09-27 18:44:28 +00:00
|
|
|
// from lyx inset.
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#ifndef MATH_INSET_H
|
|
|
|
#define MATH_INSET_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-07-13 09:54:32 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "xarray.h"
|
2001-02-13 19:10:18 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
/** Abstract base class for all math objects.
|
|
|
|
A math insets is for use of the math editor only, it isn't a
|
|
|
|
general LyX inset. It's used to represent all the math objects.
|
|
|
|
The formulaInset (a LyX inset) encapsulates a math inset.
|
2001-02-15 12:22:01 +00:00
|
|
|
*/
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
2001-07-13 14:54:56 +00:00
|
|
|
class LaTeXFeatures;
|
2001-10-12 12:02:49 +00:00
|
|
|
class MathArrayInset;
|
2001-08-17 13:18:10 +00:00
|
|
|
class MathCharInset;
|
2001-10-12 12:02:49 +00:00
|
|
|
class MathGridInset;
|
|
|
|
class MathNestInset;
|
2001-09-11 10:58:17 +00:00
|
|
|
class MathScriptInset;
|
2001-10-12 12:02:49 +00:00
|
|
|
class MathMatrixInset;
|
|
|
|
class MathSpaceInset;
|
|
|
|
class MathMacroTemplate;
|
2001-07-13 14:54:56 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
class MathInset {
|
2001-02-15 12:22:01 +00:00
|
|
|
public:
|
2001-09-26 16:52:34 +00:00
|
|
|
/// short of anything else reasonable
|
2001-09-14 14:05:57 +00:00
|
|
|
typedef MathArray::size_type size_type;
|
2001-09-26 16:52:34 +00:00
|
|
|
/// type for cursor positions within a cell
|
|
|
|
typedef MathArray::size_type pos_type;
|
|
|
|
/// type for cell indices
|
|
|
|
typedef size_type idx_type;
|
|
|
|
/// type for row numbers
|
|
|
|
typedef size_type row_type;
|
|
|
|
/// type for column numbers
|
|
|
|
typedef size_type col_type;
|
2001-09-14 14:05:57 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-08-08 17:26:30 +00:00
|
|
|
MathInset();
|
2001-07-26 06:56:43 +00:00
|
|
|
/// the virtual base destructor
|
2001-09-11 10:58:17 +00:00
|
|
|
virtual ~MathInset();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-07-26 06:56:43 +00:00
|
|
|
/// draw the object, sets xo_ and yo_ cached values
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual void draw(Painter &, int x, int y) const;
|
2001-07-26 06:56:43 +00:00
|
|
|
/// write LaTeX and Lyx code
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual void write(std::ostream &, bool fragile) const;
|
2001-07-26 06:56:43 +00:00
|
|
|
/// write normalized content
|
|
|
|
virtual void writeNormal(std::ostream &) const;
|
|
|
|
/// reproduce itself
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual MathInset * clone() const = 0;
|
2001-09-11 15:46:51 +00:00
|
|
|
///substitutes macro arguments if necessary
|
|
|
|
virtual void substitute(MathMacro const & macro);
|
2001-07-26 06:56:43 +00:00
|
|
|
/// compute the size of the object, sets ascend_, descend_ and width_
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual void metrics(MathStyles st) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual int ascent() const { return 1; }
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual int descent() const { return 1; }
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual int width() const { return 2; }
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
virtual int height() const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual MathStyles size() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
/// Where should we go when we press the up cursor key?
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxUp(idx_type & idx, pos_type & pos) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
/// The down key
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxDown(idx_type & idx, pos_type & pos) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
/// The left key
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxLeft(idx_type & idx, pos_type & pos) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
/// The right key
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxRight(idx_type & idx, pos_type & pos) const;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
/// Move one physical cell up
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxNext(idx_type & idx, pos_type & pos) const;
|
2001-07-06 12:09:32 +00:00
|
|
|
/// Move one physical cell down
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxPrev(idx_type & idx, pos_type & pos) const;
|
2001-07-06 12:09:32 +00:00
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
/// Target pos when we enter the inset from the left by pressing "Right"
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxFirst(idx_type & idx, pos_type & pos) const;
|
2001-06-27 14:10:35 +00:00
|
|
|
/// Target pos when we enter the inset from the right by pressing "Left"
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxLast(idx_type & idx, pos_type & pos) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
/// Where should we go if we press home?
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxHome(idx_type & idx, pos_type & pos) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
/// Where should we go if we press end?
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual bool idxEnd(idx_type & idx, pos_type & pos) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
/// Delete a cell and move cursor
|
2001-07-09 16:59:57 +00:00
|
|
|
// the return value indicates whether the cursor should leave the inset
|
|
|
|
// and/or the whole inset should be deleted
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual void idxDelete(idx_type & idx, bool & popit, bool & deleteit);
|
2001-07-16 15:53:25 +00:00
|
|
|
// deletes a cell range and moves the cursor
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual void idxDeleteRange(idx_type from, idx_type to);
|
2001-07-16 15:53:25 +00:00
|
|
|
// returns list of cell indices that are "between" from and to for
|
2001-08-03 17:10:22 +00:00
|
|
|
// selection purposes
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual std::vector<idx_type> idxBetween(idx_type from, idx_type to) const;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual idx_type nargs() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual MathArray & cell(idx_type);
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual MathArray const & cell(idx_type) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual MathXArray & xcell(idx_type);
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual MathXArray const & xcell(idx_type) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual int xo() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual int yo() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual void xo(int tx) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
virtual void yo(int ty) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual col_type ncols() const { return 1; }
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual row_type nrows() const { return 1; }
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual col_type col(row_type) const { return 0; }
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual row_type row(row_type) const { return 0; }
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual int cellXOffset(row_type) const { return 0; }
|
2001-08-08 09:31:36 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual int cellYOffset(row_type) const { return 0; }
|
2001-08-08 09:31:36 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual void addRow(row_type) {}
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual void delRow(row_type) {}
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual void addCol(col_type) {}
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-09-26 16:52:34 +00:00
|
|
|
virtual void delCol(col_type) {}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
virtual void userSetSize(MathStyles &) {}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual void getXY(int & x, int & y) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual bool covers(int x, int y) const;
|
2001-10-12 12:02:49 +00:00
|
|
|
|
|
|
|
/// identifies NestInsets
|
|
|
|
virtual MathNestInset * asNestInset() { return 0; }
|
2001-09-24 16:25:06 +00:00
|
|
|
/// identifies CharInsets
|
2001-08-17 13:18:10 +00:00
|
|
|
virtual MathCharInset const * asCharInset() const { return 0; }
|
2001-09-24 16:25:06 +00:00
|
|
|
/// identifies ScriptInsets
|
|
|
|
virtual MathScriptInset const * asScriptInset() const { return 0; }
|
2001-10-12 12:02:49 +00:00
|
|
|
/// identifies ScriptInsets
|
|
|
|
virtual MathScriptInset * asScriptInset() { return 0; }
|
|
|
|
/// identifies MatrixInsets
|
|
|
|
virtual MathMatrixInset const * asMatrixInset() const { return 0; }
|
|
|
|
/// identifies MatrixInsets
|
|
|
|
virtual MathMatrixInset * asMatrixInset() { return 0; }
|
|
|
|
/// identifies SpaceInset
|
|
|
|
virtual MathSpaceInset * asSpaceInset() { return 0; }
|
|
|
|
/// identifies GridInset
|
|
|
|
virtual MathGridInset * asGridInset() { return 0; }
|
|
|
|
/// identifies ArrayInsets
|
|
|
|
virtual MathArrayInset * asArrayInset() { return 0; }
|
|
|
|
/// identifies macro templates
|
|
|
|
virtual MathMacroTemplate * asMacroTemplate() { return 0; }
|
|
|
|
|
|
|
|
/// identifies things that can get scripts
|
|
|
|
virtual bool isScriptable() const { return false; }
|
2001-06-27 14:10:35 +00:00
|
|
|
///
|
|
|
|
virtual bool isActive() const { return nargs() > 0; }
|
2001-08-03 17:10:22 +00:00
|
|
|
///
|
2001-08-09 08:53:16 +00:00
|
|
|
virtual bool isRelOp() const { return false; }
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
virtual bool isMacro() const { return false; }
|
2001-10-12 12:02:49 +00:00
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual char getChar() const { return 0; }
|
2001-08-14 11:19:19 +00:00
|
|
|
///
|
|
|
|
virtual MathTextCodes code() const { return LM_TC_MIN; }
|
2001-09-11 10:58:17 +00:00
|
|
|
/// identifies things that can get \limits or \nolimits
|
|
|
|
virtual bool takesLimits() const { return false; }
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual void push_back(MathInset *);
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-14 11:19:19 +00:00
|
|
|
virtual void push_back(unsigned char c, MathTextCodes code);
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual void dump() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-03 17:10:22 +00:00
|
|
|
virtual void validate(LaTeXFeatures & features) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2001-08-10 13:17:39 +00:00
|
|
|
virtual void handleFont(MathTextCodes) {}
|
2001-08-03 09:54:48 +00:00
|
|
|
|
|
|
|
///
|
2001-08-10 13:17:39 +00:00
|
|
|
static int workwidth;
|
2001-08-03 09:54:48 +00:00
|
|
|
|
2001-02-15 12:22:01 +00:00
|
|
|
protected:
|
2001-08-06 17:20:26 +00:00
|
|
|
/// _sets_ style
|
|
|
|
void size(MathStyles s) const;
|
2001-07-26 06:56:43 +00:00
|
|
|
/// the used font size
|
2001-08-06 17:20:26 +00:00
|
|
|
mutable MathStyles size_;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-02-15 12:22:01 +00:00
|
|
|
private:
|
2001-07-26 06:56:43 +00:00
|
|
|
/// the following are used for positioning the cursor with the mouse
|
|
|
|
/// cached cursor start position in pixels from the document left
|
2001-08-06 17:20:26 +00:00
|
|
|
mutable int xo_;
|
2001-07-26 06:56:43 +00:00
|
|
|
/// cached cursor start position in pixels from the document top
|
2001-08-06 17:20:26 +00:00
|
|
|
mutable int yo_;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
std::ostream & operator<<(std::ostream &, MathInset const &);
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|