]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathNest.h
a22766bc08cd0510ca81665e9e59747c54aedea8
[lyx.git] / src / mathed / InsetMathNest.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathNest.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 "InsetMath.h"
16
17
18 namespace lyx {
19
20
21 /** Abstract base class for all math objects that contain nested items.
22     This is basically everything that is not a single character or a
23     single symbol.
24 */
25
26 class InsetMathNest : public InsetMath {
27 public:
28         /// nestinsets have a fixed size to start with
29         explicit InsetMathNest(idx_type ncells);
30         ///
31         virtual ~InsetMathNest() { destroyed(); }
32
33         /// the size is usually some sort of convex hull of the cells
34         /// hides inset::metrics() intentionally!
35         void metrics(MetricsInfo const & mi) const;
36         /// draw background if locked
37         void draw(PainterInfo & pi, int x, int y) const;
38         /// draw selection background
39         void drawSelection(PainterInfo & pi, int x, int y) const;
40         /// draw decorations.
41         void drawDecoration(PainterInfo & pi, int x, int y) const
42         { drawMarkers(pi, x, y); }
43         /// identifies NestInsets
44         InsetMathNest * asNestInset() { return this; }
45         /// identifies NestInsets
46         InsetMathNest const * asNestInset() const { return this; }
47         /// get cursor position
48         void cursorPos(BufferView const & bv, CursorSlice const & sl,
49                 bool boundary, int & x, int & y) const;
50         ///
51         void edit(Cursor & cur, bool left);
52         ///
53         Inset * editXY(Cursor & cur, int x, int y);
54
55         /// order of movement through the cells when pressing the left key
56         bool idxLeft(Cursor &) const;
57         /// order of movement through the cells when pressing the right key
58         bool idxRight(Cursor &) const;
59
60         /// move one physical cell up
61         bool idxNext(Cursor &) const;
62         /// move one physical cell down
63         bool idxPrev(Cursor &) const;
64
65         /// target pos when we enter the inset from the left by pressing "Right"
66         bool idxFirst(Cursor &) const;
67         /// target pos when we enter the inset from the right by pressing "Left"
68         bool idxLast(Cursor &) const;
69
70         /// number of cells currently governed by us
71         idx_type nargs() const;
72         /// access to the lock
73         bool lock() const;
74         /// access to the lock
75         void lock(bool);
76         /// get notification when the cursor leaves this inset
77         bool notifyCursorLeaves(Cursor & cur);
78
79         /// direct access to the cell.
80         /// inlined because shows in profile.
81         //@{
82         MathData & cell(idx_type i) { return cells_[i]; }
83         MathData const & cell(idx_type i) const { return cells_[i]; }
84         //@}
85
86         /// can we move into this cell (see macroarg.h)
87         bool isActive() const;
88         /// request "external features"
89         void validate(LaTeXFeatures & features) const;
90
91         /// replace in all cells
92         void replace(ReplaceData &);
93         /// do we contain a given pattern?
94         bool contains(MathData const &) const;
95         /// glue everything to a single cell
96         MathData glue() const;
97
98         /// debug helper
99         void dump() const;
100
101         /// writes \\, name(), and args in braces and '\\lyxlock' if necessary
102         void write(WriteStream & os) const;
103         /// writes [, name(), and args in []
104         void normalize(NormalStream & os) const;
105         ///
106         int latex(Buffer const &, odocstream & os,
107                         OutputParams const & runparams) const;
108
109         /// This signal is emitted when the inset is destroyed.
110         boost::signal<void()> * destroyedSignal() { return &destroyed; }
111         
112         ///
113         bool setMouseHover(bool mouse_hover);
114         ///
115         bool mouseHovered() const { return mouse_hover_; }
116
117 protected:
118         ///
119         InsetMathNest(InsetMathNest const & inset);
120         ///
121         InsetMathNest & operator=(InsetMathNest const &);
122
123         ///
124         virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
125         /// do we want to handle this event?
126         bool getStatus(Cursor & cur, FuncRequest const & cmd,
127                 FuncStatus & status) const;
128         ///
129         void handleFont(Cursor & cur,
130                 docstring const & arg, docstring const & font);
131         void handleFont(Cursor & cur,
132                 docstring const & arg, char const * const font);
133         ///
134         void handleFont2(Cursor & cur, docstring const & arg);
135
136         /// interpret \p c and insert the result at the current position of
137         /// of \p cur. Return whether the cursor should stay in the formula.
138         bool interpretChar(Cursor & cur, char_type c);
139         ///
140         bool script(Cursor & cur, bool,
141                 docstring const & save_selection = docstring());
142
143 public:
144         /// interpret \p str and insert the result at the current position of
145         /// \p cur if it is something known. Return whether \p cur was
146         /// inserted.
147         bool interpretString(Cursor & cur, docstring const & str);
148
149 private:
150         /// lfun handler
151         void lfunMousePress(Cursor &, FuncRequest &);
152         ///
153         void lfunMouseRelease(Cursor &, FuncRequest &);
154         ///
155         void lfunMouseMotion(Cursor &, FuncRequest &);
156
157 protected:
158         /// we store the cells in a vector
159         typedef std::vector<MathData> cells_type;
160         /// thusly:
161         cells_type cells_;
162         /// if the inset is locked, it can't be entered with the cursor
163         bool lock_;
164         ///
165         bool mouse_hover_;
166
167 private:
168         /// This signal is emitted when the inset is destroyed.
169         boost::signal<void()> destroyed;
170 };
171
172
173
174 } // namespace lyx
175 #endif