]> git.lyx.org Git - lyx.git/blob - src/cursor.h
44ef8b80a4e6f42d0d79fc072301d3e68b8c648e
[lyx.git] / src / cursor.h
1 // -*- C++ -*-
2 /**
3  * \file cursor.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 CURSOR_H
13 #define CURSOR_H
14
15 #include "dispatchresult.h"
16 #include "dociterator.h"
17
18 #include <iosfwd>
19 #include <vector>
20
21 class BufferView;
22 class FuncStatus;
23 class FuncRequest;
24
25 // these should go
26 class MathUnknownInset;
27 class MathGridInset;
28 class Encoding;
29
30
31 /// The cursor class describes the position of a cursor within a document.
32
33 // The public inheritance should go in favour of a suitable data member
34 // (or maybe private inheritance) at some point of time.
35 class LCursor : public DocumentIterator {
36 public:
37         /// create the cursor of a BufferView
38         explicit LCursor(BufferView & bv);
39
40         /// dispatch from innermost inset upwards
41         DispatchResult dispatch(FuncRequest const & cmd);
42         /// are we willing to handle this event?
43         bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
44
45         /// add a new cursor slice
46         void push(InsetBase & inset);
47         /// add a new cursor slice, place cursor on left end
48         void pushLeft(InsetBase & inset);
49         /// pop one level off the cursor
50         void pop();
51         /// pop one slice off the cursor stack and go left
52         bool popLeft();
53         /// pop one slice off the cursor stack and go right
54         bool popRight();
55         /// sets cursor part
56         void setCursor(DocumentIterator const & it, bool sel);
57
58         //
59         // selection
60         //
61         /// selection active?
62         bool selection() const { return selection_; }
63         /// selection active?
64         bool & selection() { return selection_; }
65         /// did we place the anchor?
66         bool mark() const { return mark_; }
67         /// did we place the anchor?
68         bool & mark() { return mark_; }
69         ///
70         void setSelection();
71         /// set selection at given position
72         void setSelection(DocumentIterator const & where, size_t n);
73         ///
74         void clearSelection();
75         /// access start of selection
76         CursorSlice & selBegin();
77         /// access start of selection
78         CursorSlice const & selBegin() const;
79         /// access end of selection
80         CursorSlice & selEnd();
81         /// access end of selection
82         CursorSlice const & selEnd() const;
83         ///
84         std::string grabSelection();
85         ///
86         void eraseSelection();
87         ///
88         std::string grabAndEraseSelection();
89         // other selection methods
90         ///
91         void selCopy();
92         ///
93         void selCut();
94         ///
95         void selDel();
96         /// pastes n-th element of cut buffer
97         void selPaste(size_t n);
98         ///
99         void selHandle(bool selecting);
100         /// start selection
101         void selStart();
102         /// clear selection
103         void selClear();
104         /// clears or deletes selection depending on lyxrc setting
105         void selClearOrDel();
106         //
107         std::string selectionAsString(bool label) const;
108         ///
109         void paste(std::string const & data);
110         ///
111         std::string currentState();
112
113         /// auto-correct mode
114         bool autocorrect() const { return autocorrect_; }
115         /// auto-correct mode
116         bool & autocorrect() { return autocorrect_; }
117         /// are we entering a macro name?
118         bool macromode() const { return macromode_; }
119         /// are we entering a macro name?
120         bool & macromode() { return macromode_; }
121         /// returns x,y position
122         void getPos(int & x, int & y) const;
123         /// returns cursor dimension
124         void getDim(int & asc, int & desc) const;
125
126         //
127         // common part
128         //
129         /// move one step to the left
130         bool posLeft();
131         /// move one step to the right
132         bool posRight();
133
134         /// insert an inset
135         void insert(InsetBase *);
136         /// insert a single char
137         void insert(char c);
138         /// insert a string
139         void insert(std::string const & str);
140
141         /// write acess to target x position of cursor
142         int & x_target();
143         /// return target x position of cursor
144         int x_target() const;
145         /// clear target x position of cursor
146         void clearTargetX();
147
148         /// access to selection anchor
149         CursorSlice & anchor();
150         /// access to selection anchor
151         CursorSlice const & anchor() const;
152         /// cache the absolute coordinate from the top inset
153         void updatePos();
154         /// sets anchor to cursor position
155         void resetAnchor(); 
156         /// access to owning BufferView
157         BufferView & bv() const; 
158         /// get some interesting description of top position
159         void info(std::ostream & os) const;
160         /// are we in math mode (2), text mode (1) or unsure (0)?
161         int currentMode();
162         /// reset cursor bottom to the beginning of the given inset
163         // (sort of 'chroot' environment...)
164         void reset(InsetBase &);
165         /// for spellchecking
166         void replaceWord(std::string const & replacestring);
167         /// update our view
168         void update();
169         /// the event was not (yet) dispatched
170         void undispatched();
171         /// don't call update() when done
172         void noUpdate();
173
174         /// output
175         friend std::ostream & operator<<(std::ostream & os, LCursor const & cur);
176
177 public:
178         ///
179         BufferView * bv_;
180 //private:
181         /// the anchor position
182         DocumentIterator anchor_;
183         
184         /// 
185         DispatchResult disp_;
186
187 private:
188         ///
189         int cached_y_;
190         /**
191          * The target x position of the cursor. This is used for when
192          * we have text like :
193          *
194          * blah blah blah blah| blah blah blah
195          * blah blah blah
196          * blah blah blah blah blah blah
197          *
198          * When we move onto row 3, we would like to be vertically aligned
199          * with where we were in row 1, despite the fact that row 2 is
200          * shorter than x()
201          */
202         int x_target_;
203         /// do we have a selection?
204         bool selection_;
205         /// are we on the way to get one?
206         bool mark_;
207
208         //
209         // math specific stuff that could be promoted to "global" later
210         //
211         /// do we allow autocorrection
212         bool autocorrect_;
213         /// are we entering a macro name?
214         bool macromode_;
215
216
217 ///////////////////////////////////////////////////////////////////
218 //
219 // The part below is the non-integrated rest of the original math
220 // cursor. This should be either generalized for texted or moved
221 // back to the math insets.
222 //
223 ///////////////////////////////////////////////////////////////////
224
225 public:
226         ///
227         void insert(MathAtom const &);
228         ///
229         void insert(MathArray const &);
230         /// return false for empty math insets
231         bool erase();
232         /// return false for empty math insets
233         bool backspace();
234         /// called for LFUN_UP etc
235         bool up();
236         /// called for LFUN_DOWN etc
237         bool down();
238         ///
239         void plainErase();
240         ///
241         void plainInsert(MathAtom const & at);
242         ///
243         void niceInsert(MathAtom const & at);
244         ///
245         void niceInsert(std::string const & str);
246
247         /// in pixels from top of screen
248         void setScreenPos(int x, int y);
249         /// in pixels from left of screen
250         int targetX() const;
251         /// return the next enclosing grid inset and the cursor's index in it
252         MathGridInset * enclosingGrid(idx_type & idx) const;
253         /// adjust anchor position after deletions/insertions
254         void adjust(pos_type from, int diff);
255         /// current offset in the top cell
256         /// interpret name a name of a macro
257         void macroModeClose();
258         /// are we currently typing the name of a macro?
259         bool inMacroMode() const;
260         /// get access to the macro we are currently typing
261         MathUnknownInset * activeMacro();
262         /// are we currently typing '#1' or '#2' or...?
263         bool inMacroArgMode() const;
264
265         /// replace selected stuff with at, placing the former
266         // selection in given cell of atom
267         void handleNest(MathAtom const & at, int cell = 0);
268         /// remove this as soon as LyXFunc::getStatus is "localized"
269         //inline std::string getLastCode() { return "mathnormal"; }
270         ///
271         bool isInside(InsetBase const *);
272         ///
273         char valign();
274         ///
275         char halign();
276
277         /// make sure cursor position is valid
278         void normalize();
279         /// mark current cursor trace for redraw
280         void touch();
281
282         /// returns the normalized anchor of the selection
283         CursorSlice normalAnchor();
284
285         /// hack for reveal codes
286         void markInsert();
287         void markErase();
288         /// injects content of a cell into parent
289         void pullArg();
290         /// split font inset etc
291         void handleFont(std::string const & font);
292
293         /// display a message
294         void message(std::string const & msg) const;
295         /// display an error message
296         void errorMessage(std::string const & msg) const;
297         ///
298         std::string getPossibleLabel();
299
300         /// moves position somehow up or down
301         bool goUpDown(bool up);
302
303         /// the name of the macro we are currently inputting
304         std::string macroName();
305         /// where in the curent cell does the macro name start?
306         int macroNamePos();
307         /// can we enter the inset?
308         bool openable(MathAtom const &) const;
309         ///
310         Encoding const * getEncoding() const;
311
312 private:
313         /// moves position closest to (x, y) in current cell
314         void bruteFind2(int x, int y);
315         /// moves position closest to (x, y) in given box
316         bool bruteFind(int x, int y, int xlow, int xhigh, int ylow, int yhigh);
317 };
318
319 #endif // LYXCURSOR_H