]> git.lyx.org Git - lyx.git/blob - src/cursor.h
2bb5980277461d65a20b346d486cffccf1da9a6e
[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         /// don't pop cursor to the level where the LFUN was handled
174         void noPop();
175
176         /// output
177         friend std::ostream & operator<<(std::ostream & os, LCursor const & cur);
178
179 public:
180         ///
181         BufferView * bv_;
182 //private:
183         /// the anchor position
184         DocumentIterator anchor_;
185         
186         /// 
187         DispatchResult disp_;
188
189 private:
190         ///
191         int cached_y_;
192         /**
193          * The target x position of the cursor. This is used for when
194          * we have text like :
195          *
196          * blah blah blah blah| blah blah blah
197          * blah blah blah
198          * blah blah blah blah blah blah
199          *
200          * When we move onto row 3, we would like to be vertically aligned
201          * with where we were in row 1, despite the fact that row 2 is
202          * shorter than x()
203          */
204         int x_target_;
205         /// do we have a selection?
206         bool selection_;
207         /// are we on the way to get one?
208         bool mark_;
209         /// Reset cursor to the value it had at the beginning of the latest
210         // dispatch() once the event is fully handled.
211         bool nopop_;
212
213         //
214         // math specific stuff that could be promoted to "global" later
215         //
216         /// do we allow autocorrection
217         bool autocorrect_;
218         /// are we entering a macro name?
219         bool macromode_;
220
221
222 ///////////////////////////////////////////////////////////////////
223 //
224 // The part below is the non-integrated rest of the original math
225 // cursor. This should be either generalized for texted or moved
226 // back to the math insets.
227 //
228 ///////////////////////////////////////////////////////////////////
229
230 public:
231         ///
232         void insert(MathAtom const &);
233         ///
234         void insert(MathArray const &);
235         /// return false for empty math insets
236         bool erase();
237         /// return false for empty math insets
238         bool backspace();
239         /// called for LFUN_UP etc
240         bool up();
241         /// called for LFUN_DOWN etc
242         bool down();
243         ///
244         void plainErase();
245         ///
246         void plainInsert(MathAtom const & at);
247         ///
248         void niceInsert(MathAtom const & at);
249         ///
250         void niceInsert(std::string const & str);
251
252         /// in pixels from top of screen
253         void setScreenPos(int x, int y);
254         /// in pixels from left of screen
255         int targetX() const;
256         /// return the next enclosing grid inset and the cursor's index in it
257         MathGridInset * enclosingGrid(idx_type & idx) const;
258         /// adjust anchor position after deletions/insertions
259         void adjust(pos_type from, int diff);
260         /// current offset in the top cell
261         /// interpret name a name of a macro
262         void macroModeClose();
263         /// are we currently typing the name of a macro?
264         bool inMacroMode() const;
265         /// get access to the macro we are currently typing
266         MathUnknownInset * activeMacro();
267         /// are we currently typing '#1' or '#2' or...?
268         bool inMacroArgMode() const;
269
270         /// replace selected stuff with at, placing the former
271         // selection in given cell of atom
272         void handleNest(MathAtom const & at, int cell = 0);
273         /// remove this as soon as LyXFunc::getStatus is "localized"
274         //inline std::string getLastCode() { return "mathnormal"; }
275         ///
276         bool isInside(InsetBase const *);
277         ///
278         char valign();
279         ///
280         char halign();
281
282         /// make sure cursor position is valid
283         void normalize();
284         /// mark current cursor trace for redraw
285         void touch();
286
287         /// returns the normalized anchor of the selection
288         CursorSlice normalAnchor();
289
290         /// hack for reveal codes
291         void markInsert();
292         void markErase();
293         /// injects content of a cell into parent
294         void pullArg();
295         /// split font inset etc
296         void handleFont(std::string const & font);
297
298         /// display a message
299         void message(std::string const & msg) const;
300         /// display an error message
301         void errorMessage(std::string const & msg) const;
302         ///
303         std::string getPossibleLabel();
304
305         /// moves position somehow up or down
306         bool goUpDown(bool up);
307
308         /// the name of the macro we are currently inputting
309         std::string macroName();
310         /// where in the curent cell does the macro name start?
311         int macroNamePos();
312         /// can we enter the inset?
313         bool openable(MathAtom const &) const;
314         ///
315         Encoding const * getEncoding() const;
316
317 private:
318         /// moves position closest to (x, y) in current cell
319         void bruteFind2(int x, int y);
320         /// moves position closest to (x, y) in given box
321         bool bruteFind(int x, int y, int xlow, int xhigh, int ylow, int yhigh);
322 };
323
324 #endif // LYXCURSOR_H