]> git.lyx.org Git - lyx.git/blob - src/mathed/math_nestinset.h
the DocIterator stuff
[lyx.git] / src / mathed / math_nestinset.h
1 // -*- C++ -*-
2 /**
3  * \file math_nestinset.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_NESTINSET_H
13 #define MATH_NESTINSET_H
14
15 #include "math_diminset.h"
16
17
18 /** Abstract base class for all math objects that contain nested items.
19     This is basically everything that is not a single character or a
20     single symbol.
21 */
22
23 class MathNestInset : public MathDimInset {
24 public:
25         /// nestinsets have a fixed size to start with
26         explicit MathNestInset(idx_type ncells);
27
28         /// the size is usually some sort of convex hull of the cells
29         /// hides inset::metrics() intentionally!
30         void metrics(MetricsInfo const & mi) const;
31         /// draw background if locked
32         void draw(PainterInfo & pi, int x, int y) const;
33         /// draw selection background
34         void drawSelection(PainterInfo & pi, int x, int y) const;
35         /// appends itself with macro arguments substituted
36         void substitute(MathMacro const & macro);
37         /// identifies NestInsets
38         MathNestInset * asNestInset() { return this; }
39         /// identifies NestInsets
40         MathNestInset const * asNestInset() const { return this; }
41         /// get cursor position
42         void getCursorPos(CursorSlice const & cur, int & x, int & y) const;
43         ///
44         void edit(LCursor & cur, bool left);
45         ///
46         InsetBase * editXY(LCursor & cur, int x, int y);
47
48         /// order of movement through the cells when pressing the left key
49         bool idxLeft(LCursor &) const;
50         /// order of movement through the cells when pressing the right key
51         bool idxRight(LCursor &) const;
52
53         /// move one physical cell up
54         bool idxNext(LCursor &) const;
55         /// move one physical cell down
56         bool idxPrev(LCursor &) const;
57
58         /// target pos when we enter the inset from the left by pressing "Right"
59         bool idxFirst(LCursor &) const;
60         /// target pos when we enter the inset from the right by pressing "Left"
61         bool idxLast(LCursor &) const;
62
63         /// number of cells currently governed by us
64         idx_type nargs() const;
65         /// access to the lock
66         bool lock() const;
67         /// access to the lock
68         void lock(bool);
69         /// get notification when the cursor leaves this inset
70         void notifyCursorLeaves(idx_type);
71
72         /// direct access to the cell
73         MathArray & cell(idx_type);
74         /// direct access to the cell
75         MathArray const & cell(idx_type) const;
76
77         /// can we move into this cell (see macroarg.h)
78         bool isActive() const;
79         /// request "external features"
80         void validate(LaTeXFeatures & features) const;
81
82         /// replace in all cells
83         void replace(ReplaceData &);
84         /// do we contain a given pattern?
85         bool contains(MathArray const &) const;
86         /// glue everything to a single cell
87         MathArray glue() const;
88
89         /// debug helper
90         void dump() const;
91
92         /// writes \\, name(), and args in braces and '\\lyxlock' if necessary
93         void write(WriteStream & os) const;
94         /// writes [, name(), and args in []
95         void normalize(NormalStream & os) const;
96
97 protected:
98         ///
99         void priv_dispatch(LCursor & cur, FuncRequest const & cmd);
100         ///
101         void handleFont(LCursor & cur,
102                 std::string const & arg, std::string const & font);
103         ///
104         void handleFont2(LCursor & cur, std::string const & arg);
105
106         ///
107         bool interpret(LCursor & cur, char c);
108         ///
109         bool script(LCursor & cur, bool);
110
111
112 private:
113         /// lfun handler
114         void lfunMousePress(LCursor &, FuncRequest const &);
115         ///
116         void lfunMouseRelease(LCursor &, FuncRequest const &);
117         ///
118         void lfunMouseMotion(LCursor &, FuncRequest const &);
119
120 protected:
121         /// we store the cells in a vector
122         typedef std::vector<MathArray> cells_type;
123         /// thusly:
124         cells_type cells_;
125         /// if the inset is locked, it can't be entered with the cursor
126         bool lock_;
127 };
128
129 #endif