]> git.lyx.org Git - lyx.git/blob - src/Cursor.h
* InsetListings.cpp:
[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 LCURSOR_H
13 #define LCURSOR_H
14
15 #include "DispatchResult.h"
16 #include "DocIterator.h"
17 #include "Font.h"
18 #include "Undo.h"
19
20 #include "mathed/MathParser_flags.h"
21
22 #include <vector>
23
24
25 namespace lyx {
26
27 class Buffer;
28 class BufferView;
29 class FuncStatus;
30 class FuncRequest;
31 class Row;
32
33 // these should go
34 class InsetMathUnknown;
35 class Encoding;
36
37
38 /// The cursor class describes the position of a cursor within a document.
39 class Cursor : public DocIterator
40 {
41 public:
42         /// create the cursor of a BufferView
43         explicit Cursor(BufferView & bv);
44
45         /// returns true if we made a decision
46         bool getStatus(FuncRequest const & cmd, FuncStatus & flag) const;
47         /// dispatch from innermost inset upwards
48         void dispatch(FuncRequest const & cmd);
49         /// get the resut of the last dispatch
50         DispatchResult const & result() const;
51         /// add a new cursor slice
52         void push(Inset & inset);
53         /// add a new cursor slice, place cursor at front (move backwards)
54         void pushBackward(Inset & inset);
55         /// pop one level off the cursor
56         void pop();
57         /// pop one slice off the cursor stack and go backwards
58         bool popBackward();
59         /// pop one slice off the cursor stack and go forward
60         bool popForward();
61         /// make sure we are outside of given inset
62         void leaveInset(Inset const & inset);
63         /// sets cursor part
64         void setCursor(DocIterator const & it);
65         /// sets the cursor to the normalized selection anchor
66         void setCursorToAnchor();
67
68         ///
69         void setCurrentFont();
70
71         //
72         // selection
73         //
74         /// selection active?
75         bool selection() const { return selection_; }
76         /// set selection;
77         void setSelection(bool sel) { selection_ = sel; }
78         /// do we have a multicell selection?
79         bool selIsMultiCell() const 
80                 { return selection_ && selBegin().idx() != selEnd().idx(); }
81         /// do we have a multiline selection?
82         bool selIsMultiLine() const 
83                 { return selection_ && selBegin().pit() != selEnd().pit(); }
84         /// 
85         void setWordSelection(bool set) { word_selection_ = set; }
86         ///
87         bool wordSelection() { return word_selection_; }
88         /// did we place the anchor?
89         bool mark() const { return mark_; }
90         /// did we place the anchor?
91         void setMark(bool mark) { mark_ = mark; }
92         ///
93         void setSelection();
94         /// set selection at given position
95         void setSelection(DocIterator const & where, int n);
96         ///
97         void clearSelection();
98         /// access start of selection
99         CursorSlice selBegin() const;
100         /// access end of selection
101         CursorSlice selEnd() const;
102         /// access start of selection
103         DocIterator selectionBegin() const;
104         /// access start of selection
105         DocIterator selectionEnd() const;
106         /**
107          * Update the selection status and save permanent
108          * selection if needed.
109          * @param selecting the new selection status
110          * @return whether the selection status has changed
111          */
112         bool selHandle(bool selecting);
113         ///
114         docstring selectionAsString(bool label) const;
115         ///
116         docstring currentState() const;
117
118         /// auto-correct mode
119         bool autocorrect() const { return autocorrect_; }
120         /// auto-correct mode
121         bool & autocorrect() { return autocorrect_; }
122         /// are we entering a macro name?
123         bool macromode() const { return macromode_; }
124         /// are we entering a macro name?
125         bool & macromode() { return macromode_; }
126         /// returns x,y position
127         void getPos(int & x, int & y) const;
128         /// return logical positions between which the cursor is situated
129         /**
130          * If the cursor is at the edge of a row, the position which is "over the 
131          * edge" will be returned as -1.
132          */
133         void getSurroundingPos(pos_type & left_pos, pos_type & right_pos);
134         /// the row in the paragraph we're in
135         Row const & textRow() const;
136
137         //
138         // common part
139         //
140         /// move one step backwards
141         bool posBackward();
142         /// move one step forward
143         bool posForward();
144         /// move visually one step to the right
145         /**
146          * @note: This method may move into an inset unless skip_inset == true.
147          * @note: This method may move into a new paragraph.
148          * @note: This method may move out of the current slice.
149          * @return: true if moved, false if not moved
150          */
151         bool posVisRight(bool skip_inset = false);
152         /// move visually one step to the left
153         /**
154          * @note: This method may move into an inset unless skip_inset == true.
155          * @note: This method may move into a new paragraph.
156          * @note: This method may move out of the current slice.
157          * @return: true if moved, false if not moved
158          */
159         bool posVisLeft(bool skip_inset = false);
160         /// move visually to next/previous row
161         /**
162          * Assuming we were to keep moving left (right) from the current cursor
163          * position, place the cursor at the rightmost (leftmost) edge of the 
164          * new row to which we would move according to visual-mode cursor movement.
165          * This could be either the next or the previous row, depending on the
166          * direction in which we're moving, and whether we're in an LTR or RTL 
167          * paragraph. 
168          * @note: The new position may even be in a new paragraph.
169          * @note: This method will not move out of the current slice.
170          * @return: false if not moved (no more rows to move to in given direction)
171          * @return: true if moved
172          */
173         bool posVisToNewRow(bool movingLeft);
174         /// move to right or left extremity of the current row
175         void posVisToRowExtremity(bool left);
176
177         /// insert an inset
178         void insert(Inset *);
179         /// insert a single char
180         void insert(char_type c);
181         /// insert a string
182         void insert(docstring const & str);
183
184         /// FIXME: rename to something sensible showing difference to x_target()
185         /// in pixels from left of screen, set to current position if unset
186         int targetX() const;
187         /// set the targetX to x
188         void setTargetX(int x);
189         /// return targetX or -1 if unset
190         int x_target() const;
191         /// set targetX to current position
192         void setTargetX();
193         /// clear targetX, i.e. set it to -1
194         void clearTargetX();
195         /// set offset to actual position - targetX
196         void updateTextTargetOffset();
197         /// distance between actual and targeted position during last up/down in text
198         int textTargetOffset() const;
199
200         /// access to normalized selection anchor
201         CursorSlice normalAnchor() const;
202         // FIXME: this can't be a const & and a const function because
203         // LFUN_TAB_* wants to move the real anchor.
204         /// access to real selection anchor
205         DocIterator & realAnchor();
206         /// sets anchor to cursor position
207         void resetAnchor();
208         /// access to owning BufferView
209         BufferView & bv() const;
210         /// get some interesting description of top position
211         void info(odocstream & os) const;
212         /// are we in math mode (2), text mode (1) or unsure (0)?
213         int currentMode();
214         /// reset cursor bottom to the beginning of the top inset
215         // (sort of 'chroot' environment...)
216         void reset();
217         /// for spellchecking
218         void replaceWord(std::string const & replacestring);
219         /**
220          * the event was not (yet) dispatched.
221          *
222          * Should only be called by an inset's doDispatch() method. It means:
223          * I, the doDispatch() method of InsetFoo, hereby declare that I am
224          * not able to handle that request and trust my parent will do the
225          * Right Thing (even if my getStatus partner said that I can do it).
226          * It is sort of a kludge that should be used only rarely...
227          */
228         void undispatched();
229         /// the event was already dispatched
230         void dispatched();
231         /// Set which update should be done
232         void updateFlags(Update::flags f);
233         /**
234          * don't call update() when done
235          *
236          * Should only be called by an inset's doDispatch() method. It means:
237          * I handled that request and I can reassure you that the screen does
238          * not need to be re-drawn and all entries in the coord cache stay
239          * valid (and there are no other things to put in the coord cache).
240          * This is a fairly rare event as well and only some optimization.
241          * Not using noUpdate() should never be wrong.
242          */
243         void noUpdate();
244         /// fix cursor in circumstances that should never happen.
245         /// \retval true if a fix occured.
246         bool fixIfBroken();
247
248         /// output
249         friend std::ostream & operator<<(std::ostream & os, Cursor const & cur);
250         friend LyXErr & operator<<(LyXErr & os, Cursor const & cur);
251
252         ///
253         bool textUndo();
254         ///
255         bool textRedo();
256
257         /// makes sure the next operation will be stored
258         void finishUndo() const;
259
260         /// open a new group of undo operations. Groups can be nested.
261         void beginUndoGroup() const;
262
263         /// end the current undo group
264         void endUndoGroup() const;
265
266         /// The general case: prepare undo for an arbitrary range.
267         void recordUndo(UndoKind kind, pit_type from, pit_type to) const;
268
269         /// Convenience: prepare undo for the range between 'from' and cursor.
270         void recordUndo(UndoKind kind, pit_type from) const;
271
272         /// Convenience: prepare undo for the single paragraph or cell
273         /// containing the cursor
274         void recordUndo(UndoKind kind = ATOMIC_UNDO) const;
275
276         /// Convenience: prepare undo for the inset containing the cursor
277         void recordUndoInset(UndoKind kind = ATOMIC_UNDO) const;
278
279         /// Convenience: prepare undo for the whole buffer
280         void recordUndoFullDocument() const;
281
282         /// Convenience: prepare undo for the selected paragraphs or cells
283         void recordUndoSelection() const;
284
285         ///
286         void checkBufferStructure();
287
288 public:
289 //private:
290         
291         ///
292         DocIterator const & beforeDispatchCursor() const { return beforeDispatchCursor_; }
293         ///
294         void saveBeforeDispatchPosXY();
295
296 private:
297         ///
298         BufferView * bv_;
299         /// the anchor position
300         DocIterator anchor_;
301         ///
302         mutable DispatchResult disp_;
303         /**
304          * The target x position of the cursor. This is used for when
305          * we have text like :
306          *
307          * blah blah blah blah| blah blah blah
308          * blah blah blah
309          * blah blah blah blah blah blah
310          *
311          * When we move onto row 3, we would like to be vertically aligned
312          * with where we were in row 1, despite the fact that row 2 is
313          * shorter than x()
314          */
315         int x_target_;
316         /// if a x_target cannot be hit exactly in a text, put the difference here
317         int textTargetOffset_;
318         /// do we have a selection?
319         bool selection_;
320         /// are we on the way to get one?
321         bool mark_;
322         /// are we in word-selection mode? This is set when double clicking.
323         bool word_selection_;
324         /// If true, we are behind the previous char, otherwise we are in front
325         // of the next char. This only make a difference when we are in front
326         // of a big inset spanning a whole row and computing coordinates for
327         // displaying the cursor.
328         bool logicalpos_;
329         /// position before dispatch started
330         DocIterator beforeDispatchCursor_;
331         /// cursor screen coordinates before dispatch started
332         int beforeDispatchPosX_;
333         int beforeDispatchPosY_;
334
335
336 // FIXME: make them private.
337 public:
338         /// the current font settings
339         Font current_font;
340         /// the current font
341         Font real_current_font;
342
343 private:
344
345         //
346         // math specific stuff that could be promoted to "global" later
347         //
348         /// do we allow autocorrection
349         bool autocorrect_;
350         /// are we entering a macro name?
351         bool macromode_;
352
353
354 ///////////////////////////////////////////////////////////////////
355 //
356 // The part below is the non-integrated rest of the original math
357 // cursor. This should be either generalized for texted or moved
358 // back to the math insets.
359 //
360 ///////////////////////////////////////////////////////////////////
361
362 public:
363         ///
364         void insert(MathAtom const &);
365         ///
366         void insert(MathData const &);
367         /// return false for empty math insets
368         bool erase();
369         /// return false for empty math insets
370         bool backspace();
371         /// move the cursor up by sending an internal LFUN_UP
372         /// return true if fullscreen update is needed
373         bool up();
374         /// move the cursor up by sending an internal LFUN_DOWN,
375         /// return true if fullscreen update is needed
376         bool down();
377         /// whether the cursor is either at the first or last row
378         bool atFirstOrLastRow(bool up);
379         /// move up/down in a text inset, called for LFUN_UP/DOWN,
380         /// return true if successful, updateNeeded set to true if fullscreen
381         /// update is needed, otherwise it's not touched
382         bool upDownInText(bool up, bool & updateNeeded);
383         /// move up/down in math or any non text inset, call for LFUN_UP/DOWN
384         /// return true if successful
385         bool upDownInMath(bool up);
386         ///
387         void plainErase();
388         ///
389         void plainInsert(MathAtom const & at);
390         ///
391         void niceInsert(MathAtom const & at);
392         ///
393         void niceInsert(docstring const & str, Parse::flags f = Parse::NORMAL,
394                         bool enter = true);
395
396         /// in pixels from top of screen
397         void setScreenPos(int x, int y);
398         /// current offset in the top cell
399
400         /// interpret name a name of a macro. Returns true if
401         /// something got inserted.
402         bool macroModeClose();
403         /// are we currently typing the name of a macro?
404         bool inMacroMode() const;
405         /// get access to the macro we are currently typing
406         InsetMathUnknown * activeMacro();
407         /// get access to the macro we are currently typing
408         InsetMathUnknown const * activeMacro() const;
409
410         /// replace selected stuff with at, placing the former
411         // selection in given cell of atom
412         void handleNest(MathAtom const & at, int cell = 0);
413         ///
414         bool isInside(Inset const *) const;
415
416         /// make sure cursor position is valid
417         /// FIXME: It does a subset of fixIfBroken. Maybe merge them?
418         void normalize();
419         /// mark current cursor trace for redraw
420         void touch();
421
422         /// hack for reveal codes
423         void markInsert();
424         void markErase();
425         /// injects content of a cell into parent
426         void pullArg();
427         /// split font inset etc
428         void handleFont(std::string const & font);
429
430         /// display a message
431         void message(docstring const & msg) const;
432         /// display an error message
433         void errorMessage(docstring const & msg) const;
434         ///
435         docstring getPossibleLabel() const;
436
437         /// the name of the macro we are currently inputting
438         docstring macroName();
439         /// where in the curent cell does the macro name start?
440         int macroNamePos();
441         /// can we enter the inset?
442         bool openable(MathAtom const &) const;
443         ///
444         Encoding const * getEncoding() const;
445         /// font at cursor position
446         Font getFont() const;
447 };
448
449
450 /**
451  * Notifies all insets which appear in old, but not in cur. And then
452  * notify all insets which appear in cur, but not in old.
453  * Make sure that the cursor old is valid, i.e. all inset pointers
454  * point to valid insets! Use Cursor::fixIfBroken if necessary.
455  */
456 bool notifyCursorLeavesOrEnters(Cursor const & old, Cursor & cur);
457
458
459 } // namespace lyx
460
461 #endif // LYXLCURSOR_H