2003-08-19 13:00:56 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathNest.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
|
#ifndef MATH_NESTINSET_H
|
|
|
|
|
#define MATH_NESTINSET_H
|
|
|
|
|
|
2007-04-30 10:31:51 +00:00
|
|
|
|
#include "InsetMath.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/** Abstract base class for all math objects that contain nested items.
|
|
|
|
|
This is basically everything that is not a single character or a
|
2002-06-14 10:48:27 +00:00
|
|
|
|
single symbol.
|
2001-08-03 17:10:22 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2007-04-30 10:31:51 +00:00
|
|
|
|
class InsetMathNest : public InsetMath {
|
2002-03-21 17:42:56 +00:00
|
|
|
|
public:
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// nestinsets have a fixed size to start with
|
2006-09-16 18:11:38 +00:00
|
|
|
|
explicit InsetMathNest(idx_type ncells);
|
2007-05-31 12:30:17 +00:00
|
|
|
|
///
|
2007-06-09 13:08:44 +00:00
|
|
|
|
virtual ~InsetMathNest() {}
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// the size is usually some sort of convex hull of the cells
|
2003-05-28 13:22:36 +00:00
|
|
|
|
/// hides inset::metrics() intentionally!
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void metrics(MetricsInfo const & mi) const;
|
2002-06-14 10:48:27 +00:00
|
|
|
|
/// draw background if locked
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2002-07-26 17:23:44 +00:00
|
|
|
|
/// draw selection background
|
2004-02-02 17:32:56 +00:00
|
|
|
|
void drawSelection(PainterInfo & pi, int x, int y) const;
|
2007-01-20 00:55:24 +00:00
|
|
|
|
/// draw decorations.
|
|
|
|
|
void drawDecoration(PainterInfo & pi, int x, int y) const
|
|
|
|
|
{ drawMarkers(pi, x, y); }
|
2001-10-12 12:02:49 +00:00
|
|
|
|
/// identifies NestInsets
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathNest * asNestInset() { return this; }
|
2002-08-08 16:08:11 +00:00
|
|
|
|
/// identifies NestInsets
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathNest const * asNestInset() const { return this; }
|
2002-07-16 18:22:45 +00:00
|
|
|
|
/// get cursor position
|
2006-10-17 16:23:27 +00:00
|
|
|
|
void cursorPos(BufferView const & bv, CursorSlice const & sl,
|
|
|
|
|
bool boundary, int & x, int & y) const;
|
2004-01-30 11:41:12 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void edit(Cursor & cur, bool left);
|
2004-02-06 16:14:06 +00:00
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
Inset * editXY(Cursor & cur, int x, int y);
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// order of movement through the cells when pressing the left key
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxLeft(Cursor &) const;
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// order of movement through the cells when pressing the right key
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxRight(Cursor &) const;
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// move one physical cell up
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxNext(Cursor &) const;
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// move one physical cell down
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxPrev(Cursor &) const;
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// target pos when we enter the inset from the left by pressing "Right"
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxFirst(Cursor &) const;
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// target pos when we enter the inset from the right by pressing "Left"
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxLast(Cursor &) const;
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// number of cells currently governed by us
|
2001-09-26 16:52:34 +00:00
|
|
|
|
idx_type nargs() const;
|
2002-05-30 07:09:54 +00:00
|
|
|
|
/// access to the lock
|
|
|
|
|
bool lock() const;
|
|
|
|
|
/// access to the lock
|
|
|
|
|
void lock(bool);
|
2002-06-27 18:12:50 +00:00
|
|
|
|
/// get notification when the cursor leaves this inset
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool notifyCursorLeaves(Cursor & cur);
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2007-04-21 22:28:21 +00:00
|
|
|
|
/// direct access to the cell.
|
|
|
|
|
/// inlined because shows in profile.
|
|
|
|
|
//@{
|
2007-04-26 16:05:57 +00:00
|
|
|
|
MathData & cell(idx_type i) { return cells_[i]; }
|
|
|
|
|
MathData const & cell(idx_type i) const { return cells_[i]; }
|
2007-04-21 22:28:21 +00:00
|
|
|
|
//@}
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// can we move into this cell (see macroarg.h)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
bool isActive() const;
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// request "external features"
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
|
|
|
|
|
|
/// replace in all cells
|
2001-11-16 09:55:37 +00:00
|
|
|
|
void replace(ReplaceData &);
|
2002-02-01 17:01:30 +00:00
|
|
|
|
/// do we contain a given pattern?
|
2007-04-26 16:05:57 +00:00
|
|
|
|
bool contains(MathData const &) const;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
/// glue everything to a single cell
|
2007-04-26 16:05:57 +00:00
|
|
|
|
MathData glue() const;
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// debug helper
|
|
|
|
|
void dump() const;
|
2001-08-03 17:10:22 +00:00
|
|
|
|
|
2002-08-01 15:53:46 +00:00
|
|
|
|
/// writes \\, name(), and args in braces and '\\lyxlock' if necessary
|
|
|
|
|
void write(WriteStream & os) const;
|
2002-12-01 22:59:25 +00:00
|
|
|
|
/// writes [, name(), and args in []
|
2002-08-01 15:53:46 +00:00
|
|
|
|
void normalize(NormalStream & os) const;
|
2004-04-07 18:15:29 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int latex(Buffer const &, odocstream & os,
|
2004-04-07 18:15:29 +00:00
|
|
|
|
OutputParams const & runparams) const;
|
2007-06-07 18:08:03 +00:00
|
|
|
|
///
|
|
|
|
|
bool setMouseHover(bool mouse_hover);
|
2007-06-07 21:36:42 +00:00
|
|
|
|
///
|
|
|
|
|
bool mouseHovered() const { return mouse_hover_; }
|
2007-05-31 12:30:17 +00:00
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
|
protected:
|
2007-05-31 12:30:17 +00:00
|
|
|
|
///
|
|
|
|
|
InsetMathNest(InsetMathNest const & inset);
|
|
|
|
|
///
|
|
|
|
|
InsetMathNest & operator=(InsetMathNest const &);
|
|
|
|
|
|
2003-10-29 10:47:21 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2004-03-18 13:57:20 +00:00
|
|
|
|
/// do we want to handle this event?
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
2004-03-18 13:57:20 +00:00
|
|
|
|
FuncStatus & status) const;
|
2004-01-30 11:41:12 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void handleFont(Cursor & cur,
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring const & arg, docstring const & font);
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void handleFont(Cursor & cur,
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring const & arg, char const * const font);
|
2004-01-30 11:41:12 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void handleFont2(Cursor & cur, docstring const & arg);
|
2003-10-29 10:47:21 +00:00
|
|
|
|
|
2006-05-01 08:05:22 +00:00
|
|
|
|
/// interpret \p c and insert the result at the current position of
|
|
|
|
|
/// of \p cur. Return whether the cursor should stay in the formula.
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool interpretChar(Cursor & cur, char_type c);
|
2004-02-27 09:18:03 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool script(Cursor & cur, bool,
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring const & save_selection = docstring());
|
2004-02-27 09:18:03 +00:00
|
|
|
|
|
2006-05-01 08:05:22 +00:00
|
|
|
|
public:
|
|
|
|
|
/// interpret \p str and insert the result at the current position of
|
|
|
|
|
/// \p cur if it is something known. Return whether \p cur was
|
|
|
|
|
/// inserted.
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool interpretString(Cursor & cur, docstring const & str);
|
2004-02-06 16:14:06 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/// lfun handler
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void lfunMousePress(Cursor &, FuncRequest &);
|
2004-02-06 16:14:06 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void lfunMouseRelease(Cursor &, FuncRequest &);
|
2004-02-06 16:14:06 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void lfunMouseMotion(Cursor &, FuncRequest &);
|
2004-02-06 16:14:06 +00:00
|
|
|
|
|
|
|
|
|
protected:
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// we store the cells in a vector
|
2007-04-26 16:05:57 +00:00
|
|
|
|
typedef std::vector<MathData> cells_type;
|
2001-11-26 13:35:08 +00:00
|
|
|
|
/// thusly:
|
2001-08-03 17:10:22 +00:00
|
|
|
|
cells_type cells_;
|
2002-06-14 10:48:27 +00:00
|
|
|
|
/// if the inset is locked, it can't be entered with the cursor
|
2002-05-30 07:09:54 +00:00
|
|
|
|
bool lock_;
|
2007-06-07 18:08:03 +00:00
|
|
|
|
///
|
|
|
|
|
bool mouse_hover_;
|
2001-08-03 17:10:22 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2001-08-03 17:10:22 +00:00
|
|
|
|
#endif
|