]> git.lyx.org Git - lyx.git/blob - src/mathed/math_cursor.h
1d0366886322dbb10a22cf32e4178b6608fba908
[lyx.git] / src / mathed / math_cursor.h
1 // -*- C++ -*-
2 /*
3  *  File:        math_cursor.h
4  *  Purpose:     Declaration of interaction classes for mathed
5  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
6  *  Created:     January 1996
7  *  Description: MathCursor control all user interaction
8  *
9  *  Dependencies: Xlib, XForms
10  *
11  *  Copyright: 1996, Alejandro Aguilar Sierra
12  *
13  *   You are free to use and modify this code under the terms of
14  *   the GNU General Public Licence version 2 or later.
15  */
16
17 #ifndef MATH_CURSOR
18 #define MATH_CURSOR
19
20 #ifdef __GNUG__
21 #pragma interface
22 #endif
23
24 #include "math_defs.h"
25
26 class MathInset;
27 class MathFuncInset;
28 class MathScriptInset;
29 class MathSpaceInset;
30 class InsetFormulaBase;
31 class MathArray;
32 class MathXArray;
33 class Painter;
34
35 /// Description of a position 
36 struct MathCursorPos {
37         /// inset
38         MathInset * par_;
39         /// cell index
40         int idx_;
41         /// cell position
42         int pos_;
43         /// returns cell corresponding to this position
44         MathArray & cell() const;
45         /// returns cell corresponding to this position
46         MathArray & cell(int idx) const;
47         /// returns xcell corresponding to this position
48         MathXArray & xcell() const;
49         /// returns xcell corresponding to this position
50         MathXArray & xcell(int idx) const;
51         /// moves position on cell to the left
52         bool idxLeft();
53         /// moves position on cell to the right
54         bool idxRight();
55         /// moves position on cell up
56         bool idxUp();
57         /// moves position on cell up
58         bool idxDown();
59 };
60
61 /// 
62 bool operator==(MathCursorPos const &, MathCursorPos const &);
63 /// 
64 bool operator<(MathCursorPos const &, MathCursorPos const &);
65
66
67 /// This is the external interface of Math's subkernel
68 class MathCursor {
69 public:
70         ///
71         explicit MathCursor(InsetFormulaBase *);
72         ///
73         void insert(char, MathTextCodes t = LM_TC_MIN);
74         ///
75         void insert(MathInset *);
76         ///
77         void insert(MathArray const &);
78         ///
79         void erase();
80         ///
81         void home();
82         ///
83         void end();
84         ///
85         bool right(bool sel = false);
86         ///
87         bool left(bool sel = false);
88         ///
89         bool up(bool sel = false);
90         ///
91         bool down(bool sel = false);
92         /// Put the cursor in the first position
93         void first();
94         /// Put the cursor in the last position
95         void last();
96         ///
97         bool plainLeft();
98         ///
99         bool plainRight();
100         ///
101         void plainErase();
102         ///
103         void plainInsert(MathInset * p);
104         ///
105         void delLine();
106         /// This is in pixels from (maybe?) the top of inset
107         void setPos(int, int);
108         ///
109         void getPos(int & x, int & y);
110         ///
111         MathInset * par() const;
112         /// return the next enclosing par of the given type and the cursor's
113         //index in it
114         MathInset * enclosing(MathInsetTypes, int &) const;
115         ///
116         InsetFormulaBase const * formula();
117         ///
118         int pos() const;
119         ///
120         void interpret(string const &);
121         ///
122         void setSize(MathStyles);
123         ///
124         bool toggleLimits();
125         ///
126         // Macro mode methods
127         void macroModeOpen();
128         ///
129         void macroModeClose();
130         ///
131         bool inMacroMode() const;
132         
133         // Local selection methods
134         ///
135         bool selection() const;
136         ///
137         void selCopy();
138         ///
139         void selCut();
140         ///
141         void selDel();
142         ///
143         void selPaste();
144         ///
145         void selHandle(bool);
146         ///
147         void selStart();
148         ///
149         void selClear();
150         ///
151         void drawSelection(Painter & pain) const;
152         ///
153         void clearLastCode();
154         ///
155         void setLastCode(MathTextCodes t);
156         ///
157         void handleFont(MathTextCodes t);
158         ///
159         void handleAccent(string const & name, int code);
160         ///
161         void handleDelim(int l, int r);
162         /// Splits cells and shifts right part to the next cell
163         void splitCell();
164         /// Splits line and insert new row of cell 
165         void breakLine();
166         ///
167         MathTextCodes getLastCode() const;
168         ///
169         int idx() const { return cursor().idx_; }
170         ///
171         void idxNext();
172         ///
173         void idxPrev();
174         ///
175         void pullArg(bool goright);
176         ///
177         bool isInside(MathInset *) const;
178         ///
179         MathTextCodes nextCode() const;
180         ///
181         MathTextCodes prevCode() const;
182         ///
183         char valign() const;
184         ///
185         char halign() const;
186         ///
187         int col() const;
188         ///
189         int row() const;
190
191         ///
192         MathStyles style() const;
193         /// Make sure cursor position is valid
194         void normalize() const;
195         
196         /// Enter a new MathInset from the front or the back
197         void push(MathInset * par, bool first);
198         /// Leave current MathInset
199         bool pop();
200
201 //private:
202         ///
203         InsetFormulaBase * const formula_;
204         ///
205         MathTextCodes lastcode_;
206         ///
207         MathFuncInset * imacro_;
208         // Selection stuff
209         /// do we currently select
210         bool selection_;
211
212         ///
213         MathArray & array() const;
214         ///
215         MathXArray & xarray() const;
216
217         /// returns the first position of the (normalized) selection
218         MathCursorPos firstSelectionPos() const;
219         /// returns the last position of the (normalized) selection
220         MathCursorPos lastSelectionPos() const;
221         /// returns the selection
222         void getSelection(MathCursorPos &, MathCursorPos &) const;
223         /// returns the normalized anchor of the selection
224         MathCursorPos normalAnchor() const;
225         /// returns the normalized anchor of the selection
226         bool openable(MathInset *, bool selection, bool useupdown) const;
227
228         /// path of positions the cursor had to go if it were leving each inset
229         std::vector<MathCursorPos> Cursor_;
230         /// path of positions the anchor had to go if it were leving each inset
231         std::vector<MathCursorPos> Anchor_;
232
233         /// reference to the last item of the path
234         MathCursorPos & cursor();
235         ///
236         MathCursorPos const & cursor() const;
237
238
239         ///  
240         int last() const;
241         ///
242         MathInset * parInset(int i) const;
243         ///
244         void seldump(char const * str) const;
245         ///
246         void dump(char const * str) const;
247
248         ///
249         int xpos() const;
250         ///
251         void gotoX(int x);
252
253         ///
254         bool nextIsInset() const;
255         ///
256         bool prevIsInset() const;
257         ///
258         void merge(MathArray const & arr);
259         ///
260         MathInset * nextInset() const;
261         ///
262         MathInset * prevInset() const;
263         ///
264         MathScriptInset * prevScriptInset() const;
265         ///
266         MathSpaceInset * prevSpaceInset() const;
267 };
268
269 extern MathCursor * mathcursor;
270
271 #endif