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